/* ============================================================
   RIVERSIDE ENERGY B.V. — Modern Energy Design System (2026)
   Dark-first, technical, cinematic.
   ============================================================ */

/* ──────────────────────────────────────────────
   1. DESIGN TOKENS
   ────────────────────────────────────────────── */
:root {
  /* Palette — dark-first */
  --ink-950: #070B0F;
  --ink-900: #0A0F15;
  --ink-850: #0E141B;
  --ink-800: #131B24;
  --graphite: #1B2530;
  --graphite-soft: #24303D;

  --paper: #10161E;            /* base surface (dark) */
  --surface: #141C25;          /* raised surface */
  --surface-2: #1B2530;        /* raised x2 */

  --text-hi: #EDF2F6;          /* primary type */
  --text-mid: #A6B0BC;         /* secondary type */
  --text-low: #6E7A88;         /* tertiary type / muted */

  --accent: #46B552;           /* company green */
  --accent-soft: #2E8B3D;
  --accent-glow: rgba(70, 181, 82, 0.35);
  --accent-tint: rgba(70, 181, 82, 0.12);

  --cool: #8FA3B5;             /* cool gray secondary accent */
  --line: rgba(237, 242, 246, 0.10);
  --line-strong: rgba(237, 242, 246, 0.18);
  --white: #FFFFFF;

  /* Typography */
  --font-display: 'Manrope', 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-mono: 'JetBrains Mono', 'SFMono-Regular', Consolas, 'Liberation Mono', monospace;

  /* Type scale (fluid-ish) */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.3rem;
  --text-2xl: 1.6rem;
  --text-3xl: 2.1rem;
  --text-4xl: 2.8rem;
  --text-5xl: 3.6rem;
  --text-hero: clamp(2.9rem, 6vw, 5rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Layout */
  --container-max: 1240px;
  --container-wide: 1440px;
  --section-pad: clamp(4rem, 8vw, 7.5rem);
  --header-h: 120px;

  /* Radii — modern, subtle */
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-pill: 999px;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --dur-1: 160ms;
  --dur-2: 320ms;
  --dur-3: 600ms;

  /* Shadows */
  --shadow-1: 0 6px 24px rgba(0, 0, 0, 0.35);
  --shadow-2: 0 20px 60px rgba(0, 0, 0, 0.45);
  --glow: 0 0 0 1px var(--accent-tint), 0 10px 40px var(--accent-glow);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--text-mid);
  background-color: var(--paper);
  overflow-x: hidden;
}

img, video, iframe, svg { display: block; max-width: 100%; height: auto; }

a { text-decoration: none; color: inherit; transition: color var(--dur-1) var(--ease); }

ul, ol { list-style: none; }

button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

table { border-collapse: collapse; width: 100%; }

address { font-style: normal; }

::selection { background: var(--accent); color: #1a1206; }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--ink-900); }
::-webkit-scrollbar-thumb { background: var(--graphite-soft); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--cool); }

/* ──────────────────────────────────────────────
   3. ACCESSIBILITY
   ────────────────────────────────────────────── */
.skip-to-content {
  position: absolute; top: -100%; left: var(--space-4); z-index: 10000;
  padding: 0.75rem 1.25rem;
  background: var(--accent); color: #1a1206;
  font-size: var(--text-sm); font-weight: 700;
  border-radius: var(--radius-sm);
  transition: top var(--dur-2) var(--ease), box-shadow var(--dur-2) var(--ease);
}
.skip-to-content:focus-visible { top: var(--space-4);
  box-shadow: 0 0 0 4px var(--ink-950), 0 0 0 6px var(--accent); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}
/* Override outline-radius on elements that shouldn't be rounded */
.btn:focus-visible, .social-link:focus-visible, .nav-link:focus-visible {
  border-radius: var(--radius-pill);
}
.nav-toggle:focus-visible {
  outline-offset: 2px;
  box-shadow: 0 0 0 4px var(--accent-tint);
}
.region-tag:focus-visible {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-tint);
  outline: none;
}
.whatsapp-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--accent-tint);
}

::marker { color: var(--accent); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ──────────────────────────────────────────────
   4. LAYOUT UTILITIES
   ────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding-left: var(--space-6); padding-right: var(--space-6); }
.container--wide { max-width: var(--container-wide); }

.section { padding: var(--section-pad) 0; position: relative; }
.section--on-dark { background: var(--ink-900); }
.section--surface { background: var(--surface); }
.section--tint { background: linear-gradient(180deg, var(--ink-900), var(--paper)); }

.section-head { max-width: 760px; margin-bottom: clamp(2rem, 5vw, 3.5rem); position: relative; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--split { display: flex; align-items: flex-end; justify-content: space-between; gap: var(--space-8); max-width: none; }
.section-head--split .section-head-copy { max-width: 620px; }

/* Eyebrow / overline */
.eyebrow {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-family: var(--font-mono);
  font-size: var(--text-xs); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: var(--space-5);
}
.eyebrow::before { content: ''; width: 28px; height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent); opacity: 0.8; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text-hi);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
}
h1 { font-size: var(--text-hero); font-weight: 700; letter-spacing: -0.035em; line-height: 1.05; }
h2 { font-size: var(--text-4xl); letter-spacing: -0.025em; }
h3 { font-size: var(--text-2xl); letter-spacing: -0.015em; }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); font-weight: 600; }

p { color: var(--text-mid); }
p a { color: var(--accent); }
p a:hover { text-decoration: underline; }

.grad-text {
  background: linear-gradient(115deg, var(--text-hi) 20%, var(--accent) 55%, #F0C66A 85%, var(--accent) 110%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.lede { font-size: var(--text-xl); color: var(--text-mid); max-width: 56ch; line-height: 1.6; }

.leading { font-size: var(--text-lg); color: var(--text-mid); }

.mono-label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-low);
}

strong, b { color: var(--text-hi); font-weight: 600; }

