/* ============================================================
   SUNGAI PRODUK PTE. LIMITED
   Premium Light Theme — Forest Green Corporate Design
   Color anchor: Logo #12503F (deep forest green)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@400;500;600&family=IBM+Plex+Mono:wght@400;500&display=swap');

/* ──────────────────────────────────────────────
   DESIGN TOKENS
   ────────────────────────────────────────────── */
:root {
  --green-900: #0B3D2E;
  --green-800: #12503F;   /* logo primary */
  --green-700: #1C6E56;
  --green-600: #2A8A6E;
  --green-500: #3BAD8A;
  --green-200: #B8E0D4;
  --green-100: #E0F2EC;
  --green-50:  #F2FAF7;

  --gold:      #B8851A;
  --gold-bg:   #FDF6E3;

  --white:     #FFFFFF;
  --bg:        #FAFAF8;
  --surface:   #F5F3EF;
  --surface-2: #EDEBE4;
  --sand:      #E8E4DB;

  --ink-1:     #141412;
  --ink-2:     #3A3A35;
  --ink-3:     #6B6B64;
  --ink-4:     #9E9E96;

  --border:    rgba(18, 80, 63, 0.14);
  --border-lg: rgba(18, 80, 63, 0.22);

  --font-display: 'Outfit', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'IBM Plex Mono', monospace;

  --max-w:     1300px;
  --pad:       clamp(1.25rem, 4vw, 4rem);

  --r-xs: 4px;
  --r-sm: 8px;
  --r:    14px;
  --r-lg: 22px;
  --r-xl: 36px;
  --r-full: 9999px;

  --sh-xs: 0 2px 8px  rgba(18,80,63,.07);
  --sh-sm: 0 4px 16px rgba(18,80,63,.10);
  --sh:    0 8px 32px rgba(18,80,63,.13);
  --sh-lg: 0 20px 60px rgba(18,80,63,.16);
  --sh-xl: 0 40px 100px rgba(18,80,63,.20);

  --ease:  cubic-bezier(.25,1,.5,1);
  --ease-back: cubic-bezier(.34,1.56,.64,1);
}

/* ──────────────────────────────────────────────
   RESET & BASE
   ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: auto; /* Lenis handles */
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink-1);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }

/* ──────────────────────────────────────────────
   CUSTOM CURSOR
   ────────────────────────────────────────────── */
body { cursor: none; }
a, button, [role="button"], input, select, textarea, label { cursor: none; }

.cursor__dot {
  position: fixed;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--green-800);
  transform: translate(-50%, -50%);
  transition: width .2s var(--ease), height .2s var(--ease), background .25s, border .25s;
  z-index: 99999;
  pointer-events: none;
  will-change: left, top;
  /* Outline ensures visibility on any background */
  box-shadow: 0 0 0 1.5px rgba(255,255,255,0.6), 0 0 0 3px rgba(0,0,0,0.08);
}
.cursor__ring {
  position: fixed;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2px solid rgba(18,80,63,.55);
  transform: translate(-50%, -50%);
  transition: width .4s var(--ease), height .4s var(--ease), border-color .3s, background .3s;
  z-index: 99998;
  pointer-events: none;
  /* Ring outline for visibility on any bg */
  box-shadow: 0 0 0 1px rgba(255,255,255,0.2), 0 0 0 2px rgba(0,0,0,0.05);
}
body.cursor-hover .cursor__dot  { width: 13px; height: 13px; background: var(--green-700); }
body.cursor-hover .cursor__ring { width: 58px; height: 58px; border-color: var(--green-800); background: rgba(18,80,63,.06); }
body.cursor-click .cursor__dot  { width: 6px; height: 6px; }
body.cursor-click .cursor__ring { width: 44px; height: 44px; }

