/* ─────────────────────────────────────────
   RESET & ROOT
───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg:       #0D161B;
  --bg2:      #111D24;
  --card:     #1C2A33;
  --card2:    #162028;
  --green:    #82FF9E;
  --green2:   #4EE86E;
  --text:     #FFFFFF;
  --muted:    #A1B1BC;
  --border:   rgba(130,255,158,0.12);
  --border2:  rgba(130,255,158,0.25);
  --shadow:   0 24px 64px rgba(0,0,0,0.5);
}
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  cursor: none;
}
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: none; }
img { display: block; }

/* ─────────────────────────────────────────
   CUSTOM CURSOR
───────────────────────────────────────── */
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  position: fixed; z-index: 9999;
  pointer-events: none;
  transform: translate(-50%,-50%);
  transition: transform .08s;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(130,255,158,0.5);
  border-radius: 50%;
  position: fixed; z-index: 9998;
  pointer-events: none;
  transform: translate(-50%,-50%);
  transition: transform .18s ease, width .25s, height .25s, border-color .25s;
}
.cursor-ring.hover { width: 56px; height: 56px; border-color: var(--green); }

/* ─────────────────────────────────────────
   NOISE + AMBIENT
───────────────────────────────────────── */
.noise {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  opacity: .6;
}
.ambient {
  position: fixed; pointer-events: none; z-index: 0;
  border-radius: 50%;
  filter: blur(80px);
}
.ambient-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(130,255,158,0.06) 0%, transparent 70%);
  top: -200px; right: -200px;
  animation: breathe 10s ease-in-out infinite;
}
.ambient-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(130,255,158,0.04) 0%, transparent 70%);
  bottom: 200px; left: -150px;
  animation: breathe 13s ease-in-out infinite reverse;
}
@keyframes breathe { 0%,100%{transform:scale(1)} 50%{transform:scale(1.15)} }

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center;
  padding: 0 56px; height: 76px;
  background: rgba(13,22,27,0.75);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  animation: slideDown .7s ease both;
}
@keyframes slideDown { from{opacity:0;transform:translateY(-20px)} to{opacity:1;transform:translateY(0)} }

.nav-logo {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 19px; letter-spacing: .1em;
  display: flex; align-items: center; gap: 10px;
  flex: 1;
}
.nav-logo-mark {
  width: 30px; height: 30px;
  border: 2px solid var(--green);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--green);
  font-weight: 800;
}

.nav-links {
  display: flex; align-items: center; gap: 40px; margin-right: 40px;
}
.nav-links a {
  font-size: 14px; color: var(--muted); letter-spacing: .03em;
  position: relative; transition: color .2s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -4px;
  width: 0; height: 1.5px; background: var(--green);
  transition: width .3s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  border: 1.5px solid var(--green);
  color: var(--green); background: transparent;
  padding: 10px 24px; border-radius: 6px;
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  transition: all .25s;
}
.nav-cta:hover { background: var(--green); color: var(--bg); box-shadow: 0 0 24px rgba(130,255,158,0.35); }

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  position: relative; z-index: 1;
  min-height: 100vh;
  padding: 140px 56px 100px;
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 80px;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(130,255,158,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(130,255,158,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

.hero-left { animation: fadeUp .9s .1s ease both; }
@keyframes fadeUp { from{opacity:0;transform:translateY(32px)} to{opacity:1;transform:translateY(0)} }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(130,255,158,0.08);
  border: 1px solid var(--border2);
  border-radius: 100px;
  padding: 6px 16px 6px 8px;
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--green); font-weight: 500;
  margin-bottom: 32px;
}
.hero-badge-dot {
  width: 22px; height: 22px; background: var(--green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: var(--bg); font-weight: 800;
  animation: ping 2s ease infinite;
}
@keyframes ping {
  0%,100%{box-shadow:0 0 0 0 rgba(130,255,158,.5)}
  50%{box-shadow:0 0 0 8px rgba(130,255,158,0)}
}

.hero h1 {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(42px, 5.5vw, 68px);
  line-height: 1.07; letter-spacing: -.03em;
  margin-bottom: 28px;
}
.hero h1 em { font-style: normal; color: var(--green); }
.hero h1 .line2 { display: block; }

.hero-sub {
  font-size: 18px; color: var(--muted);
  line-height: 1.8; max-width: 500px;
  font-weight: 300; margin-bottom: 48px;
}

.hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

.btn-fill {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green); color: var(--bg);
  border: none; padding: 16px 36px;
  border-radius: 8px;
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 14px; letter-spacing: .06em;
  transition: all .25s; position: relative; overflow: hidden;
}
.btn-fill::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.2));
  transform: translateX(-100%); transition: transform .4s ease;
}
.btn-fill:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(130,255,158,0.4); }
.btn-fill:hover::before { transform: translateX(0); }
.btn-fill svg { transition: transform .2s; }
.btn-fill:hover svg { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--muted);
  border: 1px solid rgba(161,177,188,0.2);
  padding: 15px 28px; border-radius: 8px;
  font-size: 14px; letter-spacing: .03em;
  transition: all .25s;
}
.btn-ghost:hover { color: var(--text); border-color: rgba(161,177,188,0.5); }

