/* ============================================================
   CallRelayHQ — Landing Page Stylesheet
   Deep navy dark theme. ONE accent: #00FFD1 (teal) on CTAs.
   ============================================================ */

@keyframes slideUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Root Variables ───────────────────────────────────── */
:root {
  --c-bg:       #05152F;   /* page background */
  --c-surface:  #122440;   /* cards, demo card */
  --c-problem:  #0A1F3D;   /* alternate section bg */
  --c-dark:     #020B1A;   /* final CTA section + button text */
  --c-text:     #F9FAFB;   /* primary text */
  --c-body:     #A1A7B3;   /* body / secondary text */
  --c-muted:    #A1A7B3;   /* muted text */
  --c-subtle:   #6E7891;   /* very muted */
  --c-border:   rgba(255, 255, 255, 0.08);
  --c-border-m: rgba(255, 255, 255, 0.12);
  --c-border-s: rgba(255, 255, 255, 0.18);
  --c-yellow:   #00FFD1;   /* accent — teal/cyan — CTA buttons only */
  --c-yellow-h: #00E8BC;   /* accent hover */
  --c-success:  #34D399;
  --c-danger:   #F87171;

  --radius-sm:  8px;
  --radius:     14px;
  --radius-lg:  22px;
  --max-w:      1100px;

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", sans-serif;

  --shadow-sm: 0 1px 4px rgba(0,0,0,0.40), 0 1px 2px rgba(0,0,0,0.30);
  --shadow:    0 4px 20px rgba(0,0,0,0.50), 0 1px 4px rgba(0,0,0,0.30);
  --shadow-lg: 0 24px 48px rgba(0,0,0,0.60), 0 4px 12px rgba(0,0,0,0.35);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }


/* ─── Layout Container ─────────────────────────────────── */
.l-container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

.text-center { text-align: center; }


/* ─── Typography Scale ─────────────────────────────────── */
h1, h2, h3, h4 {
  color: var(--c-text);
  letter-spacing: -0.02em;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 14px;
}

/* Used on every section headline */
.section-h2 {
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--c-body);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto;
}

/* Group: eyebrow + h2 + optional sub — generous bottom margin */
.section-header { margin-bottom: 72px; }


/* ─── Buttons ──────────────────────────────────────────── */
/* Yellow accent lives HERE and ONLY here */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-yellow);
  color: var(--c-dark);
  font-size: 1rem;
  font-weight: 700;
  padding: 15px 32px;
  border: none;
  border-radius: var(--radius-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.15s;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.btn-primary:hover {
  background: var(--c-yellow-h);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}
.btn-primary:active  { transform: scale(0.98); box-shadow: none; }

.btn-sm   { padding: 9px 20px; font-size: 0.875rem; }
.btn-lg   { padding: 18px 44px; font-size: 1.1rem; }
.btn-full { width: 100%; }


/* ─── Navigation ───────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 21, 47, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--c-border);
  transition: box-shadow 0.25s;
}
.site-nav.scrolled {
  box-shadow: 0 1px 24px rgba(0, 0, 0, 0.40);
}

.site-nav .l-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
  gap: 24px;
}

.nav-logo {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--c-text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-muted);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--c-text); }


/* ════════════════════════════════════════════════════════
   HERO
   Two-column: left = copy, right = voice demo card
   ════════════════════════════════════════════════════════ */
.hero {
  padding: 112px 0 104px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* ─── Hero Copy ────────────────────────────────────────── */

/* Badge: grayscale pill — no color accent dot */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-surface);
  border: 1px solid var(--c-border-m);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--c-muted);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}
/* Tiny live-pulse indicator — charcoal, not yellow */
.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--c-text);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.4;
}

.hero-h1 {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
  color: var(--c-text);
}

.hero-sub {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--c-body);
  margin-bottom: 40px;
  max-width: 420px;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.hero-trust {
  font-size: 0.82rem;
  color: var(--c-muted);
  line-height: 1.5;
}


/* ─── Voice Demo Card ──────────────────────────────────── */
.hero-demo-wrap {
  display: flex;
  justify-content: center;
}

.demo-card {
  background: var(--c-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-lg);
  padding: 36px;
  width: 100%;
  max-width: 400px;
}

/* "Live Agent Demo" label */
.demo-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-subtle);
  margin-bottom: 8px;
}

/* "▶ Hear a real call" prompt above tabs */
.demo-hear-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--c-yellow);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

/* Tone tabs */
.demo-tabs {
  display: flex;
  gap: 2px;
  background: var(--c-problem);
  border-radius: var(--radius-sm);
  padding: 3px;
  margin-bottom: 28px;
}

