@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

:root {
  --bg:       #05080F;
  --surface:  #0B1120;
  --surface2: #111827;
  --lime:     #C6FF57;
  --lime-dim: #9FCC3A;
  --coral:    #FF5C5C;
  --sky:      #38BDF8;
  --text:     #E8EFFF;
  --muted:    #4E5F7A;
  --border:   rgba(255,255,255,0.07);
  --glow-lime: rgba(198,255,87,0.18);
  --glow-coral: rgba(255,92,92,0.15);
  --radius: 18px;
  --radius-sm: 10px;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }

body {
  font-family:'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
  min-height: 100vh;
}

/* ── CURSOR ── */
.cursor-dot {
  position: fixed; width:10px; height:10px;
  background: var(--lime); border-radius:50%;
  pointer-events: none; z-index:9999;
  transform: translate(-50%,-50%);
  transition: width .15s, height .15s, background .2s;
  mix-blend-mode: exclusion;
}
.cursor-outline {
  position:fixed; width:36px; height:36px;
  border: 1.5px solid rgba(198,255,87,.5);
  border-radius:50%; pointer-events:none; z-index:9998;
  transform: translate(-50%,-50%);
  transition: transform .12s ease, width .3s, height .3s, opacity .3s;
}
body:has(a:hover, button:hover) .cursor-dot { width:18px; height:18px; }
body:has(a:hover, button:hover) .cursor-outline { width:54px; height:54px; opacity:.3; }

/* ── NOISE OVERLAY ── */
body::before {
  content:'';
  position:fixed; inset:0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events:none; z-index:1; opacity:.4;
}

/* ── TICKER ── */
.ticker {
  background: var(--lime);
  padding: 9px 0;
  overflow: hidden;
  position: relative;
  z-index: 200;
}
.ticker-inner {
  display:flex; white-space:nowrap;
  animation: scroll-ticker 40s linear infinite;
}
.ticker-item {
  font-family: 'Syne', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--bg); padding-right: 60px;
}
.ticker-dot { margin-right:60px; opacity:.4; }
@keyframes scroll-ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── NAV ── */
nav {
  position: sticky; top:0; z-index:150;
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  background: rgba(5,8,15,.75);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  max-width:1320px; margin:0 auto;
  padding: 0 32px;
  display:flex; align-items:center; justify-content:space-between;
  height:68px;
}
.nav-logo {
  display:flex; align-items:center; gap:10px;
  text-decoration:none;
}
.logo-badge {
  width:36px; height:36px;
  background: var(--lime);
  border-radius:8px;
  display:flex; align-items:center; justify-content:center;
  font-family:'Syne',sans-serif; font-weight:800; font-size:15px; color:var(--bg);
}
.logo-text {
  font-family:'Syne',sans-serif; font-weight:800;
  font-size:18px; letter-spacing:-.01em; color:var(--text);
}
.nav-links {
  display:flex; gap:4px; align-items:center; list-style:none;
}
.nav-links a {
  font-size:13px; font-weight:500;
  color: rgba(232,239,255,.55);
  text-decoration:none;
  padding: 7px 16px; border-radius:8px;
  transition: color .2s, background .2s;
  letter-spacing:.01em;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--text);
  background: rgba(255,255,255,.06);
}
.nav-cta {
  background: var(--lime) !important;
  color: var(--bg) !important;
  font-weight:700 !important;
  padding: 8px 22px !important;
  border-radius:8px !important;
}
.nav-cta:hover { background: var(--lime-dim) !important; transform:translateY(-1px); }
.nav-hamburger {
  display:none; background:none; border:1px solid var(--border);
  color:var(--text); padding:8px 12px; border-radius:8px;
  font-size:18px; cursor:pointer;
}

