:root {
  --navy-950: #061426;
  --navy-900: #081b33;
  --navy-800: #0d2948;
  --navy-700: #173c63;
  --blue-600: #1769e0;
  --blue-500: #2f7df0;
  --blue-100: #eaf2ff;
  --sky-50: #f4f8fc;
  --ink: #10233a;
  --muted: #5d6c7d;
  --line: #dce5ef;
  --white: #ffffff;
  --success: #178556;
  --danger: #b42318;
  --shadow-sm: 0 12px 35px rgba(8, 27, 51, .08);
  --shadow-lg: 0 28px 80px rgba(8, 27, 51, .15);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Heebo", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(47, 125, 240, .08), transparent 28%),
    radial-gradient(circle at 10% 55%, rgba(23, 105, 224, .05), transparent 24%);
  content: "";
  pointer-events: none;
}

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

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

button,
input {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid rgba(47, 125, 240, .55);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  right: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--white);
  color: var(--navy-900);
  box-shadow: var(--shadow-sm);
  transform: translateY(-160%);
  transition: transform .2s ease;
}

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

.preview-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 38px;
  padding: 6px 24px;
  background: var(--navy-950);
  color: rgba(255, 255, 255, .8);
  font-size: 13px;
}

.preview-notice span {
  color: var(--white);
  font-weight: 700;
}

.preview-notice a {
  border-bottom: 1px solid rgba(255, 255, 255, .45);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  min-height: 86px;
  padding: 10px max(28px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(220, 229, 239, .85);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 10px 32px rgba(8, 27, 51, .05);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand img {
  width: 62px;
  height: 62px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--white);
  object-fit: contain;
}

.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand strong {
  color: var(--navy-900);
  font-size: 17px;
  font-weight: 800;
}

.brand small {
  margin-top: 4px;
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .11em;
}

.site-header nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.5vw, 40px);
}

.site-header nav a {
  position: relative;
  color: #425369;
  font-size: 15px;
  font-weight: 600;
}

.site-header nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 100%;
  height: 2px;
  background: var(--blue-600);
  content: "";
  transition: left .25s ease;
}

.site-header nav a:hover::after {
  left: 0;
}

.header-call {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  color: var(--navy-900);
  direction: ltr;
  font-size: 15px;
  font-weight: 800;
}

.header-call svg {
  width: 40px;
  height: 40px;
  padding: 10px;
  border-radius: 50%;
  background: var(--blue-100);
  fill: var(--blue-600);
}

.header-call span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.header-call small {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  direction: rtl;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .85fr);
  align-items: center;
  gap: clamp(44px, 6vw, 90px);
  width: min(var(--max), calc(100% - 56px));
  min-height: 730px;
  margin: 0 auto;
  padding: 65px 0 70px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--blue-500);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .09em;
}

.eyebrow span {
  display: inline-block;
  width: 38px;
  height: 2px;
  background: currentColor;
}

.eyebrow.dark {
  color: var(--blue-600);
}

.eyebrow.light {
  color: #7db1ff;
}

.hero h1,
.section h2,
.contact-section h2 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(48px, 5.2vw, 82px);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: .98;
}

.hero h1 em,
.section h2 em,
.contact-section h2 em {
  color: var(--blue-500);
  font-style: normal;
}

.hero-lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: #485b70;
  font-size: clamp(18px, 1.45vw, 21px);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 54px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.25;
  transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--blue-600);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(23, 105, 224, .23);
}

.button-primary:hover {
  box-shadow: 0 20px 42px rgba(23, 105, 224, .32);
}

.button-ghost {
  border-color: #bac9d9;
  background: var(--white);
  color: var(--navy-900);
}

.hero-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 28px;
  color: #526477;
  font-size: 14px;
  font-weight: 600;
}

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

.hero-assurances i {
  display: inline-grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  background: #e8f7f0;
  color: var(--success);
  font-size: 12px;
  font-style: normal;
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 590px;
}

.portrait-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid #cfdae6;
  border-radius: var(--radius-lg) var(--radius-lg) 10px var(--radius-lg);
  background: linear-gradient(145deg, #dce9f4 0%, #a8bbcd 100%);
  box-shadow: var(--shadow-lg);
}

.portrait-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(6, 20, 38, .36));
  content: "";
  pointer-events: none;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 17%;
}