.demo-tab {
  flex: 1;
  padding: 8px 10px;
  background: none;
  border: none;
  border-radius: 6px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--c-muted);
  transition: color 0.15s, background 0.15s, box-shadow 0.15s;
}
/* Active: white pill — no color, just contrast */
.demo-tab.active {
  background: var(--c-surface);
  color: var(--c-text);
  font-weight: 600;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.demo-tab:hover:not(.active) {
  color: var(--c-body);
}

/* Player row */
.demo-player {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.demo-play-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--c-border-m);
  background: var(--c-surface);
  color: var(--c-text);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s, border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.demo-play-btn:hover {
  background: var(--c-dark);
  color: #fff;
  border-color: var(--c-dark);
  transform: scale(1.06);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.demo-play-btn svg { pointer-events: none; }

/* Waveform bars — dark when playing, muted at rest */
.demo-waveform {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 44px;
  flex: 1;
}

.wbar {
  flex: 1;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.10);
  transition: background 0.3s;
}
.wbar:nth-child(1) { height: 22px; }
.wbar:nth-child(2) { height: 36px; }
.wbar:nth-child(3) { height: 14px; }
.wbar:nth-child(4) { height: 30px; }
.wbar:nth-child(5) { height: 18px; }

.demo-waveform.playing .wbar {
  background: var(--c-yellow);
  animation: waveAnim 0.7s ease-in-out infinite alternate;
}
.demo-waveform.playing .wbar:nth-child(1) { animation-delay: 0.00s; }
.demo-waveform.playing .wbar:nth-child(2) { animation-delay: 0.12s; }
.demo-waveform.playing .wbar:nth-child(3) { animation-delay: 0.24s; }
.demo-waveform.playing .wbar:nth-child(4) { animation-delay: 0.36s; }
.demo-waveform.playing .wbar:nth-child(5) { animation-delay: 0.48s; }

@keyframes waveAnim {
  0%   { height: 6px;  }
  100% { height: 40px; }
}

/* Transcript */
.demo-transcript {
  min-height: 72px;
  border-top: 1px solid var(--c-border);
  padding-top: 18px;
  opacity: 0;
  transition: opacity 0.5s ease 0.1s;
}
.demo-transcript.visible { opacity: 1; }
.demo-transcript p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--c-body);
  font-style: italic;
}


/* ════════════════════════════════════════════════════════
   PROBLEM — "Missed Calls Cost Agents Thousands"
   Slightly darker bg, 3 large stat cards
   ════════════════════════════════════════════════════════ */
.section-problem {
  background: var(--c-problem);
  padding: 128px 0;
}

.section-problem .section-h2 {
  text-align: center;
  margin-bottom: 72px;
}

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

.stat-card {
  background: var(--c-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
  padding: 44px 36px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* The number dominates — let it */
.stat-number {
  font-size: clamp(4rem, 6vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--c-text);
  margin-bottom: 14px;
}

.stat-desc {
  font-size: 0.975rem;
  line-height: 1.55;
  color: var(--c-body);
  max-width: 200px;
}


/* ════════════════════════════════════════════════════════
   HOW IT WORKS — 3 horizontal steps
   White background
   ════════════════════════════════════════════════════════ */
.section-white {
  background: var(--c-surface);
  padding: 128px 0;
}

.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
  position: relative;
  padding: 0 36px;
}

/* Ghost number — extremely faint, big, purely decorative */
.step-num-bg {
  position: absolute;
  top: -18px;
  left: 28px;
  font-size: 7rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.step-icon {
  font-size: 1.75rem;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.step-title {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.step-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--c-body);
  position: relative;
  z-index: 1;
}

.step-arrow {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.10);
  margin-top: 30px;
  flex-shrink: 0;
  align-self: flex-start;
}


/* ════════════════════════════════════════════════════════
   FEATURES — "Your AI Works While You Work"
   2-col card grid, #F8F9FA background
   ════════════════════════════════════════════════════════ */
.section-features {
  background: var(--c-bg);
  padding: 128px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.feature-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* Teal circle check */
.feature-check {
  width: 28px;
  height: 28px;
  background: var(--c-yellow);
  color: var(--c-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  color: var(--c-text);
}

.feature-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--c-body);
}


/* ════════════════════════════════════════════════════════
   VOICE GALLERY — 4 voice cards, white background
   Selected card gets subtle yellow border (selection UI)
   ════════════════════════════════════════════════════════ */
.voices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.voice-gallery-card {
  background: var(--c-surface);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius);
  padding: 26px;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s ease, box-shadow 0.2s ease;
}
.voice-gallery-card:hover {
  border-color: var(--c-border-s);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
/* Selected: yellow border — the one place yellow appears outside buttons,
   because it's direct user feedback for which voice is chosen */
.voice-gallery-card.selected {
  border-color: var(--c-yellow);
  box-shadow: 0 0 0 3px rgba(0, 255, 209, 0.20);
}

.vgc-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

/* Play button: dark on hover, dark when card is selected */
.vgc-play-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--c-border-m);
  background: var(--c-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text);
  flex-shrink: 0;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  cursor: pointer;
}
.vgc-play-btn:hover {
  background: var(--c-dark);
  border-color: var(--c-dark);
  color: #fff;
}
/* Selected card's play button → dark fill, not yellow */
.voice-gallery-card.selected .vgc-play-btn {
  background: var(--c-text);
  border-color: var(--c-text);
  color: #fff;
}

