/* ═══════════════════════════════════════════════════════════════
   GREENPLANT AGRO SOLUTION LTD
   Design System v3 — Premium Industrial, Refined & Breathable
═══════════════════════════════════════════════════════════════ */

:root {
  /* Palette — refined, less dark */
  --forest:     #0C3D22;     /* deep green — used sparingly */
  --pine:       #165C35;     /* primary green */
  --leaf:       #1F7A46;     /* medium green */
  --sage:       #4A8C63;     /* soft green accent */
  --sage-pale:  #EDF4F0;     /* pale green surface */
  --gold:       #C8870A;     /* warm gold — muted, not neon */
  --gold-light: #E8A000;     /* brighter gold for dark surfaces */
  --gold-pale:  #FDF7EC;     /* pale gold surface */
  --ink:        #1A1F1C;     /* near-black text */
  --mid:        #3D4840;     /* mid-tone */
  --muted:      #6B7870;     /* muted text */
  --quiet:      #9AABA4;     /* very muted */
  --line:       #DDE8E2;     /* border */
  --line-dark:  rgba(255,255,255,.1);
  --surface:    #F4F7F5;     /* light grey-green surface */
  --surface-2:  #FAFCFB;     /* near-white surface */
  --white:      #FFFFFF;
  --charcoal:   #161A18;     /* near-black for hero/footer */
  --steel-dark: #1E2421;     /* dark steel panels */
  --steel:      #232A26;     /* card dark bg */

  /* Typography */
  --display:   'Sora', sans-serif;
  --body:      'Sora', sans-serif;
  --serif:     'Cormorant Garamond', serif;
  --mono:      'DM Mono', monospace;

  /* Spacing */
  --s1: 8px; --s2: 16px; --s3: 24px; --s4: 32px;
  --s5: 48px; --s6: 64px; --s7: 88px; --s8: 120px;

  --max-w: 1340px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

.wrap {
  width: min(var(--max-w), calc(100% - 40px));
  margin-inline: auto;
}

/* ══ NAV ════════════════════════════════════════════════════════ */
#gp-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 52px; height: 66px;
  background: var(--charcoal);
  border-bottom: 1.5px solid var(--gold-light);
  transition: background .3s, box-shadow .3s;
}
#gp-nav.scrolled {
  background: rgba(22,26,24,.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 40px rgba(0,0,0,.35);
}
.nav-brand { display: flex; align-items: center; }
.nav-links {
  display: flex; gap: 2px; align-items: center;
}
.nav-links a {
  font-size: 11.5px; font-weight: 500;
  text-transform: uppercase; letter-spacing: .13em;
  color: rgba(255,255,255,.56);
  padding: 8px 13px;
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: rgba(255,255,255,.9); }
.nav-links a.nav-cta {
  background: var(--gold-light); color: var(--ink);
  font-weight: 600; margin-left: 8px;
  padding: 8px 18px;
  transition: background .2s;
}
.nav-links a.nav-cta:hover { background: #C8870A; color: white; }
.nav-burger {
  display: none; flex-direction: column; gap: 5px; padding: 4px;
}
.nav-burger span {
  display: block; width: 22px; height: 1.5px;
  background: rgba(255,255,255,.7);
  transition: all .25s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ══ HERO ════════════════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 30%;
  transition: transform 10s ease;
  will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    108deg,
    rgba(10,50,28,.94) 0%,
    rgba(18,22,20,.86) 48%,
    rgba(18,22,20,.65) 100%
  );
}
/* Subtle noise/grain texture for cinematic depth */
.hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  width: min(var(--max-w), calc(100% - 40px));
  margin-inline: auto;
  padding: 120px 0 80px;
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 10.5px; font-weight: 500;
  text-transform: uppercase; letter-spacing: .26em;
  color: rgba(255,255,255,.5);
  margin-bottom: 32px;
}
.kicker-dot {
  width: 6px; height: 6px;
  background: var(--gold-light); border-radius: 50%;
  flex-shrink: 0;
}
.hero-title {
  font-family: var(--display);
  font-size: clamp(52px, 7.5vw, 96px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -.02em;
  color: white;
  margin-bottom: 28px;
}
.hero-title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: -.01em;
}
.hero-desc {
  font-size: clamp(14.5px, 1.5vw, 17px);
  font-weight: 300;
  color: rgba(255,255,255,.62);
  line-height: 1.82;
  max-width: 500px;
  margin-bottom: 40px;
}
.hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 80px;
}
.hero-stats {
  display: flex; align-items: center;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 44px;
}
.hstat {
  display: flex; flex-direction: column;
  padding-right: 44px;
}
.hstat-n {
  font-family: var(--display);
  font-size: clamp(30px, 3.8vw, 48px);
  font-weight: 700;
  color: var(--gold-light); line-height: 1;
}
.hstat-l {
  font-size: 10.5px; font-weight: 500;
  text-transform: uppercase; letter-spacing: .14em;
  color: rgba(255,255,255,.38);
  margin-top: 7px; line-height: 1.45;
}
.hstat-sep {
  width: 1px; height: 44px;
  background: rgba(255,255,255,.12);
  margin: 0 44px 0 0; flex-shrink: 0;
}
.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 52px;
  display: flex; align-items: center; gap: 14px;
  font-size: 9px; font-weight: 500;
  text-transform: uppercase; letter-spacing: .22em;
  color: rgba(255,255,255,.28);
}
.scroll-bar {
  width: 36px; height: 1px;
  background: rgba(255,255,255,.25);
  position: relative; overflow: hidden;
}
.scroll-bar::after {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--gold-light);
  animation: scrollMove 2s ease-in-out infinite;
}
@keyframes scrollMove {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* ══ BUTTONS ═════════════════════════════════════════════════════ */
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .13em;
  background: var(--gold-light); color: var(--ink);
  padding: 14px 30px;
  position: relative; overflow: hidden;
  transition: background .25s, color .25s, transform .18s, box-shadow .25s;
}
.btn-gold::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,.18);
  transform: translateX(-101%);
  transition: transform .35s ease;
}
.btn-gold:hover { background: #B87800; color: white; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(184,120,0,.35); }
.btn-gold:hover::before { transform: translateX(101%); }

.btn-line {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 500;
  text-transform: uppercase; letter-spacing: .13em;
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.22);
  padding: 13px 28px;
  transition: border-color .25s, color .25s, gap .2s;
  background: transparent;
}
.btn-line:hover { border-color: var(--gold-light); color: var(--gold-light); gap: 13px; }

.btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .13em;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  padding: 13px 28px;
  background: transparent;
  transition: background .25s, color .25s, transform .18s;
}
.btn-dark:hover { background: var(--ink); color: white; transform: translateY(-1px); }

.btn-primary-green {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .13em;
  background: var(--pine); color: white;
  padding: 14px 30px;
  transition: background .25s, transform .18s, box-shadow .25s;
}
.btn-primary-green:hover { background: var(--forest); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(15,92,53,.3); }

/* ══ TYPOGRAPHY SYSTEM ═══════════════════════════════════════════ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 11px;
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .26em;
  color: var(--leaf);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 1.5px;
  background: currentColor;
}
.eyebrow--light { color: rgba(255,255,255,.5); }
.eyebrow--light::before { background: rgba(255,255,255,.4); }
.eyebrow--green { color: #4CAF50; }
.eyebrow--green::before { background: #4CAF50; }

.h2 {
  font-family: var(--display);
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -.02em;
  color: var(--ink);
}
.h2--light { color: white; }

.rule {
  width: 40px; height: 2px;
  background: var(--leaf);
  margin: 20px 0 24px;
}
.rule--gold { background: var(--gold-light); }

.lead {
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 300; line-height: 1.82;
  color: var(--muted);
  margin-bottom: 16px;
}
.lead--light { color: rgba(255,255,255,.6); margin-bottom: 0; }

.body {
  font-size: 15px; font-weight: 400;
  line-height: 1.82; color: var(--muted);
}

.sub-text {
  font-size: 15.5px; font-weight: 300;
  line-height: 1.78; color: var(--muted);
  max-width: 580px;
}
.sub-text--light { color: rgba(255,255,255,.48); }

.sec-head { margin-bottom: 64px; }
.sec-head.centered { text-align: center; }
.sec-head.centered .eyebrow { justify-content: center; }
.sec-head.centered .sub-text { margin: 18px auto 0; text-align: center; }
.sec-head.centered .h2 { margin-top: 10px; }
.split-head {
  display: flex; justify-content: space-between;
  align-items: flex-end; flex-wrap: wrap; gap: 24px;
  margin-bottom: 52px;
}
.split-head .h2 { margin-top: 10px; }

/* ══ CERT BAR ═════════════════════════════════════════════════════ */
.cert-bar {
  background: var(--steel-dark);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 18px 0;
  display: flex; align-items: center;
  overflow: hidden;
}
.cert-bar-label {
  flex-shrink: 0;
  font-size: 9px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .24em;
  color: var(--gold-light);
  padding: 0 28px 0 52px;
  border-right: 1px solid rgba(255,255,255,.08);
  white-space: nowrap;
}
.cert-scroll-wrap {
  flex: 1; overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
.cert-scroll-track {
  display: flex; width: max-content;
  animation: certRoll 30s linear infinite;
}
.cert-scroll-track:hover { animation-play-state: paused; }
@keyframes certRoll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.cs {
  display: flex; align-items: center; gap: 9px;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,.06);
  white-space: nowrap;
}
.cs span {
  font-size: 9.5px; font-weight: 500;
  text-transform: uppercase; letter-spacing: .12em;
  color: rgba(255,255,255,.38);
}

