/* ============================================================================
   EcomPulse Webinar Opt-in — design ported from the EcomPulse landing page
   Palette: black #0A0705 base · orange #FF6A1A accent · peach #FFD9B5 highlight
   Fonts:   Clash Display (headlines) + Inter (body)
   ========================================================================== */

:root {
  --bg: #0a0705;
  --orange: #ff6a1a;
  --peach: #ffd9b5;
  --white: #ffffff;
  --text: rgba(255, 255, 255, 0.9);
  --muted: rgba(255, 255, 255, 0.6);
  --faint: rgba(255, 255, 255, 0.1);
  --card-bg: rgba(255, 255, 255, 0.05);

  --font-display: "Clash Display", "Inter", system-ui, sans-serif;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --max: 72rem; /* 1152px */
  --radius: 1rem; /* 16px, rounded-2xl */
  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

::selection {
  background: rgba(255, 106, 26, 0.3);
}

a {
  color: inherit;
}

/* ---------- Background layers (fixed) ---------- */
.bg-layers {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--bg);
  pointer-events: none;
}
.bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 70% at -5% 50%, rgba(255, 106, 26, 0.4) 0%, rgba(255, 106, 26, 0.18) 35%, rgba(255, 106, 26, 0) 70%),
    radial-gradient(45% 55% at 105% 108%, rgba(255, 106, 26, 0.28) 0%, rgba(255, 106, 26, 0) 60%);
  filter: blur(40px);
}
.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
}

.page {
  position: relative;
  z-index: 1;
}

/* ---------- Shared type helpers ---------- */
.accent-text {
  background: linear-gradient(90deg, #ffffff, var(--peach), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  color: var(--orange);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5rem 1.25rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  line-height: 1.1;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  margin: 0 0 2.5rem;
}

.card {
  border: 1px solid var(--faint);
  background: var(--card-bg);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ---------- Nav ---------- */
.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.5rem 1.25rem;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--white);
  text-decoration: none;
}
.logo-accent {
  color: var(--orange);
}

/* Pulsing dot (logo + badge) */
.logo-dot,
.badge-dot {
  position: relative;
  display: inline-flex;
}
.logo-dot {
  width: 0.75rem;
  height: 0.75rem;
}
.logo-dot-core {
  position: relative;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--orange);
}
.logo-dot-ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse-ring 2s ease-out infinite;
}

/* ---------- Hero ---------- */
.hero {
  max-width: 60rem;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--faint);
  background: var(--card-bg);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.badge-dot {
  width: 0.4rem;
  height: 0.4rem;
}
.badge-dot-core {
  position: relative;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--orange);
}
.badge-dot-ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.6;
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.hero .eyebrow {
  margin-top: 1.5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  line-height: 1.05;
  font-size: clamp(2.1rem, 7vw, 4.25rem);
  margin: 1rem 0 0;
  max-width: 15ch;
  text-wrap: balance;
}

.hero-sub {
  margin: 1.5rem auto 0;
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.125rem;
  line-height: 1.55;
  text-wrap: balance;
}

.hero-cta {
  margin-top: 2.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.hero-visual {
  margin-top: 3rem;
  width: 100%;
  max-width: 48rem;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--faint);
  background: var(--card-bg);
  box-shadow: 0 12px 40px -16px rgba(0, 0, 0, 0.6);
}
.hero-visual img {
  width: 100%;
}

/* ---------- CTA button (white pill, black text, orange glow hover) ---------- */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  text-decoration: none; /* .cta is used on <a> as well as <button> */
  background: var(--white);
  color: var(--bg);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  padding: 1rem 2.25rem;
  border-radius: 999px;
  box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cta:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 40px -12px rgba(255, 106, 26, 0.35);
}
.cta:active {
  transform: scale(1);
}
.cta:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}
.cta-arrow {
  transition: transform 0.2s ease;
}
.cta:hover .cta-arrow {
  transform: translateX(2px);
}
.cta-full {
  width: 100%;
}