.vgc-name {
  font-size: 0.975rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  display: block;
  margin-bottom: 4px;
}

/* All tags: uniform grayscale — no colored labels */
.vgc-tag {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}
.vgc-tag-luxury,
.vgc-tag-friendly,
.vgc-tag-professional,
.vgc-tag-corporate {
  background: rgba(255, 255, 255, 0.08);
  color: var(--c-muted);
}

.vgc-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--c-body);
}


/* ════════════════════════════════════════════════════════
   ROI CALCULATOR — widget above pricing card
   ════════════════════════════════════════════════════════ */
.roi-calc {
  max-width: 520px;
  margin: 0 auto 52px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px;
  padding: 36px 40px;
}

.roi-calc-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #F9FAFB;
  text-align: center;
  margin: 0 0 28px;
  letter-spacing: -0.01em;
}

/* Slider */
.roi-slider-row { margin-bottom: 20px; }

.roi-slider-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.roi-slider-label-row label {
  font-size: 0.85rem;
  color: #9CA3AF;
  font-weight: 500;
}
.roi-number-input {
  width: 60px;
  background: rgba(0,255,209,0.07);
  border: 1px solid rgba(0,255,209,0.25);
  border-radius: 8px;
  color: #00FFD1;
  font-size: 1rem;
  font-weight: 800;
  text-align: center;
  padding: 5px 4px;
  -moz-appearance: textfield;
}
.roi-number-input::-webkit-outer-spin-button,
.roi-number-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.roi-number-input:focus { outline: none; border-color: #00FFD1; }

input[type="range"]#roi-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 5px;
  border-radius: 5px;
  background: rgba(255,255,255,0.1); /* overridden by JS */
  outline: none;
  cursor: pointer;
}
input[type="range"]#roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #00FFD1;
  cursor: pointer;
  box-shadow: 0 0 0 4px rgba(0,255,209,0.18);
  transition: box-shadow 0.15s;
}
input[type="range"]#roi-slider::-webkit-slider-thumb:hover {
  box-shadow: 0 0 0 6px rgba(0,255,209,0.28);
}
input[type="range"]#roi-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #00FFD1;
  border: none;
  cursor: pointer;
}

/* Assumptions */
.roi-assumptions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin-bottom: 24px;
  padding: 11px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  font-size: 0.8rem;
  color: #6B7280;
}
.roi-assumptions strong { color: #9CA3AF; font-weight: 600; }
.roi-assumptions-divider { color: rgba(255,255,255,0.15); }

/* Results */
.roi-result {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
}
.roi-result-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.roi-result-row:last-child { border-bottom: none; }
.roi-result-highlight { background: rgba(0,255,209,0.06); }

.roi-label { font-size: 0.85rem; color: #9CA3AF; }
.roi-label-bold { font-size: 0.95rem; font-weight: 700; color: #F9FAFB; }

.roi-value {
  font-size: 1.1rem;
  font-weight: 800;
  color: #00FFD1;
  font-variant-numeric: tabular-nums;
  transition: color 0.2s;
}
.roi-value-muted { color: #6B7280; font-size: 0.9rem; font-weight: 500; }
.roi-value-xl {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #00FFD1;
  text-shadow: 0 0 24px rgba(0,255,209,0.35);
}

/* Mobile */
@media (max-width: 540px) {
  .roi-calc { padding: 28px 20px; }
}

/* ════════════════════════════════════════════════════════
   PRICING — Single centered card, max 480px
   ════════════════════════════════════════════════════════ */
.section-pricing {
  background: var(--c-bg);
  padding: 128px 0;
}

.pricing-card-wrap {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.pricing-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border-m);
  border-radius: var(--radius-lg);
  padding: 52px 48px;
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow);
}

.pricing-plan-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 24px;
}

.pricing-price-row {
  display: flex;
  align-items: flex-start;
  gap: 3px;
  margin-bottom: 8px;
  line-height: 1;
}
.pricing-dollar {
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 10px;
  color: var(--c-text);
  letter-spacing: -0.02em;
}
.pricing-amount {
  font-size: 5.5rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--c-text);
  line-height: 1;
}
.pricing-period {
  font-size: 1rem;
  color: var(--c-muted);
  margin-top: 44px;
  font-weight: 500;
}

