* { box-sizing: border-box; }

:root {
  --page: #f7f6f8;
  --ink: #2f2b3d;
  --muted: #6f697d;
  --line: #dedbe4;
  --success: #1f7455;
  --danger: #a32f28;
  --shadow: 0 1.5rem 4rem rgba(34, 29, 49, .14);
  --field-bg: #fbfafc;
  --field-hover: #f6f4f8;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --radius-sm: .75rem;
  --radius-md: 1.25rem;
  --radius-lg: 2rem;
  --container: 78rem;
}

html { scroll-behavior: smooth; }
body { margin: 0; background: var(--page); color: var(--ink); font-family: var(--fl-font-ui); line-height: 1.55; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }
button { cursor: pointer; }

.skip-link { position: fixed; z-index: 100; top: .75rem; left: .75rem; padding: .75rem 1rem; background: #fff; color: var(--fl-violet-700); border-radius: .5rem; transform: translateY(-200%); }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid #ffb48a; outline-offset: 3px; }

.site-header { height: 5.5rem; max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; display: flex; align-items: center; justify-content: space-between; }
.brand { display: block; width: 10.25rem; height: 5rem; overflow: hidden; }
.brand img { width: 100%; height: 100%; object-fit: contain; }
.header-cta { display: inline-flex; min-height: 2.75rem; align-items: center; padding: 0 1.1rem; border: 1px solid var(--fl-violet-500); border-radius: 999px; color: var(--fl-violet-700); font-weight: 700; text-decoration: none; transition: color .18s ease, background .18s ease, transform .18s ease; }
.header-cta:hover { background: var(--fl-violet-700); color: #fff; transform: translateY(-1px); }

.hero { position: relative; overflow: hidden; display: grid; gap: 2rem; padding: clamp(3rem, 8vw, 7rem) max(1.25rem, calc((100vw - var(--container)) / 2)); background: var(--fl-violet-700); color: #fff; }
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: .45rem; background: linear-gradient(90deg, var(--fl-orange-500) 0 33%, var(--fl-orange-300) 33% 66%, var(--fl-orange-400) 66%); }
.hero-copy { position: relative; z-index: 1; align-self: center; max-width: 42rem; }
.experience-ready .hero-copy > * { animation: hero-enter .64s both cubic-bezier(.2,.8,.2,1); }
.experience-ready .hero-copy > *:nth-child(2) { animation-delay: .06s; }
.experience-ready .hero-copy > *:nth-child(3) { animation-delay: .12s; }
.experience-ready .hero-copy > *:nth-child(4) { animation-delay: .18s; }
.experience-ready .hero-copy > *:nth-child(5) { animation-delay: .24s; }
.eyebrow, .form-kicker { margin: 0 0 .9rem; color: #ffb38c; font-size: .76rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow--dark { color: #9a361e; }
.hero h1 { margin: 0; font-family: var(--fl-font-brand); font-size: clamp(2.65rem, 8vw, 6rem); line-height: .98; letter-spacing: -.045em; text-wrap: balance; }
.hero h1 em { color: #ff8750; font-style: normal; }
.hero-lede { max-width: 39rem; margin: 1.5rem 0 1.75rem; color: #e5e2ea; font-size: clamp(1.05rem, 2vw, 1.3rem); }
.primary-cta, .button-submit { display: inline-flex; min-height: 3.5rem; align-items: center; justify-content: center; border: 0; border-radius: 999px; padding: .8rem 1.5rem; background: var(--fl-orange-500); color: #fff; font-size: 1.2rem; font-weight: 800; text-decoration: none; box-shadow: 0 .6rem 1.5rem rgba(0, 0, 0, .18); transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.primary-cta:hover, .button-submit:hover { background: #d84217; transform: translateY(-2px); }
.primary-cta.is-pressed, .button.is-pressed, .header-cta.is-pressed { transform: translateY(1px) scale(.98); }
.trust-list { display: flex; flex-wrap: wrap; gap: .7rem 1.4rem; margin: 1.7rem 0 0; padding: 0; color: #d8d4df; font-size: .9rem; list-style: none; }
.trust-list li::before { content: "✓"; margin-right: .45rem; color: #ff8750; font-weight: 900; }

.hero-shape { position: absolute; top: 3rem; right: 42%; width: 17rem; height: 19rem; opacity: .14; transform: rotate(-8deg); }
.hero-shape span { position: absolute; border-radius: 1.4rem; background: #fff; }
.hero-shape span:nth-child(1) { width: 8rem; height: 3.6rem; left: 0; top: 0; }
.hero-shape span:nth-child(2) { width: 8rem; height: 3.6rem; left: 0; top: 4.25rem; }
.hero-shape span:nth-child(3) { width: 3.7rem; height: 5.2rem; left: 0; bottom: 0; }
.hero-shape span:nth-child(4) { width: 3.7rem; height: 14.7rem; right: 0; top: 0; background: var(--fl-orange-300); }
.hero-shape span:nth-child(5) { width: 8rem; height: 3.7rem; right: 0; bottom: 0; background: var(--fl-orange-500); }
.experience-ready .hero-shape span { animation: block-breathe 5.5s ease-in-out infinite alternate; transform-origin: center; }
.experience-ready .hero-shape span:nth-child(2) { animation-delay: -.8s; }
.experience-ready .hero-shape span:nth-child(3) { animation-delay: -1.6s; }
.experience-ready .hero-shape span:nth-child(4) { animation-delay: -2.4s; }
.experience-ready .hero-shape span:nth-child(5) { animation-delay: -3.2s; }

.lead-card { position: relative; z-index: 2; scroll-margin-top: 1rem; overflow: hidden; padding: clamp(1.25rem, 4vw, 2rem); background: #fff; color: var(--ink); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.lead-card::before { content: ""; position: absolute; inset: 0 0 auto; height: .3rem; background: linear-gradient(90deg, var(--fl-violet-500) 0 70%, var(--fl-orange-500) 70% 82%, var(--fl-orange-300) 82% 91%, var(--fl-orange-400) 91%); }
.experience-ready .lead-card { animation: card-enter .72s .12s both cubic-bezier(.2,.8,.2,1); }
.form-heading h2 { margin: 0; font-family: var(--fl-font-brand); font-size: clamp(1.65rem, 4vw, 2.25rem); line-height: 1.1; }
.form-heading > p:not(.form-kicker) { margin: .55rem 0 0; color: var(--muted); }
.form-assurances { display: flex; flex-wrap: wrap; gap: .35rem .8rem; margin: .85rem 0 0; padding: 0; color: var(--muted); font-size: .74rem; list-style: none; }
.form-assurances li::before { content: "✓"; margin-right: .3rem; color: var(--success); font-weight: 900; }
.form-kicker { color: #9a361e; }
.progress { display: grid; gap: .5rem; margin: 1.5rem 0 1.75rem; }
.progress-label { font-size: .8rem; font-weight: 800; color: var(--fl-violet-500); }
.progress-track { height: .42rem; overflow: hidden; background: #ebe9ef; border-radius: 999px; }
.progress-track span { position: relative; display: block; width: 20%; height: 100%; overflow: hidden; background: var(--fl-orange-500); transition: width .45s var(--ease-out); }
.progress-track span::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(255,255,255,.62), transparent); transform: translateX(-110%); }
.experience-ready .progress-track span::after { animation: progress-sheen .75s .12s var(--ease-out); }
.form-alert { margin-bottom: 1rem; padding: .8rem 1rem; color: var(--danger); background: #fff0ef; border: 1px solid #efb6b1; border-radius: var(--radius-sm); }
.form-step { min-width: 0; margin: 0; padding: 0; border: 0; }
.js .form-step:not(.is-active) { display: none; }
.js .form-step.is-active { animation: step-forward .38s both var(--ease-out); }
.js form[data-direction="backward"] .form-step.is-active { animation-name: step-backward; }
.form-step legend { width: 100%; padding: 0; font-family: var(--fl-font-brand); font-size: 1.4rem; font-weight: 800; line-height: 1.18; }
.field-help { margin: .35rem 0 1rem; color: var(--muted); font-size: .92rem; }
.choice-grid { display: grid; gap: .55rem; }
.choice { position: relative; display: block; cursor: pointer; }
.choice input { position: absolute; inset: 0 auto auto 0; width: 1px; height: 1px; opacity: 0; }
.choice span { display: flex; min-height: 3.5rem; flex-direction: column; justify-content: center; padding: .78rem 1rem .78rem 2.9rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--field-bg); transition: border-color .2s ease, background .2s ease, transform .2s var(--ease-out), box-shadow .2s ease; }
.choice:hover span { border-color: #8e879b; background: #fff; transform: translateY(-2px); box-shadow: 0 .45rem 1.1rem rgba(62,58,78,.08); }
.choice span::before { content: ""; position: absolute; left: 1rem; top: 50%; width: 1.05rem; height: 1.05rem; border: 2px solid #928c9f; border-radius: 50%; transform: translateY(-50%) scale(1); transition: border-width .18s ease, border-color .18s ease, transform .24s var(--ease-out); }
.choice input:checked + span { border-color: var(--fl-violet-500); background: #f1eff5; box-shadow: inset 0 0 0 1px var(--fl-violet-500), 0 .5rem 1.2rem rgba(62,58,78,.08); transform: translateY(-1px); }
.choice input:checked + span::before { border: .34rem solid var(--fl-violet-700); background: #fff; transform: translateY(-50%) scale(1.08); }
.choice input:focus-visible + span { outline: 3px solid #ffb48a; outline-offset: 2px; }
.choice small { margin-top: .1rem; color: var(--muted); line-height: 1.3; }
.field, .field-group { margin-top: 1rem; }
.field label, .group-label { display: block; margin-bottom: .42rem; color: var(--fl-violet-700); font-size: .84rem; font-weight: 800; transition: color .18s ease, transform .18s var(--ease-out); }
.field:focus-within label { color: var(--fl-orange-500); transform: translateX(.12rem); }
.field > input, .field > select, .field > textarea, .money-field { width: 100%; min-height: 3.25rem; border: 1px solid #b9b4c3; border-radius: var(--radius-sm); background-color: var(--field-bg); transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease, transform .2s var(--ease-out); }
.field > input, .field > select, .field > textarea { padding: .76rem .9rem; color: var(--ink); font: inherit; }
.field > input:hover, .field > select:hover, .field > textarea:hover { border-color: #898297; background-color: #fff; }
.field > select { appearance: none; padding-right: 2.6rem; background-image: linear-gradient(45deg,transparent 50%,#504b62 50%),linear-gradient(135deg,#504b62 50%,transparent 50%); background-position: calc(100% - 1.15rem) 50%,calc(100% - .85rem) 50%; background-size: .35rem .35rem,.35rem .35rem; background-repeat: no-repeat; }
.field > select:disabled { cursor: not-allowed; border-color: #d2ced8; background-color: #ebe9ef; background-image: none; color: #777181; opacity: 1; }
.field > select[aria-busy="true"] { background-color: #fffaf6; border-color: var(--fl-orange-500); }
.field > textarea { min-height: 5.5rem; overflow-y: hidden; resize: vertical; line-height: 1.45; }
.field > input:focus, .field > select:focus, .field > textarea:focus, .money-field:focus-within { border-color: var(--fl-violet-700); background-color: #fff; box-shadow: 0 0 0 3px rgba(80,75,98,.15), 0 .55rem 1.25rem rgba(62,58,78,.07); outline: none; transform: translateY(-1px); }
.money-field { display: flex; align-items: center; overflow: hidden; }
.money-field > span { padding-left: .9rem; color: var(--muted); font-weight: 800; }
.money-field input { min-width: 0; width: 100%; min-height: 3rem; padding: .65rem .9rem .65rem .35rem; border: 0; outline: 0; }
.field-error { min-height: 1.1rem; margin: .3rem 0 0; color: var(--danger); font-size: .78rem; font-weight: 650; }
.field-error:not(:empty) { animation: error-enter .28s var(--ease-out); }
.field-help--compact { margin: .42rem 0 0; font-size: .76rem; }
.optional { color: var(--muted); font-size: .72rem; font-weight: 600; }

.location-panel { position: relative; display: grid; gap: .9rem; margin-top: 1.25rem; overflow: hidden; padding: clamp(1rem, 3vw, 1.3rem); border-radius: 1rem; background: #f7f6f9; box-shadow: inset 0 0 0 1px #d9d5df; }
.location-panel::before { content: ""; position: absolute; inset: 0 0 auto; height: .22rem; background: linear-gradient(90deg, var(--fl-violet-500) 0 72%, var(--fl-orange-500) 72%); }
.location-heading { padding: .25rem 0 .85rem; border-bottom: 1px solid #d9d5df; }
.location-heading h3 { margin: 0 0 .3rem; font-family: var(--fl-font-brand); font-size: 1.08rem; color: var(--fl-violet-700); }
.location-heading p { max-width: 48ch; margin: 0; color: #635d71; font-size: .8rem; line-height: 1.5; }
.location-grid { display: grid; gap: .15rem .85rem; }
.location-status { margin: 0; padding: .65rem .8rem; border-left: .2rem solid var(--fl-orange-500); border-radius: .2rem .65rem .65rem .2rem; background: #fff; color: #635d71; font-size: .76rem; line-height: 1.45; animation: field-reveal .28s var(--ease-out) both; }
.location-details { overflow: hidden; border-top: 1px solid #d8d3df; border-bottom: 1px solid #d8d3df; }
.location-details summary { display: grid; grid-template-columns: 1fr auto; min-height: 3rem; align-items: center; gap: .65rem; padding: .72rem .15rem; cursor: pointer; color: var(--fl-violet-700); font-size: .82rem; font-weight: 800; list-style: none; transition: color .18s ease, padding .18s var(--ease-out); }
.location-details summary::-webkit-details-marker { display: none; }
.location-details summary::after { content: "Mostrar"; color: var(--fl-orange-500); font-size: .7rem; font-weight: 800; }
.location-details[open] summary::after { content: "Ocultar"; }
.location-details summary:hover { color: var(--fl-orange-500); padding-left: .25rem; }
.location-details summary span { color: var(--muted); font-size: .7rem; }
.location-details[open] { padding-bottom: .2rem; }
.location-details[open] .field { animation: field-reveal .36s var(--ease-out) both; }
.address-builder { display: grid; gap: .15rem; padding: .9rem; border-radius: .85rem; background: #fff; box-shadow: inset 0 0 0 1px #ded9e4; }
.address-builder h4 { margin: 0 0 .1rem; color: var(--fl-violet-700); font-family: var(--fl-font-brand); font-size: .94rem; }
#neighborhood-other-field:not([hidden]) { animation: field-reveal .32s var(--ease-out) both; }

@media (min-width: 22rem) {
  .property-types { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 42rem) {
  .location-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
[aria-invalid="true"] + span, input[aria-invalid="true"], select[aria-invalid="true"], textarea[aria-invalid="true"] { border-color: var(--danger); background-color: #fff8f7; }
.consent { display: grid; grid-template-columns: 1.35rem 1fr; gap: .65rem; align-items: start; margin-top: .85rem; color: #555062; font-size: .78rem; cursor: pointer; }
.consent input { width: 1.15rem; height: 1.15rem; margin: .12rem 0 0; accent-color: var(--fl-violet-700); }
.consent a { font-weight: 800; text-underline-offset: 2px; }
.step-actions { display: flex; gap: .65rem; justify-content: flex-end; margin-top: 1.1rem; }
.button { min-height: 3rem; border-radius: 999px; padding: .65rem 1.2rem; font-weight: 800; transition: transform .18s var(--ease-out), box-shadow .18s ease, background .18s ease; }
.button-next { border: 0; background: var(--fl-violet-700); color: #fff; box-shadow: 0 .5rem 1.1rem rgba(62,58,78,.16); }
.button-next:hover { transform: translateY(-2px); box-shadow: 0 .75rem 1.35rem rgba(62,58,78,.22); }
.button-back { border: 1px solid #bdb8c6; background: #fff; color: var(--fl-violet-700); }
.button-back:hover { background: var(--field-hover); transform: translateY(-1px); }
.button-submit { flex: 1; min-height: 3.25rem; }
.button:disabled { cursor: wait; opacity: .65; transform: none; }
.button-submit[aria-busy="true"]::before { content: ""; width: .9rem; height: .9rem; margin-right: .55rem; border: 2px solid rgba(255,255,255,.45); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; }
.secure-note { display: flex; align-items: center; justify-content: center; gap: .45rem; margin: .8rem 0 0; text-align: center; color: var(--muted); font-size: .75rem; }
.secure-note::before { content: ""; width: .55rem; height: .55rem; flex: 0 0 auto; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 .22rem rgba(31,116,85,.12); }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.success-state { padding: 2rem .5rem; text-align: center; }
.success-mark { display: grid; width: 4rem; height: 4rem; margin: 0 auto 1.2rem; place-items: center; border-radius: 1.2rem; background: #e4f4ec; color: var(--success); font-size: 2rem; font-weight: 900; }
.success-state:not([hidden]) .success-mark { animation: success-pop .5s both cubic-bezier(.2,.9,.3,1.25); }
.success-state h2 { margin: 0; font-family: var(--fl-font-brand); font-size: 2.2rem; }
.reference { color: var(--muted); font-size: .86rem; }

.promise, .process, .trust, .faq { max-width: var(--container); margin: 0 auto; padding: clamp(4rem, 9vw, 8rem) 1.25rem; }
.section-intro { max-width: 49rem; }
.section-intro h2, .process h2, .trust h2, .faq h2, .final-cta h2 { margin: 0; font-family: var(--fl-font-brand); font-size: clamp(2.15rem, 5.5vw, 4.5rem); line-height: 1.04; letter-spacing: -.035em; text-wrap: balance; }
.benefit-list { display: grid; gap: 1px; margin-top: 3rem; background: var(--line); border: 1px solid var(--line); }
.benefit-list article { padding: 2rem; background: var(--page); }
.benefit-list span { color: var(--fl-orange-500); font-size: .78rem; font-weight: 900; letter-spacing: .1em; }
.benefit-list h3 { margin: 2rem 0 .55rem; font-family: var(--fl-font-brand); font-size: 1.5rem; }
.benefit-list p { margin: 0; color: var(--muted); }

.process { display: grid; gap: 3rem; max-width: none; padding-right: max(1.25rem, calc((100vw - var(--container)) / 2)); padding-left: max(1.25rem, calc((100vw - var(--container)) / 2)); background: var(--fl-violet-500); color: #fff; }
.process-copy > p:not(.eyebrow) { max-width: 34rem; color: #e2dfe7; }
.text-link { display: inline-flex; min-height: 2.75rem; align-items: center; gap: .6rem; color: inherit; font-weight: 800; text-underline-offset: .3rem; }
.process-steps { margin: 0; padding: 0; list-style: none; }
.process-steps li { display: grid; grid-template-columns: 2.6rem 1fr; gap: 1rem; padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,.22); }
.process-steps li > span { display: grid; width: 2.4rem; height: 2.4rem; place-items: center; border-radius: .7rem; background: var(--fl-orange-500); font-weight: 900; }
.process-steps h3 { margin: 0 0 .3rem; font-size: 1.1rem; }
.process-steps p { margin: 0; color: #dedbe4; }

.trust { display: grid; gap: 2.5rem; align-items: center; }
.trust > div:last-child { max-width: 52rem; }
.trust > div:last-child > p:last-child { color: var(--muted); font-size: 1.03rem; }
.trust-seal { display: grid; width: min(17rem, 70vw); aspect-ratio: 1; margin: 0 auto; place-items: center; overflow: hidden; border: 1px solid var(--line); border-radius: 50%; background: #fff; box-shadow: 0 1.5rem 4rem rgba(62, 58, 78, .08); }
.trust-seal img { display: block; width: 100%; height: 100%; object-fit: contain; }

.faq { display: grid; gap: 2rem; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 1.35rem 2.5rem 1.35rem 0; cursor: pointer; font-family: var(--fl-font-brand); font-size: 1.1rem; font-weight: 800; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: .5rem; color: var(--fl-orange-500); font-size: 1.5rem; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: -.3rem 0 1.4rem; color: var(--muted); }
.faq-list details[open] p { animation: faq-enter .24s both ease-out; }

.final-cta { padding: clamp(4rem, 9vw, 7rem) 1.25rem; border-top: .45rem solid var(--fl-orange-500); background: var(--fl-violet-700); color: #fff; text-align: center; }
.final-cta .eyebrow { color: #fff; }
.final-cta h2 { max-width: 58rem; margin: 0 auto 2rem; }
.primary-cta--light { background: #fff; color: var(--fl-violet-700); box-shadow: none; }
.primary-cta--light:hover { background: var(--fl-violet-700); color: #fff; }

.site-footer { display: grid; gap: 1rem; padding: 2rem 1.25rem; background: #252131; color: #ccc7d3; font-size: .8rem; }
.site-footer img { width: 9rem; height: 4.5rem; object-fit: contain; }
.site-footer p { margin: .2rem 0; }
.footer-links { display: flex; gap: 1.25rem; }
.footer-links a, .footer-links button { min-height: 2.75rem; display: inline-flex; align-items: center; }
.footer-links button { padding: 0; border: 0; background: transparent; color: inherit; text-decoration: underline; cursor: pointer; }

.consent-banner { position: fixed; z-index: 80; right: 1rem; bottom: 1rem; left: 1rem; display: grid; gap: 1rem; max-width: 52rem; margin: 0 auto; padding: 1.15rem; border: 1px solid #d7d2dc; border-radius: 1.1rem; background: #fff; color: var(--ink); box-shadow: 0 1.5rem 4rem rgba(35,30,48,.24); }
.consent-banner[hidden] { display: none; }
.consent-banner .form-kicker { margin-bottom: .25rem; }
.consent-banner h2 { margin: 0; font-family: var(--fl-font-brand); font-size: 1.25rem; }
.consent-banner p:last-child { margin: .35rem 0 0; color: var(--muted); font-size: .82rem; }
.consent-actions { display: flex; flex-wrap: wrap; gap: .55rem; align-items: center; }
.consent-actions .button { flex: 1; white-space: nowrap; }
.consent-reject { border: 1px solid #aaa5b4; background: #fff; color: var(--fl-violet-700); }
.consent-accept { border: 0; background: var(--fl-violet-700); color: #fff; }

.legal-page { background: #fff; }
.legal-content { max-width: 52rem; margin: 0 auto; padding: clamp(3rem, 8vw, 7rem) 1.25rem; }
.legal-content h1 { margin: 0 0 1rem; font-family: var(--fl-font-brand); font-size: clamp(2.5rem, 7vw, 4.75rem); line-height: 1; }
.legal-content h2 { margin: 2.5rem 0 .5rem; font-family: var(--fl-font-brand); }
.legal-content p { color: #555062; }
.legal-updated { padding-bottom: 1.5rem; border-bottom: 1px solid var(--line); }
.legal-note { margin: 2rem 0; padding: 1.2rem; border-left: .3rem solid var(--fl-orange-500); background: #faf2ef; }

.experience-ready .reveal-item { opacity: 0; transform: translateY(1.5rem); transition: opacity .55s ease-out, transform .55s cubic-bezier(.2,.8,.2,1); }
.experience-ready .reveal-item.is-revealed { opacity: 1; transform: translateY(0); }
.experience-ready .process-steps li:nth-child(2) { transition-delay: .07s; }
.experience-ready .process-steps li:nth-child(3) { transition-delay: .14s; }

@keyframes hero-enter { from { opacity: 0; transform: translateY(1rem); } to { opacity: 1; transform: translateY(0); } }
@keyframes card-enter { from { opacity: 0; transform: translateY(1.25rem) scale(.985); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes block-breathe { from { transform: translateY(0); opacity: .82; } to { transform: translateY(-.4rem); opacity: 1; } }
@keyframes step-forward { from { opacity: 0; transform: translateX(1rem); } to { opacity: 1; transform: translateX(0); } }
@keyframes step-backward { from { opacity: 0; transform: translateX(-1rem); } to { opacity: 1; transform: translateX(0); } }
@keyframes progress-sheen { to { transform: translateX(110%); } }
@keyframes field-reveal { from { opacity: 0; transform: translateY(-.45rem); clip-path: inset(0 0 100%); } to { opacity: 1; transform: translateY(0); clip-path: inset(0); } }
@keyframes error-enter { from { opacity: 0; transform: translateY(-.25rem); } to { opacity: 1; transform: translateY(0); } }
@keyframes success-pop { 0% { opacity: 0; transform: scale(.72) rotate(-5deg); } 70% { transform: scale(1.06) rotate(1deg); } 100% { opacity: 1; transform: scale(1); } }
@keyframes faq-enter { from { opacity: 0; transform: translateY(-.35rem); } to { opacity: 1; transform: translateY(0); } }
@keyframes spin { to { transform: rotate(360deg); } }

@media (min-width: 42rem) {
  .choice-grid--two { grid-template-columns: repeat(2, 1fr); }
  .choice-grid--three { grid-template-columns: repeat(3, 1fr); }
  .address-builder { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: .8rem; }
  .address-builder h4 { grid-column: 1 / -1; }
  .benefit-list { grid-template-columns: repeat(3, 1fr); }
  .site-footer { grid-template-columns: auto 1fr auto; align-items: center; padding-right: max(1.25rem, calc((100vw - var(--container)) / 2)); padding-left: max(1.25rem, calc((100vw - var(--container)) / 2)); }
  .consent-banner { grid-template-columns: 1fr auto; align-items: center; padding: 1.25rem 1.4rem; }
}

@media (min-width: 64rem) {
  .hero { min-height: calc(100vh - 5.5rem); grid-template-columns: minmax(0, 1.06fr) minmax(27rem, .94fr); align-items: center; }
  .lead-card { max-width: 35rem; justify-self: end; }
  .process { grid-template-columns: .9fr 1.1fr; gap: 7rem; }
  .trust { grid-template-columns: .65fr 1.35fr; gap: 6rem; }
  .faq { grid-template-columns: .8fr 1.2fr; gap: 6rem; }
}

@media (max-width: 28rem) {
  .site-header { height: 4.75rem; }
  .brand { width: 8.5rem; height: 4.25rem; }
  .header-cta { max-width: 9.7rem; padding: .45rem .8rem; font-size: .74rem; line-height: 1.15; text-align: center; }
  .hero { padding-top: 2.5rem; }
  .step-actions { flex-wrap: wrap; }
  .button { flex: 1; }
}

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

@media (hover: none) {
  .choice:hover span, .primary-cta:hover, .button-submit:hover, .header-cta:hover { transform: none; }
}