/* Cursor on DARK sections — switch to white */
body.cursor-on-dark .cursor__dot  {
  background: #ffffff;
  box-shadow: 0 0 0 1.5px rgba(0,0,0,0.25), 0 0 0 3px rgba(255,255,255,0.1);
}
body.cursor-on-dark .cursor__ring {
  border-color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.06);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.2), 0 0 0 2px rgba(255,255,255,0.1);
}
body.cursor-on-dark.cursor-hover .cursor__dot  { background: #fff; }
body.cursor-on-dark.cursor-hover .cursor__ring { border-color: rgba(255,255,255,.95); background: rgba(255,255,255,.12); }

/* ──────────────────────────────────────────────
   LAYOUT UTILITIES
   ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad);
}
.section {
  padding-block: clamp(4rem, 9vw, 8rem);
}
.section--surface { background: var(--surface); }
.section--green {
  background: var(--green-800);
  color: var(--white);
}
.section--sand { background: var(--surface-2); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 6rem);
  align-items: center;
}
.split--60-40 { grid-template-columns: 1.4fr 1fr; }
.split--40-60 { grid-template-columns: 1fr 1.4fr; }

/* ──────────────────────────────────────────────
   TYPOGRAPHY
   ────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--ink-1);
}
h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.2rem; }

.section--green h1,
.section--green h2,
.section--green h3 { color: var(--white); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  font-family: var(--font-mono);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 1.2rem;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px; height: 2px;
  background: var(--green-700);
  border-radius: 2px;
}
.section--green .eyebrow        { color: var(--green-200); }
.section--green .eyebrow::before { background: var(--green-200); }

.lede {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--ink-3);
  line-height: 1.75;
}
.section--green .lede { color: rgba(255,255,255,.75); }

.text-center { text-align: center; }
.text-green  { color: var(--green-800); }
.text-gold   { color: var(--gold); }

/* ──────────────────────────────────────────────
   BUTTONS
   ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .01em;
  padding: .85em 2em;
  border-radius: var(--r-full);
  border: 2px solid transparent;
  transition: all .35s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.15);
  opacity: 0;
  transition: opacity .3s;
}
.btn:hover::after { opacity: 1; }

.btn--primary {
  background: var(--green-800);
  color: var(--white);
  border-color: var(--green-800);
  box-shadow: 0 4px 18px rgba(18,80,63,.25);
}
.btn--primary:hover {
  background: var(--green-900);
  border-color: var(--green-900);
  box-shadow: 0 8px 28px rgba(18,80,63,.35);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  color: var(--green-800);
  border-color: var(--green-800);
}
.btn--outline:hover {
  background: var(--green-800);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--white {
  background: var(--white);
  color: var(--green-800);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--green-50);
  transform: translateY(-2px);
  box-shadow: var(--sh);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.8);
}
.btn svg {
  width: 18px; height: 18px;
  transition: transform .35s var(--ease);
  flex-shrink: 0;
}
.btn:hover svg { transform: translateX(4px); }
.btn--sm { padding: .6em 1.4em; font-size: .85rem; }

/* Magnetic wrapper */
.magnetic { display: inline-block; }

/* ──────────────────────────────────────────────
   NAVIGATION
   ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding-block: 1.1rem;
  background: rgba(250,250,248,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: padding .4s var(--ease), border-color .4s, box-shadow .4s, background .4s;
}
.nav.scrolled {
  padding-block: .7rem;
  border-color: var(--border);
  box-shadow: var(--sh-xs);
  background: rgba(250,250,248,.97);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Brand */
.nav__brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
  text-decoration: none;
}
.nav__brand img { height: 40px; width: auto; transition: height .4s var(--ease); object-fit: contain; flex-shrink: 0; }
.nav.scrolled .nav__brand img { height: 34px; }
.nav__brand-text {
  font-family: var(--font-mono);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .09em;
  line-height: 1.35;
  color: var(--green-800);
  text-transform: uppercase;
  border-left: 2px solid var(--green-200);
  padding-left: .75rem;
  transition: color .3s;
}
.nav__brand:hover .nav__brand-text { color: var(--green-700); }

/* Desktop links */
.nav__menu {
  display: flex;
  align-items: center;
  gap: .25rem;
  flex: 1;
  justify-content: center;
}
.nav__item { position: relative; }

.nav__link {
  display: flex;
  align-items: center;
  gap: .35em;
  font-family: var(--font-body);
  font-size: .93rem;
  font-weight: 500;
  color: var(--ink-2);
  padding: .55rem .9rem;
  border-radius: var(--r-sm);
  transition: color .25s, background .25s;
  position: relative;
}
.nav__link:hover, .nav__link.active { color: var(--green-800); background: var(--green-50); }
.nav__link.active { font-weight: 600; }

.nav__link svg {
  width: 14px; height: 14px;
  transition: transform .3s var(--ease);
  color: var(--ink-4);
}
.nav__item:hover > .nav__link svg,
.nav__item.open  > .nav__link svg { transform: rotate(-180deg); color: var(--green-700); }

