:root {
  --black: #0e0e0f;
  --black-2: #171719;
  --paper: #ffffff;
  --soft: #f6f5ef;
  --text: #111111;
  --muted: #666666;
  --line: #e6e0d5;
  --orange: #ff6d26;
  --orange-2: #ff9a44;
  --green: #18c56e;
  --teal: #0e766f;
  --shadow: 0 24px 70px rgba(17, 17, 17, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "DM Sans", Arial, sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.5;
}

a { color: inherit; }
h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 880px;
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.7vw, 3.9rem);
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 900;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 2.8vw, 3.3rem);
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 900;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
  line-height: 1.18;
}

p { color: var(--muted); }

.wrap {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.center { text-align: center; }
.section { padding: 84px 0; }

.dark {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(20, 175, 96, 0.18), transparent 34%),
    linear-gradient(135deg, #111111 0%, #1d1d1d 100%);
}

.dark p { color: rgba(255, 255, 255, 0.74); }

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.topbar-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  text-decoration: none;
}

.brand-logo img {
  display: block;
  width: min(168px, 52vw);
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 56px;
  padding: 15px 28px;
  border: 0;
  border-radius: 6px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange-2), var(--orange));
  box-shadow: 0 18px 38px rgba(255, 109, 38, 0.34);
  font: inherit;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.btn:hover { transform: translateY(-2px); }
.btn-small { min-height: 42px; padding: 10px 16px; font-size: 0.9rem; }
.btn-dark { background: var(--black); box-shadow: none; }
.mobile-header-cta { display: none; }
.btn.is-loading {
  pointer-events: none;
  opacity: 0.86;
}

.btn-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #ffffff;
  border-radius: 999px;
  animation: spin 0.72s linear infinite;
}

.btn.is-loading .btn-spinner {
  display: inline-block;
}

.btn.is-loading svg {
  display: none;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.btn svg,
.btn-small svg,
.mobile-header-cta svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  stroke-width: 2.6;
}

.pulse { animation: pulseGlow 2.2s ease-in-out infinite; }

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 18px 38px rgba(255, 109, 38, 0.28); }
  50% { box-shadow: 0 18px 52px rgba(255, 109, 38, 0.55); }
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding: 84px 0 74px;
  color: #ffffff;
  background: var(--black);
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
    radial-gradient(circle at 20% 15%, rgba(20,175,96,0.55), transparent 36%),
    radial-gradient(circle at 80% 35%, rgba(255,109,38,0.38), transparent 34%);
  background-size: 70px 70px, 70px 70px, auto, auto;
}

.hero-wrap {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.82fr);
  gap: 48px;
  align-items: center;
}

.hero-wrap > *,
.video-grid > *,
.roadmap-grid > *,
.tools-grid > *,
.about-grid > *,
.booking-card > * {
  min-width: 0;
}

.badge,
.section-label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 18px;
  padding: 9px 15px;
  border: 1px solid rgba(255, 109, 38, 0.45);
  border-radius: 999px;
  color: var(--orange);
  background: rgba(255, 109, 38, 0.11);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
  white-space: normal;
}

.section-label.light,
.dark .section-label {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
}

.hero-sub {
  max-width: 720px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.77);
  font-size: 1.12rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
  font-weight: 800;
}

.hero-proof svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--green);
  stroke-width: 2.5;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.price-pill {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 4px 12px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
}

del {
  color: #9a9a9a;
  text-decoration-thickness: 2px;
}

.price-pill strong {
  color: var(--green);
  font-size: 2rem;
  line-height: 1;
}

.price-pill small {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.hero-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.consultant-visual {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  min-height: 455px;
  background:
    linear-gradient(145deg, rgba(22, 197, 112, 0.18), transparent 42%),
    radial-gradient(circle at 58% 48%, rgba(27, 216, 142, 0.42), transparent 38%),
    linear-gradient(135deg, #0e6f68 0%, #149787 48%, #0c514d 100%);
}

.consultant-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background:
    linear-gradient(rgba(255,255,255,0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.16) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,0.75), transparent 74%);
}

.consultant-visual::after {
  content: "";
  position: absolute;
  right: 8%;
  bottom: 8%;
  width: 68%;
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 62%);
  filter: blur(4px);
}

.consultant-photo {
  position: absolute;
  right: 16px;
  bottom: -26px;
  z-index: 1;
  width: auto;
  height: 100%;
  max-height: none;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.28));
}

.live-chip,
.floating-card {
  position: absolute;
  z-index: 2;
  padding: 10px 13px;
  border-radius: 6px;
  color: #111111;
  background: #ffffff;
  box-shadow: 0 14px 35px rgba(0,0,0,0.18);
  font-weight: 900;
}

.live-chip {
  top: 22px;
  left: 22px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.live-chip span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
  animation: blink 1.2s ease-in-out infinite;
}

@keyframes blink { 50% { opacity: 0.35; } }

.floating-card { animation: float 4s ease-in-out infinite; }
.card-a { right: 22px; top: 86px; }
.card-b { left: 24px; bottom: 72px; animation-delay: 0.5s; }
.card-c { right: 30px; bottom: 38px; animation-delay: 1s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-card-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 22px;
  background: #ffffff;
  color: #111111;
}

.hero-card-bottom small { color: var(--muted); font-weight: 800; }
.hero-card-bottom p { margin: 4px 0 0; color: var(--text); }
.hero-card-bottom strong { color: var(--orange); font-size: 1.6rem; }

.video-band { background: var(--soft); }