.portrait-accent {
  position: absolute;
  z-index: 1;
  top: 26px;
  right: 26px;
  width: 104px;
  height: 104px;
  border-top: 2px solid rgba(255, 255, 255, .75);
  border-right: 2px solid rgba(255, 255, 255, .75);
  border-radius: 0 22px 0 0;
}

.portrait-card {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  display: flex;
  min-width: 205px;
  padding: 17px 20px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 14px;
  background: rgba(6, 20, 38, .78);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(6, 20, 38, .2);
  backdrop-filter: blur(14px);
  flex-direction: column;
}

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

.portrait-card span {
  color: #9dc4ff;
  font-size: 13px;
  font-weight: 700;
}

.focus-banner {
  display: grid;
  grid-template-columns: .9fr 1.4fr auto;
  align-items: center;
  gap: 36px;
  width: min(var(--max), calc(100% - 56px));
  margin: 0 auto;
  padding: 28px 34px;
  border-radius: var(--radius-md);
  background: var(--navy-900);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.focus-banner div {
  display: flex;
  flex-direction: column;
}

.focus-banner div span {
  color: #8ebaff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .11em;
}

.focus-banner div strong {
  margin-top: 2px;
  font-size: clamp(23px, 2.2vw, 31px);
  line-height: 1.25;
}

.focus-banner p {
  margin: 0;
  color: #c8d4e1;
  font-size: 15px;
  line-height: 1.65;
}

.focus-banner a {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: max-content;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 10px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.section {
  width: min(var(--max), calc(100% - 56px));
  margin: 0 auto;
  padding: 120px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 54px;
}

.section-heading h2,
.about h2,
.faq h2,
.eligibility h2 {
  font-size: clamp(42px, 4.5vw, 68px);
  line-height: 1.05;
}

.section-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

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

.practice-card {
  position: relative;
  display: flex;
  min-height: 480px;
  overflow: hidden;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  flex-direction: column;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.practice-card:hover {
  border-color: #b7cae0;
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.practice-card.primary-card {
  border-color: var(--navy-900);
  background: var(--navy-900);
  color: var(--white);
}

.practice-card.primary-card::before {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 125, 240, .45), transparent 67%);
  content: "";
}

.card-number {
  margin-bottom: auto;
  color: #b5c5d7;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .12em;
}

.primary-card .card-number {
  color: #7fb1ff;
}

.card-kicker {
  margin: 42px 0 8px;
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}

.primary-card .card-kicker {
  color: #8bb8ff;
}

.practice-card h3 {
  margin: 0;
  color: var(--navy-900);
  font-size: 32px;
  line-height: 1.2;
}

.primary-card h3 {
  color: var(--white);
}

.practice-card p {
  margin: 16px 0 0;
  color: var(--muted);
}

.primary-card p {
  color: #c8d4e1;
}

.practice-card ul {
  display: grid;
  gap: 6px;
  margin: 18px 0 0;
  padding: 0;
  color: #dce6f0;
  font-size: 14px;
  list-style: none;
}

.practice-card li::before {
  margin-left: 8px;
  color: #6ea6fb;
  content: "✓";
}

.practice-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--blue-600);
  font-weight: 800;
}

.primary-card a {
  border-color: rgba(255, 255, 255, .16);
  color: #92bdff;
}

.first-steps {
  position: relative;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 90px;
  width: 100%;
  max-width: none;
  padding: 120px max(28px, calc((100vw - var(--max)) / 2));
  background:
    radial-gradient(circle at 12% 20%, rgba(47, 125, 240, .22), transparent 26%),
    var(--navy-950);
  color: var(--white);
}

.steps-copy {
  position: sticky;
  top: 130px;
  align-self: start;
}

.steps-copy h2,
.faq h2 {
  color: var(--white);
}

.steps-copy h2 em,
.faq h2 em {
  color: #73a9f8;
}

.steps-copy > p:not(.eyebrow) {
  margin: 26px 0 0;
  color: #b9c7d6;
  font-size: 18px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  color: #90bcff;
  font-weight: 800;
}

.steps-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, .15);
  list-style: none;
}

.steps-list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 26px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.steps-list b {
  color: #6fa7f9;
  font-size: 14px;
  letter-spacing: .1em;
}

