/* ==========================================================================
   AURISTER TRADING — Design System
   Premium B2B international trading company
   Palette: deep emerald + warm gold + cream. Serif display + clean sans body.
   ========================================================================== */

/* ---------- Design tokens ------------------------------------------------ */
:root {
  /* Brand colours */
  --forest-900: #0C2C20;
  --forest-800: #103D2E;
  --forest-700: #14543D;
  --forest-600: #1C6B4D;
  --forest-100: #E4EEE8;

  --gold-600: #A9822F;
  --gold-500: #C39A45;
  --gold-400: #D7B66B;
  --gold-100: #F4ECD8;

  --ink: #16201B;
  --ink-soft: #44524A;
  --ink-muted: #6C796F;

  --cream: #F8F5EE;
  --sand: #EFE9DB;
  --paper: #FFFFFF;
  --line: #E3DDCE;
  --line-strong: #D2C9B4;

  /* Typography */
  --font-display: "Fraunces", "Georgia", "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Spacing / shape */
  --container: 1180px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(16, 32, 24, .06), 0 2px 6px rgba(16, 32, 24, .05);
  --shadow-md: 0 10px 30px rgba(12, 44, 32, .10);
  --shadow-lg: 0 30px 60px rgba(12, 44, 32, .16);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset -------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; }

/* ---------- Typography --------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-optical-sizing: auto; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.85rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
h4 { font-size: 1.12rem; }
p { color: var(--ink-soft); }
.lead { font-size: 1.2rem; color: var(--ink-soft); }

.eyebrow {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-600);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--gold-500);
}
.eyebrow.center::after {
  content: "";
  width: 26px; height: 1px;
  background: var(--gold-500);
}

/* ---------- Layout helpers ---------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.center { text-align: center; }
.measure { max-width: 62ch; }
.measure-center { max-width: 60ch; margin-inline: auto; }
.grid { display: grid; gap: 28px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.section-head { max-width: 64ch; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; }
.section-head h2 { margin-top: 14px; }
.section-head p { margin-top: 16px; font-size: 1.12rem; }

/* ---------- Buttons ------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .92rem 1.6rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .98rem;
  letter-spacing: .01em;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }
.btn--gold { background: var(--gold-500); color: #2A1E06; box-shadow: var(--shadow-sm); }
.btn--gold:hover { background: var(--gold-400); box-shadow: 0 12px 26px rgba(169, 130, 47, .35); }
.btn--forest { background: var(--forest-800); color: #fff; }
.btn--forest:hover { background: var(--forest-700); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--forest-700); color: var(--forest-800); }
.btn--light { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.32); }
.btn--light:hover { background: rgba(255,255,255,.22); }
.btn--lg { padding: 1.05rem 1.9rem; font-size: 1.02rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 600; color: var(--forest-700);
  transition: gap .25s var(--ease);
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.link-arrow:hover { gap: .7rem; }
.link-arrow:hover svg { transform: translateX(3px); }

/* ---------- Header / nav ------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(248, 245, 238, .82);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled { border-color: var(--line); background: rgba(248, 245, 238, .94); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 96px; gap: 16px; }
.brand { display: inline-flex; align-items: center; gap: .7rem; flex-shrink: 0; }
.brand-logo { height: 64px; width: auto; display: block; }
.site-footer .brand-logo { filter: brightness(0) invert(1); }
.brand-mark {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(150deg, var(--forest-700), var(--forest-900));
  display: grid; place-items: center; box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
}
.brand-mark span {
  font-family: var(--font-display); color: var(--gold-400); font-size: 1.25rem; font-weight: 600;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong { font-family: var(--font-display); font-size: 1.18rem; font-weight: 600; letter-spacing: .01em; color: var(--ink); }
.brand-text small { font-size: .62rem; letter-spacing: .28em; text-transform: uppercase; color: var(--ink-muted); margin-top: 3px; }

.nav-menu { display: flex; align-items: center; gap: 6px; }
.nav-menu a {
  padding: .55rem .58rem; border-radius: 8px; font-size: .94rem; font-weight: 500; color: var(--ink-soft);
  white-space: nowrap;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav-menu a:hover { color: var(--forest-800); background: rgba(20, 84, 61, .07); }
.nav-menu a.active { color: var(--forest-800); font-weight: 600; }
.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line-strong);
  border-radius: 10px; background: var(--paper); flex-direction: column; gap: 5px;
  align-items: center; justify-content: center;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Top bar ------------------------------------------------------ */
