:root {
    --navy: #062864;
    --navy-2: #0a3d91;
    --blue: #0c57c8;
    --blue-soft: #eaf3ff;
    --teal: #0aa6ae;
    --teal-2: #0bbfba;
    --teal-soft: #e8fbfb;
    --ink: #071a3d;
    --muted: #536078;
    --line: #dfe7f2;
    --soft: #f2f7fb;
    --white: #ffffff;
    --shadow-sm: 0 8px 20px rgba(6, 40, 100, .08);
    --shadow: 0 18px 46px rgba(6, 40, 100, .13);
    --radius: 18px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

a:hover {
    color: var(--teal);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

svg {
    width: 1.2em;
    height: 1.2em;
    flex: 0 0 auto;
}

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

.narrow {
    max-width: 860px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    top: -44px;
    left: 16px;
    background: var(--navy);
    color: white;
    padding: 10px 14px;
    z-index: 999;
    border-radius: 10px;
}

.skip-link:focus {
    top: 12px;
}

.topbar {
    background: linear-gradient(90deg, var(--navy), var(--navy-2));
    color: #fff;
    font-weight: 800;
    font-size: 12px;
}

.topbar__inner {
    min-height: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.topbar a,
.topbar span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.topbar a:hover {
    color: #c9f7f6;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 var(--line), 0 10px 28px rgba(6, 40, 100, .04);
}

.navwrap__inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand img {
    width: 182px;
    height: auto;
}

.primary-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.primary-nav a {
    display: block;
    padding: 12px 11px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .025em;
}

.primary-nav a:hover {
    color: var(--teal);
}

.primary-nav .is-active > a {
    color: var(--blue);
    box-shadow: inset 0 -3px 0 var(--blue);
}

.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 260px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
    display: none !important;
    padding: 8px !important;
}

.dropdown--columns {
    columns: 2;
    min-width: 360px;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
    display: block !important;
}

.dropdown a {
    padding: 10px 12px;
    text-transform: none;
    font-weight: 800;
    letter-spacing: 0;
}

.nav-cta {
    white-space: nowrap;
}

.menu-toggle {
    display: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 44px;
    padding: 12px 20px;
    border-radius: 12px;
    border: 0;
    font-size: 15px;
    font-weight: 900;
    color: white;
    background: var(--blue);
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(12, 87, 200, .22);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn:hover {
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(12, 87, 200, .25);
}

.btn--primary {
    background: linear-gradient(135deg, var(--navy-2), var(--blue));
}

.btn--teal,
.btn--whatsapp {
    background: linear-gradient(135deg, var(--teal), var(--teal-2));
    box-shadow: 0 10px 24px rgba(10, 166, 174, .22);
}

.btn--outline {
    color: var(--navy);
    background: white;
    border: 1px solid var(--navy);
    box-shadow: none;
}

.btn--outline:hover {
    color: white;
    background: var(--navy);
}

.btn--small {
    min-height: 36px;
    padding: 8px 14px;
    font-size: 13px;
    border-radius: 9px;
}

.btn--phone span {
    font-size: 16px;
    letter-spacing: .01em;
}

.text-link {
    color: var(--blue);
    font-weight: 900;
}

.text-link::after {
    content: " →";
}

.hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(180deg, #f9fcff 0%, #f2f7fb 100%);
}

.hero__grid {
    padding: 36px 0 42px;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
    gap: 42px;
    align-items: center;
}

.hero__content {
    max-width: 620px;
    padding: 18px 0;
}

.hero__visual {
    position: relative;
    min-height: 100%;
    padding-right: 38px;
}

.hero__media {
    display: block;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 22px 54px rgba(6, 40, 100, .16);
    border: 1px solid rgba(255, 255, 255, .9);
    background: #fff;
}

.hero__media img {
    width: 100%;
    min-height: 520px;
    object-fit: cover;
    object-position: center;
}

.eyebrow {
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 950;
    font-size: 13px;
    margin: 0 0 8px;
}

.eyebrow--hero {
    color: var(--teal);
}

h1,
h2,
h3 {
    color: var(--ink);
    line-height: 1.08;
    margin: 0 0 14px;
}

h1 {
    font-size: clamp(42px, 5vw, 64px);
    letter-spacing: -.045em;
}

h2 {
    font-size: clamp(28px, 3.3vw, 42px);
    letter-spacing: -.035em;
}

h3 {
    font-size: 20px;
}

p {
    margin: 0 0 16px;
}

.hero__subtitle,
.lead {
    font-size: 19px;
    color: var(--ink);
    font-weight: 720;
    max-width: 610px;
}

.hero__checks,
.check-list,
.plain-list {
    list-style: none;
    padding: 0;
    margin: 22px 0;
}

.hero__checks li,
.check-list li {
    position: relative;
    padding-left: 31px;
    margin: 9px 0;
    font-weight: 760;
}

.hero__checks li::before,
.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1px;
    width: 21px;
    height: 21px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--teal);
    color: white;
    font-size: 13px;
    font-weight: 950;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.hero__actions--center {
    justify-content: center;
}

.stats-card {
    justify-self: end;
    width: min(245px, 100%);
    padding: 22px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, .88);
    backdrop-filter: blur(8px);
}

.stats-card--overlay {
    position: absolute;
    right: 0;
    bottom: 26px;
    z-index: 2;
}

.stats-card div {
    display: grid;
    gap: 1px;
    margin: 0;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
}

.stats-card div:first-child {
    padding-top: 0;
}

.stats-card div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.stats-card strong {
    color: var(--teal);
    font-size: 22px;
    line-height: 1;
}

.stats-card span {
    font-weight: 760;
    font-size: 13px;
    color: var(--ink);
}

.section {
    padding: 64px 0;
}

.section-tight {
    padding: 28px 0;
}

.section--soft {
    background: linear-gradient(180deg, #f7fbff, var(--soft));
}

.page-hero {
    padding: 72px 0;
    background: linear-gradient(135deg, #f5fbff, #fff);
    border-bottom: 1px solid var(--line);
    text-align: center;
}

.page-hero p {
    color: var(--muted);
    font-size: 18px;
}

.page-hero__grid {
    display: grid;
    grid-template-columns: 1fr 330px;
    gap: 34px;
    text-align: left;
    align-items: center;
}

.quick-services__grid,
.card-grid,
.review-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.quick-services__grid--compact {
    grid-template-columns: repeat(3, 1fr);
}

.quick-card,
.service-card,
.review-card,
.price-card,
.summary-card,
.contact-form,
.map-card,
.split-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.quick-card {
    min-height: 104px;
    display: grid;
    place-items: center;
    text-align: center;
    gap: 8px;
    padding: 17px;
    font-weight: 950;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.quick-card span,
.service-card__icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--blue);
    background: var(--blue-soft);
    font-size: 25px;
}

.quick-card:hover,
.service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: rgba(10, 166, 174, .35);
}

.service-card,
.review-card {
    padding: 26px;
}

.service-card h2 {
    font-size: 22px;
    margin-top: 14px;
}

.card-grid--zones {
    grid-template-columns: repeat(2, 1fr);
}

.split-card {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 34px;
    padding: 28px;
    align-items: center;
}

.split-card img {
    border-radius: 16px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.two-columns,
.coverage-grid,
.contact-grid,
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: center;
}

.align-start {
    align-items: start;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.price-grid--large {
    max-width: 920px;
    margin: 0 auto;
}

.price-card {
    padding: 26px;
    text-align: center;
}

.price-card--large {
    text-align: left;
}

.price-card__price {
    display: block;
    font-size: clamp(36px, 4vw, 46px);
    line-height: 1;
    color: var(--teal);
    margin-bottom: 12px;
    letter-spacing: -.03em;
}

.zone-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 22px;
}

.zone-list a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: white;
    font-weight: 850;
}