/* ── Dropdown ── */
.nav__dropdown {
  position: absolute;
  top: calc(100% + .75rem);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: 290px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--sh-lg);
  padding: .6rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  z-index: 200;
}
.nav__dropdown::before {
  content: '';
  position: absolute;
  top: -7px; left: 50%; transform: translateX(-50%);
  width: 14px; height: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-bottom: none; border-right: none;
  transform: translateX(-50%) rotate(45deg);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.nav__item:hover .nav__dropdown,
.nav__item.open  .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown-item {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: .75rem 1rem;
  border-radius: var(--r-sm);
  color: var(--ink-2);
  font-size: .9rem;
  font-weight: 500;
  transition: background .2s, color .2s, transform .2s;
}
.nav__dropdown-item:hover {
  background: var(--green-50);
  color: var(--green-800);
  transform: translateX(4px);
}
.nav__dropdown-icon {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  background: var(--green-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s;
}
.nav__dropdown-item:hover .nav__dropdown-icon { background: var(--green-100); }
.nav__dropdown-icon svg { width: 18px; height: 18px; stroke: var(--green-700); }
.nav__dropdown-label { font-size: .88rem; line-height: 1.3; }

/* CTA area */
.nav__actions {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}

/* Hamburger */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px; height: 32px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 1001;
}
.nav__burger span {
  display: block;
  width: 100%; height: 2px;
  background: var(--ink-1);
  border-radius: 2px;
  transition: all .3s var(--ease);
  transform-origin: center;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(250,250,248,.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  clip-path: circle(0% at calc(100% - 40px) 40px);
  transition: clip-path .6s cubic-bezier(.77,0,.175,1);
}
.nav__overlay.open {
  display: flex;
  clip-path: circle(150% at calc(100% - 40px) 40px);
}
.nav__overlay-link {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 6vw, 3rem);
  font-weight: 700;
  color: var(--ink-1);
  padding: .6rem 2rem;
  letter-spacing: -.02em;
  transition: color .2s;
  text-align: center;
}
.nav__overlay-link:hover { color: var(--green-800); }
.nav__overlay-sub {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  padding: .8rem 2rem 1.5rem;
  max-width: 500px;
}
.nav__overlay-sub a {
  font-size: .9rem;
  font-weight: 500;
  padding: .45rem 1rem;
  border: 1px solid var(--border-lg);
  border-radius: var(--r-full);
  color: var(--green-800);
  transition: background .2s, color .2s;
}
.nav__overlay-sub a:hover { background: var(--green-800); color: var(--white); }
.nav__overlay-cta { margin-top: 2rem; }

/* ──────────────────────────────────────────────
   HERO SECTION
   ────────────────────────────────────────────── */
.hero {
  padding-top: clamp(8rem, 14vw, 11rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
  position: relative;
  overflow: hidden;
}
/* decorative background shape */
.hero::before {
  content: '';
  position: absolute;
  top: -10%; right: -5%;
  width: 60%; padding-top: 60%;
  background: radial-gradient(circle at center, var(--green-50) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }

/* Hero with background image */
.hero-image {
  padding-top: clamp(9rem, 15vw, 12rem);
  padding-bottom: clamp(5rem, 10vw, 8rem);
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 100%);
  position: relative;
  overflow: hidden;
  color: var(--white);
}
.hero-image::before {
  content: '';
  position: absolute; inset: 0;
  background: inherit;
  z-index: 0;
}
.hero-image__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .22;
  z-index: 0;
}
.hero-image .container { position: relative; z-index: 1; }
.hero-image h1 { color: var(--white); }
.hero-image h1 em { color: var(--green-300, #86c4b0); -webkit-text-fill-color: unset; }
.hero-image h1 em::after { background: var(--green-300, #86c4b0); }
.hero-image .eyebrow { color: var(--green-200); }
.hero-image .eyebrow::before { background: var(--green-200); }
.hero-image .hero__badge {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
}
.hero-image .hero__badge-dot { background: #86c4b0; }
.hero-image .hero__meta { border-top-color: rgba(255,255,255,.2); }
.hero-image .hero__meta div { color: rgba(255,255,255,.6); }
.hero-image .hero__meta strong { color: var(--white); }

/* ── HERO SLIDER ── */
.hero-swiper { overflow: hidden; }
.hero-swiper .swiper-slide { height: auto; }
.hero-slider-slide {
  position: relative;
  min-height: clamp(400px, 60vh, 700px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: clamp(8rem, 12vw, 10rem);
  padding-bottom: clamp(4rem, 7vw, 6rem);
}
.hero-slider-slide__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease;
}
.hero-swiper .swiper-slide-active .hero-slider-slide__bg {
  transform: scale(1.06);
}
.hero-slider-slide__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(11,61,46,.85) 0%, rgba(11,61,46,.4) 60%, rgba(11,61,46,.1) 100%);
}
.hero-slider-slide .container { position: relative; z-index: 1; }
.hero-slider-slide h1 { color: var(--white); font-size: clamp(2.4rem, 5.5vw, 4.5rem); }
.hero-slider-slide h1 em { color: #86c4b0; -webkit-text-fill-color: unset; }
.hero-slider-slide h1 em::after { background: #86c4b0; }
.hero-slider-slide .lede { color: rgba(255,255,255,.82); max-width: 52ch; }
.hero-slider-slide .eyebrow { color: #86c4b0; }
.hero-slider-slide .eyebrow::before { background: #86c4b0; }
.hero-slider-slide .hero__badge {
  background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.2); color: rgba(255,255,255,.9);
}
.hero-slider-slide .hero__badge-dot { background: #86c4b0; }
.hero-slider-slide .hero__meta { border-top-color: rgba(255,255,255,.18); }
.hero-slider-slide .hero__meta div { color: rgba(255,255,255,.55); }
.hero-slider-slide .hero__meta strong { color: var(--white); }
.hero-swiper .swiper-pagination { bottom: 2rem !important; }
.hero-swiper .swiper-pagination-bullet {
  background: rgba(255,255,255,.4); opacity: 1; width: 32px; border-radius: 4px; height: 4px;
}
.hero-swiper .swiper-pagination-bullet-active {
  background: var(--white); width: 48px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  background: var(--green-50);
  border: 1px solid var(--green-200);
  color: var(--green-700);
  font-family: var(--font-mono);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .4em 1em;
  border-radius: var(--r-full);
  margin-bottom: 1.5rem;
}
.hero__badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green-600);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .6; transform: scale(1.3); }
}
.hero h1 { margin-bottom: 1.2rem; }
.hero h1 em {
  font-style: normal;
  color: var(--green-800);
  position: relative;
}
.hero h1 em::after {
  content: '';
  position: absolute;
  bottom: -.1em; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-700), var(--green-500));
  border-radius: 2px;
}
.hero__lede { font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--ink-3); max-width: 50ch; line-height: 1.75; margin-bottom: 2.5rem; }
.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
.hero__meta {
  display: flex;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.hero__meta-item {}
.hero__meta-value {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--green-800);
  line-height: 1;
  margin-bottom: .2rem;
}
.hero__meta-label {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-4);
}

/* hero visual */
.hero__visual {
  position: relative;
}
.river-diagram { width: 100%; height: auto; overflow: visible; }
.river-diagram .tributary       { fill: none; stroke: var(--sand); stroke-width: 2; }
.river-diagram .tributary-draw  { fill: none; stroke: var(--green-700); stroke-width: 2.5; stroke-linecap: round; }
.river-diagram .main-current    { fill: none; stroke: var(--sand); stroke-width: 4; }
.river-diagram .main-current-draw { fill: none; stroke: var(--gold); stroke-width: 4; stroke-linecap: round; }
.river-diagram .node     { fill: var(--bg); stroke: var(--ink-1); stroke-width: 1.5; }
.river-diagram .node-dot { fill: var(--green-800); }
.river-diagram text {
  font-family: var(--font-mono); font-size: 11px; fill: var(--ink-2); letter-spacing: .04em;
}
.river-diagram .arrowhead { fill: var(--gold); }

/* ──────────────────────────────────────────────
   TRUST BAR / CREDENTIALS
   ────────────────────────────────────────────── */
.trust-bar {
  background: var(--green-800);
  padding: 2rem 0;
  overflow: hidden;
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 5vw, 5rem);
  flex-wrap: wrap;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
}
.trust-bar__item svg { width: 22px; height: 22px; stroke: var(--green-300, #86c4b0); flex-shrink: 0; }
.trust-bar__sep { width: 1px; height: 28px; background: rgba(255,255,255,.2); }

/* ──────────────────────────────────────────────
   SECTOR CARDS
   ────────────────────────────────────────────── */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.sector-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
  position: relative;
  overflow: hidden;
}
.sector-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--green-800);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .4s var(--ease);
}
.sector-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-lg);
  border-color: var(--green-200);
}
.sector-card:hover::before { transform: scaleY(1); }
.sector-card__icon {
  width: 56px; height: 56px;
  border-radius: var(--r-sm);
  background: var(--green-50);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s;
}
.sector-card:hover .sector-card__icon { background: var(--green-100); }
.sector-card__icon svg { width: 28px; height: 28px; stroke: var(--green-800); }
.sector-card h3 { font-size: 1.15rem; color: var(--ink-1); }
.sector-card p  { font-size: .92rem; color: var(--ink-3); line-height: 1.6; flex: 1; }
.sector-card__tags {
  display: flex; flex-wrap: wrap; gap: .4rem;
}
.sector-card__tag {
  font-family: var(--font-mono);
  font-size: .7rem;
  padding: .25em .75em;
  border: 1px solid var(--border-lg);
  border-radius: var(--r-full);
  color: var(--ink-3);
}
.sector-card__link {
  display: flex;
  align-items: center;
  gap: .4em;
  font-size: .88rem;
  font-weight: 600;
  color: var(--green-800);
  margin-top: auto;
  transition: gap .3s;
}
.sector-card:hover .sector-card__link { gap: .7em; }
.sector-card__link svg { width: 16px; height: 16px; }

