/* ============================================
   LOCKTOP - Redesign Completo
   Clean, Professional, Mobile-first
   ============================================ */

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1e3a5f;
    --primary-dark: #152d4a;
    --primary-light: #2a4f7a;
    --primary-50: #eef3f9;
    --primary-100: #d4e0ed;

    --accent: #f59e0b;
    --accent-dark: #d97706;
    --accent-light: #fbbf24;

    --text: #1a1a2e;
    --gray: #6b7280;
    --gray-light: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;

    --white: #ffffff;
    --whatsapp: #25d366;

    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --container: 1140px;
    --section-py: 5rem;
    --radius: 0.75rem;
    --radius-lg: 1rem;
    --radius-full: 9999px;
    --transition: 0.3s ease;
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);

    /* Header heights for scroll offset */
    --header-top-h: 80px;
    --header-nav-h: 44px;
    --header-total: 124px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-total);
}

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

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

/* ===== UTILITIES ===== */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.icon--sm {
    width: 16px;
    height: 16px;
}

/* ===== SECTION COMMON ===== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--gray);
    max-width: 550px;
    margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.7rem 1.5rem;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn--sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.btn--lg {
    padding: 0.9rem 2rem;
    font-size: 1.05rem;
    border-radius: var(--radius-lg);
}

.btn--full {
    width: 100%;
}

.btn--accent {
    background: var(--accent);
    color: var(--text);
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.btn--accent:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.35);
}

.btn--whatsapp {
    background: var(--whatsapp);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.btn--whatsapp:hover {
    background: #1fb855;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

/* ===== HEADER ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    transition: box-shadow var(--transition);
}

.header--scrolled {
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

/* Logo row */
.header__top {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 0;
    transition: padding var(--transition), opacity var(--transition);
}

.header__logo-img {
    height: 65px;
    width: auto;
    margin: 0 auto;
    transition: height var(--transition);
}

/* Nav row */
.header__nav-bar {
    border-top: 1px solid var(--gray-200);
}

.header__nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-nav-h);
}

.header__menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex: 1;
    justify-content: center;
}

.header__link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray);
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius);
    transition: all 0.2s ease;
}

.header__link:hover,
.header__link.active {
    color: var(--primary);
    background: var(--primary-50);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header__phone {
    font-weight: 700;
}

.header__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1200;
}

.header__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--transition);
}

.header__toggle.active span {
    background: var(--white) !important;
}

.header__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(7px);
}

.header__toggle.active span:nth-child(2) {
    opacity: 0;
}

.header__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-7px);
}

/* Compact header on scroll */
.header--compact .header__top {
    padding: 0.35rem 0;
}

.header--compact .header__logo-img {
    height: 40px;
}

/* Menu open state */
.header--menu-open {
    background: transparent !important;
    border-bottom-color: transparent !important;
    box-shadow: none !important;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0f2440 0%, var(--primary) 50%, var(--primary-light) 100%);
    z-index: 0;
}

.hero__inner {
    position: relative;
    z-index: 1;
    padding: 3.5rem 0;
    width: 100%;
}

.hero__content {
    max-width: 650px;
}

.hero__title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.hero__title-accent {
    color: var(--accent);
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.hero__trust {
    display: flex;
    gap: 2rem;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 600;
}

.hero__trust-item .icon {
    color: var(--accent);
}

/* ===== SERVICES ===== */
.services {
    padding: var(--section-py) 0;
    background: var(--gray-light);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    position: relative;
    transition: all var(--transition);
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.service-card__badge--emergency {
    background: #fef3c7;
    color: #92400e;
}

.service-card__badge--popular {
    background: var(--accent);
    color: var(--text);
}

.service-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-50);
    color: var(--primary);
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

.service-card__icon i {
    width: 24px;
    height: 24px;
}

.service-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.service-card__desc {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.55;
}

/* ===== ABOUT ===== */
.about {
    padding: var(--section-py) 0;
    background: var(--white);
}

.about__inner {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3rem;
    align-items: center;
}

.about__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about__img {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.about__content .section-title {
    text-align: left;
    margin-bottom: 1rem;
}

.about__text {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.about__text strong {
    color: var(--text);
}

.about__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.about__feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.about__feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-50);
    color: var(--primary);
    border-radius: var(--radius);
}

.about__feature-icon i {
    width: 22px;
    height: 22px;
}

.about__feature h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.2rem;
}

.about__feature p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.5;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 4rem 0;
    background: var(--gray-light);
    overflow: hidden;
}

.testimonials__carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.testimonials__carousel::before,
.testimonials__carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.testimonials__carousel::before {
    left: 0;
    background: linear-gradient(to right, var(--gray-light), transparent);
}

.testimonials__carousel::after {
    right: 0;
    background: linear-gradient(to left, var(--gray-light), transparent);
}

.testimonials__track {
    display: flex;
    gap: 1rem;
    animation: testimonials-scroll 30s linear infinite;
}

.testimonials__track:hover {
    animation-play-state: paused;
}

@keyframes testimonials-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 1.1rem 1.25rem;
    flex: 0 0 260px;
    transition: box-shadow var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow);
}

.testimonial-card__stars {
    display: flex;
    gap: 0.15rem;
    margin-bottom: 0.5rem;
}

.star-filled {
    width: 14px;
    height: 14px;
    color: var(--accent);
    fill: var(--accent);
}

.testimonial-card__text {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.5;
    margin-bottom: 0.6rem;
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.testimonial-card__avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
}

.testimonial-card__author strong {
    font-size: 0.8rem;
    color: var(--text);
}

/* ===== AREAS (LEAFLET MAP) ===== */
.areas {
    padding: var(--section-py) 0;
    background: var(--white);
}

