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

:root {
  --ink: #0C0E12;
  --charcoal: #141820;
  --slate: #1C2230;
  --steel: #2A3042;
  --muted: #6B7280;
  --silver: #9CA3AF;
  --light: #D1D5DB;
  --cream: #F3F0EB;
  --white: #FAFAFA;
  --gold: #C8A24E;
  --gold-light: #D4B565;
  --gold-dim: rgba(200, 162, 78, 0.12);
  --gold-glow: rgba(200, 162, 78, 0.06);
  --red-soft: #E85D5D;
  --green-soft: #4ADE80;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--ink);
  color: var(--light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ========== UTILITY ========== */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 24px; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 600; font-size: 15px;
  padding: 16px 36px;
  border: none; border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.4px;
  transition: all 0.3s ease;
  text-transform: uppercase;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 162, 78, 0.25);
}
.btn-primary svg { width: 16px; height: 16px; }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent;
  color: var(--gold);
  font-family: var(--sans);
  font-weight: 600; font-size: 14px;
  padding: 14px 32px;
  border: 1.5px solid var(--gold);
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.4px;
  transition: all 0.3s ease;
  text-transform: uppercase;
}
.btn-secondary:hover {
  background: var(--gold-dim);
  transform: translateY(-1px);
}

.section-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-heading {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(32px, 5vw, 48px);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-sub {
  font-size: 17px;
  color: var(--silver);
  line-height: 1.7;
  max-width: 600px;
}

.gold-text { color: var(--gold); }
.white-text { color: var(--white); }

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== NAV ========== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  background: rgba(12, 14, 18, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200, 162, 78, 0.08);
  transition: all 0.3s ease;
}
.nav.scrolled {
  padding: 12px 0;
  background: rgba(12, 14, 18, 0.95);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1140px; margin: 0 auto; padding: 0 24px;
}
.nav-logo {
  font-family: var(--sans);
  font-weight: 700; font-size: 18px;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
}

.nav-cta {
  font-size: 13px; padding: 10px 24px;
  text-transform: uppercase;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -50%; right: -20%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(200, 162, 78, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 162, 78, 0.15), transparent);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content {
  animation: slideInLeft 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-dim);
  border: 1px solid rgba(200, 162, 78, 0.2);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 12px; font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 18px;
  color: var(--silver);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}
.hero-ctas {
  display: flex; gap: 16px; flex-wrap: wrap;
}
.hero-proof {
  margin-top: 48px;
  display: flex; align-items: center; gap: 16px;
}
.hero-proof-avatars {
  display: flex;
}
.hero-proof-avatars .avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  margin-left: -10px;
  background: var(--steel);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 600;
  color: var(--gold);
}
.hero-proof-avatars .avatar:first-child { margin-left: 0; }
.hero-proof-text {
  font-size: 13px; color: var(--muted); line-height: 1.5;
}
.hero-proof-text strong { color: var(--light); font-weight: 600; }

/* Hero Visual */
.hero-visual {
  position: relative;
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
  opacity: 0;
}
.phone-mockup {
  position: relative;
  width: 320px;
  margin: 0 auto;
  background: var(--charcoal);
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.06);
  padding: 16px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(200,162,78,0.05);
}
.phone-screen {
  background: var(--slate);
  border-radius: 20px;
  overflow: hidden;
}
.phone-header {
  background: linear-gradient(135deg, var(--charcoal), var(--slate));
  padding: 24px 20px 16px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.phone-header .ai-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
  font-size: 20px;
}
.phone-header h4 {
  font-family: var(--sans);
  font-size: 14px; font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}
.phone-header p {
  font-size: 11px; color: var(--green-soft);
  display: flex; align-items: center; justify-content: center; gap: 4px;
}
.phone-header p .live-dot {
  width: 5px; height: 5px;
  background: var(--green-soft);
  border-radius: 50%;
  animation: pulse 1.5s ease infinite;
}
.phone-messages {
  padding: 16px;
  display: flex; flex-direction: column; gap: 10px;
}
.msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 12.5px;
  line-height: 1.5;
  animation: fadeUp 0.5s ease forwards;
  opacity: 0;
}
.msg-ai {
  background: var(--steel);
  color: var(--light);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.msg-caller {
  background: var(--gold-dim);
  color: var(--gold-light);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  border: 1px solid rgba(200, 162, 78, 0.15);
}
.msg:nth-child(1) { animation-delay: 0.8s; }
.msg:nth-child(2) { animation-delay: 1.4s; }
.msg:nth-child(3) { animation-delay: 2.0s; }
.msg:nth-child(4) { animation-delay: 2.6s; }
.msg:nth-child(5) { animation-delay: 3.2s; }
.msg:nth-child(6) { animation-delay: 3.8s; }
.phone-footer {
  padding: 14px 20px;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 11px; color: var(--muted);
}
.phone-footer .booked-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.2);
  color: var(--green-soft);
  font-size: 10px; font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Floating stat cards */