/* ══ INTRO SECTION ════════════════════════════════════════════════ */
.sec-intro {
  padding: var(--s8) 0;
  background: var(--white);
  border-top: 1px solid var(--line);
}
.intro-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px; align-items: center;
}
.intro-copy .h2 { margin-top: 10px; }
.trust-pills {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 28px 0 36px;
}
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--pine);
  background: var(--sage-pale);
  border: 1px solid #C4DDD0;
  padding: 6px 12px;
}
.intro-visual { position: relative; }
.img-frame {
  position: relative; overflow: hidden;
}
.img-frame img {
  width: 100%; height: 500px; object-fit: cover;
  transition: transform .7s ease;
}
.img-frame:hover img { transform: scale(1.04); }
.img-overlay-badge {
  position: absolute; bottom: 24px; right: 24px;
  background: var(--charcoal);
  border-left: 2px solid var(--gold-light);
  padding: 16px 20px;
}
.ob-num {
  font-family: var(--display);
  font-size: 38px; font-weight: 700;
  color: var(--gold-light); line-height: 1;
}
.ob-text {
  font-size: 10px; font-weight: 500;
  text-transform: uppercase; letter-spacing: .14em;
  color: rgba(255,255,255,.45);
  margin-top: 5px; line-height: 1.45;
}
.intro-side-stat {
  position: absolute; top: 32px; left: -28px;
  background: var(--pine);
  padding: 20px 22px;
  display: flex; flex-direction: column;
}
.iss-n {
  font-family: var(--display);
  font-size: 28px; font-weight: 700;
  color: var(--gold-light); line-height: 1;
}
.iss-l {
  font-size: 9.5px; font-weight: 500;
  text-transform: uppercase; letter-spacing: .13em;
  color: rgba(255,255,255,.5);
  margin-top: 5px; line-height: 1.45;
}

/* ══ DIVISIONS ════════════════════════════════════════════════════ */
.sec-divisions {
  padding: var(--s8) 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
}
.sec-divisions .sec-head { margin-bottom: 56px; }
.sec-divisions .h2--light { color: var(--ink); }
.sec-divisions .eyebrow--light { color: var(--pine); }
.sec-divisions .eyebrow--light::before { background: var(--pine); }
.sec-divisions .sub-text--light { color: var(--muted); }
.divisions-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
}
.div-panel {
  background: var(--white);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: box-shadow .3s;
}
.div-panel:hover { box-shadow: 0 12px 48px rgba(0,0,0,.12), 0 2px 8px rgba(0,0,0,.06); border-color: var(--sage); transform: translateY(-2px); }
.div-panel { transition: box-shadow .3s, border-color .3s, transform .3s; }
.div-panel--accent { background: var(--pine); }
.dp-img {
  position: relative; height: 210px; overflow: hidden;
}
.dp-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.div-panel:hover .dp-img img { transform: scale(1.06); }
.dp-num {
  position: absolute; top: 14px; right: 14px;
  font-family: var(--mono);
  font-size: 10px; font-weight: 500;
  letter-spacing: .18em;
  color: rgba(255,255,255,.8);
  background: rgba(0,0,0,.45);
  padding: 3px 9px;
  border: 1px solid rgba(255,255,255,.15);
}
.dp-body {
  padding: 28px 26px 32px;
  display: flex; flex-direction: column; flex: 1;
}
.dp-icon {
  width: 38px; height: 38px;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--pine);
  margin-bottom: 16px; flex-shrink: 0;
}
.dp-title {
  font-family: var(--display);
  font-size: 20px; font-weight: 600;
  color: var(--ink); line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -.01em;
}
.div-panel--accent .dp-title { color: white; }
.dp-desc {
  font-size: 13.5px; font-weight: 300;
  color: var(--muted); line-height: 1.72;
  margin-bottom: 20px;
}
.div-panel--accent .dp-desc { color: rgba(255,255,255,.55); }
.dp-list {
  border-top: 1px solid var(--line);
  padding-top: 16px; margin-bottom: 22px;
  display: flex; flex-direction: column; gap: 8px; flex: 1;
}
.div-panel--accent .dp-list { border-top-color: rgba(255,255,255,.12); }
.dp-list li {
  font-size: 12px; font-weight: 400;
  color: var(--muted);
  display: flex; align-items: center; gap: 9px;
  letter-spacing: .04em;
}
.div-panel--accent .dp-list li { color: rgba(255,255,255,.5); }
.dp-list li::before {
  content: ''; display: block;
  width: 3px; height: 3px;
  background: var(--gold-light); flex-shrink: 0;
  border-radius: 50%;
}
.dp-link {
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--pine);
  border-top: 1px solid var(--line);
  padding-top: 16px;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap .2s, color .2s;
}
.div-panel--accent .dp-link { color: var(--gold-light); border-top-color: rgba(255,255,255,.12); }
.dp-link:hover { gap: 12px; }