/* ──────────────────────────────────────────────
   5. BUTTONS
   ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  padding: 0.85rem 1.8rem;
  font-family: var(--font-body);
  font-size: var(--text-sm); font-weight: 600;
  line-height: 1.2;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background-color var(--dur-2) var(--ease), color var(--dur-2) var(--ease),
              border-color var(--dur-2) var(--ease), transform var(--dur-2) var(--ease),
              box-shadow var(--dur-2) var(--ease);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; transition: transform var(--dur-2) var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary { background: var(--accent); color: #1a1206; }
.btn-primary:hover { background: #F0B14D; box-shadow: var(--glow); transform: translateY(-2px); }
.btn-primary:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--accent-tint), var(--glow); }

.btn-ghost { background: transparent; color: var(--text-hi); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-tint); transform: translateY(-2px); }
.btn-ghost:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--accent-tint); }

.btn-light { background: var(--text-hi); color: var(--ink-900); }
.btn-light:hover { background: var(--white); transform: translateY(-2px); }
.btn-light:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--accent-tint); }

.btn-text {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: var(--space-2) 0;
  font-size: var(--text-sm); font-weight: 600; color: var(--accent);
  background: none;
  transition: gap var(--dur-2) var(--ease);
}
.btn-text svg { width: 16px; height: 16px; }
.btn-text:hover { gap: var(--space-4); }

.btn-block { display: flex; width: 100%; }

/* ──────────────────────────────────────────────
   6. HEADER / NAVIGATION (floating, blur-on-scroll)
   ────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background-color var(--dur-2) var(--ease), border-color var(--dur-2) var(--ease),
              backdrop-filter var(--dur-2) var(--ease), box-shadow var(--dur-2) var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: transparent;
  border-bottom-color: var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); gap: var(--space-6);
}

/* Brand */
.brand { display: inline-flex; align-items: center; flex-shrink: 0; margin-right: auto; }
.brand-logo {
  display: block; max-height: 80px; width: auto; height: auto;
}

/* Nav */
.main-nav { display: flex; align-items: center; gap: var(--space-4); background: transparent; }
.nav-list { display: flex; align-items: center; gap: var(--space-1);
  background: transparent; padding: 0; margin: 0; border: none; }
.nav-link {
  display: inline-flex; align-items: center;
  padding: 0.45rem 0.95rem;
  font-size: var(--text-sm); font-weight: 600;
  line-height: 1.2; white-space: nowrap;
  color: var(--text-mid);
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  position: relative;
  transition: color var(--dur-1) var(--ease), background-color var(--dur-1) var(--ease),
              border-color var(--dur-1) var(--ease);
}
.nav-link::after {
  content: ''; position: absolute; left: var(--space-3); right: var(--space-3); bottom: 8px;
  height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-2) var(--ease);
}
.nav-link:hover { color: var(--text-hi); border-color: var(--line); background: var(--surface); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.active { color: var(--text-hi); border-color: var(--line); background: var(--surface); }
.nav-link.active::after { transform: scaleX(1); }

.header-cta { margin-left: var(--space-2); padding: 0.5rem 1.25rem; font-size: var(--text-sm); }

/* Nav dropdown (Activities) */
.nav-item { position: relative; }
.nav-item .nav-link { display: inline-flex; align-items: center; gap: 0.35rem; }
.nav-item .nav-caret { width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 5px solid var(--text-mid); transition: transform var(--dur-1) var(--ease); }
.nav-item:hover .nav-caret, .nav-item:focus-within .nav-caret { transform: rotate(180deg); border-top-color: var(--accent); }
.nav-dropdown { position: absolute; top: calc(100% + 12px); left: 0; min-width: 240px; padding: 0.5rem;
  background: var(--surface-x2); border: 1px solid var(--line); border-radius: var(--radius-md);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity var(--dur-2) var(--ease), transform var(--dur-2) var(--ease), visibility var(--dur-2) var(--ease);
  box-shadow: 0 18px 40px -12px rgba(0,0,0,0.5); z-index: 60; }
.nav-item:hover .nav-dropdown, .nav-item:focus-within .nav-dropdown, .nav-item.open .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-item.open .nav-caret { transform: rotate(180deg); border-top-color: var(--accent); }
/* Hover bridge: fills the 12px gap so the dropdown stays open while the cursor moves down into it */
.nav-dropdown::before { content: ""; position: absolute; left: 0; right: 0; top: -12px; height: 12px; }
.nav-dropdown a { display: block; padding: 0.55rem 0.75rem; color: var(--text-mid); font-size: var(--text-sm);
  font-weight: 500; border-radius: var(--radius-sm); white-space: nowrap; transition: color var(--dur-1) var(--ease), background var(--dur-1) var(--ease); }
.nav-dropdown a:hover { color: var(--text-hi); background: var(--surface); }
.nav-dropdown a.active { color: var(--accent); background: var(--surface); }

/* Mobile toggle */
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 6px;
  width: 44px; height: 44px; padding: var(--space-2); background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.nav-toggle span { display: block; width: 100%; height: 2px; background: var(--text-hi);
  transition: transform var(--dur-2) var(--ease), opacity var(--dur-2) var(--ease); transform-origin: center; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu { position: fixed; inset: 0; z-index: 999; background: var(--ink-950);
  display: flex; flex-direction: column; justify-content: center; padding: var(--space-16) var(--space-8);
  transform: translateX(100%); visibility: hidden;
  transition: transform var(--dur-3) var(--ease), visibility var(--dur-3) var(--ease); }
.mobile-menu.open { transform: translateX(0); visibility: visible; }
.mobile-nav-list { display: flex; flex-direction: column; }
.mobile-nav-list li { border-bottom: 1px solid var(--line); }
.mobile-nav-link { display: flex; align-items: center; justify-content: space-between;
  padding: var(--space-5) 0; font-family: var(--font-display); font-size: var(--text-2xl);
  font-weight: 500; color: var(--text-hi); }
.mobile-nav-link span { color: var(--accent); font-family: var(--font-mono); font-size: var(--text-sm); opacity: 0; transform: translateX(-8px); transition: all var(--dur-2) var(--ease); }
.mobile-menu.open .mobile-nav-link span { opacity: 1; transform: translateX(0); }
.mobile-nav-link:hover { color: var(--accent); }
.mobile-nav-link.active { color: var(--accent); border-left: 3px solid var(--accent); padding-left: var(--space-4); }
.mobile-nav-sublist { padding-left: var(--space-4); border-left: 1px solid var(--line); margin: 0 0 var(--space-3) var(--space-3); }
.mobile-nav-sublist li { border-bottom: none; }
.mobile-nav-sublist a { display: flex; padding: 0.65rem 0; color: var(--text-mid); font-size: var(--text-base); font-weight: 500; }
.mobile-nav-sublist a:hover { color: var(--accent); }
.mobile-nav-sublist a.active { color: var(--accent); }
.mobile-menu-footer { margin-top: var(--space-12); display: flex; flex-direction: column; gap: var(--space-4); }
.mobile-menu-footer .tel { font-size: var(--text-lg); color: var(--text-hi); font-weight: 600; }

body.nav-open { overflow: hidden; }

/* ──────────────────────────────────────────────
   7. HERO — cinematic (home)
   ────────────────────────────────────────────── */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center;
  overflow: hidden; color: var(--text-hi); padding-top: var(--header-h); }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover;
  animation: kenBurns 28s ease-in-out infinite alternate; transform-origin: center 40%; }