/* ──────────────────────────────────────────────
   ABOUT PREVIEW / SPLIT SECTION
   ────────────────────────────────────────────── */
.about-preview__img-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--green-900);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-xl);
}
.about-preview__img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.about-preview__img-wrap:hover img { transform: scale(1.04); }
.about-preview__badge {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  background: var(--white);
  border-radius: var(--r);
  padding: 1.1rem 1.4rem;
  box-shadow: var(--sh);
  display: flex;
  align-items: center;
  gap: .8rem;
  animation: floatBadge 4s ease-in-out infinite;
}
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}
.about-preview__badge-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: var(--green-50);
  display: flex; align-items: center; justify-content: center;
}
.about-preview__badge-icon svg { width: 22px; height: 22px; stroke: var(--green-800); }
.about-preview__badge-text .val { font-size: 1.3rem; font-weight: 700; color: var(--ink-1); font-family: var(--font-display); }
.about-preview__badge-text .lbl { font-size: .72rem; color: var(--ink-4); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .06em; }

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.stat-item__value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--green-800);
  line-height: 1;
}
.stat-item__label {
  font-family: var(--font-mono);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink-4);
  margin-top: .4rem;
}

/* ──────────────────────────────────────────────
   VISION / DARK GREEN SECTION
   ────────────────────────────────────────────── */
.vision-section { position: relative; overflow: hidden; }
.vision-section::after {
  content: '';
  position: absolute;
  bottom: -20%; right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  pointer-events: none;
}
.pull-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--white);
  border-left: 4px solid var(--gold);
  padding-left: 1.5rem;
}

/* ──────────────────────────────────────────────
   GOALS CARDS
   ────────────────────────────────────────────── */
.goals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.goal-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 2.5rem 2rem;
  transition: transform .4s var(--ease), box-shadow .4s;
  transform-style: preserve-3d;
}
.goal-card:hover { transform: translateY(-6px) rotateX(2deg); box-shadow: var(--sh-lg); }
.goal-card__num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--green-100);
  line-height: 1;
  margin-bottom: 1rem;
}
.goal-card svg { width: 40px; height: 40px; stroke: var(--green-800); margin-bottom: 1.2rem; }
.goal-card h3 { font-size: 1.2rem; margin-bottom: .75rem; }
.goal-card p  { color: var(--ink-3); font-size: .95rem; line-height: 1.65; }

/* ──────────────────────────────────────────────
   SECTOR BLOCKS (products page)
   ────────────────────────────────────────────── */
.sector-subnav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 70px;
  z-index: 100;
  overflow-x: auto;
}
.sector-subnav::-webkit-scrollbar { display: none; }
.sector-subnav__inner {
  display: flex;
  align-items: center;
  gap: .25rem;
  padding: .6rem var(--pad);
}
.sector-subnav__link {
  display: flex;
  align-items: center;
  gap: .5em;
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink-3);
  padding: .55rem 1rem;
  border-radius: var(--r-full);
  white-space: nowrap;
  transition: color .25s, background .25s;
}
.sector-subnav__link:hover { color: var(--green-800); background: var(--green-50); }
.sector-subnav__link.active { color: var(--green-800); background: var(--green-100); }
.sector-subnav__link svg { width: 16px; height: 16px; stroke: currentColor; }

