:root {
  --bg: #0b1324;
  --panel: #0f172a;
  --card: #ffffff;
  --muted: #5b6475;
  --text: #0b1220;
  --primary: #4f7eff;
  --accent: #ffd166;
  --border: #e5e7eb;
  --shadow: 0 20px 70px rgba(15, 23, 42, 0.12);
  --radius: 16px;
  --font-primary: 'Space Grotesk', 'Manrope', system-ui, -apple-system, sans-serif;
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 90px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-primary);
  color: var(--text);
  background: #f7f8fb;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  padding: 8px 12px;
  border-radius: 10px;
  background: #ffffff;
  color: #0b1220;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.18);
  z-index: 30;
}

.skip-link:focus {
  left: 20px;
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

.section-head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px auto;
}

.meet-hannah .section-head {
  margin-bottom: 28px;
}

.section-head .lead {
  margin-left: auto;
  margin-right: auto;
}

h1, h2, h3, h4 {
  color: #0b1220;
  margin: 0 0 12px;
  line-height: 1.1;
}

p {
  margin: 0 0 12px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(79, 126, 255, 0.1);
  color: #1d3b8f;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.eyebrow.reveal {
  background: #ffffff;
  border: 1px solid #dfe4f4;
  color: #0b1220;
  font-size: 18px;
  font-weight: 800;
  padding: 10px 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}

.reveal-heading {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0b1220;
  margin: 0 0 10px;
}

.reveal-subheading {
  font-size: 16px;
  font-weight: 600;
  color: #4b5565;
  margin: 0;
}

.lead {
  color: #3d4555;
  font-size: 18px;
  max-width: 650px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(79, 126, 255, 0.25);
}

.btn.solid {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 30px rgba(79, 126, 255, 0.35);
}

.btn.solid:hover {
  background: #3e63d8;
}

.btn.outline {
  border: 1px solid #d0d7ec;
  color: #1c2b4b;
  background: #fff;
}

.btn.ghost {
  background: rgba(79, 126, 255, 0.08);
  color: #1c2b4b;
}

.btn.full {
  width: 100%;
}

.btn:focus-visible {
  outline: 3px solid rgba(79, 126, 255, 0.35);
  outline-offset: 2px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 0;
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 18px;
  height: auto;
  min-height: 74px;
  padding: 12px 0;
  box-sizing: border-box;
}

.logo {
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 20px;
  line-height: 1.1;
  display: inline-flex;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
  color: #1f2a3d;
}

.nav-links a {
  font-weight: 600;
  font-size: 15px;
  color: #2d3550;
  line-height: 1.1;
  display: inline-flex;
  align-items: center;
  padding: 10px 10px;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav-actions .btn {
  line-height: 1.1;
  padding-top: 12px;
  padding-bottom: 12px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: #1c2b4b;
  border-radius: 4px;
}

.mobile-drawer {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 0 5vw 18px;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.hero {
  padding: 80px 0;
  background: radial-gradient(120% 120% at 20% 10%, rgba(79, 126, 255, 0.12), transparent 55%),
    radial-gradient(120% 120% at 90% 10%, rgba(255, 209, 102, 0.18), transparent 45%),
    linear-gradient(180deg, #fdfefe 0%, #f5f7fb 100%);
}

.pain-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 14px;
}

.pain-copy .tiny {
  margin: 14px 0 0;
  color: #6b7285;
}

.pain-list li {
  position: relative;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  padding: 10px 0 10px 18px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
  background: transparent;
}

.pain-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, #4f7eff 0%, #8cc1ff 100%);
}

.pain-list strong {
  color: #1d3b8f;
  font-weight: 700;
  font-size: 16px;
}

.pain-list span {
  color: #2f3647;
  font-size: 15px;
  line-height: 1.45;
}

.pain-list li:last-child {
  border-bottom: none;
}

.pain-stat {
  margin-top: 18px;
  font-weight: 800;
  font-size: clamp(18px, 2vw, 22px);
  color: #0b1220;
  letter-spacing: -0.01em;
}

.pain-stat span {
  color: #ef4444;
  font-weight: 800;
}

.pain-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .pain-list li {
    grid-template-columns: 1fr;
    padding-left: 18px;
  }

  .pain-list li::before {
    top: 16px;
  }

  .pain-actions {
    flex-direction: column;
  }

  .pain-stat {
    text-align: left;
  }
}

