:root {
  --ink: #1b2228;
  --muted: #5e6870;
  --cream: #f1e8dc;
  --paper: #fffaf3;
  --line: #d8cbbe;
  --accent: #7a1e2a;
  --accent-dark: #5a121d;
  --accent-strong: #a6404a;
  --tech: #2f8ea3;
  --deep: #08141c;
  --deep-2: #102b33;
  --graphite: #1b2228;
  --shadow: 0 18px 48px rgba(8, 20, 28, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 8%, rgba(8, 20, 28, 0.08), transparent 28rem),
    linear-gradient(180deg, #f1e8dc 0%, #f6efe7 45%, #fffaf3 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(120deg, transparent 0 48%, rgba(27, 34, 40, 0.1) 50%, transparent 52%),
    linear-gradient(35deg, transparent 0 47%, rgba(122, 30, 42, 0.05) 50%, transparent 53%);
  background-size: 380px 380px, 520px 520px;
  z-index: -1;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: linear-gradient(90deg, var(--deep), var(--deep-2));
  color: #fffaf3;
  box-shadow: 0 12px 34px rgba(8, 20, 28, 0.22);
}

.topbar__inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 64px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.topbar__note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 700;
}

.status-dot {
  position: relative;
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #a6404a;
  box-shadow:
    0 0 0 4px rgba(122, 30, 42, 0.18),
    0 0 14px rgba(166, 64, 74, 0.68);
  animation: liveDotPulse 1.55s ease-in-out infinite;
}

.status-dot::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  border: 1px solid rgba(166, 64, 74, 0.5);
  animation: liveDotRing 1.55s ease-out infinite;
}

@keyframes liveDotPulse {
  0%,
  100% {
    transform: scale(0.92);
    box-shadow:
      0 0 0 4px rgba(122, 30, 42, 0.14),
      0 0 10px rgba(166, 64, 74, 0.5);
  }

  50% {
    transform: scale(1.08);
    box-shadow:
      0 0 0 5px rgba(122, 30, 42, 0.22),
      0 0 18px rgba(166, 64, 74, 0.9);
  }
}

@keyframes liveDotRing {
  0% {
    opacity: 0.7;
    transform: scale(0.62);
  }

  100% {
    opacity: 0;
    transform: scale(1.55);
  }
}

.timer {
  display: flex;
  gap: 8px;
}

.timer span {
  min-width: 62px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 4px 8px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--deep);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.timer strong {
  font-size: 0.94rem;
}

.topbar__button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  justify-self: end;
  padding: 12px 22px;
  border-radius: 8px;
  background: var(--accent-dark);
  color: #fff;
  box-shadow:
    0 8px 18px rgba(8, 20, 28, 0.14),
    0 0 0 rgba(122, 30, 42, 0);
  font-weight: 900;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0;
  animation: liveButtonGlow 2.8s ease-in-out infinite;
}

.topbar__button::before {
  content: "";
  position: absolute;
  inset: -30% -42%;
  z-index: -1;
  background: linear-gradient(
    115deg,
    transparent 0 34%,
    rgba(255, 255, 255, 0.22) 46%,
    transparent 58% 100%
  );
  transform: translateX(-55%);
  animation: liveButtonShine 4.2s ease-in-out infinite;
}

@keyframes liveButtonGlow {
  0%,
  100% {
    box-shadow:
      0 8px 18px rgba(8, 20, 28, 0.14),
      0 0 0 rgba(122, 30, 42, 0);
  }

  50% {
    box-shadow:
      0 10px 24px rgba(8, 20, 28, 0.18),
      0 0 22px rgba(122, 30, 42, 0.45);
  }
}

@keyframes liveButtonShine {
  0%,
  42% {
    transform: translateX(-55%);
    opacity: 0;
  }

  52% {
    opacity: 1;
  }

  68%,
  100% {
    transform: translateX(55%);
    opacity: 0;
  }
}

.section-shell,
.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 64px);
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(320px, 0.76fr);
  gap: 0;
  align-items: center;
  padding: clamp(18px, 3.2vw, 38px) 0;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 540px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-weight: 900;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow--sentence {
  text-transform: none;
}

p.eyebrow.eyebrow--sentence {
  text-transform: none;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 10px;
  font-size: clamp(2rem, 4.15vw, 3.75rem);
  line-height: 0.95;
  letter-spacing: 0;
  font-weight: 800;
}

h1 span {
  color: var(--accent-dark);
  font-weight: 800;
}

.hero h1 {
  max-width: 560px;
  margin-bottom: 8px;
  font-size: clamp(1.38rem, 2.25vw, 2.08rem);
  line-height: 0.98;
}

.hero-accent,
.text-accent {
  color: var(--accent-dark);
}

.accent-animated {
  color: var(--accent);
  display: inline-block;
  animation: accentPulse 2.8s ease-in-out infinite;
}