.sector-block {
  padding-block: clamp(4rem, 8vw, 7rem);
  border-bottom: 1px solid var(--border);
}
.sector-block:last-child { border-bottom: none; }
.sector-block__grid {
  display: grid;
  grid-template-columns: .55fr 1fr;
  gap: clamp(2.5rem, 5vw, 6rem);
  align-items: center;
}
.sector-block:nth-child(even) .sector-block__grid { direction: rtl; }
.sector-block:nth-child(even) .sector-block__grid > * { direction: ltr; }
.sector-icon-wrap {
  aspect-ratio: 1;
  max-width: 320px;
  width: 100%;
  border-radius: 50%;
  background: var(--green-50);
  border: 2px solid var(--green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .5s var(--ease), box-shadow .5s;
}
.sector-block:hover .sector-icon-wrap {
  transform: scale(1.04) rotate(-3deg);
  box-shadow: var(--sh-lg);
}
.sector-icon-wrap svg { width: 40%; height: 40%; stroke: var(--green-800); }
.sector-block__index {
  font-family: var(--font-mono);
  font-size: .8rem;
  color: var(--green-700);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.sector-block__tags {
  display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem;
}
.sector-block__tag {
  font-family: var(--font-mono);
  font-size: .72rem;
  padding: .35em 1em;
  border: 1px solid var(--border-lg);
  border-radius: var(--r-full);
  color: var(--ink-3);
  transition: background .25s, color .25s, border-color .25s;
}
.sector-block__tag:hover { background: var(--green-800); color: var(--white); border-color: var(--green-800); }

/* ──────────────────────────────────────────────
   CONTACT
   ────────────────────────────────────────────── */
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  transition: transform .3s var(--ease), box-shadow .3s;
  margin-bottom: 1.25rem;
}
.contact-info-card:hover { transform: translateX(6px); box-shadow: var(--sh-sm); }
.contact-info-card__icon {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: var(--r-sm);
  background: var(--green-50);
  display: flex; align-items: center; justify-content: center;
}
.contact-info-card__icon svg { width: 24px; height: 24px; stroke: var(--green-800); }
.contact-info-card .lbl { font-family: var(--font-mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-4); margin-bottom: .3rem; }
.contact-info-card .val { font-size: 1.05rem; font-weight: 500; color: var(--ink-1); }
.contact-info-card a.val:hover { color: var(--green-800); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(2rem, 4vw, 3.5rem);
  box-shadow: var(--sh-sm);
}
.form-group { margin-bottom: 1.75rem; }
.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink-3);
  margin-bottom: .7rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink-1);
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: .85rem 1.1rem;
  transition: border-color .25s, box-shadow .25s, background .25s;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-700);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(18,80,63,.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B6B64' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 18px;
  padding-right: 3rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.map-wrap {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 1.5rem;
  height: 240px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ──────────────────────────────────────────────
   CTA SECTION
   ────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 100%);
  color: var(--white);
  text-align: center;
  padding-block: clamp(5rem, 10vw, 9rem);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; left: -20%;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  pointer-events: none;
}
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p  { color: rgba(255,255,255,.75); max-width: 50ch; margin-inline: auto; margin-bottom: 2.5rem; font-size: 1.1rem; }
.cta-section .btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ──────────────────────────────────────────────
   RIVER DIVIDER
   ────────────────────────────────────────────── */
.river-divider { padding: 3rem 0; }
.river-divider svg { width: 100%; height: auto; }
.river-divider .main-current      { fill: none; stroke: var(--sand); stroke-width: 3; }
.river-divider .main-current-draw { fill: none; stroke: var(--green-700); stroke-width: 3; stroke-linecap: round; }
.river-divider .node     { fill: var(--bg); stroke: var(--ink-2); stroke-width: 1.5; }
.river-divider .node-dot { fill: var(--green-800); }

/* ──────────────────────────────────────────────
   FOOTER
   ────────────────────────────────────────────── */
