:root {
  --sage-900: #29483d;
  --sage-800: #365a4d;
  --sage-700: #456b5b;
  --sage-500: #779b8a;
  --sage-200: #dce8e0;
  --sage-100: #edf4ef;
  --rose-700: #a85f6b;
  --rose-500: #c8838e;
  --rose-200: #f0dadd;
  --rose-100: #faeff0;
  --gold-700: #a87925;
  --gold-500: #c69a43;
  --gold-200: #ead7a7;
  --cream: #fbf8f1;
  --white: #ffffff;
  --ink: #26332e;
  --muted: #66746e;
  --line: rgba(41, 72, 61, 0.14);
  --shadow: 0 24px 65px rgba(41, 72, 61, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: radial-gradient(rgba(69, 107, 91, 0.075) 0.75px, transparent 0.75px);
  background-size: 18px 18px;
}
a { color: inherit; }
button, input, textarea { font: inherit; }
button, summary, a { -webkit-tap-highlight-color: transparent; }
.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;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 200;
  background: var(--ink);
  color: white;
  padding: 12px 18px;
  border-radius: 10px;
}
.skip-link:focus { top: 16px; }

.site-header {
  width: min(1180px, calc(100% - 40px));
  height: 76px;
  margin: 14px auto 0;
  padding: 0 12px 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 14px;
  z-index: 100;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  background: rgba(251, 248, 241, 0.9);
  box-shadow: 0 8px 28px rgba(41, 72, 61, 0.08);
  backdrop-filter: blur(14px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--sage-800);
  text-decoration: none;
}
.brand-mark { width: 42px; height: 42px; }
.brand span { display: flex; flex-direction: column; line-height: 1.03; }
.brand strong { font-family: var(--serif); font-size: 1.22rem; font-weight: 500; }
.brand small { margin-top: 5px; color: var(--rose-700); font-size: .63rem; font-weight: 750; letter-spacing: .15em; text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  padding: 10px 13px;
  border-radius: 10px;
  color: #44534d;
  font-size: .89rem;
  font-weight: 650;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.nav a:hover, .nav a:focus-visible { background: var(--sage-100); color: var(--sage-900); outline: none; }
.nav .nav-cta { margin-left: 4px; padding-inline: 18px; background: var(--sage-800); color: white; }
.nav .nav-cta:hover, .nav .nav-cta:focus-visible { background: var(--sage-900); color: white; }
.nav-toggle { display: none; }

.section { scroll-margin-top: 100px; }
.hero {
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100vh - 90px);
  margin: 0 auto;
  padding: clamp(70px, 9vw, 122px) 0 80px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: clamp(36px, 7vw, 94px);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--rose-700);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow i { width: 22px; height: 1px; background: currentColor; }