.pricing-divider {
  height: 1px;
  background: var(--c-border);
  margin: 32px 0;
}

.pricing-features {
  list-style: none;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--c-body);
}
/* Teal check circles on pricing list */
.pricing-features li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: var(--c-yellow);
  color: var(--c-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* "Most agents are losing…" stat above ROI calc */
.roi-above-stat {
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-body);
  margin: 0 auto 24px;
  max-width: 480px;
  line-height: 1.6;
}

/* Stacked ROI value + context note */
.roi-value-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}
.roi-context-note {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(0, 255, 209, 0.60);
  letter-spacing: -0.01em;
}

/* Disclaimer below ROI result */
.roi-below-note {
  font-size: 0.78rem;
  color: var(--c-subtle);
  text-align: center;
  margin: -8px 0 20px;
  line-height: 1.5;
}

/* "Close just 1 extra deal" anchor above pricing card */
.pricing-deal-math {
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-yellow);
  margin: 0 auto 28px;
  letter-spacing: -0.01em;
}

.pricing-includes {
  font-size: 0.82rem;
  color: var(--c-body);
  margin: 6px 0 0;
  letter-spacing: -0.01em;
}

.pricing-subtext {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-body);
  margin-top: 18px;
  margin-bottom: 6px;
}

.pricing-trust {
  text-align: center;
  font-size: 0.82rem;
  color: var(--c-muted);
}


/* ════════════════════════════════════════════════════════
   FINAL CTA — Only dark section on page
   ════════════════════════════════════════════════════════ */
.section-dark-cta {
  background: var(--c-dark);
  padding: 128px 0;
}

.dark-cta-h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #FFFFFF;
  margin-bottom: 40px;
  line-height: 1.08;
}

.dark-cta-trust {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.40);
  margin-top: 18px;
  letter-spacing: 0.01em;
}


/* ════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  padding: 36px 0;
}

.site-footer .l-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--c-text);
}

.footer-links {
  display: flex;
  gap: 28px;
}
.footer-links a {
  font-size: 0.875rem;
  color: var(--c-muted);
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--c-text); }

.footer-copy {
  font-size: 0.82rem;
  color: var(--c-subtle);
}


/* ════════════════════════════════════════════════════════
   SCROLL ANIMATIONS  (IntersectionObserver targets)
   Fade up — subtle, 0.6s. Staggered for grids.
   ════════════════════════════════════════════════════════ */
[data-scroll] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
/* Both class names trigger visibility — in-view via observer/scroll,
   visible via the 1s force-all timeout safety net */
[data-scroll].in-view,
[data-scroll].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Grid stagger delays */
.stats-grid  .stat-card:nth-child(2)       { transition-delay: 0.10s; }
.stats-grid  .stat-card:nth-child(3)       { transition-delay: 0.20s; }

.features-grid .feature-card:nth-child(2) { transition-delay: 0.07s; }
.features-grid .feature-card:nth-child(3) { transition-delay: 0.11s; }
.features-grid .feature-card:nth-child(4) { transition-delay: 0.15s; }
.features-grid .feature-card:nth-child(5) { transition-delay: 0.19s; }
.features-grid .feature-card:nth-child(6) { transition-delay: 0.23s; }

.voices-grid .voice-gallery-card:nth-child(2) { transition-delay: 0.08s; }
.voices-grid .voice-gallery-card:nth-child(3) { transition-delay: 0.16s; }
.voices-grid .voice-gallery-card:nth-child(4) { transition-delay: 0.24s; }

.steps-row .step:nth-child(3) { transition-delay: 0.10s; }
.steps-row .step:nth-child(5) { transition-delay: 0.20s; }


/* ════════════════════════════════════════════════════════
   ONBOARDING OVERLAY (5-step modal)
   Dark theme — intentionally separate from the light landing.
   DO NOT EDIT without coordinating with index.html logic.
   ════════════════════════════════════════════════════════ */