/* ══ VALUE CHAIN SIGNATURE SECTION ══════════════════════════════ */
.sec-chain {
  padding: var(--s8) 0;
  background: var(--surface);
}
.chain-container {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2px;
  border: 1px solid var(--line);
  overflow: hidden;
}
.chain-steps {
  display: flex; flex-direction: column;
  background: var(--white);
}
.chain-step {
  display: flex; align-items: flex-start; gap: 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: background .25s;
  position: relative;
}
.chain-step:last-child { border-bottom: none; }
.chain-step:hover,
.chain-step.chain-active { background: var(--sage-pale); }
.chain-step--final:hover,
.chain-step--final.chain-active { background: var(--gold-pale); }
.chain-step.chain-active .cs-icon { background: var(--pine); border-color: var(--pine); color: white; }
.chain-step--final.chain-active .cs-icon { background: var(--gold-light); border-color: var(--gold-light); color: white; }

/* The vertical connector line */
.cs-connector {
  position: absolute;
  left: 52px;
  top: 100%;
  width: 1px;
  height: 100%;
  background: var(--line);
  z-index: 0;
}
.cs-connector--last { display: none; }

.cs-node {
  display: flex; flex-direction: column; align-items: center;
  padding: 28px 20px 28px 32px;
  flex-shrink: 0; width: 84px;
  position: relative; z-index: 1;
}
.cs-num {
  font-family: var(--mono);
  font-size: 9px; font-weight: 500;
  color: var(--quiet); letter-spacing: .16em;
  margin-bottom: 10px;
}
.cs-icon {
  width: 40px; height: 40px;
  background: var(--sage-pale);
  border: 1.5px solid var(--line);
  display: grid; place-items: center;
  color: var(--pine);
  transition: background .2s, border-color .2s, color .2s;
}
.chain-step:hover .cs-icon {
  background: var(--pine); border-color: var(--pine); color: white;
}
.cs-node--gold .cs-icon {
  background: var(--gold-pale); border-color: var(--gold);
  color: var(--gold);
}
.chain-step--final:hover .cs-icon {
  background: var(--gold); border-color: var(--gold); color: white;
}
.cs-content {
  padding: 28px 32px 28px 8px;
  display: flex; flex-direction: column; justify-content: center;
}
.cs-title {
  font-size: 15px; font-weight: 600;
  color: var(--ink);
  letter-spacing: -.01em;
  transition: color .2s;
}
.chain-step:hover .cs-title { color: var(--pine); }
.chain-step--final:hover .cs-title { color: var(--gold); }
.cs-detail {
  font-size: 13px; font-weight: 300;
  color: var(--muted); line-height: 1.65;
  max-width: 500px;
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height .35s ease, opacity .3s ease, margin-top .3s ease;
  margin-top: 0;
}
.chain-step:hover .cs-detail,
.chain-step.chain-active .cs-detail {
  max-height: 60px; opacity: 1; margin-top: 6px;
}
/* Chain metrics panel */
.chain-metrics {
  background: var(--pine);
  padding: 40px 32px;
  display: flex; flex-direction: column;
}
.cm-label {
  font-size: 9px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .26em;
  color: rgba(255,255,255,.4);
  margin-bottom: 36px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.cm-item {
  display: flex; flex-direction: column;
  margin-bottom: 28px;
}
.cm-n {
  font-family: var(--display);
  font-size: 32px; font-weight: 700;
  color: var(--gold-light); line-height: 1;
}
.cm-l {
  font-size: 10.5px; font-weight: 400;
  color: rgba(255,255,255,.4);
  margin-top: 6px; line-height: 1.4;
  text-transform: uppercase; letter-spacing: .1em;
}
.cm-cta {
  display: block;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--gold-light);
  border: 1px solid rgba(232,160,0,.3);
  padding: 12px 16px; text-align: center;
  margin-top: auto;
  transition: background .2s, border-color .2s;
}
.cm-cta:hover { background: rgba(232,160,0,.12); border-color: var(--gold-light); }

