/* ============================================================
   CLOUDIX AI — style.css
   Design system: dark green-black + bright green/cyan accents
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── CSS Custom Properties ────────────────────────────────── */
:root {
  /* Colors */
  --bg:            #0b0f0e;
  --bg-2:          #111716;
  --surface:       #161c1a;
  --surface-2:     #1a2320;
  --surface-3:     #1e2824;
  --border:        rgba(0, 255, 136, 0.08);
  --border-hover:  rgba(0, 255, 136, 0.35);

  --primary:       #00e5a8;
  --primary-dim:   #00c48e;
  --primary-dark:  #007a40;
  --secondary:     #00d4ff;
  --tertiary:      #7c3aed;

  --text:          #cfd6d3;
  --text-muted:    #7a9980;
  --text-faint:    #4a6050;
  --white:         #ffffff;

  /* Light section tokens */
  --light-bg:      #ffffff;
  --light-bg-2:    #f4f8f6;
  --light-border:  rgba(0, 0, 0, 0.09);
  --light-text:    #0b0f0e;
  --light-muted:   #333333;
  --light-faint:   #666666;
  --light-surface: #ffffff;
  --light-surface-2: #eef5f1;

  /* Gradients */
  --grad-primary:  linear-gradient(135deg, #00e5a8 0%, #00d4ff 100%);
  --grad-card:     linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
  --grad-glow:     radial-gradient(ellipse 80% 60% at 50% -10%, rgba(0,255,136,0.18) 0%, transparent 70%);

  /* Typography */
  --font:      'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Spacing scale */
  --s1: 0.25rem; --s2: 0.5rem;  --s3: 0.75rem; --s4: 1rem;
  --s5: 1.25rem; --s6: 1.5rem;  --s8: 2rem;    --s10: 2.5rem;
  --s12: 3rem;   --s16: 4rem;   --s20: 5rem;   --s24: 6rem;

  /* Layout */
  --container: 1240px;
  --section-py: clamp(4rem, 8vw, 7rem);

  /* Radius */
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  18px;
  --r-xl:  28px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-card: 0 4px 32px rgba(0,0,0,0.5), 0 1px 4px rgba(0,0,0,0.3);
  --shadow-glow: 0 0 40px rgba(0,255,136,0.20), 0 0 80px rgba(0,255,136,0.08);
  --shadow-glow-sm: 0 0 20px rgba(0,255,136,0.25);

  /* Transitions */
  --t-fast: 150ms ease;
  --t-base: 250ms ease;
  --t-slow: 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--bg);
  overflow-x: hidden;
}

::selection { background: rgba(0,255,136,0.25); color: var(--white); }

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
ul, ol { list-style: none; }

