/* ============================================================
   SHREE BHARAT EXIMX — Global stylesheet
   Palette: paper white / navy ink / deep green / muted gold
   Type:    Fraunces (display) · Archivo (body) · Spline Sans Mono (trade data)
   ============================================================ */

:root {
  --paper: #ffffff;
  --paper-tint: #f6f5f0;
  --paper-deep: #eeece4;
  --navy: #0e2233;
  --navy-soft: #38506a;
  --green-950: #0d2a1e;
  --green-900: #14402f;
  --green-700: #1e5c42;
  --green-100: #e3ede7;
  --gold: #b6862c;
  --gold-soft: #d9b968;
  --gold-faint: #f3e9d2;
  --line: #e3dfd4;
  --line-dark: rgba(255, 255, 255, 0.14);
  --text: #24313d;
  --text-soft: #5b6a76;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Archivo", "Segoe UI", sans-serif;
  --font-mono: "Spline Sans Mono", "Consolas", monospace;

  --wrap: 1200px;
  --radius: 3px;
  --shadow-card: 0 1px 2px rgba(14, 34, 51, 0.05), 0 12px 32px -16px rgba(14, 34, 51, 0.18);
  --shadow-lift: 0 2px 4px rgba(14, 34, 51, 0.06), 0 24px 48px -20px rgba(14, 34, 51, 0.28);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }

a { color: var(--green-700); text-decoration: none; }
a:hover { color: var(--green-900); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection { background: var(--gold-faint); color: var(--green-950); }

.wrap {
  width: min(var(--wrap), 100% - 2.5rem);
  margin-inline: auto;
}

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--navy); color: #fff; padding: 0.6rem 1rem; z-index: 200;
}
.skip-link:focus { left: 0; color: #fff; }

/* ------------------------------------------------------------
   Typography
   ------------------------------------------------------------ */

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 480;
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.4rem, 5.4vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 520; }

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--text-soft);
  max-width: 58ch;
  text-wrap: pretty;
}

/* Shipping-mark eyebrow: the trade-document label */
.mark {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.mark::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--gold);
  flex: none;
}
.mark--bare::before { display: none; }

/* Spec strip: inline trade data (HS code · MOQ · Incoterm) */
.spec-strip {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0;
}
.spec-strip span { display: inline-flex; align-items: center; }
.spec-strip span + span::before {
  content: "·";
  margin: 0 0.7rem;
  color: var(--gold);
}

/* ------------------------------------------------------------
   Buttons
   ------------------------------------------------------------ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 550;
  letter-spacing: 0.01em;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease),
    border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn .arrow { transition: transform 0.25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn--primary { background: var(--green-900); color: #fff; }
.btn--primary:hover { background: var(--green-950); color: #fff; }

.btn--gold { background: var(--gold); color: var(--green-950); }
.btn--gold:hover { background: var(--gold-soft); color: var(--green-950); }

.btn--ghost { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn--ghost:hover { background: var(--navy); color: #fff; }

.btn--ghost-light { border-color: rgba(255,255,255,0.45); color: #fff; background: transparent; }
.btn--ghost-light:hover { background: rgba(255,255,255,0.1); color: #fff; border-color: #fff; }

.btn--sm { padding: 0.55rem 1.1rem; font-size: 0.85rem; }

/* ------------------------------------------------------------
   Header
   ------------------------------------------------------------ */

.topbar {
  background: var(--green-950);
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 0.45rem;
  gap: 1rem;
}
.topbar a { color: var(--gold-soft); }
.topbar a:hover { color: #fff; }
.topbar__right { display: flex; gap: 1.6rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 8px 24px -16px rgba(14, 34, 51, 0.25); }

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--navy);
}
.brand:hover { color: var(--navy); }
.brand__seal {
  width: 52px; height: 52px; flex: none;
}
.brand__text { line-height: 1.15; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 560;
  letter-spacing: 0.01em;
  display: block;
}
.brand__tag {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}

.nav { display: flex; align-items: center; gap: 1.9rem; }
.nav a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--navy);
  padding-block: 0.4rem;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 2px;
  background: var(--gold);
  transition: right 0.3s var(--ease);
}
.nav a:hover::after, .nav a[aria-current="page"]::after { right: 0; }
.nav a[aria-current="page"] { color: var(--green-900); }