.hero-problem .hero-problem-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #ffffff 0%, #f3f6ff 55%, #fff3e0 100%);
  border: 1px solid #dbe2f5;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.16);
}

.hero-problem .hero-problem-card::before {
  content: none;
}

.hero-problem .hero-problem-card::after {
  content: '';
  position: absolute;
  z-index: 0;
  top: -120px;
  right: -120px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(79, 126, 255, 0.25), transparent 70%);
  opacity: 0.8;
}

.hero-problem .hero-problem-card > * {
  position: relative;
  z-index: 1;
}

.hero-problem .eyebrow {
  margin-bottom: 10px;
  background: rgba(79, 126, 255, 0.16);
  border: 1px solid rgba(79, 126, 255, 0.25);
}

.hero-problem h2 {
  font-size: clamp(24px, 2.4vw, 32px);
  margin-bottom: 10px;
}

.cycle-words {
  display: inline-block;
  height: 1.2em;
  overflow: hidden;
  vertical-align: bottom;
  color: var(--primary);
}

.cycle-words-inner {
  display: block;
  animation: cycleWords 8s linear infinite;
  will-change: transform;
}

.cycle-words span {
  display: block;
  line-height: 1.2em;
}

@keyframes cycleWords {
  0%,
  18% {
    transform: translateY(0);
  }
  25%,
  43% {
    transform: translateY(-1.2em);
  }
  50%,
  68% {
    transform: translateY(-2.4em);
  }
  75%,
  93% {
    transform: translateY(-3.6em);
  }
  100% {
    transform: translateY(-4.8em);
  }
}

.hero-problem .lead {
  color: #2f3647;
  margin-bottom: 16px;
}

.hero-problem .tiny {
  margin-top: 12px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.hero-copy {
  max-width: 560px;
}

.hero-copy h1 {
  font-size: clamp(34px, 4vw, 48px);
  margin-bottom: 18px;
}

.hero-copy .lead {
  margin-bottom: 20px;
  font-size: 18px;
  color: #2f3647;
}

.hero-copy .tiny {
  margin-top: 8px;
}

.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 6px;
  border-left: 2px solid rgba(79, 126, 255, 0.2);
  padding-left: 12px;
}

.hero-highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  border-radius: 0;
  background: transparent;
  border: none;
  font-weight: 600;
  color: #1c2b4b;
}

.highlight-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #4f7eff;
  box-shadow: none;
  flex-shrink: 0;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.rating-wrap {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.social-proof {
  display: grid;
  gap: 14px;
  align-items: start;
}

.rating-card {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e3e7f1;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
  width: fit-content;
  justify-self: center;
}

.stars {
  color: #f59e0b;
  font-size: 18px;
  letter-spacing: 0.08em;
}

.proof-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.proof-pill {
  background: #fff;
  border: 1px solid #e3e7f1;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
  color: #1c2b4b;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
}

.hero-media {
  position: relative;
  display: grid;
  place-items: center;
}

.glass {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
  border-radius: 20px;
  padding: 20px;
  width: min(520px, 100%);
  backdrop-filter: blur(10px);
}

.label {
  font-size: 13px;
  font-weight: 700;
  color: #1c2b4b;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.highlight-hannah {
  color: var(--primary);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.call-card {
  background: linear-gradient(150deg, rgba(79, 126, 255, 0.08), rgba(255, 255, 255, 0.85));
  border: 1px solid #d8e1ff;
  border-radius: 16px;
  padding: 16px;
}

.summary-card {
  margin-top: 12px;
  padding: 12px;
  border-radius: 12px;
  border: 1px dashed #dfe4f4;
  background: #f7f9ff;
  color: #1f2a3d;
}

.hannah-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid #d8e1ff;
  border-radius: 12px;
  background: #f7f9ff;
  margin-bottom: 12px;
}

.hannah-profile img {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.12);
}