/* ── Utilities ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

.section { padding-block: var(--section-py); }

.text-gradient {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  padding: var(--s2) var(--s4);
  background: rgba(0,255,136,0.08);
  border: 1px solid rgba(0,255,136,0.20);
  border-radius: var(--r-full);
  margin-bottom: var(--s5);
}

.section-label::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: var(--s4);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--r-full);
  transition: transform var(--t-base), box-shadow var(--t-base), background var(--t-base), color var(--t-base), border-color var(--t-base);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: #00e5a8;
  color: #00291f;
  font-weight: 600;
  padding: 0.875rem 2rem;
  box-shadow: 0 0 0 0 rgba(0,229,168,0.4);
  animation: btnPulse 2.5s ease-in-out infinite;
}
.btn-primary:hover {
  background: #00c896;
  box-shadow: var(--shadow-glow-sm);
  animation: none;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  padding: 0.875rem 2rem;
  border: 1px solid var(--border-hover);
}
.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(0,255,136,0.05);
}

.btn-secondary {
  background: transparent;
  color: var(--secondary);
  padding: 0.875rem 2rem;
  border: 1px solid rgba(0,212,255,0.30);
}
.btn-secondary:hover {
  background: rgba(0,212,255,0.08);
  border-color: var(--secondary);
}

.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }
.btn-sm { padding: 0.625rem 1.375rem; font-size: 0.875rem; }
.btn-full { width: 100%; }

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 56px; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  background: rgba(5, 14, 12, 0.92);
  border-bottom: 1px solid rgba(0, 255, 136, 0.08);
  border-bottom: 1px solid rgba(0, 255, 136, 0.08);
  transition: background var(--t-slow), border-color var(--t-slow), padding var(--t-slow);
}

.nav--scrolled {
  background: rgba(8,12,10,0.90);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: var(--s6);
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo-text {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
}

.nav-logo-text span { color: var(--primary); }

.nav-logo-img,
.footer-logo-img,
.admin-logo-img {
  width: auto;
  display: block;
  object-fit: contain;
  background: transparent;
}

.nav-logo-img {
  height: 46px;
}

.admin-logo-img {
  height: 46px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--s8);
  margin-left: auto;
}

.nav-links a {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--t-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 50%; right: 50%;
  height: 2px;
  background: var(--primary);
  transition: left var(--t-base), right var(--t-base);
  border-radius: 1px;
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { left: 0; right: 0; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--s4);
  margin-left: var(--s4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--s2);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform var(--t-base), opacity var(--t-base);
}

.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  display: none;
  flex-direction: column;
  gap: var(--s4);
  padding: var(--s6) var(--s6) var(--s8);
  border-top: 1px solid var(--border);
  background: rgba(8,12,10,0.97);
}

.nav-drawer a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: var(--s3) 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--t-fast);
}

.nav-drawer a:hover { color: var(--white); }
.nav-drawer .btn { align-self: flex-start; margin-top: var(--s2); }

/* ── Urgency Ribbon ───────────────────────────────────────── */
.urgency-ribbon {
  background: linear-gradient(90deg, rgba(0,255,136,0.12) 0%, rgba(0,212,255,0.12) 100%);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 16px 0;
  margin-bottom: 10px;
  font-size: 0.9125rem;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: 0.03em;
}

@media (max-width: 768px) {
  .urgency-ribbon {
    font-size: 0.6875rem;
    padding: 10px 24px;
    line-height: 1.55;
    margin-bottom: 0;
  }
}

.urgency-ribbon strong { color: var(--white); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 160px;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,255,136,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,136,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridScroll 12s linear infinite;
  opacity: 0.05;
}}

.hero-bg-glow {
  position: absolute;
  inset: 0;
  background: var(--grad-glow);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding-block: var(--s20);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(0,255,136,0.08);
  border: 1px solid rgba(0,255,136,0.25);
  border-radius: var(--r-full);
  padding: var(--s2) var(--s4);
  margin-bottom: var(--s6);
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: var(--s6);
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: var(--s10);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s4);
  margin-bottom: var(--s6);
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: var(--s3);
  font-size: 0.8125rem;
  color: var(--text-faint);
}

.hero-social-proof svg { color: var(--primary); flex-shrink: 0; }

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual-img {
  width: 100%;
  max-width: 560px;
  animation: floatY 6s ease-in-out infinite;
  filter: drop-shadow(0 0 60px rgba(0,255,136,0.18));
}

.hero-float-card {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border-hover);
  border-radius: var(--r-md);
  padding: var(--s3) var(--s5);
  font-size: 0.8125rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-card);
  white-space: nowrap;
}

.hero-float-card .stat-big {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.hero-float-card .label { color: var(--text-muted); font-weight: 400; }

.hero-float-card--1 { bottom: 18%; left: -8%; animation: floatY 5s ease-in-out infinite 0.5s; }
.hero-float-card--2 { top: 16%; right: -6%; animation: floatY 7s ease-in-out infinite 1s; }

.hero-float-card--2 .live-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  margin-right: var(--s2);
  animation: pulseDot 1.5s ease-in-out infinite;
}

/* ── Trust Bar ────────────────────────────────────────────── */
.trust-bar {
  padding-block: var(--s12);
  border-top: 1px solid var(--light-border);
  border-bottom: 1px solid var(--light-border);
  background: var(--light-bg);
  overflow: hidden;
}

.trust-label {
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-faint);
  margin-bottom: var(--s6);
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--s4) var(--s8);
}