.ob-overlay {
  --ob-bg:      #05152F;
  --ob-surface: #122440;
  --ob-border:  rgba(255,255,255,0.08);
  --ob-primary: #00FFD1;
  --ob-text:    #F9FAFB;
  --ob-muted:   #A1A7B3;
  --ob-success: #34d399;
  --ob-danger:  #f87171;
}

.ob-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}
.ob-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.ob-panel {
  background: #122440;
  color: #F9FAFB;
  width: 100%;
  max-width: 560px;
  max-height: 92dvh;
  border-radius: 20px 20px 0 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(48px);
  transition: transform 0.3s cubic-bezier(0.34, 1.3, 0.64, 1);
}
.ob-overlay.open .ob-panel { transform: translateY(0); }

@media (min-width: 600px) {
  .ob-overlay { align-items: center; }
  .ob-panel   { border-radius: 20px; max-height: 88vh; }
}

.ob-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.ob-logo         { font-weight: 700; font-size: 1rem; color: #F9FAFB; }
.ob-step-counter { color: #A1A7B3; font-size: 0.85rem; font-weight: 500; }
.ob-close-btn {
  background: none; border: none; cursor: pointer;
  color: #A1A7B3; font-size: 1rem; padding: 6px 8px;
  border-radius: 6px; transition: background 0.15s, color 0.15s;
}
.ob-close-btn:hover { background: rgba(255,255,255,0.08); color: #F9FAFB; }

.ob-progress-track { height: 3px; background: rgba(255,255,255,0.08); flex-shrink: 0; }
.ob-progress-fill  {
  height: 100%;
  background: #00FFD1;
  width: 20%;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ob-body {
  flex: 1;
  overflow-y: auto;
  padding: 28px 24px 8px;
  -webkit-overflow-scrolling: touch;
}

.ob-step-title    { font-size: 1.45rem; font-weight: 800; line-height: 1.2; margin-bottom: 6px; color: #F9FAFB; }
.ob-step-subtitle { color: #A1A7B3; font-size: 0.925rem; margin-bottom: 22px; }

.ob-trust {
  display: inline-flex; align-items: center; gap: 5px;
  color: #34d399; font-size: 0.83rem; font-weight: 600; margin-bottom: 22px;
}
.ob-trust::before { content: '⚡'; }

.ob-tab-row {
  display: flex; border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px; overflow: hidden; margin-bottom: 20px;
}
.ob-tab {
  flex: 1; padding: 10px 14px; background: none; border: none;
  color: #A1A7B3; font-size: 0.875rem; font-weight: 500; cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.ob-tab + .ob-tab  { border-left: 1px solid rgba(255,255,255,0.08); }
.ob-tab.active     { background: #00FFD1; color: #fff; font-weight: 600; }

.form-group        { margin-bottom: 20px; }
.form-group label  { display: block; font-size: 0.875rem; font-weight: 600; margin-bottom: 6px; color: #F9FAFB; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; background: #05152F; border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px; color: #F9FAFB; padding: 10px 14px;
  font-size: 0.95rem; outline: none; transition: border-color 0.2s;
  font-family: inherit;
}
.form-group input:focus,
.form-group textarea:focus  { border-color: #00FFD1; }
.form-group input.error,
.form-group textarea.error  { border-color: #f87171; }
.form-hint  { display: block; margin-top: 6px; color: #A1A7B3; font-size: 0.8rem; line-height: 1.4; }
.form-error { color: #f87171; font-size: 0.8rem; margin-top: 5px; display: block; }

.voice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.voice-card {
  display: flex; align-items: center; gap: 10px;
  background: #05152F; border: 1.5px solid rgba(255,255,255,0.08); border-radius: 10px;
  padding: 12px 12px 12px 10px; cursor: pointer; position: relative;
  transition: border-color 0.15s, background 0.15s; user-select: none;
}
.voice-card:hover    { border-color: #00FFD1; }
.voice-card.selected { border-color: #00FFD1; background: rgba(0,255,209,0.09); }

.voice-play {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.08); background: #122440; color: #00FFD1;
  font-size: 0.7rem; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.voice-play:hover { background: #00FFD1; border-color: #00FFD1; color: #fff; }
.voice-card.selected .voice-play { border-color: #00FFD1; }

.voice-info { flex: 1; min-width: 0; }
.voice-name { font-size: 0.875rem; font-weight: 700; color: #F9FAFB; }
.voice-tag  { font-size: 0.72rem; color: #A1A7B3; margin-top: 2px; line-height: 1.3; }

.voice-check {
  position: absolute; top: 7px; right: 9px;
  font-size: 0.72rem; color: #00FFD1; font-weight: 700;
  opacity: 0; transition: opacity 0.15s;
}
.voice-card.selected .voice-check { opacity: 1; }

.ob-field-label {
  font-size: 0.83rem; font-weight: 700; letter-spacing: 0.03em;
  text-transform: uppercase; color: #A1A7B3; margin-bottom: 10px;
}

.choice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.choice-card {
  background: #05152F; border: 1.5px solid rgba(255,255,255,0.08); border-radius: 10px;
  padding: 16px 8px; text-align: center; cursor: pointer;
  transition: border-color 0.15s, background 0.15s; user-select: none;
}
.choice-card:hover    { border-color: #00FFD1; }
.choice-card.selected { border-color: #00FFD1; background: rgba(0,255,209,0.09); }
.choice-icon  { font-size: 1.5rem; margin-bottom: 7px; }
.choice-label { font-size: 0.83rem; font-weight: 700; color: #F9FAFB; }
.choice-desc  { font-size: 0.72rem; color: #A1A7B3; margin-top: 4px; line-height: 1.3; }

.ob-summary {
  background: #05152F; border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; padding: 4px 16px; margin-bottom: 18px;
}
.ob-summary-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 16px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 0.875rem;
}
.ob-summary-row:last-child { border-bottom: none; }
.ob-summary-label { color: #A1A7B3; flex-shrink: 0; }
.ob-summary-value { font-weight: 600; text-align: right; word-break: break-word; color: #F9FAFB; }

.ob-live-notice {
  background: rgba(52,211,153,0.10); border: 1px solid rgba(52,211,153,0.25);
  border-radius: 8px; color: #34d399; font-size: 0.875rem; font-weight: 600;
  text-align: center; padding: 11px 16px; margin-bottom: 16px;
}
.ob-live-notice::before { content: '🟢  '; }

.ob-panel .btn,
.ob-checkout-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 100%; padding: 14px 28px; border-radius: 10px;
  font-size: 0.95rem; font-weight: 600; cursor: pointer;
  border: none; font-family: inherit; transition: background 0.2s, transform 0.1s;
}
.ob-checkout-btn         { background: #00FFD1; color: #fff; margin-bottom: 12px; }
.ob-checkout-btn:hover   { background: #00E8BC; }
.ob-checkout-btn:active  { transform: scale(0.98); }
.ob-checkout-btn.loading { opacity: 0.65; pointer-events: none; }

.ob-terms {
  text-align: center; color: #A1A7B3; font-size: 0.8rem; margin-bottom: 8px;
}
.ob-error {
  background: rgba(248,113,113,0.10); border: 1px solid rgba(248,113,113,0.30);
  color: #f87171; border-radius: 8px; padding: 10px 14px;
  font-size: 0.875rem; margin-top: 12px;
}

.ob-footer {
  display: flex; gap: 12px; padding: 14px 22px;
  border-top: 1px solid rgba(255,255,255,0.08); background: #122440; flex-shrink: 0;
}
.ob-back-btn {
  flex: 0 0 auto; min-width: 90px; background: transparent;
  border: 1.5px solid rgba(255,255,255,0.08); color: #A1A7B3; border-radius: 10px;
  padding: 12px 20px; font-size: 0.9rem; font-weight: 600;
  cursor: pointer; font-family: inherit; transition: border-color 0.15s, color 0.15s;
}
.ob-back-btn:hover { border-color: #00FFD1; color: #00FFD1; }
.ob-next-btn {
  flex: 1; background: #00FFD1; color: #fff; border: none;
  border-radius: 10px; padding: 12px 20px; font-size: 0.95rem;
  font-weight: 600; cursor: pointer; font-family: inherit;
  transition: background 0.15s;
}
.ob-next-btn:hover { background: #00E8BC; }

/* ─── Listing file upload button ─────────────────────── */
.ob-upload-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 8px;
  background: rgba(0, 255, 209, 0.08);
  border: 1px solid rgba(0, 255, 209, 0.25);
  color: #00FFD1; font-size: 0.82rem; font-weight: 600;
  font-family: inherit; cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.ob-upload-btn:hover {
  background: rgba(0, 255, 209, 0.16);
  border-color: rgba(0, 255, 209, 0.5);
}


/* ════════════════════════════════════════════════════════
   FAQ ACCORDION — section before final CTA
   ════════════════════════════════════════════════════════ */
.section-faq {
  background: var(--c-problem);
  padding: 128px 0;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--c-border);
}
.faq-item:first-child {
  border-top: 1px solid var(--c-border);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  color: var(--c-text);
  font-size: 1rem;
  font-weight: 600;
  padding: 22px 0;
  cursor: pointer;
  text-align: left;
  letter-spacing: -0.01em;
  transition: color 0.15s;
  font-family: inherit;
}
.faq-q:hover { color: var(--c-yellow); }

.faq-chevron {
  font-size: 1.5rem;
  font-weight: 300;
  flex-shrink: 0;
  color: var(--c-muted);
  line-height: 1;
  transition: transform 0.25s ease, color 0.15s;
}
.faq-item.open .faq-chevron {
  transform: rotate(45deg);
  color: var(--c-yellow);
}

.faq-a {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--c-body);
  padding: 0 40px 24px 0;
  max-width: 640px;
}
.faq-a a {
  color: var(--c-yellow);
  text-decoration: underline;
  text-underline-offset: 2px;
}


/* ════════════════════════════════════════════════════════
   CHAT HELP WIDGET — floating bottom-right
   ════════════════════════════════════════════════════════ */

@keyframes chat-pulse {
  0%, 100% { opacity: 1;   transform: scale(1);    }
  50%       { opacity: 0.4; transform: scale(0.72);  }
}

@keyframes chat-msg-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0);   }
}

/* Wrapper — stacks button below panel */
.chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 180;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  pointer-events: none; /* children opt-in */
}

/* Pulsing teal dot — reused in button + header */
.chat-pulse-dot {
  width: 8px;
  height: 8px;
  background: #00FFD1;
  border-radius: 50%;
  flex-shrink: 0;
  animation: chat-pulse 2s ease-in-out infinite;
}

/* ── Floating trigger button ─────────────────────────── */
#chat-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-surface);
  border: 1px solid rgba(0, 255, 209, 0.35);
  border-radius: 100px;
  color: var(--c-text);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 10px 20px;
  cursor: pointer;
  font-family: var(--font);
  box-shadow: 0 4px 20px rgba(0,0,0,0.45);
  pointer-events: all;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s;
}
#chat-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.55);
  border-color: rgba(0,255,209,0.65);
}

/* ── Chat panel ─────────────────────────────────────── */
#chat-panel {
  width: 340px;
  background: #122440;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  box-shadow: 0 24px 56px rgba(0,0,0,0.65);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  pointer-events: all;
  /* Slide-up entry */
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.22s ease, transform 0.28s cubic-bezier(0.34,1.3,0.64,1);
  /* Hide from screen readers and pointer when closed */
  visibility: hidden;
}
#chat-panel.open {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

/* Header */
.chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  background: #05152F;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}
.chat-header-title {
  flex: 1;
  font-size: 0.875rem;
  font-weight: 700;
  color: #F9FAFB;
  letter-spacing: -0.01em;
}
.chat-close-btn {
  background: none;
  border: none;
  color: #6B7280;
  font-size: 1rem;
  line-height: 1;
  padding: 3px 5px;
  border-radius: 5px;
  cursor: pointer;
  font-family: var(--font);
  transition: color 0.15s, background 0.15s;
}
.chat-close-btn:hover { color: #F9FAFB; background: rgba(255,255,255,0.07); }

/* Messages area */
.chat-messages {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 14px 6px;
  overflow-y: auto;
  max-height: 220px;
  scroll-behavior: smooth;
}
.chat-messages::-webkit-scrollbar        { width: 3px; }
.chat-messages::-webkit-scrollbar-track  { background: transparent; }
.chat-messages::-webkit-scrollbar-thumb  { background: rgba(255,255,255,0.10); border-radius: 2px; }

/* Bubbles */
.chat-msg {
  max-width: 88%;
  font-size: 0.84rem;
  line-height: 1.55;
  border-radius: 12px;
  padding: 9px 13px;
  animation: chat-msg-in 0.22s ease;
}
.chat-msg-bot {
  background: rgba(255,255,255,0.06);
  color: #D1D5DB;
  align-self: flex-start;
  border-bottom-left-radius: 3px;
}
/* Question label shown above each answer */
.chat-chip-label {
  background: transparent;
  color: #00FFD1;
  align-self: flex-start;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0 0 2px;
  border-radius: 0;
}
/* Inline CTA link in bot messages */
.chat-msg-bot a {
  color: #00FFD1;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  font-weight: 600;
}

/* Quick-reply chips */
.chat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 8px 14px 12px;
  flex-shrink: 0;
}
.chat-chip {
  background: transparent;
  border: 1px solid rgba(0,255,209,0.30);
  border-radius: 100px;
  color: #00FFD1;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  cursor: pointer;
  font-family: var(--font);
  white-space: nowrap;
  transition: background 0.15s, border-color 0.15s;
}
.chat-chip:hover {
  background: rgba(0,255,209,0.10);
  border-color: rgba(0,255,209,0.65);
}




/* ════════════════════════════════════════════════════════
   RESPONSIVE — Mobile first
   ════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .voices-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {

  /* Nav */
  .nav-links { display: none; }
  .site-nav .l-container { height: 56px; }

  /* Hero */
  .hero { padding: 64px 0 56px; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-h1   { font-size: 2.2rem; }
  .hero-sub  { font-size: 1rem; }
  .hero-cta-group { align-items: stretch; }
  .hero-cta-group .btn-primary { width: 100%; }
  .hero-trust { text-align: center; }
  .hero-demo-wrap { justify-content: stretch; }
  .demo-card { max-width: 100%; }

  /* Problem */
  .section-problem { padding: 72px 0; }
  .stats-grid  { grid-template-columns: 1fr; gap: 14px; }
  .stat-number { font-size: 3.75rem; }

  /* How it works */
  .section-white { padding: 72px 0; }
  .steps-row     { flex-direction: column; gap: 44px; }
  .step          { padding: 0; }
  .step-arrow    { display: none; }
  .step-num-bg   { font-size: 5rem; top: -10px; }

  /* Features */
  .section-features { padding: 72px 0; }
  .features-grid    { grid-template-columns: 1fr; }

  /* Voices */
  .voices-grid { grid-template-columns: 1fr 1fr; }

  /* Pricing */
  .section-pricing { padding: 72px 0; }
  .pricing-card    { padding: 36px 28px; }
  .pricing-amount  { font-size: 4.5rem; }

  /* Final CTA */
  .section-dark-cta { padding: 72px 0; }
  .section-dark-cta .btn-primary { width: 100%; }

  /* Section headers */
  .section-header { margin-bottom: 48px; }
  .section-h2     { font-size: 1.8rem; }

  /* FAQ */
  .section-faq { padding: 72px 0; }
  .faq-q { font-size: 0.95rem; padding: 18px 0; }
  .faq-a { padding-right: 0; }

  /* Footer */
  .site-footer .l-container { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-links { flex-wrap: wrap; gap: 16px; }

  /* Chat widget */
  .chat-widget { bottom: 16px; right: 16px; }
  #chat-panel  { width: 90vw; max-height: 70vh; overflow-y: auto; }
  .chat-messages { max-height: 180px; }

  /* Onboarding overlay */
  .voice-grid   { grid-template-columns: 1fr; }
  .choice-grid  { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
  .voices-grid { grid-template-columns: 1fr; }
  .hero-h1     { font-size: 1.95rem; }
}

/* ═══════════════════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════════════════ */
.section-contact {
  background: var(--color-bg);
  padding: 96px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Left copy */
.contact-h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--color-text);
  margin: 0 0 16px;
}

.contact-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-muted);
  margin: 0;
}

/* Right form */
.contact-form-wrap {
  background: var(--color-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 36px;
}

.contact-field {
  margin-bottom: 20px;
}

.contact-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-muted);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  background: var(--color-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 13px 15px;
  outline: none;
  transition: border-color 0.15s;
  resize: vertical;
  box-sizing: border-box;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--color-primary);
}

.contact-field textarea {
  min-height: 120px;
}

.cf-error {
  font-size: 0.85rem;
  color: #f87171;
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.25);
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 16px;
}

.cf-submit {
  width: 100%;
  background: var(--color-primary);
  color: #020B1A;
  border: none;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.15s;
}

.cf-submit:hover:not(:disabled)  { opacity: 0.9; transform: translateY(-1px); }
.cf-submit:active:not(:disabled) { transform: scale(0.98); }
.cf-submit:disabled               { opacity: 0.55; cursor: not-allowed; }

/* Success state */
.cf-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 48px 24px;
  color: var(--color-text);
}

.cf-success-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(0, 255, 209, 0.15);
  border: 2px solid var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.cf-success strong { font-size: 1.1rem; color: var(--color-primary); }
.cf-success span   { font-size: 0.9rem; color: var(--color-muted); }

/* Responsive */
@media (max-width: 800px) {
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-form-wrap { padding: 28px 24px; }
}