.caller {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e5e7eb;
}

.dot.online {
  background: #22c55e;
}

.caller .pill {
  padding: 6px 10px;
  border-radius: 999px;
  background: #101828;
  color: #fff;
  font-size: 12px;
}

.tiny {
  font-size: 13px;
  color: #6b7285;
  margin: 0;
}

.strong {
  font-weight: 700;
  margin: 0;
}

.transcript {
  margin: 14px 0;
  padding: 12px;
  border-radius: 12px;
  background: #fff;
  border: 1px dashed #dfe5f1;
  color: #1f2937;
  line-height: 1.5;
}

.transcript p { margin: 0 0 6px; }

.transcript .ai { color: #1c2b4b; font-weight: 600; }

.transcript .caller-line { color: #334155; }

.call-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #d0d7ec;
  background: #fff;
  font-weight: 700;
  color: #1c2b4b;
  cursor: pointer;
}

.chip.ghost {
  background: rgba(255, 209, 102, 0.15);
  border-color: rgba(255, 209, 102, 0.6);
}

.cta-card {
  background: #0f172a;
  color: #fff;
  padding: 16px;
  border-radius: 14px;
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.cta-card p { margin: 0; }


.meet-hannah {
  padding: 60px 0;
  background: #f9fbff;
}

.meet-hannah-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(220px, 320px) minmax(220px, 1fr);
  gap: 18px;
  align-items: center;
}

.meet-side {
  display: grid;
  gap: 14px;
}

.meet-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.meet-card .strong {
  display: block;
  margin-bottom: 6px;
}

.meet-card:hover {
  transform: translateY(-4px);
  border-color: #cbd5f5;
  box-shadow: 0 18px 36px rgba(79, 126, 255, 0.18);
}

.meet-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.meet-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #eef2ff;
  color: #1c2b4b;
  font-size: 16px;
  flex-shrink: 0;
}

.meet-center {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid #dfe4f4;
  box-shadow: 0 16px 50px rgba(15, 23, 42, 0.14);
  background: #fff;
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 360px;
  max-height: 440px;
  text-align: center;
}

.meet-center img,
.meet-center video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.meet-center figcaption {
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(79, 126, 255, 0.08), #ffffff);
  border-top: 1px solid #d8e1ff;
}

@media (max-width: 980px) {
  .meet-hannah-grid {
    grid-template-columns: 1fr;
  }

  .meet-center {
    order: -1;
  }
}

.pill-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-list span {
  padding: 10px 12px;
  background: #eef2ff;
  border-radius: 12px;
  color: #1c2b4b;
  font-weight: 700;
  font-size: 14px;
}

.pill-list--muted span {
  background: #f1f5ff;
  color: #2a3655;
  font-weight: 600;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 8px;
  display: grid;
  gap: 10px;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: #1f2937;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #22c55e;
  font-weight: 800;
}

.callouts {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.callout {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px;
  background: #fdfefe;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.steps {
  padding: 80px 0 70px;
}

.card-grid.three {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  border-color: #d0d7ec;
}

.icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(79, 126, 255, 0.12);
  display: grid;
  place-items: center;
  color: #1c2b4b;
  margin-bottom: 12px;
}

.step-card {
  position: relative;
  padding: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(79, 126, 255, 0.04) 0%, #ffffff 60%);
  border-color: #e1e7f5;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.1);
  --step-color: #4f7eff;
  --step-soft: rgba(79, 126, 255, 0.14);
  --step-text: #ffffff;
}

.step-card::before {
  content: none;
}

.step-card::after {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(79, 126, 255, 0.12), transparent 70%);
  opacity: 0.65;
}

.step-card.step-one {
  --step-color: #4f7eff;
  --step-soft: rgba(79, 126, 255, 0.14);
  --step-text: #ffffff;
}

.step-card.step-two {
  --step-color: #4f7eff;
  --step-soft: rgba(79, 126, 255, 0.14);
  --step-text: #ffffff;
}