.logo-pill {
  padding: var(--s3) var(--s6);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-faint);
  letter-spacing: 0.05em;
  transition: border-color var(--t-base), color var(--t-base);
}

.logo-pill:hover { border-color: var(--border-hover); color: var(--text-muted); }

/* ── Problem Section ──────────────────────────────────────── */
.problem-section { background: #ffffff; }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--s5);
}

.pain-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s8) var(--s6);
  transition: border-color var(--t-base), transform var(--t-slow), box-shadow var(--t-slow);
}

.pain-card:hover {
  border-color: rgba(255, 80, 80, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.pain-icon {
  width: 48px; height: 48px;
  background: rgba(255,80,80,0.10);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s5);
  font-size: 1.375rem;
}

.pain-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--s3);
}

.pain-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Solution Section ─────────────────────────────────────── */
.solution-section { background: var(--bg-2); }

.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--s5);
}

.feature-card {
  background: var(--grad-card);
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s8) var(--s6);
  position: relative;
  overflow: hidden;
  transition: border-color var(--t-base), transform var(--t-slow), box-shadow var(--t-slow);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity var(--t-base);
}

.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-5px);
  box-shadow: var(--shadow-card), 0 0 30px rgba(0,255,136,0.08);
}

.feature-card:hover::before { opacity: 1; }

.feature-card--highlight {
  border-color: rgba(0,255,136,0.35);
  background: linear-gradient(135deg, rgba(0,255,136,0.07) 0%, var(--surface) 60%);
  box-shadow: 0 0 40px rgba(0,255,136,0.10);
}
.feature-card--highlight::before { opacity: 1; }

.badge-new {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--primary);
  color: var(--bg);
  border-radius: var(--r-full);
  padding: 2px 8px;
  vertical-align: middle;
  margin-left: var(--s2);
  line-height: 1.6;
}

.feature-icon {
  width: 52px; height: 52px;
  background: rgba(0,255,136,0.10);
  border: 1px solid rgba(0,255,136,0.20);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s5);
  font-size: 1.5rem;
}

.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--s3);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Niche Sections ───────────────────────────────────────── */
.niche-section { background: var(--bg); }

.niche-tabs {
  display: flex;
  justify-content: center;
  gap: var(--s3);
  margin-bottom: var(--s12);
  flex-wrap: wrap;
}

.niche-tab {
  padding: var(--s3) var(--s6);
  border-radius: var(--r-full);
  border: 1px solid var(--border);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--t-base);
  background: var(--surface);
}

.niche-tab.is-active,
.niche-tab:hover {
  background: rgba(0,255,136,0.10);
  border-color: var(--primary);
  color: var(--primary);
}

.niche-panel { display: none; }
.niche-panel.is-active { display: block; }

.niche-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.niche-split.reverse { direction: rtl; }
.niche-split.reverse > * { direction: ltr; }

.niche-content .niche-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(0,255,136,0.08);
  border: 1px solid rgba(0,255,136,0.20);
  border-radius: var(--r-full);
  padding: var(--s1) var(--s3);
  margin-bottom: var(--s5);
}

.niche-content h3 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: var(--s5);
}

.niche-content .lead-text {
  font-size: 1.0625rem;
  color: var(--text-muted);
  margin-bottom: var(--s8);
  line-height: 1.7;
}

.outcome-list { display: flex; flex-direction: column; gap: var(--s4); margin-bottom: var(--s8); }

.outcome-item {
  display: flex;
  align-items: flex-start;
  gap: var(--s4);
}

.outcome-check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: rgba(0,255,136,0.12);
  border: 1px solid rgba(0,255,136,0.30);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  font-size: 0.7rem;
  color: var(--primary);
}

.outcome-item p { font-size: 0.9375rem; color: var(--text); line-height: 1.6; }
.outcome-item strong { color: var(--white); }

.niche-visual {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s8);
  position: relative;
  overflow: hidden;
}

.niche-visual::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(0,255,136,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.metric-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--s5) var(--s6);
  margin-bottom: var(--s4);
}

.metric-card:last-child { margin-bottom: 0; }