/* ══ PRODUCTS ════════════════════════════════════════════════════ */
.sec-products {
  padding: var(--s8) 0;
  background: var(--surface-2);
  border-top: 1px solid var(--line);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pcard {
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow .25s, transform .25s;
}
.pcard:hover { box-shadow: 0 16px 52px rgba(0,0,0,.12), 0 4px 16px rgba(0,0,0,.06); transform: translateY(-6px); }
.pcard-img {
  position: relative; height: 200px; overflow: hidden;
  background: var(--sage-pale);
}
.pcard-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.pcard:hover .pcard-img img { transform: scale(1.07); }
.pcard-badge {
  position: absolute; top: 12px; right: 12px;
  font-size: 9px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em;
  background: var(--gold-light); color: var(--ink);
  padding: 3px 9px;
}
.pcard-badge--green { background: var(--pine); color: white; }
.pcard-body {
  padding: 22px 20px 24px;
  display: flex; flex-direction: column; flex: 1;
}
.pcard-grade {
  font-size: 17px; font-weight: 600;
  color: var(--ink); margin-bottom: 9px;
  letter-spacing: -.01em;
}
.pcard-body p {
  font-size: 13px; font-weight: 300;
  line-height: 1.72; color: var(--muted);
  margin-bottom: 14px; flex: 1;
}
.pcard-specs-row {
  display: flex; gap: 6px; margin-bottom: 14px;
}
.pcard-spec {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 8px 6px; text-align: center;
}
.ps-key {
  font-family: var(--mono);
  font-size: 9px; font-weight: 500;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--quiet); margin-bottom: 3px;
}
.ps-val {
  font-size: 12px; font-weight: 600;
  color: var(--pine);
}
.pcard-meta {
  display: flex; gap: 6px; flex-wrap: wrap;
  margin-bottom: 16px;
}
.pcard-meta span {
  font-size: 9.5px; font-weight: 500;
  text-transform: uppercase; letter-spacing: .1em;
  background: var(--sage-pale);
  border: 1px solid #BDD9C7;
  color: var(--pine);
  padding: 3px 9px;
}
.pcard-cta {
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--pine);
  border-top: 1px solid var(--line);
  padding-top: 14px;
  display: flex; align-items: center; justify-content: space-between;
  transition: color .2s;
}
.pcard-cta-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  background: var(--sage-pale);
  border: 1px solid var(--line);
  font-size: 14px; color: var(--pine);
  transition: background .2s, border-color .2s, transform .2s;
}
.pcard:hover .pcard-cta-arrow {
  background: var(--pine); border-color: var(--pine); color: white;
  transform: translateX(3px);
}
.pcard:hover .pcard-cta { color: var(--pine); }

/* ══ WHY SECTION ══════════════════════════════════════════════════ */
.sec-why { background: var(--white); border-top: 1px solid var(--line); }
.why-inner {
  padding: var(--s8) 0;
}
.why-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px; align-items: start;
}
.why-text .h2 { margin-top: 10px; color: var(--ink); }
.why-text .h2--light { color: var(--ink); }
.why-text .eyebrow--light { color: var(--pine); }
.why-text .eyebrow--light::before { background: var(--pine); }
.why-text .lead--light { color: var(--muted); }
.why-text .rule--gold { background: var(--pine); }
.why-numbers {
  display: flex; gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 26px 0; margin: 26px 0 32px;
}
.wnum {
  flex: 1; display: flex; flex-direction: column;
  padding-right: 28px;
  border-right: 1px solid var(--line);
  margin-right: 28px;
}
.wnum:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.wnum-n {
  font-family: var(--display);
  font-size: 38px; font-weight: 700;
  color: var(--pine); line-height: 1;
}
.wnum-l {
  font-size: 10px; font-weight: 400;
  text-transform: uppercase; letter-spacing: .13em;
  color: var(--muted);
  margin-top: 6px; line-height: 1.4;
}
.why-cards {
  display: flex; flex-direction: column; gap: 10px;
}
.wcard {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid transparent;
  padding: 20px 22px;
  transition: border-left-color .2s, box-shadow .2s;
}
.wcard:hover { border-left-color: var(--pine); box-shadow: 0 6px 28px rgba(0,0,0,.08); transform: translateX(3px); }
.wcard { transition: border-left-color .2s, box-shadow .2s, transform .2s; }
.wc-i {
  width: 36px; height: 36px; flex-shrink: 0;
  display: grid; place-items: center;
  color: var(--pine);
  background: var(--sage-pale);
  border: 1px solid var(--line);
}
.wcard strong {
  display: block;
  font-size: 13.5px; font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px; letter-spacing: -.01em;
}
.wcard p {
  font-size: 13px; font-weight: 300;
  color: var(--muted); line-height: 1.65; margin: 0;
}