.video-stack {
  display: grid;
  gap: 26px;
}

.video-intro {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.video-intro p:not(.section-label) {
  max-width: 820px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.video-shell {
  position: relative;
  width: min(920px, 100%);
  margin: 8px auto 0;
  padding: 14px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(24, 197, 110, 0.18), transparent 42%),
    linear-gradient(145deg, #111111, #1d1d1d);
  box-shadow: 0 32px 80px rgba(17, 17, 17, 0.18);
}

.video-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background:
    linear-gradient(rgba(255,255,255,0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.14) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}

.video-shell-top,
.video-shell-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}

.video-shell-top {
  justify-content: space-between;
  gap: 16px;
  padding: 6px 6px 14px;
  color: #ffffff;
}

.video-shell-top strong {
  display: block;
  margin-top: 5px;
  font-size: 1.08rem;
  line-height: 1.1;
}

.video-status,
.video-time,
.video-shell-bottom span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 900;
}

.video-status {
  color: var(--green);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.video-time {
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #111111;
  background: #ffffff;
  white-space: nowrap;
}

.video-status svg,
.video-time svg,
.video-shell-bottom svg {
  width: 17px;
  height: 17px;
  stroke-width: 2.6;
}

.vimeo-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 6px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 44%, rgba(24, 197, 110, 0.18), transparent 42%),
    #111111;
  aspect-ratio: 16 / 9;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
}

.vimeo-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-shell-bottom {
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 14px 6px 4px;
}

.video-shell-bottom span {
  min-height: 36px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.86rem;
}

.video-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: min(980px, 100%);
  margin: 2px auto 0;
  padding: 0;
  list-style: none;
}

.video-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 66px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.07);
  font-weight: 900;
}

.video-benefits svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: var(--green);
  stroke-width: 2.7;
}

.video-grid,
.roadmap-grid,
.tools-grid,
.about-grid,
.booking-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 46px;
  align-items: center;
}

.mini-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.mini-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
  font-weight: 800;
}

.mini-list svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--green);
  stroke-width: 2.7;
}

.video-frame {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 370px;
  padding: 30px;
  overflow: hidden;
  border: 8px solid #111111;
  border-radius: 8px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(17,17,17,0.12), rgba(17,17,17,0.72)),
    repeating-linear-gradient(135deg, #cdd7d4 0 20px, #aeb9b6 20px 40px);
  text-align: center;
  box-shadow: var(--shadow);
}

.video-thumb-frame {
  isolation: isolate;
}

.video-thumb-frame img {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-thumb-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(12, 18, 18, 0.15), rgba(12, 18, 18, 0.32));
}

.play {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange-2), var(--orange));
}

.play svg {
  width: 34px;
  height: 34px;
  margin-left: 4px;
  fill: #ffffff;
  color: #ffffff;
  stroke-width: 2.4;
}

.video-frame strong {
  margin-top: 18px;
  font-size: 1.6rem;
  text-shadow: 0 3px 18px rgba(0,0,0,0.35);
}

.video-frame span {
  color: rgba(255,255,255,0.84);
  font-weight: 800;
  text-shadow: 0 3px 18px rgba(0,0,0,0.35);
}

.assessment-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(14, 118, 111, 0.08), transparent 40%),
    #ffffff;
}

.assessment-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: 42px;
  align-items: center;
}

.assessment-copy p:not(.section-label) {
  max-width: 620px;
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.assessment-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.assessment-panel article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  min-height: 172px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(246, 245, 239, 0.9)),
    #ffffff;
  box-shadow: 0 18px 46px rgba(17, 17, 17, 0.08);
}

.assessment-panel article span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--green), var(--teal));
  box-shadow: 0 14px 30px rgba(14, 118, 111, 0.22);
}

.assessment-panel article:nth-child(even) span {
  background: linear-gradient(135deg, var(--orange-2), var(--orange));
}

.assessment-panel svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.5;
}

.assessment-panel h3 {
  margin-bottom: 7px;
}

.assessment-panel p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.outcomes { background: #ffffff; }
.section-sub { max-width: 700px; margin: 0 auto; }

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  margin-top: 32px;
}

.outcome-card,
.steps article,
.lead-form,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(17,17,17,0.07);
}

.outcome-card {
  min-height: 210px;
  padding: 22px;
}

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

.outcome-card b {
  color: var(--orange);
  font-size: 1.8rem;
}

.outcome-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--green), var(--teal));
  box-shadow: 0 14px 28px rgba(14, 118, 111, 0.22);
}

.outcome-icon svg {
  width: 21px;
  height: 21px;
  stroke-width: 2.5;
}

.outcome-card p,
.steps p { margin-bottom: 0; }

.roadmap-visual {
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
}

.node {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 7px;
  background: #ffffff;
  color: #111111;
  font-weight: 900;
}

.node svg {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  padding: 8px;
  border-radius: 999px;
  background: var(--orange);
  color: #ffffff;
  stroke-width: 2.5;
}

.node.active svg,
.node.final svg { background: var(--green); }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.steps article {
  padding: 26px;
}

.steps span {
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
}

.step-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin: 18px 0;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--green), var(--teal));
  font-size: 1.35rem;
  font-weight: 900;
}

.bonus-section { background: var(--soft); }

