:root {
    --blue: #0E68B2;
    --blue-2: #55B4E8;
    --gold: #A9D85F;
    --sage: #7CCB7D;
    --clay: #2F9ED8;
    --white: #ffffff;
    --light: #F0FAF5;
    --gray: #5E7B87;
    --ink: #14324A;
    --border: #D6EAF3;
    --shadow: 0 18px 45px rgba(14, 104, 178, 0.18);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", Arial, sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
    padding-top: 120px;
}

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

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

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

.topbar {
    background: var(--blue);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.86rem;
}

.topbar__inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.topbar a {
    font-weight: 700;
    color: var(--gold);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    background: var(--white);
    box-shadow: 0 8px 30px rgba(14, 104, 178, 0.11);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.site-header.is-hidden {
    transform: translateY(-100%);
}

.navbar__inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.brand img {
    width: 96px;
    max-height: 76px;
    height: auto;
    object-fit: contain;
}

.brand-secondary {
    margin-right: auto;
}

.brand-secondary img {
    width: 116px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-left: auto;
    font-weight: 700;
    color: var(--blue);
}

.nav-menu a {
    position: relative;
    transition: color 0.2s ease;
}

.nav-menu a:not(.btn)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--clay);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    transform: scaleX(1);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--blue);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: var(--radius);
    border: 1px solid transparent;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(14, 104, 178, 0.22);
}

.btn--gold {
    background: var(--gold);
    color: #14324A;
}

.btn--primary {
    background: var(--clay);
    color: var(--white);
}

.btn--outline {
    border-color: rgba(255, 255, 255, 0.8);
    color: var(--white);
}

.btn--small {
    min-height: 42px;
    padding: 0 16px;
}

.hero {
    min-height: calc(100vh - 120px);
    position: relative;
    display: grid;
    align-items: center;
    color: var(--white);
    background: linear-gradient(105deg, #08437A 0%, #0E68B2 52%, #A8DFB4 100%);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 67, 122, 0.96), rgba(14, 104, 178, 0.86) 52%, rgba(124, 203, 125, 0.52));
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin-left: max(16px, calc((100vw - 1160px) / 2));
}

.hero__logo-side {
    position: absolute;
    z-index: 1;
    right: max(32px, calc((100vw - 1160px) / 2));
    top: 24%;
    width: min(34vw, 390px);
    transform: translateY(-50%);
}

.hero__logo-side img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 24px 42px rgba(8, 67, 122, 0.28));
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0;
    font-size: 0.82rem;
    font-weight: 900;
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1 {
    margin: 0;
    font-size: clamp(2.7rem, 7vw, 5.9rem);
    line-height: 0.96;
}

h2 {
    margin: 0 0 18px;
    color: var(--blue);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.08;
}

h3 {
    margin: 0 0 10px;
    color: var(--blue);
    font-size: 1.12rem;
}