/* ══ OPERATIONS MOSAIC ════════════════════════════════════════════ */
.sec-ops {
  padding: var(--s8) 0;
  background: var(--white);
  border-top: 1px solid var(--line);
}
.ops-mosaic {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  grid-template-rows: 540px;
  gap: 3px;
}
.om-main, .om-sub { position: relative; overflow: hidden; }
.om-main img, .om-sub img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: transform .7s ease;
  filter: contrast(1.04) saturate(0.92);
}
.om-main:hover img, .om-sub:hover img { transform: scale(1.05); }
.om-col { display: grid; grid-template-rows: 1fr 1fr; gap: 3px; }
.om-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.82), transparent);
  padding: 32px 22px 18px;
  color: white;
}
.om-cap strong {
  display: block; font-size: 14px; font-weight: 600;
  letter-spacing: -.01em; margin-bottom: 4px;
}
.om-cap span { font-size: 11.5px; color: rgba(255,255,255,.52); }

/* ══ ESG SECTION ══════════════════════════════════════════════════ */
.sec-esg {
  padding: var(--s8) 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
}
.esg-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 72px; align-items: start;
  margin-bottom: 72px;
}
.esg-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.epillar {
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 2px solid transparent;
  transition: border-top-color .2s, box-shadow .2s;
}
.epillar:hover { box-shadow: 0 8px 28px rgba(0,0,0,.06); }
.epillar--e { border-top-color: #2E7D32; }
.epillar--s { border-top-color: #1565C0; }
.epillar--g { border-top-color: #6A1B9A; }
.ep-tag {
  font-size: 9px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .24em;
  border: 1px solid currentColor;
  padding: 3px 9px; display: inline-block;
  margin-bottom: 16px;
}
.ep-env { color: #2E7D32; }
.ep-soc { color: #1565C0; }
.ep-gov { color: #6A1B9A; }
.epillar h4 {
  font-size: 15px; font-weight: 600;
  color: var(--ink); margin-bottom: 10px;
  letter-spacing: -.01em; line-height: 1.3;
}
.epillar p {
  font-size: 13px; font-weight: 300;
  color: var(--muted); line-height: 1.72;
  margin-bottom: 16px;
}
.ep-ref {
  font-family: var(--mono);
  font-size: 10px; font-weight: 400;
  color: var(--quiet); letter-spacing: .08em;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
/* ESG Metrics row */
.esg-metrics {
  display: flex; align-items: stretch;
  padding: 56px 52px;
  background: var(--pine);
  gap: 0;
  margin-top: 0;
  position: relative;
}
.esg-metrics::before {
  content: '';
  position: absolute; bottom: 0; left: 52px; right: 52px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-light), transparent);
  opacity: .3;
}
.em {
  display: flex; flex-direction: column; align-items: center;
  flex: 1; text-align: center; padding: 0 20px;
  justify-content: center;
}
.em-n {
  font-family: var(--display);
  font-size: clamp(32px, 3.8vw, 54px);
  font-weight: 700;
  color: white; line-height: 1; display: block;
  margin-bottom: 6px; letter-spacing: -.02em;
}
.em-ctx {
  font-family: var(--mono);
  font-size: 9px; font-weight: 400;
  color: var(--gold-light); letter-spacing: .2em;
  text-transform: uppercase;
  display: block; margin-bottom: 8px;
}
.em-l {
  font-size: 10px; font-weight: 400;
  text-transform: uppercase; letter-spacing: .15em;
  color: rgba(255,255,255,.38); line-height: 1.5;
}
.em-div {
  width: 1px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0; align-self: stretch;
}

/* ══ EXPORT BAND ═════════════════════════════════════════════════ */
.export-band {
  position: relative; min-height: 420px;
  display: flex; align-items: center; overflow: hidden;
}
.eb-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.eb-ov {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(12,61,34,.96) 0%, rgba(12,61,34,.88) 50%, rgba(12,61,34,.65) 100%);
}
.eb-content {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 320px;
  gap: 72px; align-items: center;
  padding: 80px 0;
}
.eb-doc-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  padding: 28px 26px;
  backdrop-filter: blur(8px);
}
.edc-title {
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .22em;
  color: var(--gold-light);
  margin-bottom: 18px; padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.edc-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.edc-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; font-weight: 300;
  color: rgba(255,255,255,.7);
}

/* ══ FINAL CTA ════════════════════════════════════════════════════ */
.sec-cta {
  padding: var(--s7) 0;
  background: var(--white);
  border-top: 1px solid var(--line);
}
.cta-inner { text-align: center; }
.cta-inner .eyebrow { justify-content: center; }

/* ══ FOOTER ══════════════════════════════════════════════════════ */
.site-footer { background: var(--ink); }
.footer-main {
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 52px;
}
.ft-motto {
  font-size: 10px; font-weight: 500;
  text-transform: uppercase; letter-spacing: .18em;
  color: var(--gold-light); line-height: 1.65;
  margin-bottom: 14px;
}
.ft-desc {
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,.36); line-height: 1.82;
  margin-bottom: 22px;
}
.ft-badges {
  display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 20px;
}
.ft-badges span {
  font-size: 9px; font-weight: 500;
  text-transform: uppercase; letter-spacing: .14em;
  color: rgba(255,255,255,.38);
  border: 1px solid rgba(255,255,255,.1);
  padding: 3px 9px;
}
.ft-social { display: flex; gap: 6px; }
.ftsoc {
  width: 32px; height: 32px;
  border: 1px solid rgba(255,255,255,.1);
  display: grid; place-items: center;
  color: rgba(255,255,255,.35);
  transition: border-color .2s, color .2s;
}
.ftsoc:hover { border-color: rgba(255,255,255,.4); color: rgba(255,255,255,.8); }
.ftsoc--wa:hover { border-color: #25D366; color: #25D366; }
.ft-col h5 {
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .2em;
  color: var(--gold-light); margin-bottom: 18px;
}
.ft-col ul li { margin-bottom: 9px; }
.ft-col ul li a {
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,.38);
  transition: color .2s;
}
.ft-col ul li a:hover { color: rgba(255,255,255,.7); }
.ft-contact p {
  font-size: 12.5px; font-weight: 300;
  color: rgba(255,255,255,.38); line-height: 1.72;
  margin-bottom: 10px;
}
.ft-contact p strong {
  display: block; color: rgba(255,255,255,.6);
  font-weight: 500; font-size: 10px;
  text-transform: uppercase; letter-spacing: .12em;
  margin-bottom: 2px;
}
.ft-contact a { color: rgba(255,255,255,.38); transition: color .2s; }
.ft-contact a:hover { color: var(--gold-light); }
.ft-rfq {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 10.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--gold-light);
  border: 1px solid rgba(232,160,0,.25);
  padding: 9px 16px; margin-top: 16px;
  transition: background .2s, border-color .2s;
}
.ft-rfq:hover { background: rgba(232,160,0,.1); border-color: var(--gold-light); }
.footer-btm {
  padding: 20px 0; background: #0E1210;
}
.footer-btm-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap;
  font-size: 11px; font-weight: 300;
  color: rgba(255,255,255,.22);
}
.ft-tagline-btm {
  font-size: 9.5px; text-transform: uppercase;
  letter-spacing: .12em; color: rgba(255,255,255,.18);
}
.ft-nutz {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 400;
  color: rgba(255,255,255,.22);
  transition: color .2s;
}
.ft-nutz:hover { color: rgba(255,255,255,.5); }

