[hidden] { display: none !important; }

.conversation-page { background: var(--navy-950); }

.conversation-hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  padding: 150px 0 94px;
  color: var(--white);
  background: radial-gradient(circle at 84% 18%, rgba(20,108,148,.34), transparent 31%), var(--navy-950);
}

.conversation-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.1));
  pointer-events: none;
}

.conversation-orbit { position: absolute; border: 1px solid rgba(114,209,202,.12); border-radius: 50%; }
.conversation-orbit-one { width: 660px; height: 660px; right: -260px; top: -190px; }
.conversation-orbit-two { width: 430px; height: 430px; right: -70px; top: 20px; }

.conversation-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 78px;
  align-items: center;
}

.conversation-copy h1 { max-width: 590px; font-size: clamp(42px, 4.1vw, 56px); }
.conversation-lede { max-width: 610px; margin: 27px 0 0; color: rgba(255,255,255,.7); font-size: 18px; line-height: 1.6; }

.john-intro { display: flex; align-items: center; gap: 14px; margin-top: 34px; }
.john-intro img { width: 52px; height: 52px; object-fit: cover; object-position: 50% 18%; border: 2px solid var(--teal-300); border-radius: 50%; }
.john-intro strong, .john-intro span { display: block; }
.john-intro strong { font: 600 15px/1.3 "Manrope", sans-serif; }
.john-intro span { margin-top: 4px; color: rgba(255,255,255,.5); font-size: 12px; }

.conversation-promises { display: flex; flex-wrap: wrap; gap: 14px 24px; margin-top: 31px; color: rgba(255,255,255,.5); font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.conversation-promises span { display: flex; align-items: center; gap: 8px; }
.conversation-promises span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--teal-300); }

