/* Mobile-first bright theme */
:root {
  --bg: #ffffff;
  --text: #0f172a;
  --primary: #00d4ff; /* bright cyan */
  --primary-600: #00b4df;
  --accent: #ff4d6d; /* bright pink-red */
  --muted: #64748b;
  --success: #10b981;
  --error: #ef4444;
  --warning: #f59e0b;
  --ring: rgba(0, 212, 255, 0.35);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, 'Apple Color Emoji', 'Segoe UI Emoji';
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

.container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 16px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus { left: 16px; top: 16px; width: auto; height: auto; background: #000; color: #fff; padding: 8px 12px; border-radius: 6px; }

.site-header { background: linear-gradient(90deg, var(--primary), var(--accent)); color: #fff; }
.site-header .container { padding: 28px 16px; }
.site-header h1 { margin: 0 0 6px; font-size: 1.5rem; }
.site-header h1 .brand { color: #fff; text-decoration: none; }
.site-header h1 .brand:hover { text-decoration: underline; }
.site-header .sub { margin: 0; opacity: 0.9; }
.site-header .promo { margin-top: 6px; font-weight: 700; }

.intro-card { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 12px; padding: 16px; margin: 16px 0; }
.hero-promo { margin-top: 10px; background: #fff; border: 2px solid var(--primary); border-radius: 12px; padding: 16px; }
.hero-promo .hero-photo { width: 100%; height: auto; display: block; border-radius: 10px; margin-bottom: 10px; }
.hero-promo .hero-video { display: none; }
.hero-square { aspect-ratio: 1 / 1; object-fit: cover; }
.videos { margin-top: 16px; }
.videos-grid { display: grid; gap: 12px; }
.video-frame { width: 100%; aspect-ratio: 16/9; border: 0; border-radius: 12px; }

.testimonials { margin-top: 16px; }
.testimonial-row { position: relative; }
.testimonial-track { display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 6px; }
.testimonial { flex: 0 0 85%; scroll-snap-align: start; background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; padding: 12px; }
.testimonial footer { margin-top: 6px; color: var(--muted); }
.testi-nav { position: absolute; top: 50%; transform: translateY(-50%); background: #0ea5e9; color: #fff; border: none; border-radius: 999px; width: 36px; height: 36px; cursor: pointer; box-shadow: 0 6px 20px rgba(14,165,233,.35); }
.testi-nav.prev { left: -8px; }
.testi-nav.next { right: -8px; }
.stars { color: #fbbf24; font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 6px; }

.faq { margin-top: 16px; }
.faq details { background: #fff; border: 1px solid #e2e8f0; border-radius: 10px; padding: 10px 12px; margin: 8px 0; }
.faq summary { cursor: pointer; font-weight: 700; }
.hero-promo h3 { margin: 0 0 6px; font-size: 1.25rem; color: #0a172a; }
.hero-promo .big { font-size: 1.1rem; font-weight: 700; }
.bullets { margin: 10px 0 0; padding-left: 18px; }
.hero-figure { margin: 10px 0; }
.hero-figure img { width: 100%; height: auto; display: block; border-radius: 12px; border: 1px solid #e2e8f0; }
.bottom-hero-image img { max-width: 520px; margin: 0 auto; box-shadow: 0 8px 24px rgba(2,6,23,0.12); }
.hero-video-fallback { display: none; }
.qr-card { margin-top: 12px; background: #ffffff; border: 1px dashed var(--primary); border-radius: 12px; padding: 12px; text-align: center; }
.qr-card img { max-width: 220px; width: 100%; height: auto; display: inline-block; }
.qr-title { margin: 0 0 6px; font-weight: 700; }
.qr-help { margin: 8px 0 0; color: var(--muted); }

.form-wizard { background: #ffffff; border: 1px solid #e2e8f0; border-radius: 12px; padding: 16px; box-shadow: 0 6px 24px rgba(2, 6, 23, 0.06); }
.form-focus { margin: 16px 0; padding: 16px; border: 2px solid var(--accent); border-radius: 12px; background: #fff; box-shadow: 0 10px 30px rgba(255, 77, 109, 0.15); }
.form-focus .cta-title { margin: 0 0 6px; font-size: 1.25rem; font-weight: 800; color: #111827; }
.form-focus .cta-desc { margin: 0 0 10px; color: var(--muted); }
.form-focus .cta-row { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.form-focus .cta-row .btn { padding: 12px 18px; }
.steps {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0 0 16px;
  overflow-x: auto;
}
.steps li { flex: 1 1 auto; text-align: center; font-weight: 600; padding: 8px; border-bottom: 3px solid #e2e8f0; color: var(--muted); white-space: nowrap; }
.steps li.active { color: var(--text); border-color: var(--primary); }

.step { display: none; }
.step.current { display: block; }

.field { margin: 14px 0; }
label { display: block; font-weight: 600; margin-bottom: 6px; }
input, select { width: 100%; padding: 12px 12px; border-radius: 10px; border: 1px solid #cbd5e1; background: #fff; color: var(--text); font-size: 1rem; }
input:focus, select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px var(--ring); }
.hint { font-size: 0.9rem; color: var(--muted); margin-top: 4px; }
.help { color: var(--muted); }
.error { color: var(--error); font-size: 0.9rem; min-height: 1.2rem; margin-top: 6px; }
.note { margin-top: 8px; padding: 10px 12px; border-radius: 10px; font-size: 0.95rem; }
.note-error { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }
.hidden { display: none; }

.check { display: flex; gap: 10px; align-items: flex-start; margin: 10px 0; }
.ack-list { border: 1px dashed #cbd5e1; border-radius: 10px; padding: 12px; margin-top: 8px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,1px,1px); white-space: nowrap; border: 0; }

.actions { display: flex; gap: 10px; margin-top: 16px; }
.btn { appearance: none; border: none; border-radius: 12px; padding: 12px 16px; font-weight: 700; cursor: pointer; background: var(--primary); color: #001219; box-shadow: 0 6px 20px rgba(0, 212, 255, 0.35); }
.btn:hover { background: var(--primary-600); }
.btn.prev { background: #e2e8f0; color: #0f172a; box-shadow: none; }
.btn.submit { background: var(--accent); color: #fff; }
.step[data-step="4"] .actions .next { font-size: 1.1rem; padding: 14px 22px; background: #ff7ab3; color: #fff; box-shadow: 0 10px 30px rgba(255, 122, 179, 0.35); }
.step[data-step="4"] .actions .next:hover { background: #ff5fa3; }

/* Make all Next buttons bigger and bolder */
.actions .next { font-size: 1.05rem; padding: 14px 22px; }
.actions .next { background: linear-gradient(90deg, #00d4ff, #8aebff); color: #03232e; box-shadow: 0 10px 30px rgba(0,212,255,.35); }
.actions .next:hover { filter: brightness(0.95); }

.site-footer { margin: 24px 0; text-align: center; color: var(--muted); }

/* Desktop enhancements */
@media (min-width: 940px) {
  .form-wizard { padding: 24px; }
  .site-header h1 { font-size: 2rem; }
  .hero-promo { display: grid; grid-template-columns: 1fr minmax(240px, 360px); gap: 16px; align-items: start; }
  .hero-copy { grid-column: 1; }
  .hero-promo .hero-photo, .hero-promo .hero-video { grid-column: 2; margin-bottom: 0; }
  .hero-promo h3 { font-size: 1.6rem; }
  .hero-promo .big { font-size: 1.25rem; }
  .qr-card { display: flex; align-items: center; gap: 16px; text-align: left; }
  .qr-card img { max-width: 160px; }
  .form-focus { padding: 20px; }
  .form-focus .cta-title { font-size: 1.4rem; }
  .videos-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonial { flex-basis: 45%; }
}