.topbar {
  background: var(--forest-900); color: rgba(255,255,255,.78);
  font-size: .82rem; letter-spacing: .01em;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 40px; padding-block: 6px; }
.topbar a { color: rgba(255,255,255,.86); }
.topbar a:hover { color: var(--gold-400); }
.topbar-tags { display: flex; gap: 22px; }
.topbar-tags li { display: inline-flex; align-items: center; gap: .45rem; }
.topbar-tags svg { width: 15px; height: 15px; color: var(--gold-400); }
.topbar-contact { display: flex; gap: 22px; }

/* ---------- Hero --------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(195, 154, 69, .16), transparent 60%),
    linear-gradient(160deg, var(--forest-900) 0%, var(--forest-800) 55%, #0d3325 100%);
  color: #fff;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.06) 1px, transparent 0);
  background-size: 30px 30px; opacity: .5; pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; padding: clamp(56px, 8vw, 104px) 0; }
.hero h1 { color: #fff; }
.hero h1 .accent { color: var(--gold-400); font-style: italic; }
.hero p { color: rgba(255,255,255,.82); font-size: 1.2rem; margin-top: 22px; max-width: 52ch; }
.hero .eyebrow { color: var(--gold-400); }
.hero .eyebrow::before { background: var(--gold-400); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-trust { margin-top: 40px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.14); display: flex; gap: 38px; flex-wrap: wrap; }
.hero-trust div strong { display: block; font-family: var(--font-display); font-size: 1.9rem; color: var(--gold-400); line-height: 1; }
.hero-trust div span { font-size: .84rem; color: rgba(255,255,255,.72); letter-spacing: .02em; }

/* Hero visual card */
.hero-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg); padding: 28px; backdrop-filter: blur(8px);
  box-shadow: var(--shadow-lg);
}
.hero-card h3 { color: #fff; font-size: 1.15rem; }
.hero-card .quote-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.hero-card .pill { font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--forest-900); background: var(--gold-400); padding: .3rem .7rem; border-radius: 999px; }
.hero-prod { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.hero-prod:last-child { border-bottom: 0; }
.hero-prod .ic { width: 42px; height: 42px; border-radius: 11px; background: rgba(255,255,255,.1); display: grid; place-items: center; flex-shrink: 0; }
.hero-prod .ic svg { width: 22px; height: 22px; color: var(--gold-400); }
.hero-prod strong { color: #fff; font-size: .98rem; font-weight: 600; }
.hero-prod span { color: rgba(255,255,255,.62); font-size: .82rem; }
.hero-prod .meta { margin-left: auto; text-align: right; }
.hero-prod .meta b { color: var(--gold-400); font-size: .9rem; display: block; }
.hero-prod .meta small { color: rgba(255,255,255,.55); font-size: .72rem; }

/* ---------- Logo / trust strip ------------------------------------------ */
.trustbar { background: var(--paper); border-bottom: 1px solid var(--line); }
.trustbar .container { display: flex; align-items: center; gap: 18px 40px; flex-wrap: wrap; justify-content: center; padding-block: 26px; }
.trustbar p { font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-muted); font-weight: 600; }
.trustbar .marks { display: flex; gap: 14px 30px; flex-wrap: wrap; align-items: center; }
.trustbar .cert {
  display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; font-size: .9rem; color: var(--ink-soft);
}
.trustbar .cert svg { width: 18px; height: 18px; color: var(--forest-600); }

/* ---------- Cards -------------------------------------------------------- */
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.card .ic {
  width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 20px;
  background: var(--forest-100); color: var(--forest-700);
}
.card .ic svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: .98rem; }
.card .link-arrow { margin-top: 18px; }