.cta-micro {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Date/time line shown directly under the register CTA */
.cta-when {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.01em;
}

/* ---------- Ticker ---------- */
.ticker {
  border-top: 1px solid var(--faint);
  border-bottom: 1px solid var(--faint);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
  white-space: nowrap;
  padding: 0.9rem 0;
}
.ticker-track {
  display: flex;
  width: max-content;
  will-change: transform;
}
/* Animation is enabled by JS only once enough copies exist to fill 2x the
   viewport, so translateX(-50%) is always a perfectly seamless, gap-free loop. */
.ticker-track.is-animated {
  animation: marquee var(--ticker-dur, 40s) linear infinite;
}
.ticker:hover .ticker-track.is-animated {
  animation-play-state: paused;
}
.ticker-set {
  display: flex;
  align-items: center;
  flex: none;
}
.ticker-set > span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.8);
  padding: 0 1.25rem;
}
.ticker-sep {
  color: var(--orange) !important;
  font-size: 0.6rem !important;
  padding: 0 0.25rem !important;
}

/* ---------- Section 3: Wat je gaat leren ---------- */
.learn .section-title {
  text-align: center;
}
.learn-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
.learn-card {
  padding: 2rem 1.75rem;
}
.learn-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1;
  color: rgba(255, 106, 26, 0.35);
}
.learn-heading {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  font-size: 1.1rem;
  margin: 1rem 0 0.75rem;
  color: var(--white);
}
.learn-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

/* ---------- Section 4: Voor wie ---------- */
.audience-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
.audience-col {
  padding: 2rem 1.75rem;
}
.audience-title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.05rem;
  letter-spacing: -0.025em;
  margin: 0 0 1.5rem;
  color: var(--white);
}
.audience-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.audience-list li {
  position: relative;
  padding-left: 2rem;
  color: var(--muted);
  font-size: 0.98rem;
}
.audience-list li::before {
  position: absolute;
  left: 0;
  top: 0.05em;
  font-weight: 700;
  font-size: 1rem;
}
/* subtle green check / muted neutral cross — understated, not christmas */
.audience-list.yes li::before {
  content: "\2713"; /* check */
  color: rgba(74, 222, 128, 0.85);
}
.audience-list.no li::before {
  content: "\2715"; /* cross */
  color: rgba(248, 113, 113, 0.7);
}

/* ---------- Section 5: Host ---------- */
.host-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  align-items: center;
}
.host-photo {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--faint);
  background: var(--card-bg);
  box-shadow: 0 12px 40px -16px rgba(0, 0, 0, 0.6);
}
.host-photo img {
  width: 100%;
}
.host-name {
  margin: 0.75rem 0 1.5rem;
}
.host-text p {
  margin: 0 0 1.1rem;
  color: var(--muted);
}
.host-text p:last-child {
  margin-bottom: 0;
}

/* ---------- Section 6: Final CTA ---------- */
.final-cta {
  max-width: 52rem;
}
.final-card {
  padding: 3rem 1.75rem;
  text-align: center;
}
.final-card .section-title {
  margin-bottom: 1rem;
}
.final-sub {
  color: var(--muted);
  max-width: 34rem;
  margin: 0 auto 2rem;
}
.final-card .cta-micro {
  margin-top: 1rem;
}

/* ---------- Footer ---------- */
.footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 1.25rem 6rem;
  border-top: 1px solid var(--faint);
  text-align: center;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.85rem;
}
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: var(--white);
}
.footer-div {
  color: rgba(255, 255, 255, 0.25);
}
.footer-copy {
  margin: 1.5rem 0 2rem;
  font-size: 0.85rem;
  color: var(--muted);
}
.footer-fine {
  max-width: 46rem;
  margin: 0 auto 1rem;
  font-size: 0.72rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.4);
}

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(10, 7, 5, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--faint);
  transform: translateY(120%);
  transition: transform 0.3s ease;
}
.sticky-cta.visible {
  transform: translateY(0);
}
.sticky-when {
  margin: 0 0 0.5rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.7);
}
@media (min-width: 768px) {
  .sticky-cta {
    display: none;
  }
}