@keyframes kenBurns { 0% { transform: scale(1); } 100% { transform: scale(1.07); } }

.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(130% 100% at 80% 15%, rgba(7,11,15,0.45), transparent 55%),
    radial-gradient(80% 60% at 20% 80%, rgba(7,11,15,0.3), transparent 50%),
    linear-gradient(180deg, rgba(7,11,15,0.6) 0%, rgba(7,11,15,0.38) 35%, rgba(7,11,15,0.25) 65%, var(--paper) 100%);
}
.hero-data-grid { position: absolute; inset: 0; z-index: 0; opacity: 0.4;
  background-image:
    linear-gradient(rgba(237,242,246,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(237,242,246,0.04) 1px, transparent 1px);
  background-size: 56px 56px; mask-image: radial-gradient(70% 65% at 50% 40%, #000, transparent); }
.hero-scanline { position: absolute; left: 0; right: 0; height: 1px; top: 45%;
  background: linear-gradient(90deg, transparent 5%, var(--accent) 50%, transparent 95%);
  opacity: 0; animation: scan 9s linear infinite; z-index: 0; pointer-events: none; }
@keyframes scan { 0% { top: 20%; opacity: 0; } 12% { opacity: 0.5; } 88% { opacity: 0.5; } 100% { top: 80%; opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
  .hero-scanline { animation: none; opacity: 0.3; top: 60%; }
  .hero-media img { animation: none; transform: scale(1.03); }
}

.hero-inner { position: relative; z-index: 2; max-width: 900px; padding: var(--space-16) var(--space-6); }
.hero-eyebrow { display: inline-flex; align-items: center; gap: var(--space-2);
  padding: var(--space-2) var(--space-4); border: 1px solid var(--line-strong); border-radius: var(--radius-pill);
  font-family: var(--font-mono); font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--text-mid); background: rgba(7,11,15,0.45); backdrop-filter: blur(8px);
  box-shadow: 0 0 48px -12px var(--accent-glow);
  margin-bottom: var(--space-8); }
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 var(--accent-glow); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 var(--accent-glow); } 70% { box-shadow: 0 0 0 8px transparent; } 100% { box-shadow: 0 0 0 0 transparent; } }

.hero h1 { margin-bottom: var(--space-6); }
.hero .lede { margin-bottom: var(--space-10); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: var(--space-4); align-items: center; }

/* Hero metrics strip */
.hero-metrics { display: grid; grid-template-columns: repeat(3, auto); gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: var(--space-14); padding-top: var(--space-8); position: relative;
  border-top: 1px solid var(--line-strong); max-width: 780px; }
.hero-metrics::before { content: ''; position: absolute; left: 0; top: 0; width: 60px; height: 1px;
  background: var(--accent); }
.hero-metric .metric-num { font-family: var(--font-display); font-size: var(--text-3xl); font-weight: 600; color: var(--text-hi); line-height: 1; }
.hero-metric .metric-num .unit { color: var(--accent); font-size: var(--text-xl); text-shadow: 0 0 20px var(--accent-glow); }
.hero-metric .metric-label { font-family: var(--font-mono); font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-low); margin-top: var(--space-2); }

/* ──────────────────────────────────────────────
   8. TICKER / MARQUEE
   ────────────────────────────────────────────── */
.ticker { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--ink-900); padding: var(--space-5) 0; position: relative; }
.ticker::before, .ticker::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 1; pointer-events: none; }
.ticker::before { left: 0; background: linear-gradient(90deg, var(--ink-900), transparent); }
.ticker::after { right: 0; background: linear-gradient(270deg, var(--ink-900), transparent); }
.ticker-track { display: flex; gap: 0; width: max-content; animation: ticker 32s linear infinite; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item { display: flex; align-items: center; gap: var(--space-6); padding: 0 var(--space-8);
  font-family: var(--font-display); font-size: var(--text-lg); font-weight: 500; color: var(--text-mid); white-space: nowrap; }
.ticker-item .sep { color: var(--accent); }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; flex-wrap: wrap; width: 100%; } }

/* ──────────────────────────────────────────────
   10. ENERGY NETWORK FLOW
   ────────────────────────────────────────────── */
.flow { position: relative; }
.flow-stages { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; align-items: stretch; position: relative; }
.flow-stage { padding: var(--space-8) var(--space-6) 0; border-top: 1px solid var(--line-strong); position: relative;
  transition: border-color var(--dur-2) var(--ease); }
.flow-stage:hover { border-top-color: var(--accent); }
.flow-stage .stage-node { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--accent);
  display: grid; place-items: center; background: var(--ink-900); margin-bottom: var(--space-5); position: relative; z-index: 2; }
