﻿:root {
    --red: #D0021B;
    --red-dark: #9B0014;
    --red-light: #fff0f1;
    --navy: #0D1B2A;
    --navy-mid: #1A2E45;
    --slate: #4A5568;
    --muted: #718096;
    --border: #E2E8F0;
    --bg: #FAFAF9;
    --white: #ffffff;
    --green: #1D9E75;
    --amber: #D97706;
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
    --radius: 10px;
    --shadow: 0 1px 3px rgba(0,0,0,.06), 0 4px 16px rgba(0,0,0,.07);
    --shadow-lg: 0 8px 32px rgba(0,0,0,.12);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--navy);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--navy);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .nav-logo span {
        color: var(--red);
    }

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

    .nav-links a {
        font-size: 14px;
        font-weight: 500;
        color: var(--slate);
        text-decoration: none;
        transition: color .2s;
    }

        .nav-links a:hover {
            color: var(--red);
        }

.nav-cta {
    background: var(--red);
    color: #fff;
    padding: 8px 20px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s, transform .15s;
}

    .nav-cta:hover {
        background: var(--red-dark);
        transform: translateY(-1px);
    }

.nav-phone {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    margin-right: 16px;
}

/* HERO */
.hero {
    min-height: 88vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    padding: 80px 5% 80px;
    background: linear-gradient(135deg, #fff 0%, #fff8f8 60%, #fff0ee 100%);
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        right: -80px;
        top: -80px;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(208,2,27,.06) 0%, transparent 70%);
        border-radius: 50%;
    }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--red-light);
    color: var(--red);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .05em;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 4.5vw, 58px);
    line-height: 1.1;
    color: var(--navy);
    margin-bottom: 20px;
}

    .hero h1 em {
        color: var(--red);
        font-style: normal;
    }

.hero-sub {
    font-size: 17px;
    color: var(--slate);
    max-width: 500px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-primary {
    background: var(--red);
    color: #fff;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(208,2,27,.3);
}

    .btn-primary:hover {
        background: var(--red-dark);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(208,2,27,.35);
    }

.btn-outline {
    background: transparent;
    color: var(--navy);
    padding: 13px 24px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border: 1.5px solid var(--border);
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .btn-outline:hover {
        border-color: var(--navy);
        background: var(--navy);
        color: #fff;
    }

.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--muted);
}

.trust-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--red-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.hero-visual {
    display: grid;
    grid-template-rows: auto auto;
    gap: 16px;
    position: relative;
    animation: floatIn .8s ease both;
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.stat-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: transform .2s, box-shadow .2s;
}

    .stat-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg);
    }

.stat-num {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--red);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    color: var(--muted);
    font-weight: 500;
}

.service-preview {
    background: var(--navy);
    border-radius: var(--radius);
    padding: 20px 24px;
    color: #fff;
}

.sp-title {
    font-size: 11px;
    letter-spacing: .08em;
    color: rgba(255,255,255,.5);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.sp-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sp-tag {
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.85);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,.12);
    transition: background .2s;
}

    .sp-tag:hover {
        background: rgba(208,2,27,.5);
    }

    .sp-tag.active {
        background: var(--red);
        color: #fff;
        border-color: var(--red);
    }

/* LOCATIONS STRIP */
.locations-strip {
    background: var(--navy);
    color: rgba(255,255,255,.6);
    padding: 14px 5%;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    overflow: hidden;
}

.loc-label {
    color: #fff;
    white-space: nowrap;
    margin-right: 4px;
}

.loc-cities {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.loc-sep {
    color: rgba(255,255,255,.25);
}

/* SECTIONS */
section {
    padding: 80px 5%;
}

.section-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 42px);
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-sub {
    font-size: 16px;
    color: var(--slate);
    max-width: 560px;
    line-height: 1.7;
}

/* SERVICES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: transform .2s, box-shadow .2s, border-color .2s;
    position: relative;
    overflow: hidden;
}

    .service-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: var(--red);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .3s ease;
    }

    .service-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
        border-color: transparent;
    }

        .service-card:hover::after {
            transform: scaleX(1);
        }

.service-icon {
    width: 48px;
    height: 48px;
    background: var(--red-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
}

.service-card p {
    font-size: 14px;
    color: var(--slate);
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--red);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: gap .2s;
}

    .service-link:hover {
        gap: 8px;
    }

.kw-chip {
    display: inline-block;
    background: var(--red-light);
    color: var(--red);
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 8px;
}

/* NEAR ME SECTION */
.near-me {
    background: var(--navy);
    color: #fff;
    border-radius: 20px;
    padding: 60px;
    margin: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

    .near-me::before {
        content: '';
        position: absolute;
        right: -100px;
        top: -100px;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(208,2,27,.25) 0%, transparent 70%);
        border-radius: 50%;
    }

    .near-me h2 {
        font-family: var(--font-display);
        font-size: 36px;
        line-height: 1.15;
        margin-bottom: 16px;
    }

        .near-me h2 em {
            color: #ff6b6b;
            font-style: normal;
        }

    .near-me p {
        color: rgba(255,255,255,.7);
        font-size: 15px;
        margin-bottom: 28px;
        line-height: 1.7;
    }

.cities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.city-badge {
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.85);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,.2);
}