/* ── BLOBS (hero bg decoration) ── */
.blob-wrap {
  position:absolute; inset:0; overflow:hidden; pointer-events:none; z-index:0;
}
.blob {
  position:absolute; border-radius:50%; filter:blur(80px); opacity:.22;
  animation: blob-drift 14s ease-in-out infinite alternate;
}
.blob-1 { width:600px; height:600px; background:var(--lime); top:-200px; right:-100px; animation-duration:16s; }
.blob-2 { width:500px; height:500px; background:var(--coral); bottom:-150px; left:-80px; animation-duration:20s; animation-delay:-6s; }
.blob-3 { width:350px; height:350px; background:var(--sky); top:30%; left:40%; animation-duration:18s; animation-delay:-3s; }
@keyframes blob-drift {
  0%   { transform: translate(0,0) scale(1); }
  33%  { transform: translate(40px,-30px) scale(1.05); }
  66%  { transform: translate(-20px,40px) scale(.96); }
  100% { transform: translate(30px,20px) scale(1.03); }
}

/* ── PAGE LAYOUT ── */
.page { display:none; }
.page.active { display:block; }
.page-enter { animation: fadein .55s cubic-bezier(.16,1,.3,1) both; }
@keyframes fadein { from{opacity:0;transform:translateY(20px);} to{opacity:1;transform:none;} }

/* ── HERO ── */
.hero-section {
  position:relative; overflow:hidden;
  min-height: 92vh;
  display:flex; align-items:center;
  padding: 80px 32px 60px;
}
.hero-inner {
  max-width:1320px; margin:0 auto; width:100%;
  position:relative; z-index:2;
  display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center;
}
.hero-pill {
  display:inline-flex; align-items:center; gap:10px;
  background: rgba(198,255,87,.1); border:1px solid rgba(198,255,87,.2);
  border-radius:999px; padding:6px 16px 6px 8px;
  margin-bottom:28px;
}
.hero-pill-dot {
  width:8px; height:8px; background:var(--lime); border-radius:50%;
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%,100%{box-shadow:0 0 0 0 rgba(198,255,87,.6);}
  50%{box-shadow:0 0 0 6px rgba(198,255,87,0);}
}
.hero-pill span {
  font-size:11px; font-weight:700; letter-spacing:.12em;
  text-transform:uppercase; color:var(--lime);
}
.hero-h1 {
  font-family:'Syne',sans-serif;
  font-size: clamp(48px,6vw,82px);
  font-weight:800; line-height:.95;
  letter-spacing:-.03em; color:var(--text);
  margin-bottom:28px;
}
.hero-h1 .accent { color:var(--lime); }
.hero-h1 .stroke {
  -webkit-text-stroke: 2px var(--lime);
  color:transparent;
}
.hero-p {
  font-size:16px; font-weight:300; line-height:1.75;
  color: rgba(232,239,255,.6); max-width:480px; margin-bottom:40px;
}
.hero-actions { display:flex; gap:14px; align-items:center; flex-wrap:wrap; }

/* ── BUTTONS ── */
.btn-lime {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--lime); color:var(--bg);
  font-family:'Syne',sans-serif; font-weight:700;
  font-size:13px; letter-spacing:.04em;
  padding:14px 28px; border-radius:10px; border:none;
  cursor:pointer; text-decoration:none;
  transition: transform .18s, box-shadow .18s, background .18s;
  box-shadow: 0 0 0 rgba(198,255,87,0);
}
.btn-lime:hover {
  transform:translateY(-2px);
  box-shadow: 0 0 30px rgba(198,255,87,.3);
  background:var(--lime-dim);
}
.btn-ghost {
  display:inline-flex; align-items:center; gap:8px;
  background:transparent; color:var(--text);
  font-family:'Syne',sans-serif; font-weight:600;
  font-size:13px; letter-spacing:.04em;
  padding:13px 28px; border-radius:10px;
  border:1px solid var(--border); cursor:pointer;
  text-decoration:none;
  transition: border-color .2s, background .2s, transform .18s;
}
.btn-ghost:hover {
  border-color:rgba(198,255,87,.4);
  background:rgba(198,255,87,.05);
  transform:translateY(-1px);
}
.btn-coral {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--coral); color:#fff;
  font-family:'Syne',sans-serif; font-weight:700;
  font-size:13px; letter-spacing:.04em;
  padding:14px 28px; border-radius:10px; border:none;
  cursor:pointer; text-decoration:none;
  transition: transform .18s, box-shadow .18s;
}
.btn-coral:hover {
  transform:translateY(-2px);
  box-shadow: 0 0 30px rgba(255,92,92,.35);
}
.btn-dark {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--bg); color:var(--text);
  font-family:'Syne',sans-serif; font-weight:700;
  font-size:13px; letter-spacing:.04em;
  padding:14px 28px; border-radius:10px;
  border:1px solid var(--border); cursor:pointer;
  text-decoration:none; width:100%; justify-content:center;
  transition: background .2s, border-color .2s, transform .18s;
}
.btn-dark:hover {
  background:var(--surface2); border-color:rgba(255,255,255,.15);
  transform:translateY(-1px);
}
.btn-full { width:100%; justify-content:center; }