.header-cta { display: flex; align-items: center; gap: 0.9rem; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.55rem 0.7rem;
  cursor: pointer;
  color: var(--navy);
}

/* ------------------------------------------------------------
   Hero
   ------------------------------------------------------------ */

.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: clamp(560px, 86vh, 820px);
  background: radial-gradient(120% 95% at 72% 12%, #17384f 0%, #0e2637 45%, #081420 100%);
  border-bottom: 1px solid var(--line);
}
.hero__map { position: absolute; inset: 0; z-index: 0; }
.hero__map svg { width: 100%; height: 100%; display: block; }
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg,
    rgba(6, 17, 27, 0.95) 0%, rgba(6, 17, 27, 0.78) 38%,
    rgba(6, 17, 27, 0.38) 72%, rgba(6, 17, 27, 0.12) 100%);
}
.hero__overlay { position: relative; z-index: 2; width: 100%; }
.hero .wrap { padding-block: clamp(4rem, 9vh, 6.5rem); }
.hero__copy { max-width: 660px; }
.hero__copy > * + * { margin-top: 1.4rem; }
.hero__copy .mark { color: var(--gold-soft); }
.hero h1 {
  color: #fff;
  font-weight: 460;
  line-height: 1.1;
  font-size: clamp(2.3rem, 5vw, 3.9rem);
  letter-spacing: -0.015em;
}
.hero .lede { color: rgba(255, 255, 255, 0.80); max-width: 56ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.2rem; }
.hero__strip { margin-top: 2.6rem; padding-top: 1.4rem; border-top: 1px solid rgba(255, 255, 255, 0.16); }
.hero .spec-strip span { color: rgba(255, 255, 255, 0.72); }
.hero .spec-strip span + span::before { color: var(--gold-soft); }

/* Globe panel — the signature visual */
.globe-panel {
  background:
    radial-gradient(120% 90% at 75% 12%, #1a3a55 0%, var(--navy) 46%, #081724 100%);
  border-radius: 6px;
  padding: clamp(1.2rem, 2.5vw, 2rem);
  box-shadow: var(--shadow-lift);
  position: relative;
  overflow: hidden;
}
.globe-panel::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(217, 185, 104, 0.22);
  border-radius: 4px;
  pointer-events: none;
}
.globe-panel svg { width: 100%; height: auto; }
.globe-panel__caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 0.8rem;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.globe-panel__caption strong { color: var(--gold-soft); font-weight: 500; }

.route-arc {
  fill: none;
  stroke: var(--gold-soft);
  stroke-width: 1.1;
  stroke-dasharray: 4 5;
  opacity: 0.85;
  animation: routeFlow 2.6s linear infinite;
}
@keyframes routeFlow { to { stroke-dashoffset: -18; } }

.port-dot { animation: portPulse 3s var(--ease) infinite; transform-origin: center; transform-box: fill-box; }
@keyframes portPulse {
  0%, 100% { opacity: 0.75; }
  50% { opacity: 1; }
}

