:root {
    --brand-navy: #101B70;
    --brand-blue: #1455D9;
    --brand-red: #F21F3D;
    --brand-yellow: #FFC928;
    --heading-dark: #17202A;
    --body-text: #66717D;
    --muted-text: #8A949E;
    --cream: #FFFDF5;
    --cream-warm: #FFF9E8;
    --cool-surface: #F4F7FF;
    --white: #FFFFFF;
    --success: #16834A;
    --warning: #C47C00;
    --error: #C62828;
    --border-soft: rgba(16, 27, 112, 0.10);
    --shadow-soft: 0 15px 40px rgba(16, 27, 112, 0.08);
    --shadow-large: 0 25px 70px rgba(16, 27, 112, 0.12);
    --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--body-text);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}
body.menu-open, body.modal-open, body.age-locked { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
h1, h2, h3, h4 { color: var(--heading-dark); line-height: 1.06; letter-spacing: 0; margin: 0 0 1rem; }
h1 { font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 800; }
h3 { font-size: clamp(1.35rem, 2vw, 1.8rem); font-weight: 750; }
.content-wide { max-width: 1440px; margin-inline: auto; padding-inline: clamp(1rem, 4vw, 4rem); }
.content-narrow { max-width: 980px; }
.section { padding: clamp(4rem, 8vw, 7rem) 0; position: relative; }
.section-soft { background: linear-gradient(135deg, var(--cream-warm), var(--cool-surface)); }
.section-navy { background: var(--brand-navy); color: rgba(255,255,255,.78); }
.section-navy h2, .section-navy h3 { color: var(--white); }
.eyebrow { display: inline-flex; align-items: center; gap: .45rem; color: var(--brand-blue); font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .8rem; }
.eyebrow::before { content: ""; width: 28px; height: 3px; border-radius: 4px; background: var(--brand-yellow); }
.lead { color: var(--body-text); font-size: clamp(1rem, 1.8vw, 1.16rem); max-width: 720px; }
.muted { color: var(--muted-text); }
.skip-link { position: fixed; left: 1rem; top: -10rem; z-index: 9999; background: var(--brand-yellow); color: var(--brand-navy); padding: .7rem 1rem; border-radius: 10px; font-weight: 800; }
.skip-link:focus { top: 1rem; }
:focus-visible { outline: 3px solid var(--brand-yellow); outline-offset: 3px; }
.btn { min-height: 46px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; gap: .55rem; padding: .78rem 1.15rem; font-weight: 800; border: 1px solid transparent; transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--brand-blue); border-color: var(--brand-blue); color: var(--white); box-shadow: 0 14px 28px rgba(20,85,217,.2); }
.btn-primary:hover { background: var(--brand-navy); border-color: var(--brand-navy); color: var(--white); }
.btn-ghost { background: var(--white); border-color: var(--border-soft); color: var(--brand-navy); }
.btn-yellow { background: var(--brand-yellow); color: var(--brand-navy); border-color: var(--brand-yellow); }
.button-row { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }

.site-header { position: sticky; top: 0; z-index: 1000; transition: transform .25s var(--ease); }
.top-bar { background: var(--brand-navy); color: rgba(255,255,255,.92); font-size: .86rem; transition: max-height .25s var(--ease), opacity .2s var(--ease); max-height: 48px; overflow: hidden; }
.top-bar__inner { min-height: 42px; display: flex; gap: 1.2rem; align-items: center; justify-content: space-between; white-space: nowrap; }
.top-bar a, .top-bar span { display: inline-flex; align-items: center; gap: .45rem; }
.top-bar i { color: var(--brand-yellow); }
.top-bar__social { gap: .7rem; }
.main-nav-wrap { background: rgba(255,253,245,.94); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border-soft); transition: box-shadow .25s var(--ease); }
.site-header.is-scrolled .top-bar { max-height: 0; opacity: 0; }
.site-header.is-scrolled .main-nav-wrap { box-shadow: var(--shadow-soft); }
.main-nav { display: flex; align-items: center; justify-content: space-between; min-height: 92px; gap: 1.25rem; transition: min-height .25s var(--ease); }
.site-header.is-scrolled .main-nav { min-height: 76px; }
.brand img { width: clamp(150px, 16vw, 220px); max-height: 76px; object-fit: contain; }
.desktop-nav { display: flex; align-items: center; gap: clamp(.6rem, 1.2vw, 1.3rem); font-size: .95rem; font-weight: 700; color: var(--heading-dark); }
.desktop-nav > a, .nav-mega__button { min-height: 44px; display: inline-flex; align-items: center; gap: .35rem; border: 0; background: transparent; padding: .3rem .15rem; color: inherit; font-weight: 700; }
.desktop-nav .is-active, .nav-mega__button.is-active { color: var(--brand-blue); }
.nav-mega { position: relative; }
.mega-menu { position: absolute; top: calc(100% + 20px); left: 50%; transform: translateX(-50%) translateY(8px); width: min(1080px, calc(100vw - 2rem)); background: var(--white); border: 1px solid var(--border-soft); border-radius: 24px; box-shadow: var(--shadow-large); padding: 1rem; display: grid; grid-template-columns: .8fr 1.45fr; gap: 1rem; opacity: 0; pointer-events: none; visibility: hidden; transition: .22s var(--ease); }
.nav-mega:hover .mega-menu, .nav-mega:focus-within .mega-menu { opacity: 1; pointer-events: auto; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega-menu__intro { background: linear-gradient(145deg, var(--cool-surface), var(--cream-warm)); border-radius: 20px; padding: 1.4rem; }
.mega-menu__intro h2 { font-size: 1.65rem; }
.mega-menu__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .85rem; }
.mega-card { border: 1px solid var(--border-soft); border-radius: 18px; padding: .55rem; min-height: 190px; transition: .22s var(--ease); }
.mega-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.mega-card img { aspect-ratio: 1.45; width: 100%; object-fit: cover; border-radius: 14px; }
.mega-card span { display: block; color: var(--heading-dark); font-weight: 800; margin-top: .55rem; }
.mega-card small { display: block; color: var(--muted-text); line-height: 1.35; }
.nav-actions { display: flex; align-items: center; gap: .7rem; }
.menu-toggle { display: none; width: 48px; height: 48px; border: 1px solid var(--border-soft); background: var(--white); border-radius: 12px; flex-direction: column; justify-content: center; gap: 5px; padding: 0 12px; }
.menu-toggle span:not(.visually-hidden) { height: 2px; background: var(--brand-navy); border-radius: 4px; }

.hero { min-height: calc(100vh - 120px); padding: clamp(3rem, 6vw, 6rem) 0 3rem; overflow: hidden; background: radial-gradient(circle at 72% 18%, rgba(255,201,40,.38), transparent 28%), linear-gradient(135deg, var(--cream), var(--cool-surface)); }
.hero-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr); align-items: center; gap: clamp(2rem, 5vw, 5rem); }
.hero h1 { font-size: clamp(3.6rem, 6vw, 5.4rem); letter-spacing: -0.04em; max-width: 760px; }
.hero h1 span { color: var(--brand-blue); }
.hero-copy { font-size: 1.16rem; max-width: 650px; }
.hero-support { margin-top: 1.15rem; display: inline-flex; gap: .55rem; color: var(--brand-navy); font-weight: 800; }
.hero-art { position: relative; min-height: 660px; }
.hero-art::before { content: ""; position: absolute; inset: 5% 7% auto auto; width: 72%; aspect-ratio: 1; border-radius: 50%; border: 28px solid rgba(255,201,40,.55); clip-path: inset(0 0 48% 0); }
.hero-art__main { position: absolute; right: 0; top: 4%; width: 78%; border-radius: 36px; overflow: hidden; box-shadow: var(--shadow-large); }
.hero-art__main img { width: 100%; height: 520px; object-fit: cover; }
.hero-art__side { position: absolute; left: 0; bottom: 7%; width: 42%; border: 10px solid var(--cream); border-radius: 30px; overflow: hidden; box-shadow: var(--shadow-large); }
.hero-art__side img { width: 100%; height: 280px; object-fit: cover; }
.float-card { position: absolute; right: 6%; bottom: 2%; width: min(330px, 72%); background: var(--white); border: 1px solid var(--border-soft); border-radius: 22px; padding: 1.1rem; box-shadow: var(--shadow-large); }
.float-card strong { display: block; color: var(--brand-navy); font-size: 1.35rem; }
.quick-strip { margin-top: -2rem; position: relative; z-index: 5; }
.quick-strip__inner { background: var(--white); border: 1px solid var(--border-soft); box-shadow: var(--shadow-large); border-radius: 22px; display: grid; grid-template-columns: repeat(5, 1fr); overflow: hidden; }
.quick-item { min-height: 88px; padding: 1rem; display: flex; align-items: center; gap: .75rem; border-right: 1px solid var(--border-soft); color: var(--heading-dark); font-weight: 800; }
.quick-item:last-child { border-right: 0; }
.quick-item i { color: var(--brand-blue); font-size: 1.25rem; }

