@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ===== Design Tokens (computed hex from oklch) ===== */
:root {
  --bg: #05070b;
  --fg: #e1e5eb;
  --surface: #0d1014;
  --surface2: #12161d;
  --border: #232933;
  --muted: #88909c;
  --accent: #e49e22;
  --accent-hover: #cc8900;
  --green: #05df72;

  --orange: #f6722b;
  --red: #f14d4c;
  --radius: 8px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
img { max-width: 100%; height: auto; }

/* ===== Containers ===== */
.container { max-width: 72rem; margin: 0 auto; padding: 0 16px; }       /* max-w-6xl = 1152px */
.container-md { max-width: 56rem; margin: 0 auto; padding: 0 16px; }    /* max-w-4xl = 896px */

/* ===== Header ===== */
.header {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid rgba(35,41,51,0.5);
  background: rgba(5,7,11,0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.header-inner {
  max-width: 72rem; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px;
}
.logo { display: flex; align-items: center; gap: 10px; transition: opacity 0.2s; }
.logo:hover { opacity: 0.8; }
.logo-icon {
  width: 36px; height: 36px; border-radius: 12px;
  background: var(--accent); display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: var(--bg); flex-shrink: 0;
}
.logo-text { font-weight: 700; font-size: 18px; white-space: nowrap; }
.logo-text span { color: var(--accent); }
.logo-text-mobile { display: flex; flex-direction: column; line-height: 1.2; }
.logo-text-mobile .top { font-size: 14px; font-weight: 700; color: #fff; }
.logo-text-mobile .bot { font-size: 12px; font-weight: 600; color: var(--accent); }

/* ===== CTA Button ===== */
.btn-cta {
  background: var(--accent); color: var(--bg);
  font-weight: 800; padding: 16px 40px; border-radius: var(--radius-xl);
  font-size: 15px; letter-spacing: 0.05em; text-transform: uppercase;
  border: none; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden;
  cursor: pointer; line-height: 1.4;
}
.btn-cta::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent 50%);
  opacity: 0; transition: opacity 0.2s;
}
.btn-cta:hover {
  background: var(--accent-hover); transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(228,158,34,0.35), 0 4px 15px rgba(228,158,34,0.2);
}
.btn-cta:hover::before { opacity: 1; }
.btn-cta:active { transform: translateY(0) scale(0.98); transition-duration: 0.1s; }
.btn-cta:disabled { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none; }
/* Header sm variant */
.btn-cta.sm { padding: 8px 20px; font-size: 12px; letter-spacing: 0.6px; }

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(228,158,34,0.2); }
  50% { box-shadow: 0 0 40px rgba(228,158,34,0.35); }
}
.pulse-glow { animation: pulse-glow 3s ease-in-out infinite; }

/* ===== Card styles ===== */
.card-glow {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-2xl); transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2), 0 1px 3px rgba(0,0,0,0.1);
}
.card-glow:hover {
  border-color: rgba(228,158,34,0.4);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3), 0 0 20px rgba(228,158,34,0.08);
  transform: translateY(-4px);
}
.card-glass {
  background: rgba(13,16,20,0.6); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius-2xl);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15); transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-glass:hover {
  background: rgba(16,19,24,0.7); border-color: rgba(228,158,34,0.2);
  transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

/* ===== Sections ===== */
.section { padding: 64px 16px; }
.section-gradient { background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%); }
.section-gradient-reverse { background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%); }

/* ===== Divider ===== */
.divider-glow {
  height: 1px; max-width: 56rem; margin: 0 auto;
  background: linear-gradient(90deg, transparent, rgba(228,158,34,0.3), transparent);
}

/* ===== Text helpers ===== */
.accent-text { color: var(--accent); }
.text-muted { color: var(--muted); }
.text-green { color: var(--green); }
.text-red { color: var(--red); }
.text-orange { color: var(--orange); }

