:root {
    --orange: #EE703F;
    --orange-dark: #D95529;
    --orange-soft: #FFF0E9;
    --blue: #35627A;
    --blue-dark: #1E4054;
    --blue-soft: #E8F0F4;
    --yellow: #FFC928;
    --surface: #F1F2F3;
    --surface-alt: #E8EAEC;
    --white: #FFFFFF;
    --ink: #19303C;
    --muted: #60727B;
    --line: rgba(25, 48, 60, .10);
    --radius-lg: 30px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --shadow-orange: 0 16px 40px rgba(238, 112, 63, .18);
    --shadow-blue: 0 16px 40px rgba(53, 98, 122, .16);
    --shadow-soft: 0 14px 38px rgba(25, 48, 60, .08);
    --max: 1180px;
    --header-height: 76px;
    --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--surface);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section-pad { padding: 110px 0 80px; }
.section { padding: 105px 0; }
.section--light { background: var(--surface); }
.section--gray { background: var(--surface-alt); }
.section--navy { background: var(--blue-dark); color: var(--white); }

/* Shared brand lockup: all three marks stay together and visually level. */
.brand-lockup {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 1.6vw, 24px);
    min-width: 0;
}
.brand-item {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 46px;
}
.brand-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.brand-lockup--header { width: min(420px, 43vw); }
.brand-lockup--hero { width: min(610px, 100%); margin-inline: auto; }
.brand-lockup--footer { width: min(560px, 100%); }
.brand-lockup--hero .brand-item { height: 54px; }
.brand-lockup--footer .brand-item { height: 50px; }

.site-header {
    position: sticky;
    top: 14px;
    z-index: 1000;
    width: min(calc(100% - 28px), 1240px);
    margin: 14px auto 0;
    border: 1px solid rgba(255,255,255,.65);
    border-radius: 999px;
    background: rgba(255,255,255,.84);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 12px 35px rgba(53,98,122,.12);
}
.header-inner {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.desktop-nav { display: flex; align-items: center; gap: clamp(10px, 1.5vw, 20px); }
.desktop-nav a {
    position: relative;
    padding: 8px 0;
    color: var(--blue-dark);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .02em;
    transition: color .25s ease, transform .25s ease;
}
.desktop-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 2px;
    height: 2px;
    border-radius: 99px;
    background: var(--orange);
    transition: right .25s var(--ease);
}
.desktop-nav a:hover, .desktop-nav a:focus-visible { color: var(--orange-dark); transform: translateY(-1px); }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { right: 0; }