.hero-stats {
  display: flex; gap: 48px; margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.hero-stat-val {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 32px; color: var(--text); line-height: 1;
}
.hero-stat-val span { color: var(--green); }
.hero-stat-label {
  font-size: 12px; color: var(--muted); margin-top: 6px;
  letter-spacing: .05em; text-transform: uppercase;
}

/* ─── Hero Right Card ─── */
.hero-right { animation: fadeUp .9s .35s ease both; }

.hero-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hc-header {
  background: rgba(130,255,158,0.06);
  border-bottom: 1px solid var(--border);
  padding: 18px 24px;
  display: flex; align-items: center; gap: 8px;
}
.hc-dot { width: 10px; height: 10px; border-radius: 50%; }
.hc-body { padding: 28px 28px 0; }
.hc-title {
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--green); font-weight: 600; margin-bottom: 20px;
}
.progress-item { margin-bottom: 20px; }
.pi-top { display: flex; justify-content: space-between; margin-bottom: 8px; }
.pi-label { font-size: 13px; color: var(--muted); }
.pi-val { font-family: 'DM Mono', monospace; font-size: 13px; color: var(--green); }
.progress-bar {
  height: 4px; background: rgba(255,255,255,0.06);
  border-radius: 4px; overflow: hidden;
}
.progress-fill {
  height: 100%; border-radius: 4px;
  background: linear-gradient(90deg, var(--green2), var(--green));
  transform: scaleX(0); transform-origin: left;
  animation: fillBar 1.4s .8s ease forwards;
}
@keyframes fillBar { to{transform:scaleX(1)} }

.hc-divider { height: 1px; background: var(--border); margin: 8px 0; }

.hc-metrics {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--border);
  margin-top: 24px;
}
.hc-metric {
  background: var(--card);
  padding: 20px 24px;
}
.hm-val {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 24px; color: var(--green); line-height: 1;
}
.hm-label { font-size: 11px; color: var(--muted); margin-top: 5px; letter-spacing: .04em; }

.hc-footer {
  background: rgba(130,255,158,0.05);
  border-top: 1px solid var(--border);
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.hf-status { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--muted); }
.hf-live { width: 6px; height: 6px; background: var(--green); border-radius: 50%; animation: ping 2s infinite; }
.hf-time { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--muted); }

/* ─────────────────────────────────────────
   MARQUEE / TICKER
───────────────────────────────────────── */
.ticker {
  position: relative; z-index: 1;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--card2);
  padding: 16px 0;
  overflow: hidden;
}
.ticker-track {
  display: flex; gap: 0;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 0 40px;
  font-family: 'Syne', sans-serif; font-weight: 600;
  font-size: 13px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}