/* ===== Reveal animations ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s, transform 0.6s; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in { animation: fade-in-up 0.6s ease forwards; }

/* ===== Hero ===== */
.hero {
  position: relative; overflow: hidden;
  padding: 80px 16px 64px;
  min-height: 85vh; display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../hero-bg.jpg') center/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(5,7,11,0.85), rgba(5,7,11,0.75), #05070b);
}
.hero-content {
  position: relative; max-width: 56rem; margin: 0 auto;
  text-align: center; width: 100%;
}
.hero h1 {
  font-size: 30px; font-weight: 800;
  line-height: 1.25; letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.hero .subtitle {
  font-size: 18px; color: var(--muted);
  margin-bottom: 40px; max-width: 42rem;
  margin-left: auto; margin-right: auto;
}

/* Badge */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(228,158,34,0.2);
  background: rgba(228,158,34,0.1);
  border-radius: 100px; padding: 8px 20px;
  font-size: 14px; font-weight: 500;
  color: var(--accent); margin-bottom: 20px;
}
.badge svg { width: 16px; height: 16px; flex-shrink: 0; }
.badge-icon-desktop { display: none; }
@media (min-width: 768px) { .badge-icon-desktop { display: block; } }

/* Hero features */
.hero-features {
  margin-top: 40px; display: grid; grid-template-columns: 1fr;
  gap: 12px; font-size: 14px; color: var(--muted);
  width: 220px; margin-left: auto; margin-right: auto;
}
.hero-feature { display: flex; align-items: center; gap: 12px; }
.hero-feature .icon-circle {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(228,158,34,0.1); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-feature .icon-circle svg { width: 16px; height: 16px; color: var(--accent); }

/* ===== Pain Points ===== */
.pain-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.pain-card { position: relative; overflow: hidden; padding: 24px; }
.pain-card::before {
  content: ''; position: absolute; inset: 0;
  pointer-events: none;
}
.pain-card.pain-red::before { background: linear-gradient(to bottom right, rgba(241,77,76,0.2), transparent); }
.pain-card.pain-orange::before { background: linear-gradient(to bottom right, rgba(246,114,43,0.2), transparent); }
.pain-card.pain-accent::before { background: linear-gradient(to bottom right, rgba(228,158,34,0.2), transparent); }
.pain-card.pain-yellow::before { background: linear-gradient(to bottom right, rgba(228,158,34,0.2), transparent); }

.pain-icon {
  width: 48px; height: 48px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; position: relative;
}
.pain-red .pain-icon { background: rgba(241,77,76,0.15); }
.pain-red .pain-icon svg { color: var(--red); }
.pain-orange .pain-icon { background: rgba(246,114,43,0.15); }
.pain-orange .pain-icon svg { color: var(--orange); }
.pain-accent .pain-icon { background: rgba(228,158,34,0.15); }
.pain-accent .pain-icon svg { color: var(--accent); }
.pain-yellow .pain-icon { background: rgba(228,158,34,0.15); }
.pain-yellow .pain-icon svg { color: var(--accent); }

.pain-icon svg { width: 24px; height: 24px; }
.pain-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; position: relative; }
.pain-card p { font-size: 14px; color: var(--muted); line-height: 1.5; position: relative; }

/* ===== Video Appeal ===== */
.video-appeal-wrap {
  position: relative; border-radius: var(--radius-2xl); overflow: hidden;
  border: 1px solid var(--border); background: var(--surface);
  aspect-ratio: 16/9;
}
.video-appeal {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.video-appeal-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.35); cursor: pointer; transition: opacity 0.3s;
}
.video-appeal-overlay.hidden { opacity: 0; pointer-events: none; }

/* ===== Comparison Table ===== */
.comparison-wrap {
  overflow-x: auto; border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
}
.comparison-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.comparison-table th,
.comparison-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table thead th {
  background: var(--surface2); font-weight: 600;
  text-align: center; border-right: 1px solid var(--border);
}
.comparison-table thead th:last-child { border-right: none; }
.comparison-table td:first-child {
  font-weight: 600; color: var(--accent);
  background: rgba(13,16,20,0.5); white-space: nowrap;
  border-right: 1px solid var(--border); width: 25%;
}
.comparison-table td:nth-child(2) { border-right: 1px solid var(--border); width: 37.5%; }
.comparison-table td:nth-child(3) { width: 37.5%; }
.comparison-table .col-bad { color: rgba(241,77,76,0.7); }
.comparison-table .col-good { color: rgba(5,223,114,0.8); }
.comparison-table thead .col-bad { color: var(--red); font-weight: 600; }
.comparison-table thead .col-good { color: var(--green); font-weight: 600; }