.mobile-menu-button {
    display: none;
    position: fixed;
    top: 22px;
    right: 20px;
    z-index: 1200;
    width: 54px;
    height: 54px;
    border: 0;
    border-radius: 50%;
    background: var(--blue-dark);
    box-shadow: 0 12px 30px rgba(53,98,122,.28);
    cursor: pointer;
    transition: transform .25s var(--ease), box-shadow .25s ease;
}
.mobile-menu-button:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 16px 35px rgba(238,112,63,.25); }
.mobile-menu-button span { display: block; width: 20px; height: 2px; margin: 4px auto; border-radius: 2px; background: #fff; }
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: grid;
    align-items: start;
    justify-items: end;
    padding: 84px 18px 18px;
    background: rgba(25,48,60,.30);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu__panel {
    width: min(340px, 100%);
    padding: 22px;
    border: 1px solid rgba(255,255,255,.7);
    border-radius: 26px;
    background: rgba(255,255,255,.96);
    box-shadow: var(--shadow-blue);
    transform: translateY(-10px);
    transition: transform .35s var(--ease);
}
.mobile-menu.is-open .mobile-menu__panel { transform: translateY(0); }
.mobile-menu__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.mobile-menu__top strong { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.mobile-menu__close { border: 0; background: transparent; font-size: 32px; line-height: 1; cursor: pointer; color: var(--blue-dark); }
.mobile-menu nav { display: grid; gap: 4px; }
.mobile-menu nav a { padding: 12px 10px; border-radius: 12px; font-weight: 800; font-size: 13px; text-transform: uppercase; }
.mobile-menu nav a:hover, .mobile-menu nav a:focus-visible { background: var(--orange-soft); color: var(--orange-dark); }

.hero {
    position: relative;
    min-height: 720px;
    flex-direction: column;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 25%, rgba(238,112,63,.13), transparent 28%),
        radial-gradient(circle at 92% 18%, rgba(53,98,122,.13), transparent 30%),
        linear-gradient(135deg, #F5F6F7 0%, #EDEFF0 100%);
}
.hero__glow { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero__glow--one { width: 300px; height: 300px; left: -140px; bottom: 8%; background: rgba(238,112,63,.13); }
.hero__glow--two { width: 240px; height: 240px; right: -90px; top: 22%; background: rgba(53,98,122,.13); }
.hero__grid { display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 70px; position: relative; z-index: 2; }
.eyebrow, .section-kicker { display: inline-flex; align-items: center; gap: 8px; color: var(--orange-dark); font-size: 11px; font-weight: 900; letter-spacing: .16em; }
.eyebrow span { width: 26px; height: 3px; border-radius: 99px; background: var(--orange); }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 720px; margin-bottom: 22px; font-size: clamp(43px, 5.2vw, 72px); line-height: .99; letter-spacing: -.055em; font-weight: 900; color: var(--blue-dark); }
.hero__lead { max-width: 680px; margin-bottom: 30px; color: var(--muted); font-size: clamp(15px, 1.45vw, 18px); line-height: 1.75; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 52px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .06em;
    cursor: pointer;
    transition: transform .25s var(--ease), box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn span { font-size: 16px; line-height: 1; }
.btn--primary { background: var(--orange); color: var(--white); box-shadow: var(--shadow-orange); }
.btn--primary:hover { background: var(--orange-dark); box-shadow: 0 20px 45px rgba(238,112,63,.28); }
.btn--ghost { border-color: rgba(53,98,122,.22); color: var(--blue-dark); background: rgba(255,255,255,.45); }
.btn--ghost:hover { background: var(--white); border-color: rgba(53,98,122,.4); box-shadow: var(--shadow-blue); }
.btn--dark { background: var(--blue-dark); color: var(--white); box-shadow: var(--shadow-blue); }
.btn--dark:hover { background: var(--blue); }
.btn--orange { background: var(--orange); color: var(--white); box-shadow: var(--shadow-orange); }
.btn--white { background: var(--white); color: var(--orange-dark); box-shadow: 0 18px 40px rgba(25,48,60,.18); }
.btn--white:hover { background: #fffaf7; }
.btn[aria-disabled="true"] { cursor: not-allowed; opacity: .78; }
.btn.is-missing-config { animation: configShake .3s ease 2; }
@keyframes configShake { 0%,100%{transform:translateX(0)} 50%{transform:translateX(4px)} }
.btn--pulse { animation: ctaPulse 3.8s ease-in-out infinite; }
@keyframes ctaPulse { 0%,100% { box-shadow: 0 10px 28px rgba(238,112,63,.22); } 50% { box-shadow: 0 10px 36px rgba(238,112,63,.42); } }
.hero__stats { display: flex; flex-wrap: wrap; gap: 0; }
.hero__stats > div { min-width: 125px; padding-right: 24px; margin-right: 24px; border-right: 1px solid var(--line); }
.hero__stats > div:last-child { border-right: 0; }
.hero__stats strong, .hero__stats span { display: block; }
.hero__stats strong { color: var(--blue-dark); font-size: 16px; font-weight: 900; }
.hero__stats span { color: var(--muted); font-size: 11px; font-weight: 600; }

.hero__visual { position: relative; min-height: 520px; display: grid; place-items: center; }
.hero__visual-card {
    position: relative;
    width: min(100%, 500px);
    overflow: hidden;
    border-radius: 34px;
    background: var(--white);
    box-shadow: var(--shadow-blue);
    transform: rotate(1deg);
}
.hero__visual-top { display: flex; align-items: center; justify-content: space-between; padding: 24px 26px 0; }
.visual-pill { padding: 7px 11px; border-radius: 999px; background: var(--orange-soft); color: var(--orange-dark); font-size: 9px; font-weight: 900; letter-spacing: .12em; }
.visual-cross { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--blue-soft); color: var(--blue); font-size: 23px; font-weight: 500; }
.hero__person-art { position: relative; height: 360px; margin: 0 24px; overflow: hidden; border-radius: 26px; background: linear-gradient(145deg, #DDE8EB, #FCE6DA); }
.sun-orb { position: absolute; width: 220px; height: 220px; top: 28px; right: 18px; border-radius: 50%; background: rgba(255,201,40,.45); }
.person { position: absolute; bottom: -34px; border-radius: 48% 48% 22% 22%; filter: drop-shadow(0 18px 18px rgba(53,98,122,.12)); }
.person::before { content: ''; position: absolute; top: -84px; left: 50%; width: 112px; height: 112px; transform: translateX(-50%); border-radius: 50%; background: #C98E6C; }
.person--back { width: 210px; height: 300px; left: 24px; background: #35627A; }
.person--back::before { background: #A97057; }
.person--front { width: 225px; height: 330px; right: 88px; background: #EE703F; }
.person--front::before { background: #C98E6C; }
.person--child { width: 125px; height: 210px; right: 18px; background: #FFC928; }
.person--child::before { width: 76px; height: 76px; top: -60px; background: #D69C79; }
.hero__visual-caption { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 26px 25px; }
.hero__visual-caption strong, .hero__visual-caption span { display: block; }
.hero__visual-caption strong { max-width: 330px; font-size: 14px; line-height: 1.4; }
.hero__visual-caption span { margin-top: 4px; color: var(--muted); font-size: 11px; }
.mini-heart { width: 44px; height: 44px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; background: var(--orange); color: #fff; box-shadow: var(--shadow-orange); }
.floating-note { position: absolute; z-index: 4; display: flex; align-items: center; gap: 9px; padding: 13px 16px; border-radius: 999px; background: rgba(255,255,255,.93); border: 1px solid rgba(255,255,255,.8); box-shadow: var(--shadow-soft); color: var(--blue-dark); font-size: 10px; font-weight: 800; }
.floating-note span { color: var(--orange); font-size: 17px; }
.floating-note--top { top: 70px; left: -25px; }
.floating-note--bottom { bottom: 64px; right: -22px; }
.hero__brands { position: relative; z-index: 3; margin-top: 48px; }

.two-col { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: start; }
.section-heading { max-width: 760px; }
.section-heading--center { margin-inline: auto; text-align: center; }
.section-heading h2 { margin: 12px 0 18px; color: var(--blue-dark); font-size: clamp(34px, 4vw, 53px); line-height: 1.06; letter-spacing: -.045em; font-weight: 900; }
.section-heading p, .section-copy p { color: var(--muted); font-size: 15px; line-height: 1.8; }
.section-copy { max-width: 660px; }
.section-copy strong { color: var(--blue-dark); }
.offer-card { margin-top: 62px; display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center; padding: 34px; border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-orange); border: 1px solid rgba(238,112,63,.14); }
.offer-card__icon { width: 68px; height: 68px; display: grid; place-items: center; border-radius: 20px; background: var(--orange); color: #fff; font-size: 25px; font-weight: 900; box-shadow: var(--shadow-orange); }
.offer-card h3 { margin: 7px 0 8px; color: var(--blue-dark); font-size: 20px; }
.offer-card p { margin: 0; color: var(--muted); font-size: 13px; }

.section-heading--white h2, .section-heading--white p { color: var(--white); }
.section-kicker--white { color: #fff; opacity: .9; }
.feature-grid { margin-top: 52px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-card { padding: 28px; min-height: 220px; border: 1px solid rgba(53,98,122,.08); border-radius: var(--radius-md); background: rgba(255,255,255,.82); box-shadow: var(--shadow-soft); transition: transform .3s var(--ease), box-shadow .3s ease, border-color .3s ease; }
.feature-card:hover { transform: translateY(-7px); border-color: rgba(238,112,63,.22); box-shadow: var(--shadow-orange); }
.feature-card--wide { grid-column: 1 / -1; min-height: 160px; }
.feature-icon { width: 45px; height: 45px; display: grid; place-items: center; margin-bottom: 24px; border-radius: 14px; background: var(--orange-soft); color: var(--orange-dark); font-size: 18px; font-weight: 900; }
.feature-card h3 { margin-bottom: 9px; color: var(--blue-dark); font-size: 16px; }
.feature-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.75; }

.exam-grid { margin-top: 54px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.exam-card { position: relative; min-height: 255px; padding: 26px; overflow: hidden; border: 1px solid rgba(53,98,122,.09); border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-soft); transition: transform .3s var(--ease), box-shadow .3s ease, border-color .3s ease; }
.exam-card::after { content: ''; position: absolute; width: 110px; height: 110px; right: -48px; top: -48px; border-radius: 50%; background: rgba(238,112,63,.08); transition: transform .35s var(--ease); }
.exam-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-orange); border-color: rgba(238,112,63,.2); }
.exam-card:hover::after { transform: scale(1.5); }
.exam-card > span { color: var(--orange); font-size: 11px; font-weight: 900; letter-spacing: .1em; }
.exam-card h3 { max-width: 220px; margin: 30px 0 10px; color: var(--blue-dark); font-size: 17px; }
.exam-card p { margin-bottom: 22px; color: var(--muted); font-size: 12px; line-height: 1.65; }
.exam-card a { position: absolute; left: 26px; bottom: 24px; color: var(--orange-dark); font-size: 10px; font-weight: 900; letter-spacing: .06em; }
.exam-card a b { margin-left: 5px; font-size: 14px; }
.exam-card--accent { background: var(--blue-dark); }
.exam-card--accent h3, .exam-card--accent p { color: #fff; }
.exam-card--accent p { color: rgba(255,255,255,.72); }
.exam-card--accent::after { background: rgba(255,201,40,.12); }
.center-cta { display: flex; justify-content: center; margin-top: 42px; }

.steps-grid { margin-top: 48px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.step-card { position: relative; padding: 30px 24px; min-height: 245px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-md); background: rgba(255,255,255,.06); transition: transform .3s var(--ease), background .3s ease, border-color .3s ease; }
.step-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.09); border-color: rgba(238,112,63,.45); }
.step-card > span { display: inline-flex; width: 43px; height: 43px; align-items: center; justify-content: center; border-radius: 13px; background: var(--orange); color: #fff; font-size: 11px; font-weight: 900; }
.step-card h3 { margin: 28px 0 10px; font-size: 17px; line-height: 1.35; }
.step-card p { margin: 0; color: rgba(255,255,255,.67); font-size: 12px; line-height: 1.75; }

.testimonial-grid { margin-top: 48px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.testimonial-card { padding: 30px; min-height: 220px; border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-soft); }
.testimonial-card--placeholder { border: 1px dashed rgba(53,98,122,.24); }
.stars { color: var(--orange); letter-spacing: 2px; font-size: 14px; }
.testimonial-card h3 { margin: 22px 0 10px; font-size: 16px; }
.testimonial-card p { margin: 0 0 22px; color: var(--muted); font-size: 12px; line-height: 1.7; }
.testimonial-card span { color: var(--blue); font-size: 10px; font-weight: 800; }

.faq-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.faq-list { display: grid; gap: 10px; }
details { border: 1px solid rgba(53,98,122,.1); border-radius: 16px; background: var(--white); box-shadow: 0 8px 22px rgba(25,48,60,.045); overflow: hidden; }
summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 22px; cursor: pointer; list-style: none; color: var(--blue-dark); font-size: 13px; font-weight: 800; }
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; color: var(--orange); font-size: 22px; font-weight: 500; transition: transform .25s ease; }
details[open] summary::after { transform: rotate(45deg); }
details p { margin: 0; padding: 0 22px 22px; color: var(--muted); font-size: 12px; line-height: 1.75; }

.final-cta { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--orange-dark), var(--orange)); color: #fff; }
.final-cta__inner { position: relative; z-index: 2; padding: 100px 0; text-align: center; }
.final-cta h2 { max-width: 780px; margin: 14px auto 16px; font-size: clamp(38px, 5vw, 64px); line-height: 1.02; letter-spacing: -.055em; font-weight: 900; }
.final-cta p { max-width: 670px; margin: 0 auto 30px; color: rgba(255,255,255,.86); font-size: 15px; line-height: 1.75; }
.final-cta small { display: block; margin-top: 15px; color: rgba(255,255,255,.78); font-size: 11px; }
.final-cta__blob { position: absolute; border-radius: 50%; background: rgba(255,255,255,.08); }
.final-cta__blob--one { width: 420px; height: 420px; left: -180px; top: -210px; }
.final-cta__blob--two { width: 300px; height: 300px; right: -100px; bottom: -170px; }

.site-footer { background: var(--blue-dark); color: #fff; padding: 62px 0 24px; }
.footer-brands { padding-bottom: 42px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-brands .brand-lockup { }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 40px; padding: 42px 0; }
.footer-grid strong { display: block; margin-bottom: 10px; font-size: 13px; }
.footer-grid p, .footer-grid a { display: block; margin: 0 0 8px; color: rgba(255,255,255,.65); font-size: 11px; line-height: 1.7; }
.footer-grid a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.42); font-size: 9px; }
.mobile-whatsapp { display: none; }

.reveal { animation: revealIn .7s var(--ease) both; }
.reveal--delay { animation-delay: .1s; }
@keyframes revealIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
:focus-visible { outline: 3px solid rgba(238,112,63,.55); outline-offset: 3px; }

@media (max-width: 1080px) {
    .desktop-nav { gap: 11px; }
    .desktop-nav a { font-size: 9px; }
    .hero__grid { gap: 42px; }
    .exam-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
    .site-header { top: 10px; margin-top: 10px; }
    .header-inner { justify-content: center; min-height: 64px; }
    .desktop-nav { display: none; }
    .brand-lockup--header { width: min(440px, calc(100% - 20px)); }
    .mobile-menu-button { display: block; }
    .hero { min-height: auto; }
    .hero__grid { grid-template-columns: 1fr; gap: 36px; }
    .hero__content { text-align: center; }
    .eyebrow { justify-content: center; }
    h1 { margin-inline: auto; }
    .hero__lead { margin-inline: auto; }
    .hero__actions, .hero__stats { justify-content: center; }
    .hero__visual { min-height: 480px; }
    .floating-note--top { left: 0; }
    .floating-note--bottom { right: 0; }
    .two-col, .faq-layout { grid-template-columns: 1fr; gap: 32px; }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-card--wide { grid-column: auto; min-height: 220px; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .container { width: min(calc(100% - 28px), var(--max)); }
    .section-pad { padding: 72px 0 56px; }
    .section { padding: 74px 0; }
    .site-header { width: calc(100% - 18px); border-radius: 22px; }
    .header-inner { min-height: 58px; }
    .brand-lockup--header { width: calc(100% - 10px); gap: 6px; }
    .brand-item { height: 34px; }
    .mobile-menu-button { top: 78px; right: 15px; width: 48px; height: 48px; }
    h1 { font-size: clamp(39px, 13vw, 56px); }
    .hero__lead { font-size: 14px; }
    .hero__actions { display: grid; width: 100%; }
    .btn { width: 100%; }
    .hero__stats { display: grid; grid-template-columns: repeat(3, 1fr); width: 100%; }
    .hero__stats > div { min-width: 0; margin-right: 0; padding-right: 8px; }
    .hero__stats strong { font-size: 13px; }
    .hero__stats span { font-size: 9px; }
    .hero__visual { min-height: 420px; }
    .hero__visual-card { border-radius: 26px; }
    .hero__person-art { height: 280px; margin: 0 14px; border-radius: 20px; }
    .person--back { width: 150px; height: 230px; left: 10px; }
    .person--front { width: 165px; height: 255px; right: 52px; }
    .person--child { width: 100px; height: 170px; right: 2px; }
    .sun-orb { width: 160px; height: 160px; }
    .hero__visual-caption { padding: 17px 17px 20px; }
    .hero__visual-caption strong { font-size: 11px; }
    .hero__visual-caption span { font-size: 9px; }
    .mini-heart { width: 36px; height: 36px; }
    .floating-note { padding: 10px 12px; font-size: 8px; }
    .floating-note--top { top: 42px; }
    .floating-note--bottom { bottom: 35px; }
    .hero__brands { margin-top: 28px; }
    .brand-lockup--hero .brand-item { height: 40px; }
    .two-col { gap: 14px; }
    .section-heading h2 { font-size: 35px; }
    .offer-card { grid-template-columns: auto 1fr; padding: 24px; gap: 18px; }
    .offer-card .btn { grid-column: 1 / -1; }
    .offer-card__icon { width: 52px; height: 52px; border-radius: 15px; }
    .feature-grid, .exam-grid, .steps-grid { grid-template-columns: 1fr; }
    .feature-card, .feature-card--wide { min-height: 0; }
    .exam-card { min-height: 230px; }
    .step-card { min-height: 210px; }
    .final-cta__inner { padding: 74px 0; }
    .final-cta h2 { font-size: 40px; }
    .footer-brands .brand-item { height: 40px; }
    .footer-grid { grid-template-columns: 1fr; gap: 22px; padding: 30px 0; }
    .footer-bottom { flex-direction: column; }
    .mobile-whatsapp {
        position: fixed;
        left: 14px;
        right: 14px;
        bottom: 14px;
        z-index: 900;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        min-height: 52px;
        border-radius: 999px;
        background: var(--blue-dark);
        color: #fff;
        box-shadow: 0 14px 35px rgba(30,64,84,.28);
        font-size: 12px;
        font-weight: 900;
        letter-spacing: .04em;
        animation: ctaPulse 3.8s ease-in-out infinite;
    }
    .mobile-whatsapp span { font-size: 18px; color: #BFF3D4; }
    .mobile-whatsapp[aria-disabled="true"] { cursor: not-allowed; opacity: .8; }
}

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