/* ── HERO RIGHT: STAT CARDS ── */
.hero-cards { display:flex; flex-direction:column; gap:16px; }
.hero-stat-card {
  background: rgba(11,17,32,.7);
  border: 1px solid var(--border);
  border-radius:var(--radius);
  padding:28px 32px;
  backdrop-filter:blur(16px);
  position:relative; overflow:hidden;
  transition: transform .25s, border-color .25s;
}
.hero-stat-card::before {
  content:''; position:absolute;
  top:0; left:0; right:0; height:1px;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
  opacity:.5;
}
.hero-stat-card:hover { transform:translateY(-3px); border-color:rgba(198,255,87,.2); }
.hsc-row { display:flex; justify-content:space-between; align-items:flex-end; }
.hsc-num {
  font-family:'Syne',sans-serif; font-weight:800;
  font-size:48px; line-height:1;
  color:var(--text);
}
.hsc-num .u { font-size:28px; color:var(--lime); }
.hsc-label {
  font-size:12px; font-weight:500;
  letter-spacing:.08em; text-transform:uppercase;
  color:var(--muted); margin-top:6px;
}
.hsc-badge {
  background:rgba(198,255,87,.12);
  color:var(--lime); font-size:11px; font-weight:700;
  padding:5px 12px; border-radius:999px;
  letter-spacing:.05em;
}
.hero-cards-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }

/* ── OUTLETS BAND ── */
.outlets-band {
  background: var(--surface);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  padding: 22px 32px; overflow:hidden;
}
.outlets-inner {
  max-width:1320px; margin:0 auto;
  display:flex; align-items:center; gap:40px;
}
.outlets-label {
  font-size:10px; font-weight:700;
  letter-spacing:.14em; text-transform:uppercase;
  color:var(--muted); white-space:nowrap; flex-shrink:0;
}
.outlets-track {
  display:flex; gap:40px; align-items:center;
  overflow:hidden; flex:1;
}
.outlet-chip {
  font-family:'Syne',sans-serif; font-weight:800;
  font-size:15px; color:rgba(232,239,255,.3);
  white-space:nowrap; transition:color .2s;
  letter-spacing:-.01em;
}
.outlet-chip:hover { color:rgba(232,239,255,.7); }

/* ── SECTION PRIMITIVES ── */
.section {
  max-width:1320px; margin:0 auto;
  padding: 96px 32px;
}
.section-sm { padding: 64px 32px; }
.s-tag {
  display:inline-flex; align-items:center; gap:8px;
  font-size:11px; font-weight:700;
  letter-spacing:.14em; text-transform:uppercase;
  color:var(--lime); margin-bottom:18px;
}
.s-tag::before {
  content:''; display:block;
  width:20px; height:2px; background:var(--lime); border-radius:2px;
}
.s-title {
  font-family:'Syne',sans-serif;
  font-size:clamp(34px,4.5vw,56px);
  font-weight:800; line-height:1.05;
  letter-spacing:-.03em; color:var(--text);
  margin-bottom:60px;
}
.s-title .acc { color:var(--lime); }
.s-title .cor { color:var(--coral); }
.s-subtitle {
  font-size:16px; font-weight:300; line-height:1.75;
  color:rgba(232,239,255,.55); max-width:560px; margin-bottom:56px;
}
.divider {
  border:none; border-top:1px solid var(--border); margin:0;
}

