/* ==========================================================================
   Flow Trade Exim — style.css
   --------------------------------------------------------------------------
   Table of contents
   1.  Design tokens (colours from logo.svg / favicon.svg)
   2.  Reset & base
   3.  Typography
   4.  Layout helpers (container, sections, grids)
   5.  Buttons & links
   6.  Top bar & site header (sticky, dropdown)
   7.  Mobile slide-in menu
   8.  Hero & page banners
   9.  Home components (stats, split, product cards, features, timeline,
       reach, testimonials, CTA band)
   10. Product pages (filter, variety blocks, spec tables)
   11. Content pages (quality, export process, global reach, about)
   12. Contact form
   13. Footer
   14. Floating WhatsApp + back-to-top
   15. Scroll-reveal animation
   16. Responsive breakpoints (480 / 768 / 992 / 1200)
   17. Reduced motion & print
   ========================================================================== */


/* ==========================================================================
   1. DESIGN TOKENS
   Colours were read directly from the supplied logo.svg / favicon.svg:
     #FCB017 — logo gold (the mark and wordmark accent)
     #231F20 — favicon ground / brand charcoal
     #FFFFFF — wordmark
   The bright gold fails 4.5:1 on white as *text*, so --brand-accent is a
   darkened gold (#9C6400, 4.96:1 on white) used for links & small text.
   Buttons use the true logo gold as a *background* with charcoal text
   (8.8:1), which is fully compliant.
   ========================================================================== */
:root {
  --brand-primary:   #231F20;   /* dominant logo ground — header, footer, headings on gold */
  --brand-secondary: #FCB017;   /* logo gold — buttons, highlights, indicator bars */
  --brand-accent:    #9C6400;   /* darkened gold — links & accent text on white (4.96:1) */
  --gold-hover:      #E9A20E;   /* button hover state */
  --gold-tint:       #FFF4DC;   /* soft gold wash for icon chips / badges */

  --ink-900:  #1A1D1A;          /* headings */
  --ink-600:  #52605A;          /* body text */
  --ink-400:  #7A857F;          /* muted captions */
  --line:     #E6E9E7;          /* borders */
  --surface:  #FFFFFF;
  --surface-alt: #F7F9F7;       /* alternating section bands */
  --surface-dark: #231F20;
  --surface-dark-2: #2E2A2B;

  --success:  #1F7A4D;
  --error:    #B42318;
  --whatsapp: #25D366;

  --font-head: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;

  --radius-sm: 8px;
  --radius:    12px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 2px rgba(26, 29, 26, .06), 0 1px 3px rgba(26, 29, 26, .04);
  --shadow:    0 6px 24px rgba(26, 29, 26, .08);
  --shadow-lg: 0 18px 48px rgba(26, 29, 26, .14);

  --container: 1240px;
  --gutter: 20px;

  --header-h: 84px;
  --header-h-compact: 68px;
  --topbar-h: 38px;

  --ease: cubic-bezier(.22, .61, .36, 1);
}


/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h-compact) + 16px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-600);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }

a { color: var(--brand-accent); text-decoration: none; }
a:hover { text-decoration: underline; }

ul, ol { margin: 0; padding: 0; }
.list-reset { list-style: none; }

button { font: inherit; cursor: pointer; }
address { font-style: normal; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2rem 0; }

:focus-visible {
  outline: 3px solid var(--brand-secondary);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 2000;
  padding: 12px 18px;
  background: var(--brand-primary);
  color: #fff;
  font-weight: 600;
  border-radius: var(--radius-sm);
}
.skip-link:focus { top: 12px; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}


/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink-900);
  line-height: 1.15;
  margin: 0 0 .6em;
  letter-spacing: -.01em;
  font-weight: 700;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; letter-spacing: -.02em; }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.lead { font-size: 1.15rem; line-height: 1.7; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand-accent);
  margin-bottom: .8rem;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 22px; height: 3px;
  background: var(--brand-secondary);
  vertical-align: middle;
  margin-right: 10px;
  border-radius: 2px;
}
.muted { color: var(--ink-400); }
.small { font-size: .9rem; }
.text-center { text-align: center; }


