:root {
  --bg: #0a0f0a;
  --bg-surface: #111a11;
  --bg-card: #162016;
  --fg: #e8ede8;
  --fg-muted: #8a9b8a;
  --accent: #4ade80;
  --accent-dim: #22c55e;
  --accent-glow: rgba(74, 222, 128, 0.15);
  --gold: #fbbf24;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 12px;
  --max-w: 1120px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ===== HERO ===== */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 24px 60px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(74,222,128,0.08) 0%, transparent 70%),
    var(--bg);
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(74,222,128,0.3);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 40px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 800px;
  margin-bottom: 28px;
}

.hero h1 .accent {
  color: var(--accent);
}

.lede {
  font-size: 1.2rem;
  color: var(--fg-muted);
  max-width: 580px;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 32px 48px;
  background: var(--bg-surface);
  border: 1px solid rgba(74,222,128,0.12);
  border-radius: var(--radius);
}

.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}
.stat-label {
  display: block;
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.4;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(74,222,128,0.2);
}

/* ===== LOOP SECTION ===== */
.loop {
  padding: 120px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.loop-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.loop-header h2,
.caddy h2,
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.loop-sub {
  color: var(--fg-muted);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 16px auto 0;
}

.loop-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
}

.loop-step {
  flex: 1;
  max-width: 240px;
  padding: 32px 24px;
  background: var(--bg-surface);
  border: 1px solid rgba(74,222,128,0.08);
  border-radius: var(--radius);
  text-align: center;
}

.step-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: rgba(74,222,128,0.2);
  margin-bottom: 12px;
}

.loop-step h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--fg);
}

.loop-step p {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.55;
}

.loop-connector {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-dim), transparent);
  align-self: center;
  margin-top: 30px;
  flex-shrink: 0;
}

/* ===== FEATURES ===== */
.features {
  padding: 80px 24px 120px;
  max-width: var(--max-w);
  margin: 0 auto;
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(74,222,128,0.06);
  border-radius: var(--radius);
  padding: 40px 36px;
  transition: border-color 0.3s;
}

.feature-card:hover {
  border-color: rgba(74,222,128,0.2);
}

.feature-large {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(ellipse 60% 80% at 0% 100%, var(--accent-glow), transparent),
    var(--bg-card);
}

.feature-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
  display: block;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== CADDY SECTION ===== */
