:root {
  --ink: #0b0b10;
  --white: #ffffff;
  --muted: #6f7380;
  --accent: #6c3cff;
  --accent-2: #2f6bff;
  --accent-soft: #efeaff;
  --border: #e5e7eb;
  --dark: #0d0b0b;
  --dark-2: #111326;
  --surface: #f7f7fb;
  --shadow: 0 20px 60px rgba(20,20,30,.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: #f5f5f7;
  line-height: 1.55;
}
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.container {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 0 22px;
}
.narrow { max-width: 860px; }
.step, .section { position: relative; overflow: hidden; }
.section { padding: 96px 0; }

/* STEP 1 */
.step-one {
  min-height: 100vh;
  padding: 72px 0 88px;
  background:
    radial-gradient(circle at 80% 10%, rgba(108,60,255,.16), transparent 34%),
    radial-gradient(circle at 10% 85%, rgba(47,107,255,.12), transparent 30%),
    #0d0b0b;
  color: var(--white);
}
.texture {
  position: absolute;
  inset: 0;
  opacity: .22;
  pointer-events: none;
  background-image:
    linear-gradient(30deg, rgba(255,255,255,.04) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,.04) 87.5%, rgba(255,255,255,.04)),
    linear-gradient(150deg, rgba(255,255,255,.04) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,.04) 87.5%, rgba(255,255,255,.04));
  background-size: 64px 112px;
}
.step-one .container { position: relative; z-index: 1; text-align: center; }
.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  color: #c8b8ff;
  background: rgba(255,255,255,.05);
}
h1 {
  margin: 0;
  font-size: clamp(2rem, 4.6vw, 4.25rem);
  line-height: 1.05;
  letter-spacing: -.045em;
  font-weight: 900;
}
h1 span, .step-two h2 span { color: var(--accent); }
.lead {
  max-width: 760px;
  margin: 24px auto 34px;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  line-height: 1.45;
  font-weight: 700;
  color: #f0f0f2;
}
.down { display: inline-block; margin-left: 4px; }
.video-shell {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 12px;
  background: rgba(255,255,255,.04);
  box-shadow: 0 24px 80px rgba(0,0,0,.42);
}
.video-shell iframe { width: 100%; aspect-ratio: 16/9; border: 0; border-radius: 14px; display: block; }
.video-placeholder {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(130deg, rgba(108,60,255,.88), rgba(47,107,255,.72)),
    radial-gradient(circle at 20% 20%, #ff6b4a, transparent 45%),
    #28115f;
}
.video-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(4,4,8,.72), rgba(4,4,8,.08)); }
.video-copy { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 24px; text-align: center; }
.video-copy span { font-weight: 900; letter-spacing: .05em; }
.video-copy small { max-width: 520px; color: rgba(255,255,255,.75); }
.play-button {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding-left: 6px;
  font-size: 30px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  box-shadow: 0 14px 34px rgba(80,50,255,.45);
}
.primary-cta, .secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.primary-cta {
  margin-top: 28px;
  padding: 16px 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  box-shadow: 0 16px 34px rgba(80,50,255,.3);
}
.primary-cta:hover, .secondary-cta:hover { transform: translateY(-2px); }
.primary-cta.compact { margin-top: 24px; }