.zone-list a:hover {
    border-color: rgba(10, 166, 174, .45);
    box-shadow: var(--shadow-sm);
}

.coverage-grid picture img,
.map-card img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.review-grid {
    grid-template-columns: repeat(3, 1fr);
}

.stars {
    color: #ffbf00;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.faq-list details {
    background: white;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 17px 18px;
    margin-bottom: 12px;
}

.faq-list summary {
    cursor: pointer;
    font-weight: 950;
    color: var(--navy);
}

.faq-list p {
    margin-top: 12px;
    color: var(--muted);
}

.map-card {
    display: grid;
    grid-template-columns: 330px 1fr;
    gap: 24px;
    align-items: center;
    padding: 22px;
}

.summary-card {
    padding: 26px;
}

.summary-card span {
    color: var(--teal);
    font-size: 42px;
}

.summary-card--plain {
    box-shadow: var(--shadow);
}

.steps-list {
    counter-reset: steps;
    padding: 0;
    list-style: none;
    margin: 22px 0 0;
}

.steps-list li {
    counter-increment: steps;
    position: relative;
    padding: 16px 16px 16px 58px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 14px;
    margin-bottom: 12px;
    font-weight: 750;
}

.steps-list li::before {
    content: counter(steps);
    position: absolute;
    left: 16px;
    top: 14px;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: white;
    background: var(--blue);
    font-weight: 950;
}