/* ==========================================================================
   4. LAYOUT HELPERS
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: 860px; }

.section { padding-block: clamp(56px, 8vw, 104px); }
.section--alt { background: var(--surface-alt); }
.section--dark { background: var(--surface-dark); color: rgba(255, 255, 255, .78); }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark .eyebrow { color: var(--brand-secondary); }
.section--tight { padding-block: clamp(40px, 5vw, 64px); }

.section__head { max-width: 720px; margin-bottom: clamp(32px, 4vw, 56px); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--center .eyebrow::before { display: none; }
.section__head p { font-size: 1.08rem; }

.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.table-wrap {
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
table { width: 100%; border-collapse: collapse; min-width: 520px; font-size: .95rem; }
th, td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
th { font-family: var(--font-head); font-weight: 700; color: var(--ink-900); background: var(--surface-alt); white-space: nowrap; }
tr:last-child td { border-bottom: 0; }
tbody th { background: #fff; width: 34%; }


/* ==========================================================================
   5. BUTTONS & LINKS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .98rem;
  line-height: 1.2;
  border: 2px solid transparent;
  text-decoration: none !important;
  transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
  white-space: nowrap;
}
.btn svg { flex: none; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--accent { background: var(--brand-secondary); color: var(--brand-primary); }
.btn--accent:hover { background: var(--gold-hover); box-shadow: 0 8px 20px rgba(252, 176, 23, .35); }

.btn--primary { background: var(--brand-primary); color: #fff; }
.btn--primary:hover { background: #3a3536; }

.btn--outline { background: transparent; color: var(--ink-900); border-color: var(--ink-900); }
.btn--outline:hover { background: var(--ink-900); color: #fff; }

.btn--light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .55); }
.btn--light:hover { background: #fff; color: var(--brand-primary); border-color: #fff; }

.btn--lg { min-height: 56px; padding: 16px 34px; font-size: 1.05rem; }
.btn--sm { min-height: 44px; padding: 10px 18px; font-size: .9rem; }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--brand-accent);
  min-height: 44px;
}
.link-arrow svg { transition: transform .2s var(--ease); }
.link-arrow:hover { text-decoration: none; }
.link-arrow:hover svg { transform: translateX(4px); }


/* ==========================================================================
   6. TOP BAR & SITE HEADER
   ========================================================================== */
.topbar {
  display: none;               /* shown from 768px up */
  background: #1A1718;
  color: rgba(255, 255, 255, .72);
  font-size: .85rem;
  height: var(--topbar-h);
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.topbar__tag { color: var(--brand-secondary); font-weight: 600; letter-spacing: .02em; }
.topbar__links { display: flex; gap: 28px; }
.topbar__links a { display: inline-flex; align-items: center; gap: 8px; min-height: var(--topbar-h); color: rgba(255, 255, 255, .78); }
.topbar__links a:hover { color: #fff; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--brand-primary);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  transition: box-shadow .25s var(--ease), background .25s var(--ease);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-h);
  transition: height .25s var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(0, 0, 0, .28); }
.site-header.is-scrolled .site-header__inner { height: var(--header-h-compact); }

.brand { display: inline-flex; align-items: center; flex: none; }
.brand img { width: 230px; height: 44px; transition: width .25s var(--ease), height .25s var(--ease); }
.site-header.is-scrolled .brand img { width: 200px; height: 38px; }

/* Desktop nav (hidden until 992px) */
.nav { display: none; }
.nav__list { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav__list > li { position: relative; }
.nav__list a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  padding: 10px 14px;
  min-height: 44px;
  color: rgba(255, 255, 255, .86);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  white-space: nowrap;
  border-radius: var(--radius-sm);
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav__list a:hover { color: #fff; text-decoration: none; background: rgba(255, 255, 255, .06); }

/* Active page: gold text + visible indicator bar */
.nav__list > li > a.active { color: var(--brand-secondary); }
.nav__list > li > a.active::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 3px;
  background: var(--brand-secondary);
  border-radius: 3px;
}

.has-dropdown .chev { transition: transform .2s var(--ease); }
.has-dropdown.is-open .chev, .has-dropdown:hover .chev { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 220px;
  list-style: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility 0s linear .2s;
}
.dropdown::before { /* invisible bridge so the menu doesn't close when moving the mouse down */
  content: ""; position: absolute; left: 0; right: 0; top: -10px; height: 10px;
}
.has-dropdown:hover .dropdown,
.has-dropdown.is-open .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
  transition-delay: 0s;
}
.dropdown a {
  display: flex;
  width: 100%;
  padding: 11px 14px;
  color: var(--ink-900);
  font-weight: 600;
  border-radius: var(--radius-sm);
}
.dropdown a:hover { background: var(--surface-alt); color: var(--ink-900); }
.dropdown a.active { background: var(--gold-tint); color: var(--brand-accent); }
.dropdown a.active::before { content: ""; width: 3px; border-radius: 2px; background: var(--brand-secondary); margin-right: 10px; }

.site-header__cta { display: none; }

/* Hamburger */
.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px; height: 48px;
  padding: 0 12px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius-sm);
  color: #fff;
}
.menu-toggle__bar { display: block; height: 2px; width: 100%; background: currentColor; border-radius: 2px; transition: transform .25s var(--ease), opacity .2s; }
.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ==========================================================================
   7. MOBILE MENU
   ========================================================================== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1200;               /* above the WhatsApp button (1100) */
  visibility: hidden;
  pointer-events: none;
}
.mobile-menu.is-open { visibility: visible; pointer-events: auto; }

