:root {
    --navy-950: #03182b;
    --navy-900: #062746;
    --navy-800: #08375f;
    --blue-700: #075f9c;
    --blue-600: #087fca;
    --blue-500: #08a2ea;
    --blue-100: #e9f6ff;
    --red-600: #d91f32;
    --red-500: #ef3347;
    --green-600: #12ad55;
    --green-500: #22ca69;
    --ink: #112a3f;
    --muted: #5d6d7b;
    --line: #dce6ed;
    --surface: #f4f8fb;
    --white: #fff;
    --shadow-sm: 0 8px 24px rgba(5, 37, 66, .08);
    --shadow-md: 0 18px 50px rgba(5, 37, 66, .14);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --container: 1180px;
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 112px;
}

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

body.modal-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

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

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 10px;
    left: 10px;
    padding: 10px 16px;
    border-radius: 8px;
    background: var(--white);
    transform: translateY(-160%);
}

.skip-link:focus { transform: none; }

:focus-visible {
    outline: 3px solid rgba(8, 162, 234, .45);
    outline-offset: 3px;
}

.service-strip {
    color: #d9e8f5;
    background: var(--navy-950);
    font-size: 13px;
}

.service-strip__inner {
    min-height: 42px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    gap: 18px;
}

.service-strip span { text-align: center; white-space: nowrap; }
.service-strip b { margin-right: 7px; color: var(--blue-500); }
.service-strip strong { color: var(--white); }

.site-header {
    position: sticky;
    z-index: 60;
    top: 0;
    border-bottom: 1px solid rgba(6, 39, 70, .08);
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(14px);
    transition: box-shadow .2s ease;
}

.site-header.is-scrolled { box-shadow: 0 9px 24px rgba(5, 37, 66, .09); }

.header-inner {
    min-height: 94px;
    display: flex;
    align-items: center;
    gap: 26px;
}

.brand { flex: 0 0 172px; }
.brand img { width: 172px; height: 73px; object-fit: contain; }

.main-nav {
    display: flex;
    align-items: center;
    gap: 19px;
    margin-left: auto;
    font-size: 13px;
    font-weight: 750;
}

.main-nav a {
    position: relative;
    padding: 12px 0;
    white-space: nowrap;
}

.main-nav a:not(.nav-contact)::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 6px;
    left: 0;
    height: 2px;
    background: var(--blue-500);
    transform: scaleX(0);
    transition: transform .2s ease;
}

.main-nav a:hover::after { transform: scaleX(1); }

.nav-contact {
    padding: 10px 14px !important;
    border-radius: 999px;
    color: var(--white);
    background: var(--blue-600);
}

.header-actions {
    display: flex;
    align-items: stretch;
    gap: 8px;
}

.header-actions > * {
    min-height: 52px;
    min-width: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 8px 14px;
    border: 0;
    border-radius: 12px;
    color: var(--white);
    font-size: 13px;
    font-weight: 850;
    line-height: 1.2;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(5, 37, 66, .16);
    transition: transform .2s ease, box-shadow .2s ease;
}

.header-actions > *:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(5, 37, 66, .22); }
.header-actions small { margin-bottom: 3px; font-size: 9px; font-weight: 700; opacity: .86; }
.header-call { background: linear-gradient(135deg, var(--red-600), var(--red-500)); }
.header-whatsapp { background: linear-gradient(135deg, var(--green-600), var(--green-500)); }

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 0;
    border-radius: 10px;
    background: var(--blue-100);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    border-radius: 3px;
    background: var(--navy-900);
    transition: transform .2s ease, opacity .2s ease;
}

.promo-hero { padding: 18px 0 0; background: var(--white); }

.promo-hero__card {
    position: relative;
    min-height: 580px;
    overflow: hidden;
    border: 1px solid #d8e3eb;
    border-radius: var(--radius-md);
    background: var(--navy-900);
    box-shadow: var(--shadow-sm);
}

.promo-hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.promo-hero__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(3, 24, 43, .98) 0%, rgba(3, 24, 43, .92) 36%, rgba(3, 24, 43, .28) 67%, rgba(3, 24, 43, .08) 100%);
}

.promo-hero__trust {
    position: absolute;
    z-index: 2;
    top: 26px;
    left: 34px;
    display: flex;
    gap: 10px;
}