.stat-float {
  position: absolute;
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  animation: float 4s ease infinite;
}
.stat-float-1 {
  top: 30px; left: -40px;
  animation-delay: 0s;
}
.stat-float-2 {
  bottom: 60px; right: -50px;
  animation-delay: 1.5s;
}
.stat-float .stat-num {
  font-family: var(--serif);
  font-size: 24px; font-weight: 700;
  color: var(--gold);
}
.stat-float .stat-label {
  font-size: 10px; color: var(--muted);
  text-transform: uppercase; letter-spacing: 1px;
  margin-top: 2px;
}

/* ========== PAIN SECTION ========== */
.pain-section {
  padding: 100px 0;
  position: relative;
}
.pain-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 100%;
  background: linear-gradient(180deg, var(--ink) 0%, var(--charcoal) 50%, var(--ink) 100%);
  z-index: -1;
}
.pain-header {
  text-align: center;
  margin-bottom: 64px;
}
.pain-header .section-sub {
  margin: 0 auto;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pain-card {
  background: var(--slate);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 16px;
  padding: 36px 28px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.pain-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red-soft), transparent);
  opacity: 0.5;
}
.pain-card:hover {
  border-color: rgba(232, 93, 93, 0.15);
  transform: translateY(-4px);
}
.pain-icon {
  width: 48px; height: 48px;
  background: rgba(232, 93, 93, 0.08);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.pain-card h3 {
  font-family: var(--serif);
  font-size: 22px; font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.pain-card p {
  font-size: 14px; color: var(--silver);
  line-height: 1.7;
}
.pain-stat {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.04);
  font-size: 13px; color: var(--muted);
}
.pain-stat strong {
  color: var(--red-soft);
  font-weight: 700;
  font-size: 22px;
  display: block;
  margin-bottom: 4px;
}

/* ========== SOLUTION SECTION ========== */
.solution-section {
  padding: 100px 0;
  position: relative;
}
.solution-section::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 162, 78, 0.12), transparent);
}
.solution-header {
  text-align: center;
  margin-bottom: 64px;
}
.solution-header .section-sub { margin: 0 auto; }

.solution-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.sol-card {
  background: var(--charcoal);
  border: 1px solid rgba(200, 162, 78, 0.08);
  border-radius: 20px;
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}
.sol-card:hover {
  border-color: rgba(200, 162, 78, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.sol-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.sol-card.primary-card { grid-row: span 2; display: flex; flex-direction: column; justify-content: space-between; }
.sol-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.sol-tag .tag-line {
  width: 20px; height: 1px; background: var(--gold);
}
.sol-card h3 {
  font-family: var(--serif);
  font-size: 28px; font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.sol-card.primary-card h3 {
  font-size: 34px;
}
.sol-card p {
  font-size: 15px; color: var(--silver); line-height: 1.7;
  margin-bottom: 28px;
}
.sol-features {
  list-style: none;
  display: flex; flex-direction: column; gap: 14px;
}
.sol-features li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: var(--light);
  line-height: 1.5;
}
.sol-features li .check {
  width: 20px; height: 20px; min-width: 20px;
  background: var(--gold-dim);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 11px;
  margin-top: 1px;
}

/* ========== HOW IT WORKS ========== */
.process-section {
  padding: 100px 0;
  background: var(--charcoal);
  position: relative;
}
.process-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 162, 78, 0.12), transparent);
}
.process-header {
  text-align: center;
  margin-bottom: 72px;
}
.process-header .section-sub { margin: 0 auto; }

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 36px; left: 60px; right: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold), var(--gold-dim));
  opacity: 0.3;
}
.process-step {
  text-align: center;
  position: relative;
}
.step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--slate);
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--serif);
  font-size: 28px; font-weight: 700;
  color: var(--gold);
  position: relative;
  z-index: 2;
}
.process-step h4 {
  font-family: var(--sans);
  font-size: 16px; font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.process-step p {
  font-size: 13px; color: var(--silver);
  line-height: 1.6;
  max-width: 220px;
  margin: 0 auto;
}
.process-step .step-time {
  font-size: 11px;
  color: var(--gold);
  font-weight: 600;
  margin-top: 12px;
  letter-spacing: 0.5px;
}

/* ========== RESULTS / STATS ========== */
.results-section {
  padding: 100px 0;
  position: relative;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.result-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--charcoal);
  border: 1px solid rgba(200, 162, 78, 0.06);
  border-radius: 16px;
  transition: all 0.3s ease;
}
.result-card:hover {
  border-color: rgba(200, 162, 78, 0.15);
  transform: translateY(-4px);
}
.result-num {
  font-family: var(--serif);
  font-size: 48px; font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.result-label {
  font-size: 13px; color: var(--silver);
  line-height: 1.5;
  max-width: 160px; margin: 0 auto;
}

/* ========== USE CASES ========== */
.use-cases-section {
  padding: 100px 0;
  background: var(--charcoal);
  position: relative;
}
.use-cases-section::before,
.use-cases-section::after {
  content: '';
  position: absolute; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 162, 78, 0.12), transparent);
}
.use-cases-section::before { top: 0; }
.use-cases-section::after { bottom: 0; }