.hero h1 .accent-animated {
  display: inline;
}

.mentor-section__heading .accent-animated {
  display: inline;
  white-space: nowrap;
}

.text-accent--animated {
  display: inline-block;
  animation: accentPulse 3s ease-in-out infinite;
}

@keyframes accentPulse {
  0%,
  100% {
    color: var(--accent);
    text-shadow: 0 0 0 rgba(122, 30, 42, 0);
  }

  50% {
    color: var(--accent-strong);
    text-shadow: 0 0 12px rgba(122, 30, 42, 0.18);
  }
}

.hero__lead {
  max-width: 520px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: clamp(0.82rem, 0.95vw, 0.92rem);
  line-height: 1.36;
  font-weight: 600;
}

.lead-form {
  width: min(560px, 100%);
  display: grid;
  gap: 7px;
}

.lead-form label:not(.check) span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

input {
  width: 100%;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 243, 0.86);
  color: var(--ink);
  padding: 0 14px;
  font: inherit;
  font-weight: 600;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

input:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(122, 30, 42, 0.09);
}

input.is-error {
  border-color: rgba(122, 30, 42, 0.62);
  background: rgba(255, 250, 243, 0.94);
  box-shadow: 0 0 0 4px rgba(122, 30, 42, 0.09);
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.28;
}

.check input {
  width: 14px;
  height: 14px;
  margin-top: 1px;
  accent-color: var(--accent);
}