.flow-stage .stage-node svg { width: 16px; height: 16px; color: var(--accent); }
.flow-stage .stage-index { font-family: var(--font-mono); font-size: var(--text-xs); color: var(--accent); letter-spacing: 0.14em; margin-bottom: var(--space-3); }
.flow-stage h3 { font-size: var(--text-xl); margin-bottom: var(--space-3); }
.flow-stage p { font-size: var(--text-sm); color: var(--text-low); line-height: 1.6; }

/* connector line with animated dash */
.flow-connector { position: absolute; top: var(--space-8); left: calc(-50% + 34px); width: calc(100% - 34px); height: 1px;
  background: repeating-linear-gradient(90deg, var(--accent) 0 6px, transparent 6px 12px); opacity: 0.5;
  animation: dashflow 1.4s linear infinite; }
@keyframes dashflow { to { background-position: 24px 0; } }
@media (prefers-reduced-motion: reduce) { .flow-connector { animation: none; } }
.flow-connector::after { content: ''; position: absolute; top: -3px; right: 0; width: 7px; height: 7px;
  border-radius: 50%; background: var(--accent); box-shadow: 0 0 12px var(--accent-glow); }

/* ──────────────────────────────────────────────
   11. BENEFIT / PROOF STATS
   ────────────────────────────────────────────── */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); border-top: 1px solid var(--line); }
.stat-cell { padding: var(--space-8) var(--space-4) 0 var(--space-4); border-right: 1px solid var(--line); }
.stat-cell:last-child { border-right: none; }
.stat-num { font-family: var(--font-display); font-size: var(--text-4xl); font-weight: 600; color: var(--text-hi); line-height: 1; }
.stat-num .unit { color: var(--accent); font-size: var(--text-2xl); }
.stat-cap { font-family: var(--font-mono); font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-mid); margin-top: var(--space-3); }
.stat-desc { font-size: var(--text-sm); color: var(--text-low); margin-top: var(--space-2); line-height: 1.6; }

/* ──────────────────────────────────────────────
   12. PRODUCT SHOWCASE (full-width panels)
   ────────────────────────────────────────────── */
.product-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6); }
.product-panel { position: relative; min-height: 460px; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); isolation: isolate; display: flex; align-items: flex-end;
  transition: border-color var(--dur-2) var(--ease); }
.product-panel:hover { border-color: rgba(70, 181, 82, 0.4); }
.product-panel.tall { grid-row: span 2; min-height: 960px; }
.product-panel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform var(--dur-3) var(--ease); }
.product-panel::before { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(7,11,15,0.05) 30%, rgba(7,11,15,0.82) 100%); }
.product-panel:hover img { transform: scale(1.06); }
.product-panel-content { padding: var(--space-8); width: 100%; transition: transform var(--dur-2) var(--ease); }
.product-panel:hover .product-panel-content { transform: translateY(-2px); }
.product-tag { font-family: var(--font-mono); font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--accent); margin-bottom: var(--space-3); }
.product-panel h3 { font-size: var(--text-3xl); color: var(--text-hi); }
.product-panel p { color: var(--text-mid); margin: var(--space-3) 0 var(--space-5); max-width: 40ch; }
.product-specs { display: flex; flex-wrap: wrap; gap: var(--space-4); margin-bottom: var(--space-5); }
.product-spec { display: flex; flex-direction: column; gap: 2px; }
.product-spec span:first-child { font-family: var(--font-mono); font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-low); }
.product-spec span:last-child { font-size: var(--text-sm); color: var(--text-hi); font-weight: 600; }

/* ──────────────────────────────────────────────
   13. GLOBAL MARKETS — map + data
   ────────────────────────────────────────────── */
.markets-wrap { display: grid; grid-template-columns: 1.4fr 1fr; gap: var(--space-12); align-items: center; }
.market-map { position: relative; border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: radial-gradient(120% 120% at 30% 20%, var(--ink-850), var(--ink-950)); overflow: hidden; }
.market-map svg { width: 100%; height: auto; display: block; }
.market-map .region { fill: rgba(143,163,181,0.10); stroke: rgba(237,242,246,0.25); stroke-width: 0.5; transition: fill var(--dur-2) var(--ease); }
.market-map .region:hover { fill: var(--accent-tint); }
.market-map .hl { fill: none; stroke: var(--accent); stroke-width: 1.2; stroke-dasharray: 4 4; animation: dashflow 2s linear infinite; }
@media (prefers-reduced-motion: reduce) { .market-map .hl { animation: none; } }
.market-map .node { fill: var(--accent); filter: drop-shadow(0 0 3px var(--accent-glow));
  animation: nodePulse 3s ease-in-out infinite; }
@keyframes nodePulse { 0%, 100% { opacity: 1; filter: drop-shadow(0 0 3px var(--accent-glow)); }
  50% { opacity: 0.6; filter: drop-shadow(0 0 6px var(--accent-glow)); } }
@media (prefers-reduced-motion: reduce) { .market-map .node { animation: none; opacity: 0.85; } }
.markets-list { display: flex; flex-direction: column; }
.market-metric { display: flex; align-items: baseline; gap: var(--space-3); padding: var(--space-5) 0; border-bottom: 1px solid var(--line); }
.market-metric .m-num { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 600; color: var(--text-hi); min-width: 96px; }
.market-metric .m-num .unit { color: var(--accent); font-size: var(--text-lg); }
.market-metric .m-label { font-size: var(--text-sm); color: var(--text-mid); }
.market-tag-cloud { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-top: var(--space-6); }
.region-tag { padding: var(--space-2) var(--space-4); border: 1px solid var(--line); border-radius: var(--radius-pill);
  font-family: var(--font-mono); font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-mid); transition: all var(--dur-1) var(--ease); }
.region-tag:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-tint); }

/* ──────────────────────────────────────────────
   14. OPERATIONS — split screen
   ────────────────────────────────────────────── */