.bonus-covers {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.cover {
  position: relative;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  overflow: hidden;
  border-radius: 8px;
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(255,109,38,0.92), rgba(17,17,17,0.9)),
    repeating-linear-gradient(135deg, #27302d 0 14px, #35423e 14px 28px);
  box-shadow: 0 16px 35px rgba(17,17,17,0.12);
  transition: transform 0.22s ease;
}

.cover::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 72% 18%, var(--cover-glow, rgba(24, 197, 110, 0.28)), transparent 38%),
    linear-gradient(160deg, var(--cover-tint-a, rgba(9, 12, 12, 0.22)), var(--cover-tint-b, rgba(9, 12, 12, 0.82)) 58%, rgba(7, 8, 8, 0.92));
  mix-blend-mode: multiply;
}

.cover::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  z-index: 0;
  height: 58%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.76));
  pointer-events: none;
}

.cover span,
.cover strong {
  position: relative;
  z-index: 1;
}

.cover-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cover-growth-map {
  --cover-glow: rgba(24, 197, 110, 0.42);
  --cover-tint-a: rgba(2, 88, 70, 0.28);
  --cover-tint-b: rgba(3, 34, 28, 0.84);
  background-image: url("assets/framework-01-clinic-growth-map.png");
}

.cover-lead-flow {
  --cover-glow: rgba(255, 122, 38, 0.42);
  --cover-tint-a: rgba(113, 49, 7, 0.34);
  --cover-tint-b: rgba(39, 19, 5, 0.86);
  background-image: url("assets/framework-02-lead-follow-up-flow.png");
}

.cover-review {
  --cover-glow: rgba(255, 204, 74, 0.42);
  --cover-tint-a: rgba(99, 71, 8, 0.3);
  --cover-tint-b: rgba(37, 29, 7, 0.86);
  background-image: url("assets/framework-03-review-collection.png");
}

.cover-retention {
  --cover-glow: rgba(36, 185, 255, 0.4);
  --cover-tint-a: rgba(2, 70, 99, 0.34);
  --cover-tint-b: rgba(4, 29, 45, 0.88);
  background-image: url("assets/framework-04-patient-retention.png");
}

.cover-whatsapp {
  --cover-glow: rgba(37, 211, 102, 0.46);
  --cover-tint-a: rgba(0, 102, 73, 0.3);
  --cover-tint-b: rgba(2, 38, 27, 0.88);
  background-image: url("assets/framework-05-whatsapp-clinic-flow.png");
}

.cover-frontdesk {
  --cover-glow: rgba(55, 229, 255, 0.42);
  --cover-tint-a: rgba(0, 92, 111, 0.33);
  --cover-tint-b: rgba(4, 30, 36, 0.88);
  background-image: url("assets/framework-06-ai-frontdesk.png");
}

.cover-opd {
  --cover-glow: rgba(255, 109, 38, 0.44);
  --cover-tint-a: rgba(116, 42, 16, 0.35);
  --cover-tint-b: rgba(42, 18, 10, 0.88);
  background-image: url("assets/framework-07-opd-workload-cut.png");
}

.cover-content {
  --cover-glow: rgba(136, 92, 255, 0.42);
  --cover-tint-a: rgba(63, 42, 126, 0.34);
  --cover-tint-b: rgba(26, 19, 54, 0.88);
  background-image: url("assets/framework-08-medical-content.png");
}

.cover-branding {
  --cover-glow: rgba(255, 70, 128, 0.42);
  --cover-tint-a: rgba(115, 16, 55, 0.34);
  --cover-tint-b: rgba(42, 10, 25, 0.88);
  background-image: url("assets/framework-09-doctor-branding.png");
}

.cover-sops {
  --cover-glow: rgba(255, 153, 64, 0.4);
  --cover-tint-a: rgba(100, 58, 9, 0.33);
  --cover-tint-b: rgba(38, 25, 7, 0.88);
  background-image: url("assets/framework-10-staff-sops.png");
}

.cover-quality {
  --cover-glow: rgba(18, 214, 173, 0.42);
  --cover-tint-a: rgba(0, 95, 82, 0.34);
  --cover-tint-b: rgba(4, 37, 35, 0.88);
  background-image: url("assets/framework-11-quality-checklist.png");
}

.cover-guardrails {
  --cover-glow: rgba(78, 130, 255, 0.44);
  --cover-tint-a: rgba(26, 58, 136, 0.34);
  --cover-tint-b: rgba(9, 22, 61, 0.9);
  background-image: url("assets/framework-12-safe-ai-guardrails.png");
}

.cover:not(.cover-image):nth-child(even) {
  background:
    linear-gradient(145deg, rgba(14,118,111,0.92), rgba(17,17,17,0.9)),
    repeating-linear-gradient(135deg, #27302d 0 14px, #35423e 14px 28px);
}

.cover:hover { transform: translateY(-6px) rotate(-1deg); }
.cover span { font-size: 2rem; font-weight: 900; opacity: 0.75; }
.cover strong {
  display: grid;
  gap: 8px;
  max-width: 140px;
  padding: 10px;
  margin: -10px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.08));
  backdrop-filter: blur(2px);
  font-size: 1.05rem;
  line-height: 1.1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.44);
}

.cover strong svg,
.step-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.4;
}

.cover strong svg {
  color: var(--cover-icon, var(--green));
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.22));
}

.price-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 34px;
  padding: 24px;
  border-radius: 9px;
  color: #ffffff;
  background: var(--black);
  box-shadow: var(--shadow);
}

.price-banner small,
.booking-price span { color: rgba(255,255,255,0.7); font-weight: 800; }

.price-banner p,
.booking-price {
  margin: 0;
}

.price-banner strong,
.booking-price strong,
.final-price strong {
  color: var(--green);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
}

