:root {
  --blue: #094689;
  --blue-dark: #062f60;
  --blue-deep: #041f41;
  --blue-soft: #eaf3ff;
  --yellow: #f5c744;
  --text: #15243a;
  --muted: #627086;
  --line: #dfe7f1;
  --soft: #f5f8fc;
  --white: #fff;
  --green: #17a768;
  --shadow: 0 24px 70px rgba(7, 45, 89, .14);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
body.no-scroll { overflow: hidden; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; left: 20px; top: -60px; z-index: 1000; background: #fff; padding: 10px 16px; border-radius: 8px; box-shadow: var(--shadow); }
.skip-link:focus { top: 20px; }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.9); backdrop-filter: blur(18px); border-bottom: 1px solid rgba(9,70,137,.08); }
.nav-wrap { min-height: 76px; display: flex; align-items: center; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 11px; margin-right: auto; }
.brand img { width: 202px; height: auto; }
.brand-product { color: var(--blue); font-weight: 900; letter-spacing: .13em; font-size: .72rem; border-left: 1px solid var(--line); padding: 6px 0 6px 12px; }
.desktop-nav { display: flex; align-items: center; gap: 28px; font-size: .92rem; font-weight: 650; color: #3a4d66; }
.desktop-nav a { transition: color .2s ease; }
.desktop-nav a:hover { color: var(--blue); }

.btn { border: 0; border-radius: 13px; min-height: 48px; padding: 0 22px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; font-weight: 800; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn:disabled { opacity: .65; cursor: wait; transform: none; }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--blue), #0d5daf); box-shadow: 0 14px 28px rgba(9,70,137,.24); }
.btn-primary:hover { box-shadow: 0 18px 34px rgba(9,70,137,.31); }
.btn-small { min-height: 43px; padding-inline: 19px; font-size: .9rem; }
.btn-large { min-height: 57px; padding-inline: 28px; border-radius: 15px; }
.btn-light { background: #fff; color: var(--blue); box-shadow: 0 16px 36px rgba(0,0,0,.13); }
.btn-ghost { background: #f1f5fa; color: var(--blue); box-shadow: none; }
.btn-whatsapp { background: #1dbf73; color: #fff; box-shadow: 0 15px 30px rgba(29,191,115,.22); }
.btn-block { width: 100%; }
.text-link { font-weight: 750; color: var(--blue); border-bottom: 1px solid rgba(9,70,137,.3); }

.hero { position: relative; overflow: hidden; padding: 96px 0 106px; background: radial-gradient(circle at 85% 10%, #eaf4ff 0, rgba(234,244,255,0) 38%), linear-gradient(180deg, #fff 0%, #f8fbff 100%); }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .32; background-image: linear-gradient(rgba(9,70,137,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(9,70,137,.06) 1px, transparent 1px); background-size: 42px 42px; mask-image: linear-gradient(to right, transparent, #000 25%, #000 75%, transparent); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 70px; }
.eyebrow, .section-kicker { display: inline-flex; align-items: center; gap: 9px; color: var(--blue); font-weight: 850; font-size: .75rem; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow span { width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 5px rgba(245,199,68,.18); }
.hero h1 { margin: 18px 0 20px; max-width: 700px; font-size: clamp(2.7rem, 5vw, 4.75rem); line-height: 1.06; letter-spacing: -.045em; }
.hero h1 em { color: var(--blue); font-style: normal; position: relative; white-space: nowrap; }
.hero h1 em::after { content: ""; position: absolute; left: 2%; right: 0; bottom: -8px; height: 9px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='12' viewBox='0 0 300 12'%3E%3Cpath d='M2 8C83 1 214 1 298 7' fill='none' stroke='%23f5c744' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E") center/100% 100% no-repeat; }
.hero-lead { max-width: 620px; margin: 0; color: var(--muted); font-size: 1.1rem; }
.hero-actions { display: flex; align-items: center; gap: 24px; margin-top: 34px; }
.trust-row { display: flex; align-items: stretch; gap: 0; margin-top: 43px; }
.trust-row div { display: flex; flex-direction: column; padding: 0 27px; border-right: 1px solid var(--line); }
.trust-row div:first-child { padding-left: 0; }
.trust-row div:last-child { border: 0; }
.trust-row strong { color: var(--blue); font-size: 1.3rem; line-height: 1.2; }
.trust-row span { color: var(--muted); font-size: .78rem; margin-top: 3px; }

.hero-visual { position: relative; min-height: 540px; display: grid; place-items: center; }
.visual-glow { position: absolute; width: 470px; height: 470px; border-radius: 50%; background: linear-gradient(145deg, #dbeeff, #edf6ff); box-shadow: inset 0 0 0 1px rgba(9,70,137,.08); }
.result-preview { width: min(420px, 88%); position: relative; z-index: 2; background: rgba(255,255,255,.96); border: 1px solid rgba(9,70,137,.1); padding: 25px; border-radius: 28px; box-shadow: 0 35px 80px rgba(7,45,89,.18); transform: rotate(1.5deg); }
.preview-top { display: flex; align-items: center; gap: 11px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.mini-logo { width: 39px; height: 39px; border-radius: 12px; display: grid; place-items: center; color: white; font-weight: 900; background: var(--blue); }
.preview-top div { display: flex; flex-direction: column; line-height: 1.25; }
.preview-top small { font-size: .62rem; letter-spacing: .12em; color: var(--muted); }
.preview-top strong { font-size: .9rem; }
.status-dot { margin-left: auto; font-size: .68rem; font-weight: 800; color: var(--green); background: #e9fbf3; border-radius: 30px; padding: 6px 10px; }
.score-ring { width: 122px; aspect-ratio: 1; margin: 24px auto 17px; border-radius: 50%; display: grid; place-items: center; background: conic-gradient(var(--blue) calc(var(--score) * 1%), #e6eef7 0); position: relative; }
.score-ring::after { content: ""; position: absolute; inset: 9px; background: #fff; border-radius: 50%; }
.score-ring div { z-index: 1; line-height: 1; }
.score-ring strong { font-size: 2rem; color: var(--blue); }
.score-ring span { font-size: .78rem; color: var(--muted); }
.preview-result { text-align: center; padding-bottom: 17px; }
.preview-result span { font-size: .7rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.preview-result h3 { margin: 3px 0 4px; color: var(--blue); font-size: 1.42rem; }
.preview-result p { font-size: .77rem; color: var(--muted); margin: 0 auto; max-width: 280px; line-height: 1.5; }
.preview-bars { display: grid; gap: 11px; background: var(--soft); border-radius: 16px; padding: 15px; }
.preview-bars div { display: grid; grid-template-columns: 112px 1fr; align-items: center; gap: 10px; }
.preview-bars span { font-size: .68rem; color: #52657e; }
.preview-bars i { height: 6px; background: #dce6f2; border-radius: 10px; overflow: hidden; }
.preview-bars b { display: block; height: 100%; background: var(--blue); border-radius: inherit; }
.floating-card { position: absolute; z-index: 3; display: flex; align-items: center; gap: 10px; background: #fff; padding: 12px 15px; border: 1px solid rgba(9,70,137,.1); border-radius: 15px; box-shadow: 0 15px 35px rgba(7,45,89,.14); animation: float 4s ease-in-out infinite; }
.floating-card > span { width: 33px; height: 33px; display: grid; place-items: center; border-radius: 10px; color: #fff; background: var(--blue); }
.floating-card div { display: flex; flex-direction: column; line-height: 1.25; }
.floating-card strong { font-size: .76rem; }
.floating-card small { font-size: .63rem; color: var(--muted); }
.card-left { left: -5px; top: 128px; }
.card-right { right: -10px; bottom: 100px; animation-delay: -1.5s; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(1px); }
.hero-orb-one { width: 65px; height: 65px; background: rgba(245,199,68,.28); left: 3%; top: 17%; }
.hero-orb-two { width: 25px; height: 25px; background: rgba(9,70,137,.15); left: 49%; bottom: 13%; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.social-proof { border-block: 1px solid var(--line); background: #fff; }
.proof-inner { min-height: 91px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.proof-inner > span { color: var(--muted); font-size: .84rem; }
.proof-tags { display: flex; gap: 28px; align-items: center; color: #4e6078; font-size: .88rem; }
.proof-tags b { position: relative; }
.proof-tags b:not(:last-child)::after { content: "•"; position: absolute; right: -17px; color: var(--yellow); }

.section { padding: 105px 0; }
.section-soft { background: var(--soft); }
.section-heading { max-width: 730px; margin: 0 auto 52px; text-align: center; }
.section-heading h2 { font-size: clamp(2rem, 4vw, 3.15rem); letter-spacing: -.035em; line-height: 1.15; margin: 12px 0 14px; }
.section-heading p { margin: 0; color: var(--muted); }
.section-heading.align-left { text-align: left; margin: 0; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step-card { position: relative; min-height: 275px; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; overflow: hidden; transition: transform .25s, box-shadow .25s; }
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.step-number { position: absolute; right: 25px; top: 19px; color: #dce6f1; font-size: 2.7rem; font-weight: 900; }
.step-icon { width: 52px; height: 52px; display: grid; place-items: center; color: var(--blue); background: var(--blue-soft); border-radius: 15px; font-size: 1.25rem; }
.step-card h3 { margin: 28px 0 9px; font-size: 1.28rem; }
.step-card p { margin: 0; color: var(--muted); font-size: .92rem; }

.program-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch; }
.program-card { position: relative; padding: 27px 24px; border: 1px solid var(--line); background: #fff; border-radius: 20px; transition: transform .25s, box-shadow .25s, border-color .25s; }
.program-card:hover { transform: translateY(-5px); border-color: rgba(9,70,137,.25); box-shadow: 0 20px 50px rgba(7,45,89,.10); }
.program-card.featured { border: 2px solid var(--blue); }
.popular { position: absolute; right: 17px; top: 17px; color: var(--blue); background: #eaf3ff; padding: 5px 8px; border-radius: 30px; font-size: .57rem; letter-spacing: .12em; font-weight: 900; }
.program-icon { width: 49px; height: 49px; border-radius: 14px; display: grid; place-items: center; background: var(--blue-soft); color: var(--blue); font-size: 1.15rem; }
.program-label { display: block; margin-top: 21px; color: var(--blue); font-size: .67rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 850; }
.program-card h3 { margin: 4px 0 10px; font-size: 1.25rem; }
.program-card p { color: var(--muted); font-size: .84rem; min-height: 82px; }
.program-card ul { list-style: none; padding: 15px 0 0; margin: 15px 0 0; border-top: 1px solid var(--line); display: grid; gap: 9px; }
.program-card li { font-size: .77rem; color: #465a72; padding-left: 18px; position: relative; }
.program-card li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }

.cta-section { padding: 0 0 105px; background: linear-gradient(to bottom, var(--soft) 0 50%, #fff 50%); }
.cta-box { position: relative; overflow: hidden; min-height: 325px; display: flex; align-items: center; justify-content: space-between; gap: 50px; padding: 55px 65px; color: #fff; background: linear-gradient(135deg, var(--blue-deep), var(--blue), #0d65b9); border-radius: 30px; box-shadow: 0 28px 70px rgba(9,70,137,.25); }
.cta-box::before { content: ""; position: absolute; width: 350px; height: 350px; right: -100px; top: -170px; border: 70px solid rgba(255,255,255,.07); border-radius: 50%; }
.cta-box > * { position: relative; z-index: 1; }
.section-kicker.light { color: #b9d8fb; }
.cta-box h2 { max-width: 680px; margin: 10px 0 10px; line-height: 1.12; font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -.035em; }
.cta-box p { color: #c9dcf1; margin: 0; max-width: 650px; }
.cta-box .btn { flex: 0 0 auto; }

.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; align-items: start; }
.accordion { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 23px 0; font-weight: 800; }
summary::-webkit-details-marker { display: none; }
summary span { font-size: 1.45rem; color: var(--blue); transition: transform .2s; }
details[open] summary span { transform: rotate(45deg); }
details p { color: var(--muted); font-size: .91rem; margin: -6px 30px 23px 0; }

.site-footer { padding: 70px 0 25px; background: #071b33; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 70px; }
.footer-brand img { width: 230px; filter: brightness(0) invert(1); opacity: .95; }
.footer-brand p { max-width: 430px; color: #aebcd0; font-size: .88rem; }
.footer-grid h3 { font-size: .83rem; text-transform: uppercase; letter-spacing: .1em; color: #c8d7e8; margin: 5px 0 16px; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; }
.footer-grid a { color: #aebcd0; font-size: .86rem; margin-bottom: 9px; }
.footer-grid a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.1); margin-top: 48px; padding-top: 23px; color: #8293a9; font-size: .75rem; }

.quiz-shell { position: fixed; inset: 0; z-index: 500; display: none; padding: 24px; }
.quiz-shell.open { display: grid; place-items: center; }
.quiz-backdrop { position: absolute; inset: 0; background: rgba(2,18,37,.72); backdrop-filter: blur(8px); animation: fadeIn .2s ease; }
.quiz-modal { width: min(820px, 100%); max-height: calc(100vh - 48px); overflow-y: auto; position: relative; z-index: 1; background: #fff; border-radius: 27px; box-shadow: 0 40px 100px rgba(0,0,0,.3); scrollbar-width: thin; animation: modalIn .3s ease; }
.quiz-close { position: absolute; z-index: 4; right: 18px; top: 17px; width: 39px; height: 39px; border: 0; border-radius: 50%; background: #edf3f9; color: #52647a; font-size: 1.4rem; line-height: 1; cursor: pointer; }
.quiz-screen { display: none; padding: 56px 65px; min-height: 560px; }
.quiz-screen.active { display: block; }
#quizIntro { text-align: center; padding-top: 72px; }
.quiz-intro-icon { width: 72px; height: 72px; display: grid; place-items: center; margin: 0 auto 22px; border-radius: 22px; background: var(--blue-soft); color: var(--blue); font-size: 1.8rem; }
.quiz-intro-icon.small { width: 53px; height: 53px; margin: 0; border-radius: 15px; font-size: 1.2rem; }
#quizIntro h2 { max-width: 600px; margin: 12px auto 12px; font-size: clamp(2rem, 5vw, 3rem); line-height: 1.13; letter-spacing: -.035em; }
#quizIntro > p { max-width: 590px; margin: 0 auto; color: var(--muted); }
.intro-points { display: flex; justify-content: center; flex-wrap: wrap; gap: 17px; margin: 29px 0; color: #42617f; font-size: .82rem; font-weight: 700; }
.intro-points span { background: var(--soft); border-radius: 30px; padding: 7px 12px; }
.quiz-progress-head { display: flex; justify-content: space-between; color: #6a788c; font-size: .75rem; font-weight: 750; padding-right: 45px; }
.progress-track { height: 7px; background: #e7edf4; border-radius: 20px; overflow: hidden; margin-top: 9px; }
.progress-track span { display: block; width: 12%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--blue), #2581d5); transition: width .35s ease; }
.question-wrap { padding: 39px 0 20px; }
.question-kicker { color: var(--blue); font-weight: 850; letter-spacing: .12em; font-size: .68rem; }
.question-wrap h2 { margin: 7px 0 6px; font-size: clamp(1.65rem, 4vw, 2.35rem); letter-spacing: -.025em; line-height: 1.2; }
.question-wrap > p { margin: 0 0 25px; color: var(--muted); font-size: .88rem; }
.answer-list { display: grid; gap: 11px; }
.answer-option { width: 100%; min-height: 77px; display: grid; grid-template-columns: 41px 1fr 32px; gap: 15px; align-items: center; text-align: left; border: 1.5px solid var(--line); background: #fff; border-radius: 15px; padding: 12px 15px; cursor: pointer; color: var(--text); transition: border-color .18s, background .18s, transform .18s; }
.answer-option:hover { border-color: rgba(9,70,137,.45); transform: translateX(3px); }
.answer-option.selected { border-color: var(--blue); background: #f3f8ff; }
.answer-letter { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 11px; background: #eef3f8; color: #5c6f85; font-weight: 850; }
.answer-option.selected .answer-letter { color: #fff; background: var(--blue); }
.answer-copy { display: flex; flex-direction: column; }
.answer-copy strong { font-size: .91rem; }
.answer-copy small { color: var(--muted); font-size: .74rem; margin-top: 2px; }
.answer-check { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; color: transparent; border: 1px solid #dce5ef; }
.answer-option.selected .answer-check { color: #fff; background: var(--green); border-color: var(--green); }
.quiz-nav { display: flex; align-items: center; justify-content: space-between; padding-top: 6px; }
.quiz-nav .btn { min-height: 42px; padding-inline: 16px; font-size: .78rem; }
.quiz-nav > span { color: #96a2b1; font-size: .7rem; }

.lead-head { display: flex; align-items: center; gap: 16px; margin-bottom: 8px; }
.lead-head h2 { margin: 2px 0 0; font-size: 2rem; line-height: 1.1; }
#leadScreen > p { color: var(--muted); margin: 14px 0 25px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field > span { font-weight: 750; font-size: .8rem; }
.field input, .field select { width: 100%; height: 51px; border: 1.5px solid var(--line); border-radius: 12px; padding: 0 14px; outline: 0; color: var(--text); background: #fff; transition: border-color .2s, box-shadow .2s; }
.field input:focus, .field select:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(9,70,137,.08); }
.field.invalid input, .field.invalid select { border-color: #d84949; }
.error, .consent-error { min-height: 15px; color: #c93737; font-size: .68rem; }
.consent { display: flex; align-items: flex-start; gap: 10px; margin: 17px 0 0; color: #637187; font-size: .72rem; line-height: 1.5; }
.consent input { margin-top: 3px; accent-color: var(--blue); }
.privacy-note { text-align: center; color: #95a1b0; font-size: .67rem; margin: 10px 0 0; }

.result-screen { background: linear-gradient(180deg, #f6faff 0, #fff 36%); text-align: center; overflow: hidden; }
.result-badge { display: inline-flex; color: var(--blue); background: var(--blue-soft); padding: 7px 12px; border-radius: 30px; font-size: .65rem; letter-spacing: .12em; font-weight: 900; }
.result-screen > h2 { margin: 13px auto 26px; max-width: 620px; font-size: 1.85rem; line-height: 1.25; letter-spacing: -.025em; }
.result-screen > h2 span { color: var(--blue); }
.result-program-card { position: relative; text-align: left; border: 1px solid #cfe0f3; border-radius: 20px; background: #fff; padding: 22px; box-shadow: 0 15px 45px rgba(7,45,89,.09); }
.result-program-top { display: grid; grid-template-columns: 55px 1fr auto; gap: 15px; align-items: center; }
.result-program-icon { width: 55px; height: 55px; display: grid; place-items: center; border-radius: 16px; background: var(--blue); color: #fff; font-size: 1.25rem; }
.result-program-top small { color: var(--muted); letter-spacing: .1em; font-size: .58rem; }
.result-program-top h3 { color: var(--blue); font-size: 1.55rem; margin: 1px 0 0; line-height: 1.15; }
.match-score { text-align: right; display: flex; flex-direction: column; }
.match-score strong { color: var(--green); font-size: 1.45rem; line-height: 1; }
.match-score span { color: var(--muted); font-size: .6rem; margin-top: 4px; }
.result-program-card > p { color: var(--muted); font-size: .85rem; margin: 17px 0; }
.reason-box { background: var(--soft); border-radius: 14px; padding: 16px 18px; }
.reason-box strong { font-size: .77rem; }
.reason-box ul { margin: 8px 0 0; padding: 0; list-style: none; display: grid; gap: 6px; }
.reason-box li { color: #53657b; font-size: .74rem; padding-left: 18px; position: relative; }
.reason-box li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.readiness-card { text-align: left; display: grid; grid-template-columns: 1fr auto; gap: 8px 20px; margin-top: 16px; border: 1px solid var(--line); border-radius: 18px; padding: 19px 21px; }
.readiness-card > div:first-child { display: flex; flex-direction: column; }
.readiness-card > div:first-child span { color: var(--muted); font-size: .67rem; }
.readiness-card > div:first-child strong { font-size: .98rem; }
.readiness-score { align-self: center; }
.readiness-score b { color: var(--blue); font-size: 1.4rem; }
.readiness-score span { color: var(--muted); font-size: .68rem; }
.readiness-track { grid-column: 1 / -1; height: 7px; overflow: hidden; background: #e5ecf4; border-radius: 20px; }
.readiness-track i { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--blue), #2b8de0); border-radius: inherit; transition: width .8s ease .15s; }
.readiness-card p { grid-column: 1 / -1; margin: 2px 0 0; color: var(--muted); font-size: .72rem; }
.result-actions { display: flex; justify-content: center; gap: 12px; margin-top: 19px; }
.result-actions .btn { font-size: .82rem; }
.result-disclaimer { color: #8a97a7; font-size: .64rem; margin: 13px auto 0; max-width: 600px; }
.result-confetti i { position: absolute; width: 8px; height: 8px; background: var(--yellow); transform: rotate(25deg); opacity: .7; }
.result-confetti i:nth-child(1){left:9%;top:8%}.result-confetti i:nth-child(2){left:18%;top:17%;background:var(--blue)}.result-confetti i:nth-child(3){right:12%;top:10%;background:var(--green)}.result-confetti i:nth-child(4){right:20%;top:20%}.result-confetti i:nth-child(5){left:7%;top:35%;background:var(--green)}.result-confetti i:nth-child(6){right:7%;top:38%;background:var(--blue)}

.toast { position: fixed; right: 24px; bottom: 24px; z-index: 1000; background: #071b33; color: #fff; padding: 13px 17px; border-radius: 12px; box-shadow: var(--shadow); transform: translateY(30px); opacity: 0; pointer-events: none; transition: .25s; font-size: .82rem; }
.toast.show { transform: translateY(0); opacity: 1; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
@keyframes fadeIn { from { opacity: 0; } }
@keyframes modalIn { from { opacity: 0; transform: translateY(18px) scale(.98); } }

@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-copy { text-align: center; }
  .hero h1, .hero-lead { margin-inline: auto; }
  .hero-actions, .trust-row { justify-content: center; }
  .hero-visual { min-height: 500px; width: min(620px, 100%); margin-inline: auto; }
  .program-grid { grid-template-columns: repeat(2, 1fr); }
  .program-card p { min-height: auto; }
  .faq-layout { grid-template-columns: 1fr; gap: 35px; }
  .section-heading.align-left { text-align: center; margin-inline: auto; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, 1160px); }
  .desktop-nav { display: none; }
  .nav-wrap { min-height: 68px; gap: 13px; }
  .brand img { width: 155px; }
  .brand-product { display: none; }
  .site-header .btn { min-height: 39px; padding-inline: 14px; font-size: .76rem; }
  .hero { padding: 65px 0 74px; }
  .hero h1 { font-size: clamp(2.35rem, 12vw, 3.65rem); }
  .hero h1 em { white-space: normal; }
  .hero-lead { font-size: 1rem; }
  .hero-actions { flex-direction: column; gap: 16px; }
  .hero-actions .btn { width: 100%; }
  .trust-row { gap: 0; width: 100%; }
  .trust-row div { padding-inline: 14px; flex: 1; }
  .trust-row span { font-size: .64rem; }
  .hero-visual { min-height: 430px; }
  .visual-glow { width: 370px; height: 370px; }
  .result-preview { width: 91%; padding: 19px; }
  .floating-card { transform: scale(.88); }
  .card-left { left: -20px; top: 76px; }
  .card-right { right: -24px; bottom: 35px; }
  .proof-inner { min-height: 110px; flex-direction: column; justify-content: center; text-align: center; gap: 12px; padding-block: 15px; }
  .proof-tags { flex-wrap: wrap; justify-content: center; gap: 8px 18px; }
  .proof-tags b::after { display: none; }
  .section { padding: 75px 0; }
  .section-heading { margin-bottom: 35px; }
  .steps-grid, .program-grid { grid-template-columns: 1fr; }
  .step-card { min-height: auto; }
  .cta-section { padding-bottom: 75px; }
  .cta-box { min-height: 0; padding: 38px 25px; border-radius: 23px; flex-direction: column; align-items: flex-start; }
  .cta-box .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 25px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { margin-top: 35px; }
  .quiz-shell { padding: 0; align-items: end; }
  .quiz-modal { width: 100%; max-height: 94vh; border-radius: 23px 23px 0 0; }
  .quiz-screen { min-height: 620px; padding: 54px 20px 35px; }
  #quizIntro { padding-top: 60px; }
  .quiz-close { right: 14px; top: 13px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .result-program-top { grid-template-columns: 48px 1fr; }
  .result-program-icon { width: 48px; height: 48px; }
  .match-score { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; text-align: left; border-top: 1px solid var(--line); padding-top: 12px; }
  .result-actions { flex-direction: column; }
  .result-actions .btn { width: 100%; }
}

@media (max-width: 420px) {
  .brand img { width: 136px; }
  .site-header .btn { padding-inline: 11px; }
  .hero h1 { font-size: 2.3rem; }
  .trust-row strong { font-size: 1.05rem; }
  .visual-glow { width: 320px; height: 320px; }
  .preview-bars div { grid-template-columns: 90px 1fr; }
  .floating-card { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 6px; }
  .answer-option { grid-template-columns: 35px 1fr 25px; gap: 10px; padding: 10px; }
  .answer-letter { width: 34px; height: 34px; }
  .answer-copy strong { font-size: .84rem; }
  .answer-copy small { font-size: .69rem; }
}

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