/* ═══════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════ */
:root {
  /* Brand */
  --forest:  #0b3d1c;
  --green:   #16a34a;
  --green-l: #22c55e;
  --sage:    #bbf7d0;
  --mint:    #dcfce7;

  /* Neutral */
  --ink:     #030a05;
  --n90:     #111b13;
  --n80:     #1c2e1f;
  --n60:     #374b3b;
  --n40:     #6b7c6e;
  --n20:     #b0bdb2;
  --n10:     #e8ede9;
  --n05:     #f4f7f4;
  --white:   #ffffff;

  /* Typography */
  --font:    'Plus Jakarta Sans', system-ui, sans-serif;

  /* Effects */
  --glass:   rgba(255,255,255,0.04);
  --glass-b: rgba(255,255,255,0.08);
  --ease:    cubic-bezier(0.22, 1, 0.36, 1);
  --fast:    0.18s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font); background: var(--white); color: var(--ink); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--font); cursor: pointer; }
img, svg { display: block; }

/* ═══════════════════════════════════════════════
   TOP ACCENT LINE
═══════════════════════════════════════════════ */
.top-line {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1001;
  height: 3px;
  background: linear-gradient(90deg, #0b3d1c 0%, #16a34a 40%, #22c55e 65%, #16a34a 100%);
  background-size: 200% 100%;
  animation: shimmer 5s linear infinite;
}
@keyframes shimmer { 0%{background-position:0%} 100%{background-position:200%} }

/* ═══════════════════════════════════════════════
   NAV  —  transparent over hero, solid on scroll
═══════════════════════════════════════════════ */
.nav {
  position: fixed; top: 3px; left: 0; right: 0; z-index: 999;
  height: 76px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.45s var(--ease),
              border-color 0.45s var(--ease),
              box-shadow 0.45s var(--ease);
}
.nav.solid {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
  border-bottom-color: var(--n10);
  box-shadow: 0 2px 40px rgba(0,0,0,0.07);
}
.nav-wrap {
  max-width: 1280px; margin: 0 auto; padding: 0 52px;
  height: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 0;
}

/* ── Logo ──────────────────────────────────── */
.nav-brand {
  display: flex; align-items: center; gap: 13px;
  flex-shrink: 0; text-decoration: none;
  margin-right: 36px;
}
.nav-mark {
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(145deg, #0f5028, #0b3d1c);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(11,61,28,0.35),
              inset 0 1px 0 rgba(255,255,255,0.12);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.nav-brand:hover .nav-mark {
  transform: scale(1.06);
  box-shadow: 0 6px 22px rgba(11,61,28,0.4), inset 0 1px 0 rgba(255,255,255,0.12);
}
.nav-mark svg { width: 22px; height: 22px; }

.nav-wordmark { display: flex; flex-direction: column; gap: 2px; }
.nav-name {
  font-size: 16px; font-weight: 800;
  letter-spacing: -0.5px; line-height: 1;
  color: var(--white);
  transition: color 0.4s var(--ease);
}
.nav.solid .nav-name { color: var(--ink); }

.nav-name-row { display: flex; align-items: center; gap: 8px; }
.nav-badge {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.8px; text-transform: uppercase;
  color: var(--sage); background: rgba(187,247,208,0.12);
  border: 1px solid rgba(187,247,208,0.2);
  padding: 2px 7px; border-radius: 4px;
  transition: color 0.4s, background 0.4s, border-color 0.4s;
  white-space: nowrap;
}
.nav.solid .nav-badge {
  color: var(--green); background: var(--mint);
  border-color: #bbf7d0;
}
.nav-sub {
  font-size: 10px; font-weight: 400; letter-spacing: 0.6px;
  text-transform: uppercase; line-height: 1;
  color: rgba(255,255,255,0.38);
  transition: color 0.4s var(--ease);
}
.nav.solid .nav-sub { color: var(--n40); }

/* ── Links ─────────────────────────────────── */
.nav-links {
  display: flex; align-items: center; gap: 0;
  flex: 1; justify-content: center;
}
.nav-link {
  position: relative;
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.68);
  padding: 8px 16px; border-radius: 7px;
  letter-spacing: 0.05px;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: 3px; left: 16px; right: 16px;
  height: 1.5px; border-radius: 2px;
  background: var(--sage);
  transform: scaleX(0); transform-origin: center;
  transition: transform 0.28s var(--ease), background 0.4s;
}
.nav.solid .nav-link::after { background: var(--green); }
.nav-link:hover { color: var(--white); }
.nav.solid .nav-link { color: var(--n60); }
.nav.solid .nav-link:hover { color: var(--ink); }
.nav-link:hover::after { transform: scaleX(1); }

/* ── Right side ────────────────────────────── */
.nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; margin-left: 24px; }

.nav-divider {
  width: 1px; height: 28px;
  background: rgba(255,255,255,0.12);
  transition: background 0.4s var(--ease);
}
.nav.solid .nav-divider { background: var(--n10); }

.nav-phone {
  display: flex; align-items: center; gap: 7px;
  font-size: 12.5px; font-weight: 500;
  color: rgba(255,255,255,0.58);
  padding: 8px 14px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  white-space: nowrap;
  transition: all 0.22s;
}
.nav-phone svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; flex-shrink: 0; }
.nav-phone:hover { color: var(--white); border-color: rgba(255,255,255,0.28); background: rgba(255,255,255,0.06); }
.nav.solid .nav-phone { color: var(--n60); border-color: var(--n10); }
.nav.solid .nav-phone:hover { color: var(--green); background: var(--n05); border-color: #c4e8cc; }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: 9px;
  background: linear-gradient(140deg, #0f5028 0%, #16a34a 100%);
  color: var(--white);
  font-size: 13px; font-weight: 700; letter-spacing: -0.1px;
  position: relative; overflow: hidden;
  box-shadow: 0 2px 12px rgba(11,61,28,0.4),
              0 1px 3px rgba(0,0,0,0.12),
              inset 0 1px 0 rgba(255,255,255,0.15);
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.nav-cta::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(11,61,28,0.4),
              0 2px 6px rgba(0,0,0,0.12),
              inset 0 1px 0 rgba(255,255,255,0.18);
  background: linear-gradient(140deg, #115f2f 0%, #19b84f 100%);
}
.nav-cta svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2.5; transition: transform 0.22s; }
.nav-cta:hover svg { transform: translateX(3px); }

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  min-height: 100vh; padding-top: 79px;
  background: linear-gradient(180deg, #0a2913 0%, #082210 35%, #0a2912 70%, #041006 100%);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}

/* Orbs */
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); pointer-events: none;
}
.orb1 { width: 600px; height: 600px; top: -100px; left: -100px; background: radial-gradient(circle, rgba(22,163,74,0.18) 0%, transparent 70%); animation: drift1 8s ease-in-out infinite; }
.orb2 { width: 500px; height: 500px; right: 100px; top: 100px; background: radial-gradient(circle, rgba(11,61,28,0.4) 0%, transparent 70%); animation: drift2 10s ease-in-out infinite; }
.orb3 { width: 300px; height: 300px; bottom: 100px; left: 40%; background: radial-gradient(circle, rgba(22,163,74,0.1) 0%, transparent 70%); animation: drift1 12s ease-in-out infinite reverse; }

@keyframes drift1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(30px,-40px)} }
@keyframes drift2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-20px,30px)} }

/* Grid */
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 72px 72px;
}

.hero-body {
  flex: 1; display: grid;
  grid-template-columns: 1fr 460px;
  gap: 0; align-items: center;
  padding: 60px 48px 60px;
  max-width: 1280px; margin: 0 auto; width: 100%;
  position: relative; z-index: 2;
}

.hero-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600;
  color: var(--green-l); letter-spacing: 2.5px; text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-label::before { content: ''; display: inline-block; width: 24px; height: 1.5px; background: var(--green-l); flex-shrink: 0; }

.hero-h1 {
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
  background: linear-gradient(160deg, #ffffff 0%, #ffffff 45%, #a7f3c0 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 28px;
}

.hero-p {
  font-size: 17px; font-weight: 300; line-height: 1.75;
  color: rgba(255,255,255,0.55); max-width: 480px; margin-bottom: 44px;
}
.hero-p strong { color: rgba(255,255,255,0.85); font-weight: 500; }

.hero-btns { display: flex; align-items: center; gap: 12px; }
.btn-green {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: var(--white);
  padding: 14px 26px; border-radius: 9px;
  font-size: 14px; font-weight: 600;
  transition: all 0.22s var(--ease);
}
.btn-green:hover { background: var(--green-l); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(22,163,74,0.3); }
.btn-green svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; transition: transform 0.2s; }
.btn-green:hover svg { transform: translateX(3px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.7);
  padding: 13px 24px; border-radius: 9px;
  font-size: 14px; font-weight: 500;
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.35); color: var(--white); background: rgba(255,255,255,0.04); }

