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

:root {
  --text: #0d0d0d;
  --hero-text: #0d0d0d;
  --text-muted: #4b5563;
  --accent: #6d28d9;
  --accent-dark: #5b21b6;
  --overscroll: #5b21b6;
  --border: rgba(109, 40, 217, 0.1);
  --surface: rgba(255, 255, 255, 0.65);
  --white: #ffffff;
  --marble-base: #f8f5ff;
  --font: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
  background-color: var(--overscroll);
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
  min-height: 100vh;
  background-color: var(--marble-base);
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E"),
    radial-gradient(ellipse 80% 60% at 15% 20%, rgba(109, 40, 217, 0.05) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 85% 15%, rgba(147, 197, 253, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse 90% 50% at 30% 90%, rgba(199, 210, 254, 0.25) 0%, transparent 45%),
    linear-gradient(160deg, #f7f9ff 0%, #eef3ff 35%, #f2f6ff 65%, #e8efff 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
}

.container-narrow {
  max-width: 1400px;
  text-align: center;
}

.container-hero {
  max-width: 1100px;
}

h1, h2, h3, h4 {
  font-family: var(--font);
  color: var(--text);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

a {
  color: var(--accent);
  text-decoration: none;
}

/* ── Header ── */
.header {
  position: static;
  background: transparent;
  padding: 1rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  height: 72px;
  width: auto;
  display: block;
}

@media (max-width: 640px) {
  .header-inner {
    justify-content: center;
  }
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  text-decoration: none;
}

.logo__name { color: var(--text); }
.logo__tag, .logo__by {
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.01em;
}

/* ── Hero ── */
.hero {
  padding: 3rem 0 4.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 1.375rem;
  font-weight: 700;
  font-style: italic;
  color: var(--hero-text);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 999px;
  padding: 12px 28px 12px 20px;
  margin-bottom: 28px;
  box-shadow: 0 0 18px 4px rgba(255,255,255,0.15);
}

.hero-title {
  font-family: var(--font);
  font-size: 64px;
  font-weight: 800;
  color: var(--hero-text);
  line-height: 72px;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 1.2rem;
}

.hero-sub {
  font-family: var(--font);
  font-size: 40.8px;
  font-weight: 400;
  line-height: 54px;
  letter-spacing: 0.01em;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 2.5rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

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

/* ── Lead box ── */
.lead-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.2rem 2.4rem;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  box-shadow: 0 4px 30px rgba(109, 40, 217, 0.08);
}

.lead-offer-headline {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
  line-height: 1.25;
}

.lead-offer-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.lead-time-note {
  font-size: 0.78rem;
  color: var(--accent);
  text-align: center;
  margin-top: 0.6rem;
  font-weight: 500;
}

/* ── Lead custom combos ── */
.lead-combo {
  position: relative;
}

.lead-combo__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.72rem 0.9rem;
  border: 1.5px solid #dde1ea;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 0.92rem;
  color: var(--text);
  background: #fafbfd;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s;
}

.lead-combo__trigger:hover,
.lead-combo__trigger[aria-expanded="true"] { border-color: var(--accent); }

.lead-combo__display { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lead-combo__display.is-placeholder { color: #9ca3af; }

.lead-combo__chevron {
  font-size: 0.65rem;
  color: #9ca3af;
  flex-shrink: 0;
  margin-left: 0.5rem;
}

.lead-combo__menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1.5px solid #dde1ea;
  border-radius: 8px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
  z-index: 50;
  list-style: none;
  padding: 0.3rem;
  margin: 0;
}

.lead-combo__option {
  width: 100%;
  text-align: left;
  padding: 0.7rem 0.85rem;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text);
  background: none;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.12s;
}

.lead-combo__option:hover { background: rgba(109, 40, 217, 0.06); }

.lead-steps { position: relative; }
.lead-step { display: none; }
.lead-step.is-active { display: block; }

.lead-free {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.lead-process {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.lead-form input {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid #dde1ea;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 1rem;
  color: var(--text);
  background: #fafbfd;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.lead-form input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(109, 40, 217, 0.08);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font);
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.18s ease;
  text-decoration: none;
}

.btn-cta {
  background: var(--accent);
  color: #fff;
  padding: 0.85rem 1.4rem;
  font-size: 0.97rem;
  width: 100%;
  border-radius: 10px;
}

.btn-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(109, 40, 217, 0.3);
}

.btn-full { width: 100%; }

.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 0.9rem 2.2rem;
  font-size: 1rem;
  border-radius: 10px;
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(109, 40, 217, 0.3);
}

.form-trust {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-family: var(--font);
  color: #9ca3af;
  justify-content: center;
}
.form-trust .trust-mobile { display: none; }
.form-trust .trust-desktop { display: inline; }

.form-note {
  font-size: 0.72rem;
  color: #b0b8c8;
  text-align: center;
}

/* ── Lead qual step ── */
.lead-step-title {
  font-family: var(--font);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.lead-step-lead {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.lead-step-time {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: #9ca3af;
  margin-bottom: 1rem;
}

.lead-step-time-icon { flex-shrink: 0; }

.lead-qual-form { display: flex; flex-direction: column; gap: 0.75rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }

.form-field { display: flex; flex-direction: column; gap: 0.3rem; }

.form-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
}

.lead-qual-form .lead-combo { text-align: left; }
.lead-qual-form .lead-combo-label { text-align: left; }

.form-field input {
  width: 100%;
  padding: 0.72rem 0.9rem;
  border: 1.5px solid #dde1ea;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 0.92rem;
  color: var(--text);
  background: #fafbfd;
  outline: none;
  transition: border-color 0.2s;
}

.form-field input:focus { border-color: var(--accent); }

.lead-textarea {
  width: 100%;
  padding: 0.72rem 0.9rem;
  border: 1.5px solid #dde1ea;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 0.92rem;
  color: var(--text);
  background: #fafbfd;
  outline: none;
  resize: vertical;
  line-height: 1.55;
  transition: border-color 0.2s;
}

.lead-textarea:focus { border-color: var(--accent); }
.lead-textarea::placeholder { color: #9ca3af; }

.form-field select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid #dde1ea;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--text);
  background: #fafbfd;
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%239ca3af' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  cursor: pointer;
  transition: border-color 0.2s;
}

.form-field select:focus { border-color: var(--accent); }

/* ── Booking section ── */
.hero-booking-intro {
  font-size: 2rem;
  color: #374151;
  margin-bottom: 1rem;
  font-weight: 700;
}

/* ── FAQ section ── */
.faq-section {
  padding: 3rem 0 2rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 24px 16px;
  background: #1f223c;
  color: #fff;
  font-family: Poppins, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0;
  text-align: center;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  gap: 1rem;
  transition: all 0.3s ease;
  user-select: none;
  position: relative;
}

.faq-question:hover { background: #262a4a; }

.faq-icon {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
  position: absolute;
  right: 16px;
}

.faq-item.is-open .faq-question { border-radius: 8px 8px 0 0; }

.faq-answer {
  display: none;
  padding: 1.5rem 1.5rem 1.75rem;
  background: transparent;
  border: none;
  border-radius: 0 0 8px 8px;
  text-align: left;
}

.faq-answer p {
  font-family: Poppins, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0.5px;
  color: #333;
  margin: 0 0 1rem;
}

.faq-answer p:last-child { margin-bottom: 0; }
.faq-item.is-open .faq-answer { display: block; }

/* ── Booking section ── */
.booking-section {
  max-width: 100%;
  margin: 0 auto;
}

.booking-section__inner {
  display: flex;
  justify-content: center;
}

/* ── VSL / compare section ── */
.vsl {
  padding: 5rem 0;
}

.setup-container {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.setup-container > h2 {
  font-size: 1.8rem;
  margin-bottom: 2.5rem;
}

.setup-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  text-align: left;
}

.setup-col {
  background: var(--white);
  border-radius: 14px;
  padding: 1.75rem 1.75rem 1.5rem;
  border: 1px solid var(--border);
}

.setup-col--before { border-color: #e5e7eb; }
.setup-col--after { border-color: rgba(22, 163, 74, 0.25); }

.setup-col__title {
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
}

.setup-col--before .setup-col__title { color: #dc2626; }
.setup-col--after .setup-col__title { color: #16a34a; }

.setup-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }

.setup-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.setup-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.setup-icon--muted { background: #f3f4f6; color: #9ca3af; }
.setup-icon--accent { background: rgba(22, 163, 74, 0.1); color: #16a34a; }

.setup-item__text { display: flex; flex-direction: column; gap: 0.1rem; }
.setup-item__title { font-size: 1rem; font-weight: 600; color: var(--text); }
.setup-item__desc { font-size: 0.88rem; color: var(--text-muted); }

.setup-result {
  margin-top: 1.4rem;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.65rem 0.9rem;
  border-radius: 8px;
}

.setup-result--bad { background: #fef2f2; color: #b91c1c; }
.setup-result--good { background: rgba(22, 163, 74, 0.08); color: #15803d; }

/* ── Services / deliverables ── */
.services { padding: 5rem 0; }
.services .container-narrow { max-width: 960px; }
.services .container-narrow > h2 { font-size: 1.8rem; margin-bottom: 2.5rem; }

/* ── Benefits list ── */
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.benefit-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.benefits span {
  display: block;
  font-family: var(--font);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: 0;
  text-align: center;
  color: #000;
  margin-bottom: 1.1rem;
}

.benefit-image {
  width: 100%;
  max-width: 320px;
  margin: 1.25rem auto;
  border-radius: 12px;
  display: block;
}

.benefit-image--blend {
  mix-blend-mode: multiply;
  border-radius: 0;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.benefit-item p {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.7;
  text-align: center;
}

.deliverables-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem 2.5rem 2rem;
  text-align: left;
}

.deliverables-total {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-weight: 500;
  text-align: center;
}

.deliverables-total__amount {
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--accent);
}

.deliverables-cta {
  display: flex;
  justify-content: center;
}

/* ── Bottom booking section ── */
.bottom-booking {
  padding: 5rem 0;
}

.bottom-booking__title {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.bottom-booking__sub {
  font-size: 0.98rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* ── Footer ── */
.footer {
  background: rgba(109, 40, 217, 0.04);
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  text-align: center;
}

.footer-legal {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-bottom: 0.4rem;
}

.footer-legal a { color: var(--accent); }

.footer-copy {
  font-size: 0.75rem;
  color: #b0b8c8;
}

/* ── Handbuilt section ── */
.handbuilt {
  padding: 4rem 0;
}

.handbuilt-inner {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3rem 3.5rem;
  text-align: center;
  box-shadow: 0 4px 30px rgba(109, 40, 217, 0.07);
}

.handbuilt-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: rgba(109, 40, 217, 0.07);
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1.2rem;
}

.handbuilt-title {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.handbuilt-body {
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 2.2rem;
  line-height: 1.7;
}

.handbuilt-stats {
  display: flex;
  justify-content: center;
  gap: 3.5rem;
}

.handbuilt-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.handbuilt-stat__num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
}

.handbuilt-stat__label {
  font-size: 0.75rem;
  color: var(--text-muted);
  max-width: 110px;
  text-align: center;
  line-height: 1.4;
}

/* ── Locked calendar: fade whole view, no blur ── */
.booking__calendar-wrap--locked .booking__calendar-view {
  opacity: 0.3;
  pointer-events: none;
  user-select: none;
}

.booking__cal-weekday {
  font-size: 0.72rem;
  font-weight: 600;
  color: #9ca3af;
  text-align: center;
  padding: 0.25rem 0;
}

.booking__cal-day {
  font-size: 0.85rem;
  padding: 0.5rem;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: #d1d5db;
  cursor: default;
  text-align: center;
}

.booking__cal-day--available {
  background: rgba(109, 40, 217, 0.08);
  color: var(--accent);
  font-weight: 600;
}

.booking__calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

/* ── Testimonials ── */
.testimonials-section {
  padding: 5rem 0;
}

.testimonials-heading {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.testimonials-pull {
  text-align: center;
  font-family: var(--font);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.3;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonials-grid--single {
  display: flex;
  justify-content: center;
  width: 100%;
}

.testimonials-grid--single .testimonial-card {
  max-width: 480px;
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
}

.testimonial-card--bare {
  background: none;
  border: none;
  padding: 0;
}

.testimonial-video-wrap {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 9/16;
  max-height: 600px;
  border-radius: 10px;
  overflow: hidden;
  background: transparent;
  position: relative;
  cursor: pointer;
  box-sizing: border-box;
  margin: 0 auto;
}

.testimonial-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.tv-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(0,0,0,0.5);
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.tv-play-btn svg {
  width: 64px;
  height: 64px;
  filter: drop-shadow(0 4px 16px rgba(109,40,217,0.5));
  transition: transform 0.15s;
}

.tv-play-btn:hover svg {
  transform: scale(1.08);
}

.tv-unmute-label {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}

.tv-play-btn.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.testimonial-video-wrap--empty {
  background: #f7f5ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-empty-dot {
  font-size: 3rem;
  color: #d8d0f0;
  line-height: 1;
}

.testimonial-video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.testimonial-video-label {
  font-size: 0.78rem;
  color: #9ca3af;
  font-family: var(--font);
}

.testimonial-quote {
  font-size: 1.25rem;
  font-family: var(--font);
  font-weight: 500;
  color: var(--text);
  line-height: 1.55;
  text-align: center;
  margin-top: 1.25rem;
  font-style: italic;
}

.t-highlight {
  font-weight: 800;
  font-style: normal;
  color: var(--accent);
}

.testimonial-author {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  font-family: var(--font);
  text-align: center;
}

/* ── Responsive ── */
@media (max-width: 700px) {
  .container { padding: 0 16px; }
  .hero { padding: 6rem 0 2rem; margin-top: 0; }
  .hero-title { font-size: 36px; line-height: 1.15; }
  .hero-sub { font-size: 20px; line-height: 1.5; margin-bottom: 1.5rem; }
  .lead-box { padding: 1.6rem 1.3rem; }
  .setup-compare { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .benefits { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .deliverables-block { padding: 1.5rem 1.25rem; }
  .handbuilt-inner { padding: 2rem 1.5rem; }
  .handbuilt-stats { gap: 2rem; flex-wrap: wrap; }
  .form-trust { flex-wrap: wrap; font-size: 0.82rem; }
  .form-trust .trust-mobile { display: inline; }
  .form-trust .trust-desktop { display: none; }
  .container-hero { max-width: 100%; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-heading { font-size: 1.5rem; }
  .testimonials-pull { font-size: 1.3rem; }
  .testimonials-grid--single .testimonial-card { max-width: 240px; }
  .testimonial-video-wrap { aspect-ratio: unset; height: 320px; max-height: none; }
  .hero-split { grid-template-columns: 1fr; }
  .hero-mockup { display: none; }
}

/* ── Hero split (preclose2) ── */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 960px;
  margin: 0 auto 2.5rem;
}

.hero-split .lead-box { margin: 0; }

/* ── Animated phone mockup wrapper ── */
.hero-mockup {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 420px;
}

/* ══════════════════════════════════════
   PHONE FRAME
══════════════════════════════════════ */
.anim-phone {
  position: relative;
  width: 190px;
  height: 390px;
  background: #18182a;
  border-radius: 38px;
  box-shadow:
    inset 0 0 0 1.5px rgba(255,255,255,0.10),
    inset 2px 2px 6px rgba(255,255,255,0.05),
    0 30px 80px rgba(80,40,180,0.45),
    0 8px 20px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 6px 10px;
}

/* Side button */
.anim-phone::before {
  content: '';
  position: absolute;
  right: -3px;
  top: 88px;
  width: 3px;
  height: 46px;
  background: #2a2a40;
  border-radius: 0 3px 3px 0;
}

/* Home bar */
.anim-phone::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 4px;
  background: rgba(255,255,255,0.22);
  border-radius: 100px;
}

/* Status bar */
.anim-phone__status {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  margin-bottom: 2px;
  flex-shrink: 0;
}

.anim-phone__time {
  font-family: var(--font);
  font-size: 0.52rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.01em;
}

.anim-phone__icons {
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
}

/* Notch */
.anim-phone__notch {
  position: absolute;
  top: 13px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 12px;
  background: #18182a;
  border-radius: 0 0 10px 10px;
  z-index: 10;
}

/* Screen container */
.anim-phone__screen {
  width: 100%;
  flex: 1;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* ══════════════════════════════════════
   FEED LAYER
══════════════════════════════════════ */
.anim-feed {
  position: absolute;
  inset: 0;
  background: #fff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: anim-feed-vis 10s ease-in-out infinite;
}

.anim-feed__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px 6px;
  flex-shrink: 0;
  border-bottom: 1px solid #f0f0f0;
}

.anim-feed__logo {
  font-family: var(--font);
  font-weight: 800;
  font-size: 0.75rem;
  color: #111;
  letter-spacing: -0.03em;
}

.anim-feed__header-icons {
  display: flex;
  gap: 6px;
}

.anim-icon-sq {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: #e5e7eb;
  display: block;
}

/* Stories */
.anim-feed__stories {
  display: flex;
  gap: 8px;
  padding: 8px 10px;
  flex-shrink: 0;
  border-bottom: 1px solid #f3f3f3;
}

.anim-story {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.anim-story__ring {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, #f472b6, #f97316, #a78bfa, #60a5fa);
}

.anim-story__ring--plain {
  background: #e5e7eb;
}

.anim-story__avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1.5px solid #fff;
}

.anim-story__label {
  font-family: var(--font);
  font-size: 0.38rem;
  color: #555;
  font-weight: 500;
}

/* Scrollable area */
.anim-feed__scroll {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: anim-scroll 10s ease-in-out infinite;
}

/* Posts */
.anim-post {
  flex-shrink: 0;
}

.anim-post__header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px 5px;
}

.anim-post__avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
}

.anim-post__avatar--purple {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.anim-post__meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.anim-post__username {
  font-family: var(--font);
  font-size: 0.48rem;
  font-weight: 700;
  color: #111;
}

.anim-post__location {
  font-family: var(--font);
  font-size: 0.38rem;
  color: #9ca3af;
}

.anim-post__sponsored {
  font-family: var(--font);
  font-size: 0.38rem;
  color: #9ca3af;
}

.anim-post__more {
  font-size: 0.55rem;
  color: #9ca3af;
  letter-spacing: 1px;
  line-height: 1;
}

.anim-post__image {
  width: 100%;
  height: 90px;
  flex-shrink: 0;
}

.anim-post__actions {
  display: flex;
  gap: 8px;
  padding: 6px 10px 2px;
  color: #222;
}

.anim-post__action-icon {
  display: flex;
  align-items: center;
}

.anim-post__likes {
  font-family: var(--font);
  font-size: 0.42rem;
  font-weight: 700;
  color: #111;
  padding: 0 10px 6px;
}

/* Ad post */
.anim-post--ad {
  animation: anim-tap 10s ease-in-out infinite;
  transform-origin: center;
}

.anim-post__ad-image {
  width: 100%;
  height: 88px;
  background: linear-gradient(135deg, #1e0050 0%, #3b0084 40%, #5b21b6 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 12px;
  overflow: hidden;
}

.anim-post__ad-glow {
  position: absolute;
  top: -20px;
  right: -10px;
  width: 70px;
  height: 70px;
  background: radial-gradient(circle, rgba(168,85,247,0.6) 0%, transparent 70%);
  border-radius: 50%;
}

.anim-post__ad-headline {
  font-family: var(--font);
  font-size: 0.58rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.anim-post__ad-sub {
  font-family: var(--font);
  font-size: 0.38rem;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
  position: relative;
  z-index: 1;
}

.anim-post__ad-cta-row {
  padding: 6px 10px 8px;
  display: flex;
}

.anim-post__ad-cta {
  background: linear-gradient(90deg, #7c3aed, #a855f7);
  color: #fff;
  font-family: var(--font);
  font-size: 0.42rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
}

/* ══════════════════════════════════════
   VSL LAYER
══════════════════════════════════════ */
.anim-vsl {
  position: absolute;
  inset: 0;
  background: #080012;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 12px 14px;
  animation: anim-vsl-vis 10s ease-in-out infinite;
}

.anim-vsl__topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: rgba(0,0,0,0.4);
}

.anim-vsl__back {
  font-family: var(--font);
  font-size: 0.42rem;
  color: rgba(255,255,255,0.55);
}

.anim-vsl__title {
  font-family: var(--font);
  font-size: 0.45rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.03em;
}

.anim-vsl__share {
  color: rgba(255,255,255,0.55);
  display: flex;
}

/* ── Bobblehead ── */
.anim-bobble {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: anim-bob 0.55s ease-in-out infinite alternate;
  margin-top: 20px;
  margin-bottom: 4px;
}

.anim-bobble__hair {
  width: 58px;
  height: 20px;
  background: #1a0a30;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  margin-bottom: -3px;
  position: relative;
  z-index: 2;
  box-shadow: 0 -2px 6px rgba(0,0,0,0.4);
}

.anim-bobble__head {
  width: 65px;
  height: 68px;
  background: #FFD4B8;
  border-radius: 50%;
  position: relative;
  box-shadow:
    inset -4px -4px 10px rgba(200,140,100,0.35),
    inset 3px 3px 8px rgba(255,220,190,0.5),
    0 4px 16px rgba(0,0,0,0.45);
  z-index: 1;
}

/* Eyes */
.anim-bobble__eye {
  position: absolute;
  top: 25px;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.15);
  animation: anim-blink 3s ease-in-out infinite;
}

.anim-bobble__eye--left {
  left: 13px;
  animation-delay: 0s;
}

.anim-bobble__eye--right {
  right: 13px;
  animation-delay: 0.06s;
}

.anim-bobble__pupil {
  width: 5px;
  height: 5px;
  background: #1a0a30;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
}

.anim-bobble__highlight {
  width: 2px;
  height: 2px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  right: 2px;
  opacity: 0.9;
}

/* Nose */
.anim-bobble__nose {
  position: absolute;
  top: 38px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 4px;
  background: #e8a882;
  border-radius: 50%;
}

/* Mouth */
.anim-bobble__mouth {
  position: absolute;
  bottom: 13px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 3px;
  background: #c45c3a;
  border-radius: 0 0 10px 10px;
  animation: anim-speak 0.35s ease-in-out infinite alternate;
  overflow: hidden;
}

.anim-bobble__neck {
  width: 18px;
  height: 10px;
  background: #FFD4B8;
  border-radius: 0 0 4px 4px;
  box-shadow: inset -2px 0 4px rgba(200,140,100,0.3);
  margin-top: -1px;
  z-index: 0;
}

.anim-bobble__body {
  width: 54px;
  height: 42px;
  background: linear-gradient(175deg, #1e1450 0%, #2d1e6e 60%, #1a0e42 100%);
  border-radius: 8px 8px 5px 5px;
  position: relative;
  box-shadow:
    inset 0 1px 6px rgba(255,255,255,0.08),
    0 4px 12px rgba(0,0,0,0.5);
  overflow: hidden;
}

.anim-bobble__collar {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 12px;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 65% 100%, 35% 100%);
  opacity: 0.92;
}

/* VSL caption */
.anim-vsl__caption {
  font-family: var(--font);
  font-size: 0.42rem;
  font-style: italic;
  color: rgba(255,255,255,0.75);
  text-align: center;
  margin-bottom: 10px;
  max-width: 130px;
  line-height: 1.5;
}

/* Progress bar */
.anim-vsl__progress-track {
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,0.12);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 4px;
}

.anim-vsl__progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #7c3aed, #a855f7);
  border-radius: 100px;
  animation: anim-progress-fill 10s ease-in-out infinite;
}

.anim-vsl__progress-label {
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-family: var(--font);
  font-size: 0.36rem;
  color: rgba(255,255,255,0.35);
}

/* ══════════════════════════════════════
   KEYFRAME ANIMATIONS (10s cycle)
══════════════════════════════════════ */

/* Feed visibility */
@keyframes anim-feed-vis {
  0%   { opacity: 1; }
  44%  { opacity: 1; }
  50%  { opacity: 0; }
  92%  { opacity: 0; }
  100% { opacity: 1; }
}

/* VSL visibility */
@keyframes anim-vsl-vis {
  0%   { opacity: 0; }
  50%  { opacity: 0; }
  56%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { opacity: 0; }
}

/* Feed scroll — slides down to reveal ad */
@keyframes anim-scroll {
  0%   { transform: translateY(0); }
  18%  { transform: translateY(0); }
  35%  { transform: translateY(-140px); }
  100% { transform: translateY(-140px); }
}

/* Ad tap — subtle scale flash */
@keyframes anim-tap {
  0%   { transform: scale(1); }
  44%  { transform: scale(1); }
  45%  { transform: scale(0.95); }
  46%  { transform: scale(0.95); }
  48%  { transform: scale(1); }
  100% { transform: scale(1); }
}

/* Bobblehead bob */
@keyframes anim-bob {
  0%   { transform: translateY(0) rotate(-2deg); }
  100% { transform: translateY(-6px) rotate(2deg); }
}

/* Mouth speak */
@keyframes anim-speak {
  0%   { height: 3px; }
  100% { height: 9px; }
}

/* Eye blink */
@keyframes anim-blink {
  0%   { transform: scaleY(1); }
  92%  { transform: scaleY(1); }
  94%  { transform: scaleY(0.08); }
  96%  { transform: scaleY(1); }
  100% { transform: scaleY(1); }
}

/* Progress bar fill */
@keyframes anim-progress-fill {
  0%   { width: 0%; }
  50%  { width: 0%; }
  56%  { width: 0%; }
  88%  { width: 65%; }
  90%  { width: 65%; }
  100% { width: 0%; }
}

/* Mobile: hide the phone mockup */
@media (max-width: 700px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-mockup { display: none; }
}

/* ── Dark booking form (preclose2 only) ── */
.booking {
  --booking-bg: #212121;
  --form-text: #f1f1f3;
  --input-border: #424242;
  --gray-muted: #6b6b80;
  --gray-inactive: #424242;
  --purple-light: #1e1030;
  --purple-selected: #3b1d6e;
  background: var(--booking-bg);
  border-color: #2e2e3e;
  box-shadow: 0 4px 40px rgba(109,40,217,0.18);
}

.booking__curtain { background: #212121; }

.booking__divider { background: #2e2e3e; }

.booking__title,
.booking__calendar-meta-title,
.booking__calendar-meta-duration,
.booking__calendar-meta-detail { color: #f1f1f3; }

.booking__intro p,
.booking__label,
.booking__privacy { color: #8b8b9e; }

.booking__intro p a,
.booking__privacy a { color: #a78bfa; }

.booking__input {
  background: #303030 !important;
  border-color: #424242 !important;
  color: #f1f1f3 !important;
}

.booking__input::placeholder { color: #4b4b60; }

.booking__input:focus {
  border-color: #7c3aed !important;
  box-shadow: 0 0 0 3px rgba(124,58,237,0.15) !important;
}

.phone-field {
  background: #303030;
  border-color: #424242;
}

.phone-field__input {
  background: transparent;
  color: #f1f1f3;
}

.phone-field__input::placeholder { color: #4b4b60; }

.country-combo__trigger {
  background: #303030;
  border-color: #424242;
  color: #f1f1f3;
}

.country-combo__menu {
  background: #1c1c28;
  border-color: #2e2e3e;
}

.country-combo__option { color: #f1f1f3; }
.country-combo__option:hover { background: rgba(124,58,237,0.12); }

.booking__submit {
  background: #6d28d9;
  box-shadow: 0 4px 20px rgba(109,40,217,0.35);
}

.booking__submit:hover { background: #5b21b6; }

.booking__step-label { color: #6b6b80; }
.booking__step--active .booking__step-label { color: #a78bfa; }

/* Calendar dark */
.booking__calendar-wrap {
  background: #212121;
  border-color: #2e2e3e;
}

.booking__calendar-header { color: #f1f1f3; }
.booking__calendar-month { color: #f1f1f3; }
.booking__calendar-nav button {
  background: #1c1c28;
  border-color: #2e2e3e;
  color: #a78bfa;
}

.booking__cal-weekday { color: #6b6b80; }
.booking__cal-day { color: #6b6b80; }
.booking__cal-day--available {
  background: rgba(124,58,237,0.15);
  color: #a78bfa;
}
.booking__cal-day--available:hover {
  background: rgba(124,58,237,0.3);
  color: #c4b5fd;
}
.booking__cal-day--selected {
  background: #6d28d9;
  color: #fff;
}

/* Times panel dark */
.booking__times-head,
.booking__times-date,
.booking__times-heading { color: #f1f1f3; }

.booking__time-slot {
  background: #1c1c28;
  border-color: #2e2e3e;
  color: #a78bfa;
}

.booking__time-slot:hover {
  background: rgba(124,58,237,0.2);
  border-color: #7c3aed;
}

/* Confirm panel dark */
.booking__confirm-greeting,
.booking__confirm-label,
.booking__confirm-value,
.booking__confirm-next-title { color: #f1f1f3; }

.booking__confirm-details {
  background: #1c1c28;
  border-color: #2e2e3e;
}

.booking__confirm-row { border-color: #2e2e3e; }
.booking__confirm-next-text { color: #8b8b9e; }
.booking__confirm-link { color: #a78bfa; }
.booking__confirm-btn { background: #6d28d9; }