.footer {
  background: var(--green-900);
  color: rgba(255,255,255,.7);
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: clamp(2rem, 4vw, 5rem);
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__brand { max-width: 300px; }
.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1.2rem;
}
.footer__brand-logo img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.92;
  transition: opacity .3s;
}
.footer__brand-logo:hover img { opacity: 1; }
.footer__tagline { font-size: .95rem; line-height: 1.7; color: rgba(255,255,255,.55); }
.footer__col-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.footer__links { display: flex; flex-direction: column; gap: .75rem; }
.footer__link {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  transition: color .25s, padding-left .25s;
}
.footer__link:hover { color: var(--green-300, #86c4b0); padding-left: 4px; }
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: 1rem;
}
.footer__contact-item svg { width: 18px; height: 18px; stroke: var(--green-400, #5aad8c); flex-shrink: 0; margin-top: .15rem; }
.footer__contact-item span { font-size: .9rem; color: rgba(255,255,255,.55); line-height: 1.5; }
.footer__contact-item a { transition: color .25s; }
.footer__contact-item a:hover { color: var(--green-300, #86c4b0); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  font-family: var(--font-mono);
  font-size: .75rem;
  color: rgba(255,255,255,.35);
}
.footer__bottom a { color: rgba(255,255,255,.5); transition: color .25s; }
.footer__bottom a:hover { color: rgba(255,255,255,.85); }

/* ──────────────────────────────────────────────
   PAGE HERO (inner pages)
   ────────────────────────────────────────────── */
.page-hero {
  padding-top: clamp(9rem, 15vw, 12rem);
  padding-bottom: clamp(4rem, 7vw, 6rem);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: linear-gradient(to left, var(--green-50), transparent);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 18ch; margin-bottom: 1.2rem; }
.page-hero .lede { max-width: 56ch; }

/* ──────────────────────────────────────────────
   SCROLL REVEAL
   ────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(36px); }

/* ──────────────────────────────────────────────
   ABOUT PAGE — TIMELINE
   ────────────────────────────────────────────── */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}
.story-blocks { display: flex; flex-direction: column; gap: 2rem; }
.story-block {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.story-block__icon {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: var(--r-sm);
  background: var(--green-50);
  border: 1px solid var(--green-100);
  display: flex; align-items: center; justify-content: center;
}
.story-block__icon svg { width: 22px; height: 22px; stroke: var(--green-800); }
.story-block h4 { margin-bottom: .4rem; font-size: 1.05rem; }
.story-block p  { font-size: .92rem; color: var(--ink-3); line-height: 1.65; }

/* ──────────────────────────────────────────────
   SWIPER / GOALS SLIDER
   ────────────────────────────────────────────── */
.goals-swiper { margin-top: 3.5rem; padding-bottom: 3.5rem; }
.swiper-pagination-bullet { background: var(--ink-4); opacity: .4; }
.swiper-pagination-bullet-active { opacity: 1; background: var(--green-800); }

/* ──────────────────────────────────────────────
   FOCUS / ACCESSIBILITY
   ────────────────────────────────────────────── */
:focus-visible { outline: 2px solid var(--green-700); outline-offset: 3px; border-radius: 3px; }

/* ──────────────────────────────────────────────
   RESPONSIVE
   ────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav__menu, .nav__actions .btn:not(.nav__burger) { display: none; }
  .nav__burger { display: flex; }
  .hero__grid   { grid-template-columns: 1fr; }
  .split, .split--60-40, .split--40-60 { grid-template-columns: 1fr; }
  .story-grid   { grid-template-columns: 1fr; }
  .sector-block__grid { grid-template-columns: 1fr; text-align: center; }
  .sector-block:nth-child(even) .sector-block__grid { direction: ltr; }
  .sector-block__tags { justify-content: center; }
  .sector-icon-wrap { max-width: 220px; margin-inline: auto; }
  .contact-form { padding: 2rem; }
  .goals-grid { grid-template-columns: 1fr; }
  .stat-grid  { grid-template-columns: repeat(2, 1fr); }
  .form-row   { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .sectors-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__meta   { gap: 1.5rem; }
  .trust-bar__sep { display: none; }
  .trust-bar__inner { flex-direction: column; gap: 1rem; }
}

/* ──────────────────────────────────────────────
   REDUCED MOTION
   ────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  body { cursor: auto; }
  .cursor__dot, .cursor__ring { display: none; }
}

/* ──────────────────────────────────────────────
   SUB-PRODUCT CARDS
   ────────────────────────────────────────────── */
.products-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 3rem; }
.product-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s; }
.product-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }
.product-card__image { width: 100%; aspect-ratio: 16/9; background: var(--green-50); overflow: hidden; }
.product-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.product-card:hover .product-card__image img { transform: scale(1.06); }
.product-card__image-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--green-50), var(--green-100)); }
.product-card__image-placeholder svg { width: 60px; height: 60px; stroke: var(--green-600); opacity: .6; }
.product-card__body { padding: 1.75rem; }
.product-card__badge { display: inline-block; font-family: var(--font-mono); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; background: var(--green-50); color: var(--green-700); border: 1px solid var(--green-100); padding: .3em .9em; border-radius: var(--r-full); margin-bottom: 1rem; }
.product-card h3 { font-size: 1.2rem; margin-bottom: .6rem; }
.product-card p { color: var(--ink-3); font-size: .92rem; line-height: 1.65; margin-bottom: 1.2rem; }
.product-card__features { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.product-card__features li { display: flex; align-items: center; gap: .6em; font-size: .88rem; color: var(--ink-2); padding: .4rem 0; border-bottom: 1px solid var(--border); }
.product-card__features li:last-child { border-bottom: none; }
.product-card__features li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--green-600); flex-shrink: 0; }
.product-card__cta { display: flex; align-items: center; gap: .4em; font-size: .9rem; font-weight: 600; color: var(--green-800); transition: gap .3s; }
.product-card:hover .product-card__cta { gap: .7em; }
.product-card__cta svg { width: 16px; height: 16px; }
.back-link { display: inline-flex; align-items: center; gap: .5em; font-size: .9rem; font-weight: 500; color: var(--ink-3); margin-bottom: 2rem; transition: color .25s, gap .25s; }
.back-link:hover { color: var(--green-800); gap: .8em; }
.back-link svg { width: 18px; height: 18px; }
.sector-info-box { background: var(--green-50); border: 1px solid var(--green-200); border-radius: var(--r); padding: 2rem; margin-top: 2rem; }
.sector-info-box h4 { font-size: 1.05rem; margin-bottom: 1rem; color: var(--green-800); }
.sector-info-list { display: flex; flex-direction: column; gap: .75rem; list-style: none; padding: 0; margin: 0; }
.sector-info-list li { display: flex; align-items: center; gap: .75em; font-size: .92rem; color: var(--ink-2); }
.sector-info-list li svg { width: 18px; height: 18px; stroke: var(--green-700); flex-shrink: 0; }