/* ── PROCESS STEPS ── */
.steps-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:24px;
}
.step-card {
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:36px 32px; position:relative; overflow:hidden;
  transition:transform .25s, border-color .25s, box-shadow .25s;
}
.step-card:hover {
  transform:translateY(-5px);
  border-color:rgba(198,255,87,.25);
  box-shadow:0 20px 50px rgba(0,0,0,.4), 0 0 40px var(--glow-lime);
}
.step-num-bg {
  position:absolute; top:-10px; right:16px;
  font-family:'Syne',sans-serif; font-weight:800;
  font-size:100px; line-height:1; color:rgba(255,255,255,.03);
  pointer-events:none; user-select:none;
}
.step-icon {
  width:48px; height:48px; border-radius:12px;
  background:rgba(198,255,87,.1);
  display:flex; align-items:center; justify-content:center;
  font-size:22px; margin-bottom:20px;
}
.step-n {
  font-size:11px; font-weight:700; letter-spacing:.12em;
  text-transform:uppercase; color:var(--lime); margin-bottom:10px;
}
.step-title {
  font-family:'Syne',sans-serif; font-weight:700;
  font-size:20px; color:var(--text); margin-bottom:12px;
}
.step-body {
  font-size:14px; font-weight:300; line-height:1.75;
  color:rgba(232,239,255,.5);
}

/* ── SERVICES GRID ── */
.services-bento {
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  grid-template-rows:auto auto;
  gap:20px;
}
.svc-card {
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:36px; position:relative; overflow:hidden;
  transition:transform .25s, border-color .25s, box-shadow .25s;
}
.svc-card:hover {
  transform:translateY(-4px);
  border-color:rgba(198,255,87,.2);
  box-shadow:0 16px 40px rgba(0,0,0,.4),0 0 30px var(--glow-lime);
}
.svc-card.wide { grid-column: span 2; }
.svc-card.tall { grid-row: span 2; }
.svc-card::after {
  content:''; position:absolute;
  top:0; left:0; right:0; height:2px;
  background:linear-gradient(90deg,var(--lime),var(--sky));
  opacity:0; transition:opacity .3s;
}
.svc-card:hover::after { opacity:1; }
.svc-icon {
  font-size:30px; margin-bottom:20px; display:block;
}
.svc-num {
  font-size:11px; font-weight:700; letter-spacing:.12em;
  text-transform:uppercase; color:var(--muted); margin-bottom:10px;
}
.svc-title {
  font-family:'Syne',sans-serif; font-weight:700;
  font-size:22px; color:var(--text); margin-bottom:14px; line-height:1.2;
}
.svc-body {
  font-size:14px; font-weight:300; line-height:1.75;
  color:rgba(232,239,255,.5);
}
.svc-tags { display:flex; flex-wrap:wrap; gap:8px; margin-top:20px; }
.tag-pill {
  font-size:10px; font-weight:700; letter-spacing:.08em;
  text-transform:uppercase; color:var(--lime);
  border:1px solid rgba(198,255,87,.2);
  padding:4px 12px; border-radius:999px;
  background:rgba(198,255,87,.06);
}

