:root {
  --ink: #050c1a;
  --ink-soft: #091427;
  --ink-lighter: #111f36;
  --yellow: #f0df20;
  --yellow-hover: #ffed2e;
  --cream: #f5f7f9;
  --white: #ffffff;
  --slate: #697588;
  --line: #e0e5ea;
  --danger: #c6463e;
  --success: #087f5b;
  --shadow: 0 24px 70px rgba(5, 20, 38, 0.1);
  --display: "Avenir Next", "Century Gothic", "Trebuchet MS", sans-serif;
  --body: "Avenir Next", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 48px));
  height: 92px;
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  width: 162px;
  line-height: 0;
}

.brand img {
  width: 100%;
  height: auto;
}

.header-cta {
  padding: 11px 17px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--ink);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  border-bottom: 1px solid rgba(240, 223, 32, 0.25);
  background:
    radial-gradient(circle at 50% 25%, rgba(34, 76, 122, 0.25), transparent 38%),
    linear-gradient(180deg, #020714 0%, #050d1c 64%, #071426 100%);
  color: var(--white);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 76%);
}

.hero::after {
  display: none;
}

.hero-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.08;
}

.hero-glow-one {
  top: 180px;
  left: -180px;
  background: #277ad1;
}

.hero-glow-two {
  right: -200px;
  bottom: 120px;
  background: #f0df20;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  padding: 106px 0 36px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: #aab5c3;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow-dot {
  display: block;
  width: 6px;
  height: 6px;
  border: 0;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(240, 223, 32, 0.08);
}

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

.hero h1 {
  max-width: 1080px;
  margin: 0 auto;
  font-family: var(--display);
  font-size: clamp(50px, 4.6vw, 62px);
  font-weight: 700;
  letter-spacing: -0.048em;
  line-height: 1.02;
}

.highlight {
  position: relative;
  color: var(--yellow);
  white-space: nowrap;
}

.headline-line {
  display: block;
  white-space: nowrap;
}

.hero-copy {
  max-width: 680px;
  margin: 14px auto 16px;
  color: #9eabba;
  font-size: clamp(16px, 1.7vw, 18px);
  line-height: 1.5;
}

.video-wrap {
  width: min(700px, 100%);
  margin: 0 auto;
}

.video-kicker {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 8px;
  color: #aab5c3;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-align: left;
  text-transform: uppercase;
}

.video-kicker-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.16), transparent);
}

.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: #050b12;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(240, 223, 32, 0.12);
}

.video-art {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 40%, rgba(43, 95, 145, 0.34), transparent 35%),
    linear-gradient(135deg, #060d18, #0a1c2f);
}

.video-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(135deg, black, transparent);
}

.video-chart {
  position: absolute;
  inset: 17% 10% 12%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(4, 14, 25, 0.72);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
  text-align: left;
}

.video-chart::after {
  position: absolute;
  top: 54px;
  right: 30px;
  width: 76px;
  height: 8px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 18px 0 rgba(255, 255, 255, 0.06),
    0 36px 0 rgba(255, 255, 255, 0.045);
  content: "";
}

.chart-label {
  position: absolute;
  top: 24px;
  left: 28px;
  color: #9fb1c5;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chart-value {
  position: absolute;
  top: 42px;
  left: 27px;
  color: var(--white);
  font-family: var(--display);
  font-size: 34px;
  font-weight: 800;
}

.video-chart svg {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
}

.chart-area {
  fill: url("#chartFill");
}

.chart-line {
  fill: none;
  stroke: var(--yellow);
  stroke-linecap: round;
  stroke-width: 5;
}