/* ── PROCESS ── */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3.5rem; position: relative; }
.process-grid::before { content: ''; position: absolute; top: 2.5rem; left: calc(12.5% + 1rem); right: calc(12.5% + 1rem); height: 2px; background: linear-gradient(to right, var(--green-200), var(--green-500), var(--green-200)); z-index: 0; }
.process-step { text-align: center; position: relative; z-index: 1; }
.process-step__icon { width: 56px; height: 56px; border-radius: 50%; background: var(--green-800); display: flex; align-items: center; justify-content: center; margin-inline: auto; margin-bottom: 1.25rem; box-shadow: 0 4px 20px rgba(18,80,63,.25); transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s; }
.process-step:hover .process-step__icon { transform: scale(1.12); box-shadow: 0 8px 30px rgba(18,80,63,.35); }
.process-step__icon svg { width: 24px; height: 24px; stroke: white; }
.process-step__num { font-family: var(--font-mono); font-size: .72rem; color: var(--green-700); letter-spacing: .1em; text-transform: uppercase; margin-bottom: .4rem; }
.process-step h4 { font-size: 1rem; margin-bottom: .5rem; }
.process-step p { font-size: .88rem; color: var(--ink-3); line-height: 1.6; }

/* ── TESTIMONIALS ── */
.testimonial-swiper { margin-top: 3.5rem; padding-bottom: 3.5rem; }
.testimonial-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 2.5rem; height: 100%; }
.testimonial-card__quote { font-size: clamp(1rem, 1.3vw, 1.15rem); line-height: 1.75; color: var(--ink-2); margin-bottom: 2rem; font-style: italic; }
.testimonial-card__quote::before { content: '\201C'; color: var(--green-700); font-size: 2em; line-height: 0; vertical-align: -.4em; margin-right: .1em; font-style: normal; }
.testimonial-card__author { display: flex; align-items: center; gap: 1rem; }
.testimonial-card__avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--green-100); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; color: var(--green-800); font-size: 1.1rem; flex-shrink: 0; }
.testimonial-card__name { font-weight: 600; font-size: .95rem; margin-bottom: .1rem; }
.testimonial-card__role { font-size: .82rem; color: var(--ink-4); font-family: var(--font-mono); }
.testimonial-card__stars { display: flex; gap: .2rem; margin-bottom: .5rem; }
.testimonial-card__stars svg { width: 16px; height: 16px; fill: #B8851A; stroke: none; }

/* ── SECTOR PAGE HERO ── */
.sector-page-hero { padding-top: clamp(9rem, 15vw, 12rem); padding-bottom: clamp(4rem, 8vw, 7rem); position: relative; overflow: hidden; color: #fff; }
.sector-page-hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.sector-page-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(11,61,46,.9) 0%, rgba(11,61,46,.6) 55%, rgba(11,61,46,.25) 100%); z-index: 1; }
.sector-page-hero .container { position: relative; z-index: 2; }
.sector-page-hero h1 { color: #fff; max-width: 16ch; }
.sector-page-hero .lede { color: rgba(255,255,255,.8); }
.sector-page-hero .eyebrow { color: #86c4b0; }
.sector-page-hero .eyebrow::before { background: #86c4b0; }
.sector-page-hero .back-link { color: rgba(255,255,255,.65); margin-bottom: 1.5rem; }
.sector-page-hero .back-link:hover { color: #fff; }
.sector-page-hero .breadcrumb a { color: rgba(255,255,255,.7); transition: color .25s; }
.sector-page-hero .breadcrumb a:hover { color: #fff; }
.sector-page-hero .breadcrumb__sep { color: rgba(255,255,255,.4); }
.sector-page-hero .breadcrumb__current { color: #fff; font-weight: 500; }

@media (max-width: 1100px) { .process-grid { grid-template-columns: repeat(2, 1fr); } .process-grid::before { display: none; } }
@media (max-width: 900px) { .products-grid { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .products-grid { grid-template-columns: 1fr; } .process-grid { grid-template-columns: 1fr; } }

/* ──────────────────────────────────────────────
   SECTOR PAGE — IMPROVED ICONS
   ────────────────────────────────────────────── */
.sector-icon-img {
  aspect-ratio: 1;
  max-width: 320px;
  width: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  position: relative;
  transition: transform .5s var(--ease), box-shadow .5s;
}
.sector-icon-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.sector-block:hover .sector-icon-img { transform: scale(1.03); box-shadow: var(--sh-xl); }
.sector-block:hover .sector-icon-img img { transform: scale(1.06); }

/* ── IMPROVED SECTOR CARD ICONS ── */
.sector-card__icon-img {
  width: 64px; height: 64px;
  border-radius: var(--r-sm);
  overflow: hidden;
  flex-shrink: 0;
}
.sector-card__icon-img img { width: 100%; height: 100%; object-fit: cover; }

/* ── SUB-PRODUCT HERO ── */
.sub-product-hero {
  padding-top: clamp(9rem, 15vw, 12rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.sub-product-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 55%; height: 100%;
  background: linear-gradient(to left, var(--green-50), transparent);
  pointer-events: none;
}
.sub-product-hero .container { position: relative; z-index: 1; }
.sub-product-hero h1 { max-width: 20ch; margin-bottom: 1.2rem; }
.sub-product-hero .lede { max-width: 56ch; }

/* ── PRODUCT DETAIL SECTIONS ── */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}
.product-detail-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-xl);
  position: sticky;
  top: 100px;
  aspect-ratio: 4/3;
  background: var(--green-50);
}
.product-detail-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.product-detail-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green-50) 0%, var(--green-100) 50%, var(--green-200) 100%);
}
.product-detail-img-placeholder svg { width: 80px; height: 80px; stroke: var(--green-600); opacity: .7; }

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
  font-size: .92rem;
}
.spec-table th, .spec-table td {
  padding: .9rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.spec-table th {
  background: var(--surface);
  font-family: var(--font-mono);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ink-3);
  font-weight: 500;
}
.spec-table td { color: var(--ink-2); }
.spec-table tr:last-child td { border-bottom: none; }
.spec-table tr:hover td { background: var(--green-50); }

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 1rem 1.1rem;
  transition: border-color .25s, box-shadow .25s;
}
.feature-item:hover { border-color: var(--green-200); box-shadow: var(--sh-xs); }
.feature-item__icon {
  width: 38px; height: 38px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--green-50);
  display: flex; align-items: center; justify-content: center;
}
.feature-item__icon svg { width: 18px; height: 18px; stroke: var(--green-700); }
.feature-item p { font-size: .88rem; color: var(--ink-2); line-height: 1.55; }
.feature-item strong { display: block; font-size: .92rem; color: var(--ink-1); margin-bottom: .2rem; }

