*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --bg: #030712;
    --surface: #111827;
    --primary: #3b82f6;
    --primary-light: #60a5fa;
    --success: #10b981;
    --text: #f9fafb;
    --text-muted: #94a3b8;
    --accent: #10b981;
    --accent-light: #34d399;
    --accent-dark: #059669
}

.cairo-card {
    border-top: 3px solid #d4af37
}

.giza-card {
    border-top: 3px solid #c2793b
}

.alexandria-card {
    border-top: 3px solid #0ea5e9
}

.qalyubia-card {
    border-top: 3px solid #10b981
}

.sharqia-card {
    border-top: 3px solid #3b82f6
}

.monufia-card {
    border-top: 3px solid #a855f7
}

.hurghada-card {
    border-top: 3px solid #ef4444
}

.luxor-card {
    border-top: 3px solid #f59e0b
}

/* ===========================================
   MARKET STATS SECTION
   Platform usage indicators
   =========================================== */

.market-stats {
    background: linear-gradient(135deg, rgba(6,182,212,0.05), rgba(59,130,246,0.05));
    border: 1px solid rgba(6,182,212,0.2);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin: 2rem 0;
}

.market-stats-title {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text);
    font-size: 1.5rem;
    font-weight: 700;
}

.market-stats-subtitle {
    display: block;
    font-size: 0.8em;
    color: var(--text-muted);
    font-weight: normal;
    margin-top: 0.25rem;
}

.market-stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1.5rem;
    text-align: center;
}

.stat-item {
    min-width: 150px;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

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

.stat-primary {
    color: var(--primary);
}

.stat-success {
    color: var(--success);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.market-stats-note {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .market-stats {
        padding: 1.5rem;
    }

    .market-stats-grid {
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .market-stats-grid {
        flex-direction: column;
    }

    .stat-item {
        min-width: 100%;
    }
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem
}

.section {
    padding: 5rem 0
}

.section-alt {
    background: linear-gradient(180deg, rgba(17, 24, 39, .5) 0%, rgba(3, 7, 18, .8) 100%);
    padding: 5rem 0
}

.section-header {
    text-align: center;
    margin-bottom: 3rem
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 900;
    margin-bottom: .75rem;
    background: linear-gradient(135deg, var(--text), var(--accent-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.section-subtitle {
    font-size: clamp(.95rem, 2vw, 1.1rem);
    color: var(--text-muted);
    font-weight: 500
}

.bilingual {
    display: block;
    color: var(--primary-light);
    font-size: .9em;
    margin-top: .5rem
}

.fr {
    display: block;
    font-size: .85em;
    color: var(--text-muted);
    font-weight: 500
}

.why-install {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(17, 24, 39, .3) 0%, transparent 100%)
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem
}

.why-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, .6), rgba(17, 24, 39, .4));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 20px;
    padding: 2rem;
    transition: all .3s ease;
    position: relative;
    overflow: hidden
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform .3s ease
}

.why-card:hover {
    border-color: rgba(255, 255, 255, .1);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .3)
}

.why-card:hover::before {
    transform: scaleX(1)
}

.why-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #fff
}

.why-icon svg {
    width: 28px;
    height: 28px
}

.why-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: .75rem;
    color: var(--text)
}

.why-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: .95rem
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem
}

.category-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, .8), rgba(17, 24, 39, .6));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 24px;
    padding: 2rem;
    transition: all .4s ease;
    position: relative;
    overflow: hidden
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease
}

.category-card:hover::before {
    transform: scaleX(1)
}

.category-card:hover {
    border-color: rgba(255, 255, 255, .15);
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, .4)
}

.category-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(59, 130, 246, .2), rgba(var(--accent), .2));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent-light);
    transition: all .3s ease
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff
}

.category-content h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text)
}

.category-content h3 .fr {
    margin-top: .25rem
}

.category-count {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: 1rem;
    font-size: .9rem;
    color: var(--text-muted)
}

.count-badge {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    padding: .25rem .75rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: .85rem
}