.hero__subtitle {
    max-width: 650px;
    margin: 24px 0 0;
    font-size: clamp(1.08rem, 2.5vw, 1.35rem);
    color: rgba(255, 255, 255, 0.9);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.section {
    padding: 92px 0;
}

.section--light {
    background: var(--light);
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-heading p:last-child {
    margin: 0;
    color: var(--gray);
}

.split {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}

.split__content > p {
    color: var(--gray);
}

.split__media img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.mission-grid article,
.contact-card,
.contact-form {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: 0 12px 26px rgba(14, 104, 178, 0.11);
}

.mission-grid--large {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.check-list,
.contact-list {
    padding: 0;
    margin: 24px 0 0;
    list-style: none;
}

.check-list li,
.contact-list li {
    margin: 10px 0;
    color: var(--gray);
}

.check-list li::before {
    content: "✓";
    display: inline-grid;
    place-items: center;
    width: 22px;
    height: 22px;
    margin-right: 8px;
    border-radius: 50%;
    background: rgba(169, 216, 95, 0.22);
    color: var(--blue);
    font-weight: 900;
}

.services-grid,
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.service-card,
.benefit-card,
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: 0 12px 28px rgba(14, 104, 178, 0.11);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover,
.benefit-card:hover,
.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(169, 216, 95, 0.6);
    box-shadow: var(--shadow);
}

.service-card p,
.benefit-card p,
.testimonial-card p {
    color: var(--gray);
}

.service-card a {
    display: inline-flex;
    margin-top: 8px;
    color: var(--blue-2);
    font-weight: 900;
}

.service-card__icon,
.benefit-card__icon {
    width: 54px;
    height: 54px;
    display: inline-grid;
    place-items: center;
    margin-bottom: 20px;
    border-radius: var(--radius);
    background: rgba(85, 180, 232, 0.14);
    color: var(--gold);
    border: 1px solid rgba(85, 180, 232, 0.22);
}

.service-card__icon {
    width: 108px;
    height: 108px;
    margin-bottom: 32px;
}

.service-card__icon--image::before {
    content: none;
}

.service-card__icon img {
    width: 108px;
    height: 91px;
    object-fit: cover;
}

.benefit-card__icon--sprite {
    width: 70px;
    height: 70px;
    background-image: url("../../iconos.png");
    background-repeat: no-repeat;
    background-size: 498px 486px;
    background-color: transparent;
    border: 0;
    color: transparent;
    overflow: hidden;
}

.benefit-card__icon--attention { background-position: -122px -19px; }
.benefit-card__icon--transparency { background-position: -33px -19px; }
.benefit-card__icon--professional { background-position: -301px -107px; }
.benefit-card__icon--tracking { background-position: -122px -379px; }
.benefit-card__icon--security { background-position: -391px -289px; }
.benefit-card__icon--trust { background-position: -391px -107px; }

.service-card__icon::before {
    font-size: 1.55rem;
    font-weight: 900;
}

.service-card__icon--doc::before { content: "▣"; }
.service-card__icon--search::before { content: "⌕"; }
.service-card__icon--track::before { content: "↗"; }
.service-card__icon--user::before { content: "●"; }
.service-card__icon--headset::before { content: "☎"; }
.service-card__icon--briefcase::before { content: "▤"; }

.service-card__icon--image::before {
    content: none;
    display: none;
}

.trust-band {
    padding: 58px 0;
    color: var(--white);
    background: linear-gradient(135deg, #0E68B2, #7CCB7D);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.stat {
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
    text-align: center;
}

.stat strong {
    display: block;
    color: var(--gold);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1;
}

.stat span {
    display: block;
    margin-top: 10px;
    font-weight: 700;
}

.testimonial-shell {
    position: relative;
}

.testimonial-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 48px) / 3);
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 4px;
}

.testimonial-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-height: 340px;
    scroll-snap-align: start;
    text-align: center;
}

.testimonial-card img {
    width: 82px;
    height: 82px;
    margin: 0 auto 14px;
    border-radius: 50%;
    border: 4px solid rgba(169, 216, 95, 0.38);
}

.stars {
    color: var(--gold);
    font-size: 1.2rem;
}

.testimonial-card span {
    color: var(--gray);
    font-weight: 700;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: var(--shadow);
}

.carousel-btn--prev {
    left: -18px;
}

.carousel-btn--next {
    right: -18px;
}

.benefit-card__icon {
    font-weight: 900;
}

.cta-section {
    padding: 62px 0;
    background: var(--blue);
    color: var(--white);
}

.cta-section__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cta-section h2 {
    color: var(--white);
    margin: 0;
}

.page-hero {
    padding: 96px 0;
    color: var(--white);
    background: linear-gradient(135deg, rgba(8, 67, 122, 0.95), rgba(14, 104, 178, 0.88), rgba(124, 203, 125, 0.62));
}

.page-hero .container {
    max-width: 850px;
}

.page-hero h1 {
    font-size: clamp(2.35rem, 5vw, 4.5rem);
}

.page-hero p:not(.eyebrow) {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.12rem;
}

.values-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.values-list span {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(124, 203, 125, 0.16);
    color: var(--blue);
    font-weight: 800;
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 28px;
    align-items: start;
}

.contact-form {
    display: grid;
    gap: 18px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

label {
    display: grid;
    gap: 8px;
    color: var(--blue);
    font-weight: 800;
}

input,
textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 13px 14px;
    font: inherit;
    color: var(--ink);
    background: var(--white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus {
    outline: 0;
    border-color: var(--clay);
    box-shadow: 0 0 0 4px rgba(47, 158, 216, 0.16);
}

select {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 13px 14px;
    font: inherit;
    color: var(--ink);
    background: var(--white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

select:focus {
    outline: 0;
    border-color: var(--clay);
    box-shadow: 0 0 0 4px rgba(47, 158, 216, 0.16);
}

.hp-field {
    position: absolute;
    left: -9999px;
}

.alert {
    border-radius: var(--radius);
    padding: 14px 16px;
    font-weight: 700;
}

.alert p {
    margin: 0;
}

.alert--success {
    background: #e8f7ee;
    color: #176033;
}

.alert--error {
    background: #fdecec;
    color: #8b1e1e;
}

.map-section iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
}

.site-footer {
    color: rgba(255, 255, 255, 0.78);
    background: #08437A;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr 0.9fr 1fr;
    gap: 36px;
    padding: 64px 0;
}

.footer-grid h3 {
    color: var(--white);
}

.footer-grid a,
.footer-grid p {
    display: block;
    margin: 8px 0;
}

.footer-brand img {
    width: 150px;
    height: auto;
    filter: none;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.social-links a {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--gold);
    font-weight: 900;
}

.footer-bottom {
    padding: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.modern-hero {
    min-height: calc(100vh - 120px);
    position: relative;
    display: grid;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    background: #14324A;
}

.modern-hero__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(8, 67, 122, 0.98) 0%, rgba(14, 104, 178, 0.9) 48%, rgba(124, 203, 125, 0.68) 100%);
}

.modern-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 150px;
    background: linear-gradient(180deg, rgba(20, 50, 74, 0), rgba(20, 50, 74, 0.62));
}

.modern-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.58fr);
    gap: 44px;
    align-items: center;
    padding: 72px 0;
}