.applications-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.application-card {
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--r);
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: background .3s, transform .3s;
}
.application-card:hover { background: var(--green-100); transform: translateY(-3px); }
.application-card svg { width: 32px; height: 32px; stroke: var(--green-700); margin-inline: auto; margin-bottom: .75rem; }
.application-card p { font-size: .88rem; color: var(--ink-2); font-weight: 500; }

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.related-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.related-card:hover { transform: translateY(-5px); box-shadow: var(--sh); border-color: var(--green-200); }
.related-card__icon {
  width: 48px; height: 48px;
  border-radius: var(--r-sm);
  background: var(--green-50);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s;
}
.related-card:hover .related-card__icon { background: var(--green-100); }
.related-card__icon svg { width: 24px; height: 24px; stroke: var(--green-700); }
.related-card h4 { font-size: 1rem; }
.related-card p { font-size: .85rem; color: var(--ink-3); flex: 1; }
.related-card__link { font-size: .85rem; font-weight: 600; color: var(--green-800); display: flex; align-items: center; gap: .4em; transition: gap .3s; }
.related-card:hover .related-card__link { gap: .7em; }
.related-card__link svg { width: 14px; height: 14px; }

/* ── SECTOR PAGE IMPROVEMENTS ── */
.sector-page-subproducts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.sector-subproduct-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s, border-color .4s;
  display: flex;
  flex-direction: column;
}
.sector-subproduct-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-lg);
  border-color: var(--green-200);
}
.sector-subproduct-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--green-50), var(--green-100));
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.sector-subproduct-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.sector-subproduct-card:hover .sector-subproduct-card__img img { transform: scale(1.06); }
.sector-subproduct-card__img svg { width: 52px; height: 52px; stroke: var(--green-500); opacity: .7; }
.sector-subproduct-card__body { padding: 1.5rem 1.75rem; flex: 1; display: flex; flex-direction: column; gap: .75rem; }
.sector-subproduct-card h3 { font-size: 1.1rem; }
.sector-subproduct-card p { font-size: .9rem; color: var(--ink-3); flex: 1; line-height: 1.6; }
.sector-subproduct-card__link {
  display: flex; align-items: center; gap: .4em;
  font-size: .88rem; font-weight: 600; color: var(--green-800);
  transition: gap .3s;
}
.sector-subproduct-card:hover .sector-subproduct-card__link { gap: .7em; }
.sector-subproduct-card__link svg { width: 15px; height: 15px; }

/* ── BENEFITS SECTION ── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.benefit-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: border-color .3s, box-shadow .3s;
}
.benefit-item:hover { border-color: var(--green-200); box-shadow: var(--sh-xs); }
.benefit-item__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-100);
  line-height: 1;
  flex-shrink: 0;
  min-width: 2.5rem;
}
.benefit-item h4 { font-size: 1rem; margin-bottom: .35rem; }
.benefit-item p { font-size: .88rem; color: var(--ink-3); line-height: 1.6; }

/* ── RESPONSIVE for new pages ── */
@media (max-width: 1100px) {
  .sector-page-subproducts { grid-template-columns: repeat(2, 1fr); }
  .applications-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .product-detail-grid { grid-template-columns: 1fr; }
  .product-detail-img { position: static; }
  .feature-list { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .sector-page-subproducts { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .applications-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
}

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  color: var(--ink-4);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--ink-3); transition: color .2s; }
.breadcrumb a:hover { color: var(--green-800); }
.breadcrumb__sep { color: var(--ink-4); }
.breadcrumb__current { color: var(--ink-2); font-weight: 500; }

/* ── INQUIRY BANNER ── */
.inquiry-banner {
  background: var(--green-50);
  border: 1px solid var(--green-200);
  border-radius: var(--r-lg);
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 3rem;
}
.inquiry-banner h3 { font-size: 1.4rem; margin-bottom: .5rem; }
.inquiry-banner p { color: var(--ink-3); font-size: .95rem; }
@media (max-width: 700px) {
  .inquiry-banner { flex-direction: column; text-align: center; padding: 2rem; }
}