.check a {
  color: var(--accent-dark);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.check a:hover {
  color: #481019;
}

.check.is-error {
  color: var(--accent-dark);
}

.check.is-error input {
  box-shadow: 0 0 0 4px rgba(122, 30, 42, 0.1);
}

button {
  height: 46px;
  border: 0;
  border-radius: 8px;
  background: var(--accent-dark);
  color: #fff;
  font: inherit;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(8, 20, 28, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

button:hover {
  transform: translateY(-2px);
  background: #481019;
  box-shadow: 0 12px 26px rgba(8, 20, 28, 0.18);
}

.form-message {
  min-height: 16px;
  margin: 0;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.form-message.is-success {
  color: #247068;
}

.hero__visual {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: min(56vw, 640px);
  height: min(88vh, 94%);
  min-height: 0;
  transform: translateY(-20px);
  pointer-events: none;
}

.hero__visual--doctor {
  display: grid;
  align-items: end;
  justify-items: end;
  min-height: 0;
  overflow: visible;
}

.hero-doctor {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: end end;
  isolation: isolate;
}

.hero-doctor::before {
  content: none;
}

.hero-doctor::after {
  content: none;
}

.hero-doctor img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  object-position: bottom right;
  filter: drop-shadow(0 28px 42px rgba(8, 20, 28, 0.16));
}

.portrait-card {
  position: relative;
  min-height: clamp(340px, 52svh, 440px);
  overflow: hidden;
  border: 1px solid rgba(216, 203, 190, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.45), transparent 38%),
    linear-gradient(150deg, #e8ddcf, #fffaf3 48%, #c7d4d2);
  box-shadow: var(--shadow);
}

.portrait-card__light {
  position: absolute;
  top: 0;
  left: 18%;
  width: 132px;
  height: 180px;
  background: radial-gradient(ellipse at top, rgba(255, 250, 243, 0.82), transparent 68%);
}

.mentor-portrait {
  position: absolute;
  right: -18px;
  bottom: 0;
  width: 78%;
  height: 88%;
  background:
    radial-gradient(circle at 48% 18%, #8b5147 0 8%, transparent 9%),
    radial-gradient(circle at 46% 19%, #f1bfa7 0 12%, transparent 13%),
    linear-gradient(142deg, transparent 0 35%, #d8d2ca 36% 62%, transparent 63%),
    linear-gradient(28deg, transparent 0 43%, #1b2228 44% 61%, transparent 62%),
    radial-gradient(ellipse at 50% 84%, #c8beb2 0 42%, transparent 43%);
  filter: drop-shadow(-14px 16px 20px rgba(8, 20, 28, 0.14));
}

.lesson-chip {
  position: absolute;
  left: 20px;
  bottom: 20px;
  width: min(240px, calc(100% - 40px));
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 250, 243, 0.9);
  box-shadow: 0 16px 42px rgba(8, 20, 28, 0.1);
  font-weight: 900;
}

.lesson-chip span {
  display: block;
  margin-bottom: 6px;
  color: var(--accent);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.device-preview {
  position: absolute;
  right: 6%;
  bottom: -18px;
  width: 170px;
  height: 108px;
  padding: 9px;
  border-radius: 8px;
  background: var(--graphite);
  box-shadow: 0 18px 42px rgba(8, 20, 28, 0.18);
}

.device-preview__screen {
  height: 100%;
  display: grid;
  align-content: end;
  gap: 6px;
  padding: 14px;
  border-radius: 6px;
  background:
    linear-gradient(130deg, rgba(47, 142, 163, 0.28), transparent 48%),
    linear-gradient(180deg, #d9d0c6, #fffaf3);
}

.device-preview__screen span {
  width: 42px;
  height: 5px;
  border-radius: 999px;
  background: var(--tech);
}

.device-preview__screen strong {
  font-size: 0.88rem;
  line-height: 1.1;
}

.device-preview__screen small {
  color: var(--muted);
  font-weight: 800;
}

.section {
  padding: clamp(70px, 10vw, 118px) 0;
}

.section--cream {
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100vw - 1180px) / 2));
  padding-right: max(16px, calc((100vw - 1180px) / 2));
  background: rgba(255, 250, 243, 0.72);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-heading h2,
.final-cta h2 {
  margin-bottom: 0;
  font-size: clamp(1.9rem, 3.8vw, 3.4rem);
  line-height: 1;
  font-weight: 900;
}

.steps-grid,
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.number-card,
.audience-grid article,
.benefit-card {
  min-height: 320px;
  padding: 34px;
  border: 1px solid rgba(216, 203, 190, 0.72);
  border-radius: 8px;
  background: rgba(255, 250, 243, 0.88);
  box-shadow: 0 10px 26px rgba(8, 20, 28, 0.055);
}

.number-card span {
  display: block;
  margin-bottom: 22px;
  color: var(--accent-dark);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1;
  font-weight: 900;
}

.number-card h3,
.benefit-card h3 {
  margin-bottom: 12px;
  font-size: 1.12rem;
  line-height: 1.2;
}

.number-card p,
.benefit-card p,
.audience-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 600;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 940px;
  margin: 0 auto;
}

.benefit-card {
  min-height: 310px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.benefit-card--outlined {
  border: 1px solid rgba(122, 30, 42, 0.34);
}

.icon {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border: 2px solid currentColor;
  border-radius: 8px;
  color: var(--accent-dark);
  font-size: 2rem;
  font-weight: 900;
}

.icon svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.audience-grid article {
  min-height: 250px;
  align-content: start;
}

.audience-grid span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 28px;
  border-radius: 8px;
  background: rgba(122, 30, 42, 0.06);
  color: var(--accent-dark);
  font-weight: 900;
  font-size: 1.4rem;
}

.audience-icon svg {
  width: 23px;
  height: 23px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mentor-section {
  position: relative;
  width: 100%;
  padding: clamp(72px, 10vw, 122px) max(16px, calc((100vw - 1180px) / 2));
  background:
    radial-gradient(circle at 18% 28%, rgba(122, 30, 42, 0.12), transparent 18rem),
    linear-gradient(135deg, #08141c 0%, #102b33 54%, #08141c 100%);
  color: #fffaf3;
  overflow: hidden;
}

.mentor-section__inner {
  position: static;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.mentor-section__heading {
  max-width: 820px;
  margin: 0 auto clamp(38px, 5vw, 58px);
  text-align: center;
}

.mentor-section .eyebrow {
  color: #d5a6ac;
}

.mentor-section__heading h2 {
  margin-bottom: 0;
  font-size: clamp(1.9rem, 3.8vw, 3.45rem);
  line-height: 1;
  font-weight: 900;
}

.mentor-profile {
  position: static;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: clamp(44px, 6vw, 76px);
}

.mentor-profile__visual {
  position: absolute;
  top: 18rem;
  right: 5vw;
  bottom: 0;
  z-index: 1;
  width: 43vw;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 0;
  overflow: visible;
  pointer-events: none;
}

.mentor-photo-card {
  position: relative;
  width: min(520px, 100%);
  margin: 0;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.mentor-photo-card::before {
  content: none;
}

.mentor-photo-card::after {
  content: none;
}

.mentor-photo-card img {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 0;
  object-fit: contain;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.22));
}

.about-doctor-visual {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  isolation: isolate;
}

.about-doctor-visual::before {
  content: none;
}

.about-doctor-visual::after {
  content: none;
}

.about-doctor-image {
  position: static;
  z-index: 1;
  display: block;
  width: auto;
  max-width: none;
  height: 100%;
  max-height: none;
  margin-left: 0;
  object-fit: contain;
  object-position: bottom center;
  transform: translateY(24px);
  filter: none;
}

.mentor-badge {
  position: absolute;
  left: 24px;
  bottom: 28px;
  z-index: 2;
  width: min(190px, 44vw);
  padding: 15px 16px;
  border: 1px solid rgba(255, 250, 243, 0.2);
  border-radius: 8px;
  background: rgba(8, 20, 28, 0.68);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
}

.mentor-badge strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
}

.mentor-badge span {
  color: rgba(255, 250, 243, 0.78);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.25;
}

.mentor-profile__copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.mentor-profile__copy p {
  margin-bottom: 22px;
  color: rgba(255, 250, 243, 0.76);
  font-size: clamp(1rem, 1.4vw, 1.08rem);
  line-height: 1.7;
  font-weight: 600;
}

.mentor-profile__copy strong {
  color: #fff;
  font-weight: 900;
}

.mentor-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 36px 0 28px;
}

.mentor-stats span {
  min-height: 104px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
  padding: 18px 16px;
  border: 1px solid rgba(255, 250, 243, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.1), rgba(255, 250, 243, 0.045));
  color: rgba(255, 250, 243, 0.74);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.25;
  box-shadow: inset 0 1px 0 rgba(255, 250, 243, 0.08);
}

.mentor-stats strong {
  display: block;
  color: #fff;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1;
}

.mentor-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 8px;
  background: var(--accent-dark);
  color: #fff;
  box-shadow: 0 10px 22px rgba(8, 20, 28, 0.14);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mentor-cta:hover {
  transform: translateY(-2px);
  background: #481019;
  box-shadow: 0 12px 26px rgba(8, 20, 28, 0.18);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.final-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.7fr) minmax(260px, 0.65fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
  padding: clamp(70px, 10vw, 112px) 0 clamp(90px, 12vw, 136px);
}

.lead-form--compact {
  width: 100%;
  align-content: center;
  gap: 12px;
}

.lead-form--compact input {
  height: 48px;
}

.lead-form--compact .check {
  margin: 2px 0 14px;
}

.lead-form--compact button {
  height: 56px;
  box-shadow: 0 10px 24px rgba(8, 20, 28, 0.14);
}

.final-cta__mockup {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 230px;
}

.final-cta__mockup-image {
  display: block;
  width: min(460px, 100%);
  height: auto;
  object-fit: contain;
}

.laptop {
  position: absolute;
  right: 0;
  bottom: 20px;
  width: 330px;
  max-width: 100%;
  padding: 10px 10px 18px;
  border-radius: 10px 10px 6px 6px;
  background: var(--graphite);
  box-shadow: var(--shadow);
}

.laptop::after {
  content: "";
  position: absolute;
  left: -18px;
  right: -18px;
  bottom: 0;
  height: 12px;
  border-radius: 0 0 12px 12px;
  background: #2a333a;
}

.laptop__screen {
  position: relative;
  overflow: hidden;
  height: 180px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 22px;
  border-radius: 6px;
  background: #08141c;
}

.laptop__screen::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 20, 28, 0.32), rgba(8, 20, 28, 0.08) 46%, rgba(8, 20, 28, 0.28)),
    linear-gradient(180deg, rgba(8, 20, 28, 0.04), rgba(8, 20, 28, 0.36));
  pointer-events: none;
}

.laptop__screen img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 46% 46%;
  filter: brightness(1.18) contrast(1.05);
}

.laptop__overlay {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 8px;
}

.laptop__screen strong {
  max-width: 190px;
  color: #fffaf3;
  font-size: 1.35rem;
  line-height: 1;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.34);
}