/* ══ WHATSAPP FLOAT ═══════════════════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 800;
  width: 52px; height: 52px;
  background: #25D366; border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 4px 18px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(37,211,102,.55); }

/* ══ SCROLL REVEAL ════════════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.r2 { transition-delay: .1s; }
.r3 { transition-delay: .2s; }
.r4 { transition-delay: .3s; }
.r5 { transition-delay: .42s; }

/* ══ RESPONSIVE ═══════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid .ft-brand { grid-column: span 2; }
}
@media (max-width: 1024px) {
  :root { --s8: 88px; --s7: 64px; }
  .intro-layout { grid-template-columns: 1fr; gap: 52px; }
  .intro-side-stat { display: none; }
  .img-frame img { height: 420px; }
  .divisions-row { grid-template-columns: 1fr; gap: 1.5px; }
  .chain-container { grid-template-columns: 1fr; }
  .chain-metrics { display: none; }
  .why-layout { grid-template-columns: 1fr; gap: 52px; }
  .esg-layout { grid-template-columns: 1fr; gap: 48px; }
  .esg-pillars { gap: 14px; }
  .eb-content { grid-template-columns: 1fr; gap: 40px; }
  .eb-doc-card { max-width: 380px; }
  .ops-mosaic { grid-template-rows: 280px; }
  .esg-metrics { flex-wrap: wrap; padding: 40px; }
  .em { min-width: 40%; margin-bottom: 28px; }
  .em-div { display: none; }
}
@media (max-width: 900px) {
  #gp-nav { padding: 0 20px; }
  .nav-links {
    position: fixed; top: 66px; left: 0; right: 0;
    background: rgba(22,26,24,.98);
    backdrop-filter: blur(20px);
    flex-direction: column; gap: 0;
    padding: 12px 0 16px;
    border-bottom: 1px solid rgba(255,255,255,.06);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 24px; width: 100%; }
  .nav-links a.nav-cta { margin: 8px 24px; width: calc(100% - 48px); text-align: center; justify-content: center; }
  .nav-burger { display: flex; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .hstat { min-width: calc(50% - 12px); padding-right: 0; }
  .hstat-sep { display: none; }
  .ops-mosaic { grid-template-columns: 1fr 1fr; }
  .om-col { grid-template-rows: auto; }
  .om-main, .om-sub { height: 220px; }
  .esg-pillars { grid-template-columns: 1fr; gap: 14px; }
}
@media (max-width: 768px) {
  :root { --s8: 64px; --s7: 52px; }
  .wrap { width: calc(100% - 32px); }
  .cert-bar { flex-direction: column; gap: 10px; padding: 16px 0; }
  .cert-bar-label { padding: 0 16px; border-right: none; padding-bottom: 10px; width: 100%; text-align: center; border-bottom: 1px solid rgba(255,255,255,.06); }
  .products-grid { grid-template-columns: 1fr; }
  .why-numbers { flex-direction: column; gap: 0; }
  .wnum { border-right: none; margin-right: 0; padding-right: 0; padding-bottom: 18px; border-bottom: 1px solid var(--line); margin-bottom: 18px; }
  .wnum:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
  .ops-mosaic { grid-template-columns: 1fr; grid-template-rows: auto; }
  .om-main { height: 260px; }
  .om-col { grid-template-columns: 1fr 1fr; grid-template-rows: 180px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid .ft-brand { grid-column: auto; }
  .footer-btm-inner { flex-direction: column; align-items: flex-start; gap: 6px; }
  .ft-tagline-btm { display: none; }
  .esg-metrics { padding: 32px 20px; }
  .em { min-width: 100%; }
  .hero-title { font-size: clamp(44px, 9vw, 72px); }
  .split-head { flex-direction: column; align-items: flex-start; }
  .hero-scroll-hint { display: none; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 40px; line-height: 1.02; }
  .h2 { font-size: 28px; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn-gold,
  .hero-ctas .btn-line { width: 100%; justify-content: center; }
  .hstat { min-width: 100%; }
  .om-col { grid-template-columns: 1fr; grid-template-rows: auto; }
  .om-sub { height: 160px; }
  .wcard { flex-direction: column; gap: 10px; }
  .esg-pillars { grid-template-columns: 1fr; }
}

/* ── Chain step progress indicator ─────────────────────────────── */
.chain-step::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--pine);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .3s ease;
}
.chain-step--final::before { background: var(--gold-light); }
.chain-step:hover::before,
.chain-step.chain-active::before { transform: scaleY(1); }

