:root {
    --navy: #0b1e33;
    --navy-2: #122a45;
    --navy-3: #1a3a5c;
    --ink: #122033;
    --muted: #5c6b7a;
    --electric: #1f6feb;
    --electric-2: #3d8bfd;
    --silver: #c5cdd6;
    --paper: #f4f7fa;
    --white: #ffffff;
    --line: #dce4ec;
    --ok: #0d6b45;
    --ok-bg: #e8f6ef;
    --err: #b42318;
    --err-bg: #fdecea;
    --radius: 18px;
    --shadow: 0 20px 50px rgba(11, 30, 51, 0.08);
    --header: 84px;
    --font-head: "Plus Jakarta Sans", system-ui, sans-serif;
    --font-body: Inter, system-ui, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: var(--font-body);
    font-size: 16.5px;
    line-height: 1.65;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--electric); text-decoration: none; }
a:hover { color: var(--navy); }

h1, h2, h3 {
    font-family: var(--font-head);
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin: 0 0 0.55em;
    color: var(--navy);
}

h1 { font-size: clamp(2.1rem, 4.4vw, 3.55rem); font-weight: 800; }
h2 { font-size: clamp(1.55rem, 2.6vw, 2.15rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 700; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.container {
    width: min(1140px, calc(100% - 40px));
    margin-inline: auto;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 8px;
    background: var(--electric);
    color: #fff;
    padding: 8px 14px;
    z-index: 100;
}
.skip-link:focus { left: 8px; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color .2s, box-shadow .2s;
}
.site-header.is-scrolled {
    border-bottom-color: var(--line);
    box-shadow: 0 8px 24px rgba(11, 30, 51, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header);
    gap: 24px;
}

.brand img {
    height: 90px;
    width: auto;
    object-fit: contain;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link {
    color: var(--navy);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 14px;
    border-radius: 999px;
}
.nav-link:hover,
.nav-link.is-active {
    background: var(--paper);
    color: var(--navy);
}

.nav-cta { margin-left: 8px; }

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}
.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 12px 22px;
    font-weight: 700;
    font-family: var(--font-head);
    font-size: 0.95rem;
    cursor: pointer;
    transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-1px); color: inherit; }
.btn-primary {
    background: var(--electric);
    color: #fff;
    box-shadow: 0 10px 24px rgba(31, 111, 235, 0.28);
}
.btn-primary:hover { background: #185cd4; color: #fff; }
.btn-ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,.35);
}
.hero .btn-ghost:hover { background: rgba(255,255,255,.1); color: #fff; }
.page-hero .btn-ghost {
    color: var(--navy);
    border-color: var(--line);
}
.btn-light {
    background: #fff;
    color: var(--navy);
}
.btn-ghost-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,.35);
}