.laptop__screen span {
  width: max-content;
  padding: 7px 10px;
  border-radius: 6px;
  background: var(--paper);
  color: var(--accent);
  font-weight: 900;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.phone {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 82px;
  height: 146px;
  padding: 8px;
  border-radius: 16px;
  background: var(--graphite);
  box-shadow: 0 18px 36px rgba(8, 20, 28, 0.16);
}

.phone span {
  display: block;
  overflow: hidden;
  height: 100%;
  border-radius: 11px;
  background: #08141c;
}

.phone span img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 30%;
  filter: brightness(1.18) contrast(1.05);
}

@media (max-width: 980px) {
  .topbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(90deg, var(--deep), var(--deep-2));
  }

  .topbar__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 12px 0;
    gap: 10px;
  }

  .topbar__button {
    justify-self: center;
  }

  .hero {
    position: relative;
    grid-template-columns: 1fr;
    min-height: calc(100svh - 120px);
    gap: 22px;
    padding: clamp(24px, 5vw, 42px) 0;
  }

  .hero__content {
    max-width: none;
  }

  .hero__visual {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 1;
    height: auto;
    min-height: 280px;
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
    transform: none;
    pointer-events: auto;
  }

  .hero__visual--doctor {
    min-height: 340px;
    align-items: center;
    justify-items: center;
  }

  .hero-doctor {
    width: min(420px, 76vw);
    height: auto;
    place-items: end center;
  }

  .hero-doctor img {
    height: auto;
    max-height: 380px;
    object-position: bottom center;
  }

  .portrait-card {
    min-height: 280px;
  }

  .steps-grid,
  .audience-grid,
  .benefit-grid,
  .mentor-profile,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .mentor-profile__visual {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    z-index: 1;
    width: 100%;
    min-height: auto;
    order: -1;
    pointer-events: auto;
  }

  .mentor-profile__copy {
    max-width: none;
  }

  .final-cta__mockup {
    min-height: 260px;
    justify-content: center;
  }

  .final-cta__mockup-image {
    width: min(520px, 100%);
  }

  .laptop {
    left: 0;
    right: auto;
  }
}