/* Hero right glass panel */
.hero-panel {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px; padding: 28px;
  display: flex; flex-direction: column; gap: 6px;
}
.hero-service {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px; padding: 18px 20px;
  transition: background 0.2s;
}
.hero-service:hover { background: rgba(255,255,255,0.06); }
.hs-label { font-size: 10px; font-weight: 600; color: var(--green-l); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 6px; }
.hs-name { font-size: 16px; font-weight: 700; color: var(--white); letter-spacing: -0.2px; margin-bottom: 9px; }
.hs-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.hs-tag {
  font-size: 10px; font-weight: 500; letter-spacing: 0.3px;
  color: rgba(187,247,208,0.7);
  background: rgba(22,163,74,0.12);
  border: 1px solid rgba(22,163,74,0.2);
  padding: 3px 9px; border-radius: 5px;
}
.hero-panel-footer {
  margin-top: 4px; padding: 14px 20px;
  background: rgba(22,163,74,0.08); border-radius: 10px;
  border: 1px solid rgba(22,163,74,0.15);
  font-size: 12px; font-weight: 400; color: rgba(255,255,255,0.35); line-height: 1.5;
}
.hero-panel-footer strong { color: rgba(187,247,208,0.7); font-weight: 500; }

/* Hero stats bar */
.hero-bar {
  position: relative; z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: grid; grid-template-columns: repeat(3,1fr);
}
.hb-item {
  padding: 24px 48px;
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; gap: 16px;
}
.hb-item:last-child { border-right: none; }
.hb-val { font-size: 28px; font-weight: 800; color: var(--white); letter-spacing: -0.04em; white-space: nowrap; }
.hb-val span { color: var(--green-l); }
.hb-label { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.4); line-height: 1.45; }

/* ═══════════════════════════════════════════════
   MARQUEE TRUST BAR
═══════════════════════════════════════════════ */
.trust-bar {
  background: var(--forest); overflow: hidden;
  padding: 14px 0; border-top: 1px solid rgba(255,255,255,0.06);
}
.trust-track {
  display: inline-flex; gap: 0;
  animation: slide 24s linear infinite;
  white-space: nowrap;
}
.trust-track:hover { animation-play-state: paused; }
.trust-item {
  display: inline-flex; align-items: center; gap: 36px;
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 0 36px;
}
.trust-item::after { content: '✦'; font-size: 8px; color: var(--green-l); opacity: 0.5; }
@keyframes slide { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ═══════════════════════════════════════════════
   LAYOUT HELPERS
═══════════════════════════════════════════════ */
.section { padding: 100px 0; }
.section-sm { padding: 72px 0; }
.bg-white { background: var(--white); }
.bg-off { background: var(--n05); }
.bg-dark { background: var(--n90); }
.bg-forest { background: var(--forest); }
.container { max-width: 1280px; margin: 0 auto; padding: 0 48px; }

.chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600;
  color: var(--green); letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 16px;
}
.chip::before { content: ''; display: inline-block; width: 20px; height: 1.5px; background: var(--green); }
.chip-lt { color: var(--green-l); }
.chip-lt::before { background: var(--green-l); }

.h2 {
  font-size: clamp(32px, 3.5vw, 50px);
  font-weight: 800; letter-spacing: -0.035em; line-height: 1.1;
  color: var(--ink);
}
.h2-wh { color: var(--white); }
.body-text {
  font-size: 16px; font-weight: 300; line-height: 1.78;
  color: var(--n40);
}
.body-text-wh { color: rgba(255,255,255,0.45); }

.sec-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.sec-3col { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.sec-4col { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

/* ═══════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════ */
.about-left p { font-size: 15px; font-weight: 300; color: var(--n40); line-height: 1.8; margin-bottom: 18px; }
.about-left p:last-child { margin-bottom: 0; }
.about-pillars { display: flex; flex-direction: column; gap: 2px; }
.ap {
  display: grid; grid-template-columns: 28px 1fr; gap: 16px;
  padding: 22px 24px; border-radius: 12px;
  background: var(--n05); border: 1px solid var(--n10);
  transition: all 0.2s var(--ease);
}
.ap:hover { background: var(--white); border-color: #c4e8cc; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.ap-n { font-size: 11px; font-weight: 700; color: var(--green); letter-spacing: 0.5px; padding-top: 2px; }
.ap-title { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 4px; letter-spacing: -0.1px; }
.ap-desc { font-size: 13px; font-weight: 300; color: var(--n40); line-height: 1.6; }

/* ═══════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════ */
.svc-tabs-wrap { border-bottom: 1px solid var(--n10); margin-bottom: 52px; }
.svc-tabs { display: flex; gap: 4px; }
.svc-tab {
  padding: 12px 22px; border-radius: 8px 8px 0 0;
  font-size: 13px; font-weight: 600; color: var(--n40);
  border: none; background: transparent;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px; transition: all 0.2s;
}
.svc-tab:hover { color: var(--ink); }
.svc-tab.act { color: var(--forest); border-bottom-color: var(--forest); background: #f0f7f2; }

.svc-pane { display: none; }
.svc-pane.act { display: grid; grid-template-columns: 5fr 7fr; gap: 72px; align-items: start; }
.svc-pane-title { font-size: clamp(28px, 3vw, 42px); font-weight: 800; letter-spacing: -0.03em; color: var(--ink); line-height: 1.1; margin-bottom: 14px; }
.svc-pane-sub { font-size: 15px; font-weight: 300; color: var(--n40); line-height: 1.75; margin-bottom: 28px; }
.btn-solid-green {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--forest); color: var(--white);
  padding: 13px 24px; border-radius: 8px;
  font-size: 13px; font-weight: 600; border: none;
  transition: all 0.2s var(--ease);
}
.btn-solid-green:hover { background: #0a3318; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(11,61,28,0.2); }
.btn-solid-green svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2.5; }

.feature-list { background: var(--n05); border: 1px solid var(--n10); border-radius: 14px; overflow: hidden; }
.feature-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 22px; border-bottom: 1px solid var(--n10);
  font-size: 14px; font-weight: 400; color: var(--n60);
  transition: background 0.15s;
}
.feature-row:last-child { border-bottom: none; }
.feature-row:hover { background: var(--white); }
.f-badge {
  font-size: 10px; font-weight: 700;
  color: var(--green); background: var(--mint);
  border: 1px solid #bbf7d0; padding: 3px 9px; border-radius: 5px;
  letter-spacing: 0.5px; flex-shrink: 0; margin-left: 12px;
}

/* ═══════════════════════════════════════════════
   STATS
═══════════════════════════════════════════════ */
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-cell {
  padding: 52px 40px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.stat-cell:last-child { border-right: none; }
.stat-n {
  font-size: clamp(40px, 4.5vw, 60px); font-weight: 800;
  letter-spacing: -0.04em; line-height: 1;
  color: var(--white); margin-bottom: 12px;
}
.stat-n span { color: var(--green-l); }
.stat-desc { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.4); line-height: 1.55; }

/* ═══════════════════════════════════════════════
   WATER TREATMENT
═══════════════════════════════════════════════ */
.wt-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.wt-card {
  background: var(--white); border: 1px solid var(--n10);
  border-radius: 14px; padding: 28px 26px;
  position: relative; overflow: hidden;
  transition: all 0.28s var(--ease);
}
.wt-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--forest), var(--green));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.wt-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,0.09); border-color: #c4e8cc; }
.wt-card:hover::after { transform: scaleX(1); }
.wt-badge {
  display: inline-block; font-size: 11px; font-weight: 700;
  color: var(--green); background: var(--mint);
  border: 1px solid #bbf7d0; padding: 5px 11px; border-radius: 6px;
  letter-spacing: 1px; margin-bottom: 16px;
}
.wt-title { font-size: 16px; font-weight: 700; color: var(--ink); letter-spacing: -0.2px; margin-bottom: 9px; }
.wt-desc { font-size: 13px; font-weight: 300; color: var(--n40); line-height: 1.65; }

.wt-cta-bar {
  margin-top: 16px; background: var(--forest); border-radius: 12px;
  padding: 24px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.wt-cta-text { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.6); line-height: 1.65; max-width: 520px; }
.wt-cta-text strong { color: var(--white); font-weight: 500; }
.btn-outline-wh {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,255,255,0.25); color: var(--white);
  padding: 11px 22px; border-radius: 8px; font-size: 13px; font-weight: 500;
  white-space: nowrap; flex-shrink: 0; transition: all 0.2s;
}
.btn-outline-wh:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4); }
.btn-outline-wh svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2.5; }