.text-page {
    font-size: 18px;
}

.text-page h2 {
    font-size: 28px;
    margin-top: 32px;
}

.article-cta {
    margin-top: 34px;
    padding: 26px;
    border-radius: var(--radius);
    background: var(--soft);
    border: 1px solid var(--line);
}

.plain-list li {
    margin-bottom: 11px;
}

.contact-form {
    padding: 26px;
    display: grid;
    gap: 14px;
}

.contact-form label {
    display: grid;
    gap: 6px;
    font-weight: 850;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 13px 14px;
    font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 3px solid rgba(10, 166, 174, .16);
    border-color: var(--teal);
}

.checkbox {
    grid-template-columns: auto 1fr !important;
    align-items: start;
    font-size: 14px;
}

.cta-band {
    background: linear-gradient(135deg, var(--navy-2), var(--blue));
    color: white;
}

.cta-band__inner {
    display: grid;
    grid-template-columns: 1fr 1fr .8fr;
    gap: 24px;
    min-height: 92px;
    align-items: center;
}

.cta-band__item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: white;
}

.cta-band__item svg {
    width: 34px;
    height: 34px;
}

.cta-band__item strong {
    display: block;
    font-size: clamp(22px, 2.1vw, 28px);
    line-height: 1;
    letter-spacing: -.02em;
}

.cta-band__item span {
    display: block;
    font-weight: 850;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .04em;
}

.cta-band p {
    margin: 0;
    font-family: Georgia, serif;
    font-style: italic;
    font-size: clamp(18px, 2vw, 22px);
}

.site-footer {
    background: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr .8fr 1.05fr 1fr;
    gap: 40px;
    padding: 38px 0;
}

.footer-logo {
    width: 170px;
    margin-bottom: 10px;
}

.footer-credential {
    display: inline-flex;
    align-items: center;
    margin: 4px 0 0;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(10, 166, 174, .10);
    color: var(--blue);
    font-size: 14px;
}

.site-footer h2 {
    font-size: 15px;
    text-transform: uppercase;
    color: var(--blue);
}

.site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer li {
    margin: 7px 0;
    color: var(--muted);
}

.site-footer a:hover {
    color: var(--teal);
}

.socials {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.socials a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--blue);
    color: white;
}

.footer-bottom {
    background: var(--blue);
    color: white;
    padding: 12px 0;
    font-size: 13px;
}

.footer-bottom__inner {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-bottom nav {
    display: flex;
    gap: 16px;
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #1fc768;
    color: white;
    display: grid;
    place-items: center;
    font-size: 28px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, .18);
    z-index: 60;
}

@media (max-width: 1140px) {
    .nav-cta {
        display: none;
    }

    .primary-nav a {
        padding: 12px 8px;
        font-size: 12px;
    }

    .brand img {
        width: 166px;
    }
}