/* ── TESTIMONIALS ── */
.testi-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:20px;
}
.testi-card {
  background:var(--surface);
  border:1px solid var(--border); border-radius:var(--radius);
  padding:36px; position:relative; overflow:hidden;
  transition:transform .25s, border-color .25s, box-shadow .25s;
}
.testi-card:hover {
  transform:translateY(-4px);
  border-color:rgba(255,92,92,.2);
  box-shadow:0 16px 40px rgba(0,0,0,.4),0 0 30px var(--glow-coral);
}
.testi-quote-mark {
  font-family:'Syne',sans-serif; font-size:64px;
  color:var(--coral); line-height:.8; margin-bottom:16px;
  display:block; font-weight:800;
}
.testi-q {
  font-size:15px; font-weight:300; line-height:1.75;
  color:rgba(232,239,255,.75); margin-bottom:28px;
  font-style:italic;
}
.testi-author { font-size:13px; font-weight:600; color:var(--text); }
.testi-role { font-size:12px; color:var(--muted); margin-top:2px; }
.testi-stars { color:var(--lime); font-size:12px; margin-bottom:18px; }

/* ── PRICING ── */
.pricing-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:20px;
}
.plan-card {
  background:var(--surface);
  border:1px solid var(--border); border-radius:var(--radius);
  padding:40px; position:relative; overflow:hidden;
  transition:transform .25s, border-color .25s, box-shadow .25s;
}
.plan-card:hover { transform:translateY(-5px); }
.plan-card.featured {
  background:linear-gradient(135deg,#0F1E35,#0B1525);
  border-color:rgba(198,255,87,.35);
  box-shadow:0 0 0 1px rgba(198,255,87,.15), 0 30px 60px rgba(0,0,0,.5), 0 0 60px rgba(198,255,87,.08);
}
.plan-card.featured:hover {
  box-shadow:0 0 0 1px rgba(198,255,87,.3), 0 30px 70px rgba(0,0,0,.6), 0 0 80px rgba(198,255,87,.15);
}
.plan-badge {
  position:absolute; top:20px; right:20px;
  background:var(--lime); color:var(--bg);
  font-size:9px; font-weight:800; letter-spacing:.12em;
  text-transform:uppercase; padding:5px 14px; border-radius:999px;
}
.plan-tier {
  font-size:11px; font-weight:700; letter-spacing:.14em;
  text-transform:uppercase; color:var(--muted); margin-bottom:20px;
}
.plan-card.featured .plan-tier { color:var(--lime); }
.plan-price {
  display:flex; align-items:flex-start; gap:4px;
  margin-bottom:6px;
}
.plan-currency {
  font-family:'Syne',sans-serif; font-weight:800;
  font-size:28px; color:var(--muted); margin-top:10px;
}
.plan-amount {
  font-family:'Syne',sans-serif; font-weight:800;
  font-size:72px; line-height:1; color:var(--text);
  letter-spacing:-.04em;
}
.plan-card.featured .plan-amount { color:var(--lime); }
.plan-period {
  font-size:13px; color:var(--muted); font-weight:300;
  margin-bottom:28px;
}
.plan-divider {
  height:1px; background:var(--border); margin-bottom:28px;
}
.plan-features { list-style:none; display:flex; flex-direction:column; gap:13px; }
.plan-features li {
  display:flex; align-items:center; gap:10px;
  font-size:13px; font-weight:300;
  color:rgba(232,239,255,.55);
}
.plan-features li .chk { color:var(--lime); font-size:14px; flex-shrink:0; }
.plan-features li .cross { color:var(--muted); font-size:18px; line-height:1; flex-shrink:0; }
.plan-features li.hi { color:var(--text); font-weight:500; }
.plan-cta { margin-top:32px; }

/* ── ABOUT ── */
.about-hero-grid {
  display:grid; grid-template-columns:3fr 2fr; gap:80px; align-items:center;
}
.about-h1 {
  font-family:'Syne',sans-serif; font-weight:800;
  font-size:clamp(40px,5vw,68px); line-height:1.05;
  letter-spacing:-.03em; color:var(--text); margin-bottom:28px;
}
.about-h1 .acc { color:var(--lime); }
.about-desc {
  font-size:16px; font-weight:300; line-height:1.8;
  color:rgba(232,239,255,.55); max-width:520px; margin-bottom:40px;
}
.about-facts { display:flex; flex-direction:column; gap:0; }
.about-fact {
  padding:24px 0; border-bottom:1px solid var(--border);
}
.about-fact:first-child { border-top:1px solid var(--border); }
.af-num {
  font-family:'Syne',sans-serif; font-weight:800;
  font-size:44px; line-height:1; color:var(--text);
}
.af-num sup { font-size:22px; color:var(--lime); }
.af-label { font-size:12px; font-weight:500; letter-spacing:.06em; text-transform:uppercase; color:var(--muted); margin-top:4px; }

.values-list { display:flex; flex-direction:column; gap:0; }
.val-row {
  display:flex; align-items:flex-start; gap:20px;
  padding:24px 0; border-bottom:1px solid var(--border);
  transition:background .2s;
}
.val-row:first-child { border-top:1px solid var(--border); }
.val-num {
  font-family:'Syne',sans-serif; font-weight:800;
  font-size:13px; color:var(--lime); width:32px; flex-shrink:0;
  padding-top:3px;
}
.val-title { font-size:15px; font-weight:600; color:var(--text); margin-bottom:4px; }
.val-desc { font-size:13px; font-weight:300; color:rgba(232,239,255,.45); line-height:1.6; }

.story-grid {
  display:grid; grid-template-columns:1fr 1fr; gap:60px;
}
.story-text {
  font-size:16px; font-weight:300; line-height:1.85;
  color:rgba(232,239,255,.6);
}
.story-text p + p { margin-top:20px; }
.story-text strong { color:var(--text); font-weight:500; }

.team-grid {
  display:grid; grid-template-columns:repeat(4,1fr); gap:20px;
}
.team-card {
  background:var(--surface); border:1px solid var(--border);
  border-radius:var(--radius); padding:32px 24px;
  text-align:center;
  transition:transform .25s, border-color .25s;
}
.team-card:hover {
  transform:translateY(-4px);
  border-color:rgba(198,255,87,.2);
}
.team-av {
  width:68px; height:68px; border-radius:50%;
  background:linear-gradient(135deg,var(--surface2),var(--surface));
  border:2px solid rgba(198,255,87,.2);
  margin:0 auto 16px;
  display:flex; align-items:center; justify-content:center;
  font-family:'Syne',sans-serif; font-size:24px; font-weight:800; color:var(--lime);
}
.team-name { font-size:14px; font-weight:600; color:var(--text); margin-bottom:4px; }
.team-role { font-size:11px; font-weight:500; letter-spacing:.08em; text-transform:uppercase; color:var(--muted); }

/* ── CONTACT ── */
.contact-grid {
  display:grid; grid-template-columns:1fr 1.2fr; gap:80px;
}
.contact-h {
  font-family:'Syne',sans-serif; font-weight:800;
  font-size:clamp(38px,5vw,64px); line-height:1.05;
  letter-spacing:-.03em; color:var(--text); margin-bottom:20px;
}
.contact-h .acc { color:var(--lime); }
.contact-desc {
  font-size:15px; font-weight:300; line-height:1.75;
  color:rgba(232,239,255,.5); margin-bottom:48px;
}
.contact-methods { display:flex; flex-direction:column; gap:0; }
.cm {
  padding:18px 0; border-bottom:1px solid var(--border);
  display:flex; align-items:center; gap:16px;
}
.cm:first-child { border-top:1px solid var(--border); }
.cm-icon {
  width:40px; height:40px; border-radius:10px;
  background:rgba(198,255,87,.08); border:1px solid rgba(198,255,87,.15);
  display:flex; align-items:center; justify-content:center; font-size:18px; flex-shrink:0;
}
.cm-label { font-size:10px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--muted); }
.cm-value { font-size:14px; color:var(--text); margin-top:2px; font-weight:400; }