/* Alert box */
.alert-box {
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(228,158,34,0.2);
  background: rgba(228,158,34,0.05);
  padding: 20px 24px; display: flex; gap: 16px;
  align-items: flex-start; margin-top: 32px;
}
.alert-icon {
  width: 40px; height: 40px; border-radius: 12px;
  background: rgba(228,158,34,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.alert-icon svg { width: 20px; height: 20px; color: var(--accent); }
.alert-box .font-semibold { font-size: 15px; font-weight: 600; color: var(--fg); }
.alert-box .text-sm { font-size: 14px; color: var(--muted); line-height: 1.6; }
.alert-box p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.alert-box strong { color: var(--fg); }

/* ===== Steps ===== */
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
.step { text-align: center; position: relative; }
.step-num {
  width: 64px; height: 64px; border-radius: 16px; margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(228,158,34,0.2), rgba(228,158,34,0.05));
  border: 1px solid rgba(228,158,34,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 700; color: var(--accent);
}
.step h3 { font-size: 18px; font-weight: 600; margin-bottom: 4px; }
.step .time { font-size: 14px; font-weight: 500; color: var(--accent); margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--muted); line-height: 1.5; }
.step-arrow {
  display: none; align-items: center; justify-content: center;
  color: var(--muted); flex-shrink: 0; align-self: center;
}
.step-arrow svg { width: 32px; height: 32px; }
@media (min-width: 768px) {
  .step-arrow { display: flex; }
}

/* ===== Stats ===== */
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.stat { padding: 24px; text-align: center; }
.stat-value {
  font-size: 36px; font-weight: 800; color: var(--accent);
  display: block; margin-bottom: 4px;
}
.stat-label { font-size: 14px; font-weight: 600; }
.stat-sub { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ===== Video Testimonials ===== */
/* Video slider */
.video-section { position: relative; }
.video-scroll {
  display: flex; gap: 16px; overflow-x: auto; padding: 0 16px 16px;
  scrollbar-width: none; -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
}
.video-scroll::-webkit-scrollbar { display: none; }
.video-card { flex-shrink: 0; width: 220px; scroll-snap-align: start; }
.video-section .video-scroll { padding: 0 0 16px; }
.video-wrap {
  position: relative; aspect-ratio: 9/16;
  border-radius: var(--radius-2xl); overflow: hidden;
  background: var(--surface); border: 1px solid var(--border);
  cursor: pointer;
}
.video-wrap video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.video-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.3); transition: opacity 0.3s;
}
.video-overlay.hidden { opacity: 0; pointer-events: none; }
.video-card:hover .video-overlay.hidden { opacity: 1; }
.play-btn {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(228,158,34,0.9); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
}
.play-btn svg { width: 24px; height: 24px; color: var(--bg); margin-left: 2px; }
.video-mute {
  position: absolute; top: 12px; right: 12px; z-index: 10;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(4px);
  border: none; display: flex; align-items: center; justify-content: center;
}
.video-mute svg { width: 16px; height: 16px; color: #fff; }
.video-gradient {
  position: absolute; bottom: 0; left: 0; right: 0; height: 80px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7)); pointer-events: none;
}
.video-info {
  position: absolute; bottom: 12px; left: 12px; right: 12px; pointer-events: none;
}
.video-info .name { font-size: 14px; font-weight: 600; color: #fff; }
.video-info .desc { font-size: 12px; color: rgba(255,255,255,0.7); }
/* Nav arrows */
.video-nav {
  display: none; position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border);
  align-items: center; justify-content: center;
  cursor: pointer; z-index: 10; box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: background 0.2s, colors 0.2s;
}
.video-nav:hover { background: var(--surface2); }
.video-nav svg { width: 20px; height: 20px; color: var(--fg); }
.video-nav.prev { left: 0; }
.video-nav.next { right: 0; }