.ops-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
.ops-block { position: relative; min-height: 520px; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); transition: border-color var(--dur-2) var(--ease); }
.ops-block:hover { border-color: rgba(70, 181, 82, 0.4); }
.ops-block.wide { grid-column: 1 / -1; min-height: 420px; }
.ops-block img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-3) var(--ease); }
.ops-block:hover img { transform: scale(1.05); }
.ops-block::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,11,15,0.1) 40%, rgba(7,11,15,0.85) 100%); z-index: 1; }
.ops-block-content { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end; height: 100%; padding: var(--space-8); }
.ops-label { font-family: var(--font-mono); font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--accent); display: flex; align-items: center; gap: var(--space-2); margin-bottom: var(--space-4); }
.ops-label::before { content: ''; width: 22px; height: 1px; background: var(--accent); }
.ops-block h3 { font-size: var(--text-3xl); color: var(--text-hi); }
.ops-block p { color: var(--text-mid); margin-top: var(--space-3); max-width: 46ch; }

/* ──────────────────────────────────────────────
   15. PROJECTS — horizontal timeline
   ────────────────────────────────────────────── */
.timeline { position: relative; }
.timeline-rail { position: absolute; top: 32px; left: 0; right: 0; height: 1px; background: var(--line-strong); }
.timeline-rail::after { content: ''; position: absolute; left: 0; top: -1px; width: 100%; height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent 80%); transform-origin: left;
  animation: railPulse 4s ease-in-out infinite alternate; }
@keyframes railPulse { 0% { opacity: 0.6; } 100% { opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .timeline-rail::after { animation: none; opacity: 0.8; } }
.timeline-items { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); position: relative; }
.timeline-item { position: relative; padding-top: var(--space-16); }
.timeline-item .timeline-media { transition: border-color var(--dur-2) var(--ease); }
.timeline-item:hover .timeline-media { border-color: rgba(70, 181, 82, 0.4); }
.timeline-item::before { content: ''; position: absolute; top: 28px; left: 0; width: 10px; height: 10px;
  border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 5px var(--accent-tint); z-index: 2; }
.timeline-date { font-family: var(--font-mono); font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent); margin-bottom: var(--space-3); }
.timeline-loc { font-family: var(--font-mono); font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-low); margin-bottom: var(--space-4); }
.timeline-media { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); margin-bottom: var(--space-5); position: relative; }
.timeline-media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; transition: transform var(--dur-3) var(--ease); }
.timeline-item:hover .timeline-media img { transform: scale(1.05); }
.timeline-item h3 { font-size: var(--text-xl); }
.timeline-item p { font-size: var(--text-sm); color: var(--text-low); margin: var(--space-3) 0 var(--space-4); }

/* ──────────────────────────────────────────────
   16. SUSTAINABILITY THEMES
   ────────────────────────────────────────────── */
.sus-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
.sus-card { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  background: var(--surface); display: flex; flex-direction: column; transition: border-color var(--dur-2) var(--ease), transform var(--dur-2) var(--ease); }
.sus-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.sus-card-media { position: relative; height: 260px; overflow: hidden; }
.sus-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-3) var(--ease); }
.sus-card:hover .sus-card-media img { transform: scale(1.06); }
.sus-card-media .sus-num { position: absolute; top: var(--space-5); left: var(--space-5);
  font-family: var(--font-mono); font-size: var(--text-sm); color: var(--text-hi);
  background: rgba(7,11,15,0.6); border: 1px solid var(--line-strong); backdrop-filter: blur(6px);
  padding: var(--space-1) var(--space-3); border-radius: var(--radius-pill); }
.sus-card-body { padding: var(--space-7); display: flex; flex-direction: column; flex: 1; }
.sus-card-body .mono-label { margin-bottom: var(--space-2); }
.sus-card-body h3 { font-size: var(--text-2xl); margin-bottom: var(--space-3); }
.sus-card-body p { font-size: var(--text-sm); color: var(--text-low); flex: 1; }

/* ──────────────────────────────────────────────
   17. QUALITY & COMPLIANCE
   ────────────────────────────────────────────── */
.quality-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-12); align-items: center; }
.quality-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
.quality-item { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface);
  padding: var(--space-7); transition: border-color var(--dur-2) var(--ease), transform var(--dur-2) var(--ease); }
.quality-item:hover { border-color: var(--accent); transform: translateY(-4px); }
.quality-icon { width: 44px; height: 44px; border-radius: var(--radius-sm); background: var(--accent-tint);
  display: grid; place-items: center; margin-bottom: var(--space-5); color: var(--accent); }
.quality-icon svg { width: 22px; height: 22px; }
.quality-item h3 { font-size: var(--text-lg); margin-bottom: var(--space-2); }
.quality-item p { font-size: var(--text-sm); color: var(--text-low); line-height: 1.6; }

/* ──────────────────────────────────────────────
   18. FINAL CTA
   ────────────────────────────────────────────── */
.cta-band { position: relative; overflow: hidden; padding: clamp(5rem, 12vw, 9rem) 0; text-align: center; }
.cta-band-media { position: absolute; inset: 0; z-index: 0; }
.cta-band-media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band-media::after { content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(80% 80% at 50% 50%, rgba(70, 181, 82, 0.05), transparent 60%),
    radial-gradient(100% 100% at 50% 50%, rgba(7,11,15,0.55), rgba(7,11,15,0.92)); }
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { font-size: clamp(2.4rem, 6vw, 4.4rem); max-width: 16ch; margin: 0 auto var(--space-6); }
.cta-band p { max-width: 52ch; margin: 0 auto var(--space-10); font-size: var(--text-lg); }
.cta-band .hero-ctas { justify-content: center; }

/* ──────────────────────────────────────────────
   19. FOOTER
   ────────────────────────────────────────────── */