.areas__map-wrapper {
    max-width: 950px;
    margin: 0 auto;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.areas__leaflet-map {
    width: 100%;
    height: 450px;
    z-index: 1;
}

/* Custom Leaflet tooltip */
.leaflet-tooltip.map-tooltip {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 0.5rem 0.85rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-family: var(--font);
    font-size: 0;
    line-height: 1;
}

.leaflet-tooltip.map-tooltip::before {
    border-top-color: var(--white);
}

.leaflet-tooltip-top.map-tooltip::before {
    border-top-color: var(--white);
}

.map-tooltip__name {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2px;
}

.map-tooltip__info {
    display: block;
    font-size: 0.75rem;
    color: var(--gray);
    font-weight: 400;
}

/* Custom marker */
@keyframes leaflet-marker-pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(3); opacity: 0; }
}

.marker-pin {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid var(--white);
    box-shadow: 0 2px 6px rgba(30, 58, 95, 0.4);
    position: relative;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.marker-pin:hover {
    transform: scale(1.3);
}

.marker-pin::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(30, 58, 95, 0.2);
    animation: leaflet-marker-pulse 2.5s ease-out infinite;
    z-index: -1;
}

.marker-pin--hq {
    width: 20px;
    height: 20px;
    background: var(--accent);
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.5);
}

.marker-pin--hq::after {
    background: rgba(245, 158, 11, 0.2);
    animation-duration: 2s;
}

/* Map Legend */
.map-legend {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    display: flex;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    z-index: 500;
}

.map-legend__item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray);
}

.map-legend__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--white);
    box-shadow: 0 0 3px rgba(0,0,0,0.15);
    flex-shrink: 0;
}

.map-legend__dot--hq {
    background: var(--accent);
}

.map-legend__dot--area {
    background: var(--primary);
}

/* ===== CONTACT ===== */
.contact {
    padding: var(--section-py) 0;
    background: var(--gray-light);
}

.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.contact__detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact__detail-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--primary);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
}

.contact__detail-icon i {
    width: 20px;
    height: 20px;
}

.contact__detail strong {
    display: block;
    font-size: 0.82rem;
    color: var(--text);
    margin-bottom: 0.1rem;
}

.contact__detail a,
.contact__detail span {
    font-size: 0.9rem;
    color: var(--gray);
}

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

.contact__social {
    display: flex;
    gap: 0.5rem;
}

.contact__social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    color: var(--gray);
    transition: all var(--transition);
}

.contact__social-link svg {
    width: 18px;
    height: 18px;
}

.contact__social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.contact__form-wrapper {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.contact__form-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.25rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.3rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.65rem 0.85rem;
    font-family: var(--font);
    font-size: 0.9rem;
    color: var(--text);
    background: var(--gray-light);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    transition: all 0.2s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
    background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
}

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

.contact__form-note {
    font-size: 0.75rem;
    color: var(--gray-400);
    text-align: center;
    margin-top: 0.75rem;
}

/* ===== FOOTER ===== */
.footer {
    background: #0f2440;
    padding: 3.5rem 0 0;
}

.footer__inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 0.75rem;
    line-height: 1.6;
}

.footer__links h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer__links a,
.footer__links span {
    display: block;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 0.6rem;
    transition: color 0.2s ease;
}

.footer__links a:hover {
    color: var(--white);
}

.footer__bottom {
    padding: 1.25rem 0;
    text-align: center;
}

.footer__bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.25);
}

/* ===== WHATSAPP FLOATING ===== */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--whatsapp);
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition);
    animation: whatsapp-pulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    color: var(--white);
    fill: var(--white);
}

@keyframes whatsapp-pulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0.08); }
}

/* ===== REDUCED MOTION (accessibility) ===== */
@media (prefers-reduced-motion: reduce) {
    .testimonials__track {
        animation: none;
    }

    [data-animate] {
        transition: none;
        opacity: 1;
        transform: none;
    }

    .whatsapp-float {
        animation: none;
    }

    .marker-pin::after {
        animation: none;
    }
}

/* ===== ANIMATIONS ===== */
[data-animate] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about__image {
        max-width: 500px;
        margin: 0 auto;
    }

    .about__content .section-title {
        text-align: center;
    }

    .about__text {
        text-align: center;
    }

    .about__features {
        grid-template-columns: 1fr;
    }

    .contact__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

@media (max-width: 768px) {
    :root {
        --section-py: 3.5rem;
        --header-total: 100px;
    }

    .header__logo-img {
        height: 50px;
    }

    .header--compact .header__logo-img {
        height: 35px;
    }

    /* Mobile menu */
    .header__menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(15, 36, 64, 0.97);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
        z-index: 1100;
    }

    .header__menu.active {
        opacity: 1;
        visibility: visible;
    }

    .header__menu .header__link {
        font-size: 1.2rem;
        color: var(--white) !important;
        padding: 0.75rem 2rem;
        background: none !important;
    }

    .header__toggle {
        display: flex;
    }

    .header__phone {
        display: none;
    }

    .hero {
        min-height: 50vh;
    }

    .hero__ctas {
        flex-direction: column;
    }

    .hero__trust {
        gap: 1.25rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact__form-wrapper {
        padding: 1.5rem;
    }

    .areas__leaflet-map {
        height: 380px;
    }

    .map-legend {
        flex-direction: column;
        gap: 0.4rem;
        bottom: 0.75rem;
        left: 0.75rem;
    }

    .testimonials {
        padding: 3rem 0;
    }

    .testimonial-card {
        flex: 0 0 230px;
        padding: 1rem;
    }

    .testimonials__carousel::before,
    .testimonials__carousel::after {
        width: 40px;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 1.75rem;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .areas__leaflet-map {
        height: 320px;
    }
}