.caddy {
  padding: 120px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.caddy-content {
  max-width: 720px;
}

.caddy-sub {
  color: var(--fg-muted);
  font-size: 1.1rem;
  margin-top: 12px;
  margin-bottom: 48px;
}

.caddy-examples {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.caddy-bubble {
  background: var(--bg-surface);
  border: 1px solid rgba(74,222,128,0.1);
  border-radius: var(--radius);
  overflow: hidden;
}

.bubble-q {
  padding: 20px 28px;
  font-size: 0.95rem;
  color: var(--fg-muted);
  border-bottom: 1px solid rgba(74,222,128,0.06);
  font-style: italic;
}

.bubble-a {
  padding: 20px 28px;
  font-size: 0.95rem;
  color: var(--fg);
  line-height: 1.6;
  background: linear-gradient(135deg, rgba(74,222,128,0.04), transparent);
}

/* ===== CLOSING ===== */
.closing {
  padding: 120px 24px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.closing h2 {
  margin-bottom: 24px;
}

.closing-text {
  color: var(--fg-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 48px;
}

.closing-vision {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.01em;
}

/* ===== STATS BANNER ===== */
.stats-banner {
  padding: 0 24px 80px;
}

.stats-banner-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  background:
    radial-gradient(ellipse 100% 200% at 50% 120%, rgba(74,222,128,0.07) 0%, transparent 70%),
    var(--bg-surface);
  border: 1px solid rgba(74,222,128,0.12);
  border-radius: 20px;
  padding: 48px 56px;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.stats-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 8px 16px;
  transition: transform 0.25s ease;
}

.stats-card:hover {
  transform: translateY(-3px);
}

.stats-card--highlight .stats-icon {
  color: var(--gold);
}

.stats-card--highlight .stats-icon svg circle,
.stats-card--highlight .stats-icon svg path {
  stroke: var(--gold);
}

.stats-icon {
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: rgba(74,222,128,0.07);
  border-radius: 14px;
  border: 1px solid rgba(74,222,128,0.12);
  flex-shrink: 0;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.stats-card--highlight .stats-icon {
  background: rgba(251,191,36,0.08);
  border-color: rgba(251,191,36,0.18);
}

.stats-card:hover .stats-icon {
  background: rgba(74,222,128,0.12);
  border-color: rgba(74,222,128,0.25);
}

.stats-card--highlight:hover .stats-icon {
  background: rgba(251,191,36,0.13);
  border-color: rgba(251,191,36,0.3);
}

.stats-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
  min-width: 4ch;
}

.stats-num--text {
  /* static — no count-up */
  color: var(--gold);
}

.stats-card--highlight .stats-num {
  color: var(--gold);
}

.stats-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.4;
  max-width: 130px;
}

.stats-divider {
  width: 1px;
  height: 64px;
  background: rgba(74,222,128,0.12);
  flex-shrink: 0;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 48px 24px;
  border-top: 1px solid rgba(74,222,128,0.08);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
}

.footer-tagline {
  color: var(--fg-muted);
  font-size: 0.88rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero { min-height: 80vh; padding: 60px 20px 40px; }
  .hero-stats { flex-direction: column; gap: 24px; padding: 28px 32px; }
  .stat-divider { width: 48px; height: 1px; }
  .loop-steps { flex-direction: column; align-items: center; gap: 16px; }
  .loop-connector { width: 2px; height: 24px; background: linear-gradient(180deg, var(--accent-dim), transparent); margin: 0; }
  .loop-step { max-width: 100%; width: 100%; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-large { grid-column: 1; }
  .caddy-content { max-width: 100%; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
  .loop { padding: 80px 20px; }
  .features { padding: 60px 20px 80px; }
  .caddy { padding: 80px 20px; }
  .closing { padding: 80px 20px; }
  .stats-banner { padding: 0 16px 60px; }
  .stats-banner-inner { padding: 36px 28px; }
  .stats-grid { flex-wrap: wrap; gap: 28px; justify-content: center; }
  .stats-card { flex: 0 0 calc(50% - 20px); max-width: 180px; }
  .stats-divider { display: none; }
}

/* ===== HERO SPLIT LAYOUT ===== */
.hero-content-split {
  display: flex;
  align-items: center;
  gap: 60px;
  width: 100%;
  max-width: var(--max-w);
  margin-bottom: 56px;
}

.hero-text {
  flex: 1 1 0%;
  min-width: 280px;
  text-align: left;
}

.hero-text h1 {
  text-align: left;
}

.hero-text .lede {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.hero-text > div:first-child { /* badge */
  margin-bottom: 24px;
}

/* Hero demo container — constrained to prevent canvas overriding flex layout */
.hero-demo-wrap {
  flex: 0 0 400px;
  max-width: 400px;
  min-width: 0;
  max-height: 420px;
  overflow: hidden;
  position: relative;
}

.demo-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 12px;
}

.demo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.swing-canvas {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 560 / 380;
  border-radius: 16px;
  border: 1px solid rgba(74,222,128,0.15);
  background: #0f1a0f;
  box-shadow:
    0 0 0 1px rgba(74,222,128,0.05),
    0 20px 60px rgba(0,0,0,0.5),
    inset 0 0 40px rgba(74,222,128,0.03);
  display: block;
}

.demo-hud {
  display: flex;
  gap: 0;
  margin-top: 10px;
  background: var(--bg-surface);
  border: 1px solid rgba(74,222,128,0.1);
  border-radius: 10px;
  overflow: hidden;
}

.demo-hud-item {
  flex: 1;
  padding: 10px 14px;
  text-align: center;
  border-right: 1px solid rgba(74,222,128,0.08);
}
.demo-hud-item:last-child { border-right: none; }

.demo-hud-label {
  display: block;
  font-size: 10px;
  color: var(--fg-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.demo-hud-val {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
}

/* ===== PRODUCT VISUAL SECTION ===== */
.product-visual {
  padding: 100px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.product-visual-inner {
  display: flex;
  align-items: center;
  gap: 80px;
}

.product-visual-text {
  flex: 1;
  min-width: 0;
}

.product-visual-text .section-tag { display: inline-block; margin-bottom: 16px; }

.product-visual-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 20px;
}

.product-visual-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 32px;
}

.product-visual-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
}

.pvs-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.2);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  margin-right: 14px;
  flex-shrink: 0;
}

.product-visual-steps li {
  display: flex;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.product-visual-steps li strong { color: var(--fg); }

.pvs-cta {
  display: inline-block;
  padding: 14px 32px;
  background: var(--accent);
  color: #0a0f0a;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s;
}
.pvs-cta:hover { background: #6ee7a0; }

/* Dashboard mockup */
.product-dashboard-wrap {
  flex-shrink: 0;
  width: 380px;
}

.dashboard-chrome {
  background: #111a11;
  border: 1px solid rgba(74,222,128,0.12);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.5),
    0 0 0 1px rgba(74,222,128,0.05),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.dash-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: #0a120a;
  border-bottom: 1px solid rgba(74,222,128,0.08);
}

.dash-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.dash-title {
  margin-left: 10px;
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.3px;
}

.dash-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dash-score-ring {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.dash-ring-outer {
  position: relative;
  width: 100px;
  height: 100px;
}

.dash-ring-fill {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(#4ade80 0deg 0deg, rgba(255,255,255,0.06) 0deg 360deg);
  transition: background 1.2s ease;
}

.dash-ring-score {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
}

.dash-score-label {
  font-size: 11px;
  color: var(--fg-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.dash-dims {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.dash-dim-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dash-dim-name {
  width: 90px;
  font-size: 10px;
  color: var(--fg-muted);
  flex-shrink: 0;
}

.dash-dim-track {
  flex: 1;
  height: 7px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
}

.dash-dim-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 0.6s ease;
}

.dash-dim-val {
  width: 24px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  color: var(--fg-muted);
  text-align: right;
  flex-shrink: 0;
}

.dash-feedback {
  background: rgba(74,222,128,0.04);
  border: 1px solid rgba(74,222,128,0.08);
  border-radius: 10px;
  padding: 14px;
}

.dash-fb-title {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 10px;
}

.dash-fb-item {
  font-size: 11px;
  line-height: 1.5;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.dash-fb-item:last-child { border-bottom: none; }

.dash-fb-warn { color: #fbbf24; }
.dash-fb-ok { color: rgba(74,222,128,0.7); }

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 80px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.testimonials-inner { width: 100%; }

.testimonials-inner .section-tag { display: block; margin-bottom: 16px; }

.testimonials-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 52px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-surface);
  border: 1px solid rgba(74,222,128,0.08);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  gap: 20px;
  transition: border-color 0.3s, transform 0.3s;
}

.testimonial-card:hover {
  border-color: rgba(74,222,128,0.2);
  transform: translateY(-2px);
}

.testimonial-card-wide {
  grid-column: 1 / -1;
}

.testimonial-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(74,222,128,0.2);
}

.tp-initials {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: 1px;
}

.testimonial-body { flex: 1; min-width: 0; }

.testimonial-quote {
  font-size: 0.93rem;
  line-height: 1.65;
  color: var(--fg);
  margin-bottom: 16px;
  font-style: normal;
}

.testimonial-quote em { font-style: italic; color: var(--fg-muted); }

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 12px;
}

.testimonial-meta strong {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--fg);
}

.testimonial-meta span {
  font-size: 0.78rem;
  color: var(--fg-muted);
}

.testimonial-result {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--accent);
  background: rgba(74,222,128,0.08);
  border: 1px solid rgba(74,222,128,0.15);
  padding: 5px 12px;
  border-radius: 100px;
}

.tr-arrow { font-size: 0.85rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-content-split { flex-direction: column; gap: 40px; }
  .hero-text { text-align: center; }
  .hero-text h1, .hero-text .lede { text-align: center; }
  .hero-text > div:first-child { text-align: center; }
  .hero-text > div:nth-child(3) { justify-content: center; }
  .hero-demo-wrap { flex: 0 0 auto; width: 100%; max-width: 480px; }
  .product-visual-inner { flex-direction: column; }
  .product-dashboard-wrap { width: 100%; max-width: 480px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-card-wide { grid-column: 1; }
}

@media (max-width: 768px) {
  .hero-demo-wrap { width: 100%; }
  .product-dashboard-wrap { display: none; } /* hide heavy mockup on small mobile */
}
/* ===== VIDEO DEMO SECTION ===== */
.video-section {
  padding: 100px 24px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-surface) 50%, var(--bg) 100%);
}
.video-section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: center;
}
.video-section-text .section-tag { margin-bottom: 20px; }
.video-section-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.video-section-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
}
.video-section-trust {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vst-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--fg-muted);
}
.video-frame-outer {
  background: var(--bg-card);
  border: 1px solid rgba(74,222,128,0.12);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(74,222,128,0.06);
}
.video-frame-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid rgba(74,222,128,0.1);
  background: rgba(74,222,128,0.04);
}
.vfl-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent);
  animation: pulse 2s infinite;
}
.video-responsive {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
}
.video-responsive iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}
.video-mockup-img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--bg-card);
}
/* Live demo HTML mockup (replaces generated image) */
.vdemo-body {
  padding: 20px;
}
.vdemo-top {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.vdemo-ring-col {
  flex-shrink: 0;
}
.vdemo-ring-col .dash-ring-outer {
  width: 120px;
  height: 120px;
}
.vdemo-ring-col .dash-ring-score {
  font-size: 2.2rem;
}
.vdemo-dims-col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.vdemo-dims-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 4px;
}
.vdemo-dim {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--fg-muted);
}
.vdemo-dim span {
  width: 75px;
  flex-shrink: 0;
}
.vdemo-dim b {
  width: 22px;
  text-align: right;
  font-weight: 700;
  color: var(--fg-muted);
  font-family: var(--font-display);
  font-size: 11px;
}
@media (max-width: 500px) {
  .vdemo-top { flex-direction: column; align-items: center; }
  .vdemo-dims-col { width: 100%; }
}
.video-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 20px;
  background: rgba(74,222,128,0.04);
  border-top: 1px solid rgba(74,222,128,0.1);
  flex-wrap: wrap;
}
.video-cta-btn {
  display: inline-block;
  padding: 10px 24px;
  background: var(--accent);
  color: #0a0f0a;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.video-cta-btn:hover { background: #6ee7a0; transform: translateY(-1px); }
.video-cta-note {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* ===== BEFORE/AFTER SECTION ===== */
.before-after {
  padding: 100px 24px;
  background: var(--bg);
}
.ba-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.ba-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.ba-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.ba-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}
.ba-comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 56px;
}
.ba-card {
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.ba-card:hover { transform: translateY(-4px); }
.ba-card--before { border-color: rgba(239,68,68,0.2); box-shadow: 0 8px 40px rgba(239,68,68,0.06); }
.ba-card--after { border-color: rgba(74,222,128,0.2); box-shadow: 0 8px 40px rgba(74,222,128,0.08); }
.ba-card-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.ba-label--before { color: #ef4444; background: rgba(239,68,68,0.08); border-bottom: 1px solid rgba(239,68,68,0.15); }
.ba-label--after { color: var(--accent); background: rgba(74,222,128,0.06); border-bottom: 1px solid rgba(74,222,128,0.12); }
.ba-label-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
}
.ba-label--before .ba-label-dot { background: #ef4444; }
.ba-label--after .ba-label-dot { background: var(--accent); box-shadow: 0 0 6px var(--accent); animation: pulse 2s infinite; }
.ba-card-visual { padding: 20px; }
.ba-svg { width: 100%; height: auto; display: block; }
.ba-card-issues {
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.ba-issue {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
}
.ba-issue--bad { color: #fc9595; }
.ba-issue--good { color: #86efac; }
.ba-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ba-arrow-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.ba-arrow-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  text-align: center;
  line-height: 1.4;
}
.ba-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 32px 40px;
  background: var(--bg-surface);
  border: 1px solid rgba(74,222,128,0.1);
  border-radius: 16px;
}
.ba-stat { text-align: center; }
.ba-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.ba-stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.ba-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}
.ba-cta {
  display: inline-block;
  padding: 14px 32px;
  background: var(--accent);
  color: #0a0f0a;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  margin-left: 20px;
}
.ba-cta:hover { background: #6ee7a0; transform: translateY(-1px); }

/* ===== TESTIMONIAL PHOTO UPGRADES ===== */
.testimonial-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(74,222,128,0.2);
}
.testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Fallback initials still work when no photo */
.tp-initials {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg-muted);
}

/* ===== RESPONSIVE — VIDEO & BEFORE/AFTER ===== */
@media (max-width: 960px) {
  .video-section-inner { grid-template-columns: 1fr; gap: 40px; }
  .ba-comparison { grid-template-columns: 1fr; }
  .ba-arrow { flex-direction: row; padding: 8px 0; }
  .ba-arrow-inner { flex-direction: row; }
}
@media (max-width: 640px) {
  .video-section { padding: 64px 20px; }
  .before-after { padding: 64px 20px; }
  .ba-footer { flex-direction: column; gap: 24px; }
  .ba-stat-divider { width: 40px; height: 1px; }
  .ba-cta { margin-left: 0; width: 100%; text-align: center; }
}

/* ===== TESTIMONIAL STARS ===== */
.testimonial-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
