/* ═══════════════════════════════════════════
   ANVEEKA TRADE — main.css
   Mobile-first. Single design system.
   375px base → 768px → 1024px → 1280px
═══════════════════════════════════════════ */

/* ─── TOKENS ─── */
:root {
  --ink:      #14203b;
  --ink-2:    #1c2d50;
  --ink-3:    #253460;
  --dim:      #6a6a6a;
  --border:   rgba(255,255,255,.08);
  --border-l: rgba(0,0,0,.07);

  --gold:     #c8973a;
  --gold-lt:  #e8b86d;
  --gold-dk:  #9a7028;
  --blue:     #14203b;
  --blue-dk:  #0d1828;
  --white:    #ffffff;
  --off:      #f5f2eb;
  --sand:     #f0ebe0;

  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Lexend', system-ui, sans-serif;

  --r:    10px;
  --r-lg: 16px;
  --gap:  clamp(4rem, 9vw, 7rem);
  --gx:   clamp(1.25rem, 6vw, 3.5rem);
  --max:  1160px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: var(--sans); cursor: pointer; border: none; background: none; }

/* ─── SKIP ─── */
.skip {
  position: absolute; top: -999px; left: 1rem; z-index: 9999;
  background: var(--gold); color: var(--ink);
  font-weight: 600; padding: .5rem 1rem; border-radius: var(--r);
  font-size: .8rem;
}
.skip:focus { top: 1rem; }

/* ─── LAYOUT ─── */
.wrap {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gx);
}
.sec { padding: var(--gap) 0; }
.sec-white { background: var(--white); }
.sec-dark  { background: var(--ink-2); }
.sec-ink   { background: var(--ink); }
.sec-sand  { background: var(--sand); }
.sec-cta   { background: var(--ink); border-top: 1px solid rgba(200,151,58,.15); }

/* ─── REVEAL ─── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.vis { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }

/* ─── TYPE ─── */
.eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .85rem;
}
.eyebrow-gold { color: var(--gold); }

.display {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--ink);
  letter-spacing: -.01em;
}
.display em { font-style: italic; color: var(--gold); }
.display-light { color: var(--white); }
.display-light em { color: var(--gold); }

.body-lg {
  font-size: clamp(.95rem, 2vw, 1.05rem);
  font-weight: 300;
  line-height: 1.82;
  color: #3a3a3a;
}
.body-md { font-size: .9rem; font-weight: 300; line-height: 1.78; color: #3a3a3a; }
.body-dim { color: rgba(255,255,255,.55); }
.kicker {
  display: block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.6rem;
  opacity: 0;
  animation: fadeUp .5s ease forwards;
  animation-delay: var(--d, 0s);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: .75rem 1.75rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: all .2s ease;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.btn-gold      { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn-gold:hover{ background: var(--gold-lt); border-color: var(--gold-lt); }
.btn-ghost     { background: transparent; color: var(--white); border-color: rgba(255,255,255,.3); }
.btn-ghost:hover{ border-color: var(--white); background: rgba(255,255,255,.06); }
.btn-ghost-sm  { background: transparent; color: var(--white); border-color: rgba(255,255,255,.25); font-size: .78rem; padding: .6rem 1.25rem; border-radius: 999px; border-width: 1px; transition: all .2s; }
.btn-ghost-sm:hover { border-color: rgba(255,255,255,.6); }
.btn-wa        { background: #25D366; color: white; border-color: #25D366; font-size: .82rem; font-weight: 600; padding: .75rem 1.5rem; border-radius: 999px; transition: filter .2s; }
.btn-wa:hover  { filter: brightness(1.08); }
.btn-lg        { font-size: .9rem; padding: .9rem 2.25rem; }

/* ─── HERO ─── */
.hero {
  background: var(--ink);
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  position: relative;
  overflow: hidden;
}
/* Subtle grain */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .025;
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  flex: 1;
  display: flex;
  align-items: flex-end;
  padding: clamp(5.5rem, 14vh, 9rem) var(--gx) clamp(2.5rem, 5vh, 3.5rem);
  max-width: var(--max);
  width: 100%;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.hero-content { max-width: 660px; }

.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -.02em;
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: fadeUp .75s ease forwards;
  animation-delay: var(--d, .15s);
}
.hero-h1 em { font-style: italic; color: var(--gold); }

.hero-sub {
  font-size: clamp(.9rem, 2vw, 1.05rem);
  color: rgba(255,255,255,.62);
  font-weight: 300;
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp .7s ease forwards;
  animation-delay: var(--d, .28s);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp .65s ease forwards;
  animation-delay: var(--d, .38s);
}

.hero-certs {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  opacity: 0;
  animation: fadeUp .65s ease forwards;
  animation-delay: var(--d, .48s);
}
.cert-pill {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  padding: .28rem .75rem;
  border-radius: 999px;
}
.cert-pill--dim { color: rgba(255,255,255,.35); }

/* Photo strip */
.photo-strip {
  position: relative;
  z-index: 1;
  padding: 0 var(--gx);
  max-width: var(--max);
  width: 100%;
  margin-inline: auto;
  margin-bottom: 0;
}
.strip-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .6rem;
}
.strip-photo {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
}
.strip-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
  filter: brightness(.82) saturate(1.05);
}
.strip-photo:hover img { transform: scale(1.05); filter: brightness(.95) saturate(1.1); }
.strip-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.75) 100%);
  pointer-events: none;
}
.strip-photo-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: .75rem .9rem;
  z-index: 2;
}
.strip-name {
  display: block;
  font-family: var(--serif);
  font-size: clamp(.85rem, 1.5vw, 1.05rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}
.strip-sub {
  display: block;
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: .2rem;
}

/* Stat bar */
.stat-bar {
  display: flex;
  background: rgba(255,255,255,.03);
  border-top: 1px solid rgba(255,255,255,.06);
  position: relative;
  z-index: 1;
  margin-top: .6rem;
}
.stat {
  flex: 1;
  padding: 1.1rem .5rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.06);
}
.stat:last-child { border-right: none; }
.stat strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .2rem;
}
.stat span {
  font-size: .6rem;
  color: rgba(255,255,255,.38);
  text-transform: uppercase;
  letter-spacing: .08em;
  display: block;
}