@media (max-width: 1040px) {
    .hero__grid,
    .page-hero__grid {
        grid-template-columns: 1fr;
    }

    .hero__grid {
        gap: 24px;
    }

    .hero__visual {
        padding-right: 0;
    }

    .hero__media img {
        min-height: 420px;
    }

    .stats-card,
    .stats-card--overlay {
        justify-self: start;
        position: static;
        width: min(100%, 720px);
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        margin-top: 16px;
    }

    .stats-card div {
        padding: 0 14px;
        border-bottom: 0;
        border-right: 1px solid var(--line);
    }

    .stats-card div:first-child {
        padding-left: 0;
    }

    .stats-card div:last-child {
        border-right: 0;
        padding-right: 0;
    }

    .quick-services__grid,
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .container {
        width: min(100% - 24px, var(--container));
    }

    .topbar__inner {
        gap: 10px;
        padding: 8px 0;
    }

    .topbar a:nth-of-type(2),
    .topbar a:nth-of-type(3) {
        display: none;
    }

    .navwrap__inner {
        min-height: 72px;
    }

    .brand img {
        width: 150px;
    }

    .menu-toggle {
        display: grid;
        gap: 4px;
        width: 44px;
        height: 44px;
        border: 1px solid var(--line);
        border-radius: 10px;
        background: white;
        place-content: center;
    }

    .menu-toggle span:not(.sr-only) {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--navy);
    }

    .primary-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow);
        display: none;
    }

    .primary-nav.is-open {
        display: block;
    }

    .primary-nav ul {
        display: block;
        padding: 10px 16px 18px;
    }

    .primary-nav a {
        padding: 12px 0;
        font-size: 13px;
    }

    .dropdown {
        position: static;
        box-shadow: none;
        border-radius: 10px;
        min-width: 0;
        display: block !important;
        padding: 0 0 0 14px !important;
        border: 0;
    }

    .dropdown--columns {
        columns: 1;
    }

    .hero__grid {
        padding: 28px 0 34px;
    }

    .hero__visual {
        order: 2;
    }

    .hero__media {
        border-radius: 22px;
    }

    .hero__media img {
        min-height: 320px;
    }

    .hero__content {
        padding: 0;
    }

    h1 {
        font-size: 39px;
    }

    .hero__subtitle {
        font-size: 17px;
    }

    .hero__actions .btn {
        width: 100%;
    }

    .stats-card {
        grid-template-columns: repeat(2, 1fr);
        padding: 18px;
    }

    .stats-card div {
        padding: 10px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .stats-card div:nth-last-child(-n+2) {
        border-bottom: 0;
    }

    .quick-services__grid,
    .card-grid,
    .review-grid,
    .price-grid,
    .two-columns,
    .coverage-grid,
    .contact-grid,
    .faq-grid,
    .map-card,
    .split-card,
    .footer-grid,
    .cta-band__inner {
        grid-template-columns: 1fr;
    }

    .zone-list {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 44px 0;
    }

    .page-hero {
        padding: 48px 0;
    }

    .quick-card {
        min-height: 94px;
    }

    .cta-band__inner {
        padding: 18px 0;
        gap: 14px;
    }

    .cta-band__item strong {
        font-size: 23px;
    }

    .cta-band p {
        display: none;
    }

    .footer-bottom__inner {
        display: grid;
    }

    .floating-whatsapp {
        width: 54px;
        height: 54px;
        right: 16px;
        bottom: 16px;
    }
}

/* === Premium refinements 2026-06-03 === */
body {
    font-size: 16.5px;
    line-height: 1.62;
}

body.menu-open {
    overflow: hidden;
}

.site-header {
    transition: box-shadow .22s ease, background-color .22s ease, backdrop-filter .22s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, .985);
    box-shadow: 0 1px 0 rgba(6, 40, 100, .06), 0 16px 42px rgba(6, 40, 100, .08);
}

.topbar {
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: .015em;
}

.topbar__inner {
    min-height: 34px;
    gap: 18px;
}

.navwrap__inner {
    min-height: 90px;
    gap: 28px;
}

.brand img {
    width: 198px;
}

.primary-nav ul {
    gap: 8px;
}

.primary-nav a {
    position: relative;
    padding: 13px 14px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 900;
    transition: color .18s ease, background-color .18s ease, transform .18s ease;
}

.primary-nav a:hover {
    color: var(--blue);
    background: rgba(12, 87, 200, .06);
}

.primary-nav .is-active > a {
    color: var(--blue);
    background: rgba(12, 87, 200, .05);
    box-shadow: inset 0 -3px 0 var(--blue);
}

.dropdown {
    top: calc(100% + 14px);
    border-radius: 18px;
    box-shadow: 0 24px 50px rgba(6, 40, 100, .12);
}

.btn {
    min-height: 48px;
    padding: 12px 22px;
    border-radius: 14px;
    border: 1px solid transparent;
    font-size: 15px;
    letter-spacing: .01em;
}