.editorial-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; grid-auto-rows: 240px; gap: 1rem; }
.category-tile { position: relative; overflow: hidden; border-radius: 24px; padding: 1.3rem; color: var(--white); display: flex; flex-direction: column; justify-content: flex-end; min-height: 220px; isolation: isolate; }
.category-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(16,27,112,.08), rgba(16,27,112,.82)); z-index: -1; }
.category-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .4s var(--ease); }
.category-tile:hover img { transform: scale(1.05); }
.category-tile--large { grid-row: span 2; }
.category-tile h3, .category-tile p { color: var(--white); }
.category-tile .tile-action { color: var(--brand-yellow); font-weight: 800; }
.split-feature { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.image-stack { position: relative; min-height: 560px; }
.image-stack img { object-fit: cover; box-shadow: var(--shadow-large); }
.image-stack__large { width: 82%; height: 500px; border-radius: 32px; }
.image-stack__small { position: absolute; right: 0; bottom: 0; width: 46%; height: 270px; border: 10px solid var(--cream); border-radius: 28px; }
.benefit-list { display: grid; gap: .8rem; margin: 1.4rem 0; }
.benefit-list li { list-style: none; display: flex; gap: .75rem; align-items: flex-start; padding: .9rem; border-radius: 16px; background: var(--white); border: 1px solid var(--border-soft); }
.benefit-list i { color: var(--brand-red); margin-top: .3rem; }

.drive-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 0; overflow: hidden; border-radius: 32px; background: var(--brand-navy); box-shadow: var(--shadow-large); }
.drive-panel img { width: 100%; height: 100%; min-height: 440px; object-fit: cover; }
.drive-panel__copy { padding: clamp(2rem, 5vw, 4rem); color: rgba(255,255,255,.78); }
.drive-panel__copy h2 { color: var(--white); }

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.product-card { background: var(--white); border: 1px solid var(--border-soft); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-soft); transition: .22s var(--ease); }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-large); }
.product-card__image { overflow: hidden; background: var(--cool-surface); }
.product-card img { width: 100%; aspect-ratio: 1.14; object-fit: cover; transition: transform .35s var(--ease); }
.product-card:hover img { transform: scale(1.05); }
.product-card__body { padding: 1rem; }
.badge-store { display: inline-flex; align-items: center; min-height: 28px; border-radius: 999px; padding: .25rem .6rem; background: rgba(22,131,74,.11); color: var(--success); font-size: .76rem; font-weight: 800; }
.product-meta { color: var(--muted-text); font-size: .9rem; min-height: 48px; }
.product-card button { width: 100%; margin-top: .8rem; }
.filters { display: grid; grid-template-columns: minmax(220px, 1fr) 240px 180px; gap: .8rem; margin: 1.5rem 0 2rem; }
.form-control, .form-select { min-height: 48px; border-radius: 12px; border-color: var(--border-soft); }
.form-control:focus, .form-select:focus { border-color: var(--brand-blue); box-shadow: 0 0 0 .2rem rgba(20,85,217,.12); }

.highlight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.highlight { padding: 1.3rem; border-radius: 22px; background: var(--white); border: 1px solid var(--border-soft); box-shadow: var(--shadow-soft); }
.highlight i { color: var(--brand-yellow); font-size: 1.55rem; margin-bottom: 1rem; }
.gallery-grid { columns: 3 280px; column-gap: 1rem; }
.gallery-grid img { width: 100%; margin-bottom: 1rem; border-radius: 22px; cursor: zoom-in; box-shadow: var(--shadow-soft); }