/* ─── PROMISE ─── */
.promise-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}
.promise-proof {
  display: flex;
  gap: 0;
  margin-top: 2rem;
  border: 1px solid var(--border-l);
  border-radius: var(--r);
  overflow: hidden;
}
.pp-item { flex: 1; padding: 1.1rem 1rem; text-align: center; }
.pp-item strong { display: block; font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--ink); }
.pp-item span { font-size: .68rem; color: var(--dim); text-transform: uppercase; letter-spacing: .08em; }
.pp-divider { width: 1px; background: var(--border-l); }

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border-l);
  border-left: 1px solid var(--border-l);
}
.pillar {
  padding: 1.75rem 1.5rem;
  border-right: 1px solid var(--border-l);
  border-bottom: 1px solid var(--border-l);
  transition: background .2s;
}
.pillar:hover { background: var(--sand); }
.pillar-num {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold);
  display: block;
  margin-bottom: .75rem;
}
.pillar h3 { font-size: .88rem; font-weight: 600; color: var(--ink); margin-bottom: .5rem; line-height: 1.4; }
.pillar p  { font-size: .82rem; color: var(--dim); line-height: 1.65; font-weight: 300; }

/* ─── PRODUCTS ─── */
.prod-header {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 2.5rem;
}
.prod-note p { font-size: .9rem; color: rgba(255,255,255,.55); font-weight: 300; line-height: 1.75; }
.moq-block { margin-top: 1.25rem; border: 1px solid rgba(255,255,255,.1); border-radius: var(--r); overflow: hidden; }
.moq-row {
  display: flex;
  gap: 1rem;
  align-items: baseline;
  padding: .7rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.moq-row:last-child { border-bottom: none; }
.moq-label { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); flex-shrink: 0; min-width: 70px; }
.moq-val   { font-size: .82rem; color: rgba(255,255,255,.55); font-weight: 300; }

/* Product grid — asymmetric */
.prod-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: .75rem;
  margin-bottom: 2rem;
}
.pcard-col { display: flex; flex-direction: column; gap: .75rem; }

.pcard { display: block; border-radius: var(--r-lg); overflow: hidden; position: relative; text-decoration: none; }
.pcard:hover .pcard-overlay { opacity: 1; }
.pcard-img { position: relative; overflow: hidden; }
.pcard-feat .pcard-img { aspect-ratio: 3/2; }
.pcard-sm   .pcard-img { aspect-ratio: 16/10; }
.pcard-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .55s ease;
}
.pcard:hover .pcard-img img { transform: scale(1.04); }
.pcard-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.2) 60%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem;
  transition: opacity .3s;
}
.pcard-tag  { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .5rem; }
.pcard-name { font-family: var(--serif); font-size: clamp(1.2rem, 2.5vw, 1.8rem); font-weight: 600; color: var(--white); line-height: 1.15; margin-bottom: .4rem; }
.pcard-sm .pcard-name { font-size: 1.1rem; }
.pcard-desc { font-size: .8rem; color: rgba(255,255,255,.7); font-weight: 300; line-height: 1.5; margin-bottom: .6rem; }
.pcard-cta  { font-size: .75rem; font-weight: 600; color: var(--gold); letter-spacing: .05em; }