@media (max-width: 640px) {
  .topbar {
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .topbar__note {
    text-align: center;
    justify-content: center;
    font-size: 0.78rem;
  }

  .timer span {
    min-width: 54px;
  }

  .hero {
    min-height: auto;
    gap: 0;
    padding: 26px 0 34px;
  }

  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.2;
    background-image:
      linear-gradient(120deg, transparent 0 48%, rgba(27, 34, 40, 0.1) 50%, transparent 52%),
      linear-gradient(35deg, transparent 0 47%, rgba(122, 30, 42, 0.05) 50%, transparent 53%);
    background-size: 260px 260px, 340px 340px;
  }

  h1 {
    margin-bottom: 8px;
    font-size: clamp(1.55rem, 7.65vw, 2.25rem);
    line-height: 0.96;
  }

  .hero h1 {
    max-width: 100%;
    margin-bottom: 6px;
    font-size: clamp(1.38rem, 6.75vw, 1.98rem);
    line-height: 0.96;
  }

  .eyebrow {
    margin-bottom: 8px;
    font-size: 0.68rem;
  }

  .hero__lead {
    margin-bottom: 12px;
    font-size: 0.88rem;
    line-height: 1.34;
  }

  .lead-form {
    gap: 6px;
  }

  input {
    height: 38px;
  }

  button {
    height: 44px;
    font-size: 0.76rem;
  }

  .form-message {
    min-height: 14px;
    font-size: 0.72rem;
  }

  .hero__visual {
    display: block;
    min-height: 340px;
    max-width: 390px;
    margin-top: 8px;
  }

  .hero__visual--doctor {
    min-height: 340px;
  }

  .hero-doctor {
    width: min(390px, 96vw);
  }

  .hero-doctor img {
    width: 100%;
    max-width: none;
    max-height: 370px;
    object-fit: contain;
    object-position: bottom center;
    transform: translateY(24px) scale(1.1);
  }

  .number-card,
  .audience-grid article,
  .benefit-card {
    min-height: auto;
    padding: 26px;
  }

  .benefit-card {
    min-height: 260px;
  }

  .section-heading {
    text-align: left;
  }

  .mentor-section__heading {
    text-align: left;
  }

  .mentor-profile__visual {
    min-height: auto;
  }

  .mentor-photo-card {
    width: min(100%, 430px);
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .mentor-photo-card::before {
    content: none;
  }

  .mentor-photo-card::after {
    content: none;
  }

  .mentor-photo-card img {
    max-width: 430px;
    border-radius: 0;
  }

  .about-doctor-visual {
    width: min(100%, 390px);
    height: auto;
    margin: 0 auto;
  }

  .about-doctor-image {
    position: relative;
    width: 100%;
    max-width: 390px;
    height: auto;
    max-height: none;
    margin-left: 0;
    object-position: bottom center;
    transform: none;
  }

  .mentor-badge {
    left: 16px;
    bottom: 18px;
  }

  .mentor-stats {
    grid-template-columns: 1fr;
  }

  .section-heading h2,
  .mentor-section__heading h2,
  .final-cta h2 {
    font-size: clamp(1.8rem, 9vw, 2.55rem);
    line-height: 0.96;
  }
}

.thanks-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at 78% 12%, rgba(47, 142, 163, 0.09), transparent 24rem),
    linear-gradient(180deg, var(--cream) 0%, #f6efe7 52%, var(--paper) 100%);
}

.thanks-progress {
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.thanks-progress__inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(180px, 1fr) auto;
  align-items: center;
  gap: 18px;
  color: var(--deep);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.thanks-progress__track {
  height: 16px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(216, 203, 190, 0.72);
  box-shadow:
    inset 0 0 0 1px rgba(8, 20, 28, 0.05),
    0 8px 18px rgba(8, 20, 28, 0.06);
}

.thanks-progress__bar {
  width: 50%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent));
}

.thanks-page--pending .thanks-progress__bar {
  width: 85%;
}

.thanks-page--pending .thanks-hero {
  padding-top: clamp(22px, 4vw, 42px);
}

.thanks-main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.thanks-hero {
  min-height: calc(100svh - 140px);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(26px, 4vw, 48px);
  align-items: center;
  justify-items: center;
  padding: clamp(46px, 8vw, 92px) 0;
}

.thanks-hero__content {
  width: min(760px, 100%);
  text-align: center;
}

.thanks-kicker {
  margin-bottom: 12px;
  color: var(--accent-dark);
  font-size: clamp(0.95rem, 1.3vw, 1.18rem);
  font-weight: 900;
  text-transform: uppercase;
}

.thanks-alert {
  margin-bottom: 12px;
  color: var(--muted);
  font-weight: 800;
}