.uc-header {
  text-align: center;
  margin-bottom: 64px;
}
.uc-header .section-sub { margin: 0 auto; }

.uc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.uc-card {
  background: var(--slate);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 16px;
  padding: 32px;
  display: flex; gap: 20px;
  transition: all 0.3s ease;
}
.uc-card:hover {
  border-color: rgba(200, 162, 78, 0.12);
}
.uc-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: var(--gold-dim);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.uc-card h4 {
  font-family: var(--sans);
  font-size: 16px; font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.uc-card p {
  font-size: 13px; color: var(--silver); line-height: 1.6;
}

/* ========== COMPARISON ========== */
.comparison-section {
  padding: 100px 0;
}
.comparison-header {
  text-align: center;
  margin-bottom: 48px;
}
.comparison-header .section-sub { margin: 0 auto; }

.comparison-table {
  max-width: 720px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(200, 162, 78, 0.1);
}
.comp-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.comp-row:last-child { border-bottom: none; }
.comp-row.comp-header {
  background: var(--charcoal);
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
}
.comp-row.comp-header .comp-cell:nth-child(3) { color: var(--gold); }
.comp-cell {
  padding: 16px 24px;
  font-size: 14px;
  color: var(--silver);
  display: flex; align-items: center;
}
.comp-cell:nth-child(2),
.comp-cell:nth-child(3) {
  text-align: center;
  justify-content: center;
}
.comp-row:nth-child(even) { background: rgba(255,255,255,0.015); }
.comp-x { color: var(--red-soft); font-size: 16px; font-weight: 700; }
.comp-check { color: var(--gold); font-size: 16px; font-weight: 700; }

/* ========== TESTIMONIALS ========== */
.testimonials-section {
  padding: 100px 0;
  background: var(--charcoal);
  position: relative;
}
.testimonials-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 162, 78, 0.12), transparent);
}
.test-header { text-align: center; margin-bottom: 56px; }
.test-header .section-sub { margin: 0 auto; }

.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.test-card {
  background: var(--slate);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 16px;
  padding: 32px;
  display: flex; flex-direction: column;
  transition: all 0.3s ease;
}
.test-card:hover {
  border-color: rgba(200, 162, 78, 0.12);
}
.test-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.test-quote {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--light);
  line-height: 1.6;
  font-style: italic;
  flex: 1;
  margin-bottom: 24px;
}
.test-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.test-avatar {
  width: 40px; height: 40px;
  background: var(--gold-dim);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
  color: var(--gold);
}
.test-name {
  font-size: 14px; font-weight: 600; color: var(--white);
}
.test-role {
  font-size: 12px; color: var(--muted);
}

/* ========== QUALIFY / FORM ========== */
.qualify-section {
  padding: 100px 0;
  position: relative;
}
.qualify-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(200, 162, 78, 0.04) 0%, transparent 70%);
  pointer-events: none;
}
.qualify-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.qualify-inner .section-sub {
  margin: 0 auto 48px;
}