/* Export list — typographic, no boxes */
.export-list { border-top: 1px solid rgba(255,255,255,.1); padding-top: 2rem; }
.export-list-head { margin-bottom: 1.25rem; }
.export-item {
  display: grid;
  grid-template-columns: 1.5rem 1fr auto auto;
  gap: .75rem 1.5rem;
  align-items: center;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  text-decoration: none;
  transition: opacity .2s;
}
.export-item:hover { opacity: .75; }
.export-item:last-child { border-bottom: none; }
.export-num    { font-family: var(--serif); font-size: 1.1rem; color: var(--gold); }
.export-name   { font-family: var(--serif); font-size: clamp(1rem, 2vw, 1.35rem); font-weight: 600; color: var(--white); }
.export-detail { font-size: .78rem; color: rgba(255,255,255,.4); font-weight: 300; }
.export-arrow  { font-size: 1rem; color: var(--gold); transition: transform .2s; }
.export-item:hover .export-arrow { transform: translateX(4px); }

/* ─── PROOF ─── */
.proof-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.proof-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 300px 260px;
  gap: .75rem;
}
.proof-photo { border-radius: var(--r-lg); overflow: hidden; position: relative; min-height: 0; }
.proof-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.proof-photo-tall { grid-row: span 2; }
.proof-photo-exh { position: relative; }
.exh-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.8));
  padding: 2.5rem .9rem .75rem;
  font-size: .65rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.75);
}

/* Testimonials */
.testimonials { display: flex; flex-direction: column; gap: 1rem; margin: 2rem 0; }
.tcard {
  background: var(--sand);
  border-radius: var(--r-lg);
  padding: 1.4rem 1.6rem;
  border-left: 3px solid var(--gold);
}
.tcard blockquote p {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: .65rem;
}
.tcard blockquote p::before { content: '\201C'; color: var(--gold); font-size: 1.6rem; line-height: 0; vertical-align: -.4rem; margin-right: .1rem; }
.tcard figcaption { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); }
.tcard-flag { margin-right: .35rem; }

.cert-strip { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.cs-item {
  font-size: .7rem; font-weight: 600; letter-spacing: .05em;
  color: var(--ink); background: #f0ebe0;
  border: 1px solid rgba(0,0,0,.08);
  padding: .3rem .8rem; border-radius: 999px;
}

/* ─── MARKETS ─── */
.mkt-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; }

.mkt-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 1rem 2rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: opacity .2s;
}
.mkt-item:first-child { border-top: 1px solid rgba(255,255,255,.07); }
.mkt-item:hover { opacity: .75; }

.mkt-status {
  display: flex; align-items: center; gap: .5rem;
  font-size: .65rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.35);
}
.dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.dot-on    { background: #4ade80; box-shadow: 0 0 6px rgba(74,222,128,.5); }
.dot-build { background: rgba(255,255,255,.2); }
.mkt-active .mkt-status { color: rgba(255,255,255,.7); }

.mkt-name {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: var(--white);
}
.mkt-products { font-size: .75rem; color: rgba(255,255,255,.35); font-weight: 300; text-align: right; }

/* ─── INDIA BAR ─── */
.india-bar { background: #14203b; border-top: 2px solid #25D366; padding: 1.75rem 0; }
.india-bar-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
}
.india-bar h3 { font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: .25rem; }
.india-bar p  { font-size: .82rem; color: rgba(255,255,255,.45); font-weight: 300; }
.india-bar-btns { display: flex; gap: .75rem; flex-wrap: wrap; align-items: center; }

/* ─── CTA ─── */
.cta-wrap { text-align: center; }
.cta-h {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400; color: var(--white); line-height: 1.15;
  max-width: 680px; margin: 0 auto 1.1rem;
}
.cta-h em { font-style: italic; color: var(--gold); }
.cta-sub { font-size: .95rem; color: rgba(255,255,255,.58); font-weight: 300; max-width: 500px; margin: 0 auto 2.25rem; line-height: 1.75; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── WA FLOAT ─── */
.wa-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 900;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .25s, box-shadow .25s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.55); }
.wa-float svg { width: 26px; height: 26px; }

/* ─── KEYFRAMES ─── */
@keyframes fadeUp { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:translateY(0); } }

/* ─── FOCUS ─── */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ════════════════════════════════════════
   RESPONSIVE — scale up from 375px base
════════════════════════════════════════ */