.site-footer { background: var(--ink-950); border-top: 1px solid var(--line); padding: var(--space-16) 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: var(--space-10); padding-bottom: var(--space-12); }
.footer-brand .brand { margin-bottom: var(--space-5); }
.footer-about { font-size: var(--text-sm); color: var(--text-low); max-width: 34ch; margin-bottom: var(--space-6); line-height: 1.7; }
.footer-social { display: flex; gap: var(--space-3); }
.social-link { display: grid; place-items: center; width: 42px; height: 42px; border-radius: var(--radius-sm);
  border: 1px solid var(--line); color: var(--text-mid); transition: all var(--dur-2) var(--ease); }
.social-link svg { width: 18px; height: 18px; }
.social-link:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-tint); transform: translateY(-2px); }
.footer-col h4 { font-family: var(--font-mono); font-size: var(--text-xs); text-transform: uppercase;
  letter-spacing: 0.16em; color: var(--text-hi); margin-bottom: var(--space-5); }
.footer-col ul li { margin-bottom: var(--space-3); }
.footer-col ul a { font-size: var(--text-sm); color: var(--text-mid); transition: color var(--dur-1) var(--ease); }
.footer-col ul a:hover { color: var(--accent); }
.footer-contact li { display: flex; gap: var(--space-3); margin-bottom: var(--space-4); font-size: var(--text-sm); color: var(--text-mid); }
.footer-contact svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 3px; color: var(--accent); }
.footer-contact a { color: var(--text-mid); }
.footer-contact a:hover { color: var(--accent); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: var(--space-6);
  padding: var(--space-6) 0; border-top: 1px solid var(--line); flex-wrap: wrap; }
.footer-bottom-left p { font-size: var(--text-xs); color: var(--text-low); margin-bottom: var(--space-1); }
.footer-bottom-right { display: flex; gap: var(--space-6); flex-wrap: wrap; }
.footer-bottom-right a { font-size: var(--text-xs); color: var(--text-low); }
.footer-bottom-right a:hover { color: var(--accent); }

/* ──────────────────────────────────────────────
   20. CONTENT BLOCKS / INTERNAL PAGES
   ────────────────────────────────────────────── */
.prose { max-width: 72ch; }
.prose p { margin-bottom: var(--space-5); font-size: var(--text-lg); line-height: 1.75; }
.prose h2 { font-size: var(--text-2xl); margin-top: var(--space-12); margin-bottom: var(--space-4); }
.prose h3 { font-size: var(--text-xl); margin-top: var(--space-8); margin-bottom: var(--space-3); }
.prose ul { margin: 0 0 var(--space-5); }
.prose ul li { position: relative; padding-left: var(--space-6); margin-bottom: var(--space-3); font-size: var(--text-lg); color: var(--text-mid); }
.prose ul li::before { content: ''; position: absolute; left: 0; top: 0.8em; width: 12px; height: 1px; background: var(--accent); }

/* Feature cards (about / services) */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.feature-card { border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface);
  padding: var(--space-8); transition: border-color var(--dur-2) var(--ease), transform var(--dur-2) var(--ease); }
.feature-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.feature-icon { width: 48px; height: 48px; border-radius: var(--radius-sm); background: var(--accent-tint);
  display: grid; place-items: center; color: var(--accent); margin-bottom: var(--space-6); }
.feature-icon svg { width: 24px; height: 24px; }
.feature-card h3 { font-size: var(--text-xl); margin-bottom: var(--space-3); }
.feature-card p { font-size: var(--text-sm); color: var(--text-low); line-height: 1.65; }
.feature-card ul { margin-top: var(--space-4); }
.feature-card ul li { position: relative; padding-left: var(--space-5); font-size: var(--text-sm); color: var(--text-mid);
  margin-bottom: var(--space-2); }
.feature-card ul li::before { content: ''; position: absolute; left: 0; top: 0.65em; width: 10px; height: 1px; background: var(--accent); }

/* Split feature (image + text) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.split--reverse .split-media { order: 2; }
.split-media { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); position: relative;
  transition: border-color var(--dur-2) var(--ease); }
.split-media:hover { border-color: rgba(70, 181, 82, 0.3); }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-media.large { min-height: 520px; }

/* Values grid */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); }
.value-item { border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface);
  padding: var(--space-8); transition: border-color var(--dur-2) var(--ease), transform var(--dur-2) var(--ease); }
.value-item:hover { border-color: var(--accent); transform: translateY(-4px); }
.value-item .v-num { font-family: var(--font-mono); font-size: var(--text-sm); color: var(--accent); }
.value-item h3 { font-size: var(--text-xl); margin: var(--space-3) 0; }
.value-item p { font-size: var(--text-sm); color: var(--text-low); }

/* Leadership */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.team-card { border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); padding: var(--space-8); text-align: center; transition: border-color var(--dur-2) var(--ease), transform var(--dur-2) var(--ease); }
.team-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.team-avatar { width: 76px; height: 76px; margin: 0 auto var(--space-5); border-radius: var(--radius-lg);
  background: var(--accent-tint); display: grid; place-items: center;
  font-family: var(--font-display); font-size: var(--text-xl); font-weight: 700; color: var(--accent);
  border: 1px solid var(--accent); transition: box-shadow var(--dur-2) var(--ease), transform var(--dur-2) var(--ease); }
.team-card:hover .team-avatar { box-shadow: 0 0 20px var(--accent-glow); transform: scale(1.05); }
.team-card h3 { font-size: var(--text-xl); margin-bottom: 2px; }
.team-role { font-family: var(--font-mono); font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); margin-bottom: var(--space-4); }
.team-card p { font-size: var(--text-sm); color: var(--text-low); }

/* Products detail */
.product-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
.product-detail { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--surface);
  transition: border-color var(--dur-2) var(--ease), transform var(--dur-2) var(--ease); }
.product-detail:hover { border-color: var(--accent); transform: translateY(-4px); }
.product-detail img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.product-detail-body { padding: var(--space-7); }
.product-badge { display: inline-block; padding: var(--space-1) var(--space-3); margin-bottom: var(--space-4);
  font-family: var(--font-mono); font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--accent); border: 1px solid var(--accent); border-radius: var(--radius-pill); background: var(--accent-tint);
  transition: background var(--dur-2) var(--ease); }