.mobile-menu__backdrop {
  position: absolute; inset: 0;
  background: rgba(26, 23, 24, .6);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.mobile-menu.is-open .mobile-menu__backdrop { opacity: 1; }

.mobile-menu__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 100%;
  max-width: 100%;
  background: var(--brand-primary);
  color: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s var(--ease);
  overflow-y: auto;
  padding-bottom: env(safe-area-inset-bottom);
}
.mobile-menu.is-open .mobile-menu__panel { transform: translateX(0); }

.mobile-menu__head {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
  padding-inline: var(--gutter);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.mobile-menu__close {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 1px solid rgba(255, 255, 255, .18); border-radius: var(--radius-sm); color: #fff;
}

.mobile-menu__list { list-style: none; padding: 12px var(--gutter); flex: 1; }
.mobile-menu__list > li { border-bottom: 1px solid rgba(255, 255, 255, .08); }
.mobile-menu__list a,
.mobile-menu__acc-btn {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
  min-height: 56px;
  padding: 14px 4px;
  color: rgba(255, 255, 255, .9);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.15rem;
  background: none; border: 0; text-align: left;
}
.mobile-menu__list a:hover { text-decoration: none; color: #fff; }
.mobile-menu__list a.active, .mobile-menu__acc-btn.active { color: var(--brand-secondary); }
.mobile-menu__list > li > a.active { box-shadow: inset 4px 0 0 var(--brand-secondary); padding-left: 14px; }
.mobile-menu__acc-btn .chev { transition: transform .25s var(--ease); }
.mobile-menu__acc-btn[aria-expanded="true"] .chev { transform: rotate(180deg); }

.mobile-menu__sub { list-style: none; padding: 0 0 8px 18px; }
.mobile-menu__sub a { min-height: 48px; font-size: 1rem; font-weight: 500; color: rgba(255, 255, 255, .75); }
.mobile-menu__sub a.active { color: var(--brand-secondary); }

.mobile-menu__foot { padding: 16px var(--gutter) 28px; display: grid; gap: 12px; border-top: 1px solid rgba(255, 255, 255, .08); }
.mobile-menu__contact { color: rgba(255, 255, 255, .8); font-weight: 500; min-height: 44px; display: inline-flex; align-items: center; }


/* ==========================================================================
   8. HERO & PAGE BANNERS
   ========================================================================== */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(520px, 82vh, 780px);
  color: #fff;
  background-color: var(--brand-primary);
  background-image:
    linear-gradient(100deg, rgba(20, 17, 18, .88) 0%, rgba(20, 17, 18, .62) 50%, rgba(20, 17, 18, .35) 100%),
    var(--hero-img);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero__content { position: relative; max-width: 720px; padding-block: 72px; }
.hero__kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: .85rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand-secondary); margin-bottom: 20px;
}
.hero__kicker::before { content: ""; width: 28px; height: 3px; background: var(--brand-secondary); border-radius: 2px; }
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--brand-secondary); }
.hero p { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: rgba(255, 255, 255, .85); max-width: 580px; margin-bottom: 32px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 8px 28px; margin-top: 40px; font-size: .9rem; color: rgba(255, 255, 255, .7); }
.hero__meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero__meta svg { color: var(--brand-secondary); }

.banner {
  position: relative;
  color: #fff;
  background-color: var(--brand-primary);
  background-image:
    linear-gradient(100deg, rgba(20, 17, 18, .9) 0%, rgba(20, 17, 18, .7) 55%, rgba(20, 17, 18, .45) 100%),
    var(--banner-img);
  background-size: cover;
  background-position: center;
  padding-block: clamp(56px, 9vw, 110px);
}
.banner h1 { color: #fff; margin-bottom: 14px; }
.banner p { color: rgba(255, 255, 255, .82); font-size: 1.1rem; max-width: 640px; }
.breadcrumb { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; font-size: .88rem; color: rgba(255, 255, 255, .7); margin-bottom: 18px; }
.breadcrumb a { color: rgba(255, 255, 255, .85); }
.breadcrumb li + li::before { content: "/"; margin-right: 8px; color: rgba(255, 255, 255, .4); }
.breadcrumb [aria-current] { color: var(--brand-secondary); }


/* ==========================================================================
   9. HOME COMPONENTS
   ========================================================================== */

/* --- Trust strip / counters ---------------------------------------- */
.stats { background: var(--brand-primary); color: #fff; }
.stats__grid { display: grid; grid-template-columns: repeat(2, 1fr); }
.stat { padding: 28px 16px; text-align: center; border-right: 1px solid rgba(255, 255, 255, .08); border-bottom: 1px solid rgba(255, 255, 255, .08); }
.stat:nth-child(2n) { border-right: 0; }
.stat:nth-child(n+3) { border-bottom: 0; }
.stat__num { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 800; color: var(--brand-secondary); line-height: 1; letter-spacing: -.02em; }
.stat__num sup { font-size: .5em; vertical-align: super; margin-left: 2px; }
.stat__label { margin-top: 8px; font-size: .92rem; color: rgba(255, 255, 255, .72); }

/* --- Two-column split ------------------------------------------------ */
.split { display: grid; grid-template-columns: minmax(0, 1fr); gap: 40px; align-items: center; }
.split > * { min-width: 0; }
.split__img { position: relative; }
.split__img img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); object-fit: cover; aspect-ratio: 4 / 3; }
.split__badge {
  position: absolute; left: 20px; bottom: 20px;
  background: var(--brand-secondary); color: var(--brand-primary);
  font-family: var(--font-head); font-weight: 700; font-size: .9rem;
  padding: 10px 16px; border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}