.steps-list h3 {
  margin: 0;
  font-size: 23px;
}

.steps-list p {
  margin: 7px 0 0;
  color: #b9c7d6;
}

.eligibility {
  display: grid;
  grid-template-columns: .68fr 1.32fr;
  align-items: start;
  gap: 68px;
  padding-top: 130px;
  padding-bottom: 130px;
}

.eligibility-intro {
  position: sticky;
  top: 130px;
}

.eligibility-intro > p:not(.eyebrow) {
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.privacy-note {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-top: 28px;
  padding: 16px;
  border: 1px solid #cfe0f3;
  border-radius: 13px;
  background: #f5f9ff;
  color: #4d6176;
  font-size: 13px;
  line-height: 1.6;
}

.privacy-note svg {
  width: 24px;
  min-width: 24px;
  fill: none;
  stroke: var(--blue-600);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.privacy-note strong {
  color: var(--navy-900);
}

.quiz-shell {
  min-height: 660px;
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid #d7e1ec;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.quiz-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.progress-track {
  height: 7px;
  overflow: hidden;
  margin: 12px 0 38px;
  border-radius: 999px;
  background: #e7edf4;
}

.progress-track span {
  display: block;
  width: 11%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue-600), #5c9af6);
  transition: width .35s ease;
}

.quiz-step {
  display: none;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  animation: step-in .35s ease both;
}

.quiz-step.is-active {
  display: block;
}

@keyframes step-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.quiz-step legend {
  width: 100%;
  padding: 0;
  color: var(--navy-900);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  letter-spacing: -.025em;
  line-height: 1.2;
}

.question-help {
  margin: 9px 0 24px;
  color: var(--muted);
  font-size: 15px;
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.choice-grid.compact,
.choice-grid.body-grid {
  grid-template-columns: repeat(3, 1fr);
}

.choice {
  position: relative;
  cursor: pointer;
}

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

.choice span {
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 13px 44px 13px 15px;
  border: 1px solid #d8e2ec;
  border-radius: 12px;
  background: #fbfdff;
  color: #31475e;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.4;
  transition: border-color .2s ease, background-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.choice span::before {
  position: absolute;
  right: 15px;
  width: 18px;
  height: 18px;
  border: 2px solid #aebdcd;
  border-radius: 50%;
  background: var(--white);
  content: "";
}

.choice input[type="checkbox"] + span::before {
  border-radius: 5px;
}

.choice input:focus-visible + span {
  outline: 3px solid rgba(47, 125, 240, .4);
  outline-offset: 2px;
}

.choice input:checked + span {
  border-color: var(--blue-600);
  background: #eff5ff;
  color: var(--navy-900);
  box-shadow: inset 0 0 0 1px var(--blue-600);
}

.choice input:checked + span::before {
  border-color: var(--blue-600);
  background: var(--blue-600);
  box-shadow: inset 0 0 0 4px var(--white);
}

.choice input[type="checkbox"]:checked + span::before {
  background: var(--blue-600);
  box-shadow: none;
}

.choice input[type="checkbox"]:checked + span::after {
  position: absolute;
  right: 19px;
  width: 8px;
  height: 4px;
  border-bottom: 2px solid var(--white);
  border-left: 2px solid var(--white);
  content: "";
  transform: translateY(-2px) rotate(-45deg);
}

.conditional-field {
  display: block;
  margin-top: 18px;
}

.conditional-field span,
.contact-fields label > span {
  display: block;
  margin-bottom: 7px;
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 800;
}

.conditional-field input,
.contact-fields input {
  width: 100%;
  min-height: 54px;
  padding: 12px 15px;
  border: 1px solid #cbd8e5;
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
}

.conditional-field input:focus,
.contact-fields input:focus {
  border-color: var(--blue-600);
  outline: 0;
  box-shadow: 0 0 0 4px rgba(47, 125, 240, .13);
}

.contact-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}

.contact-fields label:last-child {
  grid-column: 1 / -1;
}

.contact-fields small {
  color: var(--muted);
  font-weight: 500;
}

.consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 11px;
  margin-top: 24px;
  padding: 15px;
  border-radius: 10px;
  background: #f5f8fb;
  color: #4b5e73;
  cursor: pointer;
  font-size: 13px;
  line-height: 1.6;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--blue-600);
}