.promo-hero__trust span {
    padding: 8px 13px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    color: #dbeaf5;
    background: rgba(255, 255, 255, .08);
    font-size: 12px;
    backdrop-filter: blur(8px);
}

.promo-hero__trust b { margin-right: 5px; color: var(--blue-500); }

.promo-hero__content {
    position: relative;
    z-index: 2;
    width: 52%;
    min-height: 580px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 88px 44px 38px;
    color: var(--white);
}

.promo-hero__logo {
    width: 230px;
    height: 82px;
    margin-bottom: 10px;
    padding: 8px 12px;
    object-fit: contain;
    border-radius: 12px;
    background: rgba(255, 255, 255, .96);
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--blue-600);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.promo-hero .eyebrow { color: #81d7ff; }

.promo-hero h2 {
    margin: 0;
    font-size: clamp(45px, 5.4vw, 76px);
    line-height: .96;
    letter-spacing: -.055em;
}

.promo-hero h2 span { color: var(--red-500); }

.promo-hero__content > p:not(.eyebrow) {
    max-width: 540px;
    margin: 22px 0 25px;
    color: #d7e7f2;
    font-size: 17px;
}

.promo-hero__contacts { display: flex; flex-wrap: wrap; gap: 10px; }

.promo-hero__contacts > * {
    min-height: 51px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border: 0;
    border-radius: 10px;
    color: var(--white);
    font-weight: 900;
    cursor: pointer;
}

.hero-phone { background: linear-gradient(135deg, var(--red-600), var(--red-500)); }
.hero-whatsapp { background: linear-gradient(135deg, var(--green-600), var(--green-500)); }
.promo-hero__contacts span { margin-right: 8px; font-size: 18px; }

.conversion-section {
    margin-top: 18px;
    padding: 64px 0;
    color: var(--white);
    border-radius: 32px 32px 0 0;
    background:
        radial-gradient(circle at 8% 20%, rgba(8, 162, 234, .18), transparent 27%),
        linear-gradient(140deg, var(--navy-900), var(--navy-950));
}

.conversion-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(400px, .95fr);
    align-items: start;
    gap: 58px;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 20px;
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
    color: #dceaf4;
    background: rgba(255, 255, 255, .08);
    font-size: 13px;
    font-weight: 750;
}

.status-pill span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--green-500);
    box-shadow: 0 0 0 5px rgba(34, 202, 105, .13);
}

.conversion-copy h1 {
    max-width: 620px;
    margin: 0;
    font-size: clamp(44px, 5vw, 70px);
    line-height: 1;
    letter-spacing: -.055em;
}

.conversion-copy h1 em { color: var(--blue-500); font-style: normal; }

.conversion-copy .lead {
    max-width: 640px;
    margin: 22px 0;
    color: #cbdce9;
    font-size: 18px;
}

.quick-response {
    max-width: 520px;
    display: flex;
    align-items: center;
    gap: 13px;
    margin: 24px 0;
    padding: 15px 17px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, .06);
}

.quick-response > span {
    width: 38px;
    height: 38px;
    display: grid;
    flex: 0 0 38px;
    place-items: center;
    border-radius: 10px;
    color: var(--navy-950);
    background: var(--blue-500);
    font-weight: 950;
}

.quick-response div { display: flex; flex-direction: column; }
.quick-response small { color: #bcd0df; }

.check-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 18px;
    margin: 26px 0;
    padding: 0;
    color: #d8e8f3;
    list-style: none;
    font-size: 14px;
}

.check-list li::before { content: "✓"; margin-right: 8px; color: var(--green-500); font-weight: 900; }

.conversion-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }

.button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border: 0;
    border-radius: 10px;
    font-weight: 850;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.button:hover { transform: translateY(-2px); box-shadow: 0 11px 24px rgba(4, 29, 54, .2); }
.button--light { color: var(--navy-900); background: var(--white); }
.button--green { color: var(--white); background: var(--green-600); }
.button--primary { color: var(--white); background: linear-gradient(135deg, var(--blue-700), var(--blue-500)); }
.button--dark { color: var(--white); background: var(--navy-900); }
.button--full { width: 100%; }

.quote-card {
    padding: 28px;
    border-radius: var(--radius-md);
    color: var(--ink);
    background: var(--white);
    box-shadow: 0 28px 70px rgba(0, 0, 0, .2);
}