/* STEP 2 */
.step-two { padding: 76px 0 90px; background: #fff; }
.step-label { margin-bottom: 12px; font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 900; color: var(--accent); }
.step-two h2 {
  margin: 0;
  max-width: 790px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.08;
  letter-spacing: -.045em;
  font-weight: 900;
}
.guarantee { margin: 26px 0 36px; max-width: 760px; font-size: clamp(1.05rem, 2vw, 1.35rem); line-height: 1.5; font-style: italic; font-weight: 700; }
.booking-card { overflow: hidden; border: 1px solid var(--border); border-radius: 18px; box-shadow: var(--shadow); background: #fff; }
.booking-topbar { display: flex; align-items: center; gap: 14px; padding: 24px; border-bottom: 1px solid var(--border); }
.booking-topbar strong, .booking-topbar span { display: block; }
.booking-topbar strong { font-size: 1.15rem; }
.booking-topbar span { margin-top: 5px; color: var(--muted); }
.mini-logo { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; color: #fff; font-weight: 900; background: linear-gradient(135deg, var(--accent-2), var(--accent)); }
.calendar-placeholder { min-height: 480px; padding: 44px 22px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; background: linear-gradient(180deg, rgba(108,60,255,.04), transparent 40%), #fff; }
.calendar-icon { font-size: 46px; }
.calendar-placeholder h3 { margin: 14px 0 8px; font-size: 1.5rem; }
.calendar-placeholder p { max-width: 520px; margin: 0 0 20px; color: var(--muted); line-height: 1.6; }
.calendar-placeholder code { color: var(--accent); font-weight: 800; }
.secondary-cta { padding: 14px 20px; color: #fff; background: #11131a; }
.privacy-note { margin: 18px auto 0; text-align: center; font-size: .92rem; color: var(--muted); }

/* TRUST STRIP */
.trust-strip { background: #11131a; color: white; }
.trust-grid { display: grid; grid-template-columns: repeat(3,1fr); }
.trust-grid div { padding: 28px 22px; text-align: center; border-right: 1px solid rgba(255,255,255,.08); }
.trust-grid div:last-child { border-right: 0; }
.trust-grid strong, .trust-grid span { display: block; }
.trust-grid strong { font-size: 1rem; }
.trust-grid span { margin-top: 5px; color: rgba(255,255,255,.58); font-size: .86rem; }

/* SHARED */
.section-heading { max-width: 800px; margin: 0 auto 48px; text-align: center; }
.section-heading.left { margin: 0; text-align: left; }
.section-kicker { display: inline-block; color: var(--accent); font-size: .78rem; font-weight: 900; letter-spacing: .16em; }
.section-kicker.light { color: #c8b8ff; }
.section-heading h2, .comparison-copy h2, .final-cta-card h2 {
  margin: 13px 0 16px;
  font-size: clamp(2.1rem, 4.2vw, 4rem);
  line-height: 1.05;
  letter-spacing: -.045em;
}
.section-heading p, .comparison-copy p, .final-cta-card p { margin: 0; color: var(--muted); font-size: 1.05rem; }

/* PROCESS */
.process-section { background: var(--surface); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-card { position: relative; padding: 28px; border: 1px solid var(--border); border-radius: 22px; background: white; box-shadow: 0 16px 42px rgba(20,20,30,.06); }
.process-card::after { content: ""; position: absolute; inset: auto 22px 0; height: 3px; border-radius: 999px; background: linear-gradient(90deg, var(--accent-2), var(--accent)); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.process-card:hover::after { transform: scaleX(1); }
.number { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; color: white; font-weight: 900; background: linear-gradient(135deg, var(--accent-2), var(--accent)); }
.process-card h3 { margin: 22px 0 10px; font-size: 1.15rem; }
.process-card p { margin: 0; color: var(--muted); font-size: .95rem; }

/* DELIVERABLES */
.deliverables-section { background: var(--dark-2); color: white; }
.deliverables-section .section-heading p { color: rgba(255,255,255,.62); }
.split-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 72px; align-items: center; }
.deliverables-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.deliverables-grid div { padding: 19px; border: 1px solid rgba(255,255,255,.09); border-radius: 16px; background: rgba(255,255,255,.06); font-weight: 700; }
.deliverables-grid span { color: #62e2bd; margin-right: 9px; }

/* AUDIENCE */
.audience-section { background: #fff; }
.audience-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.audience-card { padding: 30px; border-radius: 22px; border: 1px solid var(--border); background: linear-gradient(180deg,#fff,#fafaff); box-shadow: 0 16px 40px rgba(20,20,30,.05); }
.audience-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; color: var(--accent); font-weight: 900; background: var(--accent-soft); }
.audience-card h3 { margin: 22px 0 9px; }
.audience-card p { margin: 0; color: var(--muted); }

/* COMPARISON */
.comparison-section { background: linear-gradient(180deg,#f6f4ff,#eef1ff); }
.comparison-wrap { display: grid; grid-template-columns: .82fr 1.18fr; gap: 64px; align-items: center; }
.comparison-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.comparison-card { padding: 26px; border-radius: 22px; }
.comparison-label { display: block; margin-bottom: 18px; font-size: .82rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.comparison-card ul { list-style: none; padding: 0; margin: 0; }
.comparison-card li { position: relative; padding: 11px 0 11px 26px; border-bottom: 1px solid rgba(0,0,0,.08); font-weight: 700; }
.comparison-card li:last-child { border-bottom: 0; }
.comparison-card li::before { position: absolute; left: 0; }
.muted-card { background: rgba(255,255,255,.65); border: 1px solid rgba(11,11,16,.08); }
.muted-card li::before { content: "×"; color: #b5b7c1; }
.featured-card { color: white; background: linear-gradient(145deg,#191d3e,#5535dd); box-shadow: 0 22px 60px rgba(70,48,190,.26); }
.featured-card li { border-color: rgba(255,255,255,.12); }
.featured-card li::before { content: "✓"; color: #7ff0c7; }

/* FAQ */
.faq-section { background: #fff; }
.faq-list { display: grid; gap: 12px; }
details { padding: 20px 22px; border: 1px solid var(--border); border-radius: 16px; background: white; }
summary { cursor: pointer; font-weight: 800; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; float: right; color: var(--accent); font-size: 1.25rem; }
details[open] summary::after { content: "−"; }
details p { margin: 14px 0 0; color: var(--muted); }

/* FINAL CTA */
.final-cta-section { padding-top: 48px; background: #fff; }
.final-cta-card { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 48px; color: white; border-radius: 28px; background: linear-gradient(135deg,#12162e,#4c35d6); box-shadow: 0 26px 70px rgba(50,35,160,.24); }
.final-cta-card > div:first-child { max-width: 760px; }
.final-cta-card p { color: rgba(255,255,255,.68); }
.final-actions { min-width: 260px; display: flex; flex-direction: column; align-items: stretch; text-align: center; }
.final-actions .primary-cta { margin-top: 0; }
.text-cta { margin-top: 16px; color: rgba(255,255,255,.75); text-decoration: none; font-weight: 700; }

/* FOOTER */
footer { padding: 32px 0; background: #0b0e22; color: rgba(255,255,255,.64); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: .86rem; }
.footer-brand { color: white; font-size: 1.35rem; font-weight: 900; }
.footer-brand span { color: #7761ff; }
.footer-links { display: flex; gap: 18px; }
.footer-links a { text-decoration: none; }

/* ANIMATION */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@media (max-width: 980px) {
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .split-grid, .comparison-wrap { grid-template-columns: 1fr; }
  .section-heading.left { text-align: center; margin-inline: auto; }
  .audience-grid { grid-template-columns: 1fr; }
  .final-cta-card { flex-direction: column; text-align: center; }
  .final-actions { width: min(100%, 380px); }
}

@media (max-width: 680px) {
  .container { padding: 0 14px; }
  .section { padding: 72px 0; }
  .step-one { padding: 44px 0 56px; }
  .step-two { padding: 50px 0 64px; }
  h1 { font-size: 2.05rem; }
  h1 br { display: none; }
  .lead { font-size: 1.05rem; margin-top: 18px; }
  .video-shell { padding: 6px; border-radius: 12px; }
  .video-placeholder, .video-shell iframe { border-radius: 9px; }
  .play-button { width: 66px; height: 66px; font-size: 24px; }
  .primary-cta { width: 100%; }
  .step-two h2 { font-size: 2rem; }
  .booking-topbar { padding: 18px; }
  .calendar-placeholder { min-height: 420px; }
  .trust-grid, .process-grid, .deliverables-grid, .comparison-cards { grid-template-columns: 1fr; }
  .trust-grid div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .trust-grid div:last-child { border-bottom: 0; }
  .final-cta-card { padding: 34px 22px; }
  .footer-inner { flex-direction: column; text-align: center; }
}