.tool-dashboard {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: #071313;
  box-shadow: var(--shadow);
}

.tool-dashboard img {
  display: block;
  width: 100%;
  height: auto;
}

.note {
  padding: 16px 18px;
  border-left: 4px solid var(--orange);
  background: rgba(255,255,255,0.08);
  font-weight: 800;
}

.about-section { background: #ffffff; }

.portrait {
  min-height: 430px;
  overflow: hidden;
  border-radius: 9px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(14,118,111,0.82), rgba(17,17,17,0.42)),
    repeating-linear-gradient(135deg, #dce4e0 0 20px, #c7d2cf 20px 40px);
  box-shadow: var(--shadow);
  font-weight: 900;
  text-align: center;
}

.portrait img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center top;
}

.quote {
  margin: 22px 0;
  padding: 20px;
  border-left: 5px solid var(--orange);
  border-radius: 8px;
  background: var(--soft);
  font-weight: 900;
}

.form-section {
  background:
    linear-gradient(180deg, #ffffff 0%, var(--soft) 100%);
}

.booking-card {
  grid-template-columns: 1fr 0.82fr;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.booking-price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  margin: 20px 0;
}

.booking-price del,
.final-price del {
  font-size: 1.5rem;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  font-weight: 900;
}

.lead-form input,
.flow-form input,
.flow-form select,
.flow-form textarea {
  min-height: 50px;
  width: 100%;
  border: 1px solid #cfc7ba;
  border-radius: 6px;
  padding: 10px 12px;
  font: inherit;
  background: #fffdf9;
}

.flow-form textarea {
  min-height: 96px;
  resize: vertical;
}

.lead-form p {
  margin-bottom: 0;
  font-size: 0.9rem;
  text-align: center;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.booking-modal.is-open {
  display: flex;
}

.booking-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.68);
  backdrop-filter: blur(10px);
}

.booking-modal-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  width: min(860px, 100%);
  max-height: calc(100vh - 36px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(17, 24, 39, 0.36);
  cursor: pointer;
}

.modal-close svg {
  width: 19px;
  height: 19px;
}

.modal-offer {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 34px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(17, 63, 58, 0.97), rgba(18, 131, 111, 0.9)),
    url("assets/demo-access-dashboard.svg") center/cover;
}

.modal-offer h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.02;
}

.modal-offer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.modal-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.modal-price del {
  opacity: 0.72;
  font-size: 1.25rem;
}

.modal-price strong {
  color: #ffd38d;
  font-size: 2.6rem;
  line-height: 1;
}

.modal-price span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.modal-lead-form {
  align-content: center;
  padding: 34px;
}

.modal-lead-form .flow-alerts {
  margin-bottom: 0;
}

.booking-flow {
  margin-top: 24px;
}

.flow-alerts {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.flow-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 8px;
  font-weight: 800;
  border: 1px solid var(--line);
  background: #fff;
}

.flow-alert.success {
  color: #0d654d;
  background: #effcf6;
  border-color: #bce7d4;
}

.flow-alert.error {
  color: #9a3412;
  background: #fff7ed;
  border-color: #fed7aa;
}

.flow-alert svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.flow-panel {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 26px;
  align-items: start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    radial-gradient(circle at top left, rgba(33, 150, 130, 0.16), transparent 34%),
    linear-gradient(135deg, #ffffff, #fff7ea);
  box-shadow: var(--shadow);
}

.flow-panel.wide {
  grid-template-columns: 0.62fr 1.38fr;
}

.flow-panel-copy h3,
.success-panel h3 {
  font-size: clamp(1.6rem, 2.3vw, 2.45rem);
  line-height: 1.02;
  margin: 8px 0 12px;
}

.flow-panel-copy p,
.success-panel p {
  color: var(--muted);
}

.flow-step {
  display: inline-flex;
  padding: 8px 11px;
  border-radius: 999px;
  color: #0f5d52;
  background: #dff8ef;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.flow-form {
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(45, 55, 72, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.78);
}

.flow-form label {
  display: grid;
  gap: 7px;
  font-weight: 900;
}

.dev-otp {
  display: inline-flex;
  padding: 9px 12px;
  border-radius: 8px;
  background: #111827;
  color: #fff !important;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.slot-option {
  cursor: pointer;
}

.slot-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.slot-option span {
  display: grid;
  gap: 4px;
  min-height: 76px;
  padding: 12px;
  border: 1px solid #d9d0c3;
  border-radius: 8px;
  background: #fffdf9;
  transition: 0.2s ease;
}

.slot-option strong {
  font-size: 1.05rem;
}

.slot-option.selected span,
.slot-option input:checked + span {
  color: #fff;
  background: #113f3a;
  border-color: #113f3a;
  box-shadow: 0 12px 30px rgba(17, 63, 58, 0.22);
}

.selected-slot {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 14px;
  border-radius: 8px;
  background: #fef3c7;
  font-weight: 900;
}

.selected-slot svg {
  width: 18px;
  height: 18px;
}

.payment-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  border-radius: 10px;
  background: #113f3a;
  color: #fff;
}

.payment-card p {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0;
}

.payment-card del {
  opacity: 0.7;
}

.payment-card strong {
  font-size: 2rem;
  color: #fff;
}

.payment-box small {
  color: var(--muted);
  text-align: center;
}

.intake-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.intake-form fieldset,
.intake-form label:has(textarea),
.intake-form .checkbox-line,
.intake-form button {
  grid-column: 1 / -1;
}