/* ── FORM ── */
.contact-form-wrap {
  background:var(--surface); border:1px solid var(--border);
  border-radius:var(--radius); padding:40px;
}
.form-title {
  font-family:'Syne',sans-serif; font-weight:700; font-size:20px;
  color:var(--text); margin-bottom:28px;
}
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-group { display:flex; flex-direction:column; gap:8px; margin-bottom:16px; }
.form-label {
  font-size:10px; font-weight:700; letter-spacing:.12em;
  text-transform:uppercase; color:var(--lime);
}
.form-input, .form-textarea, .form-select {
  background:rgba(255,255,255,.04);
  border:1px solid var(--border);
  color:var(--text); padding:13px 16px;
  font-family:'DM Sans',sans-serif; font-size:14px; font-weight:300;
  border-radius:10px; outline:none; width:100%;
  transition:border-color .2s, background .2s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color:rgba(198,255,87,.4);
  background:rgba(198,255,87,.04);
}
.form-textarea { resize:vertical; min-height:110px; }
.form-select option { background:var(--surface2); }
.success-msg {
  display:none; padding:14px;
  background:rgba(198,255,87,.08); border:1px solid rgba(198,255,87,.25);
  border-radius:10px; font-size:13px; font-weight:600; color:var(--lime);
  text-align:center; letter-spacing:.04em; margin-top:16px;
}