.metric-label { font-size: 0.8125rem; color: var(--text-muted); margin-bottom: var(--s2); }

.metric-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.metric-value span { font-size: 1rem; color: var(--primary); margin-left: var(--s2); }

.metric-bar {
  height: 4px;
  background: var(--surface-3);
  border-radius: 2px;
  margin-top: var(--s3);
  overflow: hidden;
}

.metric-bar-fill {
  height: 100%;
  background: var(--grad-primary);
  border-radius: 2px;
  animation: barGrow 1.5s ease-out forwards;
  width: 0;
}

/* ── Services Section ─────────────────────────────────────── */
.services-section { background: var(--light-bg); }

.services-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s6);
}

.service-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  transition: border-color var(--t-base), box-shadow var(--t-slow);
}

.service-block:hover {
  border-color: var(--border-hover);
  box-shadow: 0 0 40px rgba(0,255,136,0.06);
}

.service-block--highlight {
  border-color: rgba(0,255,136,0.40);
  background: linear-gradient(135deg, rgba(0,255,136,0.08) 0%, var(--surface) 60%);
  box-shadow: 0 0 50px rgba(0,255,136,0.12);
  position: relative;
}
.service-block--highlight::after {
  content: 'Most Popular';
  position: absolute;
  top: -1px; right: var(--s6);
  background: var(--primary);
  color: var(--bg);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 0 0 var(--r-md) var(--r-md);
}

.service-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(0,255,136,0.10);
  color: var(--primary);
  border: 1px solid rgba(0,255,136,0.20);
  border-radius: var(--r-full);
  padding: var(--s1) var(--s3);
  margin-bottom: var(--s5);
}

.service-block h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--s4);
  line-height: 1.25;
}

.service-block > p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: var(--s8);
  line-height: 1.7;
}

.service-list { display: flex; flex-direction: column; gap: var(--s3); margin-bottom: var(--s8); }

.service-list li {
  display: flex;
  align-items: center;
  gap: var(--s3);
  font-size: 0.9375rem;
  color: var(--text);
}

.service-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 20px; height: 20px;
  background: rgba(0,255,136,0.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--primary);
}

/* ── How It Works ─────────────────────────────────────────── */
.hiw-section { background: var(--bg); }

.steps-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--s4);
  position: relative;
  padding-top: var(--s8);
}

.steps-track::before {
  content: '';
  position: absolute;
  top: calc(var(--s8) + 30px);
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);
  opacity: 0.4;
}

.step-item { text-align: center; position: relative; }

.step-number {
  width: 60px; height: 60px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 800;
  font-family: var(--font-mono);
  color: var(--primary);
  margin: 0 auto var(--s5);
  position: relative;
  z-index: 1;
  transition: background var(--t-base), box-shadow var(--t-base);
}

.step-item:hover .step-number {
  background: rgba(0,255,136,0.10);
  box-shadow: var(--shadow-glow-sm);
}

.step-item h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--s3);
}

.step-item p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── VSL Section ──────────────────────────────────────────── */
.vsl-section { background: var(--bg-2); }

.vsl-wrapper {
  max-width: 860px;
  margin-inline: auto;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card), 0 0 60px rgba(0,255,136,0.10);
  background: #000;
}

.demo-video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--r-xl);
}

/* ── Stats Section ────────────────────────────────────────── */
.stats-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s6);
  text-align: center;
}

.stat-item {
  padding: var(--s8) var(--s4);
  border-right: 1px solid var(--border);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  display: block;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  font-family: var(--font-mono);
  line-height: 1;
  margin-bottom: var(--s3);
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials-section { background: #ffffff; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--s5);
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s8) var(--s6);
  transition: border-color var(--t-base), transform var(--t-slow);
}

.testimonial-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.testimonial-card--featured {
  border-color: rgba(0,255,136,0.35);
  background: linear-gradient(135deg, rgba(0,255,136,0.06) 0%, var(--surface) 60%);
}

.testimonial-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--primary);
  color: var(--bg);
  border-radius: var(--r-full);
  padding: 3px 10px;
  margin-bottom: var(--s4);
}