/* 600px — strip shows 2 cols on small phones */
@media (max-width: 599px) {
  .strip-track { grid-template-columns: 1fr 1fr; gap: .4rem; }
  .strip-track .strip-photo:nth-child(3),
  .strip-track .strip-photo:nth-child(4) { display: none; }
  .stat-bar { flex-wrap: wrap; }
  .stat { flex: 1 1 33%; border-bottom: 1px solid rgba(255,255,255,.06); min-width: 0; }
  .promise-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .pillars { grid-template-columns: 1fr 1fr; }
  .prod-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .prod-grid { grid-template-columns: 1fr; }
  .proof-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .proof-photos { grid-template-columns: 1fr; grid-template-rows: 220px 180px 220px; }
  .proof-photo-tall { grid-row: span 1; }
  .mkt-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .mkt-item { grid-template-columns: 1fr auto; }
  .mkt-status { display: none; }
  .export-item { grid-template-columns: 1fr auto; gap: .5rem .75rem; }
  .export-num, .export-detail { display: none; }
  .india-bar-inner { flex-direction: column; align-items: flex-start; }
  .hero-inner { align-items: flex-start; padding-top: clamp(5rem, 12vh, 7rem); }
}

/* 768px — tablet */
@media (min-width: 600px) and (max-width: 767px) {
  .strip-track { grid-template-columns: repeat(4,1fr); }
  .promise-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .pillars { grid-template-columns: 1fr 1fr; }
  .prod-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .prod-grid { grid-template-columns: 1fr 1fr; }
  .pcard-col { display: contents; }
  .pcard-feat { grid-column: span 2; }
  .proof-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .proof-photos { grid-template-rows: 240px 200px; }
  .mkt-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .mkt-item { grid-template-columns: 80px 1fr; }
  .mkt-products { display: none; }
  .export-item { grid-template-columns: 1.5rem 1fr auto; }
  .export-detail { display: none; }
}

/* 768px–1023px — large tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .promise-layout { gap: 2.5rem; }
  .prod-grid { grid-template-columns: 1.2fr 1fr; }
}

/* 1024px+ — desktop */
@media (min-width: 1024px) {
  .strip-track { grid-template-columns: repeat(4,1fr); }
  .hero-inner { align-items: flex-end; }
}

/* ─── ANVEEKA NETWORK SECTION ─── */
.net-header {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  align-items: end;
  margin-bottom: 3rem;
}
.net-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border-l);
  padding: 2rem;
  margin-bottom: 2.5rem;
}
.net-arrow {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--gold);
  text-align: center;
  padding: 0 1.25rem;
  flex-shrink: 0;
}
.net-step { padding: .5rem 1rem; }
.net-step-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .6rem;
}
.net-step h3 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .4rem;
  letter-spacing: .02em;
}
.net-step p {
  font-size: .82rem;
  color: var(--dim);
  line-height: 1.65;
  font-weight: 300;
}

.net-sub-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 1.1rem;
}

/* Supplier nodes */
.net-suppliers { margin-bottom: 2.5rem; }
.net-supplier-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .75rem;
  margin-bottom: .9rem;
}
.supplier-node {
  background: var(--white);
  border: 1px solid var(--border-l);
  border-radius: var(--r-lg);
  padding: 1.4rem 1rem;
  text-align: center;
  transition: border-color .2s, box-shadow .2s;
}
.supplier-node:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(200,151,58,.12);
}
.supplier-icon { font-size: 1.75rem; margin-bottom: .6rem; line-height: 1; }
.supplier-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: .3rem;
}
.supplier-product {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .4rem;
}
.supplier-tag {
  display: inline-block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #16a34a;
  background: rgba(22,163,74,.08);
  padding: .2rem .6rem;
  border-radius: 999px;
}
.net-supplier-note {
  font-size: .8rem;
  color: var(--dim);
  font-weight: 300;
  line-height: 1.6;
}

/* Buyer logo strip */
.buyer-logo-strip {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: .75rem;
}
.buyer-logo {
  background: var(--white);
  border: 1px solid var(--border-l);
  border-radius: var(--r-lg);
  padding: 1.2rem .75rem;
  text-align: center;
  transition: border-color .2s, transform .2s;
}
.buyer-logo:hover {
  border-color: rgba(200,151,58,.4);
  transform: translateY(-2px);
}
.buyer-logo--india { border-style: dashed; opacity: .75; }
.buyer-logo--placeholder {
  border: 1.5px dashed var(--border-l);
  opacity: .45;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.buyer-flag { font-size: 1.6rem; margin-bottom: .4rem; line-height: 1; }
.buyer-name { font-size: .75rem; font-weight: 700; color: var(--ink); margin-bottom: .15rem; }
.buyer-loc  { font-size: .65rem; color: var(--dim); text-transform: uppercase; letter-spacing: .07em; }

/* Responsive */
@media (max-width: 1023px) {
  .net-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .net-flow { grid-template-columns: 1fr; gap: 1rem; }
  .net-arrow { display: none; }
  .net-supplier-row { grid-template-columns: repeat(2, 1fr); }
  .buyer-logo-strip { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 599px) {
  .net-supplier-row { grid-template-columns: repeat(2, 1fr); }
  .buyer-logo-strip { grid-template-columns: repeat(3, 1fr); }
  .buyer-logo--placeholder { display: none; }
}