.cairo-bg {
    background: linear-gradient(135deg, #d4af37, #b8960c)
}

.giza-bg {
    background: linear-gradient(135deg, #c2793b, #a5632c)
}

.alexandria-bg {
    background: linear-gradient(135deg, #0ea5e9, #0284c7)
}

.qalyubia-bg {
    background: linear-gradient(135deg, #10b981, #059669)
}

.sharqia-bg {
    background: linear-gradient(135deg, #3b82f6, #2563eb)
}

.monufia-bg {
    background: linear-gradient(135deg, #a855f7, #9333ea)
}

.hurghada-bg {
    background: linear-gradient(135deg, #ef4444, #dc2626)
}

.luxor-bg {
    background: linear-gradient(135deg, #f59e0b, #d97706)
}

.egypt-bg {
    background: linear-gradient(135deg, #10b981, #059669)
}

.category-content>p {
    color: var(--text-muted);
    font-size: .95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6
}

.category-services {
    list-style: none;
    margin: 0;
    padding: 0
}

.category-services li {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem 0;
    color: var(--text-muted);
    font-size: .9rem;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    transition: all .2s ease
}

.category-services li:last-child {
    border-bottom: none
}

.category-services li:hover {
    color: var(--accent-light);
    padding-left: .5rem
}

.category-services li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--accent)
}

.service-count-inline {
    margin-left: auto;
    color: var(--accent-light);
    font-weight: 600;
    font-size: .85rem
}

.services-cta {
    text-align: center;
    margin-top: 3rem
}

.for-workers {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(17, 24, 39, .8) 0%, rgba(3, 7, 18, .9) 100%);
    position: relative;
    overflow: hidden
}

.for-workers::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, .1), transparent 70%);
    pointer-events: none
}

.workers-content {
    position: relative;
    z-index: 1
}

.workers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: center
}

@media (min-width:768px) {
    .workers-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem
    }
}

@media (min-width:1024px) {
    .workers-grid {
        grid-template-columns: 1.3fr .7fr
    }
}

.workers-benefits {
    display: grid;
    gap: 1.5rem
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(30, 41, 59, .4), rgba(17, 24, 39, .2));
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all .3s ease
}

.benefit-item:hover {
    border-color: rgba(255, 255, 255, .1);
    transform: translateX(8px)
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff
}

.benefit-icon svg {
    width: 24px;
    height: 24px
}

.benefit-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: .5rem;
    color: var(--text)
}

.benefit-text p {
    color: var(--text-muted);
    font-size: .9rem;
    line-height: 1.6
}

.worker-img {
            display: block;
            max-width: 400px;
            margin: 0 auto;
        }

        .worker-phone {
            display: none;
        }

        @media (max-width: 768px) {
            .hero-image-desktop {
                display: none;
            }

            .hero-image-mobile {
                margin-top: 60px;
                display: block;
            }

            .worker-img {
                display: none;
            }

            .worker-phone {
                display: block;
                max-width: 300px;
                margin: 0 auto;
            }
        }

@media (max-width:767px) {
    .workers-image {
        order: 2;
        margin-top: 2rem
    }

    .workers-image img {
        max-width: 100%
    }
}

.workers-image-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(59, 130, 246, .2), transparent 70%);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity .3s ease
}

.workers-image:hover .workers-image-glow {
    opacity: 1
}

.workers-badge {
    position: absolute;
    top: 10%;
    right: -10px;
    width: 110px;
    height: 65px;
    background: linear-gradient(135deg, var(--success), #059669);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, .2);
    border-radius: 16px;
    padding: .7rem .8rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(16, 185, 129, .4);
    z-index: 10
}

@media (min-width:768px) {
    .workers-badge {
        right: -20px;
        width: 120px;
        height: 70px
    }
}

@media (max-width:480px) {
    .workers-badge {
        width: 100px;
        height: 60px;
        padding: .6rem .7rem
    }
}

.badge-number {
    display: block;
    font-size: 1rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: .25rem
}

.badge-text {
    display: block;
    font-size: .75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .9)
}

.workers-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    max-width: 380px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .3);
    transition: all .3s ease;
    margin-top: 2rem
}

.workers-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .4)
}

.workers-cta svg {
    width: 24px;
    height: 24px
}

@media (max-width:480px) {
    .workers-cta {
        padding: .85rem 1.5rem;
        font-size: .95rem
    }
}

.cities-grid-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem
}

.city-card-main {
    background: linear-gradient(135deg, rgba(30, 41, 59, .8), rgba(17, 24, 39, .6));
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    color: var(--text);
    transition: all .3s ease;
    position: relative;
    overflow: hidden
}

.city-card-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform .3s ease
}

.city-card-main:hover {
    border-color: rgba(255, 255, 255, .15);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .3)
}

.city-card-main:hover::before {
    transform: scaleX(1)
}

.city-card-main .city-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #fff
}

.city-card-main .city-icon svg {
    width: 32px;
    height: 32px
}

.city-card-main h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: .5rem
}

.city-card-main h3 span {
    display: block;
    font-size: .9rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: .25rem
}

