:root {
            --accent: #ff4444;
            --text: #ffffff;
            --text-light: #b0b0b0;
            --bg-dark: #0a0a0a;
            --bg-card: #1a1a1a;
            --border-light: #333333;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background-color: var(--bg-dark);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* ========== TOP BAR WITH CALL BUTTON ========== */
        .top-bar {
           background: rgba(10, 10, 10, 0.98);
            border-bottom: 1px solid var(--border-light);
            padding: 0.6rem 0;
            top: 0;
            z-index: 1100;
            position: sticky;
        }

        .top-bar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .top-bar-text {
            font-size: 0.9rem;
            font-weight: 600;
            color: white;
            letter-spacing: 0.05em;
        }

        .call-button {
            background: white;
            color: var(--accent);
            border: none;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
            letter-spacing: 0.05em;
        }

        .call-button:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
        }

        .call-button i {
            font-size: 1rem;
        }

        /* ========== MOBILE HEADER ========== */
        .mobile-header {
            background: rgba(10, 10, 10, 0.98);
            border-bottom: 1px solid var(--border-light);
            padding: 1rem 0;
            top: 30px;
            z-index: 1000;
            text-align: center;
        }

        .mobile-header .logo {
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            color: #ffffff;
        }

        /* ========== HERO SECTION ========== */
        .hero {
            background:url(../images/Ceramic-Coating-Long-Island.jpg);
            padding: 5rem 1.5rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            background-size: cover;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
             background: linear-gradient(135deg, var(--bg-dark) 0%, rgba(255, 68, 68, 0.08) 100%);
           
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: clamp(1.8rem, 5vw, 5.8rem);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
            letter-spacing: -0.01em;
        }

        .hero .subheading {
            font-size: 1.1rem;
            color: var(--text-light);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(255, 68, 68, 0.15);
            border: 1px solid rgba(255, 68, 68, 0.4);
            color: var(--accent);
            padding: 0.5rem 1.2rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        /* ========== MAIN CONTAINER ========== */
        .lead-container {
            display: grid;
            gap: 0;
            min-height: auto;
            background: var(--bg-dark);
        }

        /* ========== LEFT SIDE - BENEFITS ========== */
        .benefits-side {
            padding: 3rem 2rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .benefits-side h2 {
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .benefit-list {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }

        .benefit-item {
            display: flex;
            gap: 1rem;
        }

        .benefit-item .icon {
            width: 24px;
            height: 24px;
            background: var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 0.85rem;
        }

        .benefit-item .text {
            flex: 1;
        }

        .benefit-item h3 {
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 0.3rem;
        }

        .benefit-item p {
            font-size: 0.85rem;
            color: var(--text-light);
            margin: 0;
        }

        .trust-badges {
            margin-top: 2.5rem;
            padding-top: 2rem;
            border-top: 1px solid var(--border-light);
        }

        .badge-item {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            margin-bottom: 1rem;
            font-size: 0.9rem;
        }

        .badge-item .value {
            color: var(--accent);
            font-weight: 700;
        }

        /* ========== RIGHT SIDE - FORM ========== */
        .form-side {
            background: linear-gradient(135deg, var(--bg-card) 0%, rgba(255, 68, 68, 0.05) 100%);
            padding: 3rem 2rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .form-side h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .form-side .form-subtitle {
            color: var(--text-light);
            font-size: 0.95rem;
            margin-bottom: 2rem;
        }

        .form-group {
            margin-bottom: 1.2rem;
        }

        .form-group label {
            display: block;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: #ffffff;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem 1rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-light);
            border-radius: 4px;
            color: #ffffff;
            font-family: 'Sora', sans-serif;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent);
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 0 0 3px rgba(255, 68, 68, 0.1);
        }

        .form-group select {
            appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgb(255,255,255)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 0.75rem center;
            background-size: 1.2em;
            padding-right: 2.5rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .form-row .form-group {
            margin-bottom: 1.2rem;
        }

        .cta-button {
            width: 100%;
            padding: 1rem;
            background: linear-gradient(135deg, var(--accent) 0%, #ff6666 100%);
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 0.5rem;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 68, 68, 0.3);
        }

        .form-disclaimer {
            font-size: 0.75rem;
            color: var(--text-light);
            margin-top: 1rem;
            text-align: center;
        }

        /* ========== TRUST SECTION ========== */
        .trust-section {
            background: var(--bg-card);
            padding: 2.5rem;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            text-align: center;
        }

        .trust-stat h4 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 0.5rem;
        }

        .trust-stat p {
            font-size: 0.9rem;
            color: var(--text-light);
            margin: 0;
        }

        /* ========== SECTIONS ========== */
        section {
            padding: 2rem 2rem;
        }

        section h2 {
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 700;
            margin-bottom: 3rem;
            letter-spacing: -0.01em;
            line-height: 1.2;
        }

        section p {
            font-size: 1.05rem;
            line-height: 1.8;
            color: var(--text-light);
            margin-bottom: 1.5rem;
        }

        /* ========== BENEFITS SHOWCASE SECTION ========== */
        .benefits-showcase {
            background: linear-gradient(135deg, var(--bg-card) 0%, rgba(255, 68, 68, 0.08) 100%);
            position: relative;
        }

        .benefits-showcase::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 68, 68, 0.12) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }

        .benefits-showcase .container-lg {
            position: relative;
            z-index: 1;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2.5rem;
            margin-top: 3.5rem;
        }

        .benefit-card {
            background: rgba(26, 26, 26, 0.6);
            border: 1px solid rgba(255, 68, 68, 0.2);
            border-radius: 8px;
            padding: 2.5rem;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .benefit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #ff4444, transparent);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .benefit-card:hover::before {
            transform: scaleX(1);
        }

        .benefit-card:hover {
            transform: translateY(-8px);
            border-color: #ff4444;
            background: rgba(26, 26, 26, 0.8);
            box-shadow: 0 15px 40px rgba(255, 68, 68, 0.15);
        }

        .benefit-card .icon-wrapper {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #ff4444, #ff6666);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
        }

        .benefit-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
            color: #ffffff;
        }

        .benefit-card p {
            margin-bottom: 0;
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.75);
        }

        /* ========== SERVICES CARDS ========== */
        .services-section {
            background: var(--bg-card);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-card {
            background: var(--bg-dark);
            padding: 2.5rem;
            border: 1px solid var(--border-light);
            transition: all 0.3s ease;
            border-radius: 8px;
        }

        .service-card:hover {
            border-color: #ff4444;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 68, 68, 0.15);
        }

        .service-card h3 {
            font-size: 1.15rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .service-card p {
            margin-bottom: 0;
            font-size: 0.95rem;
        }

        /* ========== WHY CHOOSE US ========== */
        .trust-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 4rem;
            align-items: center;
            margin-top: 3rem;
        }

        .trust-features {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .trust-feature {
            display: flex;
            gap: 1.5rem;
        }

        .trust-feature .number {
            font-size: 2rem;
            font-weight: 700;
            color: #ff4444;
            min-width: 50px;
        }

        .trust-feature h4 {
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .trust-feature p {
            margin-bottom: 0;
            font-size: 0.95rem;
        }

        .trust-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .stat-box {
            text-align: center;
        }

        .stat-box .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #ff4444;
            margin-bottom: 0.5rem;
        }

        .stat-box .stat-label {
            color: var(--text-light);
            font-size: 0.9rem;
            line-height: 1.4;
        }

        /* ========== GALLERY ========== */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .gallery-item {
            position: relative;
            height: 350px;
            overflow: hidden;
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            border-radius: 8px;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: flex-end;
            justify-content: flex-start;
            padding: 2rem;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-text {
            color: white;
        }

        .gallery-text h4 {
            font-size: 1.05rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .gallery-text p {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 0;
            font-style: italic;
        }

        /* ========== TESTIMONIALS SECTION ========== */
        .testimonials-section {
            background: var(--bg-card);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .testimonial-card {
            background: var(--bg-dark);
            padding: 2.5rem;
            border: 1px solid var(--border-light);
            border-left: 4px solid #ff4444;
            transition: all 0.3s ease;
            border-radius: 4px;
            position: relative;
        }

        .testimonial-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(255, 68, 68, 0.15);
        }

        .stars {
            display: flex;
            gap: 0.3rem;
            margin-bottom: 1.5rem;
        }

        .star {
            color: #ff4444;
            font-size: 1.1rem;
        }

        .testimonial-text {
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            color: rgba(255, 255, 255, 0.85);
            font-style: italic;
        }

        .testimonial-author {
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 0.25rem;
        }

        .testimonial-role {
            font-size: 0.85rem;
            color: var(--text-light);
        }

        /* ========== SEO SECTION ========== */
        .seo-section {
            background: var(--bg-card);
        }

        .seo-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .seo-item {
            background: var(--bg-dark);
            padding: 2rem;
            border: 1px solid var(--border-light);
            text-align: center;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .seo-item:hover {
            border-color: #ff4444;
            transform: translateY(-4px);
        }

        .seo-item h3 {
            font-size: 1.05rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .seo-item p {
            font-size: 0.9rem;
            margin-bottom: 0;
        }

        /* ========== FOOTER ========== */
        footer {
            background: #000000;
            color: rgba(255, 255, 255, 0.7);
            padding: 3rem 2rem;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        footer p {
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
        }

        footer a {
            color: white;
            text-decoration: none;
        }

        footer a:hover {
            text-decoration: underline;
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .lead-container {
                grid-template-columns: 1fr;
            }

            .benefits-grid,
            .services-grid {
                grid-template-columns: 1fr;
            }

            .trust-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .gallery-grid,
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .seo-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .trust-section {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .top-bar-content {
                flex-direction: column;
                gap: 0.8rem;
                padding: 0.8rem 1rem;
            }

            .top-bar-text {
                font-size: 0.8rem;
            }

            .call-button {
                padding: 0.4rem 1rem;
                font-size: 0.75rem;
            }

            section {
                padding: 4rem 1.5rem;
            }

            section h2 {
                font-size: 1.8rem;
                margin-bottom: 2rem;
            }

            .hero {
                padding: 2rem 1rem;
            }

            .hero h1 {
                font-size: 1.5rem;
            }

            .hero .subheading {
                font-size: 0.95rem;
            }

            .benefits-side,
            .form-side {
                padding: 2rem 1.5rem;
            }

            .benefits-side h2 {
                font-size: 1.4rem;
            }

            .form-side h3 {
                font-size: 1.2rem;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .trust-section {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                padding: 2rem;
            }

            .gallery-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .seo-grid {
                grid-template-columns: 1fr;
            }

            .benefit-list {
                gap: 1rem;
            }

            .benefit-item h3 {
                font-size: 0.9rem;
            }

            .benefit-item p {
                font-size: 0.8rem;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .top-bar-content {
                padding: 0.6rem 0.8rem;
            }

            section {
                padding: 3rem 1rem;
            }

            section h2 {
                font-size: 1.5rem;
            }
        }
         /* ========== WHY CHOOSE US SECTION ========== */
        .why-choose-section {
            background: linear-gradient(135deg, var(--bg-dark) 0%, rgba(255, 68, 68, 0.06) 100%);
            padding: 2rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .why-choose-section::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 68, 68, 0.12) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }

        .why-choose-section::after {
            content: '';
            position: absolute;
            bottom: -20%;
            left: -15%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255, 68, 68, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }

        .why-choose-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 700;
            margin-bottom: 1rem;
            letter-spacing: -0.01em;
            line-height: 1.2;
        }

        .section-header .subtitle {
            font-size: 1.1rem;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* ========== FEATURES GRID ========== */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2.5rem;
            margin-bottom: 4rem;
        }

        .feature-card {
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(255, 68, 68, 0.04) 100%);
            border: 1px solid rgba(255, 68, 68, 0.2);
            border-radius: 12px;
            padding: 2.5rem;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 68, 68, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .feature-card:hover::before {
            left: 100%;
        }

        .feature-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent), transparent);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .feature-card:hover::after {
            transform: scaleX(1);
        }

        .feature-card:hover {
            transform: translateY(-12px);
            border-color: rgba(255, 68, 68, 0.5);
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(255, 68, 68, 0.08) 100%);
            box-shadow: 0 25px 50px rgba(255, 68, 68, 0.15);
        }

        .feature-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--accent) 0%, #ff6666 100%);
            border-radius: 10px;
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .feature-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 0.8rem;
            color: #ffffff;
        }

        .feature-card p {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            margin: 0;
        }

        /* ========== STATS ROW ========== */
        .stats-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 4rem;
            padding: 3rem;
            background: rgba(255, 68, 68, 0.08);
            border: 1px solid rgba(255, 68, 68, 0.2);
            border-radius: 12px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 0.5rem;
            font-family: 'Space Mono', monospace;
        }

        .stat-label {
            font-size: 0.95rem;
            color: var(--text-light);
            line-height: 1.5;
        }

        /* ========== CTA SECTION ========== */
        .cta-container {
            text-align: center;
        }

        .cta-container p {
            font-size: 1.15rem;
            color: var(--text-light);
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 3rem;
            background: linear-gradient(135deg, var(--accent) 0%, #ff6666 100%);
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(255, 68, 68, 0.2);
        }

        .cta-button:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 40px rgba(255, 68, 68, 0.35);
        }

        .cta-button:active {
            transform: translateY(-2px);
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .features-grid {
                grid-template-columns: 1fr;
            }

            .stats-row {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .why-choose-section {
                padding: 4rem 1.5rem;
            }

            .section-header {
                margin-bottom: 3rem;
            }

            .section-header h2 {
                font-size: 1.8rem;
            }

            .features-grid {
                gap: 1.5rem;
                margin-bottom: 2.5rem;
            }

            .feature-card {
                padding: 2rem;
            }

            .feature-card h3 {
                font-size: 1.1rem;
            }

            .feature-card p {
                font-size: 0.9rem;
            }

            .stats-row {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                padding: 2rem;
                margin-bottom: 2.5rem;
            }

            .stat-number {
                font-size: 2.2rem;
            }

            .cta-container p {
                font-size: 1rem;
                margin-bottom: 1.5rem;
            }

            .cta-button {
                padding: 0.85rem 2.5rem;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .why-choose-section {
                padding: 3rem 1rem;
            }

            .section-header h2 {
                font-size: 1.5rem;
            }

            .feature-card {
                padding: 1.5rem;
            }

            .stats-row {
                padding: 1.5rem;
            }
        }
         /* ========== CTA SECTION ========== */
        .cta-final {
            background: #1a1a1a;
            color: white;
            text-align: center;
            padding: 5rem 2rem;
            border-top: 1px solid #333333;
        }

        .cta-final h2 {
            color: white;
            margin-bottom: 1.5rem;
        }

        .cta-final p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.15rem;
            max-width: 600px;
            margin: 0 auto 2.5rem;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-bottom: 2rem;
        }

        .cta-button {
            padding: 0.9rem 2.5rem;
            font-weight: 600;
            font-size: 0.95rem;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .cta-button-primary {
            background: #ff4444;
            color: white;
        }

        .cta-button-primary:hover {
            transform: translateX(4px);
            background: #ff6666;
        }

        .cta-button-secondary {
            background: transparent;
            color: white;
            border: 1px solid #ff4444;
        }

        .cta-button-secondary:hover {
            background: #ff4444;
            color: white;
        }

        .phone-display {
            display: inline-block;
            margin-top: 1.5rem;
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: 0.05em;
            font-family: 'Space Mono', monospace;
        }

        /* ========== BACK TO TOP BUTTON ========== */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--accent) 0%, #ff6666 100%);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            display: none;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 24px rgba(255, 68, 68, 0.3);
            transition: all 0.3s ease;
            z-index: 999;
        }

        .back-to-top:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(255, 68, 68, 0.4);
        }

        .back-to-top.show {
            display: flex;
        }

        .back-to-top:active {
            transform: translateY(-2px);
        }