/* ── Chain metrics panel ─── larger numbers ── */
.chain-metrics .cm-n {
  font-family: var(--display);
  font-size: 34px;
  font-weight: 700;
  color: var(--gold-light); line-height: 1;
}

/* ── ESG pillar hover ─────────────────────────────────────────── */
.epillar {
  transition: box-shadow .25s, transform .25s;
}
.epillar:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(0,0,0,.08);
}

/* ── Intro image frame — subtle inner shadow ─────────────────── */
.img-frame::after {
  content: '';
  position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.08);
  pointer-events: none;
}

/* ── Section dividers — cleaner visual rhythm ────────────────── */
.sec-intro,
.sec-products,
.sec-ops,
.sec-esg,
.sec-cta { border-top: 1px solid var(--line); }

/* ── Product card image overlay on hover ─────────────────────── */
.pcard-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,50,28,.18), transparent 50%);
  opacity: 0;
  transition: opacity .3s ease;
}
.pcard:hover .pcard-img::after { opacity: 1; }

/* ── Hero stat number breathing room ─────────────────────────── */
.hero-stats { padding-top: 48px; gap: 0; }
.hstat { padding-right: 48px; }
.hstat-sep { margin: 0 48px 0 0; }

/* ── Section head: more vertical breathing ───────────────────── */
.sec-head.centered { margin-bottom: 72px; }
.sec-intro { padding-top: 128px; padding-bottom: 128px; }
.sec-divisions { padding-top: 128px; padding-bottom: 128px; }
.sec-chain { padding-top: 128px; padding-bottom: 128px; }
.sec-products { padding-top: 128px; padding-bottom: 128px; }
.sec-why { padding-top: 128px; padding-bottom: 128px; }
.sec-ops { padding-top: 128px; padding-bottom: 128px; }
.sec-esg { padding-top: 128px; padding-bottom: 128px; }

@media (max-width: 900px) {
  .sec-intro, .sec-divisions, .sec-chain, .sec-products,
  .sec-why, .sec-ops, .sec-esg { padding-top: 88px; padding-bottom: 88px; }
}
@media (max-width: 600px) {
  .sec-intro, .sec-divisions, .sec-chain, .sec-products,
  .sec-why, .sec-ops, .sec-esg { padding-top: 64px; padding-bottom: 64px; }
  .pcard-specs-row { flex-wrap: wrap; }
  .chain-step:hover .cs-detail,
  .chain-step.chain-active .cs-detail { max-height: 100px; }
}