.form-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.form-error {
  min-height: 26px;
  margin: 18px 0 0;
  color: var(--danger);
  font-size: 14px;
  font-weight: 700;
}

.quiz-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}

.quiz-actions button {
  min-height: 52px;
  padding: 12px 22px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 800;
}

.quiz-back {
  border: 1px solid #cbd8e5;
  background: var(--white);
  color: var(--navy-900);
}

.quiz-back:disabled {
  cursor: not-allowed;
  opacity: .38;
}

.quiz-submit:disabled {
  cursor: wait;
  opacity: .7;
}

.quiz-next:disabled {
  cursor: wait;
  opacity: .7;
}

.quiz-next,
.quiz-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-right: auto;
  border: 1px solid var(--blue-600);
  background: var(--blue-600);
  color: var(--white);
  box-shadow: 0 13px 28px rgba(23, 105, 224, .2);
}

.form-disclaimer {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #66778a;
  font-size: 12px;
  line-height: 1.65;
}

.form-disclaimer strong {
  color: #3b4f65;
}

.delivery-panel {
  display: flex;
  min-height: 560px;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}

.delivery-icon {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 50%;
  background: #e8f7f0;
  color: var(--success);
  font-size: 34px;
  font-weight: 800;
}

.delivery-panel h3 {
  margin: 24px 0 0;
  color: var(--navy-900);
  font-size: 32px;
  line-height: 1.25;
}

.delivery-panel > p {
  max-width: 560px;
  margin: 14px auto 0;
  color: var(--muted);
}

.delivery-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.button-whatsapp {
  background: #178b5e;
  color: var(--white);
}

.button-ghost-dark {
  border-color: #c8d5e2;
  color: var(--navy-900);
}

.start-over {
  margin-top: 22px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
}

.about {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 88px;
  padding-top: 80px;
}

.about-photo {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) var(--radius-lg) 12px;
  background: #dce8f2;
  box-shadow: var(--shadow-lg);
}

.about-photo-bg {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(150deg, #e7eef5, #9eb2c4);
}

.about-photo img {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 12%;
}

.about-copy .lead {
  margin: 28px 0 0;
  color: var(--navy-800);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.75;
}

.about-copy > p:not(.eyebrow):not(.lead) {
  color: var(--muted);
}

.button-dark {
  margin-top: 20px;
  background: var(--navy-900);
  color: var(--white);
}

.secondary-practice {
  padding-top: 50px;
}

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

.secondary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.secondary-grid article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 25px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--sky-50);
}

.secondary-grid article > span {
  color: var(--blue-600);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
}

.secondary-grid h3 {
  margin: 0;
  color: var(--navy-900);
  font-size: 25px;
}

.secondary-grid p {
  margin: 9px 0 0;
  color: var(--muted);
}

.faq {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 80px;
  width: 100%;
  max-width: none;
  padding: 120px max(28px, calc((100vw - var(--max)) / 2));
  background: var(--navy-950);
  color: var(--white);
}

.faq-heading > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: #aebfd0;
}

.faq-list {
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.faq details {
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 0;
  color: var(--white);
  cursor: pointer;
  font-size: 19px;
  font-weight: 700;
  list-style: none;
}

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

.faq summary span {
  color: #78acfa;
  font-size: 28px;
  font-weight: 400;
  transition: transform .2s ease;
}

.faq details[open] summary span {
  transform: rotate(45deg);
}

.faq details p {
  max-width: 760px;
  margin: -8px 0 24px;
  color: #aebfd0;
}

.contact-section {
  padding: 100px max(28px, calc((100vw - var(--max)) / 2));
  background: #edf4fb;
}

.contact-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr .75fr;
  gap: 70px;
  overflow: hidden;
  padding: clamp(38px, 6vw, 78px);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 5% 20%, rgba(47, 125, 240, .38), transparent 24%),
    var(--navy-900);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.contact-card h2 {
  color: var(--white);
  font-size: clamp(42px, 4.4vw, 66px);
}

.contact-card h2 em {
  color: #7eaff9;
}