.thanks-hero h1 {
  max-width: 720px;
  margin: 0 auto 14px;
  color: var(--ink);
  font-size: clamp(2.7rem, 6vw, 5.8rem);
  line-height: 0.92;
  font-weight: 900;
}

.thanks-title__no {
  position: relative;
  display: inline-block;
  color: var(--accent-dark);
}

.thanks-title__no-mark {
  position: absolute;
  left: -0.08em;
  right: -0.08em;
  bottom: -0.08em;
  width: calc(100% + 0.16em);
  height: 0.22em;
  overflow: visible;
  pointer-events: none;
}

.thanks-title__no-mark path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 150;
  stroke-dashoffset: 150;
  animation: handUnderlineLoop 3.2s ease-in-out infinite;
}

@keyframes handUnderlineLoop {
  0% {
    stroke-dashoffset: 150;
    opacity: 0;
  }

  14% {
    opacity: 1;
  }

  36%,
  62% {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  82%,
  100% {
    stroke-dashoffset: -150;
    opacity: 0;
  }
}

.thanks-subtitle {
  max-width: 620px;
  margin: 0 auto 24px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.45;
  font-weight: 700;
}

.whatsapp-cta {
  width: min(560px, 100%);
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border-radius: 8px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 14px 30px rgba(18, 140, 86, 0.22);
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.whatsapp-cta:hover {
  transform: translateY(-2px);
  background: #1fb85a;
  box-shadow: 0 18px 36px rgba(18, 140, 86, 0.26);
}

.whatsapp-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.whatsapp-icon svg {
  width: 19px;
  height: 19px;
  display: block;
  fill: currentColor;
}

.thanks-copy {
  max-width: 600px;
  margin: 22px auto 0;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 700;
}

.thanks-copy strong {
  font-weight: 900;
}

.thanks-accent {
  display: inline-block;
  color: var(--accent-dark);
  font-size: 1.14em;
  font-weight: 900;
  animation: premiumPulse 2.8s ease-in-out infinite;
}

@keyframes premiumPulse {
  0%,
  100% {
    color: var(--accent-dark);
    transform: scale(1);
  }

  50% {
    color: var(--accent-strong);
    transform: scale(1.025);
  }
}

.redirect-box {
  width: min(420px, 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 22px auto 0;
  padding: 16px 18px;
  border: 1px solid rgba(216, 203, 190, 0.76);
  border-radius: 8px;
  background: rgba(255, 250, 243, 0.78);
  color: var(--muted);
  font-weight: 800;
}

.redirect-box strong {
  color: var(--accent-dark);
  font-size: 1.6rem;
  line-height: 1;
}

.bonus-card {
  padding: 28px;
  border: 1px solid rgba(216, 203, 190, 0.72);
  border-radius: 8px;
  background: rgba(255, 250, 243, 0.86);
  box-shadow: 0 18px 48px rgba(8, 20, 28, 0.1);
}

.bonus-mockup {
  display: grid;
  place-items: center;
  min-height: 300px;
  margin-bottom: 22px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(8, 20, 28, 0.08), transparent),
    linear-gradient(180deg, #e8ddcf, var(--paper));
}

.bonus-mockup__cover {
  width: min(210px, 72%);
  aspect-ratio: 0.72;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 22px;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(47, 142, 163, 0.16), transparent 42%),
    linear-gradient(180deg, var(--deep), var(--deep-2));
  color: var(--paper);
  box-shadow: 0 18px 42px rgba(8, 20, 28, 0.18);
}

.bonus-mockup__cover span,
.bonus-mockup__cover small {
  color: rgba(255, 250, 243, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.bonus-mockup__cover strong {
  font-size: 1.55rem;
  line-height: 1;
}

.bonus-card p {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.45;
}

.thanks-resource {
  width: min(520px, 100%);
  margin: clamp(24px, 4vw, 36px) auto 0;
  padding: 0;
  border: 0;
  box-shadow: none;
  overflow: visible;
  background: transparent;
}

.thanks-resource .bonus-mockup {
  min-height: auto;
  margin-bottom: 0;
  padding: clamp(8px, 2vw, 18px);
  overflow: visible;
  background: transparent;
}

.thanks-resource .bonus-mockup__image {
  width: min(440px, 100%);
  height: auto;
  display: block;
  margin: 0 auto;
  transform-origin: center;
  animation: mockupFloat 5.5s ease-in-out infinite;
}

@keyframes mockupFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.thanks-help-intro {
  width: min(760px, 100%);
  margin: 0 auto 24px;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.7vw, 1.45rem);
  line-height: 1.25;
  font-weight: 900;
  text-align: center;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-bottom: clamp(48px, 8vw, 84px);
}

.help-grid article {
  padding: 26px;
  border: 1px solid rgba(216, 203, 190, 0.72);
  border-radius: 8px;
  background: rgba(255, 250, 243, 0.86);
  box-shadow: 0 10px 26px rgba(8, 20, 28, 0.055);
}

.help-grid span {
  display: block;
  margin-bottom: 16px;
  color: var(--accent-dark);
  font-size: 1.9rem;
  line-height: 1;
  font-weight: 900;
}

.help-grid h2 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.2;
}

.help-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 700;
}

.thanks-footer {
  width: min(1180px, calc(100% - 32px));
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  margin: 0 auto;
  padding: 28px 0;
  border-top: 1px solid rgba(216, 203, 190, 0.72);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.thanks-footer__disclaimer {
  font-size: 0.7rem;
  opacity: 0.55;
  line-height: 1.4;
  max-width: 600px;
  margin: 0;
}

.thanks-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 20px;
}

.thanks-footer a {
  color: inherit;
}

.thanks-footer a:hover {
  color: var(--accent-dark);
}

.legal-page {
  min-height: 100svh;
}

.legal-header {
  background: linear-gradient(90deg, var(--deep), var(--deep-2));
  color: var(--paper);
  box-shadow: 0 12px 34px rgba(8, 20, 28, 0.18);
}

.legal-header__inner {
  width: min(1080px, calc(100% - 32px));
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.legal-back {
  padding: 9px 12px;
  border: 1px solid rgba(255, 250, 243, 0.18);
  border-radius: 8px;
  color: var(--paper);
}

.legal-back:hover {
  border-color: rgba(255, 250, 243, 0.34);
  background: rgba(255, 250, 243, 0.06);
}

.legal-main {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(38px, 7vw, 78px) 0 clamp(42px, 7vw, 84px);
}

.legal-card {
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(216, 203, 190, 0.78);
  border-radius: 8px;
  background: rgba(255, 250, 243, 0.9);
  box-shadow: 0 18px 48px rgba(8, 20, 28, 0.08);
}

.legal-kicker {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.legal-title {
  max-width: 820px;
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(2.4rem, 6vw, 5.4rem);
  line-height: 0.92;
  font-weight: 900;
}

.legal-lead {
  max-width: 760px;
  margin: 0 0 clamp(32px, 5vw, 54px);
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.6;
  font-weight: 700;
}

.legal-section {
  max-width: 840px;
  padding: 26px 0;
  border-top: 1px solid rgba(216, 203, 190, 0.72);
}

.legal-section h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.12;
  font-weight: 900;
}

.legal-section h3 {
  margin: 20px 0 10px;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.25;
}

.legal-section p,
.legal-section li {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
  font-weight: 650;
}

.legal-section p {
  margin: 0 0 14px;
}

.legal-section a {
  color: var(--accent-dark);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.legal-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.legal-meta {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(216, 203, 190, 0.78);
  border-radius: 8px;
  background: rgba(241, 232, 220, 0.55);
}

.legal-meta p {
  margin: 0;
}

.confirmed-main {
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100svh - 84px);
  display: grid;
  align-content: center;
  gap: clamp(34px, 5vw, 58px);
  margin: 0 auto;
  padding: clamp(46px, 8vw, 88px) 0;
}

.confirmed-page .thanks-progress__bar {
  width: 100%;
}

.confirmed-hero {
  max-width: min(1120px, 100%);
  margin: 0 auto;
  text-align: center;
}

.confirmed-status {
  width: max-content;
  max-width: 100%;
  margin: 0 auto 18px;
  padding: 9px 14px;
  border: 1px solid rgba(122, 30, 42, 0.24);
  border-radius: 8px;
  background: rgba(255, 250, 243, 0.82);
  color: var(--accent-dark);
  box-shadow: 0 10px 26px rgba(8, 20, 28, 0.055);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  animation: confirmedGlow 3.6s ease-in-out infinite;
}

.confirmed-hero h1 {
  margin-bottom: 16px;
  background: linear-gradient(
    110deg,
    var(--ink) 0%,
    var(--accent-dark) 32%,
    #fff3df 50%,
    var(--accent-dark) 62%,
    var(--ink) 100%
  );
  background-size: 260% 100%;
  background-clip: text;
  color: transparent;
  padding-inline: clamp(12px, 2vw, 28px);
  font-size: clamp(2.8rem, 6.1vw, 5.45rem);
  line-height: 0.9;
  font-weight: 900;
  overflow: visible;
  animation: confirmedShine 3.8s ease-in-out infinite;
}

.confirmed-lead {
  margin-bottom: 10px;
  color: var(--accent-dark);
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  line-height: 1.2;
  font-weight: 900;
}

.confirmed-copy {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.4vw, 1.14rem);
  line-height: 1.55;
  font-weight: 700;
}

.confirmed-actions {
  display: grid;
  justify-items: center;
  gap: 16px;
  margin-top: 28px;
}

.confirmed-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border-radius: 8px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 14px 30px rgba(18, 140, 86, 0.22);
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.confirmed-button:hover {
  transform: translateY(-2px);
  background: #1fb85a;
  box-shadow: 0 18px 36px rgba(18, 140, 86, 0.26);
}

@keyframes confirmedGlow {
  0%,
  100% {
    box-shadow: 0 10px 26px rgba(8, 20, 28, 0.055);
  }

  50% {
    box-shadow: 0 14px 34px rgba(122, 30, 42, 0.14);
  }
}

@keyframes confirmedShine {
  0% {
    background-position: 120% 50%;
  }

  50% {
    background-position: 20% 50%;
  }

  100% {
    background-position: -80% 50%;
  }
}

.confirmed-countdown {
  margin-top: 0;
}

.confirmed-grid {
  padding-bottom: 0;
}

.confirmed-mail-grid {
  align-items: stretch;
}

.confirmed-mail-card {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  align-items: start;
  text-align: left;
}

.confirmed-mail-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--accent-dark);
}