.btn--primary {
    background: linear-gradient(135deg, #0b3f96, #0c57c8 80%);
}

.btn--teal,
.btn--whatsapp {
    background: linear-gradient(135deg, #0ea6ad, #16c4b8 92%);
}

.btn--outline {
    border-color: rgba(6, 40, 100, .16);
}

.btn--phone span {
    font-size: 17px;
}

.nav-cta {
    padding-inline: 24px;
    box-shadow: 0 14px 30px rgba(10, 166, 174, .18);
}

.hero {
    background:
        radial-gradient(circle at 0% 0%, rgba(12, 87, 200, .07), transparent 28%),
        radial-gradient(circle at 100% 0%, rgba(10, 166, 174, .08), transparent 30%),
        linear-gradient(180deg, #fbfdff 0%, #f4f8fc 100%);
}

.hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(430px, .96fr);
    gap: 54px;
    padding: 44px 0 50px;
}

.hero__content {
    max-width: 640px;
    padding: 10px 0;
}

.eyebrow--hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(10, 166, 174, .10);
    border: 1px solid rgba(10, 166, 174, .18);
    line-height: 1;
}

h1 {
    font-size: clamp(46px, 5.4vw, 70px);
    letter-spacing: -.05em;
    margin-bottom: 18px;
}

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

.hero__subtitle {
    font-size: 19px;
    line-height: 1.65;
    color: #14315f;
    max-width: 610px;
    margin-bottom: 18px;
}

.hero__pillrow {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 18px;
}

.hero__pill {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(6, 40, 100, .10);
    box-shadow: 0 10px 24px rgba(6, 40, 100, .05);
    font-size: 13px;
    font-weight: 850;
    color: var(--ink);
}

.hero__pill--credential {
    color: var(--blue);
    background: rgba(10, 166, 174, .12);
    border-color: rgba(10, 166, 174, .28);
}

.hero__checks {
    margin: 20px 0 24px;
}

.hero__checks li {
    margin: 10px 0;
    font-weight: 760;
}

.hero__actions {
    gap: 16px;
}

.hero__microcopy {
    margin-top: 16px;
    font-size: 14px;
    color: var(--muted);
    font-weight: 700;
}

.hero__visual {
    padding-right: 44px;
}

.hero__visual::after {
    content: "";
    position: absolute;
    right: -12px;
    bottom: 56px;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(10, 166, 174, .16) 0%, rgba(10, 166, 174, 0) 70%);
    pointer-events: none;
}

.hero__media {
    border-radius: 34px;
    box-shadow: 0 24px 60px rgba(6, 40, 100, .16);
}

.hero__media img {
    min-height: 560px;
}

.stats-card {
    width: min(260px, 100%);
    padding: 24px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .97);
}

.stats-card--overlay {
    right: 0;
    bottom: 30px;
}

.stats-card strong {
    font-size: 24px;
}

.stats-card span {
    font-size: 13px;
}

.section {
    padding: 72px 0;
}

.section-tight {
    padding: 28px 0 10px;
}

.quick-card,
.service-card,
.review-card,
.price-card,
.summary-card,
.contact-form,
.map-card,
.split-card {
    border-radius: 22px;
    box-shadow: 0 16px 34px rgba(6, 40, 100, .06);
}

.quick-card {
    min-height: 112px;
}

.quick-card span,
.service-card__icon {
    width: 56px;
    height: 56px;
}

.split-card {
    gap: 40px;
    padding: 32px;
}

.price-card,
.review-card,
.service-card {
    padding: 28px;
}

.price-card__price {
    margin-bottom: 14px;
}

.review-card p,
.price-card p,
.split-card p,
.coverage-grid p,
.map-card p,
.page-hero p {
    color: var(--muted);
}

.cta-band__inner {
    min-height: 88px;
}

.cta-band__item {
    gap: 12px;
}

.cta-band__item strong {
    font-size: clamp(20px, 2vw, 24px);
}

.cta-band__item span {
    margin-bottom: 4px;
}

.footer-grid {
    padding: 44px 0;
    gap: 34px;
}

.site-footer p,
.site-footer li {
    font-size: 15px;
}

.socials a {
    width: 38px;
    height: 38px;
}

.floating-whatsapp {
    width: 58px;
    height: 58px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, .18);
}

@media (max-width: 1140px) {
    .brand img {
        width: 180px;
    }

    .primary-nav a {
        padding: 12px 10px;
        font-size: 12.5px;
    }

    .hero__grid {
        gap: 40px;
        grid-template-columns: minmax(0, 1fr) minmax(390px, .9fr);
    }
}

@media (max-width: 1040px) {
    .topbar__inner {
        gap: 14px;
    }

    .hero__grid {
        padding-top: 34px;
        gap: 26px;
    }

    .hero__visual {
        padding-right: 0;
    }

    .hero__visual::after {
        display: none;
    }

    .hero__media img {
        min-height: 430px;
    }

    .stats-card,
    .stats-card--overlay {
        margin-top: 18px;
    }
}