.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(900px 420px at 85% -10%, rgba(61, 139, 253, 0.28), transparent 55%),
        linear-gradient(165deg, #06111d 0%, var(--navy) 48%, #12314f 100%);
    color: #e8eef5;
    padding: 72px 0 84px;
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(197,205,214,.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(197,205,214,.07) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(circle at 70% 30%, #000 20%, transparent 72%);
    pointer-events: none;
}
.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 48px;
    align-items: center;
}
.hero h1, .hero p { color: #fff; }
.hero .lead { color: #c5d3e4; font-size: 1.12rem; max-width: 38rem; }
.eyebrow {
    display: inline-flex;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: .72rem;
    font-weight: 700;
    color: var(--electric-2);
    margin-bottom: 12px;
}
.page-hero .eyebrow, .section .eyebrow { color: var(--electric); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 36px; }

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin: 0;
}
.hero-stats div {
    border-top: 1px solid rgba(255,255,255,.14);
    padding-top: 14px;
}
.hero-stats dt {
    font-family: var(--font-head);
    font-size: 1.45rem;
    font-weight: 800;
    color: #fff;
}
.hero-stats dd { margin: 0; color: #9eb0c4; font-size: .9rem; }

.hero-panel {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 24px;
    padding: 28px;
    backdrop-filter: blur(10px);
}
.panel-kicker {
    color: var(--silver);
    font-size: .8rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 16px;
}
.panel-list {
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
}
.panel-list li {
    padding: 10px 0 10px 18px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    position: relative;
}
.panel-list li::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--electric-2);
    position: absolute;
    left: 0;
    top: 18px;
}
.panel-phone {
    display: inline-flex;
    color: #fff;
    font-weight: 700;
    font-family: var(--font-head);
}
.panel-phone:hover { color: var(--silver); }

.brands-bar {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 36px 0 42px;
}
.brands-kicker {
    text-align: center;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: .72rem;
    font-weight: 700;
    color: var(--electric);
    margin: 0 0 22px;
}
.brands-track {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
}
.brand-logo-card {
    margin: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    min-height: 118px;
    padding: 16px 14px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(11, 30, 51, 0.05);
}
.brand-logo-card img {
    width: auto;
    max-width: 100%;
    height: 52px;
    object-fit: contain;
}
.brand-logo-card figcaption {
    font-size: .72rem;
    font-weight: 700;
    color: var(--muted);
    text-align: center;
    letter-spacing: .01em;
}
.brand-logo-card.is-dark {
    background: #0b1e33;
    border-color: #1a334d;
}
.brand-logo-card.is-dark figcaption {
    color: #c5cdd6;
}
.brand-pill {
    border: 1px solid var(--line);
    background: #fff;
    color: var(--navy);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .02em;
}

.section { padding: 88px 0; }
.section-alt { background: var(--paper); }
.section-head { max-width: 640px; margin-bottom: 40px; }
.section-head p { color: var(--muted); }

.card-grid {
    display: grid;
    gap: 22px;
}
.card-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card, .range-card, .product-card, .brand-card, .quote-card, .form-panel, .info-card, .facts > div {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.card { padding: 28px; }
.card p, .range-card p, .product-card p { color: var(--muted); }

.icon-hex {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    color: var(--electric);
    background: #edf3fd;
    clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0 50%);
    margin-bottom: 16px;
}

.range-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.range-card {
    padding: 24px;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 210px;
    transition: transform .18s ease, border-color .18s ease;
}
.range-card:hover {
    transform: translateY(-4px);
    border-color: #b9ccec;
    color: inherit;
}
.range-brands { color: var(--electric); font-size: .82rem; font-weight: 700; margin-top: auto; }
.center-cta { text-align: center; margin-top: 36px; }

.split {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 48px;
    align-items: center;
}

.check-list, .footer-links, .footer-contact, .steps {
    margin: 0;
    padding: 0;
    list-style: none;
}
.check-list li {
    padding: 10px 0 10px 28px;
    position: relative;
    border-bottom: 1px solid var(--line);
}
.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 16px;
    width: 14px;
    height: 8px;
    border-left: 2px solid var(--electric);
    border-bottom: 2px solid var(--electric);
    transform: rotate(-45deg);
}