.play-button {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 92px;
  height: 92px;
  border: 0;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow:
    0 0 0 10px rgba(240, 223, 32, 0.09),
    0 18px 34px rgba(0, 0, 0, 0.38);
  cursor: pointer;
  place-items: center;
  transform: translate(-50%, -50%);
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.play-button:hover,
.play-button:focus-visible {
  background: var(--yellow-hover);
  transform: translate(-50%, -50%) scale(1.06);
}

.play-button:focus-visible,
.primary-cta:focus-visible,
.form-continue:focus-visible,
.form-back:focus-visible,
.scheduler-close:focus-visible,
#book-button:focus-visible,
.header-cta:focus-visible,
input:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.play-icon {
  width: 0;
  height: 0;
  margin-left: 7px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid var(--ink);
}

.video-placeholder-note {
  position: absolute;
  right: 16px;
  bottom: 14px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: rgba(3, 10, 18, 0.74);
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.video-placeholder-note.is-visible {
  color: var(--white);
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 380px;
  min-height: 62px;
  margin: 22px auto 0;
  padding: 18px 34px;
  border: 1px solid var(--yellow);
  border-radius: 8px;
  background: var(--yellow);
  box-shadow: 0 14px 35px rgba(240, 223, 32, 0.15);
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.primary-cta:hover {
  background: var(--yellow-hover);
  box-shadow: 0 18px 44px rgba(240, 223, 32, 0.2);
  transform: translateY(-2px);
}

.primary-cta svg,
.form-continue svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.primary-cta .cta-arrow {
  transition: transform 180ms ease;
}

.primary-cta:hover .cta-arrow,
.primary-cta:focus-visible .cta-arrow {
  transform: translateX(4px);
}

.cta-note {
  margin: 12px 0 0;
  color: #7f8d9e;
  font-size: 13px;
}

.reveal-item {
  opacity: 0;
  animation: reveal 700ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  transform: translateY(18px);
}

.hero .reveal-item:nth-child(2) {
  animation-delay: 80ms;
}

.hero .reveal-item:nth-child(3) {
  animation-delay: 150ms;
}

.hero .reveal-item:nth-child(4) {
  animation-delay: 220ms;
}

.hero .reveal-item:nth-child(5) {
  animation-delay: 290ms;
}

.hero .reveal-item:nth-child(6) {
  animation-delay: 350ms;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.proof-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.proof-inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
  width: min(1320px, calc(100% - 40px));
  padding: 24px 0;
  margin: 0 auto;
}

.proof-item {
  display: flex;
  min-width: 0;
  min-height: 112px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 9px;
  padding: 8px 12px;
  border-radius: 12px;
  background: #f7f8fa;
  box-shadow: inset 0 0 0 1px var(--line);
  text-align: center;
}

.proof-value {
  position: relative;
  display: inline-flex;
  min-height: 40px;
  max-width: 100%;
  min-width: 0;
  align-items: center;
  justify-content: center;
  padding: 6px 14px 7px;
  border: 1px solid #f0e2b0;
  border-radius: 8px;
  background: #fdf6df;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(18px, 1.8vw, 25px);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-align: center;
}

.proof-value::before {
  position: absolute;
  top: -1px;
  left: 50%;
  width: 24px;
  height: 2px;
  border-radius: 99px;
  background: var(--yellow);
  content: "";
  transform: translateX(-50%);
}

.proof-value-long {
  font-size: clamp(17px, 1.45vw, 20px);
  letter-spacing: -0.04em;
}

.proof-value-stacked {
  min-height: 54px;
  flex-direction: column;
  gap: 1px;
  padding: 6px 17px 7px;
}

.proof-value-stacked span:first-child {
  font-size: 14px;
  letter-spacing: -0.015em;
}

.proof-value-stacked span:last-child {
  font-size: clamp(18px, 1.55vw, 22px);
  letter-spacing: -0.04em;
}

.proof-value-rate span:first-child {
  font-size: clamp(21px, 1.8vw, 25px);
  letter-spacing: -0.04em;
}

.proof-value-rate span:last-child {
  font-size: 15px;
  letter-spacing: -0.02em;
}

.proof-label {
  max-width: 180px;
  color: var(--slate);
  font-size: 12px;
  line-height: 1.3;
}

.proof-label-compact {
  font-size: 11px;
}

.application-section {
  padding: 76px 24px 92px;
  background: var(--cream);
}

.scheduler-overlay {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
  background: rgba(2, 8, 18, 0.94);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 180ms ease,
    visibility 0s linear 180ms;
}

.scheduler-overlay[hidden] {
  display: none;
}

.scheduler-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

html.scheduler-open,
html.scheduler-open body {
  overflow: hidden;
}

.scheduler-overlay > .section-heading {
  display: none;
}

.section-heading {
  width: min(730px, 100%);
  margin: 0 auto 30px;
  text-align: center;
}

.section-label {
  margin-bottom: 12px;
  color: #7d7112;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading h2,
.why-copy h2 {
  margin-bottom: 14px;
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.section-heading > p:last-child {
  color: var(--slate);
  font-size: 18px;
}

.scheduler-shell {
  position: relative;
  width: min(960px, 100%);
  margin: 0 auto;
  overflow: auto;
  border: 1px solid #dfe4e9;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
  max-height: calc(100dvh - 48px);
  transition:
    width 240ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 180ms ease;
  transform: translateY(12px) scale(0.985);
  opacity: 0;
}

.scheduler-overlay.is-open .scheduler-shell {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.scheduler-shell.is-day-prompt {
  width: min(560px, 100%);
}

.scheduler-shell.is-form-mode {
  width: min(600px, 100%);
}

.scheduler-shell.is-day-prompt.is-form-mode {
  width: min(560px, 100%);
}

.scheduler-shell.is-calendar-mode {
  width: min(820px, 100%);
}

.scheduler-shell[data-scheduler-provider="oncehub"] {
  width: min(920px, 100%);
  overflow: hidden auto;
}

.scheduler-shell[data-scheduler-provider="oncehub"] .scheduler-body {
  display: block;
  min-height: 0;
}

.scheduler-shell[data-scheduler-provider="oncehub"] .application-panel,
.scheduler-shell[data-scheduler-provider="oncehub"] .calendar-panel {
  display: none !important;
}

.oncehub-embed-panel {
  min-height: min(760px, calc(100dvh - 48px));
  padding: 28px 30px 30px;
}

.oncehub-embed-heading {
  padding: 0 54px 18px 2px;
  border-bottom: 1px solid var(--line);
}

.oncehub-call-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: -4px 0 0;
  padding: 0;
  border-bottom: 0;
}

.oncehub-call-summary .meeting-meta {
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  border: 0;
}

.oncehub-intro {
  margin: 16px 0 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

@media (max-width: 640px) {
  .scheduler-shell[data-scheduler-provider="oncehub"] {
    border-radius: 12px;
  }

  .oncehub-embed-panel {
    min-height: calc(100dvh - 48px);
    padding: 56px 14px 16px;
  }

  .oncehub-embed-heading {
    padding: 0 46px 16px 2px;
  }

  .oncehub-call-summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

.scheduler-close {
  position: absolute;
  z-index: 12;
  top: 12px;
  right: 12px;
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid #d8dee5;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: #6f7b89;
  cursor: pointer;
  place-items: center;
  transition:
    border-color 150ms ease,
    color 150ms ease,
    transform 150ms ease;
}

.scheduler-close:hover,
.scheduler-close:focus-visible {
  border-color: var(--ink);
  color: var(--ink);
  transform: rotate(4deg);
}

.scheduler-close svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.scheduler-progress {
  display: none;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 58px;
  padding: 0 28px;
  border-bottom: 1px solid var(--line);
}

.scheduler-shell.is-day-prompt .scheduler-progress {
  display: none;
}

.progress-step {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #99a3ae;
  font-size: 13px;
}

.progress-step > span {
  display: block;
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  background: #d7dce2;
}

.progress-step.is-active {
  color: var(--ink);
}

.progress-step.is-active > span {
  background: var(--ink);
}

.progress-step.is-complete > span {
  background: var(--success);
}

.progress-line {
  height: 1px;
  background: linear-gradient(90deg, #d8dde3, #edf0f3);
}

.scheduler-body {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(470px, 1.1fr);
  min-height: 540px;
}

.scheduler-shell.is-form-mode .scheduler-body {
  display: block;
  min-height: 0;
}

.scheduler-shell.is-form-mode .application-panel {
  border-right: 0;
}

.scheduler-shell.is-form-mode .calendar-panel {
  display: none;
}

.scheduler-shell.is-calendar-mode .scheduler-body {
  display: block;
  min-height: 0;
}

.scheduler-shell.is-calendar-mode .application-panel {
  display: block;
  padding: 20px 70px 14px 24px;
  border-right: 0;
  border-bottom: 1px solid var(--line);
}

.scheduler-shell.is-calendar-mode .application-panel #qualification-form,
.scheduler-shell.is-calendar-mode .application-panel .application-progress {
  display: none;
}

.scheduler-shell.is-calendar-mode .application-panel .meeting-meta {
  margin: 8px 0 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.scheduler-shell.is-calendar-mode .calendar-panel {
  min-height: 500px;
}

.scheduler-shell.is-day-prompt .scheduler-body {
  grid-template-columns: 1fr;
  min-height: 0;
}

.application-panel {
  padding: 26px 30px 28px;
  border-right: 1px solid var(--line);
}

.scheduler-shell.is-day-prompt .application-panel {
  padding: 26px 30px 30px;
  border-right: 0;
}

.scheduler-shell.is-day-prompt .calendar-panel {
  display: none;
}

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

.host-avatar {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--ink-soft);
  color: var(--yellow);
  font-family: var(--display);
  font-size: 17px;
  font-weight: 800;
  place-items: center;
}

.meeting-host div:last-child {
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  flex-direction: column;
}

.meeting-host span {
  color: var(--slate);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.meeting-host strong {
  font-size: 15px;
}

.meeting-event-name {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px 7px;
}

.meeting-event-name > span {
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  text-transform: none;
}

.meeting-event-name > small {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 3px 7px;
  border: 1px solid rgba(194, 177, 14, 0.42);
  border-radius: 999px;
  background: rgba(240, 223, 32, 0.16);
  color: #6f6408;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.07em;
  line-height: 1;
  text-transform: uppercase;
}

.meeting-meta {
  display: flex;
  gap: 20px;
  margin: 11px 0 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--slate);
  font-size: 13px;
}

.meeting-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.meeting-meta svg,
.timezone svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.application-progress {
  margin: 0 0 18px;
}

.application-progress[hidden] {
  display: none;
}

.application-progress-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 7px;
  color: #7d8998;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.application-progress-copy strong {
  color: var(--ink);
  font-size: 10px;
}

.application-progress-track {
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: #e6ebf0;
}

.application-progress-track > span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #d4c409, var(--yellow));
  box-shadow: 0 0 12px rgba(240, 223, 32, 0.34);
  transition: width 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

fieldset {
  min-width: 0;
  margin: 0 0 20px;
  padding: 0;
  border: 0;
}

legend {
  width: 100%;
  margin-bottom: 13px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

#qualification-form {
  min-height: 350px;
}

.scheduler-shell.is-day-prompt #qualification-form {
  min-height: 0;
}

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

.form-step.is-active {
  animation: form-step-in 220ms ease both;
}

@keyframes form-step-in {
  from {
    opacity: 0;
    transform: translateX(8px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.form-step-heading {
  margin-bottom: 16px;
}

.form-step-heading h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.form-step-heading h3:focus,
.calendar-heading h3:focus,
.calendar-lock strong:focus {
  outline: none;
}

.form-step-heading p {
  margin: 7px 0 0;
  color: var(--slate);
  font-size: 13px;
}

.qualified-contact-fields[hidden],
.account-metrics[hidden] {
  display: none;
}

.qualified-contact-fields,
.account-metrics.is-visible {
  animation: progressive-fields-in 220ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes progressive-fields-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.account-metrics {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.business-website-field {
  margin-bottom: 14px;
}

.business-website-field input {
  margin-bottom: 0;
}

.company-website-field {
  margin-bottom: 18px;
}

.objective-fieldset legend {
  margin-bottom: 9px;
}

.company-step-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
}

.company-step-footer .form-back {
  width: 88px;
  flex: 0 0 88px;
}

.company-step-footer > span {
  color: #7d8998;
  font-size: 11px;
  font-weight: 700;
}

.account-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.account-metrics-grid fieldset {
  margin-bottom: 0;
}

.account-metrics-grid legend {
  min-height: 38px;
  margin-bottom: 8px;
  font-size: 12px;
  line-height: 1.35;
}

.final-details {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.referral-fieldset {
  margin: 16px 0;
}

.referral-fieldset legend {
  margin-bottom: 8px;
  font-size: 12px;
}

.upcoming-date-context {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0;
  padding: 10px 12px;
  border: 1px solid #dfe5eb;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
  background: var(--white);
}

.upcoming-date-context > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #697588;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.upcoming-date-context svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.upcoming-date-context strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

#qualification-form
  label:not(.option-card, .spend-card, .upcoming-day-card, .choice-card) {
  display: block;
}

#qualification-form
  label:not(.upcoming-day-card)
  > span:first-child:not(.option-indicator) {
  display: block;
  margin: 0 0 6px;
  color: #566274;
  font-size: 12px;
  font-weight: 700;
}

.upcoming-days {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 5px;
}

.upcoming-calendar-grid {
  margin: 0 0 20px;
  padding: 10px;
  border: 1px solid #dfe5eb;
  border-radius: 0 0 12px 12px;
  background: #f6f8fa;
  box-shadow: 0 8px 24px rgba(7, 20, 37, 0.055);
}

.upcoming-weekday-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 5px;
  margin-bottom: 5px;
  color: #8a96a5;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.upcoming-weekday-row[hidden] {
  display: none;
}

.upcoming-days.is-loading {
  pointer-events: none;
}

.upcoming-day-card.is-loading {
  opacity: 0.55;
  animation: availability-pulse 1.15s ease-in-out infinite alternate;
}

@keyframes availability-pulse {
  to {
    opacity: 0.85;
  }
}

.upcoming-days-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 18px;
  border: 1px solid #d3dae2;
  border-radius: 10px;
  background: #f6f8fa;
  color: var(--slate);
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
}

.upcoming-day-card {
  position: relative;
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid #e0e6ec;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 1px 2px rgba(7, 20, 37, 0.035);
  color: var(--ink);
  cursor: pointer;
  transition:
    border-color 150ms ease,
    background 150ms ease,
    box-shadow 150ms ease,
    transform 150ms ease;
}

.upcoming-day-card:has(input:not(:disabled)):hover {
  border-color: #c5ced8;
  background: #eef2f6;
  box-shadow: 0 4px 10px rgba(7, 20, 37, 0.08);
}

.upcoming-day-card.is-unavailable {
  border-color: transparent;
  background: #eceff3;
  box-shadow: none;
  color: #a8b1bd;
  cursor: not-allowed;
}

.upcoming-day-card.is-weekend {
  background: #f2f4f6;
  color: #bdc4cd;
}

.upcoming-day-card.is-past {
  border-color: transparent;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: none;
  color: #d5dbe2;
  cursor: not-allowed;
  opacity: 0.62;
}

.upcoming-day-card.is-unavailable .day-month,
.upcoming-day-card.is-weekend .day-month {
  color: #b9c1ca;
}

.upcoming-day-card.is-past .day-month {
  color: #d7dce2;
}

.upcoming-day-card:has(input:checked) {
  border-color: var(--ink);
  background: var(--ink);
  box-shadow: 0 4px 12px rgba(7, 20, 37, 0.2);
  color: var(--white);
}

.upcoming-day-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.upcoming-day-card .day-date {
  display: inline-flex;
  align-items: baseline;
  flex-direction: column-reverse;
  gap: 3px;
}

.upcoming-day-card .day-month {
  color: #8a96a5;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.upcoming-day-card .day-number {
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: -0.03em;
  line-height: 1;
}

.upcoming-day-card:has(input:checked) .day-month {
  color: var(--yellow);
}

.upcoming-day-card:has(input:focus-visible) {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select {
  width: 100%;
  height: 44px;
  margin-bottom: 10px;
  padding: 0 13px;
  border: 1px solid #cfd6df;
  border-radius: 8px;
  background: #fbfcfd;
  color: var(--ink);
  outline: none;
  transition:
    border-color 150ms ease,
    box-shadow 150ms ease,
    background 150ms ease;
}

.qualification-select {
  height: 52px;
  margin-bottom: 0;
  padding-right: 46px;
  border-color: #c8d0da;
  background-color: #fbfcfd;
  background-image:
    linear-gradient(45deg, transparent 50%, #697588 50%),
    linear-gradient(135deg, #697588 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 22px,
    calc(100% - 14px) 22px;
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
  color: var(--ink);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  appearance: none;
}

.qualification-select:invalid {
  color: #7f8d9f;
}

.qualification-select:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(7, 20, 37, 0.08);
}

.qualification-select.is-enhanced {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.custom-select {
  position: relative;
  width: 100%;
}

.custom-select.is-open {
  z-index: 60;
}

.custom-select-trigger {
  display: flex;
  width: 100%;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 15px;
  border: 1px solid #c7d0da;
  border-radius: 9px;
  background: var(--white);
  box-shadow:
    0 1px 2px rgba(7, 20, 37, 0.04),
    0 7px 20px rgba(7, 20, 37, 0.055);
  color: #7f8d9f;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  transition:
    border-color 150ms ease,
    box-shadow 150ms ease,
    background 150ms ease;
}

.custom-select.has-value .custom-select-trigger {
  color: var(--ink);
}

.custom-select-trigger:hover {
  border-color: #8794a3;
  background: #fbfcfd;
}

.custom-select.is-open .custom-select-trigger,
.custom-select-trigger:focus-visible {
  border-color: var(--ink);
  outline: none;
  box-shadow:
    0 0 0 3px rgba(7, 20, 37, 0.09),
    0 10px 28px rgba(7, 20, 37, 0.09);
}

.custom-select.is-invalid .custom-select-trigger {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(198, 70, 62, 0.12);
}

.custom-select.is-disabled {
  display: none;
}

.custom-select-trigger:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.custom-select-value {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.custom-select-chevron {
  flex: 0 0 auto;
  width: 18px;
  fill: none;
  stroke: #697588;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform 160ms ease;
}

.custom-select.is-open .custom-select-chevron {
  transform: rotate(180deg);
}

.custom-select-content {
  position: absolute;
  z-index: 45;
  top: calc(100% + 6px);
  right: 0;
  left: 0;
  max-height: 270px;
  overflow-y: auto;
  padding: 5px;
  border: 1px solid #d5dce4;
  border-radius: 10px;
  background: var(--white);
  box-shadow:
    0 22px 55px rgba(7, 20, 37, 0.18),
    0 5px 14px rgba(7, 20, 37, 0.08);
  transform-origin: top center;
  animation: custom-select-in 150ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.custom-select-content[hidden] {
  display: none;
}

.custom-select.opens-upward .custom-select-content {
  top: auto;
  bottom: calc(100% + 6px);
  transform-origin: bottom center;
  animation-name: custom-select-in-upward;
}

@keyframes custom-select-in {
  from {
    opacity: 0;
    transform: translateY(-5px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes custom-select-in-upward {
  from {
    opacity: 0;
    transform: translateY(5px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.custom-select-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.custom-select-item {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 42px;
  align-items: center;
  padding: 8px 40px 8px 11px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: #344052;
  cursor: pointer;
  font-size: 14px;
  font-weight: 650;
  text-align: left;
  outline: none;
  transition:
    background 120ms ease,
    color 120ms ease;
}

.custom-select-item:hover,
.custom-select-item:focus-visible {
  background: #eef2f6;
  color: var(--ink);
}

.custom-select-item[aria-selected="true"] {
  background: rgba(240, 223, 32, 0.16);
  color: var(--ink);
  font-weight: 800;
}

.custom-select-check {
  position: absolute;
  top: 50%;
  right: 12px;
  display: none;
  width: 17px;
  fill: none;
  stroke: #756b08;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
  transform: translateY(-50%);
}

.custom-select-item[aria-selected="true"] .custom-select-check {
  display: block;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus {
  border-color: #5f6e80;
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(7, 20, 37, 0.07);
}

.phone-field .iti {
  width: 100%;
  margin-bottom: 10px;
}

.phone-field .iti input {
  margin-bottom: 0;
}

.phone-field .iti__selected-country {
  border-radius: 8px 0 0 8px;
  transition: background 150ms ease;
}

.phone-field .iti__selected-country:hover,
.phone-field .iti__selected-country:focus-visible {
  background: #f1f3f6;
}

.iti__dropdown-content {
  z-index: 310;
  overflow: hidden;
  border: 1px solid #cfd6df;
  border-radius: 9px;
  box-shadow: 0 20px 45px rgba(7, 20, 37, 0.18);
}

.iti--container {
  z-index: 310;
}

.iti__search-input {
  height: 40px;
  margin: 8px !important;
  border: 1px solid #cfd6df;
  border-radius: 7px;
  background: var(--white);
  color: var(--ink);
  font-size: 13px;
  outline: none;
}

.iti__search-input:focus {
  border-color: #5f6e80;
  box-shadow: 0 0 0 3px rgba(7, 20, 37, 0.07);
}

.iti__country-list {
  max-height: 260px;
}

.iti__country {
  min-height: 39px;
  color: var(--ink);
  font-size: 13px;
}

.option-grid {
  display: grid;
  gap: 10px;
}

.option-grid-two {
  grid-template-columns: 1fr 1fr;
}

.option-card {
  position: relative;
  display: flex;
  min-height: 78px;
  align-items: center;
  gap: 11px;
  padding: 13px;
  border: 1px solid #d5dbe2;
  border-radius: 11px;
  background: #fafbfc;
  cursor: pointer;
  transition:
    border-color 140ms ease,
    background 140ms ease,
    transform 140ms ease;
}

.choice-list {
  display: grid;
  gap: 9px;
}

.choice-list-compact {
  grid-template-columns: 1fr 1fr;
}

.choice-list-compact .choice-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.choice-card {
  position: relative;
  display: grid;
  min-height: 58px;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 0 11px;
  padding: 11px 13px;
  border: 1px solid #d5dbe2;
  border-radius: 10px;
  background: #fafbfc;
  cursor: pointer;
  transition:
    border-color 140ms ease,
    background 140ms ease,
    transform 140ms ease;
}

.choice-card[hidden] {
  display: none;
}

.choice-card:hover {
  border-color: #8894a1;
  background: var(--white);
  transform: translateY(-1px);
}

.choice-card:has(input:checked) {
  border-color: var(--ink);
  background: #f2f5f8;
  box-shadow: inset 0 0 0 1px var(--ink);
}

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

.choice-card .option-indicator {
  grid-row: 1 / span 2;
}

.choice-card input:checked + .option-indicator {
  border: 5px solid var(--ink);
}

.choice-card strong,
.choice-card small {
  grid-column: 2;
}

.choice-card strong {
  font-size: 13px;
}

.choice-card small {
  margin-top: 1px;
  color: var(--slate);
  font-size: 11px;
}

.choice-card input:focus-visible + .option-indicator {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.option-card:hover,
.spend-card:hover {
  border-color: #8894a1;
  background: var(--white);
  transform: translateY(-1px);
}

.option-card:has(input:checked),
.spend-card:has(input:checked) {
  border-color: var(--ink);
  background: #f2f5f8;
  box-shadow: inset 0 0 0 1px var(--ink);
}

.option-card input,
.spend-card input,
.priority-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-indicator {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  border: 1px solid #9ca7b4;
  border-radius: 50%;
  background: var(--white);
}

.option-card input:checked + .option-indicator {
  border: 5px solid var(--ink);
}

.option-card strong,
.option-card small {
  display: block;
}

.option-card strong {
  margin-bottom: 2px;
  font-size: 13px;
}

.option-card small {
  color: var(--slate);
  font-size: 11px;
  line-height: 1.35;
}

.spend-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.spend-card {
  position: relative;
  display: flex;
  min-height: 62px;
  flex-direction: column;
  justify-content: center;
  padding: 10px 12px;
  border: 1px solid #d5dbe2;
  border-radius: 11px;
  background: #fafbfc;
  cursor: pointer;
  transition:
    border-color 140ms ease,
    background 140ms ease,
    transform 140ms ease;
}

.spend-card span {
  color: #788493;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.spend-card strong {
  font-size: 13px;
}

.priority-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.priority-options-stacked {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.priority-options-stacked label:last-child {
  grid-column: 1 / -1;
}

.priority-options-stacked label span {
  padding: 13px 14px;
  border-radius: 8px;
  text-align: center;
}

.priority-options label {
  position: relative;
  cursor: pointer;
}

.priority-options label span {
  display: block;
  margin: 0 !important;
  padding: 9px 12px;
  border: 1px solid #d5dbe2;
  border-radius: 99px;
  background: #fbfcfd;
  color: #526071 !important;
  font-size: 11px !important;
  font-weight: 700;
  transition:
    border-color 140ms ease,
    background 140ms ease,
    color 140ms ease;
}

.priority-options input:checked + span {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white) !important;
}

.form-step[data-form-step="3"] fieldset {
  margin-bottom: 16px;
}

.form-step[data-form-step="3"] .option-card {
  min-height: 68px;
}

.form-step[data-form-step="3"] .spend-card {
  min-height: 56px;
}

.form-step[data-form-step="3"] .priority-options-stacked label span {
  padding: 11px 10px;
}

.form-error {
  display: none;
  margin: 0 0 12px;
  color: var(--danger);
  font-size: 12px;
  font-weight: 700;
}

.form-error.is-visible {
  display: block;
}

.form-continue {
  display: flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  font-weight: 800;
  transition:
    background 160ms ease,
    transform 160ms ease;
}

.form-continue:hover {
  background: var(--ink-lighter);
  transform: translateY(-1px);
}

.form-actions {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 10px;
  margin-top: 4px;
}

.form-back-inline {
  min-height: 36px;
  margin-top: 2px;
  padding: 0 13px;
}

.form-back {
  min-height: 48px;
  border: 1px solid #d2d9e0;
  border-radius: 8px;
  background: #f8f9fa;
  color: #637181;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  transition:
    border-color 150ms ease,
    color 150ms ease;
}

.form-back:hover,
.form-back:focus-visible {
  border-color: #82909e;
  color: var(--ink);
}

.privacy-note {
  margin: 0 4px 14px;
  color: #8a95a2;
  font-size: 10px;
  line-height: 1.45;
}

.calendar-panel {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 22px;
  background: var(--white);
}

.calendar-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding-right: 48px;
}

.calendar-label {
  color: var(--slate);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.calendar-heading h3 {
  margin: 3px 0 0;
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: -0.035em;
}

.calendar-nav {
  display: flex;
  gap: 7px;
}

.calendar-nav button {
  display: grid;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: #697588;
  cursor: pointer;
  place-items: center;
  transition:
    border-color 140ms ease,
    background 140ms ease,
    color 140ms ease;
}

.calendar-nav button:hover:not(:disabled),
.calendar-nav button:focus-visible {
  border-color: #aab5c1;
  background: #f1f4f7;
  color: var(--ink);
  outline: none;
}

.calendar-nav button:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

.calendar-nav svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.timezone {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 12px 0 16px;
  color: #6f7b89;
  font-size: 12px;
}

.timezone-control > label {
  flex: 0 0 auto;
  color: #6f7b89;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.timezone-input-wrap {
  position: relative;
  width: min(300px, 100%);
}

.timezone-input-wrap::after {
  position: absolute;
  top: 50%;
  right: 12px;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid #697588;
  border-bottom: 1.5px solid #697588;
  content: "";
  pointer-events: none;
  transform: translateY(-68%) rotate(45deg);
}

#timezone-search {
  width: 100%;
  height: 36px;
  margin: 0;
  padding: 0 34px 0 11px;
  border: 1px solid #ced6df;
  border-radius: 8px;
  background: #f7f9fb;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  outline: none;
}

#timezone-search:hover {
  border-color: #8794a3;
}

#timezone-search:focus {
  border-color: var(--ink);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(7, 20, 37, 0.08);
}

.calendar-layout {
  display: grid;
  flex: 1;
  grid-template-columns: minmax(0, 1fr) 180px;
  align-items: start;
  gap: 20px;
}

.calendar-main {
  width: 100%;
  max-width: 430px;
  justify-self: center;
  padding: 14px;
  border: 1px solid #dfe5eb;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(7, 20, 37, 0.055);
}

.weekday-row,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.weekday-row {
  margin-bottom: 6px;
  color: #929daa;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.calendar-grid {
  gap: 4px;
}

.calendar-day {
  position: relative;
  display: grid;
  height: 42px;
  aspect-ratio: auto;
  min-width: 0;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: #697588;
  cursor: default;
  font-size: 13px;
  font-weight: 600;
  place-items: center;
}

.calendar-day.is-empty {
  visibility: hidden;
}

.calendar-day.is-past {
  color: #c7cfd8;
  opacity: 0.7;
}

.calendar-day.is-today {
  border-color: #d5dce4;
  background: #f1f4f7;
  color: var(--ink);
  font-weight: 800;
}

.calendar-day.is-available {
  border-color: #e1e6ec;
  background: #f8fafb;
  color: var(--ink);
  cursor: pointer;
  font-weight: 700;
  transition:
    border-color 130ms ease,
    background 130ms ease,
    color 130ms ease,
    transform 130ms ease;
}

.calendar-day.is-available::after {
  position: absolute;
  bottom: 5px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #1c7c61;
  content: "";
}

.calendar-day.is-available:hover {
  border-color: #c7d0da;
  background: #eef2f6;
}

.calendar-day.is-selected {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 3px 10px rgba(7, 20, 37, 0.2);
}

.calendar-day.is-selected::after {
  background: var(--yellow);
}

.calendar-day.is-preferred:not(.is-selected) {
  border-color: rgba(158, 145, 18, 0.72);
  box-shadow: inset 0 0 0 1px rgba(158, 145, 18, 0.24);
}

.times-panel {
  min-width: 0;
  max-height: 330px;
  padding: 12px 8px 12px 12px;
  overflow-y: auto;
  border: 1px solid #dfe5eb;
  border-radius: 12px;
  background: #f8fafb;
}

.times-panel > p {
  margin: 38px 8px;
  color: #8b96a3;
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}

.times-panel > strong {
  display: block;
  margin: 0 4px 10px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.time-button {
  width: 100%;
  min-height: 40px;
  margin-bottom: 6px;
  padding: 8px 7px;
  border: 1px solid #cfd6dd;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  transition:
    border-color 130ms ease,
    background 130ms ease,
    color 130ms ease;
}

.time-button:hover {
  border-color: #8794a3;
  background: #f1f4f7;
}

.time-button.is-selected {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 3px 9px rgba(7, 20, 37, 0.16);
}

.calendar-lock {
  position: absolute;
  z-index: 4;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 40px;
  background: rgba(255, 255, 255, 0.34);
  text-align: center;
  transition:
    opacity 220ms ease,
    visibility 220ms ease;
}

.lock-message {
  display: flex;
  width: min(340px, 100%);
  align-items: center;
  flex-direction: column;
  padding: 24px 28px;
  border: 1px solid #dce2e8;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 20px 55px rgba(7, 20, 37, 0.15);
}

.calendar-panel.is-unlocked .calendar-lock {
  visibility: hidden;
  opacity: 0;
}

.lock-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 15px;
  border: 1px solid #d3dae1;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(7, 20, 37, 0.08);
  color: var(--ink);
  place-items: center;
}

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

.calendar-lock strong {
  margin-bottom: 5px;
  font-size: 15px;
}

.calendar-lock p {
  max-width: 280px;
  margin: 0;
  color: var(--slate);
  font-size: 12px;
}

.calendar-lock.is-no-availability .lock-icon {
  border-color: #ebe1bf;
  background: #fffdf4;
  color: #8d7613;
}

.calendar-lock.is-no-availability {
  background: rgba(255, 255, 255, 0.28);
}

.booking-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.calendar-back {
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid #d2d9e0;
  border-radius: 8px;
  background: var(--white);
  color: #637181;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
  transition:
    border-color 140ms ease,
    color 140ms ease,
    background 140ms ease;
}

.calendar-back:hover,
.calendar-back:focus-visible {
  border-color: #8794a3;
  background: #f4f6f8;
  color: var(--ink);
  outline: none;
}

.selected-slot {
  display: flex;
  flex-direction: column;
  color: #83909d;
  font-size: 12px;
}

.selected-slot strong {
  color: var(--ink);
  font-size: 13px;
}

#book-button {
  min-width: 190px;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 7px;
  background: var(--yellow);
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

#book-button:disabled {
  background: #e8ebee;
  color: #a5adb5;
  cursor: not-allowed;
}

.why-section {
  display: block;
  padding: 116px max(24px, calc((100% - 1120px) / 2));
  background:
    linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    var(--ink);
  background-size: 72px 72px;
  color: var(--white);
}

.why-section.section-tight {
  padding-top: 56px;
  padding-bottom: 56px;
}

.why-copy .section-label {
  color: #9eabba;
  text-align: center;
}

.why-copy h2 {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.why-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
  border: 0;
}

.why-points--three {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 700px) {
  .why-points--three {
    grid-template-columns: 1fr;
  }
}

.why-points > div {
  display: flex;
  min-height: 210px;
  align-items: flex-start;
  flex-direction: column;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.018);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.why-points > div:hover {
  border-color: rgba(240, 223, 32, 0.3);
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-3px);
}

.why-points span {
  display: grid;
  width: 40px;
  height: 40px;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: #aab6c4;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  place-items: center;
}

.why-points strong {
  margin-bottom: 9px;
  font-size: 18px;
  font-weight: 700;
}

.why-points p {
  margin: 0;
  color: #909dad;
  font-size: 14px;
  line-height: 1.65;
}

.social-proof-section {
  padding: 116px max(24px, calc((100% - 1120px) / 2));
  border-top: 1px solid #e6e9ed;
  background: #f5f7f9;
}

.social-proof-section.section-tight-top {
  padding-top: 56px;
}

.social-proof-section.section-tight-bottom {
  padding-bottom: 56px;
}

.social-proof-heading {
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  gap: 50px;
  margin-bottom: 40px;
  text-align: center;
}

.social-proof-heading h2 {
  max-width: none;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(40px, 4.6vw, 56px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.review-score {
  display: grid;
  min-width: 190px;
  padding: 17px 20px;
  border: 1px solid #dfe4e8;
  border-radius: 12px;
  background: var(--white);
}

.review-stars {
  color: #d3b900;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.review-score strong {
  margin-top: 4px;
  font-size: 15px;
}

.review-score small {
  color: var(--slate);
  font-size: 10px;
}

.results-showcase {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 18px;
}

.result-card {
  overflow: hidden;
  border: 1px solid #dfe4e8;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(7, 20, 37, 0.045);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.result-card:hover {
  border-color: #cbd3dc;
  box-shadow: 0 18px 42px rgba(7, 20, 37, 0.07);
  transform: translateY(-3px);
}

.result-card figure {
  margin: 0;
  overflow: hidden;
  background: #eef1f4;
}

.result-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.result-card-featured {
  display: flex;
  min-height: 565px;
  flex-direction: column;
  justify-content: space-between;
  border-color: var(--yellow);
  border-width: 2px;
  background: var(--white);
  color: var(--ink);
}

.result-card-featured .result-copy {
  padding: 38px 38px 30px;
}

.result-card-featured h3 {
  max-width: 580px;
  margin: 10px 0 14px;
  font-family: var(--display);
  font-size: clamp(32px, 3.5vw, 48px);
  letter-spacing: -0.045em;
  line-height: 1.04;
  color: var(--ink);
}

.result-card-featured p {
  max-width: 580px;
  margin: 0;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.6;
}

.result-card-featured figure {
  aspect-ratio: 1.9 / 1;
  border-top: 1px solid var(--line);
}

.result-tag {
  color: #867911;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Centers a featured card's copy block instead of the default
   left-aligned layout - used where the card sits alone under a
   centered section heading. */
.result-copy--center {
  text-align: center;
}

.result-copy--center h3,
.result-copy--center p {
  margin-left: auto;
  margin-right: auto;
}

.result-card-grid {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
}

.result-card-compact {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  min-height: 270px;
}

.result-card-compact figure {
  min-height: 100%;
  border-right: 1px solid var(--line);
}

.result-card-compact .result-copy {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 24px;
}

.result-card-compact h3 {
  margin: 9px 0 7px;
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.result-card-compact p {
  margin: 0;
  color: var(--slate);
  font-size: 12px;
}

.result-card-sashko img {
  object-position: top center;
}

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

.testimonial-grid blockquote {
  min-height: 210px;
  margin: 0;
  padding: 28px;
  border: 1px solid #dfe4e8;
  border-radius: 14px;
  background: var(--white);
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.testimonial-grid blockquote:hover {
  border-color: #cbd3dc;
  transform: translateY(-2px);
}

.testimonial-grid blockquote p {
  margin: 18px 0 26px;
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: -0.02em;
  line-height: 1.45;
}

.testimonial-grid blockquote footer {
  color: var(--slate);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.testimonial-grid blockquote footer.reviewer {
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: none;
}

.testimonial-grid blockquote footer.reviewer img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-grid blockquote footer.reviewer .reviewer-name {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink);
}

.testimonial-grid blockquote footer.reviewer .reviewer-meta {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--slate);
  text-transform: none;
  margin-top: 2px;
}

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

.video-testimonial {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(7, 20, 37, 0.045);
}

.video-testimonial-embed {
  position: relative;
  aspect-ratio: 16 / 9;
}

.video-testimonial-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-testimonial-play-btn {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: var(--ink);
  cursor: pointer;
}

.video-testimonial-play-btn img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-testimonial-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 10px 26px rgba(7, 20, 37, 0.3);
  transform: translate(-50%, -50%);
  transition: background 160ms ease, transform 160ms ease;
}

.video-testimonial-play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid var(--ink);
  transform: translate(-50%, -50%);
}

.video-testimonial-play-btn:hover .video-testimonial-play {
  background: var(--yellow-hover);
  transform: translate(-50%, -50%) scale(1.06);
}

.video-testimonial-caption {
  margin: 0;
  padding: 14px 16px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 700px) {
  .video-testimonial-grid {
    grid-template-columns: 1fr;
  }
}

/* Single-video pages: fill the row instead of sitting in one column. */
.video-testimonial-grid--single {
  grid-template-columns: 1fr;
}

.proof-final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 20px;
  padding: 42px 44px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(7, 20, 37, 0.045);
  color: var(--ink);
}

.proof-final-cta.proof-final-cta--plain {
  margin-top: 0;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.proof-final-cta.proof-final-cta--cta-only {
  justify-content: center;
  margin: 36px 0;
}

.proof-final-cta--cta-only .primary-cta {
  margin: 0;
}

.cta-caption {
  margin: 12px 0 0;
  color: var(--slate);
  font-size: 14px;
  text-align: center;
}

.cta-caption--on-dark {
  color: #9eabba;
}

.proof-final-cta > div > span {
  color: #867911;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-final-cta h3 {
  margin: 3px 0 0;
  font-family: var(--display);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.proof-final-cta .primary-cta {
  flex: 0 0 auto;
  margin: 0;
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 14px 32px rgba(240, 223, 32, 0.1);
}

.proof-final-cta .primary-cta:hover {
  background: var(--yellow-hover);
}

@media (min-width: 701px) and (max-width: 800px) {
  .proof-final-cta {
    align-items: stretch;
    flex-direction: column;
    padding: 32px 28px;
  }

  .proof-final-cta .primary-cta {
    width: 100%;
    min-width: 0;
  }
}

.social-proof-section-cta {
  padding: 0 max(24px, calc((100% - 1120px) / 2)) 116px;
  background: #f5f7f9;
}

.guarantees-section {
  padding: 24px max(24px, calc((100% - 800px) / 2)) 90px;
  background: #faf6ec;
  text-align: center;
}

.guarantees-icon {
  display: flex;
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--yellow);
}

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

.guarantees-heading {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: clamp(30px, 4.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.guarantees-subhead {
  max-width: 600px;
  margin: 0 auto 40px;
  color: var(--slate);
  font-size: 17px;
  line-height: 1.5;
}

.guarantees-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: left;
}

.guarantee-card {
  padding: 28px;
  border-radius: 16px;
  background: #efe9dd;
}

.guarantee-period {
  display: block;
  margin-bottom: 10px;
  color: #a9832a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guarantee-card h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
}

.guarantee-card p {
  margin: 0;
  color: var(--slate);
  font-size: 15px;
  line-height: 1.55;
}

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

.faq-section {
  padding: 0 max(24px, calc((100% - 800px) / 2)) 116px;
}

.faq-title {
  margin: 0 0 28px;
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  letter-spacing: -0.03em;
  text-align: center;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  padding: 22px 26px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--slate);
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: "\2212";
}

.faq-item p {
  margin: 14px 0 0;
  color: var(--slate);
  font-size: 15px;
  line-height: 1.6;
}

.site-footer {
  display: flex;
  min-height: 150px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 38px max(24px, calc((100% - 1100px) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #020611;
  color: #7f8d9e;
  font-size: 11px;
}

.site-footer img {
  width: 125px;
  height: auto;
  opacity: 0.8;
}

.site-footer p {
  max-width: 580px;
  margin: 0;
  text-align: center;
}

.site-footer > span {
  white-space: nowrap;
}

.footer-legal-link {
  color: #7f8d9e;
  text-decoration: underline;
  text-decoration-color: rgba(127, 141, 158, 0.4);
  white-space: nowrap;
}

.footer-legal-link:hover {
  color: var(--white);
}

@media (min-width: 900px) and (max-height: 820px) {
  .site-header {
    height: 72px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-inner {
    padding: 84px 0 30px;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 11px;
  }

  .hero h1 {
    max-width: 880px;
    font-size: clamp(44px, 4.2vw, 52px);
  }

  .hero-copy {
    max-width: 740px;
    margin: 12px auto 14px;
    font-size: 15px;
    line-height: 1.45;
  }

  .video-wrap {
    width: min(620px, 100%);
  }

  .video-kicker {
    gap: 12px;
    margin-bottom: 6px;
    font-size: 9px;
  }

  .primary-cta {
    min-width: 340px;
    min-height: 54px;
    margin-top: 14px;
    padding: 15px 28px;
    font-size: 16px;
  }

  .cta-note {
    display: none;
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding-bottom: 76px;
  }

  .scheduler-body {
    grid-template-columns: 1fr;
  }

  .application-panel {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .scheduler-shell.is-form-mode .application-panel {
    border-bottom: 0;
  }

  .calendar-panel {
    min-height: 590px;
  }

  .why-section {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .social-proof-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 24px;
  }

  .review-score {
    width: 190px;
  }

  .results-showcase {
    grid-template-columns: 1fr;
  }

  .result-card-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .result-card-compact {
    grid-template-columns: 1fr;
  }

  .result-card-compact figure {
    aspect-ratio: 1.8 / 1;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-grid blockquote {
    min-height: 0;
  }
}

@media (max-width: 700px) {
  .site-header {
    width: calc(100% - 32px);
    height: 74px;
  }

  .brand {
    width: 132px;
  }

  .header-cta {
    font-size: 10px;
  }

  .hero-inner {
    width: calc(100% - 30px);
    padding: 104px 0 54px;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .hero h1 {
    font-size: clamp(38px, 10.8vw, 50px);
  }

  .headline-line {
    display: inline;
    white-space: normal;
  }

  .hero-copy {
    margin: 16px auto 20px;
    font-size: 16px;
  }

  .video-kicker {
    font-size: 10px;
  }

  .video-embed {
    border-radius: 11px;
  }

  .video-chart {
    inset: 14% 7% 10%;
  }

  .play-button {
    width: 68px;
    height: 68px;
  }

  .video-placeholder-note {
    display: none;
  }

  .primary-cta {
    width: 100%;
    min-width: 0;
  }

  .proof-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: min(460px, calc(100% - 28px));
    padding: 16px 0;
  }

  .proof-item {
    min-height: 112px;
    padding: 8px 6px;
  }

  .proof-review-card:last-child {
    grid-column: 1 / -1;
  }

  .scheduler-overlay {
    padding: 10px;
  }

  .section-heading {
    width: calc(100% - 20px);
    margin-bottom: 24px;
  }

  .section-heading h2,
  .why-copy h2 {
    font-size: 36px;
  }

  .section-heading > p:last-child {
    font-size: 16px;
  }

  .scheduler-shell {
    max-height: calc(100dvh - 20px);
    border-radius: 13px;
  }

  .scheduler-progress {
    gap: 10px;
    padding: 0 16px;
  }

  .progress-step {
    gap: 7px;
    font-size: 11px;
  }

  .progress-step > span {
    width: 7px;
    height: 7px;
  }

  .application-panel {
    padding: 24px 18px 22px;
  }

  .scheduler-shell.is-calendar-mode .application-panel {
    padding: 18px 58px 12px 18px;
  }

  .scheduler-shell.is-calendar-mode .meeting-host {
    padding-right: 0;
  }

  .meeting-host {
    padding-right: 44px;
  }

  .meeting-meta {
    margin: 10px 0 14px;
    padding-bottom: 14px;
  }

  .form-step-heading {
    margin-bottom: 14px;
  }

  .form-step[data-form-step="4"] .form-continue {
    font-size: 14px;
    white-space: nowrap;
  }

  .field-grid,
  .option-grid-two {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .option-grid-two {
    gap: 9px;
  }

  .account-metrics-grid {
    grid-template-columns: 1fr;
  }

  .account-metrics-grid legend {
    min-height: 0;
  }

  .choice-list-compact {
    grid-template-columns: 1fr;
  }

  .choice-list-compact .choice-card:last-child {
    grid-column: auto;
  }

  .upcoming-days {
    gap: 4px;
  }

  .upcoming-weekday-row {
    gap: 4px;
  }

  .upcoming-day-card {
    min-height: 56px;
    border-radius: 7px;
  }

  .upcoming-day-card strong {
    font-size: 19px;
  }

  .calendar-panel {
    min-height: 0;
    padding: 22px 14px 18px;
  }

  .timezone-control {
    align-items: center;
    flex-wrap: wrap;
  }

  .timezone-input-wrap {
    width: 100%;
    margin-top: 2px;
  }

  .calendar-layout {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .calendar-main {
    max-width: none;
    padding: 10px;
  }

  .calendar-day {
    height: 38px;
  }

  .times-panel {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    max-height: 250px;
    padding: 12px;
    border: 1px solid #dfe5eb;
  }

  .times-panel > strong,
  .times-panel > p {
    grid-column: 1 / -1;
  }

  .time-button {
    margin: 0;
  }

  .booking-footer {
    align-items: stretch;
    flex-direction: column;
  }

  #book-button {
    width: 100%;
  }

  .calendar-back {
    width: 100%;
  }

  .why-section {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .why-points {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 32px;
  }

  .why-points > div {
    min-height: 0;
  }

  .social-proof-section {
    padding: 78px 14px;
  }

  .social-proof-heading {
    padding: 0 10px;
  }

  .social-proof-heading h2 {
    font-size: 40px;
  }

  .result-card-featured {
    min-height: 0;
  }

  .result-card-featured .result-copy {
    padding: 30px 24px 25px;
  }

  .result-card-featured h3 {
    font-size: 34px;
  }

  .result-card-grid {
    grid-template-columns: 1fr;
  }

  .result-card-compact {
    grid-template-columns: 1fr;
  }

  .testimonial-grid blockquote {
    padding: 24px;
  }

  .proof-final-cta {
    align-items: stretch;
    flex-direction: column;
    padding: 26px 22px;
  }

  .proof-final-cta .primary-cta {
    width: 100%;
  }

  .site-footer {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.case-study-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

@media (max-width: 700px) {
  .case-study-grid {
    grid-template-columns: 1fr;
  }

}

/* Case-study grid cards: stack image over copy so wide account
   screenshots show in full instead of being cover-cropped. */
.case-study-grid .result-card-compact {
  display: block;
  min-height: 0;
}

.case-study-grid .result-card-compact figure {
  min-height: 0;
  aspect-ratio: auto !important;
  border-right: 0;
  border-bottom: 1px solid var(--line);
}

.case-study-grid .result-card-compact img {
  height: auto;
}

/* ===== Light hero — closers.io-style above the fold ===== */
.hero.hero-light {
  min-height: 0;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.hero.hero-light::before,
.hero.hero-light .hero-glow {
  display: none;
}

.hero.hero-light .hero-inner {
  padding: 46px 0 24px;
}

.hero-logo {
  display: block;
  width: 195px;
  height: auto;
  margin: 0 auto 36px;
}

.hero.hero-light h1 {
  max-width: 1060px;
  font-size: clamp(26px, 2.9vw, 40px);
  letter-spacing: -0.028em;
  line-height: 1.18;
  text-wrap: balance;
}

.hero.hero-light h1 .u {
  color: var(--yellow);
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-decoration-color: var(--yellow);
  text-underline-offset: 6px;
}

.hero-tag {
  display: inline-block;
  margin: 0 0 18px;
  padding: 9px 20px;
  border: 1px solid #f0e2b0;
  border-radius: 999px;
  background: #fdf6df;
  color: #867911;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guarantee-pill {
  display: inline-block;
  max-width: 100%;
  margin: 24px 0 30px;
  padding: 10px 18px;
  border-radius: 10px;
  background: #f9d6d1;
  color: var(--ink);
  font-family: var(--body);
  font-size: clamp(13px, 3.6vw, 16px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.3;
  text-wrap: balance;
  white-space: normal;
}

@media (min-width: 701px) {
  .guarantee-pill {
    font-size: clamp(16px, 1.55vw, 18px);
    white-space: normal;
  }
}

@media (min-width: 800px) {
  .guarantee-pill {
    white-space: nowrap;
  }
}

/* Plain descriptive subheadline (multi-sentence) - not a badge like
   .guarantee-pill, which is sized for a single short line. */
.hero-subhead {
  max-width: 680px;
  margin: 20px auto 30px;
  color: var(--ink-lighter);
  font-size: clamp(17px, 3.6vw, 21px);
  font-weight: 600;
  line-height: 1.5;
  text-wrap: balance;
}

.hero.hero-light .video-wrap {
  margin-bottom: 32px;
}

/* ===== Light "how it works" section ===== */
.why-section {
  background: var(--white);
  color: var(--ink);
}

.why-copy .section-label {
  color: #7d7112;
}

.why-points > div {
  border: 1px solid var(--line);
  background: var(--white);
}

.why-points > div:hover {
  border-color: rgba(5, 12, 26, 0.3);
  background: var(--white);
}

.why-points span {
  border: 1px solid var(--line);
  color: #7d7112;
}

.why-points strong {
  color: var(--ink);
}

.why-points p {
  color: var(--slate);
}

.hero.hero-light h1 .u:last-of-type {
  white-space: nowrap;
}

.mid-cta-strip {
  padding: 54px 24px;
  background: var(--white);
}

.mid-cta-strip .section-cta {
  margin-top: 0;
}

a.review-score {
  color: inherit;
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease;
}

a.review-score:hover {
  border-color: #cbd3dc;
  transform: translateY(-2px);
}

.clutch-logo {
  width: 34px;
  height: 34px;
  margin-bottom: 8px;
}

@media (min-width: 701px) {
  .proof-inner {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    width: min(1320px, calc(100% - 40px));
  }
}

.proof-review-card {
  gap: 5px;
  color: inherit;
  text-decoration: none;
  transition:
    background 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

a.proof-review-card:hover,
a.proof-review-card:focus-visible {
  background: var(--white);
  box-shadow:
    inset 0 0 0 1px var(--yellow),
    0 10px 24px rgba(7, 20, 37, 0.08);
  transform: translateY(-2px);
}

.proof-review-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: var(--slate);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.proof-review-brand img {
  display: block;
  width: 19px;
  height: 19px;
  border-radius: 4px;
  object-fit: contain;
}

.proof-review-faces {
  display: flex;
}

.proof-review-faces img {
  width: 20px;
  height: 20px;
  margin-left: -6px;
  border: 2px solid var(--white);
  border-radius: 50%;
  object-fit: cover;
}

.proof-review-faces img:first-child {
  margin-left: 0;
}

.proof-review-score {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.proof-review-score strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: 22px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
  line-height: 1;
}

.proof-review-stars {
  color: #d3b900;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1;
}

.proof-review-card .proof-label {
  font-size: 10px;
}

/* Bigger closers.io-style CTA - scoped to the video-a/video-b guarantee
   funnel pages only; this was leaking onto every other page's CTA button
   (unscoped .primary-cta), forcing a 22px+ font into a fixed 56px padding
   that wrapped ugly on narrow phones. */
body[data-variant="a"] .primary-cta,
body[data-variant="b"] .primary-cta {
  min-width: min(520px, 100%);
  min-height: 92px;
  padding: 26px 56px;
  border-radius: 10px;
  font-size: clamp(22px, 2.2vw, 30px);
}

body[data-variant="a"] .primary-cta svg,
body[data-variant="b"] .primary-cta svg {
  width: 26px;
  height: 26px;
}

/* Featured card spans full width; furniture card spans the grid */
.results-showcase {
  grid-template-columns: 1fr;
}

.case-study-grid .result-card-wide {
  grid-column: 1 / -1;
}

/* Featured card: show the full screenshot including the revenue summary,
   no aspect-ratio cropping. */
.result-card-featured figure {
  aspect-ratio: auto;
}

.result-card-featured img {
  height: auto;
}

/* Boxed unmute card centered over the autoplaying, muted VSL — matches the
   closers.io reference (bordered card, not a full-frame tint). */
.sound-on-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: flex;
  width: min(78%, 380px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 28px 24px;
  border: 3px solid rgba(5, 12, 26, 0.85);
  border-radius: 16px;
  background: rgba(240, 223, 32, 0.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transform: translate(-50%, -50%) scale(1);
  transition:
    opacity 220ms ease,
    background 200ms ease,
    transform 200ms ease;
}

.sound-on-overlay:hover,
.sound-on-overlay:focus-visible {
  background: rgba(240, 223, 32, 0.7);
  transform: translate(-50%, -50%) scale(1.03);
}

.sound-on-icon {
  position: relative;
  display: grid;
  width: 60px;
  height: 60px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: rgba(240, 223, 32, 0.55);
  place-items: center;
}

.sound-on-ripple {
  position: absolute;
  inset: 0;
  border: 2px solid var(--ink);
  border-radius: 50%;
  opacity: 0;
  animation: sound-ripple 1.8s ease-out infinite;
}

.sound-on-ripple:nth-child(2) {
  animation-delay: 0.6s;
}

@keyframes sound-ripple {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }
  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}

.sound-on-icon svg {
  position: relative;
  z-index: 1;
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.sound-on-text {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.35;
  text-align: center;
}

.sound-on-overlay.is-hidden {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.9);
  pointer-events: none;
}

.trust-badges {
  padding: 40px 24px;
  background: var(--cream);
}

.trust-badges-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: min(900px, 100%);
  margin: 0 auto;
}

.trust-badges-inner img {
  height: 130px;
  width: auto;
  filter: grayscale(1) opacity(0.75);
  transition: filter 200ms ease;
}

.trust-badges-inner img:hover {
  filter: grayscale(0) opacity(1);
}

@media (max-width: 600px) {
  .trust-badges-inner {
    gap: 26px;
  }

  .trust-badges-inner img {
    height: 90px;
  }
}

.sound-wave {
  transform-origin: 12px 12px;
  animation: sound-wave-pulse 1.3s ease-in-out infinite;
}

.sound-wave-2 {
  animation-delay: 0.18s;
}

@keyframes sound-wave-pulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleX(0.85);
  }
  50% {
    opacity: 1;
    transform: scaleX(1.1);
  }
}