.modern-hero__content h1 {
    max-width: 850px;
    font-size: clamp(2.45rem, 6vw, 5.25rem);
    line-height: 0.98;
}

.hero-badges,
.coverage-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.hero-badges span,
.coverage-list span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.84rem;
    font-weight: 800;
}

.hero-badges span::before,
.coverage-list span::before {
    content: "";
    width: 7px;
    height: 7px;
    margin-right: 8px;
    border-radius: 50%;
    background: var(--gold);
}

.hero-trust-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 690px;
    margin-top: 34px;
}

.hero-trust-row div,
.hero-panel,
.feature-strip article,
.process-card,
.map-card {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
}

.hero-trust-row div {
    padding: 18px;
}

.hero-trust-row strong {
    display: block;
    color: var(--gold);
    font-size: clamp(1.7rem, 4vw, 2.7rem);
    line-height: 1;
}

.hero-trust-row span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 700;
}

.hero-panel {
    padding: 28px;
    color: var(--white);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.hero-panel__logo {
    width: min(100%, 260px);
    height: auto;
    margin: 0 auto 22px;
    filter: drop-shadow(0 18px 30px rgba(8, 67, 122, 0.22));
}

.hero-panel__top {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.84);
    font-weight: 800;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #7ECF8D;
    box-shadow: 0 0 0 7px rgba(126, 207, 141, 0.13);
}

.hero-panel h2 {
    color: var(--white);
    font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.hero-panel p {
    color: rgba(255, 255, 255, 0.78);
}

.mini-process {
    display: grid;
    gap: 12px;
    margin: 24px 0;
}

.mini-process div {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 12px;
    align-items: center;
    padding: 13px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
}

.mini-process span {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(169, 216, 95, 0.2);
    color: var(--gold);
    font-weight: 900;
}

.mini-process p {
    margin: 0;
    color: var(--white);
    font-weight: 800;
}

.modern-company {
    background:
        linear-gradient(180deg, rgba(240, 250, 245, 0.9), rgba(255, 255, 255, 1));
}

.feature-strip {
    display: grid;
    gap: 12px;
    margin-top: 26px;
}

.feature-strip article {
    display: grid;
    grid-template-columns: 0.42fr 1fr;
    gap: 12px;
    align-items: center;
    padding: 18px;
    border-color: var(--border);
    background: var(--white);
    box-shadow: 0 10px 26px rgba(14, 104, 178, 0.09);
}

.feature-strip strong {
    color: var(--blue);
}

.feature-strip span {
    color: var(--gray);
}

.image-stack {
    position: relative;
}

.image-stack img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.floating-note {
    position: absolute;
    right: 18px;
    bottom: 18px;
    max-width: 260px;
    padding: 18px;
    border: 1px solid rgba(214, 234, 243, 0.9);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 36px rgba(14, 104, 178, 0.18);
}

.floating-note strong,
.floating-note span {
    display: block;
}

.floating-note strong {
    color: var(--blue);
}

.floating-note span {
    margin-top: 6px;
    color: var(--gray);
}

.modern-services .service-card {
    position: relative;
    overflow: hidden;
}

.modern-services .service-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--clay), var(--sage));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.24s ease;
}

.modern-services .service-card:hover::before {
    transform: scaleX(1);
}

.process-section {
    background: #14324A;
    color: var(--white);
}