.stars {
  color: #fbbf24;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: var(--s5);
}

.testimonial-card blockquote {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: var(--s6);
  border-left: 2px solid var(--primary);
  padding-left: var(--s4);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--s4);
}

.avatar-ring {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #020d07;
  flex-shrink: 0;
}

.testimonial-author strong { display: block; font-size: 0.9rem; color: var(--white); }
.testimonial-author span { font-size: 0.8125rem; color: var(--text-muted); }

.avatar-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(0,255,136,0.30);
  background: var(--surface);
  flex-shrink: 0;
  object-fit: cover;
}

.avatar-photo--sm {
  width: 36px;
  height: 36px;
}

/* ── Mini Testimonial Bar ─────────────────────────────────── */
.mini-testimonial-bar {
  background: rgba(0,255,136,0.05);
  border-top: 1px solid rgba(0,255,136,0.15);
  border-bottom: 1px solid rgba(0,255,136,0.15);
  padding: var(--s6) 0;
}

.mini-testimonial-inner {
  display: flex;
  align-items: center;
  gap: var(--s6);
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

.mini-stars {
  font-size: 0.875rem;
  letter-spacing: 2px;
  margin-bottom: 0;
  flex-shrink: 0;
}

.mini-testimonial-quote {
  font-size: 1rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.6;
  max-width: 600px;
}

.mini-testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--s3);
  flex-shrink: 0;
  white-space: nowrap;
}

.mini-testimonial-author span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.mini-testimonial-author strong {
  color: var(--white);
}

/* ── Lead Magnet Band ─────────────────────────────────────── */
.lead-magnet-band {
  padding-block: var(--section-py);
  background: linear-gradient(135deg, rgba(0,255,136,0.06) 0%, rgba(0,212,255,0.06) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.lead-magnet-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--secondary);
  background: rgba(0,212,255,0.10);
  border: 1px solid rgba(0,212,255,0.25);
  border-radius: var(--r-full);
  padding: var(--s1) var(--s4);
  margin-bottom: var(--s5);
}

.lead-magnet-band h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: var(--s5);
}

.lead-magnet-band p {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto var(--s8);
  line-height: 1.7;
}

.lead-magnet-band .micro-text {
  font-size: 0.8125rem;
  color: var(--text-faint);
  margin-top: var(--s4);
  margin-bottom: 0;
}

/* ── Lead Capture Form ────────────────────────────────────── */
.form-section { background: var(--light-bg); }

.form-wrapper {
  max-width: 760px;
  margin-inline: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: clamp(2rem, 5vw, 3.5rem);
  box-shadow: var(--shadow-card);
}

.form-header { text-align: center; margin-bottom: var(--s10); }

.urgency-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #ff6b35;
  background: rgba(255,107,53,0.10);
  border: 1px solid rgba(255,107,53,0.25);
  border-radius: var(--r-full);
  padding: var(--s1) var(--s4);
  margin-bottom: var(--s5);
  letter-spacing: 0.03em;
}

.form-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--s4);
  line-height: 1.2;
}

.form-header p { font-size: 1rem; color: var(--text-muted); }

.lead-form { display: flex; flex-direction: column; gap: var(--s5); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s5);
}

.form-field { display: flex; flex-direction: column; gap: var(--s2); }

.form-field label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}

.form-field input,
.form-field select {
  width: 100%;
  padding: 0.875rem var(--s4);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  color: var(--text);
  font-size: 0.9375rem;
  transition: border-color var(--t-base), box-shadow var(--t-base);
  -webkit-appearance: none;
  appearance: none;
}

.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%237a9980'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-field input::placeholder { color: var(--text-faint); }

.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,255,136,0.10);
}

.field-error {
  font-size: 0.8125rem;
  color: #ff6b6b;
  min-height: 1.2em;
}