.conversation-form-wrap { scroll-margin-top: 105px; }
.conversation-form {
  min-height: 505px;
  padding: 30px 32px 25px;
  color: var(--navy-900);
  background: var(--white);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.conversation-form button, .conversation-form input { font: inherit; }
.conversation-form .button { border: 0; cursor: pointer; }

.conversation-form-head { display: flex; align-items: center; justify-content: space-between; gap: 22px; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.conversation-form-head > div { display: flex; align-items: center; gap: 10px; }
.conversation-form-head > span { color: var(--slate-600); font-size: 11px; font-weight: 500; letter-spacing: 0; text-transform: none; }
.message-mark { display: grid; width: 28px; height: 28px; place-items: center; color: var(--navy-950); background: var(--teal-300); border-radius: 7px; font-size: 14px; }

.conversation-progress { height: 6px; margin: 16px 0 27px; overflow: hidden; border-radius: 999px; background: var(--mist-100); }
.conversation-progress span { display: block; width: 25%; height: 100%; border-radius: inherit; background: var(--teal-500); transition: width .3s ease; }

.conversation-step fieldset { min-width: 0; margin: 0; padding: 0; border: 0; }
.conversation-step legend { width: 100%; padding: 0; font: 600 clamp(24px,2vw,28px)/1.2 "Manrope", sans-serif; letter-spacing: -.04em; }
.conversation-step fieldset > p { margin: 8px 0 22px; color: var(--slate-600); font-size: 15px; line-height: 1.5; }
.field-label { display: block; margin: 15px 0 7px; color: var(--navy-800); font-size: 12px; font-weight: 700; }

.conversation-step input[type="text"],
.conversation-step input[type="email"],
.conversation-step input[type="tel"] {
  width: 100%;
  min-height: 61px;
  padding: 0 17px;
  color: var(--navy-900);
  background: var(--cloud-50);
  border: 1px solid rgba(11,31,51,.2);
  border-radius: 8px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.conversation-step input::placeholder { color: #8b98a3; }
.conversation-step input:focus { border-color: var(--teal-500); box-shadow: 0 0 0 4px rgba(42,157,152,.11); }

.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.choice-wide { grid-column: 1 / -1; }
.choice { position: relative; display: block; cursor: pointer; }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice span { display: flex; min-height: 56px; align-items: center; padding: 10px 14px 10px 42px; color: var(--navy-800); background: var(--cloud-50); border: 1px solid rgba(11,31,51,.15); border-radius: 8px; font-size: 13px; font-weight: 600; line-height: 1.3; transition: border-color .2s ease, background .2s ease; }
.choice span::before { content: ""; position: absolute; left: 16px; top: 50%; width: 14px; height: 14px; border: 1px solid rgba(11,31,51,.36); border-radius: 50%; transform: translateY(-50%); box-shadow: inset 0 0 0 3px var(--cloud-50); }
.choice:hover span { border-color: rgba(42,157,152,.5); }
.choice input:focus-visible + span { outline: 3px solid rgba(57,208,198,.28); outline-offset: 2px; }
.choice input:checked + span { color: var(--navy-950); border-color: var(--teal-500); background: rgba(42,157,152,.09); }
.choice input:checked + span::before { border-color: var(--teal-500); background: var(--teal-500); box-shadow: inset 0 0 0 3px #f4fbfb; }

.consent { display: flex; align-items: flex-start; gap: 10px; margin-top: 14px; color: var(--slate-600); font-size: 11px; line-height: 1.45; }
.consent input { flex: 0 0 auto; margin: 2px 0 0; accent-color: var(--teal-500); }
.consent strong { color: var(--navy-800); font-weight: 700; }
.consent a, .privacy-note a { color: var(--blue-700); font-weight: 700; text-decoration: underline; text-decoration-color: rgba(20,108,148,.28); text-underline-offset: 2px; }
.consent-marketing { margin-top: 14px; }

.conversation-actions { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); }
.conversation-back { min-height: 44px; padding: 0 7px; border: 0; color: var(--slate-600); background: transparent; font-size: 13px; font-weight: 600; cursor: pointer; }
.conversation-back:disabled { opacity: .35; cursor: default; }
.conversation-actions .button { min-width: 150px; margin-left: auto; color: var(--white); background: #237f7b; }
.conversation-actions .button:hover { background: #1b6f6b; }

.privacy-note { margin: 16px 0 0; color: var(--slate-600); font-size: 10px; line-height: 1.45; }
.privacy-note span { display: inline-grid; width: 17px; height: 17px; margin-right: 5px; place-items: center; color: var(--teal-500); border: 1px solid rgba(42,157,152,.4); border-radius: 50%; }

.conversation-ready { padding: 35px 8px 8px; text-align: center; outline: none; }
.conversation-ready .ready-check { display: grid; width: 52px; height: 52px; margin: 0 auto 20px; place-items: center; color: var(--navy-950); background: var(--teal-300); border-radius: 50%; font-size: 21px; font-weight: 700; }
.conversation-ready h2 { max-width: 420px; margin-inline: auto; font-size: clamp(28px, 2.6vw, 32px); }
.conversation-ready p { max-width: 430px; margin: 14px auto 23px; color: var(--slate-600); line-height: 1.6; }

.conversation-next { padding: 112px 0; background: var(--cloud-50); }
.conversation-next-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; align-items: start; }
.conversation-next h2 { max-width: 510px; font-size: clamp(36px, 3.5vw, 48px); }
.next-steps { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.next-steps article { min-height: 285px; padding: 31px; background: var(--white); border: 1px solid var(--border); box-shadow: 0 18px 45px rgba(7,23,38,.07); }
.next-steps article > span { display: block; margin-bottom: 74px; color: var(--teal-500); font-size: 12px; font-weight: 700; letter-spacing: .1em; }
.next-steps h3 { font-size: 22px; }
.next-steps p { margin: 14px 0 0; color: var(--slate-600); line-height: 1.6; }

@media (max-width: 980px) {
  .conversation-hero { min-height: auto; }
  .conversation-layout { grid-template-columns: 1fr; gap: 58px; }
  .conversation-copy { max-width: 760px; }
  .conversation-form-wrap { width: min(680px, 100%); }
  .conversation-next-layout { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 720px) {
  .conversation-hero { padding: 126px 0 68px; }
  .conversation-copy h1 { font-size: clamp(37px, 10.3vw, 46px); }
  .conversation-lede { font-size: 16px; }
  .conversation-form { min-height: 520px; padding: 25px 22px 22px; }
  .field-grid, .choice-grid, .next-steps { grid-template-columns: 1fr; }
  .choice-wide { grid-column: auto; }
  .conversation-next { padding: 78px 0; }
  .next-steps article { min-height: 230px; }
  .next-steps article > span { margin-bottom: 48px; }
}

@media (max-width: 480px) {
  .conversation-promises { flex-direction: column; gap: 10px; }
  .conversation-form { min-height: 540px; padding-inline: 18px; }
  .conversation-form-head { align-items: flex-start; }
  .conversation-form-head > div { max-width: 180px; }
  .conversation-step legend { font-size: 24px; }
  .conversation-next h2 { font-size: clamp(34px, 9vw, 42px); }
  .conversation-actions { align-items: stretch; }
  .conversation-actions .button { min-width: 0; padding-inline: 17px; }
}

@media (prefers-reduced-motion: reduce) {
  .conversation-progress span { transition: none; }
}