.intake-form fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  padding: 16px;
  border: 1px solid #d9d0c3;
  border-radius: 8px;
}

.intake-form legend {
  padding: 0 8px;
  font-weight: 900;
}

.intake-form fieldset label,
.checkbox-line {
  display: flex;
  grid-template-columns: none;
  align-items: center;
  gap: 9px;
  font-weight: 700;
}

.intake-form input[type="checkbox"] {
  min-height: auto;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.success-panel {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.success-icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 999px;
  color: #fff;
  background: #12836f;
  box-shadow: 0 18px 45px rgba(18, 131, 111, 0.28);
}

.success-icon svg {
  width: 36px;
  height: 36px;
}

.app-body {
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 138, 76, 0.22), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(18, 131, 111, 0.2), transparent 30%),
    linear-gradient(135deg, #fff8ed 0%, #f3fbf7 52%, #fff 100%);
}

.app-shell {
  width: min(1060px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 24px 0 46px;
  display: grid;
  align-content: center;
  gap: 20px;
}

.app-logo {
  display: inline-flex;
  width: fit-content;
}

.app-logo img {
  width: 210px;
  height: auto;
}

.app-card {
  border: 1px solid rgba(45, 55, 72, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 30px 90px rgba(22, 38, 48, 0.15);
  backdrop-filter: blur(18px);
}

.split-card,
.slot-payment-card,
.wizard-card {
  overflow: hidden;
}

.split-card {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
}

.app-copy,
.slot-head,
.wizard-aside {
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(17, 63, 58, 0.96), rgba(20, 127, 106, 0.92)),
    url("assets/demo-access-dashboard.svg") center/cover;
  color: #fff;
}

.app-copy h1,
.slot-head h1,
.wizard-aside h1,
.success-panel h1 {
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 0.98;
  margin: 14px 0;
}

.app-copy p,
.slot-head p,
.wizard-aside p {
  color: rgba(255, 255, 255, 0.82);
}

.app-highlights {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.app-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 900;
}

.app-highlights svg {
  width: 19px;
  height: 19px;
}

.app-form {
  display: grid;
  gap: 16px;
  padding: 34px;
}

.app-form label,
.wizard-form label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

.app-form input,
.app-form select,
.app-form textarea,
.wizard-form input,
.wizard-form select,
.wizard-form textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid #d4c8ba;
  border-radius: 8px;
  padding: 11px 13px;
  background: #fffdf9;
  font: inherit;
}

.app-form textarea,
.wizard-form textarea {
  min-height: 100px;
  resize: vertical;
}

.otp-form {
  align-content: center;
}

.otp-card {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  overflow: hidden;
}

.otp-copy {
  position: relative;
  min-height: 430px;
  align-content: center;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 211, 141, 0.24), transparent 28%),
    linear-gradient(135deg, rgba(17, 63, 58, 0.98), rgba(18, 131, 111, 0.94));
}

.otp-copy h1 {
  max-width: 460px;
  font-size: clamp(2.35rem, 4vw, 4.5rem);
}

.otp-copy p {
  max-width: 420px;
  font-size: 1.08rem;
}

.otp-icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
}

.otp-icon svg {
  width: 34px;
  height: 34px;
}

.otp-input-group {
  font-size: 0.95rem;
}

.otp-input {
  min-height: 66px !important;
  border-width: 2px !important;
  border-color: #b6d8ce !important;
  background: #f7fffb !important;
  font-size: 2rem !important;
  font-weight: 900;
  letter-spacing: 0.38em;
  text-align: center;
}

.otp-input::placeholder {
  color: #9fb9b0;
  letter-spacing: 0.18em;
}

.text-link {
  color: #0f766e;
  font-weight: 900;
  text-align: center;
}

.slot-payment-card {
  display: grid;
  gap: 0;
  backdrop-filter: none;
}

.slot-shell {
  width: min(980px, calc(100% - 32px));
  align-content: start;
  padding-top: 18px;
}

.slot-head {
  display: block;
  padding: 26px 30px;
}

.slot-head h1 {
  max-width: 780px;
  font-size: clamp(2rem, 2.8vw, 3.05rem);
}

.slot-head p {
  max-width: 520px;
  margin-bottom: 0;
}

.slot-grid.enhanced {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.slot-grid.enhanced .slot-option span {
  min-height: 78px;
  border-radius: 10px;
  background: linear-gradient(145deg, #fff, #fff7ea);
}

.slot-grid.enhanced .slot-option small {
  color: var(--muted);
  font-weight: 800;
}

.calendar-booking-form {
  position: relative;
  gap: 0;
  padding: 22px 30px 92px;
}

.booking-step {
  animation: wizardIn 0.24s ease;
}

.date-step {
  display: grid;
  gap: 14px;
}

.date-step-copy {
  display: grid;
  gap: 6px;
}

.date-step-copy h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.2vw, 2.25rem);
}

.date-step-copy p {
  margin: 0;
  color: var(--muted);
}

.calendar-picker {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(18, 131, 111, 0.16);
  border-radius: 16px;
  background:
    radial-gradient(circle at top right, rgba(18, 131, 111, 0.12), transparent 32%),
    #f8fffb;
}

.calendar-label,
.slot-day-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}

.calendar-label span,
.slot-day-title span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calendar-label strong,
.slot-day-title strong {
  font-size: 1.06rem;
}