.split__body h2 { margin-bottom: 18px; }
.split__body .btn { margin-top: 12px; }
.check-list { list-style: none; display: grid; gap: 12px; margin: 22px 0; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-900); font-weight: 500; }
.check-list svg { flex: none; margin-top: 3px; color: var(--brand-accent); }

/* --- Product cards --------------------------------------------------- */
.pcards { display: grid; gap: 24px; }
.pcard {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.pcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pcard__img { aspect-ratio: 4 / 3; overflow: hidden; background: var(--surface-alt); }
.pcard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.pcard:hover .pcard__img img { transform: scale(1.04); }
.pcard__body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.pcard__body h3 { margin-bottom: 8px; }
.pcard__local { font-size: .85rem; color: var(--brand-accent); font-weight: 600; margin-bottom: 10px; letter-spacing: .02em; }
.pcard__tags { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 20px; }
.pcard__tags li { font-size: .8rem; font-weight: 600; color: var(--ink-900); background: var(--surface-alt); border: 1px solid var(--line); padding: 5px 10px; border-radius: 999px; }
.pcard .link-arrow { margin-top: auto; }

/* --- Feature (why choose us) ---------------------------------------- */
.features { display: grid; gap: 20px; }
.feature { padding: 30px 28px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); transition: box-shadow .25s var(--ease), border-color .25s var(--ease); }
.feature:hover { box-shadow: var(--shadow); border-color: transparent; }
.feature__icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gold-tint); color: var(--brand-accent);
  margin-bottom: 18px;
}
.feature h3 { font-size: 1.15rem; margin-bottom: 8px; }
.feature p { font-size: .96rem; }