.form-field input.is-error { border-color: #ff6b6b; }

.btn-spinner {
  display: none;
  width: 18px; height: 18px;
  border: 2px solid rgba(2,13,7,0.3);
  border-top-color: #020d07;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.btn.is-loading .btn-text { display: none; }
.btn.is-loading .btn-spinner { display: block; }

.form-disclaimer {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-faint);
}

.form-success,
.form-error {
  text-align: center;
  padding: var(--s8);
}

.form-success h3 { font-size: 1.5rem; color: var(--white); margin-bottom: var(--s3); }
.form-success p { color: var(--text-muted); }
.form-error p { color: #ff6b6b; }

.form-success-icon {
  width: 64px; height: 64px;
  background: rgba(0,255,136,0.12);
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto var(--s5);
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-section { background: var(--bg-2); }

.faq-container { max-width: 740px; }

.faq-list { display: flex; flex-direction: column; gap: var(--s3); }

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--t-base);
}

.faq-item:has(.faq-question[aria-expanded="true"]) { border-color: var(--border-hover); }

.faq-question {
  width: 100%;
  text-align: left;
  padding: var(--s6) var(--s6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  transition: color var(--t-fast);
}

.faq-question:hover { color: var(--primary); }

.faq-chevron {
  flex-shrink: 0;
  width: 20px; height: 20px;
  color: var(--text-muted);
  transition: transform var(--t-base);
}

.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow), padding var(--t-base);
}

.faq-answer.is-open { max-height: 300px; }

.faq-answer-inner {
  padding: 0 var(--s6) var(--s6);
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: var(--s5);
}

/* ── Sticky CTA ───────────────────────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: var(--s6);
  right: var(--s6);
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--t-slow), transform var(--t-slow);
  pointer-events: none;
}

.sticky-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding-top: var(--s20);
  padding-bottom: var(--s12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--s10);
  margin-bottom: var(--s12);
}

.footer-brand .footer-logo-text {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--s4);
  display: block;
}

.footer-brand .footer-logo-text span { color: var(--primary); }

.footer-logo-img {
  height: 40px;
  margin-bottom: var(--s4);
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--s6);
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: var(--s3);
}

.social-icon {
  width: 36px; height: 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  transition: border-color var(--t-fast), color var(--t-fast), background var(--t-fast);
}

.social-icon:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(0,255,136,0.06);
}

.footer-links-group h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: var(--s5);
}

.footer-links-group ul { display: flex; flex-direction: column; gap: var(--s3); }

.footer-links-group a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--t-fast);
}

.footer-links-group a:hover { color: var(--primary); }

.footer-bottom {
  padding-top: var(--s8);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s3);
}

.footer-bottom p { font-size: 0.8125rem; color: var(--text-faint); }

/* ── Page Hero (About/Blog) ───────────────────────────────── */
.page-hero {
  padding-top: calc(72px + 5rem);
  padding-bottom: var(--s20);
  text-align: center;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-glow);
  opacity: 0.5;
  pointer-events: none;
}

.page-hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: var(--s5);
  position: relative;
}

.page-hero p {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-inline: auto;
  position: relative;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .steps-track { grid-template-columns: repeat(3, 1fr); }
  .steps-track::before { display: none; }
  .services-split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s8); }
}

/* ── Why This Works ───────────────────────────────────────── */
.why-section { background: var(--bg-2); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--s6);
}

.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s8) var(--s6);
  transition: border-color var(--t-base), transform var(--t-slow);
}

.why-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.why-number {
  font-size: 2.5rem;
  font-weight: 900;
  font-family: var(--font-mono);
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--s4);
}

.why-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--s3);
  line-height: 1.4;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Guarantee ────────────────────────────────────────────── */
.guarantee-section { background: var(--bg); }

.guarantee-card {
  display: flex;
  align-items: flex-start;
  gap: var(--s8);
  background: linear-gradient(135deg, rgba(0,255,136,0.07) 0%, var(--surface) 60%);
  border: 1px solid rgba(0,255,136,0.30);
  border-radius: var(--r-xl);
  padding: clamp(2rem, 5vw, 3.5rem);
}

.guarantee-icon {
  font-size: 3.5rem;
  flex-shrink: 0;
  line-height: 1;
}

.guarantee-content .section-label { margin-bottom: var(--s4); }

.guarantee-content h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--s5);
  line-height: 1.2;
}