.date-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.date-card {
  display: grid;
  align-content: center;
  gap: 5px;
  min-height: 112px;
  padding: 12px 8px;
  border: 1px solid #d8e8e2;
  border-radius: 16px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
  cursor: pointer;
  transition: 0.2s ease;
}

.date-card:hover {
  transform: translateY(-2px);
  border-color: #12836f;
}

.date-card span,
.date-card small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.date-card strong {
  color: #113f3a;
  font-size: 1.95rem;
  line-height: 1;
}

.date-card em {
  color: #12836f;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
}

.date-card.active {
  color: #ffffff;
  border-color: #113f3a;
  background: linear-gradient(135deg, #113f3a, #12836f);
  box-shadow: 0 16px 38px rgba(18, 131, 111, 0.24);
}

.date-card.active span,
.date-card.active small,
.date-card.active strong,
.date-card.active em {
  color: #ffffff;
}

.slot-step {
  display: grid;
  gap: 18px;
  padding: 20px;
  border: 1px solid rgba(255, 109, 38, 0.2);
  border-radius: 16px;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 109, 38, 0.1), transparent 30%),
    #fffaf2;
}

.slot-step[hidden] {
  display: none;
}

.slot-day-title {
  align-items: center;
}

.slot-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 8px 11px;
  border: 1px solid #ead7be;
  border-radius: 999px;
  color: #113f3a;
  background: #ffffff;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 900;
  cursor: pointer;
}

.slot-back svg {
  width: 16px;
  height: 16px;
}

.calendar-slots .slot-option span {
  place-items: center;
  text-align: center;
  color: #113f3a !important;
  border-color: #ead7be;
  background: #ffffff;
}

.calendar-slots .slot-option strong {
  color: #113f3a !important;
}

.calendar-slots .slot-option svg {
  width: 18px;
  height: 18px;
  color: #12836f;
}

.calendar-slots .slot-option input:checked + span svg,
.calendar-slots .slot-option.selected span svg {
  color: #ffffff;
}