/* ---------- Directing / redirect animation ---------- */
.redirect-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  background: rgba(10, 7, 5, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.redirect-overlay.show {
  opacity: 1;
}
.redirect-overlay[hidden] {
  display: none;
}
.redirect-spinner {
  display: inline-block;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 3px solid rgba(255, 106, 26, 0.22);
  border-top-color: var(--orange);
  animation: spin 0.8s linear infinite;
}
.redirect-title {
  margin: 1.35rem 0 0.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  font-size: 1.35rem;
  color: var(--white);
}
.redirect-sub {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ---------- Modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.modal[hidden] {
  display: none;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.modal-panel {
  position: relative;
  width: 100%;
  max-width: 30rem;
  padding: 2rem 1.75rem;
  max-height: 92vh;
  overflow-y: auto;
  animation: fade-up 0.3s ease-out both;
}
.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.9rem;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease;
}
.modal-close:hover {
  color: var(--white);
}
.modal-title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  font-size: 1.6rem;
  line-height: 1.1;
  margin: 1rem 0 0.5rem;
}
.modal-lead {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.modal-micro {
  text-align: center;
  margin-top: 0.9rem;
}

.field {
  margin-bottom: 1.1rem;
  text-align: left;
}
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: rgba(255, 255, 255, 0.85);
}
.field input {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 0.7rem;
  border: 1px solid var(--faint);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.field input:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 106, 26, 0.2);
}
.field input.invalid {
  border-color: rgba(248, 113, 113, 0.8);
}

/* Phone field: country-code selector + number */
.phone-row {
  display: flex;
  gap: 0.5rem;
}
.phone-code {
  flex: 0 0 auto;
  width: 8.75rem;
  max-width: 44%;
  padding: 0.8rem 2rem 0.8rem 0.75rem;
  border-radius: 0.7rem;
  border: 1px solid var(--faint);
  background-color: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.2;
  cursor: pointer;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* custom caret */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-opacity='0.55' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.65rem center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.phone-code:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 106, 26, 0.2);
}
.phone-code option {
  color: #111;
  background: #fff;
}
.phone-row input {
  flex: 1 1 auto;
  min-width: 0;
}
.field-error {
  display: block;
  min-height: 1rem;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  color: rgba(248, 113, 113, 0.9);
}
#submitBtn[disabled] {
  opacity: 0.6;
  cursor: default;
  transform: none;
}

/* ---------- Keyframes ---------- */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.3);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes ping {
  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
@keyframes fade-up {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Responsive: >=768px ---------- */
@media (min-width: 768px) {
  .learn-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .audience-grid {
    grid-template-columns: 1fr 1fr;
  }
  .host-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 3rem;
  }
  .section {
    padding: 6rem 1.5rem;
  }
}

/* ---------- Responsive: >=1024px ---------- */
@media (min-width: 1024px) {
  .hero {
    padding-top: 2.5rem;
  }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .ticker-track,
  .ticker-track.is-animated {
    animation: none !important;
    transform: none;
  }
  .logo-dot-ping,
  .badge-dot-ping {
    animation: none;
  }
  .modal-panel {
    animation: none;
  }
  .cta,
  .cta-arrow,
  .sticky-cta {
    transition: none;
  }
  .faq-a {
    transition: none !important;
  }
  .redirect-spinner {
    animation: none;
  }
  .redirect-overlay {
    transition: none;
  }
  .faq-icon::before,
  .faq-icon::after,
  .wa-btn {
    transition: none !important;
  }
}

/* ============================================================================
   CONFIRMATION PAGE (/bedankt) — reuses the tokens/classes above
   ========================================================================== */

/* ---------- Section 1: hero + VSL ---------- */
.confirm-hero {
  max-width: 52rem;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 4rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.confirm-hero .badge {
  margin-bottom: 1.5rem;
}
.confirm-title {
  font-size: clamp(1.85rem, 5.5vw, 3.25rem);
  max-width: 18ch;
  margin-top: 0;
}
.confirm-hero .hero-sub {
  margin-top: 1.25rem;
}

.vsl {
  position: relative;
  width: 100%;
  max-width: 46rem;
  margin: 2.5rem auto 0;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 106, 26, 0.3);
  background: var(--card-bg);
  box-shadow: 0 0 0 1px rgba(255, 106, 26, 0.12),
    0 24px 70px -24px rgba(255, 106, 26, 0.28);
}
.vsl-embed,
.vsl-embed iframe,
.vsl-embed video,
.vsl-embed > * {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.vsl-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
}
.vsl-play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: var(--orange);
  color: #0a0705;
  padding-left: 4px;
  box-shadow: 0 10px 40px -8px rgba(255, 106, 26, 0.6);
}
.vsl-placeholder-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.vsl-above {
  margin: 2.5rem 0 0.85rem;
  text-align: center;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.vsl-above + .vsl {
  margin-top: 0;
}

.vsl-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 1.25rem auto 0;
  max-width: 40rem;
  font-size: 0.82rem;
  color: var(--muted);
}
.vsl-note .ico {
  flex: none;
  color: var(--orange);
}