/* ── FAQ ── */
.faq-list { display:flex; flex-direction:column; gap:0; }
.faq-item {
  border-bottom:1px solid var(--border);
}
.faq-q {
  width:100%; background:none; border:none; cursor:pointer;
  display:flex; justify-content:space-between; align-items:center;
  padding:22px 0; font-family:'DM Sans',sans-serif;
  font-size:15px; font-weight:500; color:var(--text);
  text-align:left; gap:20px;
}
.faq-q:hover { color:var(--lime); }
.faq-chevron {
  font-size:20px; color:var(--muted); transition:transform .3s;
  flex-shrink:0;
}
.faq-item.open .faq-chevron { transform:rotate(45deg); color:var(--lime); }
.faq-a {
  font-size:14px; font-weight:300; line-height:1.75;
  color:rgba(232,239,255,.5); max-height:0; overflow:hidden;
  transition:max-height .35s ease, padding-bottom .35s;
}
.faq-item.open .faq-a { max-height:200px; padding-bottom:22px; }

/* ── CTA BANNER ── */
.cta-strip {
  position:relative; overflow:hidden;
  background:linear-gradient(135deg,#0E1E10,#0C1F20);
  border-top:1px solid rgba(198,255,87,.12);
  border-bottom:1px solid rgba(198,255,87,.12);
}
.cta-strip .blob-wrap { opacity:.4; }
.cta-strip-inner {
  max-width:1320px; margin:0 auto;
  padding: 80px 32px;
  display:flex; align-items:center; justify-content:space-between; gap:40px;
  position:relative; z-index:2;
}
.cta-h {
  font-family:'Syne',sans-serif; font-weight:800;
  font-size:clamp(32px,4vw,52px); line-height:1.1;
  letter-spacing:-.03em; color:var(--text);
}
.cta-h .acc { color:var(--lime); }
.cta-actions { display:flex; gap:14px; align-items:center; flex-shrink:0; }

/* ── COMPARISON TABLE ── */
.cmp-table {
  width:100%; border-collapse:collapse; font-size:13px;
}
.cmp-table th {
  font-size:10px; letter-spacing:.12em; text-transform:uppercase;
  color:var(--lime); font-weight:700;
  padding:16px 20px; text-align:left;
  border-bottom:1px solid var(--border);
  background:rgba(198,255,87,.04);
}
.cmp-table td {
  padding:15px 20px;
  border-bottom:1px solid rgba(255,255,255,.04);
  color:rgba(232,239,255,.5); font-weight:300;
}
.cmp-table tr:hover td { background:rgba(255,255,255,.02); }
.chk-green { color:var(--lime); font-size:16px; }
.chk-no { color:var(--muted); }

/* ── FOOTER ── */
footer {
  background:var(--surface);
  border-top:1px solid var(--border);
}
.footer-grid {
  max-width:1320px; margin:0 auto;
  padding:64px 32px 32px;
  display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:48px;
  border-bottom:1px solid var(--border);
}
.f-logo { font-family:'Syne',sans-serif; font-weight:800; font-size:20px; color:var(--text); margin-bottom:12px; display:flex; align-items:center; gap:10px; }
.f-desc { font-size:13px; font-weight:300; line-height:1.7; color:rgba(232,239,255,.4); }
.f-social { display:flex; gap:10px; margin-top:20px; }
.f-soc-btn {
  width:36px; height:36px; border-radius:8px;
  background:rgba(255,255,255,.05); border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  font-size:14px; text-decoration:none; color:var(--muted);
  transition:background .2s, color .2s;
}
.f-soc-btn:hover { background:rgba(198,255,87,.1); color:var(--lime); border-color:rgba(198,255,87,.2); }
.f-col-title {
  font-size:10px; font-weight:700; letter-spacing:.14em;
  text-transform:uppercase; color:var(--lime); margin-bottom:18px;
}
.f-links { list-style:none; display:flex; flex-direction:column; gap:10px; }
.f-links a {
  font-size:13px; font-weight:300; color:rgba(232,239,255,.4);
  text-decoration:none; cursor:pointer; transition:color .2s;
}
.f-links a:hover { color:var(--text); }
.footer-bottom {
  max-width:1320px; margin:0 auto;
  padding:20px 32px;
  display:flex; justify-content:space-between; align-items:center;
}
.f-copy { font-size:12px; color:rgba(232,239,255,.2); }
.f-legal { display:flex; gap:20px; }
.f-legal a { font-size:12px; color:rgba(232,239,255,.2); text-decoration:none; cursor:pointer; }
.f-legal a:hover { color:var(--muted); }

/* ── PAGE HEROES (inner pages) ── */
.inner-hero {
  position:relative; overflow:hidden;
  padding:100px 32px 80px;
  border-bottom:1px solid var(--border);
}
.inner-hero-inner {
  max-width:1320px; margin:0 auto; position:relative; z-index:2;
}
.inner-h {
  font-family:'Syne',sans-serif; font-weight:800;
  font-size:clamp(48px,6.5vw,88px); line-height:.95;
  letter-spacing:-.04em; color:var(--text);
  margin-bottom:24px;
}
.inner-h .acc { color:var(--lime); }
.inner-h .cor { color:var(--coral); }
.inner-sub {
  font-size:16px; font-weight:300; line-height:1.75;
  color:rgba(232,239,255,.5); max-width:560px;
}

/* ── GRID HELPERS ── */
.two-col { display:grid; grid-template-columns:1fr 1fr; gap:60px; }
.three-col { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.info-card {
  background:var(--surface); border:1px solid var(--border);
  border-radius:var(--radius); padding:28px 32px;
}

/* ── ANIMATIONS ── */
.reveal {
  opacity:0; transform:translateY(28px);
  transition:opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity:1; transform:none; }
.reveal-delay-1 { transition-delay:.1s; }
.reveal-delay-2 { transition-delay:.2s; }
.reveal-delay-3 { transition-delay:.3s; }

/* ── MEDIA QUERIES ── */
@media(max-width:960px) {
  .hero-inner, .about-hero-grid, .story-grid,
  .contact-grid, .cta-strip-inner { grid-template-columns:1fr; }
  .steps-grid, .testi-grid, .pricing-grid { grid-template-columns:1fr; }
  .services-bento { grid-template-columns:1fr; }
  .svc-card.wide { grid-column:span 1; }
  .team-grid { grid-template-columns:1fr 1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .cta-actions { flex-direction:column; }
  .two-col, .three-col { grid-template-columns:1fr; }
  .nav-links { display:none; }
  .nav-hamburger { display:block; }
  .outlets-inner { flex-direction:column; align-items:flex-start; gap:14px; }
  .cmp-table { font-size:11px; }
  .cmp-table th, .cmp-table td { padding:10px; }
  .form-row { grid-template-columns:1fr; }
}