/* --- Certification logos (home) -------------------------------------- */
.cert-strip { background: var(--surface-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cert-logos { display: grid; gap: 20px; max-width: 900px; margin-inline: auto; }
.cert-logo {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 32px 28px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}
.cert-logo:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.cert-logo__img { height: 88px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.cert-logo__img img { max-height: 88px; width: auto; height: auto; max-width: 200px; object-fit: contain; }
.cert-logo h3 { font-size: 1.15rem; margin-bottom: 8px; }
.cert-logo p { font-size: .95rem; max-width: 340px; }
.cert-logo__no {
  margin-top: 16px; font-family: var(--font-head); font-size: .8rem; font-weight: 700; letter-spacing: .06em;
  color: var(--brand-accent); background: var(--gold-tint); padding: 6px 14px; border-radius: 999px;
}

/* --- Process timeline ------------------------------------------------ */
.timeline { list-style: none; display: grid; gap: 28px; position: relative; counter-reset: step; }
.timeline__step { position: relative; display: grid; grid-template-columns: 56px 1fr; gap: 18px; align-items: start; }
.timeline__num {
  width: 56px; height: 56px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--brand-primary); color: var(--brand-secondary);
  font-family: var(--font-head); font-weight: 800; font-size: 1.15rem;
  box-shadow: 0 0 0 6px var(--gold-tint);
  position: relative; z-index: 1;
}
.timeline__step::before { /* vertical connector on mobile */
  content: ""; position: absolute; left: 27px; top: 60px; bottom: -34px; width: 2px; background: var(--line);
}
.timeline__step:last-child::before { display: none; }
.timeline__step h3 { font-size: 1.1rem; margin: 14px 0 6px; }
.timeline__step p { font-size: .95rem; }

/* --- Global reach ---------------------------------------------------- */
.reach { display: grid; grid-template-columns: minmax(0, 1fr); gap: 40px; align-items: center; }
.reach > * { min-width: 0; }
.reach__map img { width: 100%; height: auto; }
.reach__legend { display: flex; gap: 22px; margin-top: 14px; font-size: .85rem; color: var(--ink-400); }
.reach__legend span { display: inline-flex; align-items: center; gap: 8px; }
.reach__legend i { width: 14px; height: 14px; border-radius: 4px; display: inline-block; }
.regions { list-style: none; display: grid; gap: 12px; }
.regions li { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; padding: 14px 16px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); }
.regions strong { display: block; color: var(--ink-900); font-family: var(--font-head); }
.regions span { font-size: .92rem; }
.regions svg { color: var(--brand-accent); margin-top: 3px; }

/* --- Testimonials ---------------------------------------------------- */
.testimonials { position: relative; }
.slider { position: relative; max-width: 860px; margin-inline: auto; }
.slider__track { position: relative; min-height: 260px; }
.slide {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transition: opacity .5s var(--ease), visibility 0s linear .5s;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px); box-shadow: var(--shadow-sm);
}
.slide.is-active { opacity: 1; visibility: visible; position: relative; transition-delay: 0s; }
.slide__quote { font-family: var(--font-head); font-size: clamp(1.1rem, 1.8vw, 1.35rem); color: var(--ink-900); line-height: 1.55; font-weight: 500; margin-bottom: 24px; }
.slide__quote::before { content: "\201C"; color: var(--brand-secondary); font-size: 2.4em; line-height: 0; vertical-align: -.35em; margin-right: 6px; font-weight: 800; }
.slide__who { display: flex; align-items: center; gap: 14px; }
.slide__avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--brand-primary); color: var(--brand-secondary); font-family: var(--font-head); font-weight: 800; display: inline-flex; align-items: center; justify-content: center; }
.slide__who strong { display: block; color: var(--ink-900); }
.slide__who span { font-size: .9rem; }
.slider__controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 24px; }
.slider__btn { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); background: #fff; color: var(--ink-900); display: inline-flex; align-items: center; justify-content: center; transition: background .2s, color .2s; }
.slider__btn:hover { background: var(--brand-primary); color: #fff; }
.slider__dots { display: flex; gap: 0; }
.slider__dot { position: relative; width: 44px; height: 44px; border-radius: 50%; border: 0; padding: 0; background: transparent; }
.slider__dot::before { content: ""; position: absolute; inset: 50%; width: 12px; height: 12px; margin: -6px 0 0 -6px; border-radius: 50%; background: var(--line); transition: background .2s, transform .2s; }
.slider__dot[aria-current="true"]::before { background: var(--brand-secondary); transform: scale(1.25); }
.placeholder-note { text-align: center; font-size: .8rem; color: var(--ink-400); margin-top: 18px; }

/* --- CTA band -------------------------------------------------------- */
.cta-band {
  background: var(--brand-secondary);
  color: var(--brand-primary);
  padding-block: clamp(48px, 6vw, 72px);
}
.cta-band__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; }
.cta-band h2 { color: var(--brand-primary); margin: 0 0 6px; }
.cta-band p { margin: 0; font-weight: 500; color: rgba(35, 31, 32, .8); }
.cta-band .btn--primary:hover { background: #000; }


/* ==========================================================================
   10. PRODUCT PAGES
   ========================================================================== */
.filter { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.filter__btn {
  min-height: 44px; padding: 10px 20px;
  border-radius: 999px; border: 1px solid var(--line); background: #fff;
  color: var(--ink-900); font-family: var(--font-head); font-weight: 600; font-size: .92rem;
  transition: background .2s, color .2s, border-color .2s;
}
.filter__btn:hover { border-color: var(--ink-900); }
.filter__btn[aria-pressed="true"] { background: var(--brand-primary); color: var(--brand-secondary); border-color: var(--brand-primary); }
.filter__count { font-size: .9rem; color: var(--ink-400); margin-bottom: 20px; }
.pcard.is-hidden { display: none; }

.variety { display: grid; grid-template-columns: minmax(0, 1fr); gap: 32px; align-items: start; scroll-margin-top: 100px; }
.variety > * { min-width: 0; }
.variety + .variety { margin-top: clamp(48px, 7vw, 88px); padding-top: clamp(48px, 7vw, 88px); border-top: 1px solid var(--line); }
.variety__img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.variety__body h2 { margin-bottom: 6px; }
.variety__local { color: var(--brand-accent); font-weight: 600; margin-bottom: 16px; }
.variety__hs { display: inline-flex; align-items: center; gap: 8px; background: var(--surface-alt); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 8px 14px; font-size: .9rem; font-weight: 600; color: var(--ink-900); margin-bottom: 20px; }
.variety__hs span { color: var(--brand-accent); }
.variety__tables { display: grid; grid-template-columns: minmax(0, 1fr); gap: 24px; margin-top: 28px; }
.variety__tables > * { min-width: 0; }
.variety__tables h3 { font-size: 1.05rem; margin-bottom: 12px; }
.variety__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

.uses { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 0; }
.uses li { font-size: .82rem; font-weight: 600; background: var(--gold-tint); color: var(--brand-accent); padding: 6px 12px; border-radius: 999px; }

.cat-nav { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.cat-nav a { display: inline-flex; align-items: center; min-height: 44px; padding: 8px 16px; border-radius: 999px; background: rgba(255, 255, 255, .12); color: #fff; font-weight: 600; font-size: .9rem; }
.cat-nav a:hover { background: var(--brand-secondary); color: var(--brand-primary); text-decoration: none; }


/* ==========================================================================
   11. CONTENT PAGES
   ========================================================================== */
.values { display: grid; gap: 20px; }
.value { padding: 28px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); }
.value__num { font-family: var(--font-head); font-weight: 800; font-size: 2rem; color: var(--brand-secondary); line-height: 1; margin-bottom: 14px; }
.value h3 { font-size: 1.1rem; }

.mv { display: grid; gap: 20px; }
.mv__card { padding: 32px; border-radius: var(--radius-lg); background: var(--brand-primary); color: rgba(255, 255, 255, .8); }
.mv__card h3 { color: #fff; display: flex; align-items: center; gap: 12px; }
.mv__card h3 svg { color: var(--brand-secondary); }
.mv__card--gold { background: var(--brand-secondary); color: rgba(35, 31, 32, .85); }
.mv__card--gold h3 { color: var(--brand-primary); }
.mv__card--gold h3 svg { color: var(--brand-primary); }

.infra { display: grid; gap: 20px; }
.infra__item { display: grid; grid-template-columns: 52px 1fr; gap: 18px; padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.infra__item .feature__icon { width: 52px; height: 52px; margin: 0; }
.infra__item h3 { font-size: 1.1rem; margin-bottom: 6px; }
.infra__item p { font-size: .95rem; }

.leader { display: grid; gap: 28px; align-items: center; padding: clamp(28px, 4vw, 44px); background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.leader__avatar { width: 96px; height: 96px; border-radius: 50%; background: var(--brand-primary); color: var(--brand-secondary); font-family: var(--font-head); font-weight: 800; font-size: 2rem; display: inline-flex; align-items: center; justify-content: center; flex: none; }
.leader blockquote { margin: 0; font-family: var(--font-head); font-size: 1.15rem; color: var(--ink-900); line-height: 1.6; }
.leader cite { display: block; margin-top: 14px; font-style: normal; font-size: .95rem; color: var(--ink-600); }
.leader cite strong { color: var(--ink-900); }

/* Quality process steps */
.steps { list-style: none; display: grid; gap: 20px; counter-reset: qstep; }
.step { position: relative; padding: 28px 28px 28px 84px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.step::before {
  counter-increment: qstep; content: counter(qstep, decimal-leading-zero);
  position: absolute; left: 24px; top: 26px;
  font-family: var(--font-head); font-weight: 800; font-size: 1.4rem; color: var(--brand-secondary);
}
.step h3 { font-size: 1.15rem; margin-bottom: 6px; }
.step p { font-size: .96rem; }

.certs { display: grid; gap: 16px; }
.cert {
  aspect-ratio: 3 / 2; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  border: 2px dashed var(--line); border-radius: var(--radius); background: #fff; color: var(--ink-400); text-align: center; padding: 16px;
}
.cert strong { font-family: var(--font-head); color: var(--ink-900); font-size: 1.1rem; }
.cert span { font-size: .78rem; }
.cert--real { border-style: solid; color: var(--ink-600); }
.cert--real img { max-height: 72px; width: auto; max-width: 160px; object-fit: contain; }
.cert--real span { font-weight: 600; color: var(--ink-900); }

.lab-grid { display: grid; gap: 16px; }
.lab-grid .card { padding: 22px; }
.lab-grid h3 { font-size: 1rem; margin-bottom: 4px; }
.lab-grid p { font-size: .92rem; margin: 0; }

/* Export process page */
.process { list-style: none; display: grid; gap: 22px; counter-reset: pstep; }
.process__item { display: grid; grid-template-columns: 64px 1fr; gap: 22px; align-items: start; }
.process__num { width: 64px; height: 64px; border-radius: 18px; background: var(--brand-primary); color: var(--brand-secondary); display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; }
.process__item h3 { margin: 12px 0 6px; }
.process__meta { display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--brand-accent); margin-bottom: 8px; }

.docs { list-style: none; display: grid; gap: 14px; }
.docs li { display: grid; grid-template-columns: auto 1fr; gap: 14px; padding: 18px 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); }
.docs svg { color: var(--brand-accent); margin-top: 2px; }
.docs strong { display: block; color: var(--ink-900); font-family: var(--font-head); }
.docs span { font-size: .92rem; }

.incoterms { display: grid; gap: 20px; }
.incoterm { padding: 28px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); }
.incoterm__code { font-family: var(--font-head); font-weight: 800; font-size: 1.6rem; color: var(--brand-primary); }
.incoterm__code small { display: block; font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--brand-accent); margin-top: 2px; }
.incoterm p { margin-top: 12px; font-size: .95rem; }
.incoterm .tag { display: inline-block; margin-top: 12px; font-size: .78rem; font-weight: 700; padding: 4px 10px; border-radius: 999px; background: var(--gold-tint); color: var(--brand-accent); }

/* Global reach page */
.ports { display: grid; gap: 20px; }
.port { padding: 28px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); }
.port h3 { display: flex; align-items: center; gap: 10px; font-size: 1.15rem; }
.port h3 svg { color: var(--brand-accent); }
.port dl { margin: 14px 0 0; display: grid; grid-template-columns: auto 1fr; gap: 6px 16px; font-size: .92rem; }
.port dt { font-weight: 600; color: var(--ink-900); }
.port dd { margin: 0; }

.region-cards { display: grid; gap: 20px; }
.region-card { padding: 28px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); }
.region-card h3 { font-size: 1.15rem; margin-bottom: 6px; }
.region-card__transit { font-size: .82rem; font-weight: 700; color: var(--brand-accent); letter-spacing: .04em; text-transform: uppercase; margin-bottom: 12px; display: block; }
.region-card ul { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.region-card li { font-size: .84rem; font-weight: 600; color: var(--ink-900); background: var(--surface-alt); border: 1px solid var(--line); padding: 5px 10px; border-radius: 999px; }


/* ==========================================================================
   12. CONTACT FORM
   ========================================================================== */
.contact-layout { display: grid; grid-template-columns: minmax(0, 1fr); gap: 40px; align-items: start; }
.contact-layout > * { min-width: 0; }
.contact-info { display: grid; gap: 18px; }
.contact-info__item { display: grid; grid-template-columns: 48px 1fr; gap: 16px; align-items: start; }
.contact-info__item .feature__icon { width: 48px; height: 48px; margin: 0; }
.contact-info__item strong { display: block; color: var(--ink-900); font-family: var(--font-head); margin-bottom: 2px; }
.contact-info__item a { color: var(--ink-600); display: inline-flex; align-items: center; min-height: 44px; }
.contact-info__item a:hover { color: var(--brand-accent); }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow); }
.form-grid { display: grid; gap: 18px; }
.field { display: grid; gap: 6px; }
.field label { font-weight: 600; color: var(--ink-900); font-size: .95rem; }
.field label .req { color: var(--error); }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  font: inherit;
  color: var(--ink-900);
  background: #fff;
  border: 1px solid #CBD2CE;
  border-radius: var(--radius-sm);
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand-accent); box-shadow: 0 0 0 4px rgba(252, 176, 23, .25); }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--error); }
.field__error { font-size: .85rem; color: var(--error); min-height: 1.2em; }
.field__hint { font-size: .82rem; color: var(--ink-400); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2352605A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.hp { position: absolute; left: -9999px; top: -9999px; height: 0; width: 0; overflow: hidden; }

.alert { padding: 16px 18px; border-radius: var(--radius-sm); font-weight: 500; margin-bottom: 22px; }
.alert--error { background: #FEF0EE; color: var(--error); border: 1px solid #F5C5C0; }
.alert--success { background: #E8F5EE; color: var(--success); border: 1px solid #BEE3CD; }
.alert ul { margin: 8px 0 0 18px; }

.map-embed { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.map-embed iframe { width: 100%; height: 380px; border: 0; display: block; }

.thanks { text-align: center; padding-block: clamp(64px, 10vw, 120px); }
.thanks__icon { width: 88px; height: 88px; border-radius: 50%; background: var(--gold-tint); color: var(--brand-accent); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.thanks .btn { margin: 6px; }


/* ==========================================================================
   13. FOOTER
   ========================================================================== */
.site-footer { background: var(--brand-primary); color: rgba(255, 255, 255, .72); padding-top: clamp(48px, 6vw, 72px); font-size: .95rem; }
.footer-grid { display: grid; gap: 40px 32px; padding-bottom: clamp(40px, 5vw, 56px); }
.footer-col--brand img { width: 210px; height: 40px; margin-bottom: 18px; }
.footer-col--brand p { max-width: 360px; }
.footer-col__title { color: #fff; font-size: 1rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 18px; }
.footer-col__title::after { content: ""; display: block; width: 28px; height: 3px; background: var(--brand-secondary); border-radius: 2px; margin-top: 10px; }
.footer-links { list-style: none; display: grid; gap: 0; }
.footer-links a { display: inline-flex; align-items: center; min-height: 44px; color: rgba(255, 255, 255, .72); transition: color .2s, padding-left .2s var(--ease); }
.footer-links a:hover { color: var(--brand-secondary); text-decoration: none; padding-left: 4px; }
.footer-contact p { margin-bottom: 10px; }
.footer-contact a { color: rgba(255, 255, 255, .85); font-weight: 500; display: inline-flex; align-items: center; min-height: 44px; }
.footer-contact a:hover { color: var(--brand-secondary); }
.social { list-style: none; display: flex; gap: 10px; margin-top: 20px; }
.social a { width: 44px; height: 44px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: rgba(255, 255, 255, .08); color: #fff; transition: background .2s, color .2s; }
.social a:hover { background: var(--brand-secondary); color: var(--brand-primary); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .08); padding-block: 20px; font-size: .85rem; color: rgba(255, 255, 255, .55); }
.footer-bottom__inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; }
.footer-bottom p { margin: 0; }


/* ==========================================================================
   14. FLOATING WHATSAPP + BACK TO TOP
   ========================================================================== */
.whatsapp {
  position: fixed;
  right: 20px;
  bottom: 84px;                 /* raised on mobile so it clears the sticky quote bar / back-to-top */
  z-index: 1100;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .45);
  transition: transform .2s var(--ease);
}
.whatsapp:hover { transform: scale(1.06); text-decoration: none; }
.whatsapp__ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid var(--whatsapp);
  animation: wa-pulse 2.2s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: .9; }
  100% { transform: scale(1.7); opacity: 0; }
}
.whatsapp__tip {
  display: none;                /* desktop only */
  position: absolute; right: calc(100% + 14px); top: 50%; transform: translateY(-50%);
  background: var(--brand-primary); color: #fff; font-size: .85rem; font-weight: 600;
  padding: 8px 14px; border-radius: var(--radius-sm); white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity .2s var(--ease), transform .2s var(--ease);
}
.whatsapp__tip::after { content: ""; position: absolute; left: 100%; top: 50%; transform: translateY(-50%); border: 6px solid transparent; border-left-color: var(--brand-primary); }

.back-to-top {
  position: fixed;
  right: 28px; bottom: 30px;
  z-index: 1050;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 0;
  background: var(--brand-primary); color: var(--brand-secondary);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s linear .25s;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); transition-delay: 0s; }
.back-to-top:hover { background: #000; }


/* ==========================================================================
   15. SCROLL REVEAL
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
.reveal[data-delay="4"] { transition-delay: .4s; }
.reveal[data-delay="5"] { transition-delay: .5s; }
/* If JS never runs, keep content visible */
.no-js .reveal { opacity: 1; transform: none; }


/* ==========================================================================
   16. RESPONSIVE
   ========================================================================== */
@media (min-width: 480px) {
  .hero__actions .btn { min-width: 190px; }
  .certs { grid-template-columns: repeat(2, 1fr); }
  .lab-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  :root { --gutter: 28px; }
  .topbar { display: block; }
  .whatsapp { right: 30px; bottom: 30px; }
  .whatsapp__tip { display: block; }
  .whatsapp:hover .whatsapp__tip, .whatsapp:focus-visible .whatsapp__tip { opacity: 1; transform: translateY(-50%) translateX(-2px); }
  .back-to-top { right: 30px; bottom: 104px; }

  .stats__grid { grid-template-columns: repeat(4, 1fr); }
  .stat { border-bottom: 0; }
  .stat:nth-child(2n) { border-right: 1px solid rgba(255, 255, 255, .08); }
  .stat:last-child { border-right: 0; }

  .split { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .pcards { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: repeat(2, 1fr); }
  .values { grid-template-columns: repeat(2, 1fr); }
  .mv { grid-template-columns: repeat(2, 1fr); }
  .infra { grid-template-columns: repeat(2, 1fr); }
  .leader { grid-template-columns: auto 1fr; }
  .incoterms { grid-template-columns: repeat(2, 1fr); }
  .ports { grid-template-columns: repeat(3, 1fr); }
  .region-cards { grid-template-columns: repeat(2, 1fr); }
  .certs { grid-template-columns: repeat(4, 1fr); }
  .cert-logos { grid-template-columns: repeat(2, 1fr); }
  .variety { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); }
  .variety__tables { grid-template-columns: 1fr; }
  .docs { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .form-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid .field--full { grid-column: 1 / -1; }
  .steps { grid-template-columns: repeat(2, 1fr); }

  /* Horizontal timeline */
  .timeline { grid-template-columns: repeat(5, 1fr); gap: 16px; }
  .timeline__step { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .timeline__step::before { left: 50%; right: -50%; top: 27px; bottom: auto; height: 2px; width: auto; }
  .timeline__step:last-child::before { display: none; }
}

@media (min-width: 992px) {
  .nav { display: block; }
  .site-header__cta { display: inline-flex; }
  .menu-toggle { display: none; }
  .mobile-menu { display: none; }

  .pcards { grid-template-columns: repeat(3, 1fr); }
  .features { grid-template-columns: repeat(3, 1fr); }
  .values { grid-template-columns: repeat(3, 1fr); }
  .reach { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
  .region-cards { grid-template-columns: repeat(3, 1fr); }
  .incoterms { grid-template-columns: repeat(4, 1fr); }
  .lab-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
  .contact-layout { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); }
  .split--wide { grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: 64px; }
  .hero__content { padding-block: 96px; }
}

@media (min-width: 1200px) {
  .nav__list { gap: 6px; }
  .nav__list a { padding: 10px 16px; font-size: 1rem; }
  .nav__list > li > a.active::after { left: 16px; right: 16px; }
  .hero__content { max-width: 760px; }
}

/* Tablet-only: nav is hidden but the panel should not span the whole screen */
@media (min-width: 768px) and (max-width: 991.98px) {
  .mobile-menu__panel { max-width: 420px; box-shadow: var(--shadow-lg); }
}


/* ==========================================================================
   17. REDUCED MOTION & PRINT
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .whatsapp__ring { display: none; }
}

@media print {
  .topbar, .site-header, .mobile-menu, .whatsapp, .back-to-top, .cta-band { display: none !important; }
  body { color: #000; }
  a { color: #000; }
}