@media (max-width: 760px) {
    .topbar {
        font-size: 11px;
    }

    .topbar__inner {
        min-height: auto;
        padding: 8px 0;
        gap: 8px 14px;
    }

    .topbar a:nth-of-type(3) {
        display: none;
    }

    .navwrap__inner {
        min-height: 76px;
        gap: 14px;
    }

     .brand img {
        width: 120px;
        height:auto;
    }

    .menu-toggle {
        border-radius: 12px;
        box-shadow: 0 8px 18px rgba(6, 40, 100, .06);
    }

    .primary-nav {
        left: 12px;
        right: 12px;
        top: calc(100% + 8px);
        border: 1px solid var(--line);
        border-radius: 18px;
        overflow: hidden;
    }

    .primary-nav ul {
        padding: 14px 18px 18px;
    }

    .primary-nav a {
        padding: 13px 2px;
        border-radius: 0;
    }

    .hero__grid {
        padding: 26px 0 34px;
    }

    h1 {
        font-size: 39px;
        letter-spacing: -.045em;
    }

    .hero__subtitle {
        font-size: 17px;
        line-height: 1.6;
    }

    .hero__pillrow {
        gap: 8px;
    }

    .hero__pill {
        min-height: 32px;
        font-size: 12px;
    }

    .hero__media {
        border-radius: 24px;
    }

    .hero__media img {
        min-height: 320px;
    }

    .stats-card {
        border-radius: 18px;
        padding: 18px;
    }

    .section {
        padding: 52px 0;
    }

    .section-tight {
        padding: 16px 0 6px;
    }

    .split-card,
    .map-card,
    .price-card,
    .review-card,
    .contact-form,
    .summary-card,
    .service-card {
        padding: 22px;
    }

    .quick-card {
        min-height: 96px;
        padding: 14px;
    }

    .quick-card strong {
        font-size: 14px;
        line-height: 1.35;
    }

    .cta-band__item strong {
        font-size: 21px;
    }

    .footer-grid {
        padding: 34px 0;
    }

    .floating-whatsapp {
        width: 56px;
        height: 56px;
    }
}

/* === Commercial conversion upgrade 2026-06-03 === */
.section-heading {
    margin-bottom: 26px;
}

.section-heading--inline {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
}

.section-heading--center {
    text-align: center;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.lead--center {
    margin-left: auto;
    margin-right: auto;
}

.section--accent {
    background: linear-gradient(135deg, #082b6a 0%, #0c57c8 55%, #0ea6ad 100%);
    color: white;
}

.section--accent h2,
.section--accent p {
    color: white;
}

.eyebrow--light {
    color: #d8ffff;
}

.trust-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.trust-badge {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 14px;
    align-items: start;
    padding: 18px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 14px 32px rgba(6, 40, 100, .06);
}

.trust-badge__icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: var(--teal);
    background: rgba(10, 166, 174, .1);
}

.trust-badge strong {
    display: block;
    margin: 2px 0 6px;
    font-size: 16px;
}

.trust-badge p {
    margin: 0;
    font-size: 14px;
    color: var(--muted);
}

.conversion-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 28px;
}

.conversion-step {
    position: relative;
    padding: 28px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 18px 34px rgba(6, 40, 100, .06);
}

.conversion-step__num {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--navy-2), var(--blue));
    color: white;
    font-size: 18px;
    font-weight: 950;
}

.conversion-step p {
    margin-bottom: 0;
    color: var(--muted);
}

.conversion-panel {
    margin-top: 24px;
    padding: 24px 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(232,251,251,.98));
    border: 1px solid rgba(10, 166, 174, .16);
    box-shadow: 0 16px 32px rgba(6, 40, 100, .06);
}

.conversion-panel strong {
    display: block;
    margin-bottom: 6px;
    font-size: 20px;
}

.conversion-panel p {
    margin: 0;
    color: var(--muted);
}

.conversion-panel__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.review-grid--premium {
    gap: 24px;
}

.review-card--premium {
    position: relative;
    overflow: hidden;
    padding: 28px;
    border-radius: 24px;
    border: 1px solid rgba(12, 87, 200, .09);
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(247,251,255,1) 100%);
}

.review-card--premium::before {
    content: '“';
    position: absolute;
    top: 10px;
    right: 18px;
    color: rgba(12, 87, 200, .09);
    font-size: 100px;
    line-height: 1;
    font-family: Georgia, serif;
}

.review-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.review-card__verified {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(10, 166, 174, .1);
    color: var(--teal);
    font-size: 12px;
    font-weight: 850;
}

.review-card__quote {
    position: relative;
    z-index: 1;
    font-size: 17px;
    line-height: 1.7;
    color: var(--ink) !important;
    margin-bottom: 20px;
}

.review-card__footer {
    display: grid;
    gap: 4px;
}

.review-card__footer strong {
    font-size: 16px;
}

.review-card__footer span {
    font-size: 13px;
    font-weight: 800;
    color: var(--muted);
}

.cta-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 32px;
    border-radius: 28px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.14), 0 18px 40px rgba(0,0,0,.12);
}

.cta-card__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: end;
}

.sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    transform: translateY(calc(100% + 20px));
    transition: transform .24s ease;
    pointer-events: none;
}

.sticky-cta.is-visible {
    transform: translateY(0);
}