.city-card-main .city-count {
    color: var(--accent-light);
    font-weight: 600;
    font-size: .95rem
}

.city-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, .8), rgba(17, 24, 39, .6));
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
    cursor: default
}

.city-card:hover {
    border-color: rgba(255, 255, 255, .15);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .3)
}

.neighborhoods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem
}

.neighborhood-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, .6), rgba(17, 24, 39, .4));
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all .3s ease
}

.neighborhood-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .3)
}

.neighborhood-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: .75rem;
    color: var(--text)
}

.neighborhood-count {
    color: var(--accent-light);
    font-weight: 600;
    font-size: .9rem
}

.seo-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem
}

.seo-pill {
    background: rgba(30, 41, 59, .6);
    border: 1px solid rgba(255, 255, 255, .1);
    padding: .5rem 1.25rem;
    border-radius: 50px;
    font-size: .9rem;
    color: var(--text-muted);
    transition: all .3s ease;
    text-decoration: none;
    display: inline-block
}

.seo-pill:hover {
    border-color: var(--accent);
    color: var(--accent-light);
    background: rgba(30, 41, 59, .8)
}

.faq-container {
    max-width: 900px;
    margin: 3rem auto 0
}

.faq-item {
    background: linear-gradient(135deg, rgba(30, 41, 59, .6), rgba(17, 24, 39, .4));
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all .3s ease
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, .1)
}

.faq-question {
    padding: 1.5rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    cursor: pointer;
    position: relative;
    transition: all .3s ease
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--accent);
    transition: transform .3s ease
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg)
}

.faq-question:hover {
    color: var(--accent-light)
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease
}

.faq-item.active .faq-answer {
    max-height: 500px
}

.faq-answer-content {
    padding: 0 2rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: .95rem
}

.platform-definition {
    padding: 3rem 0;
    background: rgba(17, 24, 39, .5);
    text-align: center
}

.platform-definition p {
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
    font-size: .95rem;
    line-height: 1.8
}



.final-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, .1), rgba(16, 185, 129, .1));
    position: relative;
    overflow: hidden
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(59, 130, 246, .15), transparent 60%), radial-gradient(circle at bottom left, rgba(16, 185, 129, .15), transparent 60%);
    pointer-events: none
}

.final-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto
}

.final-cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff, #10b981);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.final-cta-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #94a3b8;
    margin-bottom: 2.5rem;
    line-height: 1.8
}

.final-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap
}

.final-cta-buttons .btn-hero {
    box-shadow: 0 12px 40px rgba(59, 130, 246, .4)
}

.final-cta-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap
}

.final-stat-item {
    text-align: center
}

.final-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #60a5fa, #10b981);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: .5rem
}

.final-stat-label {
    font-size: .9rem;
    color: #94a3b8
}

.floating-cta-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: rgba(3, 7, 18, .95);
    backdrop-filter: blur(10px);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, .3);
    border-radius: 12px 12px 0 0;
    z-index: 999
}

.btn-floating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    width: 100%;
    color: #fff;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #60a5fa, #10b981);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: .95rem;
    box-shadow: 0 8px 20px rgba(16, 185, 129, .3);
    transition: all .3s
}

.btn-floating:active {
    transform: scale(.98)
}

@media (min-width:1024px) {
    .floating-cta-mobile {
        display: none
    }
}