.process-section h2,
.process-card h3 {
    color: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.process-card {
    position: relative;
    padding: 28px;
    min-height: 260px;
}

.process-card span {
    display: inline-grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin-bottom: 28px;
    border-radius: 50%;
    background: var(--gold);
    color: #14324A;
    font-weight: 900;
}

.process-card p {
    color: rgba(255, 255, 255, 0.74);
}

.coverage-section {
    padding: 92px 0;
    color: var(--white);
    background: linear-gradient(135deg, #0E68B2, #7CCB7D);
}

.coverage-grid,
.contact-modern__grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 44px;
    align-items: center;
}

.coverage-copy h2 {
    color: var(--white);
}

.coverage-copy p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.08rem;
}

.coverage-map {
    min-height: 420px;
    display: grid;
    place-items: center;
}

.map-card {
    position: relative;
    width: min(520px, 100%);
    min-height: 340px;
    display: grid;
    place-items: center;
    padding: 34px;
    text-align: center;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06)),
        radial-gradient(circle at 50% 45%, rgba(169, 216, 95, 0.2), transparent 42%);
}

.map-card strong {
    display: block;
    color: var(--gold);
    font-size: clamp(5rem, 12vw, 8.5rem);
    line-height: 0.9;
}

.map-card p {
    max-width: 320px;
    color: rgba(255, 255, 255, 0.84);
    font-weight: 800;
}

.pin {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 9px rgba(169, 216, 95, 0.16);
    animation: pulsePin 2.8s ease-in-out infinite;
}

.pin--one { top: 24%; left: 22%; }
.pin--two { top: 38%; right: 24%; animation-delay: 0.35s; }
.pin--three { bottom: 22%; left: 34%; animation-delay: 0.7s; }
.pin--four { bottom: 29%; right: 18%; animation-delay: 1.05s; }

@keyframes pulsePin {
    0%, 100% { transform: scale(1); opacity: 0.78; }
    50% { transform: scale(1.28); opacity: 1; }
}

.contact-modern {
    background: var(--light);
}

.contact-modern__copy p {
    color: var(--gray);
}

.contact-modern .contact-form {
    position: relative;
    border-color: rgba(85, 180, 232, 0.26);
    box-shadow: 0 20px 54px rgba(14, 104, 178, 0.16);
}

.form-note {
    margin: 0;
    color: var(--gray);
    font-size: 0.92rem;
}

@media (max-width: 980px) {
    .brand-secondary {
        display: none;
    }

    .nav-toggle {
        display: block;
        margin-left: auto;
    }

    .nav-menu {
        position: absolute;
        top: 120px;
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 16px;
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }

    .nav-menu.is-open {
        display: flex;
    }

    .nav-menu a {
        padding: 12px;
    }

    .nav-menu .btn {
        margin-top: 8px;
    }

    .split,
    .contact-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .benefits-grid,
    .mission-grid--large {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .testimonial-track {
        grid-auto-columns: calc((100% - 24px) / 2);
    }

    .modern-hero__grid,
    .coverage-grid,
    .contact-modern__grid {
        grid-template-columns: 1fr;
    }

    .modern-hero__grid {
        padding: 52px 0;
    }

    .hero-panel {
        max-width: 620px;
    }

    .hero__logo-side {
        position: relative;
        right: auto;
        top: auto;
        width: min(62vw, 280px);
        margin: 34px auto 0;
        transform: none;
    }

    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .coverage-map {
        min-height: 340px;
    }
}

@media (max-width: 640px) {
    body {
        padding-top: 112px;
    }

    .topbar__inner,
    .cta-section__inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .navbar__inner {
        min-height: 74px;
    }

    .brand img {
        width: 84px;
        max-height: 68px;
    }

    .nav-menu {
        top: 112px;
    }

    .hero {
        min-height: calc(100vh - 112px);
    }

    .hero__content {
        margin-left: auto;
    }

    .hero__logo-side {
        width: min(74vw, 240px);
    }

    .section {
        padding: 68px 0;
    }

    .mission-grid,
    .services-grid,
    .benefits-grid,
    .stats-grid,
    .form-grid,
    .mission-grid--large {
        grid-template-columns: 1fr;
    }

    .testimonial-track {
        grid-auto-columns: 100%;
    }

    .carousel-btn {
        display: none;
    }

    .modern-hero {
        min-height: calc(100vh - 112px);
    }

    .hero-badges {
        gap: 8px;
    }

    .hero-trust-row,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        padding: 22px;
    }

    .feature-strip article {
        grid-template-columns: 1fr;
    }

    .floating-note {
        position: static;
        margin-top: 14px;
        max-width: none;
    }

    .coverage-section {
        padding: 68px 0;
    }

    .map-card {
        min-height: 280px;
    }
}