.calendar-slots .slot-option input:checked + span,
.calendar-slots .slot-option.selected span {
  color: #ffffff !important;
  border-color: #113f3a;
  background: linear-gradient(135deg, #113f3a, #12836f);
}

.calendar-slots .slot-option input:checked + span strong,
.calendar-slots .slot-option.selected span strong {
  color: #ffffff !important;
}

.slot-option[hidden] {
  display: none !important;
}

.sticky-slot-continue {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 80;
  width: min(430px, calc(100% - 32px));
  margin: 0;
  transform: translateX(-50%);
  box-shadow: 0 18px 48px rgba(255, 109, 38, 0.45);
}

.sticky-slot-continue:hover {
  transform: translateX(-50%) translateY(-2px);
}

.sticky-slot-continue.is-loading {
  transform: translateX(-50%);
}

.sticky-slot-continue[hidden] {
  display: none;
}

.empty-slots {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 40px 18px;
  text-align: center;
}

.empty-slots svg {
  width: 42px;
  height: 42px;
  color: #12836f;
}

.empty-slots h2,
.empty-slots p {
  margin: 0;
}

.payment-stage {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 30px;
  text-align: center;
}

.selected-slot.large {
  font-size: 1.05rem;
}

.payment-card.glass {
  width: min(420px, 100%);
  background:
    linear-gradient(135deg, rgba(17, 63, 58, 0.98), rgba(18, 131, 111, 0.94));
}

.wizard-shell {
  width: min(760px, calc(100% - 32px));
  align-content: start;
  padding-top: 18px;
}

.wizard-card {
  display: grid;
  overflow: hidden;
}

.wizard-progress {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #e4eee9;
}

.wizard-progress span {
  display: block;
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff8a4c, #12836f);
  transition: width 0.25s ease;
}

.wizard-progress-text {
  margin: 0;
  font-weight: 900;
}

.wizard-form {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.wizard-step {
  display: none;
  animation: wizardIn 0.24s ease;
}

.wizard-step.active {
  display: grid;
  gap: 16px;
}

.wizard-step h2 {
  display: none;
}

.wizard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.wide-label {
  display: grid;
  gap: 8px;
}

.optional-fields {
  display: grid;
  gap: 12px;
  border: 1px solid #e4eee9;
  border-radius: 10px;
  background: #fbfffd;
}

.optional-fields summary {
  padding: 13px 14px;
  color: #0f5d52;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.optional-fields summary::-webkit-details-marker {
  display: none;
}

.optional-fields summary::after {
  content: "+";
  float: right;
  font-size: 1.1rem;
}

.optional-fields[open] summary::after {
  content: "-";
}

.optional-fields .wizard-grid,
.optional-fields .wide-label {
  padding: 0 14px 14px;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.choice-grid label {
  cursor: pointer;
}

.choice-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-grid span {
  display: grid;
  place-items: center;
  min-height: 62px;
  padding: 12px;
  border: 1px solid #d4c8ba;
  border-radius: 8px;
  background: #fffdf9;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 900;
  transition: 0.2s ease;
}

.choice-grid input:checked + span {
  color: #fff;
  border-color: #113f3a;
  background: linear-gradient(135deg, #113f3a, #12836f);
  box-shadow: 0 15px 35px rgba(18, 131, 111, 0.22);
}

.wizard-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 4px;
}

.wizard-actions .btn {
  min-width: 132px;
}

.wizard-actions .btn[hidden] {
  display: none !important;
}

.checkbox-line {
  display: flex !important;
  align-items: center;
  gap: 10px;
}

.checkbox-line input {
  width: 18px;
  min-height: 18px;
  height: 18px;
}

.success-shell {
  max-width: 760px;
}

.success-shell .success-panel {
  padding: 44px;
}

.intake-body {
  background:
    radial-gradient(circle at 0% 0%, rgba(18, 131, 111, 0.18), transparent 28%),
    linear-gradient(180deg, #fffaf2 0%, #f7fffb 100%);
}

.intake-shell {
  gap: 12px;
}

.intake-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.intake-slot {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 11px;
  border: 1px solid #d7ebe4;
  border-radius: 999px;
  color: #113f3a;
  background: #ffffff;
  font-size: 0.82rem;
  font-weight: 900;
  white-space: nowrap;
}

.intake-slot svg {
  width: 16px;
  height: 16px;
}

.payment-toast {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 140;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 11px 16px;
  border: 1px solid #b9ead6;
  border-radius: 999px;
  color: #0d654d;
  background: #effcf6;
  box-shadow: 0 18px 45px rgba(18, 131, 111, 0.18);
  font-weight: 900;
  transform: translateX(-50%);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.payment-toast.hide {
  opacity: 0;
  transform: translate(-50%, -12px);
}

.payment-toast svg {
  width: 19px;
  height: 19px;
}

.intake-widget {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 70px rgba(22, 38, 48, 0.13);
}

.intake-widget-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 22px 24px 16px;
  border-bottom: 1px solid #edf0ed;
  background: linear-gradient(135deg, #ffffff, #f7fffb);
}

.intake-widget-head h1 {
  margin: 8px 0 0;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.05;
}

.intake-widget-head .wizard-progress {
  grid-column: 1 / -1;
}

.intake-widget-head .wizard-progress-text {
  align-self: end;
  padding: 7px 10px;
  border-radius: 999px;
  color: #113f3a;
  background: #e9f8f1;
  font-size: 0.84rem;
}

.final-success-card {
  border-radius: 18px;
}

@keyframes wizardIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.faq-list {
  max-width: 860px;
}

.faq-list details {
  margin-bottom: 12px;
}

.faq-list summary {
  padding: 20px 22px;
  font-weight: 900;
  cursor: pointer;
}

.faq-list p {
  margin-bottom: 0;
  padding: 0 22px 20px;
}

.final-cta {
  padding-bottom: 100px;
}

.final-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 16px;
  margin: 24px 0;
}

.trust {
  max-width: 720px;
  margin: 24px auto 0;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.12s; }

@media (max-width: 1020px) {
  .hero-wrap,
  .video-grid,
  .assessment-grid,
  .roadmap-grid,
  .tools-grid,
  .about-grid,
  .booking-card {
    grid-template-columns: 1fr;
  }

  .outcome-grid { grid-template-columns: repeat(2, 1fr); }
  .assessment-panel { grid-template-columns: repeat(2, 1fr); }
  .bonus-covers { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 680px) {
  .topbar-inner {
    min-height: 58px;
    gap: 10px;
  }

  .brand-logo img {
    width: min(218px, 58vw);
    max-height: 48px;
  }

  .btn {
    width: 100%;
    min-height: 52px;
    padding: 13px 16px;
  }

  .btn-small {
    width: auto;
    min-height: 40px;
    padding: 9px 12px;
    font-size: 0.78rem;
  }

  .section { padding: 62px 0; }
  .hero { min-height: auto; padding: 62px 0; }
  h1 { font-size: 2rem; line-height: 1.08; }
  h2 { font-size: 2rem; }
  .hero-sub { font-size: 1rem; }
  .badge,
  .section-label {
    width: 100%;
    font-size: 0.72rem;
    text-align: center;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-proof span {
    width: 100%;
  }

  .hero-cta,
  .price-banner,
  .hero-card-bottom,
  .booking-price,
  .final-price {
    align-items: stretch;
    flex-direction: column;
  }

  .price-pill { width: 100%; }
  .price-pill {
    grid-template-columns: 1fr auto;
  }
  .consultant-visual { min-height: 360px; }
  .floating-card { padding: 8px 10px; font-size: 0.78rem; }
  .card-a { display: none; }
  .card-a { right: 10px; }
  .card-b { left: 10px; }
  .card-c { right: 10px; }
  .consultant-photo {
    height: 100%;
    width: auto;
  }
  .video-frame { min-height: 260px; }
  .outcome-grid,
  .video-benefits,
  .assessment-panel,
  .steps,
  .bonus-covers {
    grid-template-columns: 1fr;
  }

  .video-intro {
    text-align: left;
  }

  .video-shell {
    padding: 10px;
    border-radius: 10px;
  }

  .video-shell-top {
    align-items: flex-start;
    padding-bottom: 10px;
  }

  .video-shell-top strong {
    font-size: 0.98rem;
  }

  .video-time {
    min-height: 34px;
    padding: 7px 10px;
    font-size: 0.82rem;
  }

  .vimeo-frame {
    border-width: 4px;
  }

  .video-benefits li {
    min-height: auto;
  }

  .cover { min-height: 155px; }
  .booking-card { padding: 20px; }
  .lead-form { padding: 18px; }
  .flow-panel,
  .flow-panel.wide {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .slot-grid,
  .slot-grid.enhanced,
  .intake-form,
  .intake-form fieldset,
  .split-card,
  .otp-card,
  .wizard-card,
  .wizard-grid,
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .slot-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .slot-shell {
    width: calc(100% - 20px);
    padding-top: 12px;
  }

  .slot-shell .app-logo {
    margin-left: 4px;
  }

  .slot-head {
    padding: 12px 14px;
  }

  .slot-head h1 {
    font-size: 1.42rem;
    line-height: 1.04;
    margin: 6px 0 0;
  }

  .slot-head p {
    display: none;
  }

  .slot-head .flow-step {
    padding: 7px 9px;
    font-size: 0.62rem;
  }

  .calendar-booking-form {
    padding: 12px 12px 96px;
  }

  .date-step-copy {
    display: none;
  }

  .calendar-picker {
    padding: 12px;
  }

  .calendar-label {
    display: none;
  }

  .date-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .date-card {
    min-height: 104px;
  }

  .date-card strong {
    font-size: 1.8rem;
  }

  .calendar-label,
  .slot-day-title {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .slot-day-title {
    display: grid;
  }

  .calendar-booking-form {
    padding-bottom: 96px;
  }

  .sticky-slot-continue {
    bottom: 12px;
  }

  .app-copy,
  .slot-head,
  .wizard-aside,
  .app-form,
  .wizard-form,
  .payment-stage {
    padding: 22px;
  }

  .wizard-actions {
    position: sticky;
    bottom: 0;
    margin: 0 -22px -22px;
    padding: 14px 22px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
  }
}

@media (max-width: 520px) {
  .wrap {
    width: calc(100% - 28px);
    max-width: 362px;
    margin-left: 14px;
    margin-right: auto;
  }

  .topbar-inner {
    width: calc(100% - 20px);
    max-width: none;
    margin-left: 10px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }

  .brand-logo img {
    width: min(168px, 43vw);
    max-height: 48px;
  }

  .topbar .btn-small {
    display: inline-flex !important;
    flex: 0 0 auto;
    width: auto;
    min-height: 38px;
    padding: 8px 10px;
    font-size: 0.78rem !important;
    white-space: nowrap;
  }

  h1 {
    font-size: 1.76rem;
    line-height: 1.1;
  }

  h2 {
    font-size: 1.82rem;
    line-height: 1.08;
  }

  .hero-sub {
    max-width: 330px;
  }

  .hero-copy,
  .hero-card,
  .video-grid > *,
  .video-stack > *,
  .assessment-grid > *,
  .roadmap-grid > *,
  .tools-grid > *,
  .about-grid > *,
  .booking-card > *,
  .booking-flow > * {
    max-width: 362px;
  }

  .flow-panel {
    padding: 16px;
  }

  .flow-form {
    padding: 14px;
  }

  .payment-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .app-shell,
  .wizard-shell {
    width: calc(100% - 28px);
    padding-top: 14px;
  }

  .app-logo img {
    width: 172px;
  }

  .app-copy h1,
  .slot-head h1,
  .wizard-aside h1,
  .success-panel h1 {
    font-size: 2rem;
  }

  .app-card {
    border-radius: 12px;
  }

  .otp-copy {
    min-height: auto;
    padding-bottom: 26px;
  }

  .otp-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 16px;
    border-radius: 14px;
  }

  .otp-icon svg {
    width: 28px;
    height: 28px;
  }

  .otp-input {
    min-height: 60px !important;
    font-size: 1.65rem !important;
    letter-spacing: 0.28em;
  }

  .booking-modal {
    align-items: flex-end;
    padding: 10px;
  }

  .booking-modal-dialog {
    grid-template-columns: 1fr;
    width: 100%;
    max-height: calc(100vh - 20px);
    border-radius: 14px;
  }

  .modal-offer {
    padding: 24px 18px 20px;
  }

  .modal-offer h2 {
    font-size: 1.72rem;
  }

  .modal-price strong {
    font-size: 2.15rem;
  }

  .modal-lead-form {
    padding: 20px 18px 22px;
  }

  .modal-close {
    color: #113f3a;
    background: #ffffff;
  }

  .intake-shell {
    width: calc(100% - 20px);
  }

  .intake-topbar {
    align-items: flex-start;
  }

  .intake-topbar .app-logo img {
    width: 150px;
  }

  .intake-slot {
    padding: 8px 9px;
    font-size: 0.72rem;
  }

  .intake-widget {
    border-radius: 14px;
  }

  .intake-widget-head {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px 16px 12px;
  }

  .intake-widget-head h1 {
    font-size: 1.52rem;
    margin-top: 6px;
  }

  .intake-widget-head .wizard-progress-text {
    justify-self: start;
    order: 3;
  }

  .wizard-form {
    padding: 16px;
    gap: 14px;
  }

  .wizard-grid,
  .choice-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .choice-grid span {
    min-height: 48px;
    padding: 10px;
    font-size: 0.78rem;
    line-height: 1.12;
    justify-items: center;
    text-align: center;
  }

  .wizard-form input,
  .wizard-form select,
  .wizard-form textarea {
    min-height: 48px;
  }

  .wizard-form textarea {
    min-height: 82px;
  }

  .wizard-actions {
    position: sticky;
    bottom: 0;
    margin: 0 -16px -16px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
  }

  .wizard-actions .btn {
    flex: 1;
    min-width: 0;
    min-height: 48px;
    padding: 12px 14px;
  }

  .payment-toast {
    top: 10px;
    width: max-content;
    max-width: calc(100% - 28px);
  }

  .badge,
  .section-label {
    padding: 8px 10px;
    font-size: 0.64rem;
  }

  .price-pill strong {
    font-size: 1.65rem;
  }

  .consultant-visual {
    min-height: 330px;
  }

  .consultant-photo {
    height: 100%;
    width: auto;
  }
}