.step-card.step-three {
  --step-color: #4f7eff;
  --step-soft: rgba(79, 126, 255, 0.14);
  --step-text: #ffffff;
}

.step-card.step-featured {
  border-color: rgba(79, 126, 255, 0.4);
  box-shadow: 0 20px 55px rgba(79, 126, 255, 0.16);
  background: linear-gradient(180deg, rgba(79, 126, 255, 0.08) 0%, #ffffff 65%);
}

.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.step-badge {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--step-soft);
  color: var(--step-color);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(79, 126, 255, 0.18);
}

.step-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid rgba(79, 126, 255, 0.2);
  color: var(--step-color);
  font-size: 18px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.1);
}

.step-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--step-color);
  color: var(--step-text);
  font-weight: 700;
  font-size: 14px;
  border: 1px solid rgba(79, 126, 255, 0.2);
  box-shadow: 0 10px 22px rgba(79, 126, 255, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-card.step-one .step-button {
  background: #fff;
  color: #1c2b4b;
  border-color: #d0d7ec;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
}

.step-card.step-one .step-button:hover {
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.16);
}

.step-card * {
  position: relative;
  z-index: 1;
}

.step-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
}

.feature-panel {
  padding: 80px 0;
  background: radial-gradient(120% 120% at 20% 10%, rgba(79, 126, 255, 0.12), transparent 55%),
    radial-gradient(120% 120% at 90% 10%, rgba(255, 209, 102, 0.18), transparent 45%),
    linear-gradient(180deg, #fdfefe 0%, #f5f7fb 100%);
  color: #1c2b4b;
}

.feature-showcase {
  display: grid;
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
}

.flow-card {
  background: linear-gradient(160deg, #ffffff 0%, #eef3ff 55%, #ffffff 100%);
  border: 1px solid #d5def5;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.14);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.flow-items {
  display: grid;
  gap: 12px;
  grid-column: 1;
  align-self: center;
}

.flow-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}

.flow-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(79, 126, 255, 0.12);
  color: #1c2b4b;
  font-size: 18px;
}

.flow-summary {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 12px 14px;
  background: #f8fafc;
  grid-column: 2;
  align-self: center;
}

.flow-card .label {
  grid-column: 1 / -1;
  text-align: center;
}

@media (max-width: 900px) {
  .flow-card {
    grid-template-columns: 1fr;
  }

  .flow-items,
  .flow-summary {
    grid-column: auto;
  }
}