/* ===== FAQ Accordion ===== */
.faq-list { display: flex; flex-direction: column; gap: 16px; }
.faq-item { overflow: hidden; padding: 0 24px; }
.faq-trigger {
  width: 100%; background: none; border: none; color: var(--fg);
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; font-size: 16px; font-weight: 500;
  text-align: left; cursor: pointer;
}
.faq-trigger svg {
  width: 20px; height: 20px; color: var(--muted);
  transition: transform 0.3s; flex-shrink: 0; margin-left: 16px;
}
.faq-item.open .faq-trigger svg { transform: rotate(180deg); }
.faq-content {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 14px; color: var(--muted); line-height: 1.6;
}
.faq-item.open .faq-content { max-height: 200px; padding-bottom: 20px; }

/* ===== Final CTA ===== */
.final-cta {
  position: relative; overflow: hidden;
  padding: 80px 16px; text-align: center;
}
.final-cta::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: rgba(228,158,34,0.06); filter: blur(80px);
  pointer-events: none;
}
.final-cta::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(228,158,34,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta h2 {
  font-size: 24px; font-weight: 700;
  margin-bottom: 20px; line-height: 1.3;
  position: relative;
}
.final-cta .subtitle {
  font-size: 18px; color: var(--muted);
  margin-bottom: 40px; position: relative;
}

/* ===== Footer ===== */
.footer {
  border-top: 1px solid var(--border);
  background: var(--surface); padding: 64px 16px 32px;
}
.footer-top {
  display: grid; grid-template-columns: 1fr; gap: 40px;
  padding-bottom: 48px; border-bottom: 1px solid var(--border);
}
.footer-col p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.footer-col h4 { font-size: 16px; font-weight: 700; color: var(--fg); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a { font-size: 14px; color: var(--muted); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--fg); }
.footer-contact li { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--muted); }
.footer-contact svg { color: var(--accent); flex-shrink: 0; }
.footer-disclaimer {
  padding: 32px 0; display: flex; flex-direction: column; gap: 16px;
}
.footer-disclaimer p { font-size: 13px; color: var(--muted); line-height: 1.7; }
.footer-disclaimer strong { color: rgba(225,229,235,0.7); }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid var(--border); gap: 16px;
}
.footer-copy { font-size: 13px; color: rgba(136,144,156,0.6); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 13px; color: var(--muted); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--accent); }

/* ===== Quiz Page ===== */
.quiz-wrap { min-height: 80vh; padding: 32px 16px; }
.quiz-inner { max-width: 640px; margin: 0 auto; }
.progress-bar-wrap { margin-bottom: 32px; }
.progress-info { display: flex; justify-content: space-between; font-size: 12px; color: var(--muted); margin-bottom: 8px; }
.progress-track { height: 8px; border-radius: 4px; background: var(--surface); overflow: hidden; }
.progress-fill { height: 100%; border-radius: 4px; background: var(--accent); transition: width 0.5s; }
.back-btn {
  background: none; border: none; color: var(--muted); font-size: 14px;
  display: flex; align-items: center; gap: 8px; margin-bottom: 24px; transition: color 0.2s;
}
.back-btn:hover { color: var(--fg); }
.back-btn svg { width: 16px; height: 16px; }
.quiz-question { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.quiz-hint { font-size: 14px; color: var(--muted); margin-bottom: 24px; }
.quiz-question + .quiz-options { margin-top: 16px; }
.quiz-options { display: flex; flex-direction: column; gap: 12px; }
.quiz-option {
  display: flex; align-items: center; gap: 16px; width: 100%;
  border: 1px solid var(--border); border-radius: 12px;
  background: var(--surface); padding: 16px; text-align: left;
  font-size: 14px; font-weight: 500; color: var(--fg);
  transition: all 0.2s; cursor: pointer;
}
.quiz-option:hover { border-color: var(--accent); }
.quiz-option svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; }
/* Quiz result badge — pill style */
.quiz-result-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: 100px; padding: 8px 16px;
  font-size: 14px; font-weight: 500;
}
.quiz-result-badge.high { background: rgba(5,223,114,0.1); border: 1px solid rgba(5,223,114,0.3); color: var(--green); }
.quiz-result-badge.medium { background: rgba(228,158,34,0.1); border: 1px solid rgba(228,158,34,0.3); color: var(--accent); }
.quiz-result-badge.low { background: rgba(246,114,43,0.1); border: 1px solid rgba(246,114,43,0.3); color: var(--orange); }
/* Analysis animation */
.analysis { text-align: center; padding: 48px 0; }
.analysis h2 { font-size: 20px; font-weight: 700; margin-bottom: 24px; }
.analysis-lines { max-width: 320px; margin: 0 auto; text-align: left; }
.analysis-line {
  display: flex; align-items: center; gap: 12px; padding: 8px 0;
  opacity: 0.2; transition: opacity 0.5s; font-size: 14px;
}
.analysis-line.done { opacity: 1; }
.analysis-line svg { width: 20px; height: 20px; flex-shrink: 0; }
.analysis-line.done svg { color: var(--green); }