/* Calendar button — links out to AddCal, which hosts the picker */
.cal-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.cal-wrap .cta svg {
  flex: none;
}
.cal-micro {
  margin-top: 1rem;
  text-align: center;
}

/* ---------- Section 2: WhatsApp ---------- */
.wa {
  max-width: 48rem;
}
.wa-panel {
  padding: 2.5rem 1.75rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}
.wa-label {
  margin: 0 0 1rem;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.wa-title {
  margin-bottom: 1.25rem;
}
.wa-body {
  max-width: 34rem;
  margin: 0 auto 1.75rem;
  color: var(--muted);
}
.wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  border-radius: 999px;
  background: #25d366;
  color: #ffffff;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 12px 34px -12px rgba(37, 211, 102, 0.6);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.wa-btn:hover {
  background: #20bd5b;
  transform: scale(1.02);
  box-shadow: 0 16px 40px -12px rgba(37, 211, 102, 0.5);
}
.wa-btn:active {
  transform: scale(1);
}
.wa-btn:focus-visible {
  outline: 2px solid #25d366;
  outline-offset: 3px;
}
.wa-btn svg {
  flex: none;
}
.wa-micro {
  margin: 1rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}

/* ---------- Section 3: next steps ---------- */
.steps {
  text-align: center;
}
.steps-label {
  margin-bottom: 0.75rem;
}
.steps .learn-grid {
  text-align: left;
  margin-top: 0.5rem;
}

/* ---------- Section 4: personal note ---------- */
.note-section {
  max-width: 44rem;
}
.note {
  max-width: 40rem;
  margin: 0 auto;
  padding-left: 1.25rem;
  border-left: 2px solid rgba(255, 106, 26, 0.5);
  text-align: left;
}
.note-body {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  line-height: 1.75;
}
.note-sign {
  margin: 1.25rem 0 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--white);
  font-size: 1.1rem;
}

/* ---------- Section 5: results strip ---------- */
.results {
  text-align: center;
}
.results-title {
  margin-bottom: 0.75rem;
}
.results-sub {
  margin: 0 auto 2rem;
  max-width: 34rem;
  color: var(--muted);
  font-size: 0.98rem;
}
.results-strip {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
}
.result-card {
  flex: 0 0 72%;
  scroll-snap-align: center;
  margin: 0;
  text-align: left;
}
.result-img {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--faint);
  background: var(--card-bg);
  aspect-ratio: 4 / 5;
}
.result-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.result-caption {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--muted);
}

/* ---------- Section 6: FAQ accordion ---------- */
.faq-section {
  max-width: 46rem;
}
.faq {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  border: 1px solid var(--faint);
  background: var(--card-bg);
  border-radius: 0.9rem;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  border: none;
  background: none;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}
.faq-icon {
  position: relative;
  flex: none;
  width: 16px;
  height: 16px;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--orange);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.faq-icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}
.faq-icon::after {
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}
.faq-item.open .faq-icon::after {
  transform: translateX(-50%) scaleY(0);
  opacity: 0;
}
.faq-a {
  height: 0;
  overflow: hidden;
  transition: height 0.28s ease;
}
.faq-a-inner {
  padding: 0 1.35rem 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ---------- Footer back link ---------- */
.backlink {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.backlink:hover {
  color: var(--white);
}

/* ---------- Confirmation responsive ---------- */
@media (min-width: 768px) {
  .results-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: visible;
  }
  .result-card {
    flex: none;
  }
  .confirm-hero {
    padding-top: 2.5rem;
  }
}