.cta-banner {
  padding: 80px 0;
  background: radial-gradient(120% 120% at 10% 20%, rgba(79, 126, 255, 0.12), transparent 60%),
    linear-gradient(180deg, #f9fbff 0%, #eef3ff 100%);
}

.pricing {
  padding: 80px 0;
  background: linear-gradient(180deg, #f6f8ff 0%, #ffffff 60%);
}

.pricing .section-head {
  margin-bottom: 28px;
}

.billing-toggle {
  display: flex;
  justify-content: center;
  background: #eef2ff;
  border-radius: 14px;
  padding: 6px;
  gap: 6px;
  margin: 0 auto 32px auto;
  border: 1px solid #d6ddff;
  width: fit-content;
  position: relative;
  z-index: 2;
}

.billing-toggle .toggle {
  border: none;
  background: transparent;
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 700;
  color: #1c2b4b;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
  pointer-events: auto;
  touch-action: manipulation;
}

.billing-toggle .toggle.active {
  background: #fff;
  color: #1c2b4b;
  box-shadow: 0 10px 30px rgba(79, 126, 255, 0.18);
}

.pricing-cards {
  margin-top: 0;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pricing-card .btn {
  margin-top: auto;
}


.pricing-card.featured {
  border-color: rgba(79, 126, 255, 0.7);
  box-shadow: 0 26px 75px rgba(79, 126, 255, 0.22);
  background: linear-gradient(180deg, rgba(79, 126, 255, 0.12), #ffffff);
}

.pricing-card.premium {
  border-color: rgba(40, 71, 197, 0.18);
  background: linear-gradient(180deg, rgba(40, 71, 197, 0.06), #ffffff);
  box-shadow: 0 18px 45px rgba(40, 71, 197, 0.12);
}

.most-popular {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(79, 126, 255, 0.12);
  color: #1d3b8f;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.most-popular.premium {
  background: rgba(40, 71, 197, 0.18);
  color: #1b2f7a;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-weight: 800;
  font-size: 32px;
  margin: 6px 0;
  color: #0b1220;
}

.price .price-amount {
  font-size: 34px;
}

.price .price-suffix {
  font-size: 14px;
  color: #4b5565;
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  display: grid;
  gap: 10px;
  color: #1f2937;
}

.price-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.price-list li::before {
  content: '✓';
  color: #22c55e;
  font-weight: 800;
  margin-top: 2px;
}

.price-list li.no::before {
  content: 'x';
  color: #ef4444;
}

.pricing-note {
  text-align: center;
  margin-top: 22px;
  color: #6b7285;
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: #cbd5f5;
  box-shadow: 0 24px 60px rgba(79, 126, 255, 0.22);
}

.cta-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: start;
}

.booking-form {
  display: grid;
  gap: 12px;
}

.booking-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  color: #1c2b4b;
}

.booking-form input,
.booking-form select {
  border: 1px solid #d0d7ec;
  border-radius: 10px;
  padding: 12px;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
}

.booking-form input:focus,
.booking-form select:focus {
  outline: 2px solid rgba(79, 126, 255, 0.4);
  border-color: rgba(79, 126, 255, 0.6);
}

.cta-card.booking {
  background: #fff;
  border: 1px solid #dfe4f4;
  box-shadow: var(--shadow);
}
.calendar-section {
  padding: 56px 0 28px;
  background: radial-gradient(120% 120% at 20% 10%, rgba(79, 126, 255, 0.32), transparent 55%),
    radial-gradient(120% 120% at 90% 15%, rgba(255, 209, 102, 0.18), transparent 55%),
    linear-gradient(180deg, #1e3a8a 0%, #2847c5 100%);
}

.calendar-section .section-head {
  margin-bottom: 32px;
}

.calendar-section .eyebrow {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.calendar-section .section-head h2 {
  color: #ffffff;
}

.calendar-section .section-head .lead {
  color: #dfe7ff;
}

.calendar-cta {
  margin-top: 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
}

.calendar-cta .lead {
  color: #ffffff;
  margin: 0 auto 22px;
  max-width: 640px;
}

.calendar-cta .btn {
  border-color: rgba(255, 255, 255, 0.6);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  width: fit-content;
}

.calendar-cta .btn:hover {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.2);
}

.calendar-panel {
  width: calc(100% - 56px);
  max-width: 1040px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 22px;
  padding: 12px;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.25);
}

.calendar-panel .booking-embed {
  border: none;
  box-shadow: none;
  border-radius: 20px;
}

.calendar-panel .booking-embed iframe {
  height: 787px;
}
.booking-embed {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.booking-embed iframe {
  width: 100%;
  height: 560px;
  border: none;
}

@media (max-width: 900px) {
  .calendar-panel {
    width: calc(100% - 40px);
    padding: 10px;
    border-radius: 20px;
  }

  .calendar-panel .booking-embed iframe {
    height: 660px;
  }
}

@media (max-width: 640px) {
  .calendar-section {
    padding: 48px 0;
  }

  .calendar-panel {
    width: calc(100% - 36px);
    padding: 8px;
  }

  .calendar-panel .booking-embed iframe {
    height: 560px;
  }

  .calendar-cta .btn {
    width: auto;
  }

  .booking-embed iframe {
    height: 520px;
  }
}

.testimonials {
  padding: 72px 0;
}

.results-centered {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.results-centered .section-head {
  margin-bottom: 6px;
}

.results-grid {
  width: 100%;
  max-width: 860px;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.result-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
  border: 1px solid #e1e7f5;
  min-height: 108px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.result-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(79, 126, 255, 0.14);
  color: #1c2b4b;
  font-size: 18px;
}

.result-card h3 {
  margin: 0 0 6px;
  font-size: 18px;
  color: #0b1220;
}

.result-card p {
  margin: 0;
  color: #4b5565;
}

.results-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.results-actions.centered {
  justify-content: center;
}

.results-proof {
  max-width: 520px;
  text-align: center;
  padding: 18px 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(79, 126, 255, 0.08), #ffffff 60%);
  border: 1px solid #dfe6f7;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
  display: grid;
  gap: 8px;
}

.results-proof-head {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.results-proof .stars {
  font-size: 16px;
}

.results-source {
  color: #6b7285;
}

.results-quote {
  margin: 0 0 8px;
  font-size: 16px;
  color: #0b1220;
}

@media (max-width: 640px) {
  .results-grid {
    grid-template-columns: 1fr;
  }

  .results-actions {
    flex-direction: column;
    width: 100%;
  }
}

.faq {
  padding: 72px 0 90px;
  background: linear-gradient(180deg, #f8faff 0%, #ffffff 70%);
  color: #1f2937;
}

.faq h2 { color: #0b1220; }

.accordion {
  display: grid;
  gap: 16px;
  max-width: 820px;
  margin: 0 auto;
}

.accordion-item {
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.accordion-trigger {
  width: 100%;
  padding: 16px 44px 16px 18px;
  background: none;
  border: none;
  text-align: left;
  color: #1c2b4b;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  display: block;
  position: relative;
  transition: background 0.2s ease, color 0.2s ease;
}

.accordion-trigger::after {
  content: '+';
  font-weight: 800;
  font-size: 18px;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
}

.accordion-trigger:hover {
  background: #f1f5ff;
}

.accordion-trigger[aria-expanded="true"] {
  background: linear-gradient(90deg, #4f7eff 0%, #6a8bff 100%);
  color: #ffffff;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.accordion-trigger[aria-expanded="true"]::after {
  content: '–';
  color: #ffffff;
}

.accordion-panel {
  padding: 14px 18px 18px;
  background: #f8faff;
  border-top: 1px solid #e2e8f0;
  color: #4b5565;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
}

.accordion-item:focus-within {
  border-color: #cdd7ff;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
}

.site-footer {
  background: #0b1220;
  color: #c5c9d7;
  padding: 48px 0 0;
}

.site-footer .logo {
  display: block;
  height: auto;
  padding-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  padding-bottom: 24px;
}

.footer-grid a {
  color: #e6ebff;
  display: block;
  margin: 6px 0;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.25);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: #e6ebff;
}

.footer-cta .btn { margin-top: 8px; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0 26px;
}

/* Responsive */
@media (max-width: 960px) {
  .site-header .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .nav {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "logo menu";
    min-height: 64px;
    padding: 10px 0;
    align-items: center;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .logo {
    grid-area: logo;
    height: 44px;
    display: flex;
    align-items: center;
  }

  .menu-toggle {
    display: flex;
    justify-self: end;
    grid-area: menu;
    width: 44px;
    height: 44px;
    padding: 0;
    align-items: center;
    justify-content: center;
  }

  .mobile-drawer {
    display: flex;
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
    padding: 0 5vw;
    border-bottom: 0;
    transition: max-height 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
  }

  .mobile-drawer.open {
    max-height: 70vh;
    opacity: 1;
    pointer-events: auto;
    padding: 0 5vw 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero { padding: 60px 0; }

  .site-header {
    padding: 0;
  }
}

@media (max-width: 640px) {
  .btn { width: 100%; justify-content: center; }
  .hero-ctas { flex-direction: column; }
  .social-proof { flex-direction: column; align-items: flex-start; }
  .call-actions { flex-direction: column; align-items: stretch; }
  .accordion-trigger { font-size: 15px; }
  .hero-copy .eyebrow { display: none; }
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.95);
  border-top: 1px solid #e5e7eb;
  padding: 10px 16px;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(6px);
}

.mobile-cta .btn {
  flex: 1;
  padding: 12px 14px;
  font-size: 14px;
  width: auto;
}

@media (min-width: 769px) {
  .mobile-cta {
    display: none;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 72px;
  }
}