.inner-hero { padding: clamp(4rem, 8vw, 7rem) 0; background: radial-gradient(circle at 82% 12%, rgba(255,201,40,.42), transparent 24%), linear-gradient(135deg, var(--cool-surface), var(--cream)); }
.inner-hero__grid { display: grid; grid-template-columns: 1fr .8fr; align-items: center; gap: clamp(2rem, 5vw, 4rem); }
.inner-hero h1 { font-size: clamp(2.3rem, 5vw, 4.25rem); letter-spacing: 0; }
.inner-hero img { width: 100%; height: 430px; object-fit: cover; border-radius: 32px; box-shadow: var(--shadow-large); }
.breadcrumbs { margin-bottom: 1rem; color: var(--muted-text); font-size: .92rem; }
.breadcrumbs a { color: var(--brand-blue); font-weight: 800; }
.cta-band { padding: clamp(2rem, 5vw, 3.2rem); border-radius: 28px; background: linear-gradient(135deg, var(--brand-navy), var(--brand-blue)); color: rgba(255,255,255,.82); display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.cta-band h2 { color: var(--white); font-size: clamp(1.8rem, 3vw, 2.8rem); }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 1.5rem; align-items: start; }
.contact-card, .form-panel, .notice-panel { background: var(--white); border: 1px solid var(--border-soft); border-radius: 22px; padding: 1.25rem; box-shadow: var(--shadow-soft); }
.contact-card a, .contact-card p { display: flex; align-items: flex-start; gap: .75rem; color: var(--heading-dark); font-weight: 700; }
.contact-card i { color: var(--brand-blue); margin-top: .3rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.form-grid .full { grid-column: 1 / -1; }
label { color: var(--heading-dark); font-weight: 750; margin-bottom: .35rem; }
.form-status { margin-bottom: 1rem; border-radius: 14px; padding: .9rem 1rem; display: none; }
.form-status.is-success { display: block; color: var(--success); background: rgba(22,131,74,.1); }
.form-status.is-error { display: block; color: var(--error); background: rgba(198,40,40,.1); }
.map-frame { min-height: 360px; border-radius: 24px; overflow: hidden; border: 1px solid var(--border-soft); background: var(--cool-surface); display: grid; place-items: center; text-align: center; padding: 2rem; }
.category-feature-image { border-radius: 32px; box-shadow: var(--shadow-large); object-fit: cover; min-height: 360px; width: 100%; }

.modal-shell { position: fixed; inset: 0; z-index: 2000; display: none; place-items: center; padding: 1rem; background: rgba(16,27,112,.56); }
.modal-shell.is-open { display: grid; }
.product-modal { width: min(940px, 100%); max-height: min(720px, 92vh); overflow: auto; background: var(--white); border-radius: 26px; box-shadow: var(--shadow-large); display: grid; grid-template-columns: .9fr 1fr; position: relative; }
.product-modal img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }
.product-modal__body { padding: clamp(1.5rem, 4vw, 2.4rem); }
.modal-close { position: absolute; right: .85rem; top: .85rem; z-index: 2; width: 44px; height: 44px; border: 0; border-radius: 12px; background: var(--white); color: var(--brand-navy); box-shadow: var(--shadow-soft); }

.age-gate { position: fixed; inset: 0; z-index: 2500; display: grid; place-items: center; padding: 1rem; background: rgba(16,27,112,.78); }
.age-gate__panel { width: min(560px, 100%); background: var(--cream); border-radius: 28px; padding: clamp(1.5rem, 5vw, 2.5rem); box-shadow: var(--shadow-large); }
.age-gate.is-hidden { display: none; }
.whatsapp-widget { position: fixed; right: max(1rem, env(safe-area-inset-right)); bottom: max(1rem, env(safe-area-inset-bottom)); z-index: 1500; }
.whatsapp-toggle { width: 60px; height: 60px; border-radius: 50%; border: 0; display: grid; place-items: center; color: var(--white); background: #25D366; font-size: 1.8rem; box-shadow: var(--shadow-large); }
.whatsapp-card { position: absolute; right: 0; bottom: 76px; width: 290px; background: var(--white); border: 1px solid var(--border-soft); border-radius: 20px; padding: 1rem; box-shadow: var(--shadow-large); opacity: 0; pointer-events: none; transform: translateY(8px); transition: .22s var(--ease); }
.whatsapp-widget.is-open .whatsapp-card { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-top { position: fixed; right: 1.2rem; bottom: 5.2rem; width: 46px; height: 46px; border: 0; border-radius: 12px; background: var(--brand-navy); color: var(--white); opacity: 0; pointer-events: none; transition: .22s var(--ease); z-index: 1400; }
.back-top.is-visible { opacity: 1; pointer-events: auto; }

.site-footer { background: var(--brand-navy); color: rgba(255,255,255,.76); padding-top: clamp(3rem, 7vw, 5rem); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .7fr .9fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); }
.footer-logo { width: 230px; margin-bottom: 1rem; }
.site-footer h2 { color: var(--brand-yellow); font-size: 1rem; text-transform: uppercase; letter-spacing: .08em; }
.site-footer a, .site-footer p { display: block; margin-bottom: .55rem; }
.footer-note { font-size: .88rem; color: rgba(255,255,255,.6); }
.footer-bottom { margin-top: 3rem; padding: 1rem clamp(1rem, 4vw, 4rem); border-top: 1px solid rgba(255,255,255,.15); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .9rem; }

[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
    [data-reveal] { opacity: 1; transform: none; }
}