.contact-copy > p:not(.eyebrow) {
  color: #bfccda;
  font-size: 18px;
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.button-white {
  background: var(--white);
  color: var(--navy-900);
}

.button-outline-white {
  border-color: rgba(255, 255, 255, .4);
  color: var(--white);
}

.office-details {
  display: grid;
  align-content: center;
  gap: 0;
}

.office-details > * {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.office-details span {
  color: #94a9bf;
  font-size: 13px;
}

.office-details strong {
  color: var(--white);
  text-align: left;
  font-size: 15px;
}

.site-footer {
  padding: 60px max(28px, calc((100vw - var(--max)) / 2)) 24px;
  background: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 38px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.footer-brand img {
  width: 54px;
  height: 54px;
}

.footer-main > p {
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 25px;
  color: #43566b;
  font-size: 14px;
  font-weight: 700;
}

.legal-note {
  max-width: 980px;
  padding: 26px 0;
  color: #6a798a;
  font-size: 12px;
  line-height: 1.75;
}

.legal-note strong {
  color: #45596e;
}

.legal-note p {
  margin: 5px 0 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: #7b8998;
  font-size: 12px;
}

.footer-bottom a {
  color: var(--blue-600);
  font-weight: 800;
}

.mobile-contact-bar {
  display: none;
}

@media (max-width: 1120px) {
  .site-header {
    gap: 20px;
  }

  .site-header nav {
    gap: 18px;
  }

  .site-header nav a {
    font-size: 13px;
  }

  .brand span {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(370px, .75fr);
    gap: 40px;
  }

  .hero h1 {
    font-size: clamp(48px, 5.7vw, 66px);
  }

  .focus-banner {
    grid-template-columns: .9fr 1.1fr;
  }

  .focus-banner a {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .practice-card {
    padding: 28px;
  }

  .eligibility {
    gap: 42px;
  }

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

@media (max-width: 900px) {
  html {
    scroll-padding-top: 90px;
  }

  .site-header {
    min-height: 74px;
    padding-right: 22px;
    padding-left: 22px;
  }

  .brand img {
    width: 52px;
    height: 52px;
  }

  .site-header nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .brand span {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 54px;
  }

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

  .hero-visual {
    min-height: 610px;
  }

  .focus-banner {
    grid-template-columns: 1fr;
  }

  .focus-banner a {
    grid-column: auto;
  }

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

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

  .practice-card {
    min-height: 380px;
  }

  .first-steps,
  .eligibility,
  .about,
  .faq {
    grid-template-columns: 1fr;
  }

  .steps-copy,
  .eligibility-intro {
    position: static;
  }

  .eligibility {
    gap: 46px;
  }

  .about {
    gap: 50px;
  }

  .about-photo {
    min-height: 620px;
  }

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

  .faq {
    gap: 48px;
  }

  .contact-card {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 72px;
    font-size: 16px;
  }

  .preview-notice {
    justify-content: space-between;
    padding-right: 16px;
    padding-left: 16px;
    font-size: 11px;
  }

  .site-header {
    min-height: 70px;
    padding: 8px 16px;
  }

  .brand {
    gap: 9px;
  }

  .brand img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand small {
    font-size: 10px;
  }

  .header-call {
    width: 42px;
    height: 42px;
  }

  .header-call svg {
    width: 42px;
    height: 42px;
  }

  .header-call span {
    display: none;
  }

  .hero,
  .focus-banner,
  .section {
    width: min(100% - 32px, var(--max));
  }

  .hero {
    gap: 38px;
    padding: 44px 0 38px;
  }

  .eyebrow {
    gap: 9px;
    margin-bottom: 17px;
    font-size: 11px;
    letter-spacing: .06em;
  }

  .eyebrow span {
    width: 26px;
  }

  .hero h1 {
    font-size: clamp(40px, 12.5vw, 55px);
    line-height: 1.03;
  }

  .hero-lead {
    margin-top: 21px;
    font-size: 17px;
    line-height: 1.72;
  }

  .hero-actions {
    display: grid;
    margin-top: 26px;
  }

  .button {
    width: 100%;
    min-height: 54px;
    padding-right: 17px;
    padding-left: 17px;
    font-size: 14px;
  }

  .hero-assurances {
    display: grid;
    gap: 9px;
    margin-top: 24px;
  }

  .hero-visual {
    min-height: 470px;
  }

  .portrait-frame {
    border-radius: 26px 26px 8px 26px;
  }

  .portrait-frame img {
    object-position: 50% 12%;
  }

  .portrait-card {
    right: 16px;
    bottom: 16px;
    min-width: 175px;
    padding: 13px 16px;
  }

  .portrait-card strong {
    font-size: 16px;
  }

  .focus-banner {
    gap: 18px;
    padding: 24px;
    border-radius: 18px;
  }

  .focus-banner div strong {
    font-size: 24px;
  }

  .focus-banner p {
    font-size: 14px;
  }

  .focus-banner a {
    width: 100%;
    justify-content: center;
  }

  .section {
    padding: 80px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .about h2,
  .faq h2,
  .eligibility h2,
  .contact-card h2 {
    font-size: clamp(36px, 11vw, 49px);
  }

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

  .practice-grid {
    gap: 14px;
  }

  .practice-card {
    min-height: 0;
    padding: 25px;
  }

  .card-number {
    margin-bottom: 24px;
  }

  .card-kicker {
    margin-top: 0;
  }

  .practice-card h3 {
    font-size: 28px;
  }

  .first-steps,
  .faq {
    width: 100%;
    padding: 80px 16px;
  }

  .first-steps {
    gap: 46px;
  }

  .steps-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .steps-list li {
    grid-template-columns: 42px 1fr;
    gap: 15px;
    padding: 25px 0;
  }

  .steps-list h3 {
    font-size: 20px;
  }

  .eligibility {
    gap: 35px;
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .eligibility-intro > p:not(.eyebrow) {
    font-size: 16px;
  }

  .quiz-shell {
    min-height: 0;
    padding: 24px 18px;
    border-radius: 24px;
  }

  .progress-track {
    margin-bottom: 28px;
  }

  .quiz-step legend {
    font-size: 27px;
  }

  .choice-grid,
  .choice-grid.compact,
  .choice-grid.body-grid {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .choice span {
    min-height: 56px;
  }

  .contact-fields {
    grid-template-columns: 1fr;
  }

  .contact-fields label:last-child {
    grid-column: auto;
  }

  .quiz-actions {
    flex-wrap: wrap;
  }

  .quiz-actions button {
    min-height: 50px;
  }

  .quiz-next,
  .quiz-submit {
    flex: 1;
  }

  .delivery-panel {
    min-height: 500px;
  }

  .delivery-actions {
    width: 100%;
  }

  .about {
    gap: 42px;
    padding-top: 50px;
  }

  .about-photo {
    min-height: 500px;
    border-radius: 26px 26px 26px 8px;
  }

  .about-copy .lead {
    font-size: 18px;
  }

  .secondary-practice {
    padding-top: 25px;
  }

  .secondary-grid article {
    grid-template-columns: 42px 1fr;
    gap: 14px;
    padding: 24px 20px;
  }

  .secondary-grid h3 {
    font-size: 21px;
  }

  .faq {
    gap: 40px;
  }

  .faq summary {
    font-size: 16px;
  }

  .contact-section {
    padding: 70px 16px;
  }

  .contact-card {
    gap: 34px;
    padding: 32px 22px;
    border-radius: 25px;
  }

  .office-details > * {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .office-details strong {
    text-align: right;
  }

  .site-footer {
    padding: 48px 16px 24px;
  }

  .footer-main {
    gap: 20px;
  }

  .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-contact-bar {
    position: fixed;
    z-index: 200;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: grid;
    grid-template-columns: .7fr .9fr 1.35fr;
    gap: 5px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 16px;
    background: rgba(6, 20, 38, .94);
    color: var(--white);
    box-shadow: 0 18px 45px rgba(6, 20, 38, .3);
    backdrop-filter: blur(16px);
  }

  .mobile-contact-bar a {
    display: flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 11px;
    font-size: 11px;
    font-weight: 800;
    flex-direction: column;
  }

  .mobile-contact-bar svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
  }

  .mobile-contact-bar a:first-child svg {
    fill: currentColor;
    stroke: none;
  }

  .mobile-contact-bar .mobile-primary {
    background: var(--blue-600);
  }
}

@media (max-width: 380px) {
  .brand span {
    display: none;
  }

  .hero h1 {
    font-size: 39px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .quiz-shell {
    padding-right: 15px;
    padding-left: 15px;
  }

  .quiz-step legend {
    font-size: 25px;
  }
}

.accessibility-widget {
  position: fixed;
  z-index: 450;
  right: 22px;
  bottom: 22px;
}

.accessibility-button {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--blue-600);
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(6, 20, 38, .3);
  font-size: 29px;
}

.accessibility-button:focus-visible,
.accessibility-close:focus-visible {
  outline: 3px solid #ffca3a;
  outline-offset: 3px;
}

.accessibility-panel {
  position: absolute;
  right: 0;
  bottom: 72px;
  width: min(380px, calc(100vw - 32px));
  max-height: min(680px, calc(100vh - 120px));
  overflow-y: auto;
  padding: 24px;
  border: 1px solid #cfdae7;
  border-radius: 18px;
  background: var(--white);
  color: var(--navy-900);
  box-shadow: 0 22px 60px rgba(6, 20, 38, .25);
}

.accessibility-panel strong {
  display: block;
  padding-left: 28px;
  font-size: 20px;
}

.accessibility-panel p {
  margin: 10px 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.accessibility-panel a {
  display: block;
  margin-top: 6px;
  color: var(--blue-600);
  font-weight: 800;
}

.accessibility-intro {
  padding-bottom: 14px;
  border-bottom: 1px solid #dbe4ed;
}

.accessibility-text-controls {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-top: 15px;
}

.accessibility-text-controls button,
.accessibility-options button,
.accessibility-reset {
  min-height: 46px;
  border: 1px solid #cbd8e5;
  border-radius: 10px;
  background: var(--white);
  color: var(--navy-900);
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
}

.accessibility-text-controls button[aria-pressed="true"],
.accessibility-options button[aria-pressed="true"] {
  border-color: var(--blue-600);
  background: #eaf2ff;
  color: #0d55be;
  box-shadow: inset 0 0 0 1px var(--blue-600);
}

.accessibility-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
}

.accessibility-options button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 10px;
  text-align: right;
}

.accessibility-options button span {
  width: 22px;
  color: var(--blue-600);
  font-size: 18px;
  text-align: center;
}

.accessibility-reset {
  width: 100%;
  margin-top: 12px;
  border-color: #aebdcb;
  background: #f4f7fa;
}

.accessibility-help {
  margin-top: 15px;
  padding-top: 14px;
  border-top: 1px solid #dbe4ed;
  color: var(--muted);
  font-size: 13px;
}

.accessibility-help span {
  display: block;
  margin-bottom: 6px;
}

.accessibility-close {
  position: absolute;
  top: 13px;
  left: 13px;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: #edf3f9;
  color: var(--navy-900);
  cursor: pointer;
  font-size: 23px;
  line-height: 1;
}

@media (max-width: 720px) {
  .accessibility-widget {
    right: 14px;
    bottom: 88px;
  }

  .accessibility-button {
    width: 52px;
    height: 52px;
    font-size: 26px;
  }

  .accessibility-panel {
    max-height: calc(100vh - 170px);
  }
}

html.a11y-text-large {
  zoom: 1.1;
}

html.a11y-text-xlarge {
  zoom: 1.22;
}

html.a11y-high-contrast body {
  filter: contrast(1.4);
}

html.a11y-grayscale body {
  filter: grayscale(1);
}

html.a11y-high-contrast.a11y-grayscale body {
  filter: grayscale(1) contrast(1.4);
}

html.a11y-highlight-links a {
  outline: 2px solid #ffb703;
  outline-offset: 2px;
  text-decoration: underline !important;
  text-decoration-thickness: 2px !important;
}

html.a11y-readable-font body,
html.a11y-readable-font button,
html.a11y-readable-font input {
  font-family: Arial, sans-serif !important;
  letter-spacing: .035em;
  line-height: 1.7;
}

html.a11y-large-cursor,
html.a11y-large-cursor * {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36' viewBox='0 0 36 36'%3E%3Cpath d='M4 2v27l7-7 5 11 6-3-5-10h10z' fill='%23000' stroke='%23fff' stroke-width='2'/%3E%3C/svg%3E") 4 2, auto !important;
}

html.a11y-reduce-motion,
html.a11y-reduce-motion * {
  scroll-behavior: auto !important;
  animation: none !important;
  transition: none !important;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