.quote-card { padding: 32px; background: var(--navy); color: #fff; box-shadow: none; }
.quote-card .quote {
    font-family: var(--font-head);
    font-size: 1.2rem;
    line-height: 1.45;
    margin-bottom: 22px;
    color: #e8eef5;
}
.quote-card .btn-primary { background: #fff; color: var(--navy); box-shadow: none; }

.cta-band {
    background: linear-gradient(135deg, var(--navy), #1a4b86);
    color: #fff;
    padding: 56px 0;
}
.cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}
.cta-band h2, .cta-band p { color: #fff; }
.cta-band p { color: #c5d3e4; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.page-hero {
    padding: 56px 0 24px;
    background:
        linear-gradient(180deg, #eef3f9, #fff 80%);
}

.facts { display: grid; gap: 14px; }
.facts > div { padding: 18px 20px; }
.facts strong { display: block; color: var(--navy); font-family: var(--font-head); margin-bottom: 4px; }
.facts span { color: var(--muted); }

.brand-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.brand-card { padding: 22px; }
.brand-card p { color: var(--muted); }

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}
.chip {
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    font-family: var(--font-head);
    font-size: .85rem;
}
.chip.is-on, .chip:hover {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.product-card { padding: 26px; }
.product-card.is-hidden { display: none; }
.tag-row { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.tag {
    font-size: .72rem;
    font-weight: 700;
    background: #edf3fd;
    color: #1a4b86;
    border-radius: 999px;
    padding: 4px 8px;
}
.text-link { font-weight: 700; color: var(--electric); }
.filter-empty { color: var(--muted); margin-top: 20px; }

.steps { counter-reset: step; }
.steps li {
    counter-increment: step;
    padding: 14px 0 14px 48px;
    position: relative;
    color: var(--muted);
    border-bottom: 1px solid var(--line);
}
.steps li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: .85rem;
    font-weight: 700;
}

.contact-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 28px;
    align-items: start;
}
.contact-cards { display: grid; gap: 14px; }
.info-card {
    padding: 18px 20px;
    color: inherit;
    display: block;
}
.info-card span {
    display: block;
    font-size: .75rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--electric);
    font-weight: 700;
    margin-bottom: 6px;
}
.info-card strong { display: block; color: var(--navy); font-size: 1.05rem; }
.info-card em { display: block; color: var(--muted); font-style: normal; font-size: .9rem; margin-top: 4px; }
.info-card:hover { border-color: #b9ccec; color: inherit; }

.form-panel { padding: 28px; }
.contact-form { display: grid; gap: 14px; margin-top: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label {
    display: grid;
    gap: 6px;
    font-weight: 600;
    font-size: .92rem;
    color: var(--navy);
}
input, select, textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px 14px;
    font: inherit;
    color: var(--ink);
    background: #fff;
}
input:focus, select:focus, textarea:focus {
    outline: 2px solid rgba(31, 111, 235, .25);
    border-color: var(--electric);
}
.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.form-note { color: var(--muted); font-size: .85rem; }
.alert {
    border-radius: 12px;
    padding: 12px 14px;
    font-weight: 600;
    margin-top: 12px;
}
.alert-success { background: var(--ok-bg); color: var(--ok); }
.alert-error { background: var(--err-bg); color: var(--err); }

.map-frame {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--line);
    min-height: 380px;
    box-shadow: var(--shadow);
}
.map-frame iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
}

.site-footer {
    background: #071421;
    color: #b7c4d3;
    padding-top: 56px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .8fr 1fr .9fr;
    gap: 32px;
    padding-bottom: 40px;
}
.footer-logo-wrap {
    background: #fff;
    border-radius: 14px;
    padding: 10px 12px;
    display: inline-block;
    margin-bottom: 16px;
}
.footer-logo-wrap img { height: 52px; width: auto; }
.site-footer h2 {
    color: #fff;
    font-size: 0.95rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.footer-links a, .footer-contact a { color: #d5deea; }
.footer-links a:hover, .footer-contact a:hover { color: #fff; }
.footer-links li, .footer-contact li, .brand-list li { margin: 0 0 8px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 16px 0;
    font-size: .88rem;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #1fa855;
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 12px 28px rgba(31, 168, 85, .4);
    z-index: 40;
}
.whatsapp-float:hover { color: #fff; transform: translateY(-2px); }

.reveal {
    animation: rise .7s ease both;
}
@keyframes rise {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
    .hero-inner, .split, .contact-layout, .footer-grid,
    .card-grid.three, .range-grid, .brand-cards {
        grid-template-columns: 1fr;
    }
    .product-grid { grid-template-columns: 1fr; }
    .brands-track { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .nav-toggle { display: flex; }
    .site-nav {
        display: none;
        position: absolute;
        top: var(--header);
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid var(--line);
        padding: 12px 20px 20px;
        flex-direction: column;
        align-items: stretch;
    }
    .site-nav.is-open { display: flex; }
    .nav-cta { margin: 8px 0 0; }
    .cta-inner, .footer-bottom-inner { flex-direction: column; }
    .hero { padding: 48px 0 56px; }
    .section { padding: 64px 0; }
}

@media (max-width: 640px) {
    .form-row, .hero-stats { grid-template-columns: 1fr; }
    .brands-track { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .brand img { height: 48px; }
    .container { width: min(1140px, calc(100% - 28px)); }
}