.confirmed-mail-icon svg {
  width: 30px;
  height: 30px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.confirmed-mail-card h2 {
  margin: 0 0 8px;
  font-size: 0.98rem;
  line-height: 1.28;
  font-weight: 900;
}

.confirmed-mail-card p {
  line-height: 1.55;
}

@media (max-width: 900px) {
  .thanks-progress__inner,
  .thanks-hero,
  .help-grid {
    grid-template-columns: 1fr;
  }

  .thanks-progress__inner {
    padding: 14px 0;
  }

  .thanks-hero {
    min-height: auto;
  }

  .confirmed-main {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .legal-header__inner {
    min-height: 76px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 12px 0;
  }

  .legal-card {
    padding: 24px 20px;
  }

  .legal-section {
    padding: 22px 0;
  }

  .thanks-hero {
    padding: 36px 0 46px;
  }

  .thanks-hero h1 {
    font-size: clamp(2.25rem, 13vw, 3.6rem);
  }

  .whatsapp-cta {
    min-height: 54px;
    font-size: 0.78rem;
  }

  .bonus-card,
  .help-grid article {
    padding: 22px;
  }

  .thanks-resource .bonus-mockup__image {
    width: min(330px, 100%);
  }

  .confirmed-hero h1 {
    font-size: clamp(2.2rem, 11vw, 3.6rem);
  }
}

.agenda-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 88% 12%, rgba(122, 30, 42, 0.08), transparent 20rem),
    linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
  color: var(--ink);
}