.sticky-cta__inner {
    margin-bottom: 18px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(6, 40, 100, .1);
    box-shadow: 0 22px 46px rgba(6, 40, 100, .16);
    backdrop-filter: blur(14px);
    pointer-events: auto;
}

.sticky-cta__copy {
    display: grid;
    gap: 3px;
}

.sticky-cta__copy strong {
    font-size: 17px;
}

.sticky-cta__copy span {
    color: var(--muted);
    font-weight: 700;
    font-size: 14px;
}

.sticky-cta__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.mobile-sticky-cta {
    display: none;
}

@media (max-width: 1040px) {
    .trust-strip__grid,
    .conversion-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .conversion-panel,
    .cta-card {
        flex-direction: column;
        align-items: start;
    }

    .cta-card__actions {
        justify-content: start;
    }
}

@media (max-width: 760px) {
    body {
        padding-bottom: 82px;
    }

    .section-heading--inline {
        align-items: start;
        flex-direction: column;
    }

    .trust-strip__grid,
    .conversion-steps {
        grid-template-columns: 1fr;
    }

    .trust-badge,
    .conversion-step,
    .cta-card {
        border-radius: 20px;
    }

    .conversion-step,
    .trust-badge {
        padding: 22px;
    }

    .conversion-panel {
        padding: 20px;
        border-radius: 20px;
    }

    .conversion-panel__actions,
    .cta-card__actions {
        width: 100%;
    }

    .conversion-panel__actions .btn,
    .cta-card__actions .btn {
        width: 100%;
    }

    .review-card--premium {
        padding: 22px;
    }

    .review-card__top {
        flex-direction: column;
        align-items: start;
    }

    .review-card__quote {
        font-size: 16px;
    }

    .sticky-cta {
        display: none;
    }

    .mobile-sticky-cta {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 75;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        box-shadow: 0 -10px 28px rgba(6, 40, 100, .14);
    }

    .mobile-sticky-cta__btn {
        min-height: 64px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        color: white;
        font-weight: 900;
        font-size: 15px;
    }

    .mobile-sticky-cta__btn--phone {
        background: linear-gradient(135deg, #0b3f96, #0c57c8);
    }

    .mobile-sticky-cta__btn--whatsapp {
        background: linear-gradient(135deg, #0ea6ad, #16c4b8);
    }

    .mobile-sticky-cta__btn:hover {
        color: white;
    }

    .floating-whatsapp {
        display: none;
    }
}


/* === Google Maps embed instead of static map image === */
.map-card--embed {
    grid-template-columns: 340px 1fr;
    overflow: hidden;
}

.map-card__content {
    align-self: center;
}

.google-map {
    position: relative;
    min-height: 320px;
    overflow: hidden;
    border-radius: 18px;
    background: var(--soft);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line);
}

.google-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

@media (max-width: 760px) {
    .map-card--embed {
        grid-template-columns: 1fr;
    }

    .google-map {
        min-height: 360px;
        border-radius: 16px;
    }
}


/* === Menu cleanup: prevent "Sobre mí" wrapping/downshift === */
.navwrap__inner {
    gap: 18px;
}

.brand {
    flex: 0 0 auto;
}

.brand img {
    width: 176px;
}

.primary-nav {
    flex: 1 1 auto;
    min-width: 0;
}

.primary-nav ul {
    justify-content: center;
    flex-wrap: nowrap;
    gap: 4px;
}

.primary-nav li,
.primary-nav a {
    white-space: nowrap;
}

.primary-nav a {
    padding: 11px 9px;
    font-size: 12.5px;
    letter-spacing: .018em;
}

.nav-cta {
    flex: 0 0 auto;
    padding-inline: 18px;
}

@media (max-width: 1220px) {
    .brand img {
        width: 160px;
    }

    .primary-nav a {
        padding: 10px 7px;
        font-size: 12px;
    }

    .nav-cta {
        padding-inline: 15px;
    }
}

@media (max-width: 1080px) {
    .nav-cta {
        display: none;
    }

    .brand img {
        width: 170px;
    }

    .primary-nav a {
        padding: 11px 9px;
        font-size: 12.5px;
    }
}

@media (max-width: 760px) {
    .brand img {
        width: 156px;
    }

    .primary-nav ul {
        display: block;
    }

    .primary-nav li,
    .primary-nav a {
        white-space: normal;
    }
}

/* ===================================
   HERO MOBILE FIX DEFINITIVO
=================================== */

@media (max-width:760px){

    .hero__grid{
        display:grid !important;
        grid-template-columns:1fr !important;
        gap:20px !important;
    }

    .hero__content{
        max-width:100% !important;
        width:100% !important;
        order:2 !important;
    }

    .hero__visual{
        width:100% !important;
        max-width:100% !important;
        padding-right:0 !important;
        order:1 !important;
    }

    .hero__visual::after{
        display:none !important;
    }

    .hero__media{
        width:100% !important;
    }

    .hero__media img{
        width:100% !important;
        height:240px !important;
        min-height:240px !important;
        object-fit:cover !important;
    }

    .stats-card--overlay{
        position:relative !important;
        inset:auto !important;
        width:100% !important;
        margin-top:16px !important;

        display:grid !important;
        grid-template-columns:1fr 1fr !important;
        gap:0 !important;
    }

    .hero h1{
        font-size:36px !important;
        line-height:1.1 !important;
        max-width:100% !important;
    }

    .hero__subtitle{
        max-width:100% !important;
    }
}

@media (max-width:480px){

    .stats-card--overlay{
        grid-template-columns:1fr !important;
    }

    .hero h1{
        font-size:30px !important;
    }
}

/* SEO/conversión: ajustes finales 2026-06-04 */
.hero h1 {
    max-width: 900px;
}

.stats-card strong {
    line-height: 1.05;
}

.stats-card div:nth-child(2) strong {
    font-size: clamp(18px, 2.2vw, 24px);
}

.trust-strip__grid--cards {
    margin-top: 22px;
}

.service-local-block .zone-list--compact {
    align-content: start;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-priority__actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.contact-form button svg {
    margin-right: 6px;
}

.socials:empty {
    display: none;
}

@media (max-width: 760px) {
    .service-local-block .zone-list--compact {
        grid-template-columns: 1fr;
    }

    .nav-cta {
        display: none;
    }
}

/* Reseñas automáticas de Google Maps */
.google-reviews {
    background: #fff;
    border: 1px solid rgba(10, 35, 66, .08);
    border-radius: 26px;
    box-shadow: 0 22px 60px rgba(10, 35, 66, .08);
    margin-top: 24px;
    padding: 28px;
}

.google-reviews--compact {
    margin-bottom: 24px;
}

.google-reviews__head {
    align-items: flex-start;
    display: flex;
    gap: 18px;
    justify-content: space-between;
    margin-bottom: 18px;
}

.google-reviews__head h2,
.google-reviews__head h3 {
    margin-bottom: 0;
}

.google-reviews__status {
    background: rgba(11, 119, 189, .08);
    border-radius: 16px;
    color: var(--color-text);
    line-height: 1.55;
    padding: 16px 18px;
}

.google-reviews__status a,
.google-reviews__attribution a {
    color: var(--color-primary);
    font-weight: 800;
}

.google-reviews__summary {
    align-items: center;
    background: linear-gradient(135deg, rgba(11, 119, 189, .09), rgba(19, 184, 166, .10));
    border-radius: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    margin-bottom: 18px;
    padding: 16px 18px;
}

.google-reviews__summary strong {
    color: var(--color-primary-700);
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1;
}

.google-reviews__summary span {
    color: var(--color-muted);
    font-weight: 700;
}

.google-reviews__summary a {
    color: var(--color-primary);
    font-weight: 900;
}

.google-reviews__grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.google-review-card {
    background: #fff;
    border: 1px solid rgba(10, 35, 66, .08);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 100%;
    padding: 18px;
}

.google-review-card__top {
    align-items: flex-start;
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.google-review-card__author {
    color: var(--color-text);
    display: block;
    font-weight: 900;
    line-height: 1.2;
    text-decoration: none;
}

.google-review-card__time {
    color: var(--color-muted);
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-top: 4px;
}

.google-review-card__stars {
    color: #f4a622;
    flex: 0 0 auto;
    font-size: 15px;
    letter-spacing: 1px;
    white-space: nowrap;
}

.google-review-card p {
    color: var(--color-muted);
    line-height: 1.65;
    margin: 0;
}

.google-reviews__attribution {
    color: var(--color-muted);
    font-size: 13px;
    font-weight: 700;
    margin: 16px 0 0;
}

@media (max-width: 900px) {
    .google-reviews__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .google-reviews {
        border-radius: 20px;
        padding: 20px;
    }

    .google-reviews__head,
    .google-review-card__top {
        flex-direction: column;
    }
}



/* Reviews */

.review-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:16px;
    padding:24px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.review-card__header{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    margin-bottom:16px;
}

.review-card__header h3{
    margin:0;
    font-size:18px;
}

.review-card p{
    margin:0;
    line-height:1.7;
}