.guarantee-content p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 680px;
}

@media (max-width: 768px) {
  .guarantee-card { flex-direction: column; gap: var(--s5); }
}

@media (max-width: 768px) {
  .nav { padding: 0; top: 54px; }
  .nav-inner { height: 52px; gap: var(--s3); }
  .nav-logo-text { font-size: 1.6rem; }
  .nav-logo-img    { height: 38px; }
  .footer-logo-img { height: 32px; }
  .admin-logo-img  { height: 36px; }
  .nav-links { display: none; }
  .nav-actions .btn { display: none; }
  .hamburger { display: flex; margin-left: auto; }
  .nav-drawer { display: flex; }
  .nav-drawer.is-open { display: flex; }
  .nav-drawer:not(.is-open) { display: none; }
  .nav-drawer .btn { align-self: stretch; text-align: center; font-size: 1rem; padding: 0.9rem 1.5rem; margin-top: var(--s3); }

  .hero { padding-top: 0; min-height: unset; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; padding-top: 4rem; padding-bottom: var(--s8); gap: 0; }
  .hero-content { display: flex; flex-direction: column; align-items: center; gap: 0; }
  .hero-visual { display: none; }
  .hero-badge { font-size: 0.75rem; padding: 6px 10px; margin-bottom: var(--s5); }
  .hero-title { font-size: clamp(1.625rem, 7vw, 2rem); line-height: 1.22; margin-bottom: var(--s4); max-width: 360px; }
  .hero-subtitle { max-width: 100%; font-size: 0.9375rem; line-height: 1.65; margin-bottom: var(--s8); }
  .hero-cta-group { justify-content: center; flex-direction: column; align-items: stretch; margin-bottom: var(--s3); gap: var(--s3); width: 100%; }
  .hero-cta-group .btn-lg { width: 100%; justify-content: center; white-space: normal; line-height: 1.35; padding: 0.9rem 1.25rem; }
  .hero-cta-group .btn-ghost { display: flex; width: 100%; justify-content: center; }
  .hero-micro-text { font-size: 0.75rem; margin-bottom: var(--s3); }
  .hero-social-proof { justify-content: center; font-size: 0.75rem; flex-wrap: wrap; gap: var(--s2); }
  .show-mobile { display: inline; }
  .show-desktop { display: none; }

  .niche-split,
  .niche-split.reverse { grid-template-columns: 1fr; direction: ltr; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }

  .steps-track { grid-template-columns: 1fr 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .sticky-cta { bottom: var(--s4); right: var(--s4); }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none !important; }
  .steps-track { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
  .solution-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
}

/* ── Light Section Overrides ──────────────────────────────── */

/* Trust Bar */
.trust-bar .trust-label { color: var(--light-muted); }
.trust-bar .logo-pill {
  background: var(--light-surface-2);
  border-color: var(--light-border);
  color: var(--light-muted);
}
.trust-bar .logo-pill:hover { border-color: var(--primary); color: var(--light-text); }
.trust-bar .section-label { color: var(--primary); }

/* Problem Section */
.problem-section .section-label { color: var(--primary); }
.problem-section h2 { color: var(--light-text); }
.problem-section .section-subtitle { color: var(--light-muted); }
.problem-section .pain-card {
  background: var(--light-surface);
  border-color: var(--light-border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.problem-section .pain-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.10);
}
.problem-section .pain-card h3 { color: var(--light-text); }
.problem-section .pain-card p { color: var(--light-muted); }

/* Services Section */
.services-section { background: #0b0f0e; }
.services-section .section-label { color: var(--primary); }
.services-section h2 { color: var(--white); }
.services-section .section-subtitle { color: var(--text-muted); }
.services-section .services-nav-item { color: var(--text-muted); border-color: var(--border); }
.services-section .services-nav-item.is-active,
.services-section .services-nav-item:hover { color: var(--primary); border-color: var(--primary); background: rgba(0,229,168,0.06); }
.services-section .service-panel-content h3 { color: var(--white); }
.services-section .service-panel-content p { color: var(--text-muted); }
.services-section .service-panel-content li { color: var(--text); }
.services-section .service-panel-visual {
  background: var(--surface-2);
  border-color: var(--border);
}
.services-section .service-panel-stat strong { color: var(--white); }
.services-section .service-panel-stat span { color: var(--text-muted); }
.services-section .services-split { background: transparent; }

/* Service cards on dark background */
.services-section .service-block {
  background: #0f1a17;
  border-color: var(--border);
}
.services-section .service-block:hover {
  border-color: var(--border-hover);
  box-shadow: 0 0 40px rgba(0,229,168,0.08);
}
.services-section .service-block--highlight {
  background: linear-gradient(135deg, #0f1a17, #12352d);
  border-color: rgba(0,229,168,0.40);
  box-shadow: 0 0 50px rgba(0,229,168,0.14);
}
.services-section .service-block--highlight::after {
  background: #00e5a8;
  color: #00291f;
}
.services-section .service-block h3 { color: #ffffff; }
.services-section .service-block > p { color: var(--text-muted); }
.services-section .service-block--highlight h3 { color: #ffffff; }
.services-section .service-block--highlight > p { color: #e6f2ee; }
.services-section .service-block--highlight .service-list li { color: #e6f2ee; }
.services-section .service-list li { color: var(--text); }
.services-section .service-list li::before {
  background: rgba(0,229,168,0.12);
  color: #00e5a8;
}

/* Testimonials Section */
.testimonials-section .section-label { color: var(--primary); }
.testimonials-section h2 { color: var(--light-text); }
.testimonials-section .section-subtitle { color: var(--light-muted); }
.testimonials-section .testimonial-card {
  background: var(--light-surface);
  border-color: var(--light-border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.testimonials-section .testimonial-card:hover {
  border-color: var(--primary);
  box-shadow: 0 6px 24px rgba(0,229,168,0.12);
}
.testimonials-section .testimonial-card--featured {
  border-color: rgba(0,229,168,0.4);
  background: linear-gradient(135deg, rgba(0,229,168,0.06) 0%, var(--light-surface) 60%);
}
.testimonials-section .testimonial-card blockquote { color: var(--light-text); }
.testimonials-section .testimonial-author strong { color: var(--light-text); }
.testimonials-section .testimonial-author span { color: var(--light-muted); }

/* Form Section */
.form-section .section-label { color: var(--primary); }
.form-section h2 { color: var(--light-text) !important; }
.form-section .section-subtitle,
.form-section .form-header p { color: var(--light-muted); }
.form-section .form-wrapper {
  background: var(--light-surface);
  border-color: var(--light-border);
  box-shadow: 0 4px 32px rgba(0,0,0,0.08);
}
.form-section .form-field label { color: var(--light-text); }
.form-section .form-field input,
.form-section .form-field select {
  background: var(--light-bg-2);
  border-color: var(--light-border);
  color: var(--light-text);
}
.form-section .form-field input::placeholder { color: var(--light-faint); }
.form-section .form-field input:focus,
.form-section .form-field select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,229,168,0.12);
}
.form-section .form-footer p { color: var(--light-muted); }

/* Responsive text visibility */
.show-mobile { display: none; }
.show-desktop { display: inline; }

/* Utility classes */
.section-light {
  background: var(--light-bg);
  color: var(--light-text);
}
.section-light-alt {
  background: var(--light-bg-2);
  color: var(--light-text);
}
.section-dark-alt {
  background: var(--bg-2);
  color: var(--text);
}

/* ── Founder Section ─────────────────────────────────────── */
.founder-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  margin-top: 80px;
}

.founder-left {
  flex: 1;
}

.founder-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.founder-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 25px;
  border-radius: 20px;
  text-align: center;
  max-width: 320px;
  backdrop-filter: blur(10px);
}

.founder-card img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  margin-bottom: 15px;
}

.founder-card h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.founder-card .role {
  font-size: 14px;
  color: #888;
  margin-bottom: 10px;
}

.founder-card .quote {
  font-size: 14px;
  color: #ccc;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .founder-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .founder-right {
    margin-top: 30px;
  }
}