.qualify-form {
  background: var(--charcoal);
  border: 1px solid rgba(200, 162, 78, 0.1);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: left;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group {
  display: flex; flex-direction: column; gap: 6px;
}
.form-group.full {
  grid-column: span 2;
}
.form-group label {
  font-size: 12px; font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--slate);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--white);
  outline: none;
  transition: all 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-dim);
}
.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%239CA3AF' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-group select option {
  background: var(--slate);
  color: var(--white);
}
.form-group textarea {
  resize: vertical;
  min-height: 80px;
}
.form-submit {
  text-align: center;
  margin-top: 32px;
}
.form-submit .btn-primary {
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding: 18px 36px;
}
.form-note {
  font-size: 12px; color: var(--muted);
  text-align: center;
  margin-top: 16px;
}

/* ========== BOOK CTA PANEL ========== */
.book-cta-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 56px 48px;
}
.book-cta-icon {
  margin-bottom: 24px;
  opacity: 0.9;
}
.book-cta-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.book-cta-desc {
  font-size: 15px;
  color: var(--silver);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 32px;
}
.book-cta-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
  text-align: left;
}
.book-cta-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--light);
}
.book-cta-feature svg {
  flex-shrink: 0;
}
.book-cta-btn {
  font-size: 17px;
  padding: 20px 48px;
  cursor: pointer;
  border: none;
  letter-spacing: 0.3px;
}
.book-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 162, 78, 0.25);
}

/* ========== FAQ ========== */
.faq-section {
  padding: 100px 0;
  background: var(--charcoal);
  position: relative;
}
.faq-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 162, 78, 0.12), transparent);
}
.faq-header { text-align: center; margin-bottom: 56px; }
.faq-header .section-sub { margin: 0 auto; }

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex; flex-direction: column; gap: 12px;
}
.faq-item {
  background: var(--slate);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item.active {
  border-color: rgba(200, 162, 78, 0.12);
}
.faq-q {
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer;
  gap: 16px;
}
.faq-q h4 {
  font-family: var(--sans);
  font-size: 15px; font-weight: 600;
  color: var(--white);
}
.faq-q .faq-toggle {
  width: 28px; height: 28px; min-width: 28px;
  border-radius: 50%;
  background: var(--gold-dim);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 16px;
  transition: all 0.3s ease;
}
.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-a-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--silver);
  line-height: 1.7;
}

/* ========== FINAL CTA ========== */
.final-cta {
  padding: 100px 0;
  text-align: center;
  position: relative;
}
.final-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(200, 162, 78, 0.05) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.final-cta h2 em {
  font-style: italic;
  color: var(--gold);
}
.final-cta p {
  font-size: 17px; color: var(--silver);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto; margin-right: auto;
  line-height: 1.7;
}

/* ========== FOOTER ========== */
.footer {
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  text-align: center;
}
.footer-inner {
  display: flex; flex-direction: column; align-items: center; gap: 20px;
  max-width: 1140px; margin: 0 auto; padding: 0 24px;
}
.footer-logo-link { display: block; }
.footer-logo-img {
  height: 44px; width: auto;
  opacity: 0.85; transition: opacity 0.3s ease;
}
.footer-logo-link:hover .footer-logo-img { opacity: 1; }
.footer p {
  font-size: 13px; color: var(--muted);
}
.footer a {
  color: var(--gold);
  text-decoration: none;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .phone-mockup { width: 280px; }
  .stat-float-1 { left: 0; }
  .stat-float-2 { right: 0; }
  .solution-cards { grid-template-columns: 1fr; }
  .sol-card.primary-card { grid-row: auto; }
}
@media (max-width: 768px) {
  .pain-grid { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-timeline::before { display: none; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .uc-grid { grid-template-columns: 1fr; }
  .test-grid { grid-template-columns: 1fr; }
  .comp-cell:first-child { font-size: 12px; }
  .comp-cell { padding: 12px 14px; font-size: 12px; }
  .form-row { grid-template-columns: 1fr; }
  .form-group.full { grid-column: auto; }
  .qualify-form { padding: 32px 24px; }
  .footer-inner { flex-direction: column; gap: 12px; }
}
@media (max-width: 480px) {
  .hero { padding: 100px 0 60px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary { width: 100%; justify-content: center; }
  .process-timeline { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .nav-cta { display: none; }
}