.card--gold .ic { background: var(--gold-100); color: var(--gold-600); }

/* Numbered feature */
.feature { display: flex; gap: 18px; }
.feature .num {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 600; font-size: 1.1rem;
  background: var(--forest-800); color: var(--gold-400);
}
.feature h4 { margin-bottom: 6px; }
.feature p { font-size: .96rem; }

/* ---------- Product cards ----------------------------------------------- */
.product-card { overflow: hidden; padding: 0; display: flex; flex-direction: column; }
.product-card .media {
  height: 190px; position: relative; display: grid; place-items: center;
}
.product-card .media svg { width: 72px; height: 72px; color: rgba(255,255,255,.92); position: relative; z-index: 2; }
.product-card .media .tag {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  background: rgba(255,255,255,.9); color: var(--forest-900); padding: .3rem .65rem; border-radius: 999px;
}
.media--propolis, .media--oil, .media--kaolin { background-size: cover; background-position: center; }
.media--propolis { background-image: linear-gradient(150deg, rgba(40,25,5,.32), rgba(40,25,5,.05)), url("../img/prod-propolis.jpg"); }
.media--oil { background-image: linear-gradient(150deg, rgba(60,30,5,.30), rgba(60,30,5,.05)), url("../img/prod-buckthorn.jpg"); }
.media--kaolin { background-image: linear-gradient(150deg, rgba(40,50,55,.34), rgba(40,50,55,.06)), url("../img/prod-kaolin.jpg"); }
.product-card .media--propolis > svg, .product-card .media--oil > svg, .product-card .media--kaolin > svg { display: none; }
.media--future { background: linear-gradient(150deg, var(--forest-700), var(--forest-900)); }
.product-card .body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.product-card .body h3 { margin-bottom: 8px; }
.product-card .specs { margin: 16px 0 20px; display: grid; gap: 8px; }
.product-card .specs li { display: flex; justify-content: space-between; font-size: .88rem; padding: 7px 0; border-bottom: 1px dashed var(--line); }
.product-card .specs li span:first-child { color: var(--ink-muted); }
.product-card .specs li span:last-child { color: var(--ink); font-weight: 600; }
.product-card .body .btn { margin-top: auto; }

/* ---------- Split / alternating sections -------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media--photo { background-size: cover !important; background-position: center; }
.split-media--photo > svg { display: none; }
.split-media--lab { background-image: linear-gradient(150deg, rgba(12,44,32,.58), rgba(12,44,32,.28)), url("../img/lab-testing.jpg") !important; }
.split-media--oil { background-image: linear-gradient(150deg, rgba(12,44,32,.40), rgba(12,44,32,.18)), url("../img/lab-oil.jpg") !important; }
.split-media--propolis-lab { background-image: linear-gradient(150deg, rgba(30,22,10,.30), rgba(30,22,10,.08)), url("../img/propolis-lab.jpg") !important; }
.split-media--oil-lab { background-image: linear-gradient(150deg, rgba(22,30,12,.26), rgba(22,30,12,.06)), url("../img/oil-lab.jpg") !important; }
.split-media--kaolin-lab { background-image: linear-gradient(150deg, rgba(10,14,20,.34), rgba(10,14,20,.12)), url("../img/kaolin-lab.png") !important; }
.split-media {
  border-radius: var(--radius-lg); min-height: 380px; position: relative; overflow: hidden;
  box-shadow: var(--shadow-md); display: grid; place-items: center;
  background: linear-gradient(150deg, var(--forest-800), var(--forest-900));
}
.split-media svg { width: 96px; height: 96px; color: var(--gold-400); opacity: .9; }
.split-media .badge {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  background: rgba(255,255,255,.95); border-radius: var(--radius); padding: 16px 18px;
  display: flex; align-items: center; gap: 14px; box-shadow: var(--shadow-md);
}
.split-media--photo .badge { background: rgba(255,255,255,.25); -webkit-backdrop-filter: blur(11px); backdrop-filter: blur(11px); }
.split-media .badge .ic { width: 40px; height: 40px; border-radius: 10px; background: var(--forest-100); color: var(--forest-700); display: grid; place-items: center; flex-shrink: 0; }
.split-media .badge .ic svg { width: 20px; height: 20px; }
.split-media .badge strong { display: block; font-size: .95rem; color: var(--ink); }
.split-media .badge span { font-size: .82rem; color: var(--ink-muted); }
.checklist { display: grid; gap: 14px; margin-top: 26px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; }
.checklist li svg { width: 22px; height: 22px; color: var(--forest-600); flex-shrink: 0; margin-top: 2px; }
.checklist li strong { color: var(--ink); }
.checklist li span { color: var(--ink-soft); }

/* ---------- Stats band --------------------------------------------------- */
.statband { background: var(--forest-900); color: #fff; }
.statband .grid { gap: 0; }
.statband .stat { padding: 14px 24px; text-align: center; border-left: 1px solid rgba(255,255,255,.12); }
.statband .stat:first-child { border-left: 0; }
.statband .stat strong { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3rem); color: var(--gold-400); display: block; line-height: 1; }
.statband .stat span { color: rgba(255,255,255,.74); font-size: .92rem; margin-top: 8px; display: block; }