.ticker-dot { width: 4px; height: 4px; background: var(--green); border-radius: 50%; flex-shrink: 0; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ─────────────────────────────────────────
   ABOUT / WHO WE ARE
───────────────────────────────────────── */
.about {
  position: relative; z-index: 1;
  padding: 120px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.section-tag {
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--green); font-weight: 600;
  display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
}
.section-tag::before { content:''; width:24px; height:1.5px; background:var(--green); }

.section-title {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.12; letter-spacing: -.025em; margin-bottom: 24px;
}
.section-title em { font-style: normal; color: var(--green); }

.section-body {
  color: var(--muted); font-size: 16px; line-height: 1.85;
  font-weight: 300; max-width: 480px; margin-bottom: 36px;
}

.about-pillars {
  display: flex; flex-direction: column; gap: 16px;
}
.pillar {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color .3s, transform .3s;
}
.pillar:hover { border-color: var(--border2); transform: translateX(6px); }
.pillar-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(130,255,158,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.pillar-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 14px; margin-bottom: 4px; }
.pillar-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

.about-visual {
  position: relative;
}
.about-big-num {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(80px, 12vw, 140px);
  line-height: 1;
  color: rgba(130,255,158,0.08);
  letter-spacing: -.05em;
  position: absolute; top: -20px; left: -20px;
  user-select: none;
}
.about-card-stack {
  position: relative; padding-top: 40px;
}
.about-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 16px;
  position: relative;
  transition: all .3s;
}
.about-card:hover { border-color: var(--border2); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.ac-label { font-size: 11px; color: var(--green); letter-spacing: .15em; text-transform: uppercase; margin-bottom: 10px; }
.ac-val { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 36px; color: var(--text); }
.ac-sub { font-size: 13px; color: var(--muted); margin-top: 4px; }
.ac-bar { height: 3px; background: rgba(255,255,255,0.06); border-radius: 3px; margin-top: 16px; overflow: hidden; }
.ac-bar-fill { height: 100%; background: linear-gradient(90deg, var(--green2), var(--green)); border-radius: 3px; }

/* ─────────────────────────────────────────
   SERVICES
───────────────────────────────────────── */
.services {
  position: relative; z-index: 1;
  padding: 120px 56px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.services-head {
  display: flex; align-items: flex-end;
  justify-content: space-between; margin-bottom: 64px;
  gap: 32px; flex-wrap: wrap;
}
.services-head .section-body { margin-bottom: 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.svc-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 36px;
  position: relative; overflow: hidden;
  transition: all .35s cubic-bezier(.25,.8,.25,1);
  display: flex; flex-direction: column;
}
.svc-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  transform: scaleX(0); transform-origin: center;
  transition: transform .4s ease;
}
.svc-card:hover {
  border-color: rgba(130,255,158,0.3);
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.4);
}
.svc-card:hover::before { transform: scaleX(1); }

.svc-num {
  font-family: 'DM Mono', monospace; font-size: 11px;
  color: rgba(130,255,158,0.4); letter-spacing: .1em;
  margin-bottom: 24px;
}
.svc-icon {
  width: 52px; height: 52px;
  background: rgba(130,255,158,0.08);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 28px;
  transition: background .3s;
}
.svc-card:hover .svc-icon { background: rgba(130,255,158,0.15); }
.svc-title {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 22px; color: var(--text); margin-bottom: 14px;
}
.svc-desc {
  font-size: 14px; color: var(--muted); line-height: 1.8;
  font-weight: 300; flex: 1;
}
.svc-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--green); font-weight: 500;
  letter-spacing: .04em; margin-top: 28px;
  transition: gap .2s;
}
.svc-card:hover .svc-link { gap: 14px; }

.svc-card.wide {
  grid-column: span 2;
  flex-direction: row; align-items: center; gap: 48px;
}
.svc-card.wide .svc-content { flex: 1; }
.svc-card.wide .svc-visual {
  flex-shrink: 0; width: 200px; height: 180px;
  background: rgba(130,255,158,0.04);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
}
.svc-card.wide .svc-visual .mini-val {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 40px; color: var(--green); line-height: 1;
}
.svc-card.wide .svc-visual .mini-label {
  font-size: 11px; color: var(--muted); letter-spacing: .1em; text-transform: uppercase;
}