/* Trust bar of certifications under hero */
.trustbar { background: var(--paper); border-bottom: 1px solid var(--line); }
.trustbar .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem 2rem;
  padding-block: 1.1rem;
}
.trustbar__label {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.trustbar__items { display: flex; flex-wrap: wrap; gap: 0.6rem 1.9rem; }
.trustbar__items span {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.trustbar__items span::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex: none;
}

/* ------------------------------------------------------------
   Sections
   ------------------------------------------------------------ */

.section { padding-block: clamp(4rem, 8vw, 7rem); }
.section--tint { background: var(--paper-tint); border-block: 1px solid var(--line); }
.section--navy {
  background:
    radial-gradient(100% 120% at 80% 0%, #17364f 0%, var(--navy) 55%, #091825 100%);
  color: rgba(255, 255, 255, 0.85);
}
.section--navy h2, .section--navy h3 { color: #fff; }
.section--navy .lede { color: rgba(255, 255, 255, 0.65); }

.section-head { max-width: 720px; margin-bottom: clamp(2.2rem, 4vw, 3.5rem); }
.section-head > * + * { margin-top: 1.1rem; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .mark { justify-content: center; }
.section-head--split {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.section-head--split > div { max-width: 640px; }
.section-head--split > div > * + * { margin-top: 1.1rem; }

/* ------------------------------------------------------------
   Category cards (home)
   ------------------------------------------------------------ */

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.cat-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: inherit;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.cat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
  border-color: var(--gold-soft);
  color: inherit;
}
.cat-card__visual { height: 190px; position: relative; overflow: hidden; }
.cat-card__visual svg { width: 100%; height: 100%; }
.cat-card__body { padding: 1.5rem 1.5rem 1.7rem; display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
.cat-card__body h3 { transition: color 0.25s var(--ease); }
.cat-card:hover .cat-card__body h3 { color: var(--green-700); }
.cat-card__body p { font-size: 0.95rem; color: var(--text-soft); flex: 1; }
.cat-card__meta {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.cat-card__cta {
  font-size: 0.9rem;
  font-weight: 550;
  color: var(--green-900);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.3rem;
}
.cat-card:hover .cat-card__cta .arrow { transform: translateX(4px); }
.cat-card .arrow { transition: transform 0.25s var(--ease); }

/* ------------------------------------------------------------
   Product cards
   ------------------------------------------------------------ */

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem;
}

.product-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: inherit;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--gold-soft);
  color: inherit;
}

/* Specimen swatch: honest color-field imagery derived from the commodity */
.specimen {
  aspect-ratio: 5 / 4;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.specimen::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(90% 90% at 30% 20%, rgba(255, 255, 255, 0.35) 0%, transparent 55%),
    radial-gradient(120% 100% at 80% 100%, rgba(0, 0, 0, 0.18) 0%, transparent 60%);
}
.specimen__glyph {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 420;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.18);
  position: relative;
}
.specimen__art {
  width: 62%;
  max-width: 220px;
  position: relative;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.16));
}
.specimen__art svg { width: 100%; height: auto; }
.specimen__art--big { width: 54%; max-width: 300px; }

.specimen__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.5s var(--ease);
}
.specimen::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 42%;
  background: linear-gradient(transparent, rgba(9, 20, 14, 0.55));
  z-index: 2;
  pointer-events: none;
}
.specimen__lot { z-index: 3; }
.product-card:hover .specimen__photo,
.cat-card:hover .specimen__photo { transform: scale(1.045); }
.specimen__lot {
  position: absolute;
  bottom: 0.7rem;
  left: 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.product-card__body { padding: 1.1rem 1.2rem 1.25rem; display: flex; flex-direction: column; gap: 0.45rem; flex: 1; }
.product-card__cat {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.product-card__body h3 { font-size: 1.14rem; }
.product-card__spec {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--text-soft);
  margin-top: auto;
  padding-top: 0.5rem;
}

/* ------------------------------------------------------------
   Why choose us / value grid
   ------------------------------------------------------------ */

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}
.value-cell {
  background: var(--navy);
  padding: 1.9rem 1.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  transition: background-color 0.3s var(--ease);
}
.value-cell:hover { background: #13293d; }
.value-cell h3 { font-size: 1.18rem; color: #fff; }
.value-cell p { font-size: 0.93rem; color: rgba(255, 255, 255, 0.62); }
.value-cell__icon { color: var(--gold-soft); width: 30px; height: 30px; }

/* Light variant */
.value-grid--light { background: var(--line); border-color: var(--line); }
.value-grid--light .value-cell { background: var(--paper); }
.value-grid--light .value-cell:hover { background: var(--paper-tint); }
.value-grid--light .value-cell h3 { color: var(--navy); }
.value-grid--light .value-cell p { color: var(--text-soft); }
.value-grid--light .value-cell__icon { color: var(--gold); }

/* ------------------------------------------------------------
   Process / QA steps
   ------------------------------------------------------------ */

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; counter-reset: step; }
.step {
  border-top: 2px solid var(--line);
  padding-top: 1.2rem;
  position: relative;
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--gold);
  display: block;
  margin-bottom: 0.6rem;
}
.step::after {
  content: "";
  position: absolute;
  top: -2px; left: 0;
  width: 42px; height: 2px;
  background: var(--gold);
}
.step h3 { font-size: 1.12rem; margin-bottom: 0.45rem; }
.step p { font-size: 0.93rem; color: var(--text-soft); }