/* ---------- Process steps ------------------------------------------------ */
.steps { counter-reset: step; display: grid; gap: 4px; }
.step { display: grid; grid-template-columns: 64px 1fr; gap: 22px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.step:last-child { border-bottom: 0; }
.step .dot {
  width: 56px; height: 56px; border-radius: 50%; border: 1px solid var(--line-strong);
  display: grid; place-items: center; font-family: var(--font-display); font-size: 1.3rem; color: var(--forest-700);
  background: var(--paper);
}
.step h3 { margin-bottom: 6px; font-size: 1.3rem; }

/* ---------- Industries grid --------------------------------------------- */
.industry-card { position: relative; overflow: hidden; min-height: 230px; display: flex; flex-direction: column; justify-content: flex-end; padding: 26px; color: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.industry-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.industry-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,44,32,.15), rgba(12,44,32,.88)); z-index: 1; }
.industry-card > * { position: relative; z-index: 2; }
.industry-card .ic { width: 46px; height: 46px; border-radius: 12px; background: rgba(255,255,255,.16); display: grid; place-items: center; margin-bottom: auto; }
.industry-card .ic svg { width: 24px; height: 24px; color: #fff; }
.industry-card h3 { color: #fff; margin: 16px 0 8px; }
.industry-card p { color: rgba(255,255,255,.82); font-size: .92rem; }
.ind--nutra { background: linear-gradient(150deg, #1c6b4d, #0c2c20); }
.ind--cosm { background: linear-gradient(150deg, #9a6b2e, #4a2f10); }
.ind--food { background: linear-gradient(150deg, #b5832a, #6b4a12); }
.ind--ind { background: linear-gradient(150deg, #44524a, #1a2420); }

/* ---------- Quote / CTA band -------------------------------------------- */
.cta-band {
  background:
    radial-gradient(900px 500px at 85% 20%, rgba(195,154,69,.18), transparent 55%),
    linear-gradient(150deg, var(--forest-800), var(--forest-900));
  color: #fff; border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 72px);
  position: relative; overflow: hidden; box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: #fff; max-width: 20ch; }
.cta-band p { color: rgba(255,255,255,.82); margin-top: 16px; max-width: 52ch; }
.cta-band .hero-actions { margin-top: 30px; }

/* ---------- Account / portal band --------------------------------------- */
.account-band { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px; background: var(--paper); border: 1px solid var(--line); border-left: 4px solid var(--gold-500); border-radius: var(--radius); padding: 34px 40px; box-shadow: var(--shadow-sm); }
.account-band-text { flex: 1 1 360px; }
.account-band-text .eyebrow { color: var(--gold-600); }
.account-band-text h2 { margin: 6px 0 10px; }
.account-band-text p { color: var(--ink-soft); max-width: 56ch; margin: 0; }
.account-band-actions { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 640px) { .account-band { padding: 28px 24px; } .account-band-actions, .account-band-actions .btn { width: 100%; } }

/* ---------- Legal / prose pages ----------------------------------------- */
.legal-prose { max-width: 760px; margin-inline: auto; }
.legal-prose h2 { font-size: 1.4rem; margin: 36px 0 10px; }
.legal-prose p { margin: 0 0 14px; }
.legal-prose ul { margin: 0 0 16px; padding-left: 20px; }
.legal-prose li { margin-bottom: 8px; color: var(--ink-soft); }
.legal-prose a { color: var(--gold-600); text-decoration: underline; }
.legal-prose code { background: var(--sand); padding: 1px 6px; border-radius: 6px; font-size: .9em; }

/* ---------- Testimonial -------------------------------------------------- */
.quote-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); height: 100%; display: flex; flex-direction: column; }
.quote-card .stars { color: var(--gold-500); letter-spacing: 2px; margin-bottom: 16px; }
.quote-card blockquote { font-family: var(--font-display); font-size: 1.18rem; line-height: 1.5; color: var(--ink); }
.quote-card .who { margin-top: auto; padding-top: 22px; display: flex; align-items: center; gap: 12px; }
.quote-card .who .av { width: 44px; height: 44px; border-radius: 50%; background: var(--forest-100); color: var(--forest-700); display: grid; place-items: center; font-weight: 700; }
.quote-card .who strong { display: block; font-size: .95rem; }
.quote-card .who span { font-size: .84rem; color: var(--ink-muted); }

/* ---------- Page hero (inner pages) ------------------------------------- */
.page-hero {
  background:
    radial-gradient(900px 500px at 90% -20%, rgba(195,154,69,.14), transparent 55%),
    linear-gradient(160deg, var(--forest-900), var(--forest-800));
  color: #fff; padding: clamp(60px, 8vw, 110px) 0 clamp(50px, 6vw, 80px);
  position: relative; overflow: hidden;
}
.page-hero::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.05) 1px, transparent 0); background-size: 30px 30px; opacity: .5; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; max-width: 18ch; }
.page-hero p { color: rgba(255,255,255,.82); font-size: 1.18rem; margin-top: 20px; max-width: 60ch; }
.page-hero .eyebrow { color: var(--gold-400); }
.page-hero .eyebrow::before { background: var(--gold-400); }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: .85rem; color: rgba(255,255,255,.6); margin-bottom: 22px; }
.breadcrumb a:hover { color: var(--gold-400); }
.breadcrumb svg { width: 14px; height: 14px; }

/* ---------- Forms -------------------------------------------------------- */
.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 44px); box-shadow: var(--shadow-md); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .88rem; font-weight: 600; color: var(--ink); }
.field label .req { color: #b3471f; }
.field input, .field select, .field textarea {
  font: inherit; font-size: .96rem; padding: .8rem .95rem; border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm); background: var(--cream); color: var(--ink); transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--forest-600); box-shadow: 0 0 0 3px rgba(28, 107, 77, .14); background: var(--paper);
}
.field .hint { font-size: .8rem; color: var(--ink-muted); }
.form-note { font-size: .82rem; color: var(--ink-muted); margin-top: 8px; display: flex; gap: 8px; align-items: flex-start; }
.form-note svg { width: 16px; height: 16px; color: var(--forest-600); flex-shrink: 0; margin-top: 2px; }
.form-success {
  display: none; align-items: center; gap: 12px; background: var(--forest-100); border: 1px solid var(--forest-600);
  color: var(--forest-800); padding: 16px 18px; border-radius: var(--radius); font-weight: 500;
}
.form-success.show { display: flex; }
.form-success svg { width: 24px; height: 24px; flex-shrink: 0; }

/* Contact info cards */
.info-item { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.info-item:last-child { border-bottom: 0; }
.info-item .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--forest-100); color: var(--forest-700); display: grid; place-items: center; flex-shrink: 0; }
.info-item .ic svg { width: 22px; height: 22px; }
.info-item strong { display: block; font-size: .95rem; }
.info-item a, .info-item span { color: var(--ink-soft); font-size: .95rem; }
.info-item a:hover { color: var(--forest-700); }

/* ---------- FAQ / accordion --------------------------------------------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 22px 0; display: flex; justify-content: space-between; gap: 20px; align-items: center; font-family: var(--font-display); font-size: 1.2rem; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { width: 24px; height: 24px; flex-shrink: 0; transition: transform .25s var(--ease); color: var(--forest-700); }
.faq details[open] summary .chev { transform: rotate(180deg); }
.faq details p { padding-bottom: 22px; font-size: 1rem; max-width: 70ch; }

/* ---------- Tables (specs / compliance) --------------------------------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
table.data { width: 100%; border-collapse: collapse; min-width: 540px; background: var(--paper); }
table.data th, table.data td { text-align: left; padding: 15px 20px; border-bottom: 1px solid var(--line); font-size: .94rem; }
table.data thead th { background: var(--forest-900); color: #fff; font-weight: 600; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; }
table.data tbody tr:last-child td { border-bottom: 0; }
table.data tbody tr:hover { background: var(--cream); }
table.data td:first-child { font-weight: 600; color: var(--ink); }

/* ---------- Pills / tags ------------------------------------------------- */
.tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tags li { font-size: .85rem; font-weight: 500; padding: .45rem .85rem; border-radius: 999px; background: var(--paper); border: 1px solid var(--line-strong); color: var(--ink-soft); }

/* ---------- Footer ------------------------------------------------------- */
.site-footer { background: var(--forest-900); color: rgba(255,255,255,.72); padding: 72px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.site-footer .brand-text strong { color: #fff; }
.site-footer .brand-text small { color: rgba(255,255,255,.5); }
.site-footer .brand-mark { background: linear-gradient(150deg, var(--forest-600), var(--forest-800)); }
.footer-about { margin-top: 20px; font-size: .95rem; color: rgba(255,255,255,.66); max-width: 34ch; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; border: 1px solid rgba(255,255,255,.16); display: grid; place-items: center; transition: .2s var(--ease); }
.footer-social a:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.3); }
.footer-social svg { width: 18px; height: 18px; color: #fff; }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; font-weight: 600; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { font-size: .94rem; color: rgba(255,255,255,.7); transition: color .2s; }
.footer-col a:hover { color: var(--gold-400); }
.footer-bottom { margin-top: 52px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .85rem; color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: var(--gold-400); }

/* ---------- Scroll reveal ------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .card:hover, .industry-card:hover, .product-card:hover { transform: none; }
}

/* ---------- Utilities ---------------------------------------------------- */
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 12px; } .mt-2 { margin-top: 24px; } .mt-3 { margin-top: 36px; } .mt-4 { margin-top: 48px; }
.bg-paper { background: var(--paper); }
.bg-sand { background: var(--sand); }
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ---------- Responsive --------------------------------------------------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .split { grid-template-columns: 1fr; gap: 34px; }
  .split.reverse .split-media { order: 0; }
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .statband .grid { grid-template-columns: repeat(2, 1fr); }
  .statband .stat:nth-child(1), .statband .stat:nth-child(2) { border-left: 0; }
  .statband .stat { border-top: 1px solid rgba(255,255,255,.12); }
  .statband .stat:nth-child(-n+2) { border-top: 0; }
}
@media (max-width: 860px) {
  .topbar { display: none; }
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; inset: 76px 0 auto 0; flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--cream); border-bottom: 1px solid var(--line); padding: 14px 24px 24px;
    box-shadow: var(--shadow-lg); transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: .25s var(--ease); max-height: calc(100vh - 76px); overflow-y: auto;
  }
  .nav-menu.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-menu a { padding: .9rem .6rem; font-size: 1.05rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav-actions .btn--ghost { display: none; }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; }
  .hero-trust { gap: 26px; }
  .statband .grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; }
  .section { padding: 56px 0; }
}