/* ─────────────────────────────────────────
   PROCESS
───────────────────────────────────────── */
.process {
  position: relative; z-index: 1;
  padding: 120px 56px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 6%;
  width: 88%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border2), var(--border2), var(--border2), transparent);
  z-index: 0;
}

.step {
  position: relative; z-index: 1;
  padding: 0 24px;
  text-align: center;
}
.step-num {
  width: 56px; height: 56px;
  background: var(--card);
  border: 1.5px solid var(--border2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Mono', monospace; font-size: 14px;
  color: var(--green); font-weight: 500;
  margin: 0 auto 28px;
  transition: all .3s;
}
.step:hover .step-num {
  background: rgba(130,255,158,0.15);
  border-color: var(--green);
  box-shadow: 0 0 24px rgba(130,255,158,0.3);
}
.step-title {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 17px; margin-bottom: 12px;
}
.step-desc { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* ─────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────── */
.testimonials {
  position: relative; z-index: 1;
  padding: 120px 56px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 64px;
}
.testi-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  transition: all .3s;
}
.testi-card:hover { border-color: var(--border2); transform: translateY(-4px); }

.testi-stars { color: var(--green); font-size: 14px; margin-bottom: 20px; letter-spacing: 2px; }
.testi-quote {
  font-size: 15px; color: var(--text); line-height: 1.8;
  font-weight: 300; font-style: italic; margin-bottom: 28px;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green2), var(--card));
  border: 1.5px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 14px;
  color: var(--bg);
}
.testi-name { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 14px; }
.testi-role { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ─────────────────────────────────────────
   CTA BANNER
───────────────────────────────────────── */
.cta-banner {
  position: relative; z-index: 1;
  padding: 100px 56px;
  text-align: center;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(130,255,158,0.06) 0%, transparent 70%);
}
.cta-banner::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 500px; height: 500px;
  border: 1px solid var(--border);
  border-radius: 50%;
}

.cta-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta-tag { font-size: 11px; letter-spacing: .25em; text-transform: uppercase; color: var(--green); font-weight: 600; margin-bottom: 20px; }
.cta-title {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1; letter-spacing: -.02em;
  margin-bottom: 20px;
}
.cta-title em { font-style: normal; color: var(--green); }
.cta-sub { font-size: 17px; color: var(--muted); font-weight: 300; margin-bottom: 44px; line-height: 1.7; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer {
  position: relative; z-index: 1;
  border-top: 1px solid var(--border);
  padding: 64px 56px 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px; margin-bottom: 64px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--muted); line-height: 1.7; font-weight: 300; max-width: 260px; }

.footer-col h4 {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 13px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--text); margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a { font-size: 14px; color: var(--muted); transition: color .2s; }
.footer-col ul li a:hover { color: var(--green); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-size: 13px; color: rgba(161,177,188,0.5); }
.footer-socials { display: flex; gap: 12px; }
.social-btn {
  width: 36px; height: 36px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: all .2s;
}
.social-btn:hover { border-color: var(--green); color: var(--green); }

/* ─────────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s !important; }
.reveal-delay-2 { transition-delay: .2s !important; }
.reveal-delay-3 { transition-delay: .3s !important; }
.reveal-delay-4 { transition-delay: .4s !important; }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: 120px 32px 80px; }
  .hero-right { display: none; }
  .about { grid-template-columns: 1fr; gap: 48px; padding: 80px 32px; }
  .about-visual { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .svc-card.wide { grid-column: span 1; flex-direction: column; }
  .svc-card.wide .svc-visual { display: none; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-steps::before { display: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  nav { padding: 0 32px; }
  .services, .process, .testimonials, .cta-banner { padding-left: 32px; padding-right: 32px; }
  footer { padding: 48px 32px 32px; }
}
@media (max-width: 640px) {
  nav .nav-links { display: none; }
  .hero { padding: 100px 24px 60px; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
}