.btn-nav {
    display: flex;
    align-items: center;
    gap: .5rem;
    background: linear-gradient(135deg, #3b82f6, #10b981);
    color: #fff !important;
    padding: .65rem 1.25rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: .9rem;
    text-decoration: none
}

.nav-links>a.nav-home,
.nav-links>a.nav-about {
    color: #94a3b8;
    text-decoration: none;
    font-weight: 500;
    font-size: .95rem
}

@media (max-width:768px) {

    .section,
    .section-alt {
        padding: 3rem 0
    }

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

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

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

   
}

@media (max-width:480px) {
    .container {
        padding: 0 1rem
    }

    .category-card {
        padding: 1.5rem
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
        padding-right: 3rem;
        font-size: 1rem
    }

    .faq-answer-content {
        padding: 0 1.5rem 1.25rem;
        font-size: .9rem
    }
}

.text-center {
    text-align: center
}

.mt-1 {
    margin-top: .5rem
}

.mt-2 {
    margin-top: 1rem
}

.mt-3 {
    margin-top: 1.5rem
}

.mt-4 {
    margin-top: 2rem
}

.mb-1 {
    margin-bottom: .5rem
}

.mb-2 {
    margin-bottom: 1rem
}

.mb-3 {
    margin-bottom: 1.5rem
}

.mb-4 {
    margin-bottom: 2rem
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.fade-in-up {
    animation: fadeInUp .6s ease-out forwards
}

html {
    scroll-behavior: smooth
}

@media print {

    .floating-cta-mobile,
    .btn-hero,
    .workers-cta {
        display: none
    }

    body {
        background: #fff;
        color: #000
    }
}

.why-install {
            padding: 5rem 0;
            background: linear-gradient(180deg, transparent, rgba(17, 24, 39, 0.3) 50%, transparent);
        }

        .why-grid {
            display: grid;
            gap: 1.5rem;
            margin-top: 3rem;
        }

        @media (min-width: 768px) {
            .why-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .why-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .why-card {
            background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(17, 24, 39, 0.6));
            backdrop-filter: blur(20px);
            border: 1px solid rgba(6, 182, 212, 0.1);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s;
        }

        .why-card:hover {
            transform: translateY(-8px);
            border-color: rgba(6, 182, 212, 0.4);
            box-shadow: 0 20px 50px rgba(6, 182, 212, 0.2);
        }

        .why-card:hover .why-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .why-icon svg {
            width: 40px;
            height: 40px;
            color: white;
        }

        .why-title {
            font-size: 1.4rem;
            font-weight: 800;
            color: white;
            margin-bottom: 0.75rem;
        }

        .why-desc {
            color: var(--text-muted);
            line-height: 1.7;
        }

        .section {
            padding: 5rem 0;
        }

        .section-alt {
            background: linear-gradient(180deg, transparent, rgba(17, 24, 39, 0.4) 100%);
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-subtitle {
            font-size: 1.15rem;
            color: var(--text-muted);
        }

        .for-workers {
            padding: 5rem 0;
            background: linear-gradient(135deg, rgba(30, 64, 175, 0.1), rgba(17, 24, 39, 0.3));
            position: relative;
            overflow: hidden;
        }

        .for-workers::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(6,182,212,0.1)"/></svg>');
            opacity: 0.3;
        }

        .workers-content {
            position: relative;
            z-index: 1;
        }

        .workers-grid {
            display: grid;
            gap: 3rem;
            margin-top: 3rem;
        }

        @media (min-width: 1024px) {
            .workers-grid {
                grid-template-columns: 1fr 1fr;
                align-items: center;
            }
        }

        .workers-benefits {
            display: grid;
            gap: 1.5rem;
        }

        .benefit-item {
            background: linear-gradient(135deg, rgba(30, 41, 59, 0.9), rgba(17, 24, 39, 0.8));
            backdrop-filter: blur(20px);
            border: 1px solid rgba(6, 182, 212, 0.15);
            border-radius: 16px;
            padding: 1.75rem;
            display: flex;
            gap: 1.25rem;
            transition: all 0.3s;
        }

        .benefit-item:hover {
            transform: translateX(-8px);
            border-color: rgba(6, 182, 212, 0.4);
            box-shadow: 0 12px 40px rgba(6, 182, 212, 0.2);
        }

        .benefit-icon svg {
            width: 28px;
            height: 28px;
            color: white;
        }

        .benefit-text h3 {
            font-size: 1.25rem;
            font-weight: 800;
            color: white;
            margin-bottom: 0.5rem;
        }

        .benefit-text p {
            color: var(--text-muted);
            line-height: 1.7;
            font-size: 0.95rem;
        }

        .workers-image {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            flex-direction: column;
            text-align: center;
        }

        .workers-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: linear-gradient(135deg, var(--success), #059669);
            color: white;
            padding: 1.25rem 2.5rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            text-decoration: none;
            box-shadow: 0 12px 40px rgba(16, 185, 129, 0.4);
            transition: all 0.3s;
            margin-top: 2rem;
        }

        .workers-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 16px 50px rgba(16, 185, 129, 0.5);
        }

        .workers-cta svg {
            width: 24px;
            height: 24px;
        }

        .neighborhoods-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .neighborhood-card {
            background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(17, 24, 39, 0.6));
            backdrop-filter: blur(10px);
            border: 1px solid rgba(6, 182, 212, 0.1);
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s;
        }

        .neighborhood-card:hover {
            border-color: rgba(6, 182, 212, 0.4);
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(6, 182, 212, 0.2);
        }

        .neighborhood-name {
            font-size: 1.35rem;
            font-weight: 800;
            color: white;
            margin-bottom: 0.75rem;
        }

        .seo-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            justify-content: center;
        }

        .seo-pill {
            background: rgba(30, 41, 59, 0.6);
            border: 1px solid rgba(6, 182, 212, 0.1);
            padding: 0.6rem 1.25rem;
            border-radius: 50px;
            font-size: 0.85rem;
            color: var(--text-muted);
            transition: all 0.3s;
        }

        .seo-pill:hover {
            background: rgba(30, 41, 59, 0.9);
            border-color: rgba(6, 182, 212, 0.4);
            color: var(--accent);
            transform: translateY(-2px);
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: rgba(17, 24, 39, 0.6);
            border: 1px solid rgba(6, 182, 212, 0.1);
            border-radius: 16px;
            margin-bottom: 1rem;
            overflow: hidden;
            transition: all 0.3s;
        }

        .faq-item:hover {
            border-color: rgba(6, 182, 212, 0.3);
        }

        .faq-question {
            padding: 1.5rem 3rem;
            cursor: pointer;
            font-weight: 700;
            color: var(--text);
            position: relative;
        }

        .faq-question::after {
            content: '+';
            position: absolute;
            right: 1.5rem;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1rem;
            color: var(--accent);
            transition: transform 0.3s;
        }

        .faq-item.active .faq-question::after {
            content: '−';
        }

        .faq-answer {
            display: grid;
            grid-template-rows: 0fr;
            transition: grid-template-rows 0.3s ease-out;
        }

        .faq-item.active .faq-answer {
            grid-template-rows: 1fr;
        }

        .faq-answer-content {
            overflow: hidden;
            padding: 0 1.5rem 1.5rem;
            color: var(--text-muted);
            line-height: 1.8;
        }

        .footer {
            background: rgba(15, 23, 42, 0.95);
            border-top: 1px solid rgba(6, 182, 212, 0.1);
            padding: 3rem 0 2rem;
            text-align: center;
        }

        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            justify-content: center;
            margin-bottom: 2rem;
        }

        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        .footer-copy {
            color: #64748b;
            font-size: 0.9rem;
        }

        .floating-cta {
            position: fixed;
            bottom: 20px;
            left: 20px;
            width: 65px;
            height: 65px;
            background: linear-gradient(135deg, var(--accent), var(--accent-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 30px rgba(6, 182, 212, 0.5);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            text-decoration: none;
        }

        .floating-cta.visible {
            opacity: 1;
            visibility: visible;
            animation: pulseFloat 3s ease-in-out infinite;
        }

        .floating-cta:hover {
            transform: scale(1.1);
        }

        .floating-cta svg {
            width: 32px;
            height: 32px;
            color: white;
        }

        @media (min-width: 768px) {
            .floating-cta {
                display: none;
            }
        }

        @keyframes pulseFloat {

            0%,
            100% {
                transform: translateY(0) scale(1);
            }

            50% {
                transform: translateY(-8px) scale(1.05);
            }
        }

        @media (max-width: 768px) {
            .hero {
                padding: 3rem 0 2rem;
            }

            .section {
                padding: 3rem 0;
            }

            .why-install {
                padding: 3rem 0;
            }

            .for-workers {
                padding: 3rem 0;
            }

            .stats-grid {
                gap: 1rem;
            }

            .stat-card {
                padding: 1rem;
            }

            .benefit-item {
                padding: 1.5rem;
            }
        }
         /* Neighborhood Count - Cyan */
        .neighborhood-count {
            color: var(--accent);
            text-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
        }

        /* Why Icon - Blue to Cyan Gradient */
        .why-icon {
            background: linear-gradient(135deg, #3b82f6, #06b6d4);
            box-shadow: 0 10px 30px rgba(6, 182, 212, 0.5);
        }

        /* Service Icon - Blue to Cyan */
        .service-icon-wrapper {
            background: linear-gradient(135deg, #3b82f6, #06b6d4);
            box-shadow: 0 8px 25px rgba(6, 182, 212, 0.5);
        }

        /* Benefit Icon - Blue to Cyan */
        .benefit-icon {
            background: linear-gradient(135deg, #3b82f6, #06b6d4);
            box-shadow: 0 8px 20px rgba(6, 182, 212, 0.4);
        }

        /* Stat Card Hover - Cyan Border */
        .stat-card:hover {
            border-color: rgba(6, 182, 212, 0.6);
            box-shadow: 0 12px 30px rgba(6, 182, 212, 0.3);
        }

        /* Service Card Hover - Cyan Accent */
        .service-card:hover {
            border-color: rgba(6, 182, 212, 0.5);
            box-shadow: 0 20px 60px rgba(6, 182, 212, 0.2);
        }