/* ===== Result Page ===== */
.result-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
.assessment-box {
  border-radius: var(--radius); padding: 20px;
  display: flex; align-items: center; gap: 12px;
}
.assessment-box.high { background: rgba(5,223,114,0.1); border: 1px solid rgba(5,223,114,0.3); color: var(--green); }
.assessment-box.medium { background: rgba(228,158,34,0.1); border: 1px solid rgba(228,158,34,0.3); color: var(--accent); }
.assessment-box.low { background: rgba(246,114,43,0.1); border: 1px solid rgba(246,114,43,0.3); color: var(--orange); }
.assessment-emoji { font-size: 24px; }
.assessment-label { font-weight: 700; }
.assessment-sub { font-size: 12px; color: var(--muted); margin-top: 4px; }
.answers-box {
  border-radius: var(--radius); border: 1px solid var(--border);
  background: var(--surface); padding: 20px;
}
.answer-row {
  display: flex; justify-content: space-between; gap: 16px;
  font-size: 14px; padding: 8px 0;
}
.answer-row .label { color: var(--muted); }
.answer-row .value { text-align: right; font-weight: 500; }
/* ===== Form ===== */
.form-card {
  border-radius: var(--radius); border: 1px solid var(--border);
  background: var(--surface); padding: 24px;
}
.form-card h2 { font-size: 20px; font-weight: 700; }
.form-card .form-sub { font-size: 14px; color: var(--muted); margin-top: 4px; }
.form-group { margin-top: 16px; }
.form-label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 6px; }
.form-input {
  width: 100%; border-radius: var(--radius); border: 1px solid var(--border);
  background: var(--bg); padding: 12px; font-size: 14px; color: var(--fg);
  outline: none; transition: border-color 0.2s;
}
.form-input:focus { border-color: var(--accent); }
.form-input.error { border-color: var(--red); }
.form-error { font-size: 12px; color: var(--red); margin-top: 4px; }
.form-submit { margin-top: 20px; width: 100%; justify-content: center; }
.form-privacy { font-size: 12px; color: var(--muted); text-align: center; margin-top: 12px; }
.form-privacy a { color: var(--accent); }
.form-badges {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  padding-top: 16px; margin-top: 16px; border-top: 1px solid var(--border);
}
.form-badge { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--muted); }
.form-badge svg { width: 14px; height: 14px; color: var(--accent); }