/* ------------------------------------------------------------
   Stats
   ------------------------------------------------------------ */

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.stat { border-left: 1px solid var(--gold-soft); padding-left: 1.3rem; }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  font-weight: 460;
  color: var(--navy);
  line-height: 1.05;
}
.section--navy .stat__num { color: #fff; }
.stat__label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-top: 0.5rem;
  display: block;
}
.section--navy .stat__label { color: rgba(255, 255, 255, 0.55); }

/* ------------------------------------------------------------
   Export markets map
   ------------------------------------------------------------ */

.map-shell {
  background:
    radial-gradient(110% 110% at 70% 0%, #16334c 0%, var(--navy) 50%, #081623 100%);
  border-radius: 6px;
  padding: clamp(1.2rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-lift);
  position: relative;
}
.map-shell::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(217, 185, 104, 0.18);
  border-radius: 4px;
  pointer-events: none;
}
#world-map { width: 100%; height: auto; display: block; }
.map-tip {
  position: absolute;
  pointer-events: none;
  background: var(--green-950);
  color: #fff;
  border: 1px solid var(--gold);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem;
  border-radius: 2px;
  transform: translate(-50%, -140%);
  opacity: 0;
  transition: opacity 0.2s;
  white-space: nowrap;
  z-index: 5;
}
.map-tip.is-on { opacity: 1; }

.region-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
  margin-top: 1.6rem;
}
.region-cell { background: rgba(255, 255, 255, 0.03); padding: 1.3rem 1.4rem; }
.region-cell h3 { font-size: 1rem; color: var(--gold-soft); font-family: var(--font-mono); font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; }
.region-cell p { font-size: 0.9rem; color: rgba(255, 255, 255, 0.68); margin-top: 0.5rem; }

/* ------------------------------------------------------------
   Certificate documents showcase
   ------------------------------------------------------------ */

.cert-doc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem;
  max-width: 860px;
  margin-inline: auto;
}
.cert-doc { display: flex; flex-direction: column; gap: 0.8rem; text-decoration: none; color: inherit; }
.cert-doc__paper {
  position: relative;
  aspect-ratio: 3 / 4;
  border: 1px solid var(--line);
  border-radius: 5px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.cert-doc:hover .cert-doc__paper { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.cert-doc__photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; object-position: center;
  background: #fff; padding: 5px; z-index: 2;
}
.cert-doc__view {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.55rem;
  font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: #fff; background: linear-gradient(transparent, rgba(13, 42, 30, 0.9));
  opacity: 0; transition: opacity 0.25s var(--ease);
}
.cert-doc:hover .cert-doc__view { opacity: 1; }
.cert-doc__view .arrow { transition: transform 0.25s var(--ease); }
.cert-doc:hover .cert-doc__view .arrow { transform: translateX(3px); }
.cert-doc__ph {
  position: absolute; inset: 0; z-index: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 1rem;
  background: linear-gradient(180deg, #ffffff 0%, #f3f1ea 100%);
}
.cert-doc__ph::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 8px; background: var(--green-900);
}
.cert-doc__seal {
  width: 46px; height: 46px; border: 1.5px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-bottom: 0.7rem; position: relative;
}
.cert-doc__seal::after { content: ""; position: absolute; inset: 3px; border: 1px dashed rgba(182, 134, 44, 0.5); border-radius: 50%; }
.cert-doc__seal span { font-family: var(--font-display); font-style: italic; font-size: 0.95rem; color: var(--green-900); }
.cert-doc__abbr { font-family: var(--font-display); font-weight: 560; font-size: 1.1rem; color: var(--navy); line-height: 1.1; }
.cert-doc__ph small {
  font-family: var(--font-mono); font-size: 0.54rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--text-soft); margin-top: 0.5rem;
}
.cert-doc__lines { margin-top: 0.7rem; width: 62%; display: flex; flex-direction: column; gap: 4px; }
.cert-doc__lines i { height: 2px; background: var(--line); border-radius: 2px; }
.cert-doc__lines i:nth-child(2) { width: 82%; }
.cert-doc__lines i:nth-child(3) { width: 64%; }
.cert-doc__label { text-align: center; }
.cert-doc__label strong { display: block; font-size: 0.98rem; color: var(--navy); }
.cert-doc__label span { font-size: 0.78rem; color: var(--text-soft); }
@media (max-width: 900px) { .cert-doc-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .cert-doc-grid { grid-template-columns: repeat(2, 1fr); } }