.eyebrow.light { color: var(--gold-200); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 400; letter-spacing: -.035em; }
h1 { max-width: 760px; margin: 24px 0 24px; color: var(--sage-900); font-size: clamp(3rem, 5.9vw, 5.4rem); line-height: .98; }
h1 em { color: var(--rose-700); font-weight: 400; }
.hero-lead { max-width: 660px; margin-bottom: 34px; color: #52615b; font-size: clamp(1.05rem, 1.5vw, 1.22rem); line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 25px; flex-wrap: wrap; }
.button {
  min-height: 50px;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 12px;
  font-weight: 760;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .text-link:focus-visible { outline: 3px solid var(--gold-200); outline-offset: 3px; }
.button-primary { background: var(--sage-800); color: white; box-shadow: 0 14px 28px rgba(54, 90, 77, .2); }
.button-primary:hover { background: var(--sage-900); }
.text-link { color: var(--sage-800); font-weight: 740; text-underline-offset: 5px; }
.hero-facts { margin: 50px 0 0; padding: 26px 0 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; border-top: 1px solid var(--line); list-style: none; }
.hero-facts li { display: flex; flex-direction: column; gap: 4px; }
.hero-facts strong { color: var(--sage-900); font-size: .94rem; }
.hero-facts span { color: var(--muted); font-size: .76rem; }

.hero-visual { min-height: 540px; position: relative; display: grid; place-items: center; overflow: hidden; border-radius: var(--radius-lg); }
.family-card {
  width: min(410px, 86%);
  padding: 28px 32px 32px;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 160px 160px 32px 32px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.card-kicker { display: block; text-align: center; color: var(--gold-700); font-size: .67rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.family-card svg { width: 100%; height: auto; display: block; }
.family-card p { margin: -5px 0 0; color: var(--sage-800); font-family: var(--serif); font-size: 1.4rem; line-height: 1.35; text-align: center; }
.gold-line { fill: none; stroke: var(--gold-500); stroke-width: 4; stroke-linecap: round; }
.person { stroke: white; stroke-width: 4; }
.sage { fill: var(--sage-700); } .sage-soft { fill: var(--sage-200); }
.rose { fill: var(--rose-500); } .rose-soft { fill: var(--rose-200); }
.cream { fill: var(--gold-200); } .cream-soft { fill: #f5ead1; }
.heart-line { fill: var(--rose-100); stroke: var(--rose-700); stroke-width: 2.5; }
.orbit { position: absolute; border: 1px solid rgba(69,107,91,.17); border-radius: 50%; }
.orbit-one { width: 470px; height: 470px; }
.orbit-two { width: 550px; height: 550px; border-style: dashed; animation: orbit 40s linear infinite; }
.floating-note { position: absolute; z-index: 3; padding: 10px 16px; border-radius: 999px; box-shadow: 0 12px 30px rgba(41,72,61,.1); font-family: var(--serif); font-style: italic; }
.note-one { top: 23%; left: 0; background: var(--rose-100); color: var(--rose-700); }
.note-two { right: -2%; top: 41%; background: #f6ecd6; color: var(--gold-700); }
.note-three { bottom: 16%; left: 4%; background: var(--sage-100); color: var(--sage-800); }
@keyframes orbit { to { transform: rotate(360deg); } }

.program { padding: 112px max(20px, calc((100vw - 1180px) / 2)); background: var(--white); }
.section-heading { max-width: 850px; margin-bottom: 54px; }
.section-heading h2, .fit-copy h2, .faq h2 { margin: 16px 0 20px; color: var(--sage-900); font-size: clamp(2.35rem, 4vw, 4rem); line-height: 1.07; }
.section-heading p { max-width: 760px; margin: 0; color: var(--muted); font-size: 1.08rem; line-height: 1.75; }
.program-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { min-height: 400px; padding: 32px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fdfcf9; }
.feature-number { display: inline-grid; width: 42px; height: 42px; place-items: center; margin-bottom: 50px; border: 1px solid var(--sage-200); border-radius: 50%; color: var(--sage-700); font-size: .75rem; font-weight: 800; }
.feature-card h3 { color: var(--sage-900); font-family: var(--serif); font-size: 1.8rem; font-weight: 400; }
.feature-card p { color: var(--muted); }
.feature-card small { display: block; margin-top: 20px; color: var(--muted); font-size: .74rem; line-height: 1.5; }
.highlight-card { background: var(--rose-100); border-color: transparent; }
.highlight-card .feature-number { border-color: rgba(168,95,107,.3); color: var(--rose-700); }
.check-list { margin: 20px 0 0; padding: 0; list-style: none; }
.check-list li { margin: 12px 0; padding-left: 25px; position: relative; color: #47564f; font-size: .92rem; }
.check-list li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--gold-700); font-weight: 900; }
.mini-tags { margin-top: 44px; display: flex; gap: 8px; flex-wrap: wrap; }
.mini-tags span { padding: 8px 13px; border: 1px solid rgba(168,95,107,.22); border-radius: 999px; background: rgba(255,255,255,.6); color: var(--rose-700); font-size: .76rem; font-weight: 720; }

.journey { margin-top: 90px; padding: clamp(34px, 5vw, 70px); display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; border-radius: var(--radius-lg); background: var(--sage-900); color: white; overflow: hidden; position: relative; }
.journey::after { content: ''; position: absolute; width: 300px; height: 300px; right: -130px; bottom: -150px; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; box-shadow: 0 0 0 45px rgba(255,255,255,.025), 0 0 0 90px rgba(255,255,255,.02); }
.journey-intro, .meeting-detail { position: relative; z-index: 1; }
.journey h2 { margin: 18px 0 14px; font-size: clamp(2.3rem, 3.8vw, 3.7rem); line-height: 1.05; }
.journey-intro > p { color: #c7d7cf; }
.meeting-tabs { margin-top: 34px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.meeting-tab { aspect-ratio: 1; border: 1px solid rgba(255,255,255,.2); border-radius: 12px; background: transparent; color: #d6e2dc; font-weight: 800; cursor: pointer; transition: .2s; }
.meeting-tab:hover, .meeting-tab:focus-visible { border-color: var(--gold-200); color: white; outline: none; }
.meeting-tab[aria-selected="true"] { border-color: var(--gold-200); background: var(--gold-200); color: var(--sage-900); }
.meeting-detail { min-height: 410px; padding: clamp(30px, 4vw, 54px); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-md); background: rgba(255,255,255,.07); }
.meeting-detail:focus-visible { outline: 3px solid var(--gold-200); outline-offset: 4px; }
.meeting-detail .meeting-count { color: var(--gold-200); font-size: .75rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.meeting-detail h3 { margin: 22px 0 15px; color: white; font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3.15rem); font-weight: 400; line-height: 1.08; }
.meeting-detail > p { color: #d4e0da; font-size: 1.02rem; line-height: 1.7; }
.meeting-detail footer { margin-top: 32px; padding-top: 24px; display: flex; align-items: center; gap: 15px; border-top: 1px solid rgba(255,255,255,.15); }
.meeting-detail footer span { color: #adbfB6; font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; }
.meeting-detail footer strong { color: white; font-size: .9rem; }

.decision { padding: 112px max(20px, calc((100vw - 1180px) / 2)) 28px; }
.fit-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(40px, 7vw, 100px); align-items: start; }
.fit-copy { position: sticky; top: 120px; }
.fit-copy > p { color: var(--muted); font-size: 1.03rem; line-height: 1.7; }
.privacy-chip { margin-top: 25px; padding: 12px 15px; display: inline-flex; align-items: center; gap: 9px; border-radius: 10px; background: var(--sage-100); color: var(--sage-800); font-size: .78rem; font-weight: 680; }
.fit-card { padding: clamp(22px, 4vw, 40px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: white; box-shadow: 0 20px 50px rgba(41,72,61,.07); }
.fit-options { display: grid; gap: 10px; }
.fit-options label { padding: 17px 18px; display: flex; align-items: flex-start; gap: 13px; border: 1px solid var(--line); border-radius: var(--radius-sm); color: #47564f; cursor: pointer; transition: .2s; }
.fit-options label:hover { border-color: var(--sage-500); background: var(--sage-100); }
.fit-options label:has(input:checked) { border-color: var(--sage-700); background: var(--sage-100); color: var(--sage-900); }
.fit-options input { width: 19px; height: 19px; margin: 2px 0 0; accent-color: var(--sage-700); flex: 0 0 auto; }
.fit-result { margin-top: 22px; padding: 20px; display: flex; gap: 14px; border-radius: var(--radius-sm); background: var(--rose-100); color: var(--rose-700); }
.fit-result.strong { background: var(--sage-800); color: white; }
.fit-result.strong p { color: #d7e2dd; }
.result-icon { width: 34px; height: 34px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid currentColor; border-radius: 50%; }
.fit-result strong { display: block; margin-bottom: 3px; }
.fit-result p { margin: 0; color: #76545a; font-size: .83rem; }

.info-layout { margin-top: 110px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 20px; }
.investment { padding: clamp(32px, 5vw, 56px); border-radius: var(--radius-lg); background: var(--sage-800); color: white; }
.investment h2 { margin: 18px 0 36px; font-size: clamp(2.25rem, 3.8vw, 3.7rem); line-height: 1.06; }
.price-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.price-options > div { padding: 24px; position: relative; border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-md); background: rgba(255,255,255,.06); }
.price-options span, .price-options small { display: block; color: #cddbd4; font-size: .72rem; }
.price-options strong { display: block; margin: 8px 0; font-family: var(--serif); font-size: 2.45rem; font-weight: 400; white-space: nowrap; }
.price-options sup { margin-right: 5px; font-family: var(--sans); font-size: .78rem; font-weight: 700; }
.price-options .recommended { border-color: var(--gold-200); background: var(--cream); color: var(--sage-900); }
.price-options .recommended span, .price-options .recommended small { color: var(--muted); }
.price-options b { position: absolute; top: -10px; right: 16px; padding: 5px 9px; border-radius: 999px; background: var(--gold-500); color: white; font-size: .58rem; letter-spacing: .08em; text-transform: uppercase; }
.schedule-list { margin: 30px 0 0; padding: 0; list-style: none; }
.schedule-list li { padding: 14px 0; display: flex; justify-content: space-between; gap: 20px; border-bottom: 1px solid rgba(255,255,255,.12); }
.schedule-list span { color: #aebfb7; font-size: .78rem; }
.schedule-list strong { font-size: .83rem; text-align: right; }
.faq { padding: clamp(30px, 5vw, 50px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: white; }
.faq h2 { margin-bottom: 32px; }
.accordion details { border-top: 1px solid var(--line); }
.accordion details:last-child { border-bottom: 1px solid var(--line); }
.accordion summary { padding: 19px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; color: var(--sage-900); font-weight: 700; list-style: none; cursor: pointer; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { font-size: 1.35rem; font-weight: 300; transition: transform .2s; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { padding: 0 32px 20px 0; margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.65; }

.interest { margin-top: 22px; padding: clamp(36px, 6vw, 72px); display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(36px, 7vw, 90px); border-radius: var(--radius-lg); background: var(--rose-700); color: white; }
.interest-copy h2 { margin: 18px 0 22px; font-size: clamp(2.3rem, 4vw, 4rem); line-height: 1.06; }
.interest-copy > p { max-width: 510px; color: #fae5e8; line-height: 1.7; }
.professional { margin-top: 45px; display: flex; align-items: center; gap: 14px; }
.professional-monogram { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; font-family: var(--serif); }
.professional div:last-child { display: flex; flex-direction: column; }
.professional strong { font-size: .85rem; }
.professional span { color: #f1cfd4; font-size: .72rem; }
.interest-form { padding: clamp(24px, 4vw, 38px); border-radius: var(--radius-md); background: white; color: var(--ink); }
.field-row { display: grid; grid-template-columns: 1.25fr .75fr; gap: 13px; }
.interest-form label { margin-bottom: 15px; display: block; color: var(--sage-900); font-size: .75rem; font-weight: 740; }
.interest-form input:not([type="checkbox"]), .interest-form textarea { width: 100%; margin-top: 7px; padding: 13px 14px; border: 1px solid #cfdbd5; border-radius: 10px; background: #fbfcfb; color: var(--ink); outline: none; transition: .2s; }
.interest-form textarea { min-height: 100px; resize: vertical; }
.interest-form input:focus, .interest-form textarea:focus { border-color: var(--sage-700); box-shadow: 0 0 0 3px var(--sage-100); }
.interest-form .consent { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-size: .7rem; line-height: 1.5; font-weight: 500; cursor: pointer; }
.consent input { width: 17px; height: 17px; margin: 2px 0 0; accent-color: var(--sage-700); flex: 0 0 auto; }
.button-gold { width: 100%; background: var(--gold-500); color: #32250d; }
.button-gold:hover { background: #d6ad5d; }
.form-note { margin: 12px 0 0; color: var(--muted); font-size: .68rem; text-align: center; }
.form-feedback { margin-top: 15px; }
.feedback-card { padding: 18px; border: 1px solid var(--sage-200); border-radius: 12px; background: var(--sage-100); }
.feedback-card strong { display: block; color: var(--sage-900); }
.feedback-card p { margin: 5px 0 12px; color: var(--muted); font-size: .77rem; }
.feedback-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.feedback-actions button, .feedback-actions a { padding: 8px 11px; border: 1px solid var(--sage-700); border-radius: 8px; background: white; color: var(--sage-800); font-size: .72rem; font-weight: 720; text-decoration: none; cursor: pointer; }
.feedback-actions .whatsapp-action { border-color: var(--sage-800); background: var(--sage-800); color: white; }
.field-error { border-color: var(--rose-700) !important; box-shadow: 0 0 0 3px var(--rose-100) !important; }

footer { padding: 42px 4px 14px; display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 28px; color: var(--muted); font-size: .72rem; }
.footer-brand .brand-mark { width: 35px; height: 35px; }
footer p { margin: 0; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding-top: 80px; }
  .hero-copy { max-width: 820px; }
  .hero-visual { min-height: 500px; }
  .program-grid { grid-template-columns: 1fr 1fr; }
  .feature-card:last-child { grid-column: 1 / -1; min-height: auto; }
  .journey { grid-template-columns: 1fr; }
  .meeting-tabs { max-width: 390px; }
  .fit-layout { grid-template-columns: 1fr; }
  .fit-copy { position: static; }
  .info-layout, .interest { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr 1fr; }
  footer p { display: none; }
}

@media (max-width: 720px) {
  .site-header { width: calc(100% - 24px); height: 68px; top: 8px; margin-top: 8px; padding-left: 12px; border-radius: 15px; }
  .brand-mark { width: 36px; height: 36px; }
  .brand strong { font-size: 1.05rem; }
  .brand small { font-size: .55rem; }
  .nav-toggle { width: 44px; height: 44px; padding: 11px; display: flex; flex-direction: column; justify-content: center; gap: 5px; border: 0; border-radius: 10px; background: var(--sage-100); }
  .nav-toggle span:not(.sr-only) { width: 100%; height: 2px; display: block; background: var(--sage-800); transition: .2s; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav { padding: 10px; display: none; position: absolute; top: 74px; left: 0; right: 0; flex-direction: column; align-items: stretch; border: 1px solid var(--line); border-radius: 15px; background: var(--cream); box-shadow: var(--shadow); }
  .nav.open { display: flex; }
  .nav a { padding: 13px 14px; }
  .nav .nav-cta { margin: 4px 0 0; text-align: center; }
  .hero, .program, .decision { width: auto; padding-left: 20px; padding-right: 20px; }
  .hero { min-height: auto; padding-top: 66px; padding-bottom: 62px; }
  h1 { font-size: clamp(2.7rem, 14vw, 4.2rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 17px; }
  .text-link { text-align: center; }
  .hero-facts { grid-template-columns: 1fr; gap: 14px; }
  .hero-facts li { padding-left: 12px; border-left: 2px solid var(--gold-200); }
  .hero-visual { min-height: 390px; }
  .orbit-one { width: 330px; height: 330px; }
  .orbit-two { width: 390px; height: 390px; }
  .family-card { width: 86%; padding: 22px 22px 26px; }
  .family-card p { font-size: 1.12rem; }
  .floating-note { padding: 7px 12px; font-size: .78rem; }
  .note-one { left: -2%; }
  .note-two { right: -1%; }
  .program, .decision { padding-top: 80px; padding-bottom: 80px; }
  .program-grid { grid-template-columns: 1fr; }
  .feature-card, .feature-card:last-child { grid-column: auto; min-height: auto; padding: 26px; }
  .feature-number { margin-bottom: 30px; }
  .journey { margin-top: 60px; padding: 28px 20px; border-radius: 22px; gap: 30px; }
  .meeting-tabs { grid-template-columns: repeat(4, 1fr); }
  .meeting-detail { min-height: 390px; padding: 26px 22px; }
  .fit-card { padding: 17px; border-radius: 20px; }
  .fit-options label { padding: 15px 14px; font-size: .87rem; }
  .info-layout { margin-top: 70px; }
  .investment, .faq, .interest { padding: 28px 20px; border-radius: 22px; }
  .price-options { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .interest { margin-top: 16px; }
  footer { grid-template-columns: 1fr; gap: 15px; text-align: center; }
  footer .brand { justify-self: center; }
}

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