.map-placeholder {
    background: var(--navy-mid);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    border: 1px solid rgba(255,255,255,.1);
}

.map-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.map-placeholder p {
    color: rgba(255,255,255,.5);
    font-size: 13px;
}

.map-placeholder strong {
    display: block;
    color: #fff;
    font-size: 16px;
    margin-bottom: 6px;
}

.address-box {
    background: rgba(255,255,255,.07);
    border-radius: var(--radius);
    padding: 16px 20px;
    margin-top: 12px;
    text-align: left;
    border: 1px solid rgba(255,255,255,.1);
}

    .address-box p {
        font-size: 13px;
        color: rgba(255,255,255,.7);
        line-height: 1.8;
    }

/* PRICING */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.price-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    position: relative;
    transition: transform .2s, box-shadow .2s;
}

    .price-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }

    .price-card.popular {
        border: 2px solid var(--red);
    }

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 14px;
    border-radius: 20px;
    white-space: nowrap;
    letter-spacing: .04em;
}

.price-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 12px;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--navy);
    margin-bottom: 4px;
}

    .price-amount span {
        font-size: 16px;
    }

.price-note {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 20px;
}

.price-features {
    list-style: none;
}

    .price-features li {
        font-size: 13px;
        color: var(--slate);
        padding: 7px 0;
        border-bottom: 1px solid var(--border);
        display: flex;
        gap: 8px;
        align-items: flex-start;
    }

        .price-features li:last-child {
            border-bottom: none;
        }

        .price-features li::before {
            content: '✓';
            color: var(--green);
            font-weight: 700;
            flex-shrink: 0;
            margin-top: 1px;
        }

/* FAQ */
.faq-section {
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 48px;
}

.faq-item {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: box-shadow .2s;
}

    .faq-item:hover {
        box-shadow: var(--shadow);
    }

    .faq-item h3 {
        font-size: 15px;
        font-weight: 600;
        color: var(--navy);
        margin-bottom: 10px;
        line-height: 1.4;
    }

    .faq-item p {
        font-size: 14px;
        color: var(--slate);
        line-height: 1.7;
    }

/* WHY US */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 48px;
}

.why-item {
    padding: 24px;
    border-left: 3px solid var(--red);
    background: var(--white);
    border-radius: 0 var(--radius) var(--radius) 0;
}

    .why-item h3 {
        font-size: 15px;
        font-weight: 600;
        color: var(--navy);
        margin-bottom: 6px;
    }

    .why-item p {
        font-size: 13px;
        color: var(--slate);
        line-height: 1.6;
    }

/* BLOG */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.blog-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
}

    .blog-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }

.blog-img {
    width: 100%;
    height: 160px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.blog-body {
    padding: 20px;
}

.blog-tag {
    background: var(--red-light);
    color: var(--red);
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.blog-body h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.4;
    margin-bottom: 8px;
}

.blog-body p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 14px;
}

.blog-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--red);
    text-decoration: none;
}

/* CONTACT CTA */
.cta-section {
    background: var(--red);
    color: #fff;
    text-align: center;
    padding: 80px 5%;
}

    .cta-section h2 {
        font-family: var(--font-display);
        font-size: clamp(28px, 3.5vw, 46px);
        margin-bottom: 16px;
        line-height: 1.15;
    }

    .cta-section p {
        font-size: 17px;
        color: rgba(255,255,255,.85);
        margin-bottom: 36px;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: #fff;
    color: var(--red);
    padding: 14px 28px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s;
    box-shadow: 0 4px 14px rgba(0,0,0,.2);
}

    .btn-white:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0,0,0,.25);
    }

.btn-ghost {
    background: transparent;
    color: #fff;
    padding: 13px 24px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,.5);
    transition: all .2s;
}

    .btn-ghost:hover {
        background: rgba(255,255,255,.15);
        border-color: #fff;
    }

/* FOOTER */
footer {
    background: var(--navy);
    color: rgba(255,255,255,.6);
    padding: 60px 5% 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand {
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 24px;
    color: #fff;
    margin-bottom: 12px;
}

    .footer-logo span {
        color: #ff6b6b;
    }

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,.5);
    max-width: 280px;
    margin-bottom: 20px;
}

.footer-contact a {
    color: rgba(255,255,255,.7);
    text-decoration: none;
    font-size: 14px;
    display: block;
    margin-bottom: 6px;
}

    .footer-contact a:hover {
        color: #fff;
    }

.footer-col h4 {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 8px;
}

.footer-col a {
    color: rgba(255,255,255,.6);
    text-decoration: none;
    font-size: 14px;
    transition: color .2s;
}

    .footer-col a:hover {
        color: #fff;
    }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    flex-wrap: wrap;
    gap: 12px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.6);
    text-decoration: none;
    font-size: 13px;
    transition: background .2s, color .2s;
}

    .social-link:hover {
        background: var(--red);
        color: #fff;
    }

/* ANIMATIONS */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeUp .7s ease both;
}

.hero-badge {
    animation: fadeUp .5s ease both;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 48px 5%;
    }

    .hero-visual {
        order: -1;
    }

    .near-me {
        grid-template-columns: 1fr;
        padding: 40px 28px;
        margin: 0 4%;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    nav .nav-links {
        display: none;
    }
}

@media (max-width: 600px) {
    .stat-cards {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    section {
        padding: 56px 5%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