/* ═══════════════════════════════════════════════
   INDUSTRIES
═══════════════════════════════════════════════ */
.ind-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.ind-card {
  padding: 26px 24px; border-radius: 14px;
  border: 1px solid var(--n10); background: var(--white);
  transition: all 0.22s var(--ease);
}
.ind-card:hover { border-color: #c4e8cc; box-shadow: 0 8px 28px rgba(0,0,0,0.06); transform: translateY(-3px); }
.ind-no { font-size: 10px; font-weight: 700; color: var(--green); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 10px; }
.ind-title { font-size: 15px; font-weight: 700; color: var(--ink); letter-spacing: -0.2px; margin-bottom: 6px; }
.ind-desc { font-size: 13px; font-weight: 300; color: var(--n40); line-height: 1.6; }

/* ═══════════════════════════════════════════════
   WHY CHOOSE US
═══════════════════════════════════════════════ */
.why-header { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 52px; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; border-radius: 16px; overflow: hidden; background: rgba(255,255,255,0.04); }
.why-card {
  padding: 48px 44px;
  background: rgba(255,255,255,0.03);
  transition: background 0.2s;
}
.why-card:hover { background: rgba(255,255,255,0.06); }
.why-n { font-size: 60px; font-weight: 800; color: rgba(255,255,255,0.05); letter-spacing: -0.04em; line-height: 1; margin-bottom: 20px; }
.why-title { font-size: 20px; font-weight: 700; color: var(--white); letter-spacing: -0.3px; margin-bottom: 12px; }
.why-body { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.45); line-height: 1.75; }