/* ===== Success Page ===== */
.success-wrap {
  min-height: 80vh; display: flex; align-items: center; justify-content: center;
  padding: 64px 16px;
}
.success-inner { max-width: 480px; text-align: center; }
.success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(5,223,114,0.1); display: inline-flex;
  align-items: center; justify-content: center; margin-bottom: 24px;
}
.success-icon svg { width: 32px; height: 32px; color: var(--green); }
.success-inner h1 { font-size: 24px; font-weight: 700; margin-bottom: 12px; }
.success-steps {
  border-radius: var(--radius); border: 1px solid var(--border);
  background: var(--surface); padding: 24px; text-align: left; margin: 24px 0;
}
.success-step { display: flex; align-items: flex-start; gap: 12px; padding: 8px 0; }
.success-step-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(228,158,34,0.1); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.success-step-icon svg { width: 14px; height: 14px; color: var(--accent); }
.success-step .text { font-size: 14px; font-weight: 500; }
.success-step .time { font-size: 12px; color: var(--muted); }
.warning-box {
  border-radius: var(--radius); border: 1px solid rgba(255,101,104,0.3);
  background: rgba(255,101,104,0.05); padding: 16px; text-align: left;
  display: flex; align-items: flex-start; gap: 12px;
}
.warning-box svg { width: 20px; height: 20px; color: var(--red); flex-shrink: 0; margin-top: 2px; }
.warning-box p { font-size: 14px; }
.warning-box strong { color: var(--fg); }

/* intl-tel-input overrides */
.iti { width: 100%; }
.iti__tel-input {
  width: 100%; border-radius: 0 var(--radius) var(--radius) 0 !important;
  border: 1px solid var(--border) !important; border-left: none !important;
  background: var(--bg) !important; color: var(--fg) !important;
  padding: 12px !important; font-size: 14px !important; outline: none !important;
}
.iti__tel-input:focus { border-color: var(--accent) !important; }
.iti__selected-country { background: var(--surface) !important; border-radius: var(--radius) 0 0 var(--radius) !important; border: 1px solid var(--border) !important; }
.iti__country-list { background: var(--surface) !important; border: 1px solid var(--border) !important; color: var(--fg) !important; }
.iti__country:hover { background: var(--surface2) !important; }

/* ===== Responsive ===== */
@media (min-width: 640px) {
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-features {
    width: auto; grid-template-columns: repeat(3, auto);
    gap: 32px; justify-content: center;
  }
  .logo-text-mobile { display: none; }
  .logo-text-desktop { display: block; }
}
@media (max-width: 639px) {
  .logo-text-desktop { display: none; }
  .comparison-table { font-size: 12px; }
  .comparison-table th,
  .comparison-table td { padding: 8px; }
  .badge { flex-direction: column; gap: 6px; }
}
@media (min-width: 768px) {
  .section { padding: 96px 16px; }
  .hero { padding: 128px 16px 96px; }
  .hero h1 { font-size: 48px; }
  .hero .subtitle { font-size: 20px; }
  .badge { padding: 6px 16px; }
  .steps-grid { grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; align-items: start; }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .result-grid { grid-template-columns: 1fr 1fr; }
  .final-cta { padding: 112px 16px; }
  .final-cta h2 { font-size: 36px; }
  .video-card { width: 240px; }
  .video-nav { display: flex; }
  .video-scroll { gap: 24px; }
  .footer-top { grid-template-columns: 1.5fr 1fr; }
}
@media (min-width: 1024px) {
  .hero h1 { font-size: 60px; }
  .pain-grid { grid-template-columns: repeat(4, 1fr); }
  .final-cta h2 { font-size: 48px; }
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--muted); }

/* Section heading responsive: text-2xl → md:text-4xl */
.section-heading { font-size: 24px; }
@media (min-width: 768px) {
  .section-heading { font-size: 36px; }
  .quiz-question { font-size: 24px; }
}

/* ===== Utilities ===== */
.text-center { text-align: center; }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16px; }
.mt-5 { margin-top: 20px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mt-10 { margin-top: 40px; }
.mt-12 { margin-top: 48px; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-12 { margin-bottom: 48px; }
.mb-14 { margin-bottom: 56px; }
.hidden { display: none; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.text-sm { font-size: 14px; }
.text-xs { font-size: 12px; }
.w-full { width: 100%; }