.product-badge:hover { background: rgba(70, 181, 82, 0.2); }
.product-detail h3 { font-size: var(--text-2xl); margin-bottom: var(--space-3); }
.product-detail p { font-size: var(--text-sm); color: var(--text-mid); }
.product-detail ul { margin-top: var(--space-4); }
.product-detail ul li { position: relative; padding-left: var(--space-5); font-size: var(--text-sm); color: var(--text-mid); margin-bottom: var(--space-2); }
.product-detail ul li::before { content: ''; position: absolute; left: 0; top: 0.65em; width: 10px; height: 1px; background: var(--accent); }

/* Specs table */
.specs-wrap { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.specs-table { width: 100%; font-size: var(--text-sm); }
.specs-table thead { background: var(--surface); }
.specs-table th { padding: var(--space-4) var(--space-5); font-family: var(--font-mono); font-size: var(--text-xs);
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-mid); text-align: left; border-bottom: 1px solid var(--line-strong); }
.specs-table td { padding: var(--space-4) var(--space-5); border-bottom: 1px solid var(--line); color: var(--text-mid); }
.specs-table tr:last-child td { border-bottom: none; }
.specs-table tbody tr { transition: background-color var(--dur-1) var(--ease), border-color var(--dur-2) var(--ease); }
.specs-table tbody tr:hover { background: var(--surface); }
.specs-table tbody tr:hover td:first-child { color: var(--accent); }
.specs-table td:first-child { color: var(--text-hi); font-weight: 600; }

/* Standards / pill grid */
.standard-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.standard-card { border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); padding: var(--space-7);
  transition: border-color var(--dur-2) var(--ease), transform var(--dur-2) var(--ease); }
.standard-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.standard-card h3 { font-size: var(--text-lg); margin-bottom: var(--space-3); }
.standard-card p { font-size: var(--text-sm); color: var(--text-low); line-height: 1.65; }

/* ──────────────────────────────────────────────
   21. CONTACT PAGE
   ────────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: var(--space-12); align-items: start; }
.office-block { border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); padding: var(--space-8); margin-bottom: var(--space-6);
  transition: border-color var(--dur-2) var(--ease); }
.office-block:hover { border-color: rgba(70, 181, 82, 0.4); }
.office-block .mono-label { margin-bottom: var(--space-3); }
.office-block h3 { font-size: var(--text-2xl); margin-bottom: var(--space-4); }
.office-detail { display: flex; align-items: center; gap: var(--space-3); margin-bottom: var(--space-3); font-size: var(--text-sm); }
.office-detail svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }
.office-detail a { color: var(--text-mid); }
.office-detail a:hover { color: var(--accent); }
.office-address { font-size: var(--text-sm); color: var(--text-mid); line-height: 1.7; margin-bottom: var(--space-5); }

.contact-form { border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); padding: var(--space-8);
  transition: border-color var(--dur-2) var(--ease); }
.contact-form:focus-within { border-color: rgba(70, 181, 82, 0.3); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); margin-bottom: var(--space-5); }
.form-group { display: flex; flex-direction: column; margin-bottom: var(--space-5); }
.form-row .form-group { margin-bottom: 0; }
.form-group label { font-size: var(--text-sm); font-weight: 600; color: var(--text-hi); margin-bottom: var(--space-2); }
.form-required { color: var(--accent); }
.form-group input, .form-group select, .form-group textarea {
  padding: var(--space-3) var(--space-4); font-family: var(--font-body); font-size: var(--text-sm);
  color: var(--text-hi); background: var(--ink-900); border: 1px solid var(--line); border-radius: var(--radius-sm);
  transition: border-color var(--dur-1) var(--ease), box-shadow var(--dur-1) var(--ease);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-low); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-tint);
}
.form-group input:focus-visible, .form-group select:focus-visible, .form-group textarea:focus-visible {
  border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-tint);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group select { appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23A6B0BC' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right var(--space-4) center; padding-right: var(--space-10); }
.form-group select option { background: var(--ink-900); color: var(--text-hi); }
.form-checkbox { flex-direction: row; align-items: flex-start; gap: var(--space-3); }
.form-checkbox input[type="checkbox"] { margin-top: 4px; width: 18px; height: 18px; accent-color: var(--accent); flex-shrink: 0; }
.form-checkbox label { font-size: var(--text-sm); font-weight: 400; color: var(--text-mid); line-height: 1.5; }
input[aria-invalid="true"], textarea[aria-invalid="true"], select[aria-invalid="true"] { border-color: #E85C4A !important; }
.form-error { display: block; font-size: var(--text-xs); color: #E85C4A; margin-top: var(--space-1); }
.form-success-notice { margin-top: var(--space-4); font-size: var(--text-sm); color: var(--accent); text-align: center; font-weight: 600; }

/* FAQ */
.faq-list { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); padding: var(--space-7);
  transition: border-color var(--dur-2) var(--ease); }
.faq-item:hover { border-color: rgba(70, 181, 82, 0.3); }
.faq-item h3 { font-size: var(--text-base); font-weight: 600; color: var(--text-hi); margin-bottom: var(--space-3); }
.faq-item p { font-size: var(--text-sm); color: var(--text-low); }

/* Map */
.map-embed { width: 100%; height: 420px; border-radius: var(--radius-lg); border: 1px solid var(--line); filter: invert(0.9) hue-rotate(180deg) saturate(0.5) brightness(0.9); }

/* Inquiry channels */
.channel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.channel-card { border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); padding: var(--space-8); text-align: center; transition: border-color var(--dur-2) var(--ease), transform var(--dur-2) var(--ease); }
.channel-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.channel-icon { width: 52px; height: 52px; margin: 0 auto var(--space-5); border-radius: var(--radius-sm);
  background: var(--accent-tint); display: grid; place-items: center; color: var(--accent); }
