@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --font-inter: "Inter", sans-serif;
    --primary: 199 75% 50%;
    --primary-light: 199 75% 57%;
    --primary-dark: 199 75% 42%;
    --foreground: 215 35% 10%;
    --muted-fg: 215 15% 50%;
    --muted-foreground: 215 15% 50%;
    --border: 214 20% 88%;
    --bg: 210 30% 98%;
    --card: 0 0% 100%;
    --secondary: 199 60% 94%;
    --radius: 10px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
.hidden { display: none !important; }
body { font-family: var(--font-inter); color: hsl(var(--foreground)); line-height: 1.6; background: #fff; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
svg { display: inline-block; vertical-align: middle; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ── BUTTONS ──────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 100px;
    font-family: var(--font-inter);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap;
    border: none;
    line-height: 1;
}
.btn-primary { background: hsl(var(--primary)); color: #fff; }
.btn-primary:hover { background: hsl(var(--primary-dark)); transform: translateY(-1px); box-shadow: 0 6px 20px hsla(var(--primary) / .35); }
.btn-outline { background: transparent; color: hsl(var(--foreground)); border: 1.5px solid hsl(var(--border)); }
.btn-outline:hover { border-color: hsl(var(--primary)); color: hsl(var(--primary)); }
.btn-whatsapp { background: #25d366; color: #fff; }
.btn-whatsapp:hover { background: #1eb857; transform: translateY(-1px); }
.btn-lg { padding: 15px 30px; font-size: 16px; }
.btn-xl { padding: 18px 36px; font-size: 17px; }

/* ── EMERGENCY BAR ────────────────────────────────────── */
.emergency-bar {
    background: hsl(var(--primary));
    color: #fff;
    text-align: center;
    padding: 8px 16px;
    font-size: 12.5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    line-height: 1.35;
    letter-spacing: .01em;
}
.emergency-bar a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }

/* ── HEADER ───────────────────────────────────────────── */
header {
    background: #fff;
    border-bottom: 1px solid hsl(var(--border));
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 12px rgba(0,0,0,.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 98px;
    gap: 20px;
    position: relative;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon {
    width: 40px; height: 40px;
    background: hsl(var(--primary));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; flex-shrink: 0;
}
.logo-text { line-height: 1.2; }
.logo-name { font-weight: 800; font-size: 15px; color: hsl(var(--foreground)); display: block; }
.logo-tag { font-size: 10.5px; color: hsl(var(--muted-fg)); font-weight: 500; display: block; }

/* Nav */
nav { display: flex; gap: 4px; align-items: center; }

.nav-item { position: relative; }

.nav-item > a,
nav > a {
    font-size: 14px;
    font-weight: 500;
    color: hsl(var(--foreground));
    padding: 8px 14px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: background .15s, color .15s;
}
.nav-item > a:hover,
nav > a:hover { background: hsl(var(--bg)); color: hsl(var(--primary)); }

.nav-arrow { transition: transform .2s; flex-shrink: 0; }
.nav-item:hover .nav-arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #fff;
    border: 1px solid hsl(var(--border));
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,.12);
    min-width: 220px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: all .2s;
    z-index: 200;
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

.dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 500;
    color: hsl(var(--foreground));
    transition: background .15s, color .15s;
}
.dropdown a:hover { background: hsl(var(--bg)); color: hsl(var(--primary)); }
.dropdown-icon { width: 28px; height: 28px; background: hsl(var(--secondary)); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: hsl(var(--primary)); flex-shrink: 0; }

/* Header CTA */
.header-cta { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.btn-callback,
.btn-phone { padding: 10px 16px; font-size: 13px; font-weight: 700; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: hsl(var(--foreground)); border-radius: 2px; transition: all .3s; }

/* Mobile nav */
body.menu-open { overflow: hidden; }
body.menu-open header { z-index: 400; }
body.menu-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(5, 12, 25, .68);
    backdrop-filter: blur(7px);
    z-index: 240;
}
.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(62vw, 560px);
    min-width: 330px;
    height: 100vh;
    background: #fff;
    border-left: 1px solid hsl(var(--border));
    box-shadow: -24px 0 48px rgba(0,0,0,.28);
    z-index: 300;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 96px 32px 48px;
    overflow-y: auto;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform .28s ease, opacity .22s ease, visibility .22s ease;
}
.mobile-nav.open,
.mobile-nav.is-open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}
.mobile-menu-link,
.mobile-menu-toggle {
    color: hsl(var(--foreground));
    font-size: clamp(25px, 4vw, 32px);
    font-weight: 800;
    line-height: 1;
    text-align: center;
    padding: 20px 0;
    min-width: 170px;
    border: 0;
    border-bottom: 1px solid hsl(var(--border));
    background: transparent;
    font-family: var(--font-inter);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.mobile-menu-link:hover,
.mobile-menu-toggle:hover { color: hsl(var(--primary)); }
.mobile-menu-link:focus-visible,
.mobile-menu-toggle:focus-visible,
.mobile-close:focus-visible {
    outline: 2px solid hsl(var(--primary));
    outline-offset: 4px;
}
.menu-caret { font-size: .62em; vertical-align: middle; margin-left: 7px; transition: transform .2s ease; }
.mobile-menu-group.open .menu-caret { transform: rotate(180deg); }
.mobile-menu-panel {
    display: none;
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 10px 0 16px;
    width: min(300px, 100%);
}
.mobile-menu-group.open .mobile-menu-panel { display: grid; }
.mobile-menu-panel a {
    color: hsl(var(--muted-fg));
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    padding: 8px 12px;
    border-radius: 8px;
}
.mobile-menu-panel a:hover {
    background: hsl(var(--secondary));
    color: hsl(var(--primary));
}
.mobile-close {
    position: absolute;
    top: 34px;
    right: 28px;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid hsl(var(--border));
    background: hsl(var(--bg));
    color: hsl(var(--foreground));
    font-size: 54px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 6px;
}
.mobile-close:hover { background: hsl(var(--secondary)); color: hsl(var(--primary)); }

/* ── HERO ─────────────────────────────────────────────── */
.hero {
    background: #fff;
    padding: 72px 0 80px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: hsl(var(--bg));
    border: 1px solid hsl(var(--border));
    padding: 7px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 28px;
}
.hero-badge .dot { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; flex-shrink: 0; }

.hero h1 {
    font-size: clamp(40px, 6vw, 68px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -.03em;
    color: hsl(var(--foreground));
    margin-bottom: 20px;
}
.hero h1 span { color: hsl(var(--primary)); }

.hero-sub {
    font-size: clamp(16px, 2vw, 18px);
    color: hsl(var(--muted-fg));
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.hero-trust {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 4px;
}
.hero-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: hsl(var(--muted-fg));
    font-weight: 500;
}
.hero-trust svg { color: hsl(var(--primary)); }

/* ── STATS BAR ────────────────────────────────────────── */
.stats-wrapper { padding: 0 0 48px; background: #fff; }
.stats-box {
    border: 1.5px solid hsl(var(--border));
    border-radius: 16px;
    overflow: hidden;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.stat-item {
    padding: 24px 20px;
    text-align: center;
    border-right: 1px solid hsl(var(--border));
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 26px; font-weight: 800; color: hsl(var(--primary)); line-height: 1; }
.stat-label { font-size: 13px; color: hsl(var(--muted-fg)); font-weight: 500; }

/* ── TRUST BAR ────────────────────────────────────────── */
.trust-bar { background: hsl(var(--bg)); border-top: 1px solid hsl(var(--border)); border-bottom: 1px solid hsl(var(--border)); padding: 14px 0; }
.trust-bar-inner { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: hsl(var(--foreground)); }
.trust-item svg { color: hsl(var(--primary)); }

/* ── SECTIONS ─────────────────────────────────────────── */
.section { padding: 80px 0; }
.section-alt { background: hsl(var(--bg)); }

.section-header { text-align: center; margin-bottom: 52px; }
.section-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: hsl(var(--primary)); margin-bottom: 10px; }
.section-header h2 { font-size: clamp(26px, 4vw, 38px); font-weight: 800; color: hsl(var(--foreground)); letter-spacing: -.02em; margin-bottom: 12px; }
.section-header p { font-size: 16px; color: hsl(var(--muted-fg)); max-width: 520px; margin: 0 auto; }

/* ── SERVICES GRID ────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

.service-card {
    background: #fff;
    border: 1.5px solid hsl(var(--border));
    border-radius: 14px;
    padding: 24px 20px;
    transition: all .22s;
    display: block;
    color: inherit;
    cursor: pointer;
    min-height: 100%;
}
.service-card:hover,
.service-card:focus-visible { border-color: hsl(var(--primary)); box-shadow: 0 6px 24px hsla(var(--primary)/.12); transform: translateY(-2px); }
.service-card:focus-visible { outline: 3px solid hsla(var(--primary)/.28); outline-offset: 3px; }
.service-icon { width: 48px; height: 48px; background: hsl(var(--secondary)); border-radius: 11px; display: flex; align-items: center; justify-content: center; color: hsl(var(--primary)); margin-bottom: 14px; flex-shrink: 0; }
.service-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 7px; color: hsl(var(--foreground)); }
.service-card p { font-size: 13px; color: hsl(var(--muted-fg)); line-height: 1.6; }
.card-link { display: inline-flex; align-items: center; gap: 4px; font-size: 13px; font-weight: 700; color: hsl(var(--primary)); margin-top: 14px; transition: gap .18s; }
.service-card:hover .card-link { gap: 7px; }

/* ── HOW IT WORKS ─────────────────────────────────────── */
.how-it-works {
    background: linear-gradient(135deg, hsl(215 40% 10%) 0%, hsl(199 50% 20%) 100%);
    color: #fff;
    padding: 80px 0;
}
.how-it-works .section-header h2 { color: #fff; }
.how-it-works .section-header p { color: rgba(255,255,255,.6); }

.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.steps-grid::before {
    content: '';
    position: absolute;
    top: 36px; left: calc(12.5% + 20px); right: calc(12.5% + 20px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), rgba(255,255,255,.15), transparent);
}
.step-card { text-align: center; }
.step-num {
    width: 72px; height: 72px;
    background: hsl(var(--primary));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; font-weight: 800; color: #fff;
    margin: 0 auto 18px;
    position: relative; z-index: 1;
    box-shadow: 0 4px 20px hsla(var(--primary)/.4);
}
.step-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: 14px; color: rgba(255,255,255,.62); line-height: 1.65; }

/* ── REVIEWS ──────────────────────────────────────────── */
.review-header {
    display: flex; align-items: center; justify-content: space-between;
    background: #fff; border: 1px solid hsl(var(--border)); border-radius: 14px;
    padding: 24px 28px; margin-bottom: 32px;
}
.rating-big { font-size: 52px; font-weight: 800; color: hsl(var(--foreground)); line-height: 1; }
.rating-stars { display: flex; gap: 2px; color: #f59e0b; margin: 4px 0; }
.rating-count { font-size: 13px; color: hsl(var(--muted-fg)); }
.google-badge { display: flex; align-items: center; gap: 12px; }
.g-logo { width: 38px; height: 38px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 20px; color: #4285f4; border: 1px solid hsl(var(--border)); flex-shrink: 0; }

.reviews-grid {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 2px;
    padding: 2px 2px 16px;
    max-width: 760px;
    margin: 0 auto;
    -webkit-overflow-scrolling: touch;
}
.reviews-grid::-webkit-scrollbar { height: 8px; }
.reviews-grid::-webkit-scrollbar-track { background: hsl(var(--secondary)); border-radius: 999px; }
.reviews-grid::-webkit-scrollbar-thumb { background: hsl(var(--primary)); border-radius: 999px; }
.review-card {
    background: #fff;
    border: 1px solid hsl(var(--border));
    border-radius: 12px;
    padding: 22px;
    transition: box-shadow .2s;
    flex: 0 0 100%;
    scroll-snap-align: center;
}
.review-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.07); }
.reviewer { display: flex; align-items: center; gap: 11px; margin-bottom: 12px; }
.reviewer-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 700; color: #fff; flex-shrink: 0; }
.reviewer-name { font-weight: 700; font-size: 14px; }
.reviewer-area { font-size: 12px; color: hsl(var(--muted-fg)); }
.review-stars { display: flex; gap: 2px; color: #f59e0b; margin-bottom: 10px; }
.review-card p { font-size: 13.5px; color: hsl(var(--muted-fg)); line-height: 1.65; }
.review-date { font-size: 12px; color: hsl(var(--muted-fg)); margin-top: 10px; opacity: .7; }

/* ── FAQ ──────────────────────────────────────────────── */
.faq-list { max-width: 740px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: #fff; border: 1.5px solid hsl(var(--border)); border-radius: 11px; overflow: hidden; transition: border-color .2s; }
.faq-item.open { border-color: hsl(var(--primary)); }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; cursor: pointer; gap: 16px; }
.faq-question h3 { font-size: 15px; font-weight: 600; color: hsl(var(--foreground)); }
.faq-toggle { width: 28px; height: 28px; background: hsl(var(--secondary)); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: hsl(var(--primary)); transition: transform .3s, background .2s; }
.faq-item.open .faq-toggle { transform: rotate(45deg); background: hsl(var(--primary)); color: #fff; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; padding: 0 22px; }
.faq-answer p { font-size: 14.5px; color: hsl(var(--muted-fg)); line-height: 1.72; padding-bottom: 18px; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ── AREAS ────────────────────────────────────────────── */
.areas-grid { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; max-width: 880px; margin: 0 auto; }
.area-pill {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 10px 20px;
    background: #fff; border: 1.5px solid hsl(var(--border));
    border-radius: 100px; font-size: 14px; font-weight: 600;
    color: hsl(var(--foreground)); transition: all .18s;
}
.area-pill:hover { border-color: hsl(var(--primary)); background: hsl(var(--secondary)); color: hsl(var(--primary)); transform: translateY(-2px); box-shadow: 0 4px 12px hsla(var(--primary)/.15); }

/* ── CONTACT ──────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-info .section-label { margin-bottom: 10px; }
.contact-info h2 { font-size: clamp(24px,3.5vw,34px); font-weight: 800; margin-bottom: 14px; letter-spacing: -.02em; }
.contact-info > p { font-size: 15px; color: hsl(var(--muted-fg)); margin-bottom: 28px; line-height: 1.7; }

.benefit-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.benefit-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; color: hsl(var(--foreground)); }
.benefit-check { width: 22px; height: 22px; background: hsl(var(--secondary)); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: hsl(var(--primary)); flex-shrink: 0; margin-top: 1px; }

.contact-phone-block { background: hsl(var(--bg)); border: 1px solid hsl(var(--border)); border-radius: 12px; padding: 18px 22px; display: flex; align-items: center; gap: 14px; }
.contact-methods { display: flex; flex-direction: column; gap: 12px; }
.contact-phone-block strong { display: block; font-size: 14px; color: hsl(var(--foreground)); }
.contact-phone-block span { display: block; font-size: 14px; color: hsl(var(--muted-fg)); margin-top: 2px; }
.contact-icon,
.phone-icon { width: 46px; height: 46px; background: hsl(var(--primary)); border-radius: 11px; display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; }
.phone-label { font-size: 11px; color: hsl(var(--muted-fg)); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.phone-num { font-size: 20px; font-weight: 800; color: hsl(var(--foreground)); letter-spacing: .01em; display: block; }

.contact-form { background: #fff; border: 1.5px solid hsl(var(--border)); border-radius: 16px; padding: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.form-group:last-of-type { margin-bottom: 0; }
.form-group label { font-size: 13px; font-weight: 600; color: hsl(var(--foreground)); }
.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-inter); font-size: 14px;
    padding: 11px 14px;
    border: 1.5px solid hsl(var(--border)); border-radius: var(--radius);
    color: hsl(var(--foreground)); background: hsl(var(--bg));
    outline: none; transition: border-color .2s; width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: hsl(var(--primary)); box-shadow: 0 0 0 3px hsla(var(--primary)/.1); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { margin-top: 18px; width: 100%; padding: 14px; font-size: 15px; border-radius: var(--radius); }

/* ── FOOTER ───────────────────────────────────────────── */
footer {
    background: #fff;
    color: hsl(var(--muted-fg));
    padding: 56px 0 0;
    border-top: 1px solid hsl(var(--border));
}

.footer-top {
    display: grid;
    grid-template-columns: minmax(260px, 1.25fr) repeat(3, 1fr);
    gap: 28px;
    padding: 32px;
    border: 1px solid hsl(var(--border));
    border-radius: 18px;
    box-shadow: 0 18px 48px rgba(15, 23, 42, .08);
    text-align: center;
    background:
        linear-gradient(180deg, rgba(226, 243, 252, .72), rgba(255,255,255,.96) 42%),
        #fff;
}

.footer-brand .logo-name { color: hsl(var(--foreground)); font-size: 17px; }
.footer-brand .logo-tag { color: hsl(var(--muted-fg)); }
.footer-brand .logo { justify-content: center; background: transparent; }
.footer-brand .logo-img {
    margin-left: auto;
    margin-right: auto;
    mix-blend-mode: multiply;
    opacity: .96;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.75;
    color: hsl(var(--muted-fg));
    margin-top: 14px;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

.footer-cta-card {
    margin: 22px auto 0;
    max-width: 310px;
    padding: 18px;
    border-radius: 14px;
    background: hsl(var(--foreground));
    color: #fff;
    box-shadow: 0 14px 30px rgba(15, 23, 42, .18);
}
.footer-cta-card strong {
    display: block;
    font-size: 17px;
    line-height: 1.25;
    margin-bottom: 4px;
    color: #fff;
}
.footer-cta-card span {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,.76);
    margin-bottom: 14px;
}
.footer-cta-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.footer-cta-actions a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 40px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 800;
}
.footer-cta-call { background: hsl(var(--primary)); color: #fff; }
.footer-cta-wa { background: #25d366; color: #fff; }
.footer-cta-call:hover,
.footer-cta-wa:hover { transform: translateY(-1px); }

.footer-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}
.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: hsl(var(--secondary));
    border: 1px solid hsl(var(--border));
    border-radius: 100px;
    font-size: 11.5px;
    font-weight: 600;
    color: hsl(var(--foreground));
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: hsl(var(--foreground));
    margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; align-items: center; gap: 9px; }
.footer-col ul li a {
    display: inline-flex;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 14px;
    color: hsl(var(--muted-fg));
    transition: color .2s, background .2s;
}
.footer-col ul li a:hover { color: hsl(var(--primary)); background: hsl(var(--secondary)); }

.footer-bottom {
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12.5px;
    color: hsl(var(--muted-fg));
    flex-wrap: wrap;
    gap: 10px;
}
.footer-bottom a { color: hsl(var(--muted-fg)); transition: color .2s; }
.footer-bottom a:hover { color: hsl(var(--primary)); }

/* ── FLOATING CTA ─────────────────────────────────────── */
.floating-cta { position: fixed; bottom: 24px; right: 24px; z-index: 200; display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.float-btn { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(0,0,0,.2); transition: transform .2s, box-shadow .2s; text-decoration: none; }
.float-btn:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(0,0,0,.25); }
.float-call { background: hsl(var(--primary)); color: #fff; }
.float-wa { background: #25d366; color: #fff; }

/* ── LOGO IMAGE ───────────────────────────────────────── */
.logo-img { height: 72px; width: auto; display: block; }
.footer-brand .logo-img { height: 52px; margin-bottom: 16px; }

/* ── INNER PAGE CONTENT LAYOUT ────────────────────────── */
.content-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.policy-layout { grid-template-columns: minmax(0, 900px); justify-content: center; }
.page-content h2 { font-size: clamp(20px,3vw,28px); font-weight: 800; margin: 36px 0 12px; letter-spacing: -.01em; color: hsl(var(--foreground)); }
.page-content h2:first-child { margin-top: 0; }
.page-content p { font-size: 15px; color: hsl(var(--muted-fg)); line-height: 1.78; margin-bottom: 14px; }
.page-content ul { padding-left: 0; margin-bottom: 16px; list-style: none; display: flex; flex-direction: column; gap: 8px; }
.page-content ul li { font-size: 15px; color: hsl(var(--muted-fg)); line-height: 1.65; display: flex; align-items: flex-start; gap: 10px; }
.page-content ul li::before { content: '✓'; color: hsl(var(--primary)); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.warning-box { background: hsl(40 100% 97%); border: 1px solid hsl(40 80% 85%); border-left: 4px solid hsl(40 90% 55%); border-radius: var(--radius); padding: 16px 20px; margin: 20px 0; }
.warning-box strong { color: hsl(40 80% 35%); font-size: 13px; text-transform: uppercase; letter-spacing: .06em; display: block; margin-bottom: 6px; }
.warning-box p { font-size: 14px; color: hsl(40 40% 35%); margin: 0; }
.process-steps { display: flex; flex-direction: column; gap: 16px; margin: 20px 0; }
.process-step { display: flex; gap: 16px; align-items: flex-start; }
.step-dot { width: 32px; height: 32px; background: hsl(var(--primary)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: #fff; flex-shrink: 0; }
.step-body h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; color: hsl(var(--foreground)); }
.step-body p { font-size: 14px; margin: 0; color: hsl(var(--muted-fg)); }

/* ── SIDEBAR ──────────────────────────────────────────── */
.sidebar-card { background: #fff; border: 1px solid hsl(var(--border)); border-radius: 14px; padding: 28px; position: static; top: auto; }
.sidebar-card + .sidebar-card { margin-top: 20px; }
.sidebar-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 16px; color: hsl(var(--foreground)); }
.sidebar-phone { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 18px; background: hsl(var(--primary)); border-radius: 10px; margin-bottom: 12px; text-align: center; text-decoration: none; }
.sidebar-phone .s-label { font-size: 11px; color: rgba(255,255,255,.8); text-transform: uppercase; letter-spacing: .07em; }
.sidebar-phone .s-num { font-size: 20px; font-weight: 800; color: #fff; }
.sidebar-wa { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 11px; background: #25d366; border-radius: 8px; color: #fff; font-weight: 600; font-size: 14px; margin-bottom: 20px; text-decoration: none; }
.sidebar-usp { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.sidebar-usp li { font-size: 13px; color: hsl(var(--muted-fg)); display: flex; align-items: center; gap: 8px; }
.sidebar-usp li::before { content: '✓'; color: hsl(var(--primary)); font-weight: 700; }
.sidebar-services { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.sidebar-services li a { font-size: 14px; color: hsl(var(--muted-fg)); display: flex; align-items: center; gap: 8px; padding: 8px 10px; border-radius: 8px; transition: all .2s; text-decoration: none; }
.sidebar-services li a:hover { background: hsl(var(--secondary)); color: hsl(var(--primary)); }
.sidebar-services li a.active { background: hsl(var(--secondary)); color: hsl(var(--primary)); font-weight: 600; }
.sidebar-svc-icon { width: 24px; height: 24px; background: hsl(var(--secondary)); border-radius: 5px; display: flex; align-items: center; justify-content: center; color: hsl(var(--primary)); flex-shrink: 0; }
.sidebar-services li a.active .sidebar-svc-icon { background: hsl(var(--primary)); color: #fff; }

/* ── LOCAL FACT BOX ───────────────────────────────────── */
.local-fact { background: hsl(var(--secondary)); border-radius: 12px; padding: 20px 24px; margin: 20px 0; display: flex; gap: 14px; align-items: flex-start; }
.local-fact .fact-icon { color: hsl(var(--primary)); flex-shrink: 0; margin-top: 2px; }
.local-fact p { font-size: 14px; color: hsl(215 25% 30%); line-height: 1.65; margin: 0; }
.local-fact strong { display: block; font-size: 14px; color: hsl(var(--foreground)); margin-bottom: 4px; }

/* ── SERVICES MINI GRID ───────────────────────────────── */
.services-mini { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.service-mini-card { background: #fff; border: 1px solid hsl(var(--border)); border-radius: 10px; padding: 16px; transition: all .2s; text-decoration: none; display: block; }
.service-mini-card:hover { border-color: hsl(var(--primary)); box-shadow: 0 4px 16px hsla(var(--primary)/.1); transform: translateY(-2px); }
.service-mini-card .smc-icon { width: 36px; height: 36px; background: hsl(var(--secondary)); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: hsl(var(--primary)); margin-bottom: 8px; }
.service-mini-card h3 { font-size: 14px; font-weight: 700; margin-bottom: 4px; color: hsl(var(--foreground)); }
.service-mini-card p { font-size: 12px; color: hsl(var(--muted-fg)); line-height: 1.5; margin: 0; }

/* ── NEARBY GRID ──────────────────────────────────────── */
.nearby-grid { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }

/* ── CTA STRIP ────────────────────────────────────────── */
.cta-strip { background: hsl(var(--primary)); padding: 52px 0; text-align: center; }
.cta-strip h2 { color: #fff; font-size: clamp(22px,3vw,32px); font-weight: 800; margin-bottom: 10px; }
.cta-strip p { color: rgba(255,255,255,.8); font-size: 16px; margin-bottom: 28px; }
.cta-strip-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-white { background: #fff; color: hsl(var(--primary)); font-weight: 700; }
.btn-white:hover { background: hsl(var(--secondary)); transform: translateY(-1px); }

@media (max-width: 900px) { .content-layout { grid-template-columns: 1fr; } .sidebar-card { position: static; } }
@media (max-width: 600px) { .services-mini { grid-template-columns: 1fr; } }

/* ── INNER PAGE HERO (shared across service/area pages) ─ */
.inner-hero {
    background: #fff;
    color: hsl(var(--foreground));
    padding: 64px 0 72px;
    text-align: center;
}
.breadcrumb { font-size: 13px; color: hsl(var(--muted-fg)); margin-bottom: 24px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.breadcrumb a { color: hsl(var(--muted-fg)); transition: color .2s; }
.breadcrumb a:hover { color: hsl(var(--primary)); }
.inner-hero h1 { font-size: clamp(36px,5vw,58px); font-weight: 900; margin-bottom: 18px; line-height: 1.08; letter-spacing: -.03em; }
.inner-hero p { font-size: clamp(16px,2vw,18px); color: hsl(var(--muted-fg)); max-width: 620px; line-height: 1.7; margin: 0 auto 32px; }
.inner-hero-actions { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; margin-bottom: 20px; }
.inner-hero .hero-badge { margin-bottom: 26px; }
.inner-hero .hero-trust { margin-bottom: 0; }
.inner-hero-actions + .hero-trust { justify-content: center; }

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1024px) {
    nav { display: none; }
    .hamburger { display: flex; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid::before { display: none; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .header-cta { display: none; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(3) { border-top: 1px solid hsl(var(--border)); }
    .stat-item:nth-child(4) { border-top: 1px solid hsl(var(--border)); border-right: none; }
    .contact-grid { grid-template-columns: 1fr; gap: 36px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 30px; padding: 28px 22px; }
    .footer-brand { grid-column: auto; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .trust-bar-inner { gap: 20px; }
    .mobile-nav { width: 62vw; min-width: 300px; }
    .mobile-close { width: 64px; height: 64px; font-size: 48px; }
}

@media (max-width: 480px) {
    .header-inner { gap: 12px; }
    .header-inner { min-height: 104px; }
    .logo-img { height: 70px; }
    .mobile-nav {
        width: 62vw;
        min-width: 242px;
        padding: 96px 24px 40px;
    }
    .mobile-menu-link,
    .mobile-menu-toggle {
        font-size: 25px;
        min-width: 132px;
        padding: 22px 0;
    }
    .mobile-close {
        top: 28px;
        right: 20px;
        width: 56px;
        height: 56px;
        font-size: 42px;
    }
    .emergency-bar { gap: 4px; padding: 7px 12px; }
    .hero { padding: 52px 0 60px; }
    .hero h1 { font-size: 34px; }
    .inner-hero { padding: 48px 0 56px; }
    .inner-hero h1 { font-size: 34px; }
    .inner-hero .hero-trust { gap: 8px; }
    .services-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .section { padding: 56px 0; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .floating-cta { display: none; }
}