/* ═══════════════════════════════════════════════
   PROCESS
═══════════════════════════════════════════════ */
.process-header { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 48px; }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.ps {
  background: var(--n05); border: 1px solid var(--n10);
  border-radius: 14px; padding: 28px 24px;
  transition: all 0.22s var(--ease);
}
.ps:hover { background: var(--white); border-color: #c4e8cc; box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.ps-num { font-size: 52px; font-weight: 800; color: var(--n10); letter-spacing: -0.04em; line-height: 1; margin-bottom: 20px; }
.ps-ico { width: 40px; height: 40px; background: var(--mint); border-radius: 9px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.ps-ico svg { width: 20px; height: 20px; stroke: var(--forest); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.ps-step { font-size: 10px; font-weight: 700; color: var(--green); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 7px; }
.ps-title { font-size: 15px; font-weight: 700; color: var(--ink); letter-spacing: -0.2px; margin-bottom: 8px; }
.ps-body { font-size: 13px; font-weight: 300; color: var(--n40); line-height: 1.65; }

/* ═══════════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════════ */
.cta-sec {
  background: linear-gradient(135deg, #0b3d1c 0%, #073016 50%, #0b3d1c 100%);
  padding: 96px 0; position: relative; overflow: hidden;
}
.cta-orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.cta-o1 { width: 500px; height: 500px; top: -150px; right: -100px; background: radial-gradient(circle, rgba(22,163,74,0.2) 0%, transparent 70%); }
.cta-o2 { width: 350px; height: 350px; bottom: -100px; left: 0; background: radial-gradient(circle, rgba(22,163,74,0.1) 0%, transparent 70%); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 60px; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-h { font-size: clamp(28px, 3.5vw, 46px); font-weight: 800; letter-spacing: -0.035em; color: var(--white); line-height: 1.1; margin-bottom: 10px; }
.cta-p { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.5); max-width: 420px; line-height: 1.7; }
.btn-white {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--white); color: var(--forest);
  padding: 15px 30px; border-radius: 9px;
  font-size: 14px; font-weight: 700; flex-shrink: 0;
  transition: all 0.22s var(--ease);
}
.btn-white:hover { background: var(--mint); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.12); }
.btn-white svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; }

/* ═══════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════ */
.contact-split { display: grid; grid-template-columns: 5fr 7fr; }
.contact-left {
  background: linear-gradient(145deg, #0b3d1c 0%, #0d4a20 100%); padding: 80px 56px;
  position: relative; overflow: hidden;
}
.contact-left::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(22,163,74,0.05) 1px, transparent 1px);
  background-size: 28px 28px; pointer-events: none;
}
.cl-inner { position: relative; z-index: 1; }
.contact-left h2 { font-size: clamp(30px, 3vw, 44px); font-weight: 800; letter-spacing: -0.035em; color: var(--white); line-height: 1.1; margin-top: 14px; margin-bottom: 14px; }
.contact-left > .cl-inner > p { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.4); line-height: 1.7; margin-bottom: 36px; }
.ci { display: flex; align-items: flex-start; gap: 14px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.ci:first-of-type { border-top: 1px solid rgba(255,255,255,0.06); }
.ci-icon { width: 38px; height: 38px; border-radius: 9px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ci-icon svg { width: 16px; height: 16px; stroke: var(--green-l); fill: none; stroke-width: 2; stroke-linecap: round; }
.ci-lbl { font-size: 10px; font-weight: 700; color: var(--green-l); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 3px; }
.ci-val { font-size: 14px; font-weight: 500; color: var(--white); }
.ci-sub { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.3); margin-top: 1px; }
.wa-btn {
  display: inline-flex; align-items: center; gap: 9px;
  background: #22c55e; color: var(--white);
  padding: 12px 22px; border-radius: 9px;
  font-size: 13px; font-weight: 600; margin-top: 28px;
  transition: all 0.2s;
}
.wa-btn:hover { background: #16a34a; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(34,197,94,0.25); }
.wa-btn svg { width: 18px; height: 18px; fill: white; }

.contact-right { background: var(--white); padding: 80px 56px; }
.cf-title { font-size: 24px; font-weight: 800; letter-spacing: -0.03em; color: var(--ink); margin-bottom: 6px; }
.cf-sub { font-size: 13px; font-weight: 300; color: var(--n40); margin-bottom: 32px; }

.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.fg { margin-bottom: 14px; }
.fg label { display: block; font-size: 11px; font-weight: 600; color: var(--n40); letter-spacing: 0.8px; text-transform: uppercase; margin-bottom: 7px; }
.fg input, .fg select, .fg textarea {
  width: 100%; border: 1.5px solid var(--n10); border-radius: 9px;
  padding: 12px 15px; font-family: var(--font);
  font-size: 14px; font-weight: 300; color: var(--ink);
  background: var(--white); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none; -webkit-appearance: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--green); box-shadow: 0 0 0 3px rgba(22,163,74,0.12);
}
.fg input::placeholder, .fg textarea::placeholder { color: var(--n20); }
.fg textarea { min-height: 100px; resize: vertical; }
.f-row .fg { margin-bottom: 0; }
.btn-submit {
  width: 100%; background: var(--forest); color: var(--white); border: none;
  border-radius: 9px; padding: 14px; font-family: var(--font);
  font-size: 14px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: all 0.22s var(--ease); margin-top: 6px;
}
.btn-submit:hover { background: #0a3318; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(11,61,28,0.2); }
.btn-submit svg { width: 13px; height: 13px; stroke: white; fill: none; stroke-width: 2.5; }
.f-note { font-size: 11px; color: var(--n20); text-align: center; margin-top: 12px; line-height: 1.4; }

/* ═══════════════════════════════════════════════
   FOOTER  —  light
═══════════════════════════════════════════════ */
.footer {
  background: #f0f7f2;
  border-top: 1px solid #d4e8da;
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding: 64px 0 52px;
  border-bottom: 1px solid #d4e8da;
}
/* Brand col */
.ft-mark {
  width: 44px; height: 44px; border-radius: 11px;
  background: linear-gradient(145deg, #0f5028, #0b3d1c);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 3px 14px rgba(11,61,28,0.2), inset 0 1px 0 rgba(255,255,255,0.1);
}
.ft-mark svg { width: 22px; height: 22px; }
.ft-name {
  font-size: 15px; font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.4px; line-height: 1.25;
  margin-bottom: 3px;
}
.ft-sub {
  font-size: 11px; font-weight: 600;
  color: var(--green); letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 14px;
}
.ft-desc {
  font-size: 13px; font-weight: 300;
  color: var(--n60);
  line-height: 1.75; margin-bottom: 22px;
  max-width: 280px;
}
.ft-social { display: flex; gap: 7px; margin-bottom: 20px; }
.ft-soc {
  width: 34px; height: 34px; border-radius: 8px;
  border: 1px solid #c8dece;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.ft-soc:hover {
  background: var(--white);
  border-color: var(--green);
  box-shadow: 0 2px 8px rgba(22,163,74,0.15);
  transform: translateY(-2px);
}
.ft-soc svg { width: 14px; height: 14px; stroke: var(--n60); fill: none; stroke-width: 2; stroke-linecap: round; }
.ft-soc:hover svg { stroke: var(--green); }
.ft-soc.wa { border-color: #bbf7d0; }
.ft-soc.wa svg { stroke: #16a34a; }
.ft-soc.wa:hover { background: #f0fdf4; border-color: #4ade80; box-shadow: 0 2px 8px rgba(34,197,94,0.2); }
.ft-badges { display: flex; flex-wrap: wrap; gap: 6px; }
.ft-badge {
  font-size: 10px; font-weight: 600; letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid #c8dece;
  padding: 4px 10px; border-radius: 4px;
  background: var(--white);
}
/* Nav cols */
.fn-hd {
  font-size: 12px; font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.1px;
  margin-bottom: 16px;
}
.fn-col a {
  display: block; font-size: 13px; font-weight: 300;
  color: var(--n60);
  padding: 5px 0; line-height: 1.4;
  transition: color 0.15s;
}
.fn-col a:hover { color: var(--green); }
/* Bottom */
.footer-btm {
  padding: 18px 0;
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.footer-btm p { font-size: 12px; color: var(--n40); font-weight: 300; }
.footer-btm-links { display: flex; gap: 18px; }
.footer-btm-links a { font-size: 12px; color: var(--n40); transition: color 0.15s; }
.footer-btm-links a:hover { color: var(--green); }

/* ═══════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.show { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════
   LOGO IMAGE
═══════════════════════════════════════════════ */
.nav-logo-wrap {
  display: flex; align-items: center;
  background: rgba(255,255,255,0.95);
  border-radius: 10px; padding: 6px 14px 6px 10px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
}
.nav.solid .nav-logo-wrap {
  background: transparent; box-shadow: none; padding: 0;
}
.nav-logo-img { height: 38px; width: auto; display: block; }
.nav-brand-new {
  display: flex; align-items: center; gap: 0;
  flex-shrink: 0; text-decoration: none; margin-right: 40px;
}
/* Footer logo */
.ft-logo-img { height: 44px; width: auto; margin-bottom: 16px; }

/* ═══════════════════════════════════════════════
   REFINEMENTS — contrast & visibility fixes
═══════════════════════════════════════════════ */

/* Stats: accent numbers — sage is more legible than bright green on dark green */
.stat-n span { color: #a7f3c0; }
/* Stats: description text — was 0.4, too dim */
.stat-desc { color: rgba(255,255,255,0.62); }

/* Why: card backgrounds — was 0.03, nearly indistinguishable */
.why-card { background: rgba(255,255,255,0.055); }
.why-card:hover { background: rgba(255,255,255,0.09); }
/* Why: body text — was 0.45, hard to read */
.why-body { color: rgba(255,255,255,0.62); }
/* Why: large decorative numbers — was 0.05, invisible */
.why-n { color: rgba(255,255,255,0.1); }
/* Why: grid separator gap */
.why-grid { gap: 1px; }

/* Process: decorative numbers — was n10 on n05 bg, nearly invisible */
.ps-num { color: var(--n20); }

/* Contact: description paragraph opacity */
.contact-left > .cl-inner > p { color: rgba(255,255,255,0.58); }
/* Contact: sub-label under contact values */
.ci-sub { color: rgba(255,255,255,0.45); }

/* Hero: panel footer note */
.hero-panel-footer { color: rgba(255,255,255,0.52); }
/* Hero: bottom bar label text */
.hb-label { color: rgba(255,255,255,0.52); }

/* Form: border more defined */
.fg input, .fg select, .fg textarea { border-color: #cdd5cf; }

/* About: body copy — n40 borderline, n60 is more readable */
.about-left p { color: var(--n60); }

/* Services: tab active bg — white is cleaner than the green-tinted #f0f7f2 */
.svc-tab.act { background: var(--white); }

/* CTA: paragraph text */
.cta-p { color: rgba(255,255,255,0.62); }

/* Trust bar: text */
.trust-item { color: rgba(255,255,255,0.65); }
@media (max-width: 1100px) {
  .hero-body { grid-template-columns: 1fr; }
  .hero-panel { display: none; }
  .sec-2col, .svc-pane.act, .why-header, .process-header, .contact-split { grid-template-columns: 1fr; }
  .sec-3col, .wt-cards, .ind-cards { grid-template-columns: 1fr 1fr; }
  .stat-cell, .stats-row { }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-left { border-bottom: 1px solid rgba(255,255,255,0.06); }
}
@media (max-width: 768px) {
  .nav-wrap { padding: 0 20px; gap: 16px; }
  .nav-links, .nav-divider, .nav-phone { display: none; }
  .container { padding: 0 24px; }
  .hero-body { padding: 48px 24px; }
  .hero-bar { display: none; }
  .hb-item { padding: 20px 24px; }
  .section { padding: 72px 0; }
  .sec-3col, .wt-cards, .ind-cards, .process-grid, .stats-row, .footer-main { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .f-row { grid-template-columns: 1fr; }
  .contact-left, .contact-right { padding: 56px 28px; }
  .stat-cell { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .svc-tabs { overflow-x: auto; padding-bottom: 1px; }
}


/* ─── SERVICE PANEL ICONS ────────────────────────────── */
.svc-pane-icon-wrap { display:flex; align-items:center; gap:16px; margin-bottom:20px; }
.svc-big-icon {
  width:64px; height:64px; border-radius:16px;
  background:linear-gradient(135deg,var(--mint),rgba(220,252,231,0.6));
  border:1.5px solid #bbf7d0;
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
  box-shadow:0 4px 16px rgba(22,163,74,0.12);
}
.svc-big-icon svg { width:36px; height:36px; }
.svc-pane-label {
  font-size:11px; font-weight:700; color:var(--green);
  letter-spacing:1.5px; text-transform:uppercase;
}
.svc-tab { display:flex; align-items:center; gap:7px; }
.svc-tab svg { flex-shrink:0; opacity:0.7; }
.svc-tab.act svg { opacity:1; }

/* ─── WHY REDESIGN ────────────────────────────────────── */
.why-list { display:flex; flex-direction:column; gap:3px; }
.why-row {
  display:grid; grid-template-columns:52px 68px 1fr;
  gap:28px; padding:32px 36px;
  background:rgba(255,255,255,0.07);
  border:1px solid rgba(255,255,255,0.12);
  border-left:4px solid var(--green);
  border-radius:12px; align-items:center;
  transition:background 0.22s, transform 0.22s;
}
.why-row:hover { background:rgba(255,255,255,0.1); transform:translateX(4px); }
.why-row-num {
  font-size:36px; font-weight:800; line-height:1;
  color:rgba(255,255,255,0.08); letter-spacing:-2px;
  font-family:var(--font);
}
.why-row-icon {
  width:60px; height:60px;
  background:rgba(22,163,74,0.15);
  border:1px solid rgba(22,163,74,0.3);
  border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
  transition:background 0.2s;
}
.why-row:hover .why-row-icon { background:rgba(22,163,74,0.25); }
.why-row-icon svg { width:28px; height:28px; }
.why-row-content {}
.why-row-title {
  font-size:19px; font-weight:700; color:var(--white);
  letter-spacing:-0.3px; margin-bottom:8px;
}
.why-row-body {
  font-size:14px; font-weight:300;
  color:rgba(255,255,255,0.62); line-height:1.72;
}

/* ─── PROCESS STAGGERED ───────────────────────────────── */
#processGrid .ps {
  opacity:0; transform:translateY(20px);
  transition:opacity 0.5s ease, transform 0.5s ease;
}
#processGrid.animated .ps { opacity:1; transform:translateY(0); }
#processGrid.animated .ps:nth-child(1){transition-delay:0s}
#processGrid.animated .ps:nth-child(2){transition-delay:0.15s}
#processGrid.animated .ps:nth-child(3){transition-delay:0.3s}
#processGrid.animated .ps:nth-child(4){transition-delay:0.45s}
.ps-connector {
  display:none; /* hidden, use via JS */
}

/* ─── INDUSTRY ICON ────────────────────────────────────── */
.ind-icon {
  width:48px; height:48px;
  background:linear-gradient(135deg,var(--mint),rgba(220,252,231,0.5));
  border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  margin-bottom:14px;
  border:1px solid #bbf7d0;
  transition:background 0.2s, transform 0.2s;
}
.ind-card:hover .ind-icon { background:var(--green-l); transform:scale(1.06); }
.ind-icon svg { width:22px; height:22px; }

/* ─── CTA SECTION improvement ─────────────────────────── */
.cta-icon-wrap {
  width:56px; height:56px; border-radius:14px;
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.2);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:20px;
}
.cta-icon-wrap svg { width:28px; height:28px; stroke:white; fill:none; stroke-width:1.8; stroke-linecap:round; }

/* ─── RESPONSIVE FIXES ────────────────────────────────── */
@media (max-width:1100px) {
  .why-row { grid-template-columns:40px 56px 1fr; gap:18px; padding:26px 24px; }
  .hero-body { grid-template-columns:1fr; }
  .hero-panel { display:none; }
  .svc-pane.act { grid-template-columns:1fr; gap:40px; }
  .sec-2col,.why-header,.process-header,.contact-split { grid-template-columns:1fr; }
  .sec-3col,.wt-cards,.ind-cards { grid-template-columns:1fr 1fr; }
  .footer-main { grid-template-columns:1fr 1fr; gap:32px; }
  .contact-left { border-bottom:none; }
  .svc-pane-icon-wrap { flex-direction:column; align-items:flex-start; }
}
@media (max-width:768px) {
  .nav-wrap { padding:0 18px; gap:12px; }
  .nav-links,.nav-divider,.nav-phone { display:none; }
  .container { padding:0 20px; }
  .hero-body { padding:52px 20px 40px; }
  .hero-bar { display:none; }
  .hero-h1 { font-size:clamp(44px,12vw,72px); }
  .section { padding:72px 0; }
  .section-sm { padding:52px 0; }
  .sec-3col,.wt-cards,.ind-cards,.process-grid,.footer-main { grid-template-columns:1fr; }
  .stats-row { grid-template-columns:1fr 1fr; }
  .stat-cell { border-right:none; border-bottom:1px solid rgba(255,255,255,0.07); }
  .stat-cell:last-child { border-bottom:none; }
  .why-grid,.why-list { gap:3px; }
  .why-row { grid-template-columns:1fr; gap:14px; padding:24px 20px; }
  .why-row-num { font-size:24px; }
  .f-row { grid-template-columns:1fr; }
  .contact-left,.contact-right { padding:48px 24px; }
  .contact-split { grid-template-columns:1fr; }
  .cta-inner { flex-direction:column; align-items:flex-start; }
  .svc-tabs { overflow-x:auto; padding-bottom:2px; }
  .svc-tab { font-size:12px; padding:10px 14px; }
  .process-grid { grid-template-columns:1fr 1fr; gap:12px; }
  .footer-btm { flex-direction:column; gap:8px; align-items:flex-start; }
  .hero-btns { flex-direction:column; align-items:flex-start; gap:10px; }
  .hb-item { padding:18px 20px; }
  .sec-2col { gap:40px; }
  .svc-pane.act { gap:28px; }
  .why-header { gap:28px; }
  .svc-big-icon { width:52px; height:52px; }
  .svc-big-icon svg { width:28px; height:28px; }
  .ft-logo-img { height:36px; }
}
@media (max-width:480px) {
  .stats-row { grid-template-columns:1fr; }
  .process-grid { grid-template-columns:1fr; }
  .hero-h1 { font-size:clamp(38px,11vw,56px); }
}

/* ═══════════════════════════════════════════════
   VISUAL ENHANCEMENTS
═══════════════════════════════════════════════ */

/* Hero illustration */
.hero-illustration {
  position: relative; z-index: 1;
  width: 100%; height: 480px;
}
.hero-panel {
  display: flex; align-items: center; justify-content: center;
  position: relative; padding: 20px 32px 20px 20px;
}

/* SVG animations */
@keyframes badge-float {
  0%,100%{transform:translateY(0px)}
  50%{transform:translateY(-10px)}
}
@keyframes steam-rise {
  0%{opacity:0.7;transform:translateY(0) scale(1)}
  100%{opacity:0;transform:translateY(-28px) scale(1.6)}
}
@keyframes particle-drift {
  0%{transform:translate(0,0); opacity:0.6}
  33%{transform:translate(8px,-12px); opacity:1}
  66%{transform:translate(-6px,-8px); opacity:0.5}
  100%{transform:translate(0,0); opacity:0.6}
}
@keyframes pipe-flow {
  0%{stroke-dashoffset:24}
  100%{stroke-dashoffset:0}
}
@keyframes wave-move {
  0%{transform:translateX(0)}
  100%{transform:translateX(-40px)}
}
@keyframes pulse-ring {
  0%{transform:scale(1);opacity:0.8}
  100%{transform:scale(2.2);opacity:0}
}
@keyframes counter-glow {
  0%,100%{text-shadow:0 0 0 rgba(167,243,192,0)}
  50%{text-shadow:0 0 24px rgba(167,243,192,0.3)}
}
@keyframes process-flow {
  0%{stroke-dashoffset:100}
  100%{stroke-dashoffset:0}
}
@keyframes icon-draw {
  from{stroke-dashoffset:200}
  to{stroke-dashoffset:0}
}
@keyframes spin-slow {
  from{transform:rotate(0deg)}
  to{transform:rotate(360deg)}
}
@keyframes droplet {
  0%{transform:translateY(0);opacity:1}
  80%{opacity:1}
  100%{transform:translateY(18px);opacity:0}
}
@keyframes membrane-pulse {
  0%,100%{opacity:0.4}
  50%{opacity:1}
}

/* Industry icons inside cards */
.ind-icon {
  width: 44px; height: 44px;
  background: var(--mint); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  transition: background 0.2s, transform 0.2s;
}
.ind-card:hover .ind-icon { background: var(--green-l); transform: scale(1.05); }
.ind-icon svg { width: 22px; height: 22px; stroke: var(--forest); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* Water treatment animated icons */
.wt-icon {
  width: 48px; height: 48px; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--mint), rgba(220,252,231,0.4));
  border-radius: 12px;
  transition: transform 0.3s;
}
.wt-card:hover .wt-icon { transform: scale(1.08); }
.wt-icon svg { width: 26px; height: 26px; overflow: visible; }

/* Process connecting line */
.process-flow-svg {
  position: absolute; top: 22px; left: 12%; right: 12%;
  height: 2px; pointer-events: none;
}

/* Scroll animations extended */
.reveal-left { opacity:0; transform:translateX(-28px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.reveal-right { opacity:0; transform:translateX(28px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.reveal-scale { opacity:0; transform:scale(0.92); transition: opacity .55s var(--ease), transform .55s var(--ease); }
.reveal-left.show,.reveal-right.show,.reveal-scale.show { opacity:1; transform:none; }

/* Stats counter animation */
.stat-n { transition: color 0.3s; }
.stat-n.counting { animation: counter-glow 1.5s ease-in-out; }

/* Process grid position relative for line overlay */
.process-wrap { position: relative; }

/* ─── HAMBURGER & MOBILE MENU ─────────────────────── */
.nav-hamburger {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 8px; border-radius: 8px;
  transition: background 0.2s;
  flex-shrink: 0;
}
.nav-hamburger:hover { background: rgba(255,255,255,0.1); }
.nav.solid .nav-hamburger:hover { background: var(--n05); }
.nav-hamburger svg { width: 22px; height: 22px; stroke: white; fill: none; stroke-width: 2; stroke-linecap: round; transition: stroke 0.3s; }
.nav.solid .nav-hamburger svg { stroke: var(--ink); }
.ham-line { transition: transform 0.3s, opacity 0.3s; transform-origin: center; }
.nav-hamburger.open .ham-top { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.open .ham-mid { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open .ham-bot { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  position: fixed; top: 79px; left: 0; right: 0; z-index: 997;
  background: rgba(6,14,8,0.98);
  border-top: 1px solid rgba(255,255,255,0.07);
  transform: translateY(-110%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.38s cubic-bezier(0.22,1,0.36,1), visibility 0s 0.38s;
  padding: 28px 24px 40px;
  display: flex; flex-direction: column; gap: 4px;
}
.mobile-menu.open {
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  transition: transform 0.38s cubic-bezier(0.22,1,0.36,1), visibility 0s;
}
.mob-link {
  display: block; padding: 14px 16px; border-radius: 10px;
  font-size: 16px; font-weight: 600; color: rgba(255,255,255,0.8);
  text-decoration: none; transition: all 0.2s;
  border: 1px solid transparent;
}
.mob-link:hover { background: rgba(255,255,255,0.06); color: white; border-color: rgba(255,255,255,0.1); }
.mob-divider { height: 1px; background: rgba(255,255,255,0.07); margin: 10px 0; }
.mob-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px; border-radius: 10px; margin-top: 8px;
  background: linear-gradient(140deg,#0f5028,#16a34a);
  color: white; font-size: 15px; font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(22,163,74,0.3);
}
.mob-contact-row {
  display: flex; align-items: center; gap: 12px;
  margin-top: 16px; padding: 14px 16px;
  background: rgba(255,255,255,0.04); border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
}
.mob-contact-row svg { width: 18px; height: 18px; stroke: var(--green-l); fill: none; stroke-width: 2; stroke-linecap: round; flex-shrink: 0; }
.mob-contact-row a { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.8); text-decoration: none; }

/* ─── MOBILE STATS BAR ─────────────────────────────── */
.hero-stats-mobile {
  display: none;
  position: relative; z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stats-mobile-inner {
  display: grid; grid-template-columns: repeat(3,1fr);
}
.hsm-item {
  padding: 18px 16px;
  border-right: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.02);
}
.hsm-item:last-child { border-right: none; }
.hsm-val { font-size: 20px; font-weight: 800; color: white; letter-spacing: -0.04em; line-height: 1; }
.hsm-val em { font-style: normal; color: var(--green-l); }
.hsm-label { font-size: 10px; font-weight: 300; color: rgba(255,255,255,0.42); margin-top: 5px; line-height: 1.35; }

/* ─── SVG ANIMATION FIX — transform-box required for SVG rotations ── */
/* Without transform-box:fill-box, transform-origin won't anchor to element center */
.hero-illustration * { transform-box: fill-box; }
.wt-icon svg * { transform-box: fill-box; }
/* Fix: pipe-flow on SVG line needs stroke-dashoffset, not dasharray direction */
@keyframes pipe-flow-correct {
  0%   { stroke-dashoffset: 24; }
  100% { stroke-dashoffset: 0; }
}

/* ─── FOOTER — dark, proper ──────────────────────────── */
.footer {
  background: #060d07;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.9fr 1fr 1fr 1fr;
  gap: 52px;
  padding: 64px 0 52px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  align-items: start;
}
/* Brand column */
.ft-logo-wrap {
  display: inline-flex;
  background: rgba(255,255,255,0.95);
  border-radius: 10px; padding: 6px 14px 6px 10px;
  margin-bottom: 18px;
}
.ft-logo-img { height: 38px; width: auto; display: block; }
.ft-name {
  font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.88);
  letter-spacing: -0.3px; margin-bottom: 3px;
}
.ft-sub {
  font-size: 10px; font-weight: 600; color: var(--green-l);
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px;
}
.ft-desc {
  font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.45);
  line-height: 1.75; margin-bottom: 22px; max-width: 270px;
}
.ft-social { display: flex; gap: 7px; margin-bottom: 20px; }
.ft-soc {
  width: 34px; height: 34px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.ft-soc:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.25); transform: translateY(-2px); }
.ft-soc svg { width: 14px; height: 14px; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ft-soc.wa { border-color: rgba(34,197,94,0.2); }
.ft-soc.wa:hover { background: rgba(34,197,94,0.1); border-color: rgba(34,197,94,0.35); }
.ft-badges { display: flex; flex-wrap: wrap; gap: 6px; }
.ft-badge {
  font-size: 10px; font-weight: 600; letter-spacing: 0.6px; text-transform: uppercase;
  color: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.12);
  padding: 4px 10px; border-radius: 4px; background: rgba(255,255,255,0.04);
}
/* Nav columns */
.fn-hd {
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.9);
  margin-bottom: 16px; letter-spacing: 0.1px;
}
.fn-col a {
  display: block; font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,0.45); padding: 5px 0;
  transition: color 0.15s; text-decoration: none; line-height: 1.4;
}
.fn-col a:hover { color: rgba(255,255,255,0.88); }
/* Bottom bar */
.footer-btm {
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-btm p { font-size: 12px; color: rgba(255,255,255,0.28); font-weight: 300; }
.footer-btm-links { display: flex; gap: 18px; }
.footer-btm-links a { font-size: 12px; color: rgba(255,255,255,0.28); transition: color 0.15s; text-decoration: none; }
.footer-btm-links a:hover { color: rgba(255,255,255,0.65); }

/* ─── CTA + CONTACT differentiation ──────────────────── */
/* CTA: bright green so it clearly differs from dark contact */
.cta-sec {
  background: linear-gradient(135deg, #0e7a35 0%, #16a34a 50%, #1db954 100%);
  padding: 96px 0; position: relative; overflow: hidden;
}
/* Contact left: near-black (clearly darker than the bright green CTA above) */
.contact-left {
  background: #0a1a0d;
  padding: 80px 56px; position: relative; overflow: hidden;
}
.contact-left::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(22,163,74,0.05) 1px, transparent 1px);
  background-size: 28px 28px; pointer-events: none;
}

/* ─── RESPONSIVE OVERHAUL ─────────────────────────────── */
@media (max-width: 1100px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero-body { grid-template-columns: 1fr; }
  .hero-panel { display: none !important; }
  .sec-2col,.svc-pane.act,.why-header,.process-header { grid-template-columns: 1fr; gap: 36px; }
  .contact-split { grid-template-columns: 1fr; }
  .sec-3col,.wt-cards,.ind-cards { grid-template-columns: 1fr 1fr; }
  .why-row { grid-template-columns: 40px 56px 1fr; gap: 16px; padding: 24px 22px; }
  .svc-pane-icon-wrap { flex-direction: row; align-items: center; }
}

@media (max-width: 768px) {
  /* NAV */
  .nav-wrap { padding: 0 18px; gap: 12px; }
  .nav-links,.nav-divider,.nav-phone { display: none !important; }
  .nav-hamburger { display: flex !important; }
  .nav-right { gap: 6px; margin-left: 8px; }
  .nav-cta { padding: 9px 14px; font-size: 12px; }

  /* HERO */
  .container { padding: 0 20px; }
  .hero-body { padding: 44px 20px 32px; min-height: auto; }
  .hero-h1 { font-size: clamp(38px,11vw,64px); margin-bottom: 18px; }
  .hero-label { margin-bottom: 18px; }
  .hero-p { font-size: 15px; margin-bottom: 28px; max-width: 100%; }
  .hero-btns { flex-direction: column; align-items: flex-start; gap: 10px; }
  .btn-green,.btn-ghost { width: 100%; justify-content: center; }
  .hero-bar { display: none !important; }
  .hero-stats-mobile { display: block !important; }

  /* SECTIONS */
  .section { padding: 64px 0; }
  .section-sm { padding: 48px 0; }
  .sec-2col,.sec-3col,.wt-cards,.ind-cards { gap: 14px; }
  .sec-3col,.wt-cards,.ind-cards { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-cell { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); padding: 32px 24px; }
  .stat-cell:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.07); }
  .stat-cell:last-child,.stat-cell:nth-last-child(2):nth-child(odd) { border-bottom: none; }

  /* WHY */
  .why-header { grid-template-columns: 1fr; gap: 20px; }
  .why-row { grid-template-columns: 1fr; gap: 12px; padding: 22px 18px; }
  .why-row-num { font-size: 22px; }
  .why-row-icon { width: 52px; height: 52px; }
  .why-row-icon svg { width: 24px; height: 24px; }
  .why-row-title { font-size: 17px; }

  /* PROCESS */
  .process-header { gap: 20px; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

  /* CTA */
  .cta-sec { padding: 72px 0; }
  .cta-inner { flex-direction: column; align-items: flex-start; gap: 28px; }
  .cta-h { font-size: clamp(24px,7vw,36px); }
  .cta-p { font-size: 14px; }

  /* CONTACT */
  .contact-split { grid-template-columns: 1fr; }
  .contact-left,.contact-right { padding: 48px 24px; }
  .f-row { grid-template-columns: 1fr; }
  .cf-title { font-size: 20px; }

  /* SERVICES */
  .svc-tabs { overflow-x: auto; padding-bottom: 2px; -webkit-overflow-scrolling: touch; }
  .svc-tab { font-size: 12px; padding: 10px 14px; white-space: nowrap; }
  .svc-pane.act { gap: 28px; }
  .svc-big-icon { width: 52px; height: 52px; }
  .svc-big-icon svg { width: 28px; height: 28px; }
  .svc-pane-icon-wrap { flex-direction: column; align-items: flex-start; gap: 12px; }
  .svc-pane-title { font-size: clamp(22px,6vw,34px); }

  /* FOOTER */
  .footer-main { grid-template-columns: 1fr; gap: 36px; padding: 48px 0 36px; }
  .footer-btm { flex-direction: column; gap: 8px; align-items: flex-start; }
  .footer-btm-links { gap: 14px; }
  .ft-desc { max-width: 100%; }
  .fn-hd { margin-top: 8px; }

  /* GENERAL */
  .h2 { font-size: clamp(26px,7vw,38px); }
  .sec-2col { gap: 32px; }
}

@media (max-width: 480px) {
  .stats-row,.process-grid { grid-template-columns: 1fr; }
  .stat-cell { border-right: none !important; }
  .hsm-val { font-size: 17px; }
  .hero-h1 { font-size: clamp(34px,10vw,52px); }
  .nav-cta { display: none; }
}


/* ─── FOOTER FORCE OVERRIDE ─────────────────────────── */
footer.footer,
.footer {
  background: #060d07 !important;
  border-top: 1px solid rgba(255,255,255,0.07) !important;
}
.footer-main {
  display: grid !important;
  grid-template-columns: 1.9fr 1fr 1fr 1fr !important;
  gap: 52px !important;
  padding: 64px 48px 52px !important;
  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
  max-width: 1280px !important;
  margin: 0 auto !important;
  background: transparent !important;
}
.footer > .container { padding: 0 !important; }
.fn-hd {
  font-size: 11px !important; font-weight: 700 !important;
  color: rgba(255,255,255,0.85) !important;
  margin-bottom: 16px !important;
  text-transform: none !important; letter-spacing: 0.1px !important;
}
.fn-col a {
  display: block !important; font-size: 13px !important;
  font-weight: 300 !important;
  color: rgba(255,255,255,0.48) !important;
  padding: 5px 0 !important;
  transition: color 0.15s !important;
  text-decoration: none !important;
}
.fn-col a:hover { color: rgba(255,255,255,0.88) !important; }
.ft-name { color: rgba(255,255,255,0.9) !important; font-size: 14px !important; font-weight: 700 !important; margin-bottom: 3px; }
.ft-sub  { color: #4ade80 !important; font-size: 10px !important; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px; }
.ft-desc { color: rgba(255,255,255,0.42) !important; font-size: 13px !important; line-height: 1.75; margin-bottom: 20px; max-width: 270px; }
.ft-badge {
  color: rgba(255,255,255,0.5) !important;
  border-color: rgba(255,255,255,0.12) !important;
  background: rgba(255,255,255,0.04) !important;
}
.ft-soc { background: rgba(255,255,255,0.05) !important; border-color: rgba(255,255,255,0.12) !important; }
.ft-soc:hover { background: rgba(255,255,255,0.1) !important; border-color: rgba(255,255,255,0.25) !important; }
.ft-soc svg { stroke: rgba(255,255,255,0.65) !important; }
.ft-soc.wa svg { stroke: #4ade80 !important; }
.footer-btm { padding: 20px 48px !important; max-width: 1280px; margin: 0 auto; }
.footer-btm p { color: rgba(255,255,255,0.28) !important; font-size: 12px !important; }
.footer-btm-links a { color: rgba(255,255,255,0.28) !important; }
.footer-btm-links a:hover { color: rgba(255,255,255,0.65) !important; }

/* Logo pill — only around the img */
.ft-logo-wrap {
  display: inline-flex !important;
  background: rgba(255,255,255,0.94) !important;
  border-radius: 10px !important;
  padding: 6px 12px 6px 8px !important;
  margin-bottom: 16px !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2) !important;
}
.ft-logo-img { height: 36px !important; width: auto !important; display: block !important; }

/* Footer responsive */
@media (max-width: 1100px) {
  .footer-main { grid-template-columns: 1fr 1fr !important; gap: 36px !important; padding: 48px 32px 36px !important; }
  .footer-btm { padding: 18px 32px !important; }
}
@media (max-width: 768px) {
  .footer-main { grid-template-columns: 1fr !important; gap: 32px !important; padding: 44px 20px 32px !important; }
  .footer-btm { padding: 16px 20px !important; flex-direction: column; gap: 8px; align-items: flex-start; }
  .ft-desc { max-width: 100% !important; }
}

/* ─── MOBILE OVERFLOW / HERO CUT FIX ─────────────────── */
html, body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
}
.hero {
  overflow: hidden !important;
  max-width: 100vw !important;
}
.hero-body {
  overflow: hidden !important;
  box-sizing: border-box !important;
}
@media (max-width: 768px) {
  .hero-body {
    grid-template-columns: 1fr !important;
    padding: 52px 20px 36px !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .hero-panel { display: none !important; }
  .hero-h1 {
    font-size: clamp(36px, 10vw, 58px) !important;
    line-height: 1.05 !important;
    letter-spacing: -0.02em !important;
    word-break: break-word !important;
  }
  .hero-p { font-size: 15px !important; max-width: 100% !important; }
  .hero > * { max-width: 100vw !important; }
}

/* ─── WHY SECTION — premium 2×2 ──────────────────────── */
.why-grid-premium {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.why-pcard {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 36px 32px 32px;
  position: relative; overflow: hidden;
  transition: all 0.28s var(--ease);
}
.why-pcard::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--green), rgba(34,197,94,0));
  opacity: 0; transition: opacity 0.28s;
}
.why-pcard:hover { background: rgba(255,255,255,0.09); border-color: rgba(22,163,74,0.3); transform: translateY(-4px); }
.why-pcard:hover::after { opacity: 1; }
.why-pcard-num {
  position: absolute; right: 20px; top: 16px;
  font-size: 56px; font-weight: 900;
  color: rgba(255,255,255,0.04);
  letter-spacing: -4px; line-height: 1;
  font-family: var(--font);
}
.why-pcard-icon {
  width: 54px; height: 54px; border-radius: 14px;
  background: rgba(22,163,74,0.14);
  border: 1px solid rgba(22,163,74,0.28);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: background 0.2s;
}
.why-pcard:hover .why-pcard-icon { background: rgba(22,163,74,0.22); }
.why-pcard-icon svg { width: 26px; height: 26px; stroke: #a7f3c0; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.why-pcard-title { font-size: 20px; font-weight: 700; color: var(--white); letter-spacing: -0.3px; margin-bottom: 10px; }
.why-pcard-body { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.6); line-height: 1.72; }
@media (max-width: 768px) {
  .why-grid-premium { grid-template-columns: 1fr; gap: 12px; }
  .why-pcard { padding: 28px 24px; }
  .why-pcard-title { font-size: 18px; }
}


/* Remove old why-grid/why-row interference */
.why-grid { display: none !important; }
.why-list { display: none !important; }

/* Mobile stats — make sure all 3 show properly */
@media (max-width: 480px) {
  .hero-stats-mobile-inner { grid-template-columns: 1fr 1fr !important; }
  .hsm-item:last-child { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,0.07); border-right: none !important; }
  .hsm-val { font-size: 18px !important; }
  .hsm-label { font-size: 9px !important; }
}
@media (max-width: 360px) {
  .hero-stats-mobile-inner { grid-template-columns: 1fr !important; }
  .hsm-item:last-child { grid-column: auto !important; }
}

/* ═══════════════ FOOTER v2 — clean rebuild, dark hero green ═══════════════ */
.footer2 {
  background: linear-gradient(180deg, #0b3d1c 0%, #072812 100%);
  border-top: 1px solid rgba(255,255,255,0.08);
  font-family: var(--font);
}
.f2-main {
  max-width: 1280px; margin: 0 auto;
  padding: 64px 48px 52px;
  display: grid;
  grid-template-columns: 1.9fr 1fr 1fr 1fr;
  gap: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.f2-logo {
  display: inline-flex;
  background: rgba(255,255,255,0.96);
  border-radius: 10px; padding: 7px 14px 7px 10px;
  margin-bottom: 18px;
}
.f2-logo img { height: 38px; width: auto; display: block; }
.f2-desc {
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.75; margin: 0 0 20px; max-width: 280px;
}
.f2-social { display: flex; gap: 8px; margin-bottom: 20px; }
.f2-social a {
  width: 36px; height: 36px; border-radius: 9px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; text-decoration: none;
}
.f2-social a:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.32); transform: translateY(-2px); }
.f2-social svg { width: 15px; height: 15px; stroke: rgba(255,255,255,0.75); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.f2-social a.f2-wa { border-color: rgba(74,222,128,0.3); }
.f2-social a.f2-wa svg { stroke: #4ade80; }
.f2-social a.f2-wa:hover { background: rgba(74,222,128,0.12); border-color: rgba(74,222,128,0.5); }
.f2-badges { display: flex; flex-wrap: wrap; gap: 6px; }
.f2-badges span {
  font-size: 10px; font-weight: 600; letter-spacing: 0.6px; text-transform: uppercase;
  color: #a7f3c0; border: 1px solid rgba(167,243,192,0.25);
  padding: 4px 10px; border-radius: 4px; background: rgba(167,243,192,0.06);
}
.f2-hd {
  font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,0.95);
  margin-bottom: 16px;
}
.f2-col a {
  display: block; font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,0.68);
  padding: 5px 0; text-decoration: none;
  transition: color 0.15s, padding-left 0.15s;
}
.f2-col a:hover { color: #a7f3c0; padding-left: 4px; }
.f2-btm {
  max-width: 1280px; margin: 0 auto;
  padding: 20px 48px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}
.f2-btm p { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.5); margin: 0; }
.f2-btm-links { display: flex; gap: 18px; }
.f2-btm-links a { font-size: 12px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.15s; }
.f2-btm-links a:hover { color: #a7f3c0; }
@media (max-width: 1100px) {
  .f2-main { grid-template-columns: 1fr 1fr; gap: 36px; padding: 48px 32px 36px; }
  .f2-btm { padding: 18px 32px; }
}
@media (max-width: 768px) {
  .f2-main { grid-template-columns: 1fr; gap: 32px; padding: 44px 20px 32px; }
  .f2-btm { padding: 16px 20px; flex-direction: column; align-items: flex-start; gap: 8px; }
  .f2-desc { max-width: 100%; }
}

/* ═══════════════ CONTACT SECTION — polish ═══════════════ */
.contact-split {
  display: grid !important;
  grid-template-columns: 5fr 7fr !important;
  max-width: 100%; overflow: hidden;
}
.contact-left {
  background: #0a1a0d !important;
  padding: 88px 64px !important;
  box-sizing: border-box !important;
  min-width: 0 !important;
}
.cl-inner { max-width: 440px; margin-left: auto; }
.contact-right {
  padding: 88px 64px !important;
  box-sizing: border-box !important;
  min-width: 0 !important;
}
.contact-right > * { max-width: 620px; }
.contact-left h2 { margin-top: 12px !important; margin-bottom: 16px !important; }
.contact-left > .cl-inner > p { color: rgba(255,255,255,0.6) !important; margin-bottom: 32px !important; }
.ci-val { color: rgba(255,255,255,0.95) !important; }
.ci-sub { color: rgba(255,255,255,0.42) !important; }
@media (max-width: 1100px) {
  .contact-split { grid-template-columns: 1fr !important; }
  .cl-inner { max-width: 100%; margin-left: 0; }
  .contact-left, .contact-right { padding: 56px 32px !important; }
}
@media (max-width: 768px) {
  .contact-left, .contact-right { padding: 48px 20px !important; }
}


/* ─── Hero illustration on mobile: show compact ─── */
@media (max-width: 1100px) {
  .hero-panel {
    display: flex !important;
    padding: 0 !important;
    margin-top: 8px;
  }
  .hero-illustration { height: 340px; max-width: 480px; margin: 0 auto; }
}
@media (max-width: 768px) {
  .hero-illustration { height: 300px; }
}

/* ─── CTA redesign ─── */
.cta-sec { padding: 88px 0 !important; }
.cta-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 56px 60px;
  display: grid; grid-template-columns: 1.6fr 1fr;
  gap: 52px; align-items: center;
  position: relative; z-index: 1;
}
.cta-chip {
  display: inline-block;
  font-size: 10px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase;
  color: #052e12; background: rgba(255,255,255,0.9);
  padding: 5px 12px; border-radius: 5px; margin-bottom: 18px;
}
.cta-h { margin-bottom: 12px !important; }
.cta-p { margin-bottom: 24px !important; max-width: 480px !important; }
.cta-points { display: flex; flex-direction: column; gap: 9px; }
.cta-point {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; font-weight: 400; color: rgba(255,255,255,0.85);
}
.cta-point svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; background: rgba(255,255,255,0.15); border-radius: 50%; padding: 3px; }
.cta-right { display: flex; flex-direction: column; gap: 12px; align-items: stretch; }
.cta-right .btn-white { justify-content: center; }
.cta-wa {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  border: 1.5px solid rgba(255,255,255,0.45); color: #fff;
  padding: 14px 26px; border-radius: 9px;
  font-size: 14px; font-weight: 600; text-decoration: none;
  transition: all 0.2s;
}
.cta-wa:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.7); }
.cta-wa svg { width: 17px; height: 17px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
@media (max-width: 900px) {
  .cta-card { grid-template-columns: 1fr; gap: 32px; padding: 40px 28px; }
  .cta-right { max-width: 380px; }
}


/* ═══════ CONTACT — premium polish ═══════ */
#contact { background: var(--n05); padding: 96px 0; }
.contact-shell {
  max-width: 1280px; margin: 0 auto; padding: 0 48px;
}
.contact-head { text-align: center; max-width: 560px; margin: 0 auto 48px; }
.contact-head .chip { justify-content: center; }
.contact-head .chip::before { display: none; }
.contact-head h2 {
  font-size: clamp(30px, 3.4vw, 46px); font-weight: 800;
  letter-spacing: -0.035em; color: var(--ink); line-height: 1.1;
  margin: 12px 0 12px;
}
.contact-head p { font-size: 15px; font-weight: 300; color: var(--n40); line-height: 1.7; }
.contact-split {
  border-radius: 22px !important;
  overflow: hidden !important;
  box-shadow: 0 24px 80px rgba(4,20,9,0.14);
}
.contact-left {
  background: linear-gradient(160deg, #0b3d1c 0%, #072a13 100%) !important;
  padding: 64px 52px !important;
}
.cl-inner { max-width: 100% !important; margin: 0 !important; }
.contact-left .chip { display: none; }
.contact-left h2 {
  font-size: 28px !important; margin-top: 0 !important;
}
.contact-left > .cl-inner > p { color: rgba(255,255,255,0.68) !important; font-size: 14px !important; }
.ci { border-color: rgba(255,255,255,0.1) !important; }
.ci-icon { background: rgba(255,255,255,0.09) !important; border-color: rgba(255,255,255,0.14) !important; }
.ci-lbl { color: #a7f3c0 !important; }
.contact-right { padding: 64px 52px !important; background: var(--white) !important; }
.contact-right > * { max-width: 100% !important; }
.cf-title { font-size: 22px !important; }
.btn-submit { border-radius: 10px !important; }
@media (max-width: 1100px) {
  .contact-shell { padding: 0 32px; }
  .contact-left, .contact-right { padding: 48px 32px !important; }
}
@media (max-width: 768px) {
  #contact { padding: 64px 0; }
  .contact-shell { padding: 0 16px; }
  .contact-left, .contact-right { padding: 40px 22px !important; }
  .contact-split { border-radius: 16px !important; }
}

/* ═══════ FOOTER — final polish to pair with contact ═══════ */
.footer2 { margin-top: 0; }
.f2-logo { box-shadow: 0 2px 12px rgba(0,0,0,0.25); }
.f2-hd {
  position: relative; padding-bottom: 10px; margin-bottom: 14px;
}
.f2-hd::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 22px; height: 2px; border-radius: 2px; background: #4ade80;
}


/* ═══ WP THEME CONFLICT FIXES ═══ */
/* 1. Kill theme's blue button hover on service tabs */
button.svc-tab,
.svc-tab {
  -webkit-appearance: none !important;
  appearance: none !important;
  background: transparent !important;
  color: var(--n40) !important;
  border: none !important;
  border-bottom: 2px solid transparent !important;
  outline: none !important;
  box-shadow: none !important;
  text-decoration: none !important;
}
button.svc-tab:hover, .svc-tab:hover,
button.svc-tab:focus, .svc-tab:focus,
button.svc-tab:active, .svc-tab:active {
  background: #ecf3ee !important;
  color: var(--ink) !important;
  border: none !important;
  border-bottom: 2px solid transparent !important;
  outline: none !important;
  box-shadow: none !important;
}
button.svc-tab.act, .svc-tab.act,
button.svc-tab.act:hover, .svc-tab.act:hover,
button.svc-tab.act:focus, .svc-tab.act:focus {
  background: var(--white) !important;
  color: var(--forest) !important;
  border-bottom: 2px solid var(--forest) !important;
}

/* 2. Fix clipped descenders (y, g, p) in gradient hero heading */
.hero-h1 {
  line-height: 1.08 !important;
  padding-bottom: 0.1em !important;
}


/* ═══ NUCLEAR OVERRIDE — max specificity vs any theme ═══ */
html body .svc-tabs button.svc-tab,
html body button.svc-tab,
html body .svc-tab {
  -webkit-appearance: none !important; appearance: none !important;
  background: transparent !important; background-color: transparent !important;
  background-image: none !important;
  color: #6b7c6e !important;
  border: 0 !important; border-bottom: 2px solid transparent !important;
  outline: 0 !important; box-shadow: none !important;
  text-shadow: none !important; text-decoration: none !important;
}
html body .svc-tabs button.svc-tab:hover,
html body button.svc-tab:hover, html body .svc-tab:hover,
html body button.svc-tab:focus, html body .svc-tab:focus,
html body button.svc-tab:focus-visible,
html body button.svc-tab:active, html body .svc-tab:active {
  background: #ecf3ee !important; background-color: #ecf3ee !important;
  background-image: none !important;
  color: #030a05 !important;
  border: 0 !important; border-bottom: 2px solid transparent !important;
  outline: 0 !important; box-shadow: none !important;
}
html body .svc-tabs button.svc-tab.act,
html body button.svc-tab.act, html body .svc-tab.act,
html body button.svc-tab.act:hover, html body .svc-tab.act:hover,
html body button.svc-tab.act:focus, html body .svc-tab.act:focus {
  background: #ffffff !important; background-color: #ffffff !important;
  color: #0b3d1c !important;
  border-bottom: 2px solid #0b3d1c !important;
}
html body .hero .hero-h1, html body .hero-h1 {
  line-height: 1.08 !important;
  padding-bottom: 0.1em !important;
}


.f2-social a svg{width:16px;height:16px;stroke:none !important;}
.f2-social a:hover svg{opacity:0.85;}

/* ─── FIX: footer social icons visible (old fill:none was hiding filled paths) ─── */
.f2-social a { color: #FFFFFF; }
.f2-social a.f2-wa { color: #25D366; }
.f2-social a svg,
.f2-social a svg path {
  fill: currentColor !important;
  stroke: none !important;
  width: 16px; height: 16px;
}
.f2-social a:hover { opacity: 0.85; }

/* Footer social — monochrome uniform (top-site pattern), hover lift */
.f2-social{display:flex;gap:8px;margin-bottom:20px}
.f2-social a{width:36px;height:36px;border-radius:9px;border:1px solid rgba(255,255,255,0.18);background:rgba(255,255,255,0.06);display:flex;align-items:center;justify-content:center;transition:all .2s}
.f2-social a:hover{background:rgba(255,255,255,0.14);border-color:rgba(255,255,255,0.35);transform:translateY(-2px)}