.channel-icon svg { width: 26px; height: 26px; }
.channel-card h3 { font-size: var(--text-xl); margin-bottom: var(--space-3); }
.channel-card p { font-size: var(--text-sm); color: var(--text-low); margin-bottom: var(--space-6); }

/* Timeline pages */
.locations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.location-card { border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); padding: var(--space-8);
  transition: border-color var(--dur-2) var(--ease), transform var(--dur-2) var(--ease); }
.location-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.location-card h3 { font-size: var(--text-xl); margin-bottom: var(--space-3); }
.location-card p { font-size: var(--text-sm); color: var(--text-low); margin-bottom: var(--space-4); }
.location-status { display: inline-block; padding: var(--space-1) var(--space-3);
  font-family: var(--font-mono); font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.1em;
  color: #7BD389; background: rgba(46, 160, 67, 0.14); border: 1px solid rgba(123, 211, 137, 0.3); border-radius: var(--radius-pill); }

/* Press */
.press-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.press-card { border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); padding: var(--space-8); display: flex; flex-direction: column; transition: border-color var(--dur-2) var(--ease), transform var(--dur-2) var(--ease); }
.press-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.press-source { font-family: var(--font-mono); font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); margin-bottom: var(--space-3); }
.press-card h3 { font-size: var(--text-lg); margin-bottom: var(--space-3); }
.press-card p { font-size: var(--text-sm); color: var(--text-low); flex: 1; }
.press-date { display: block; margin-top: var(--space-5); font-family: var(--font-mono); font-size: var(--text-xs); color: var(--text-low); }

/* WhatsApp widget */
.whatsapp-widget { position: fixed; bottom: 24px; right: 24px; z-index: 980; }
.whatsapp-toggle { width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #fff;
  display: grid; place-items: center; box-shadow: var(--shadow-2);
  transition: transform var(--dur-2) var(--ease), box-shadow var(--dur-2) var(--ease); }
.whatsapp-toggle:hover { transform: scale(1.08); box-shadow: var(--shadow-2), 0 0 0 6px rgba(37, 211, 102, 0.2); }

/* ──────────────────────────────────────────────
   22. REVEAL ANIMATIONS
   ────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--reveal-delay, 0ms); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

.reveal-scale { opacity: 0; transform: scale(0.96); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--reveal-delay, 0ms); }
.reveal-scale.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal-scale { opacity: 1; transform: none; } }

/* ──────────────────────────────────────────────
   23. RESPONSIVE — TABLET (≤1024px)
   ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { min-height: 92svh; }
  .hero-metrics { grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
  .hero-metric .metric-num { font-size: var(--text-2xl); }
  .flow-stages { grid-template-columns: 1fr 1fr; gap: var(--space-4); }
  .flow-connector { display: none; }
  .flow-stage:nth-child(even) { border-top: 1px solid var(--line-strong); }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(2) { border-right: none; }
  .product-showcase { grid-template-columns: 1fr; }
  .product-panel.tall { grid-row: auto; min-height: 460px; }
  .markets-wrap { grid-template-columns: 1fr; }
  .ops-grid { grid-template-columns: 1fr; }
  .ops-block.wide { grid-column: 1 / -1; }
  .timeline-items { grid-template-columns: 1fr; gap: var(--space-10); }
  .timeline-item::before { top: 30px; }
  .sus-grid { grid-template-columns: 1fr; }
  .quality-wrap { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .standard-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .faq-list { grid-template-columns: 1fr; }
  .channel-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .press-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split-media { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ──────────────────────────────────────────────
   24. RESPONSIVE — MOBILE (≤768px)
   ────────────────────────────────────────────── */
@media (max-width: 768px) {
  :root { --header-h: 96px; --text-5xl: 2.6rem; }
  .container { padding-left: var(--space-5); padding-right: var(--space-5); }
  .header-cta, .main-nav .nav-list { display: none; }
  .brand-logo { max-height: 60px; max-width: 220px; }
  .nav-toggle { display: flex; }
  .hero { min-height: 100svh; padding-top: var(--header-h); }
  .hero-inner { padding: var(--space-16) var(--space-5); }
  .hero-metrics { grid-template-columns: 1fr; gap: var(--space-6); }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .section-head--split { flex-direction: column; align-items: flex-start; }
  .feature-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .standard-grid { grid-template-columns: 1fr; }
  .press-grid { grid-template-columns: 1fr; }
  .quality-list { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr; }
  .stat-cell { border-right: none; border-bottom: 1px solid var(--line); padding-bottom: var(--space-6); }
  .stat-cell:last-child { border-bottom: none; }
  .form-row { grid-template-columns: 1fr; margin-bottom: 0; }
  .form-row .form-group { margin-bottom: var(--space-5); }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-bottom-right { gap: var(--space-4); }
  .ops-block { min-height: 420px; }
  .split-media.large { min-height: 360px; }
}

/* ──────────────────────────────────────────────
   25. RESPONSIVE — SMALL MOBILE (≤480px)
   ────────────────────────────────────────────── */
@media (max-width: 480px) {
  :root { --text-4xl: 2.2rem; --text-3xl: 1.8rem; }
  .product-panel { min-height: 400px; }
  .stat-num { font-size: var(--text-3xl); }
  .map-embed { height: 320px; }
  .hero-inner { padding: var(--space-12) var(--space-4); }
  .hero-eyebrow { font-size: 0.65rem; padding: var(--space-1) var(--space-3); }
  .hero-metric .metric-num { font-size: var(--text-2xl); }
  .hero-metrics { gap: var(--space-4); padding-top: var(--space-6); }
  .market-map { border-radius: var(--radius); }
  .flow-stages { gap: var(--space-2); }
  .flow-stage { padding: var(--space-6) var(--space-4) 0; }
  .cta-band h2 { font-size: clamp(1.8rem, 8vw, 2.8rem); }
  .whatsapp-toggle { width: 52px; height: 52px; }
  .whatsapp-widget { bottom: 16px; right: 16px; }
}