/* ------------------------------------------------------------
   Certifications
   ------------------------------------------------------------ */

.cert-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
}
.cert-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 1.5rem 1.3rem;
  text-align: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.cert-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: var(--gold-soft); }
.cert-card__seal {
  width: 62px; height: 62px;
  margin: 0 auto 0.9rem;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--green-900);
  position: relative;
}
.cert-card__seal::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px dashed rgba(182, 134, 44, 0.5);
  border-radius: 50%;
}
.cert-card h3 { font-size: 1.02rem; font-family: var(--font-body); font-weight: 600; }
.cert-card p { font-size: 0.82rem; color: var(--text-soft); margin-top: 0.4rem; }

/* ------------------------------------------------------------
   Industries
   ------------------------------------------------------------ */

.industry-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.industry-chip {
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 0.65rem 1.3rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy);
  background: var(--paper);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  transition: border-color 0.25s var(--ease), background-color 0.25s var(--ease);
}
.industry-chip:hover { border-color: var(--gold); background: var(--gold-faint); }
.industry-chip::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green-700);
}

/* ------------------------------------------------------------
   Testimonials / quote band
   ------------------------------------------------------------ */

.quote-band { text-align: center; max-width: 840px; margin-inline: auto; }
.quote-band blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 440;
  font-style: italic;
  color: var(--navy);
  line-height: 1.4;
}
.quote-band figcaption {
  margin-top: 1.4rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
}

/* ------------------------------------------------------------
   CTA band
   ------------------------------------------------------------ */

.cta-band {
  background:
    radial-gradient(120% 140% at 15% 0%, #1d5a41 0%, var(--green-900) 50%, var(--green-950) 100%);
  color: #fff;
  border-radius: 6px;
  padding: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  align-items: center;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(217, 185, 104, 0.3);
  border-radius: 4px;
  pointer-events: none;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, 0.72); margin-top: 0.9rem; max-width: 52ch; }
.cta-band__actions { display: flex; flex-direction: column; gap: 0.8rem; position: relative; }

/* ------------------------------------------------------------
   Footer
   ------------------------------------------------------------ */

