/* ========== DESIGN SYSTEM ========== */
:root {
    /* Colors */
    --color-white: #FFFFFF;
    --color-bg: #F4F6F9;
    --color-text: #0B1220;
    --color-primary: #0B2A4A;
    --color-border: #E1E7EF;
    --color-whatsapp: #25D366;
    --color-gray: #64748B;
    
    /* Typography */
    --font-main: system-ui, Inter, 'Segoe UI', sans-serif;
    --font-h1: 52px;
    --font-h1-mobile: 34px;
    --font-h2: 38px;
    --font-h3: 26px;
    --font-body: 17px;
    
    /* Layout */
    --max-width: 1200px;
    --section-padding: 90px;
    --section-padding-mobile: 56px;
    --card-radius: 18px;
    --button-radius: 14px;
    --button-height: 52px;
    
    /* Effects */
    --shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
    --transition: all 0.3s ease;
}

/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    font-size: var(--font-body);
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ========== HEADER ========== */
.main-header {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.25rem;
    transition: var(--transition);
}

.logo:hover {
    opacity: 0.8;
}

.logo img {
    height: 40px;
    width: 40px;
    object-fit: contain;
}

.logo-text {
    color: var(--color-primary);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.desktop-nav a {
    color: var(--color-gray);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

.desktop-nav a:hover {
    color: var(--color-primary);
}

/* ========== HERO SECTION ========== */
.hero-section {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(to bottom, var(--color-bg), var(--color-white));
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-logo {
    margin-bottom: 1.5rem;
}

.hero-logo img {
    height: 64px;
    width: 64px;
    object-fit: contain;
}

.hero-title {
    font-size: var(--font-h1);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    color: var(--color-text);
    letter-spacing: -0.02em;
}

.hero-title .highlight {
    color: var(--color-primary);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: var(--button-height);
    padding: 0 2rem;
    border-radius: var(--button-radius);
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: #0a2440;
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(11, 42, 74, 0.15);
}

.btn-whatsapp {
    background: var(--color-whatsapp);
    color: var(--color-white);
    box-shadow: var(--shadow);
}

.btn-whatsapp:hover {
    background: #22c55e;
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(37, 211, 102, 0.2);
}

.btn-white {
    background: var(--color-white);
    color: var(--color-primary);
    box-shadow: var(--shadow);
}

.btn-white:hover {
    background: var(--color-bg);
    transform: translateY(-2px);
}

/* ========== TRUST BAR / STATS ========== */
.trust-bar {
    padding: 3rem 0;
    background: var(--color-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 15px;
    color: var(--color-gray);
    font-weight: 600;
}

/* ========== SECTIONS ========== */
.services-section,
.how-it-works-section,
.local-section,
.testimonials-section,
.faq-section {
    padding: var(--section-padding) 0;
}

.services-section {
    background: var(--color-bg);
}

.how-it-works-section {
    background: var(--color-white);
}

.local-section {
    background: var(--color-bg);
}

.testimonials-section {
    background: var(--color-white);
}

.faq-section {
    background: var(--color-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: var(--font-h2);
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.local-intro {
    font-size: 1.125rem;
    color: var(--color-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ========== SERVICES GRID ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1.25rem;
}

.service-title {
    font-size: var(--font-h3);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--color-gray);
    line-height: 1.7;
}

/* ========== HOW IT WORKS ========== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.step-card {
    text-align: center;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.step-description {
    color: var(--color-gray);
    line-height: 1.7;
}

/* ========== CONTENT BODY ========== */
.page-content {
    padding: 3rem 0;
}

.content-body {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.content-body h2 {
    font-size: var(--font-h2);
    font-weight: 700;
    color: var(--color-text);
    margin: 2rem 0 1.25rem;
}

.content-body h2:first-child {
    margin-top: 0;
}

.content-body h3 {
    font-size: var(--font-h3);
    font-weight: 700;
    color: var(--color-text);
    margin: 1.75rem 0 1rem;
}

.content-body p {
    color: var(--color-gray);
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.content-body strong {
    color: var(--color-primary);
    font-weight: 700;
}

.content-body ul,
.content-body ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.content-body li {
    color: var(--color-gray);
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.content-body li strong {
    color: var(--color-text);
}

/* ========== NEIGHBORHOOD GRID ========== */
.neighborhood-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 2.5rem;
}

.neighborhood-link {
    background: var(--color-white);
    padding: 1rem 1.5rem;
    text-align: center;
    border-radius: 12px;
    color: var(--color-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid var(--color-border);
    transition: var(--transition);
}

.neighborhood-link:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* ========== TESTIMONIALS ========== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--color-bg);
    padding: 2rem;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow);
}

.testimonial-stars {
    color: #FFA500;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-quote {
    color: var(--color-gray);
    font-style: italic;
    margin-bottom: 1.25rem;
    line-height: 1.7;
    font-size: 1.0625rem;
}

.testimonial-author {
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.25rem;
}

.testimonial-location {
    color: var(--color-gray);
    font-size: 14px;
}

/* ========== FAQ ========== */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--card-radius);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

.faq-question {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.faq-answer {
    color: var(--color-gray);
    line-height: 1.7;
}

.faq-answer strong {
    color: var(--color-primary);
}

/* ========== CTA STRIP ========== */
.cta-strip {
    background: var(--color-primary);
    padding: 4rem 0;
}

.cta-strip-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-strip-title {
    font-size: var(--font-h2);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.cta-strip-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-strip-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ========== FOOTER ========== */
.main-footer {
    background: var(--color-bg);
    padding: 3rem 0 2rem;
    border-top: 1px solid var(--color-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-col h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.footer-col p {
    color: var(--color-gray);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.footer-col a {
    color: var(--color-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--color-primary);
}

.footer-logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-section img {
    height: 36px;
    width: 36px;
    object-fit: contain;
}

.footer-logo-section h3 {
    margin: 0;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    color: var(--color-gray);
    font-size: 14px;
}

.copyright a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
}

.copyright a:hover {
    text-decoration: underline;
}

/* ========== STICKY MOBILE BAR ========== */
.sticky-mobile-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    gap: 0;
    background: var(--color-white);
    border-top: 1px solid var(--color-border);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
}

.sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    color: var(--color-white);
    transition: var(--transition);
}

.sticky-btn.call-btn {
    background: var(--color-primary);
}

.sticky-btn.call-btn:hover {
    background: #0a2440;
}

.sticky-btn.whatsapp-btn {
    background: var(--color-whatsapp);
}

.sticky-btn.whatsapp-btn:hover {
    background: #22c55e;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .hero-title {
        font-size: var(--font-h1-mobile);
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .services-section,
    .how-it-works-section,
    .local-section,
    .testimonials-section,
    .faq-section {
        padding: var(--section-padding-mobile) 0;
    }
    
    .services-grid,
    .steps-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .neighborhood-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
    
    .desktop-nav {
        display: none;
    }
    
    .content-body {
        padding: 1.75rem;
    }
    
    .cta-strip-title {
        font-size: 26px;
    }
    
    .hero-cta,
    .cta-strip-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    body {
        padding-bottom: 70px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .service-card,
    .content-body,
    .faq-item {
        padding: 1.5rem;
    }
}
