:root {
    --orange: #0b43c6;
    --orange-dark: #082f94;
    --orange-soft: #eaf0ff;
    --orange-pale: #f6f8ff;
    --gold: #ffd400;
    --gold-dark: #a87500;
    --gold-soft: #fff8cc;
    --green: #18a957;
    --green-dark: #0d8742;
    --green-pale: #eafaf1;
    --ink: #111a31;
    --text: #465069;
    --muted: #707b93;
    --line: #e3e8f3;
    --white: #ffffff;
    --cream: #f7f9ff;
    --shadow-sm: 0 10px 30px rgba(8, 31, 104, .08);
    --shadow-md: 0 24px 70px rgba(8, 31, 104, .14);
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 34px;
    --container: 1160px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    min-width: 320px;
    color: var(--ink);
    background: var(--white);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

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

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

button, input, textarea, select { font: inherit; }

.container {
    width: min(100% - 32px, var(--container));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 10px;
    left: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    background: var(--ink);
    color: var(--white);
    transform: translateY(-160%);
    transition: transform .2s ease;
}

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

.site-header {
    position: relative;
    z-index: 50;
    border-bottom: 1px solid rgba(31, 26, 22, .07);
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(16px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 74px;
    gap: 18px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.brand-mark {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    overflow: hidden;
    border: 2px solid rgba(11, 67, 198, .12);
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 9px 24px rgba(8, 47, 148, .20);
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-size: 21px; letter-spacing: -.7px; }
.brand-copy small { margin-top: 4px; color: var(--orange); font-size: 10px; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; }

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid rgba(24, 169, 87, .2);
    border-radius: 999px;
    color: #08743a;
    background: var(--green-pale);
    font-size: 14px;
    font-weight: 800;
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.header-cta:hover { transform: translateY(-1px); background: #ddf7e8; box-shadow: 0 8px 22px rgba(24, 169, 87, .14); }
.header-cta-light { color: var(--ink); background: var(--white); border-color: var(--line); }

.hero {
    position: relative;
    overflow: hidden;
    padding: 56px 0 70px;
    background:
        linear-gradient(180deg, rgba(245, 248, 255, .98), rgba(255, 255, 255, 1)),
        var(--white);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .35;
    background-image: radial-gradient(rgba(11, 67, 198, .19) 1px, transparent 1px);
    background-size: 24px 24px;
    mask-image: linear-gradient(to bottom, #000 0%, transparent 76%);
}

.hero-orb {
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(3px);
}

.hero-orb-one { width: 430px; height: 430px; top: -260px; right: -120px; background: rgba(255, 212, 0, .17); }
.hero-orb-two { width: 260px; height: 260px; bottom: -190px; left: -100px; background: rgba(11, 67, 198, .10); }

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    align-items: center;
    gap: 54px;
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    padding: 8px 13px;
    border: 1px solid rgba(24, 169, 87, .2);
    border-radius: 999px;
    color: #0b743c;
    background: rgba(234, 250, 241, .85);
    font-size: 13px;
    font-weight: 850;
    letter-spacing: .1px;
}

.pulse-dot {
    position: relative;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 0 rgba(24, 169, 87, .45);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(24, 169, 87, .4); }
    70% { box-shadow: 0 0 0 9px rgba(24, 169, 87, 0); }
    100% { box-shadow: 0 0 0 0 rgba(24, 169, 87, 0); }
}

h1, h2, h3, p { margin-top: 0; }

.hero h1 {
    margin-bottom: 20px;
    font-size: clamp(2.35rem, 9.5vw, 4.65rem);
    line-height: .99;
    letter-spacing: clamp(-2.5px, -.07em, -1px);
    text-wrap: balance;
}

.hero h1 span { color: var(--orange); }

.hero-description {
    max-width: 620px;
    margin-bottom: 22px;
    color: var(--text);
    font-size: clamp(1.02rem, 3.7vw, 1.24rem);
    line-height: 1.58;
}

.hero-description strong { color: var(--ink); }

.store-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 26px;
}

.store-chips span {
    padding: 7px 11px;
    border: 1px solid #dfe6f5;
    border-radius: 999px;
    color: #4f5b77;
    background: rgba(255, 255, 255, .75);
    font-size: 12px;
    font-weight: 750;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 66px;
    padding: 11px 15px;
    border: 1px solid rgba(0, 0, 0, .05);
    border-radius: 18px;
    color: var(--white);
    background: linear-gradient(135deg, #20be67, #129c50);
    box-shadow: 0 16px 34px rgba(19, 157, 81, .25), inset 0 1px 0 rgba(255,255,255,.22);
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.whatsapp-button:hover { transform: translateY(-2px); filter: saturate(1.06); box-shadow: 0 21px 40px rgba(19, 157, 81, .31); }
.whatsapp-button:active { transform: translateY(0) scale(.99); }

.whatsapp-button-main { width: min(100%, 470px); }

.whatsapp-icon {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border-radius: 13px;
    color: var(--white);
    background: rgba(255,255,255,.16);
}

.whatsapp-icon svg { width: 28px; height: 28px; }
.button-copy { display: grid; min-width: 0; line-height: 1.15; }
.button-copy strong { font-size: 16px; letter-spacing: -.15px; }
.button-copy small { margin-top: 5px; color: rgba(255,255,255,.82); font-size: 12px; font-weight: 600; }
.button-arrow { margin-left: auto; padding: 0 4px; font-size: 26px; line-height: 1; }

.cta-note {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 12px 0 0 6px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 650;
}

.cta-note svg { width: 17px; height: 17px; fill: var(--green); }

.hero-visual {
    position: relative;
    width: min(100%, 470px);
    margin: 0 auto;
}

.phone-glow {
    position: absolute;
    inset: 12% -8% -5%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 212, 0, .26), rgba(11, 67, 198, .08) 48%, rgba(11, 67, 198, 0) 72%);
    filter: blur(12px);
}

.phone-card {
    position: relative;
    overflow: hidden;
    border: 9px solid #22252a;
    border-radius: 34px;
    background: #efeae2;
    box-shadow: var(--shadow-md), 0 0 0 1px rgba(255,255,255,.8) inset;
    transform: rotate(1.2deg);
}

.phone-card::before {
    content: "";
    position: absolute;
    z-index: 4;
    top: 7px;
    left: 50%;
    width: 72px;
    height: 19px;
    border-radius: 999px;
    background: #22252a;
    transform: translateX(-50%);
}

.phone-topbar {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 74px;
    padding: 22px 15px 10px;
    color: var(--white);
    background: linear-gradient(135deg, #0a2f9e, #071f78);
}

.mini-brand {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.32);
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0,0,0,.18);
}

.mini-brand img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.phone-topbar > div:nth-child(2) { display: grid; line-height: 1.2; }
.phone-topbar strong { font-size: 13px; }
.phone-topbar span { color: rgba(255,255,255,.73); font-size: 10px; }
.phone-dots { margin-left: auto; letter-spacing: 2px; transform: rotate(90deg); }

.chat-area {
    min-height: 390px;
    padding: 18px 12px 20px;
    background-color: #efeae2;
    background-image: radial-gradient(rgba(90, 80, 70, .08) 1px, transparent 1px);
    background-size: 17px 17px;
}

.chat-date {
    width: max-content;
    margin: 0 auto 14px;
    padding: 4px 9px;
    border-radius: 6px;
    color: #536069;
    background: #d9edf4;
    font-size: 9px;
    font-weight: 800;
}

.deal-message {
    position: relative;
    width: 89%;
    margin-left: auto;
    padding: 13px 12px 21px;
    border-radius: 12px 4px 12px 12px;
    background: #d9fdd3;
    box-shadow: 0 2px 3px rgba(0,0,0,.07);
}

.deal-message + .deal-message { margin-top: 13px; }
.deal-message-first { margin-right: 0; }
.deal-message strong { display: block; margin-bottom: 4px; font-size: 13px; line-height: 1.35; }
.deal-message p { margin-bottom: 0; color: #384139; font-size: 10.5px; line-height: 1.45; }
.deal-tag { margin-bottom: 7px; color: #0b43c6; font-size: 9px; font-weight: 950; letter-spacing: .45px; }
.deal-tag.coupon { color: #0a7e44; }
.message-time { position: absolute; right: 8px; bottom: 5px; color: #718078; font-size: 8px; }

.typing-row {
    display: flex;
    align-items: center;
    gap: 4px;
    width: max-content;
    max-width: 88%;
    margin-top: 13px;
    padding: 10px 12px;
    border-radius: 4px 12px 12px;
    background: var(--white);
    box-shadow: 0 2px 3px rgba(0,0,0,.06);
}

.typing-row > span { width: 5px; height: 5px; border-radius: 50%; background: #8a9298; animation: typing 1.2s infinite; }
.typing-row > span:nth-child(2) { animation-delay: .15s; }
.typing-row > span:nth-child(3) { animation-delay: .3s; }
.typing-row small { margin-left: 5px; color: #687078; font-size: 9px; }

@keyframes typing { 0%, 60%, 100% { transform: translateY(0); opacity: .5; } 30% { transform: translateY(-3px); opacity: 1; } }

.floating-badge {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border: 1px solid rgba(255,255,255,.9);
    border-radius: 13px;
    color: #3b352f;
    background: rgba(255,255,255,.94);
    box-shadow: var(--shadow-sm);
    font-size: 10px;
    font-weight: 850;
    backdrop-filter: blur(10px);
}

.floating-badge span { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 8px; color: var(--white); background: var(--orange); font-size: 10px; }
.floating-badge-top { top: 19%; left: -9px; transform: rotate(-2deg); }
.floating-badge-bottom { right: -8px; bottom: 13%; transform: rotate(2deg); }
.floating-badge-bottom span { background: var(--green); }

.trust-strip { border-block: 1px solid #e8ecf5; background: var(--white); }
.trust-grid { display: grid; }
.trust-item { display: flex; align-items: center; gap: 13px; padding: 19px 4px; border-bottom: 1px solid #e8ecf5; }
.trust-item:last-child { border-bottom: 0; }
.trust-item svg { flex: 0 0 auto; width: 30px; height: 30px; padding: 6px; border-radius: 9px; fill: var(--orange); background: var(--orange-soft); }
.trust-item > div { display: grid; line-height: 1.35; }
.trust-item strong { font-size: 13px; }
.trust-item span { margin-top: 3px; color: var(--muted); font-size: 11px; }

.section { padding: 76px 0; }
.section-heading { max-width: 700px; margin: 0 auto 38px; text-align: center; }
.section-kicker { display: block; margin-bottom: 9px; color: var(--orange); font-size: 12px; font-weight: 900; letter-spacing: 1.6px; text-transform: uppercase; }
.section h2, .final-cta h2 { margin-bottom: 14px; font-size: clamp(2rem, 7vw, 3.15rem); line-height: 1.08; letter-spacing: -1.8px; text-wrap: balance; }
.section-heading p, .benefits-copy > p { color: var(--text); font-size: 16px; }

.how-section { background: var(--white); }
.steps-grid { display: grid; gap: 14px; }
.step-card { position: relative; overflow: hidden; padding: 27px 24px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: 0 10px 30px rgba(44,33,25,.04); }
.step-card::after { content: ""; position: absolute; width: 120px; height: 120px; right: -54px; bottom: -66px; border-radius: 50%; background: var(--orange-soft); }
.step-number { position: absolute; top: 18px; right: 20px; color: #e4e9f5; font-size: 34px; font-weight: 950; line-height: 1; }
.step-icon { display: grid; place-items: center; width: 52px; height: 52px; margin-bottom: 20px; border-radius: 16px; background: var(--orange-soft); }
.step-icon svg { width: 26px; height: 26px; fill: var(--orange); }
.step-card h3 { margin-bottom: 8px; font-size: 20px; letter-spacing: -.4px; }
.step-card p { position: relative; z-index: 1; margin-bottom: 0; color: var(--text); font-size: 14px; }
.featured-step { border-color: rgba(11,67,198,.24); background: linear-gradient(145deg, #f5f8ff, #fff); }
.featured-step .step-icon { background: var(--orange); }
.featured-step .step-icon svg { fill: var(--gold); }

.benefits-section { background: var(--cream); }
.benefits-grid { display: grid; gap: 38px; align-items: center; }
.benefits-copy h2 { max-width: 660px; }
.benefits-copy > p { max-width: 650px; }
.benefits-list { display: grid; gap: 14px; margin: 28px 0 0; padding: 0; list-style: none; }
.benefits-list li { display: flex; align-items: flex-start; gap: 12px; padding: 15px; border: 1px solid rgba(60,47,38,.08); border-radius: 15px; background: rgba(255,255,255,.72); }
.check-icon { display: grid; place-items: center; flex: 0 0 auto; width: 28px; height: 28px; margin-top: 1px; border-radius: 9px; color: var(--white); background: var(--green); font-size: 13px; font-weight: 950; }
.benefits-list div { display: grid; line-height: 1.35; }
.benefits-list strong { font-size: 14px; }
.benefits-list small { margin-top: 4px; color: var(--muted); font-size: 12px; }

.safety-card { padding: 28px 24px; border-radius: var(--radius-lg); color: var(--white); background: linear-gradient(155deg, #24272d, #111317); box-shadow: var(--shadow-md); }
.safety-icon { display: grid; place-items: center; width: 58px; height: 58px; margin-bottom: 22px; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: rgba(255,255,255,.07); }
.safety-icon svg { width: 31px; height: 31px; fill: var(--gold); }
.safety-label { color: var(--gold); font-size: 11px; font-weight: 900; letter-spacing: 1.6px; text-transform: uppercase; }
.safety-card h3 { margin: 8px 0 13px; font-size: clamp(1.55rem, 6vw, 2.15rem); line-height: 1.15; letter-spacing: -1px; }
.safety-card > p { color: rgba(255,255,255,.7); font-size: 14px; }
.security-note { display: grid; gap: 3px; margin-top: 22px; padding: 14px 15px; border: 1px solid rgba(255,212,0,.24); border-radius: 14px; background: rgba(255,212,0,.08); }
.security-note strong { color: var(--gold); font-size: 12px; text-transform: uppercase; letter-spacing: .8px; }
.security-note span { color: rgba(255,255,255,.78); font-size: 12px; }

.transparency-section { padding-top: 0; background: var(--cream); }
.transparency-card { display: grid; gap: 18px; padding: 25px; border: 1px solid rgba(11,67,198,.17); border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-sm); }
.transparency-icon { display: grid; place-items: center; width: 53px; height: 53px; border-radius: 16px; background: var(--orange-soft); }
.transparency-icon svg { width: 28px; height: 28px; fill: var(--orange); }
.transparency-card h2 { margin-bottom: 10px; font-size: clamp(1.65rem, 6vw, 2.35rem); }
.transparency-card p { margin-bottom: 0; color: var(--text); font-size: 14px; }

.final-cta {
    position: relative;
    overflow: hidden;
    padding: 64px 0;
    color: var(--white);
    background:
        radial-gradient(circle at 92% 18%, rgba(255,212,0,.34), transparent 28%),
        linear-gradient(135deg, #061b68 0%, #0b43c6 62%, #071f78 100%);
}
.final-cta-inner { display: grid; align-items: center; gap: 26px; }
.final-kicker { display: block; margin-bottom: 8px; color: rgba(255,255,255,.76); font-size: 11px; font-weight: 900; letter-spacing: 1.5px; text-transform: uppercase; }
.final-cta h2 { margin-bottom: 10px; }
.final-cta p { margin-bottom: 0; color: rgba(255,255,255,.86); }
.whatsapp-button-final { width: 100%; background: #fff; color: #087b3e; box-shadow: 0 18px 45px rgba(1,15,65,.22); }
.whatsapp-button-final .whatsapp-icon { color: #fff; background: var(--green); }
.whatsapp-button-final .button-copy small { color: #648170; }

.site-footer { padding: 48px 0 88px; color: rgba(255,255,255,.72); background: #121417; }
.footer-grid { display: grid; gap: 34px; }
.footer-brand .brand-copy strong { color: var(--white); }
.footer-brand-block p { max-width: 430px; margin: 18px 0 0; font-size: 13px; }
.footer-links { display: grid; gap: 12px; }
.footer-links a { width: max-content; color: rgba(255,255,255,.78); font-size: 13px; font-weight: 650; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { display: grid; gap: 8px; margin-top: 36px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.09); font-size: 11px; }

.mobile-sticky-cta {
    position: fixed;
    z-index: 100;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(21,25,23,.1);
    background: rgba(255,255,255,.92);
    box-shadow: 0 -10px 30px rgba(31,24,18,.12);
    backdrop-filter: blur(14px);
}

.mobile-sticky-cta a { display: flex; align-items: center; gap: 10px; min-height: 56px; padding: 8px 13px; border-radius: 16px; color: var(--white); background: linear-gradient(135deg, #20b960, #108f49); box-shadow: 0 10px 25px rgba(17,149,75,.22); }
.mobile-sticky-cta svg { flex: 0 0 auto; width: 30px; height: 30px; }
.mobile-sticky-cta span { display: grid; line-height: 1.15; }
.mobile-sticky-cta strong { font-size: 14px; }
.mobile-sticky-cta small { margin-top: 3px; color: rgba(255,255,255,.8); font-size: 10px; }
.mobile-sticky-cta b { margin-left: auto; font-size: 22px; }

/* Página de privacidade */
.legal-page { background: var(--cream); }
.legal-main { padding: 38px 0 70px; }
.legal-container { max-width: 900px; }
.breadcrumb { display: flex; align-items: center; gap: 9px; margin-bottom: 18px; color: var(--muted); font-size: 12px; }
.breadcrumb a { color: var(--orange-dark); font-weight: 750; }
.legal-card { overflow: hidden; border: 1px solid var(--line); border-radius: 26px; background: var(--white); box-shadow: var(--shadow-sm); }
.legal-header { padding: 30px 24px 25px; border-bottom: 1px solid var(--line); background: linear-gradient(145deg, #f3f6ff, #fff); }
.legal-header h1 { margin-bottom: 7px; font-size: clamp(2rem, 8vw, 3.3rem); line-height: 1.04; letter-spacing: -2px; }
.legal-header p { margin-bottom: 0; color: var(--muted); font-size: 12px; }
.legal-content { padding: 26px 24px 34px; }
.legal-content h2 { margin: 30px 0 8px; font-size: 19px; letter-spacing: -.4px; }
.legal-content h2:first-of-type { margin-top: 24px; }
.legal-content p { margin-bottom: 14px; color: var(--text); font-size: 14px; }
.legal-content a { color: var(--orange-dark); font-weight: 750; text-decoration: underline; text-underline-offset: 3px; }
.legal-footer { padding-bottom: 30px; }
.legal-footer .footer-bottom { margin-top: 0; }
.legal-footer a { color: var(--gold); }

:focus-visible { outline: 3px solid rgba(11,67,198,.35); outline-offset: 3px; }

@media (min-width: 720px) {
    .container { width: min(100% - 56px, var(--container)); }
    .hero { padding: 76px 0 90px; }
    .hero-grid { grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr); gap: 48px; }
    .hero h1 { font-size: clamp(3.2rem, 6.4vw, 4.65rem); }
    .whatsapp-button-main { min-height: 72px; padding: 13px 16px; }
    .button-copy strong { font-size: 18px; }
    .phone-card { transform: rotate(2.2deg); }
    .trust-grid { grid-template-columns: repeat(3, 1fr); }
    .trust-item { padding: 22px 18px; border-right: 1px solid #e8ecf5; border-bottom: 0; }
    .trust-item:last-child { border-right: 0; }
    .section { padding: 96px 0; }
    .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .step-card { padding: 30px 25px; }
    .benefits-grid { grid-template-columns: minmax(0, 1.12fr) minmax(330px, .88fr); gap: 58px; }
    .safety-card { padding: 36px; }
    .transparency-card { grid-template-columns: auto 1fr; align-items: start; gap: 24px; padding: 32px; }
    .final-cta-inner { grid-template-columns: minmax(0, 1fr) minmax(330px, 440px); gap: 44px; }
    .footer-grid { grid-template-columns: 1fr auto; align-items: start; }
    .footer-links { grid-template-columns: repeat(2, auto); column-gap: 38px; }
    .footer-bottom { grid-template-columns: 1fr auto; }
    .site-footer { padding-bottom: 48px; }
    .mobile-sticky-cta { display: none; }
    .legal-header { padding: 42px 48px 32px; }
    .legal-content { padding: 36px 48px 48px; }
}

@media (min-width: 1050px) {
    .hero-grid { grid-template-columns: minmax(0, 1.2fr) 430px; gap: 74px; }
    .floating-badge-top { left: -42px; }
    .floating-badge-bottom { right: -38px; }
}

@media (max-width: 480px) {
    .header-inner { min-height: 68px; }
    .brand-mark { width: 42px; height: 42px; }
    .brand-copy strong { font-size: 19px; }
    .header-cta { min-height: 38px; padding: 0 13px; font-size: 12px; }
    .hero { padding-top: 42px; }
    .hero-visual { width: calc(100% - 12px); }
    .floating-badge { font-size: 9px; }
    .floating-badge-top { left: -8px; }
    .floating-badge-bottom { right: -8px; }
}

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