/* ---------- Language switcher ------------------------------------------- */
.lang-switch { display: inline-flex; align-items: center; }
.lang-switch select {
  appearance: none; -webkit-appearance: none; font: inherit; font-size: .82rem; font-weight: 600;
  letter-spacing: .04em; color: var(--ink); background-color: var(--paper);
  border: 1px solid var(--line-strong); border-radius: 8px; padding: .5rem 1.8rem .5rem .65rem; cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316201B' stroke-width='2'><path d='m6 9 6 6 6-6'/></svg>");
  background-repeat: no-repeat; background-position: right .5rem center; background-size: 12px;
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.lang-switch select:hover { border-color: var(--forest-700); color: var(--forest-800); }
.lang-switch select:focus { outline: none; border-color: var(--forest-600); box-shadow: 0 0 0 3px rgba(28,107,77,.14); }
@media (max-width: 520px) { .nav-actions .btn--gold { padding: .8rem 1rem; } .lang-switch select { padding: .5rem 1.6rem .5rem .55rem; } }
/* ---------- Language switcher (flag buttons) --------------------------- */
.lang-switch { display: flex; align-items: center; gap: 5px; flex-wrap: wrap; max-width: 240px; }
.flag-btn {
  width: 26px; height: 18px; padding: 0; border: 0; background: none; border-radius: 3px;
  cursor: pointer; overflow: hidden; line-height: 0; opacity: .45; filter: grayscale(40%);
  box-shadow: 0 0 0 1px rgba(0,0,0,.14); transition: opacity .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.flag-btn svg { width: 100%; height: 100%; display: block; }
.flag-btn:hover { opacity: 1; filter: none; transform: translateY(-1px); }
.flag-btn.active { opacity: 1; filter: none; box-shadow: 0 0 0 2px var(--forest-600); }
@media (max-width: 860px) { .nav-actions .btn--gold { display: none; } .lang-switch { max-width: 200px; } }
/* ---------- Flags relocated to the top bar ----------------------------- */
.topbar-contact { align-items: center; }
.topbar .lang-switch { max-width: none; gap: 6px; display: grid; grid-template-columns: repeat(7, auto); justify-content: end; }
.topbar .flag-btn { box-shadow: 0 0 0 1px rgba(255,255,255,.28); }
.topbar .flag-btn.active { box-shadow: 0 0 0 2px var(--gold-400); }
.topbar-login {
  display: inline-flex; align-items: center; gap: 6px; margin-left: 8px;
  padding: 4px 12px; border-radius: 999px; border: 1px solid rgba(255,255,255,.3);
  color: #fff; font-size: .76rem; font-weight: 600; letter-spacing: .02em; text-decoration: none;
  transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.topbar-login svg { width: 14px; height: 14px; }
.topbar-login:hover { background: var(--gold-500); border-color: var(--gold-500); color: #2A1E06; }
@media (max-width: 860px) {
  .topbar { display: block; }
  .topbar .container { justify-content: center; min-height: 38px; }
  .topbar-tags { display: none; }
  .topbar-contact > a[href^="mailto"], .topbar-contact > a[href^="tel"] { display: none; }  /* hide email/phone text, keep flags + login */
  .topbar-contact { gap: 0; }
  .topbar .lang-switch { justify-content: center; }
  .nav-actions .btn--gold { display: inline-flex; }  /* restore quote CTA in mobile header */
}
/* ---------- RTL support (Arabic) --------------------------------------- */
html[lang="ar"] { font-family: "Segoe UI", Tahoma, "Geeza Pro", sans-serif; }
html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3, html[lang="ar"] h4 { font-family: "Segoe UI", Tahoma, sans-serif; }
html[dir="rtl"] .btn svg, html[dir="rtl"] .link-arrow svg, html[dir="rtl"] .breadcrumb svg,
html[dir="rtl"] .hero-prod .ic + *, html[dir="rtl"] .faq summary .chev { /* arrows mirror */ }
html[dir="rtl"] .btn svg, html[dir="rtl"] .link-arrow svg, html[dir="rtl"] .breadcrumb svg { transform: scaleX(-1); }