.quote-card__heading { display: flex; align-items: center; gap: 13px; }
.quote-card__icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; color: var(--white); background: var(--blue-600); }
.quote-card .eyebrow { margin-bottom: 2px; }
.quote-card h2 { margin: 0; font-size: 30px; line-height: 1.15; }
.quote-card > p { margin: 12px 0 20px; color: var(--muted); font-size: 14px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

label {
    display: block;
    margin-bottom: 12px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 800;
}

input, select, textarea {
    width: 100%;
    margin-top: 6px;
    padding: 12px 13px;
    border: 1px solid var(--line);
    border-radius: 9px;
    color: var(--ink);
    background: #fbfdfe;
    font-size: 14px;
    font-weight: 500;
    transition: border-color .2s ease, box-shadow .2s ease;
}

textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--blue-500); outline: 0; box-shadow: 0 0 0 4px rgba(8, 162, 234, .12); }
.field-invalid { border-color: var(--red-500) !important; box-shadow: 0 0 0 4px rgba(239, 51, 71, .09) !important; }
.form-error { margin: 0 0 12px; padding: 9px 11px; border-radius: 8px; color: #a51122; background: #fff0f2; font-size: 13px; font-weight: 700; }
.form-note { display: block; margin-top: 9px; color: var(--muted); text-align: center; }

.trust-band { padding: 26px 0; border-bottom: 1px solid var(--line); background: var(--surface); }
.trust-band__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.trust-band__grid > div { position: relative; padding: 6px 18px 6px 48px; border-right: 1px solid var(--line); }
.trust-band__grid > div:last-child { border-right: 0; }
.trust-band span { position: absolute; top: 7px; left: 0; color: var(--blue-600); font-size: 13px; font-weight: 950; }
.trust-band strong, .trust-band small { display: block; }
.trust-band small { margin-top: 2px; color: var(--muted); line-height: 1.45; }

.section { padding: 90px 0; }
.section-heading { margin-bottom: 34px; }
.section-heading h2, .audience-section h2, .faq-intro h2 {
    margin: 0;
    font-size: clamp(34px, 4.2vw, 52px);
    line-height: 1.05;
    letter-spacing: -.04em;
}
.section-heading > p:not(.eyebrow), .section-heading--split > p, .audience-section p, .faq-intro > p:not(.eyebrow) { color: var(--muted); }
.section-heading--split { display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 40px; }
.section-heading--split > p { max-width: 520px; margin: 0; }
.section-heading--center { max-width: 720px; margin-inline: auto; text-align: center; }

.services-section { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: 0 6px 20px rgba(5, 37, 66, .04); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-6px); border-color: #bbd8ea; box-shadow: var(--shadow-md); }
.service-card__media { position: relative; aspect-ratio: 3 / 2; overflow: hidden; background: var(--surface); }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.service-card:hover img { transform: scale(1.045); }
.service-card__media span { position: absolute; right: 12px; bottom: 12px; padding: 6px 10px; border-radius: 999px; color: var(--white); background: rgba(6, 39, 70, .88); font-size: 10px; font-weight: 850; backdrop-filter: blur(7px); }
.service-card__body { padding: 20px; }
.service-card h3 { min-height: 52px; margin: 0 0 10px; font-size: 20px; line-height: 1.28; }
.service-card p { min-height: 126px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.service-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; padding: 0; border: 0; color: var(--blue-700); background: transparent; font-size: 13px; font-weight: 900; cursor: pointer; }
.service-link span { transition: transform .2s ease; }
.service-link:hover span { transform: translateX(4px); }

.process-section { background: var(--surface); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-card { position: relative; min-height: 235px; padding: 33px 24px 22px; border: 1px solid #d8e5ed; border-radius: var(--radius-md); background: var(--white); }
.process-card::after { content: ""; position: absolute; top: 0; left: 0; width: 54%; height: 4px; border-radius: 4px; background: linear-gradient(90deg, var(--blue-600), var(--blue-500)); }
.process-card span { position: absolute; top: -15px; left: 22px; width: 38px; height: 38px; display: grid; place-items: center; border: 4px solid var(--surface); border-radius: 50%; color: var(--white); background: var(--navy-800); font-size: 12px; font-weight: 950; }
.process-card h3 { margin: 15px 0 9px; font-size: 20px; }
.process-card p { margin: 0; color: var(--muted); }

.audience-section { padding-block: 72px; background: var(--navy-900); color: var(--white); }
.audience-grid { display: grid; grid-template-columns: .75fr 1.25fr; align-items: center; gap: 60px; }
.audience-section p:not(.eyebrow) { color: #bdd0df; }
.audience-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.audience-pills span { padding: 11px 15px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; background: rgba(255,255,255,.07); font-size: 14px; font-weight: 750; }

.coverage-section { background: var(--white); }
.coverage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.coverage-card { position: relative; min-height: 285px; overflow: hidden; border-radius: var(--radius-md); background: var(--navy-900); }
.coverage-card img, .coverage-card__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.coverage-card img { object-fit: cover; transition: transform .45s ease; }
.coverage-card__shade { background: linear-gradient(180deg, rgba(3, 24, 43, .1), rgba(3, 24, 43, .95)); }
.coverage-card__content { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; padding: 25px; color: var(--white); }
.coverage-card h3 { margin: 0; font-size: 23px; }
.coverage-card p { margin: 6px 0 15px; color: #d7e6f1; }
.coverage-card a { color: #91ddff; font-weight: 900; }
.coverage-card:hover img { transform: scale(1.055); }
.city-list { margin-top: 22px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); }
.city-list summary { padding: 16px 18px; color: var(--navy-800); font-weight: 850; cursor: pointer; }
.city-list > div { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 18px 18px; }
.city-list span { padding: 6px 10px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); background: var(--white); font-size: 12px; }

.why-section { background: var(--surface); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.why-card { display: flex; gap: 16px; padding: 23px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); }
.why-card > span { width: 42px; height: 42px; display: grid; flex: 0 0 42px; place-items: center; border-radius: 12px; color: var(--white); background: linear-gradient(135deg, var(--blue-700), var(--blue-500)); font-weight: 950; }
.why-card h3 { margin: 0 0 7px; font-size: 19px; }
.why-card p { margin: 0; color: var(--muted); font-size: 14px; }

.faq-section { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; align-items: start; gap: 60px; }
.faq-intro { position: sticky; top: 135px; }
.faq-intro .button { margin-top: 18px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 2px; font-weight: 850; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary span { width: 30px; height: 30px; display: grid; flex: 0 0 30px; place-items: center; border-radius: 50%; color: var(--blue-700); background: var(--blue-100); font-size: 20px; transition: transform .2s ease; }
.faq-item[open] summary span { transform: rotate(45deg); }
.faq-item p { margin: -5px 42px 22px 0; color: var(--muted); }

.final-cta { padding: 64px 0; color: var(--white); background: linear-gradient(120deg, var(--blue-700), var(--blue-500)); }
.final-cta .eyebrow { color: #d8f3ff; }
.final-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 45px; }
.final-cta h2 { margin: 0; font-size: clamp(36px, 4.4vw, 58px); line-height: 1.05; letter-spacing: -.045em; }
.final-cta p:not(.eyebrow) { margin-bottom: 0; color: #e4f5fd; }
.final-cta__actions { display: flex; flex: 0 0 auto; flex-wrap: wrap; gap: 10px; }

.site-footer { color: #c5d7e4; background: var(--navy-950); }
.footer-top { display: grid; grid-template-columns: 1.25fr repeat(3, 1fr); gap: 48px; padding-block: 62px 46px; }
.footer-brand img { width: 220px; height: 92px; margin-bottom: 16px; padding: 8px; object-fit: contain; border-radius: 10px; background: var(--white); }
.footer-top h2 { margin: 0 0 17px; color: var(--white); font-size: 14px; letter-spacing: .08em; text-transform: uppercase; }
.footer-top p { margin: 0 0 13px; color: #9fb7c8; font-size: 13px; }
.footer-top a { display: block; margin: 9px 0; font-size: 13px; }
.footer-top a:hover { color: var(--blue-500); }
.payment-row { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.1); }
.payment-row strong { margin-right: 5px; color: var(--white); font-size: 13px; }
.payment-row span { padding: 5px 9px; border: 1px solid rgba(255,255,255,.14); border-radius: 6px; font-size: 11px; }
.footer-bottom { padding: 18px 0; color: #8ca5b7; border-top: 1px solid rgba(255,255,255,.1); font-size: 12px; }

.whatsapp-float {
    position: fixed;
    z-index: 70;
    right: 24px;
    bottom: 23px;
    min-height: 54px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 12px 18px;
    border: 0;
    border-radius: 999px;
    color: var(--white);
    background: linear-gradient(135deg, var(--green-600), var(--green-500));
    box-shadow: 0 14px 34px rgba(18, 173, 85, .35);
    font-weight: 900;
    cursor: pointer;
    animation: whatsappPulse 2.2s infinite;
}

.whatsapp-symbol { width: 28px; height: 28px; display: grid; place-items: center; border: 2px solid currentColor; border-radius: 50%; font-size: 14px; }

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .43), 0 14px 34px rgba(18, 173, 85, .35); }
    50% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0), 0 14px 34px rgba(18, 173, 85, .35); }
}

.mobile-contact-bar { display: none; }

.region-modal[hidden] { display: none; }
.region-modal { position: fixed; z-index: 200; inset: 0; display: grid; place-items: center; padding: 20px; }
.region-modal__backdrop { position: absolute; inset: 0; background: rgba(3, 24, 43, .74); backdrop-filter: blur(7px); }
.region-modal__dialog { position: relative; z-index: 1; width: min(470px, 100%); padding: 30px; border-radius: var(--radius-md); background: var(--white); box-shadow: 0 30px 90px rgba(0,0,0,.32); }
.region-modal__dialog h2 { margin: 0; font-size: 32px; line-height: 1.1; }
.region-modal__dialog > p:not(.eyebrow) { color: var(--muted); }
.region-modal__close { position: absolute; top: 13px; right: 13px; width: 38px; height: 38px; border: 0; border-radius: 50%; background: var(--surface); font-size: 25px; cursor: pointer; }
.region-choice { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 10px; padding: 16px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); text-align: left; cursor: pointer; transition: border-color .2s ease, background .2s ease; }
.region-choice:hover { border-color: var(--blue-500); background: var(--blue-100); }
.region-choice span { display: flex; flex-direction: column; }
.region-choice small { color: var(--muted); }
.region-choice b { color: var(--blue-700); font-size: 20px; }

.toast { position: fixed; z-index: 230; right: 20px; bottom: 95px; max-width: 360px; padding: 12px 16px; border-radius: 10px; color: var(--white); background: var(--navy-900); box-shadow: var(--shadow-md); font-weight: 700; }

.reveal { opacity: 0; transform: translateY(22px); }
.reveal.is-visible { opacity: 1; transform: none; transition: opacity .55s ease, transform .55s ease; }

@media (max-width: 1120px) {
    .header-inner { gap: 14px; }
    .brand { flex-basis: 145px; }
    .brand img { width: 145px; }
    .main-nav { gap: 12px; font-size: 12px; }
    .header-actions > * { min-width: 132px; padding-inline: 10px; font-size: 12px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .service-card p { min-height: auto; }
    .footer-top { grid-template-columns: 1.2fr 1fr 1fr; }
    .footer-top > div:last-child { grid-column: 2 / -1; }
}

@media (max-width: 900px) {
    html { scroll-padding-top: 82px; }
    .service-strip__inner { grid-template-columns: 1fr 1fr; padding-block: 8px; }
    .service-strip span:nth-child(n+3) { display: none; }
    .header-inner { min-height: 78px; }
    .brand img { height: 58px; }
    .menu-toggle { display: block; margin-left: auto; }
    .main-nav { position: absolute; top: calc(100% + 1px); right: 0; left: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; margin: 0; padding: 14px 20px 20px; border-bottom: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow-md); }
    .main-nav.is-open { display: flex; }
    .main-nav a { padding: 12px; border-bottom: 1px solid var(--line); }
    .nav-contact { margin-top: 8px; text-align: center; }
    .header-actions { display: none; }
    .promo-hero__card { min-height: 610px; }
    .promo-hero__image { object-position: 64% center; }
    .promo-hero__shade { background: linear-gradient(90deg, rgba(3,24,43,.98), rgba(3,24,43,.84) 58%, rgba(3,24,43,.2)); }
    .promo-hero__content { width: 66%; min-height: 610px; padding-inline: 34px; }
    .conversion-grid { grid-template-columns: 1fr; }
    .conversion-copy { max-width: 700px; }
    .quote-card { max-width: 700px; }
    .trust-band__grid { grid-template-columns: 1fr 1fr; }
    .trust-band__grid > div:nth-child(2) { border-right: 0; }
    .section-heading--split { grid-template-columns: 1fr; gap: 14px; }
    .process-grid { grid-template-columns: 1fr 1fr; gap: 28px 18px; }
    .audience-grid { grid-template-columns: 1fr; gap: 25px; }
    .coverage-grid, .why-grid { grid-template-columns: 1fr 1fr; }
    .faq-grid { grid-template-columns: 1fr; gap: 36px; }
    .faq-intro { position: static; }
    .final-cta__inner { align-items: flex-start; flex-direction: column; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-top > div:last-child { grid-column: auto; }
}

@media (max-width: 620px) {
    .container { width: min(100% - 24px, var(--container)); }
    .service-strip__inner { width: 100%; min-height: 38px; padding: 0 10px; }
    .service-strip span { font-size: 11px; }
    .service-strip span:nth-child(2) { text-align: right; }
    .site-header { top: 0; }
    .promo-hero { padding-top: 10px; }
    .promo-hero__card { min-height: 660px; border-radius: 15px; }
    .promo-hero__image { object-position: 68% center; }
    .promo-hero__shade { background: linear-gradient(180deg, rgba(3,24,43,.43), rgba(3,24,43,.92) 52%, rgba(3,24,43,.99)); }
    .promo-hero__trust { top: 16px; left: 16px; right: 16px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; }
    .promo-hero__trust span { padding: 7px 5px; font-size: 9px; text-align: center; }
    .promo-hero__trust b { display: block; margin: 0; }
    .promo-hero__content { width: 100%; min-height: 660px; justify-content: flex-end; padding: 260px 20px 25px; }
    .promo-hero__logo { width: 190px; height: 69px; }
    .promo-hero h2 { font-size: 48px; }
    .promo-hero__content > p:not(.eyebrow) { margin-block: 14px 18px; font-size: 15px; }
    .promo-hero__contacts { display: grid; grid-template-columns: 1fr; width: 100%; }
    .conversion-section { padding: 48px 0 58px; border-radius: 20px 20px 0 0; }
    .conversion-grid { gap: 38px; }
    .conversion-copy h1 { font-size: 44px; }
    .conversion-copy .lead { font-size: 16px; }
    .check-list { grid-template-columns: 1fr; }
    .conversion-actions { display: grid; grid-template-columns: 1fr; }
    .quote-card { padding: 21px 17px; }
    .quote-card h2 { font-size: 26px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .trust-band__grid { grid-template-columns: 1fr; }
    .trust-band__grid > div { min-height: 70px; border-right: 0; border-bottom: 1px solid var(--line); }
    .trust-band__grid > div:last-child { border-bottom: 0; }
    .section { padding: 65px 0; }
    .section-heading h2, .audience-section h2, .faq-intro h2 { font-size: 36px; }
    .services-grid, .coverage-grid, .why-grid { grid-template-columns: 1fr; }
    .service-card h3 { min-height: 0; }
    .process-grid { grid-template-columns: 1fr; }
    .audience-section { padding-block: 58px; }
    .audience-pills span { flex: 1 1 calc(50% - 10px); display: grid; place-items: center; text-align: center; }
    .coverage-card { min-height: 260px; }
    .faq-item summary { font-size: 15px; }
    .final-cta { padding: 52px 0; }
    .final-cta__actions { width: 100%; display: grid; grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .footer-top > div:last-child { grid-column: auto; }
    .site-footer { padding-bottom: 68px; }
    .whatsapp-float { right: 14px; bottom: 80px; width: 58px; height: 58px; min-height: 0; justify-content: center; padding: 0; }
    .whatsapp-float > span:last-child { display: none; }
    .mobile-contact-bar { position: fixed; z-index: 80; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: 1fr 1fr; min-height: 62px; background: var(--white); box-shadow: 0 -10px 28px rgba(5,37,66,.15); }
    .mobile-contact-bar > * { display: grid; place-items: center; border: 0; color: var(--white); font-weight: 900; }
    .mobile-contact-bar a { background: var(--red-600); }
    .mobile-contact-bar button { background: var(--green-600); }
    .region-modal__dialog { padding: 26px 18px 20px; }
    .region-modal__dialog h2 { font-size: 28px; }
    .toast { right: 12px; bottom: 145px; left: 12px; max-width: none; }
}

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