.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}
.site-footer a { color: rgba(255, 255, 255, 0.72); }
.site-footer a:hover { color: var(--gold-soft); }

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-block: clamp(3rem, 5vw, 4.5rem) 2.5rem;
}
.footer-main h3 {
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.footer-main ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-about p { margin-top: 1rem; max-width: 34ch; color: rgba(255, 255, 255, 0.6); }
.footer-about .brand { color: #fff; }
.footer-about .brand__name { color: #fff; }

.newsletter { display: flex; gap: 0.5rem; margin-top: 0.4rem; }
.newsletter input {
  flex: 1;
  min-width: 0;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  color: #fff;
  padding: 0.7rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
}
.newsletter input::placeholder { color: rgba(255, 255, 255, 0.45); }
.footer-social { display: flex; gap: 0.8rem; margin-top: 1.4rem; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.25s, background-color 0.25s;
}
.footer-social a:hover { border-color: var(--gold-soft); background: rgba(217, 185, 104, 0.12); }
.footer-social svg { width: 16px; height: 16px; fill: currentColor; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-block: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem 2rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

/* ------------------------------------------------------------
   Page hero (inner pages)
   ------------------------------------------------------------ */

.page-hero {
  background: linear-gradient(180deg, #fdfdfb 0%, var(--paper-tint) 100%);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(3rem, 6vw, 5rem);
}
.page-hero .wrap > * + * { margin-top: 1.2rem; }
.page-hero .crumbs {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 0.4rem;
}
.page-hero .crumbs a { color: var(--text-soft); }
.page-hero .crumbs a:hover { color: var(--green-700); }

/* ------------------------------------------------------------
   Products page: filters
   ------------------------------------------------------------ */

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 2.2rem;
}
.filter-btn {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: var(--paper);
  color: var(--navy);
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.filter-btn:hover { border-color: var(--gold); }
.filter-btn.is-active { background: var(--green-900); border-color: var(--green-900); color: #fff; }

.search-box {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 0.5rem 1.1rem;
  background: var(--paper);
  min-width: 240px;
}
.search-box svg { width: 15px; height: 15px; color: var(--text-soft); flex: none; }
.search-box input {
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.92rem;
  width: 100%;
  background: transparent;
  color: var(--text);
}

.grid-count {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 1.2rem;
}

.category-block { margin-bottom: clamp(3rem, 5vw, 4.5rem); }
.category-block__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.9rem;
  margin-bottom: 1.6rem;
}
.category-block__head h2 { font-size: clamp(1.5rem, 2.4vw, 1.9rem); }
.category-block__head .spec-strip { font-size: 0.68rem; }

.empty-note {
  text-align: center;
  color: var(--text-soft);
  padding: 3rem 1rem;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  display: none;
}

/* ------------------------------------------------------------
   Product detail page
   ------------------------------------------------------------ */

.pd-hero { border-bottom: 1px solid var(--line); background: linear-gradient(180deg, #fdfdfb 0%, var(--paper-tint) 100%); }
.pd-hero .wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  padding-block: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}
.pd-visual {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  position: sticky;
  top: 110px;
}
.pd-visual .specimen { aspect-ratio: 1 / 1; }
.pd-visual .specimen__glyph { font-size: 5rem; }

.pd-head > * + * { margin-top: 1.1rem; }
.pd-head .spec-strip { border-block: 1px solid var(--line); padding-block: 0.85rem; }
.pd-head__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.6rem; }

.pd-body .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  padding-block: clamp(3rem, 5vw, 4.5rem);
  align-items: start;
}
.pd-main > section + section { margin-top: 2.8rem; }
.pd-main h2 { font-size: 1.5rem; margin-bottom: 1rem; }
.pd-main p + p { margin-top: 0.8rem; }

.spec-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.spec-table th, .spec-table td { text-align: left; padding: 0.7rem 0.9rem; border: 1px solid var(--line); }
.spec-table th {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
  background: var(--paper-tint);
  width: 38%;
}

.tag-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag {
  font-size: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 0.35rem 0.9rem;
  color: var(--navy);
  background: var(--paper);
}

.pd-aside { position: sticky; top: 110px; display: flex; flex-direction: column; gap: 1.4rem; }
.inquiry-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  box-shadow: var(--shadow-card);
  padding: 1.6rem;
}
.inquiry-card h3 { margin-bottom: 0.4rem; }
.inquiry-card > p { font-size: 0.9rem; color: var(--text-soft); margin-bottom: 1.2rem; }

.related-strip { border-top: 1px solid var(--line); background: var(--paper-tint); }

/* ------------------------------------------------------------
   Forms
   ------------------------------------------------------------ */

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-grid .form-field--full { grid-column: 1 / -1; }

.form-field { display: flex; flex-direction: column; gap: 0.35rem; }
.form-field label {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.form-field input, .form-field select, .form-field textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  width: 100%;
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--green-700);
  box-shadow: 0 0 0 3px rgba(30, 92, 66, 0.12);
}

.form-note { font-size: 0.82rem; color: var(--text-soft); margin-top: 0.8rem; }
.form-success {
  display: none;
  border: 1px solid var(--green-700);
  background: var(--green-100);
  color: var(--green-950);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  font-size: 0.95rem;
  margin-top: 1rem;
}
.form-success.is-on { display: block; }

/* Error message (form submit failure) */
.form-error {
  display: none;
  border: 1px solid #b23b3b;
  background: #fbeaea;
  color: #7a2020;
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  font-size: 0.95rem;
  margin-top: 1rem;
}
.form-error.is-on { display: block; }
.form-error a { color: #7a2020; text-decoration: underline; }

/* Honeypot anti-spam field — hidden from humans, tempting to bots */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* ------------------------------------------------------------
   FAQ accordion
   ------------------------------------------------------------ */

.faq-group + .faq-group { margin-top: 2.6rem; }
.faq-group > h2 { font-size: 1.4rem; margin-bottom: 1.1rem; }

.faq-item { border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.faq-item + .faq-item { margin-top: 0.7rem; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.05rem 1.3rem;
  font-weight: 550;
  color: var(--navy);
  font-size: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--gold);
  flex: none;
  transition: transform 0.3s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { border-bottom: 1px solid var(--line); }
.faq-item .faq-a { padding: 1rem 1.3rem 1.2rem; color: var(--text-soft); font-size: 0.96rem; }

/* ------------------------------------------------------------
   Blog
   ------------------------------------------------------------ */

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.post-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  color: inherit;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: var(--gold-soft); color: inherit; }
.post-card__visual { height: 175px; }
.post-card__visual svg { width: 100%; height: 100%; }
.post-card__body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.post-card__body h3 { font-size: 1.18rem; }
.post-card__body p { font-size: 0.92rem; color: var(--text-soft); flex: 1; }

.article { max-width: 760px; margin-inline: auto; }
.article > * + * { margin-top: 1.2rem; }
.article h2 { font-size: 1.6rem; margin-top: 2.4rem; }
.article ul, .article ol { padding-left: 1.4rem; display: flex; flex-direction: column; gap: 0.5rem; }
.article .lede { font-size: 1.15rem; }

/* ------------------------------------------------------------
   Contact page
   ------------------------------------------------------------ */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-aside { display: flex; flex-direction: column; gap: 1.1rem; }
.contact-tile {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem 1.4rem;
  background: var(--paper);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-tile svg { width: 22px; height: 22px; color: var(--gold); flex: none; margin-top: 0.2rem; }
.contact-tile h3 { font-size: 0.98rem; font-family: var(--font-body); font-weight: 600; }
.contact-tile p { font-size: 0.92rem; color: var(--text-soft); margin-top: 0.2rem; }

.map-embed {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper-tint);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  padding: 1rem;
}

/* ------------------------------------------------------------
   WhatsApp float
   ------------------------------------------------------------ */

.wa-float {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 90;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #1faa59;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px -8px rgba(20, 100, 60, 0.55);
  transition: transform 0.25s var(--ease);
}
.wa-float:hover { transform: scale(1.08); color: #fff; }
.wa-float svg { width: 27px; height: 27px; fill: currentColor; }

/* ------------------------------------------------------------
   Reveal on scroll
   ------------------------------------------------------------ */

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ------------------------------------------------------------
   Responsive
   ------------------------------------------------------------ */

@media (max-width: 1080px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .cert-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .stat-row { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .region-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .topbar__right span:nth-child(2) { display: none; }
  .nav {
    position: fixed;
    inset: 0 0 auto 0;
    top: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    padding: 5.5rem 1.6rem 2rem;
    box-shadow: var(--shadow-lift);
    transform: translateY(-105%);
    transition: transform 0.4s var(--ease);
    z-index: -1;
  }
  .nav.is-open { transform: none; }
  .nav a { padding: 0.9rem 0.2rem; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav a::after { display: none; }
  .nav-toggle { display: block; }
  .header-cta .btn { display: none; }
  .header-cta .btn--header-mobile { display: inline-flex; }

  .hero .wrap { grid-template-columns: 1fr; padding-block: 3rem 3.5rem; }
  .globe-panel { max-width: 560px; }
  .pd-hero .wrap, .pd-body .wrap { grid-template-columns: 1fr; }
  .pd-visual, .pd-aside { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
  .cta-band { grid-template-columns: 1fr; }
  .cta-band__actions { flex-direction: row; flex-wrap: wrap; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .value-grid { grid-template-columns: 1fr 1fr; }
  .post-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  body { font-size: 1rem; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 0.9rem; }
  .cat-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; gap: 1.6rem 1rem; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 2rem; }
  .region-row { grid-template-columns: 1fr; }
  .post-grid { grid-template-columns: 1fr; }
  .search-box { margin-left: 0; width: 100%; }
  .topbar .wrap { justify-content: center; }
  .topbar__right { display: none; }
  .specimen__glyph { font-size: 2.4rem; }
  .section-head--split { flex-direction: column; align-items: flex-start; }
}