.agenda-header {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px) 0 clamp(22px, 4vw, 42px);
  display: grid;
  gap: 28px;
}

.agenda-brand {
  width: max-content;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
}

.agenda-header h1 {
  max-width: 820px;
  margin-bottom: 12px;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 0.95;
}

.agenda-header p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.55;
  font-weight: 700;
}

.agenda-main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: clamp(58px, 8vw, 96px);
}

.agenda-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: start;
}

.agenda-info,
.agenda-booking {
  border: 1px solid rgba(216, 203, 190, 0.78);
  border-radius: 10px;
  background: rgba(255, 250, 243, 0.82);
  box-shadow: 0 18px 48px rgba(8, 20, 28, 0.08);
}

.agenda-info {
  padding: clamp(26px, 4vw, 38px);
}

.agenda-info h2 {
  margin-bottom: 16px;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1;
}

.agenda-duration {
  width: max-content;
  margin-bottom: 22px;
  padding: 8px 12px;
  border: 1px solid rgba(122, 30, 42, 0.18);
  border-radius: 999px;
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 900;
}

.agenda-info p:not(.eyebrow):not(.agenda-duration) {
  color: var(--muted);
  line-height: 1.65;
  font-weight: 700;
}

.agenda-trust {
  margin-top: 28px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(8, 20, 28, 0.06);
  color: var(--ink);
  font-weight: 900;
  line-height: 1.35;
}

.agenda-booking {
  overflow: hidden;
  min-height: 700px;
  padding: clamp(18px, 3vw, 26px);
  width: 100%;
}

#calendlyEmbed {
  width: 100%;
  min-width: 320px;
  height: 700px;
  min-height: 700px;
  border-radius: 8px;
  background: rgba(255, 250, 243, 0.72);
}

.calendly-lead-warning {
  margin: 0 0 14px;
  padding: 12px 14px;
  border: 1px solid rgba(122, 30, 42, 0.14);
  border-radius: 8px;
  background: rgba(122, 30, 42, 0.06);
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.45;
}

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

  .agenda-booking {
    min-height: 800px;
  }

  #calendlyEmbed {
    height: 800px;
    min-height: 800px;
  }
}

@media (max-width: 640px) {
  .agenda-header {
    padding-top: 30px;
  }

  .agenda-info,
  .agenda-booking {
    border-radius: 8px;
  }

  .agenda-booking {
    min-height: 800px;
    padding: 12px;
  }
}
