        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            font-size: 16px;
            line-height: 1.6;
            color: #2d3748;
            background: #fff;
        }
        img { max-width: 100%; height: auto; display: block; }
        a { color: inherit; text-decoration: none; }
        ul { list-style: none; }

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

        h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; font-weight: 700; line-height: 1.2; color: #1a202c; }
        h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
        h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
        h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }

        /* Buttons */
        .btn {
            display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
            padding: 0.875rem 1.75rem; font-weight: 600; border: 2px solid transparent;
            border-radius: 8px; cursor: pointer; transition: transform 0.2s, background-color 0.2s, border-color 0.2s, color 0.2s; white-space: nowrap;
            font-family: inherit; font-size: 1rem;
        }
        .btn-primary { background: #47b450; color: #fff; border-color: #47b450; }
        .btn-primary:hover { background: #3a9441; border-color: #3a9441; transform: translateY(-2px); }
        .btn-outline { background: transparent; color: #fff; border-color: #fff; }
        .btn-outline:hover { background: #fff; color: #47b450; }
        .btn-white { background: #fff; color: #47b450; border-color: #fff; }
        .btn-white:hover { background: #f7fafc; }
        .btn-green { background: #25d366; color: #fff; border-color: #25d366; }
        .btn-green:hover { background: #20bd59; }
        .btn:focus-visible { outline: 2px solid #1a365d; outline-offset: 2px; }
        .btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }
        .btn-lg { padding: 1rem 2rem; font-size: 1.125rem; }

        /* Header */
        .header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
        .header-top { background: #47b450; color: #fff; padding: 0.5rem 0; font-size: 0.875rem; }
        .header-top-inner { display: flex; justify-content: space-between; align-items: center; }
        .header-phone { display: flex; align-items: center; gap: 0.5rem; color: #fff; font-weight: 600; }
        .header-phone:hover { color: #1a202c; }
        .header-emergency { color: #fff; font-weight: 500; display: none; background: rgba(0,0,0,0.15); padding: 0.25rem 0.75rem; border-radius: 4px; }
        @media (min-width: 640px) { .header-emergency { display: block; } }

        .header-nav { padding: 1rem 0; }
        .header-nav-inner { display: flex; justify-content: space-between; align-items: center; }
        .logo { font-family: 'Outfit', sans-serif; font-size: 1.5rem; font-weight: 800; color: #1a202c; }
        .logo img { max-height: 50px; width: auto; object-fit: contain; }
        .logo span { color: #47b450; }

        .nav-menu { display: none; align-items: center; gap: 2rem; }
        .nav-menu a { font-weight: 500; color: #4a5568; transition: color 0.15s; }
        .nav-menu a:hover { color: #47b450; }
        .nav-menu a.btn-primary { color: #fff !important; }
        .nav-menu a.btn-primary:hover { color: #fff !important; }

        .menu-btn { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 0.5rem; }
        .menu-btn span { display: block; width: 24px; height: 2px; background: #2d3748; transition: all 0.15s; }
        .menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
        .menu-btn.active span:nth-child(2) { opacity: 0; }
        .menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

        @media (min-width: 992px) {
            .nav-menu { display: flex; }
            .menu-btn { display: none; }
        }

        @media (max-width: 767px) {
            .logo img { max-height: 35px; }
        }

        .nav-menu.active {
            display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
            background: #fff; padding: 1.5rem; box-shadow: 0 10px 15px rgba(0,0,0,0.1); gap: 1rem;
        }

        /* Hero */
        .hero {
            min-height: 100vh; display: flex; align-items: center;
            padding: 140px 0 4rem;
            color: #fff;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #47b450 0%, #3a9441 100%);
        }
        .hero-content { display: grid; gap: 3rem; align-items: center; }
        @media (min-width: 992px) { .hero-content { grid-template-columns: 1fr 420px; } }

        .hero-badge {
            display: inline-block; background: rgba(255,255,255,0.15); padding: 0.5rem 1rem;
            border-radius: 50px; font-size: 0.875rem; font-weight: 700; margin-bottom: 1.5rem;
        }
        .hero-text h1 { color: #fff; margin-bottom: 1.5rem; font-weight: 800; }
        .hero-text p { font-size: 1.125rem; opacity: 0.95; font-weight: 500; max-width: 500px; margin-bottom: 2rem; }
        .hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }
        .hero-trust { display: flex; flex-wrap: wrap; gap: 1.5rem; }
        .hero-trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9375rem; opacity: 0.9; }
        .hero-trust-item svg { color: #fff; }

        @media (max-width: 767px) {
            .hero-trust { display: none; }
        }

        .hero-form { display: none; }
        @media (min-width: 992px) { .hero-form { display: block; } }
        .hero-form-card { background: #fff; border-radius: 16px; padding: 2rem; box-shadow: 0 20px 25px rgba(0,0,0,0.15); }
        .hero-form-card h2 { font-size: 1.5rem; margin-bottom: 0.25rem; color: #1a202c; }
        .hero-form-card > p { color: #718096; margin-bottom: 1.5rem; }

        /* Forms */
        .form { display: flex; flex-direction: column; gap: 1rem; }
        .form-group { display: flex; flex-direction: column; gap: 0.25rem; }
        .form-group label { font-weight: 500; font-size: 0.875rem; color: #4a5568; }
        .form-group input, .form-group select, .form-group textarea {
            width: 100%; padding: 0.875rem 1rem; border: 1px solid #cbd5e0; border-radius: 8px;
            background: #fff; transition: all 0.15s; font-family: inherit; font-size: 1rem;
        }
        .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
            outline: none; border-color: #1a365d; box-shadow: 0 0 0 3px rgba(26,54,93,0.1);
        }
        .form-group input:focus-visible, .form-group select:focus-visible, .form-group textarea:focus-visible {
            outline: 2px solid #1a365d; outline-offset: 2px;
        }
        .form-group input::placeholder, .form-group textarea::placeholder { color: #a0aec0; }
        .form-row { display: grid; gap: 1rem; }
        @media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
        .form-card { background: #fff; padding: 2rem; border-radius: 16px; box-shadow: 0 10px 15px rgba(0,0,0,0.1); }
        .form-note { font-size: 0.75rem; color: #718096; text-align: center; margin-top: 0.5rem; }
        .phone-error { color: #e53e3e; font-size: 0.8rem; margin-top: 0.25rem; display: none; }
        .phone-error.visible { display: block; }
        .form-error { color: #e53e3e; font-size: 0.85rem; margin-top: 0.5rem; padding: 0.75rem; background: #fff5f5; border: 1px solid #fed7d7; border-radius: 6px; display: none; }
        .form-error.visible { display: block; }
        .form-group input.input-error { border-color: #e53e3e; }
        .form-group input.input-valid { border-color: #38a169; }

        /* Trust Bar */
        .trust-bar { background: #f7fafc; padding: 2rem 0; border-bottom: 1px solid #e2e8f0; }
        .trust-grid { display: grid; grid-template-columns: repeat(1, 1fr); gap: 1rem; max-width: 900px; margin: 0 auto; }
        @media (min-width: 640px) { .trust-grid { grid-template-columns: repeat(3, 1fr); } }
        .trust-item {
            display: flex; align-items: center; gap: 1rem; padding: 1rem;
            background: #fff; border-radius: 8px; border: 1px solid #e2e8f0; transition: border-color 0.15s, box-shadow 0.15s;
        }
        .trust-item:hover { border-color: #47b450; box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
        .trust-icon {
            width: 48px; height: 48px; background: #47b450; border-radius: 8px;
            display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0;
        }
        .trust-icon.green { background: #00a651; }
        .trust-icon.red { background: #e53e3e; }
        .trust-icon.gray { background: #718096; }
        .trust-stars { color: #f6ad55; font-size: 1rem; letter-spacing: -1px; }
        .trust-item span { display: block; font-size: 0.8rem; color: #4a5568; }
        .trust-item strong { display: block; font-weight: 600; color: #1a202c; font-size: 0.9rem; }

        /* Section Styling */
        .section { padding: 5rem 0; }
        .section-gray { background: #f7fafc; }
        .section-header { text-align: center; max-width: 700px; margin: 0 auto 3rem; }
        .section-tag {
            display: inline-block; font-size: 0.875rem; font-weight: 600;
            text-transform: uppercase; letter-spacing: 0.1em; color: #47b450; margin-bottom: 0.5rem;
        }
        .section-header p { color: #718096; font-size: 1.125rem; margin-top: 1rem; }

        /* Services */
        .services-grid { display: grid; gap: 2rem; }
        @media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (min-width: 992px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }

        .service-card {
            background: #fff; border-radius: 12px; overflow: hidden;
            box-shadow: 0 4px 6px rgba(0,0,0,0.07); transition: transform 0.2s, box-shadow 0.2s; border: 1px solid #e2e8f0;
        }
        .service-card:hover { transform: translateY(-4px); box-shadow: 0 20px 25px rgba(0,0,0,0.1); }
        .service-card-img {
            height: 180px; background: linear-gradient(135deg, #5bc463 0%, #47b450 100%);
            display: flex; align-items: center; justify-content: center; color: #fff;
            overflow: hidden;
        }
        .service-card-img img {
            width: 100%; height: 100%; object-fit: cover;
        }
        .service-card-content { padding: 1.5rem; }
        .service-card-content h3 { margin-bottom: 0.5rem; color: #47b450; }
        .service-card-content p { font-size: 0.9375rem; color: #4a5568; margin-bottom: 1rem; }
        .service-card-link { font-weight: 600; color: #47b450; display: inline-flex; align-items: center; gap: 0.25rem; }
        .service-card-link:hover { gap: 0.5rem; }

        /* CTA Banner */
        .cta-banner { background: linear-gradient(135deg, #47b450 0%, #3a9441 100%); padding: 4rem 0; }
        .cta-content {
            display: flex; flex-direction: column; align-items: center;
            text-align: center; gap: 2rem;
        }
        @media (min-width: 768px) { .cta-content { flex-direction: row; justify-content: space-between; text-align: left; } }
        .cta-text h2 { color: #fff; margin-bottom: 0.5rem; }
        .cta-text p { color: rgba(255,255,255,0.8); max-width: 500px; }
        .cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

        /* About */
        .about-grid { display: grid; gap: 3rem; align-items: center; }
        @media (min-width: 992px) { .about-grid { grid-template-columns: 1fr 1fr; } }
        .about-img {
            position: relative; height: 400px; border-radius: 16px;
            background: linear-gradient(135deg, #5bc463 0%, #47b450 100%);
            display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.25rem;
            overflow: hidden;
        }
        .about-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .about-badge {
            position: absolute; bottom: -20px; right: 20px; background: #2d3748; color: #fff;
            padding: 1.5rem; border-radius: 12px; text-align: center; box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        }
        .about-badge-num { display: block; font-family: 'Outfit', sans-serif; font-size: 1.5rem; font-weight: 800; }
        .about-badge-text { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; }
        .about-content p { margin-bottom: 1rem; }
        .about-features { display: flex; flex-direction: column; gap: 1.5rem; margin: 2rem 0; }
        .about-feature { display: flex; gap: 1rem; }
        .about-feature-icon {
            flex-shrink: 0; width: 48px; height: 48px;
            display: flex; align-items: center; justify-content: center;
            background: #47b450; color: #fff; border-radius: 8px;
        }
        .about-feature h3 { margin-bottom: 0.25rem; font-size: 1.125rem; }
        .about-feature p { font-size: 0.9375rem; color: #4a5568; margin-bottom: 0; }

        /* Projects */
        .projects-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(2, 1fr); }
        @media (min-width: 768px) { .projects-grid { grid-template-columns: repeat(3, 1fr); } }
        .project-card {
            position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 4/3;
            background: #f7fafc; cursor: pointer;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        .project-overlay {
            position: absolute; inset: 0;
            background: linear-gradient(to top, rgba(45,55,72,0.9) 0%, transparent 60%);
            display: flex; flex-direction: column; justify-content: flex-end;
            padding: 1.5rem; color: #fff; opacity: 0; transition: opacity 0.2s;
        }
        .project-card:hover .project-overlay { opacity: 1; }
        .project-overlay h4 { color: #fff; margin-bottom: 0.25rem; }
        .project-overlay span { font-size: 0.875rem; color: #47b450; }

        /* Reviews */
        .reviews-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; margin-bottom: 3rem; }
        .reviews-badge {
            display: flex; align-items: center; gap: 1rem; padding: 1.5rem;
            background: #fff; border-radius: 12px; box-shadow: 0 4px 6px rgba(0,0,0,0.07); transition: transform 0.15s, box-shadow 0.15s;
        }
        .reviews-badge:hover { transform: translateY(-2px); box-shadow: 0 10px 15px rgba(0,0,0,0.1); }
        .reviews-badge-icon {
            width: 48px; height: 48px; background: #f7fafc; border-radius: 8px;
            display: flex; align-items: center; justify-content: center;
        }
        .reviews-badge-stars { color: #f6ad55; font-size: 1.125rem; letter-spacing: -2px; }
        .reviews-badge-rating span { display: block; font-size: 0.875rem; color: #4a5568; }

        .reviews-grid { display: grid; gap: 1.5rem; }
        @media (min-width: 640px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (min-width: 992px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

        .review-card {
            background: #fff; padding: 2rem; border-radius: 12px; box-shadow: 0 4px 6px rgba(0,0,0,0.07);
            display: flex; flex-direction: column; min-height: 350px;
        }
        .review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
        .review-stars { color: #f6ad55; font-size: 1.25rem; letter-spacing: -2px; }
        .review-text { font-size: 0.9375rem; color: #4a5568; margin-bottom: 1.5rem; line-height: 1.7; flex-grow: 1; display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; line-clamp: 5; overflow: hidden; padding-top: 0.5rem; }
        .review-author { display: flex; align-items: center; gap: 1rem; }
        .review-avatar {
            width: 40px; height: 40px; background: #47b450; color: #fff; border-radius: 50%;
            display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 0.875rem;
        }
        .review-author strong { display: block; color: #1a202c; }
        .review-author span { font-size: 0.75rem; color: #718096; }

        .reviews-cta {
            display: flex; flex-direction: row; flex-wrap: wrap; justify-content: center;
            align-items: center; gap: 1rem; margin-top: 3rem; width: 100%;
        }
        .btn-outline-dark { color: #47b450; border-color: #47b450; background: transparent; }
        .btn-outline-dark:hover { background: #47b450; color: #fff; }

        /* Areas */
        .areas-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; max-width: 900px; margin: 0 auto; }
        .areas-list span {
            background: #edf2f7; padding: 0.5rem 1rem; border-radius: 50px;
            font-size: 0.9375rem; color: #4a5568; transition: all 0.15s; cursor: default;
        }
        .areas-list span:hover { background: #47b450; color: #fff; }
        .areas-note { text-align: center; color: #718096; margin-top: 2rem; }

        /* Area Links */
        .areas-list a { background: #edf2f7; padding: 0.5rem 1rem; border-radius: 50px; font-size: 0.9375rem; color: #4a5568; transition: all 0.15s; text-decoration: none; display: inline-block; }
        .areas-list a:hover { background: #47b450; color: #fff; }

        /* Contact */
        .contact-grid { display: grid; gap: 3rem; }
        @media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; align-items: start; } }
        .contact-info p { color: #4a5568; margin-bottom: 2rem; }
        .contact-details { display: flex; flex-direction: column; gap: 1rem; }
        .contact-item {
            display: flex; align-items: flex-start; gap: 1rem; padding: 1rem;
            background: #fff; border-radius: 8px; border: 1px solid #e2e8f0; transition: border-color 0.15s, box-shadow 0.15s;
        }
        .contact-item:hover { border-color: #47b450; box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
        .contact-icon {
            flex-shrink: 0; width: 48px; height: 48px;
            display: flex; align-items: center; justify-content: center;
            background: #47b450; color: #fff; border-radius: 8px;
        }
        .contact-icon.green { background: #25d366; }
        .contact-item strong { display: block; color: #1a202c; margin-bottom: 0.25rem; }
        .contact-item span { font-size: 0.9375rem; color: #4a5568; }

        /* Footer */
        .footer { background: #171923; color: #a0aec0; padding: 4rem 0 2rem; }
        .footer-grid { display: grid; gap: 2rem; }
        @media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (min-width: 992px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }
        .footer-brand p { font-size: 0.9375rem; margin-bottom: 1rem; }
        .footer-logo { font-family: 'Outfit', sans-serif; font-size: 1.5rem; font-weight: 800; color: #fff; margin-bottom: 1rem; }
        .footer-logo span { color: #47b450; }
        .footer h4 { color: #fff; font-size: 1rem; margin-bottom: 1.5rem; }
        .footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
        .footer-links a { font-size: 0.9375rem; transition: color 0.15s; }
        .footer-links a:hover { color: #47b450; }
        .footer-contact address { font-style: normal; font-size: 0.9375rem; margin-bottom: 1rem; }
        .footer-contact a { display: block; font-size: 0.9375rem; transition: color 0.15s; }
        .footer-contact a:hover { color: #47b450; }
        .footer-bottom {
            border-top: 1px solid #2d3748; margin-top: 3rem; padding-top: 2rem;
            text-align: center; font-size: 0.875rem; color: #718096;
        }

        /* Floating Buttons */
        .whatsapp-btn {
            position: fixed; bottom: 30px; right: 20px; width: 60px; height: 60px;
            background: #25d366; color: #fff; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            box-shadow: 0 4px 15px rgba(37,211,102,0.4); z-index: 999; transition: all 0.2s;
        }
        .whatsapp-btn:hover { transform: scale(1.1); }

        /* Hide reCAPTCHA badge */
        .grecaptcha-badge { visibility: hidden !important; }

        /* Modal */
        .modal {
            position: fixed; inset: 0; background: rgba(0,0,0,0.5);
            display: none; align-items: center; justify-content: center; z-index: 9999; padding: 1rem;
            overscroll-behavior: contain;
        }
        .modal.active { display: flex; }
        .modal-content {
            background: #fff; border-radius: 16px; padding: 3rem; max-width: 400px; text-align: center;
        }
        .modal-icon { color: #47b450; margin-bottom: 1.5rem; }
        .modal-content h3 { margin-bottom: 1rem; }
        .modal-content p { color: #4a5568; margin-bottom: 2rem; }

        section[id] { scroll-margin-top: 120px; }

        /* Cookie Consent Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(26, 32, 44, 0.98);
            color: white;
            padding: 1rem;
            display: none;
            z-index: 9999;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
            backdrop-filter: blur(10px);
        }
        .cookie-banner.show { display: block; }
        .cookie-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        .cookie-text {
            flex: 1;
            min-width: 250px;
            font-size: 0.9rem;
            line-height: 1.5;
        }
        .cookie-text a {
            color: #48bb78;
            text-decoration: underline;
        }
        .cookie-buttons {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
        }
        .cookie-btn {
            padding: 0.5rem 1.25rem;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            font-size: 0.875rem;
            white-space: nowrap;
        }
        .cookie-btn-accept {
            background: #47b450;
            color: white;
        }
        .cookie-btn-accept:hover {
            background: #3a9441;
        }
        .cookie-btn-decline {
            background: transparent;
            color: white;
            border: 1px solid rgba(255,255,255,0.3);
        }
        .cookie-btn-decline:hover {
            background: rgba(255,255,255,0.1);
        }
        @media (max-width: 768px) {
            .cookie-content { flex-direction: column; align-items: flex-start; }
            .cookie-buttons { width: 100%; }
            .cookie-btn { flex: 1; }
        }

        /* Screen reader only - visually hidden but accessible */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        /* Skip to content link for accessibility */
        .skip-to-content {
            position: absolute;
            top: -40px;
            left: 0;
            background: #47b450;
            color: white;
            padding: 8px 16px;
            text-decoration: none;
            z-index: 10000;
            font-weight: 600;
            border-radius: 0 0 4px 0;
        }
        .skip-to-content:focus {
            top: 0;
        }

        /* FAQ */
        .faq-list { max-width: 800px; margin: 0 auto; }
        .faq-item { background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; margin-bottom: 1rem; overflow: hidden; }
        .faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 1.5rem; background: none; border: none; cursor: pointer; font-family: 'Outfit', sans-serif; font-size: 1.125rem; font-weight: 600; color: #1a202c; text-align: left; }
        .faq-question:hover { color: #47b450; }
        .faq-icon { width: 24px; height: 24px; flex-shrink: 0; transition: transform 0.2s; color: #47b450; }
        .faq-item.active .faq-icon { transform: rotate(180deg); }
        .faq-answer { padding: 0 1.5rem; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; color: #4a5568; font-size: 0.9375rem; line-height: 1.7; }
        .faq-item.active .faq-answer { max-height: 500px; padding: 0 1.5rem 1.5rem; }

        /* About Area */
        .about-area-grid { display: grid; gap: 3rem; align-items: start; }
        @media (min-width: 992px) { .about-area-grid { grid-template-columns: 1fr 1fr; } }
        .about-area-content p { margin-bottom: 1rem; color: #4a5568; }
        .about-area-content h3 { margin-bottom: 0.5rem; }
        .about-area-features { display: grid; gap: 1rem; margin-top: 2rem; }
        @media (min-width: 640px) { .about-area-features { grid-template-columns: 1fr 1fr; } }
        .area-feature { display: flex; gap: 1rem; padding: 1rem; background: #fff; border-radius: 8px; border: 1px solid #e2e8f0; }
        .area-feature-icon { flex-shrink: 0; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: #47b450; color: #fff; border-radius: 8px; }
        .area-feature h4 { font-size: 1rem; margin-bottom: 0.25rem; }
        .area-feature p { font-size: 0.875rem; color: #4a5568; margin: 0; }

        /* Cross-service callout */
        .cross-service { background: #fff; border: 2px solid #47b450; border-radius: 12px; padding: 1.5rem; margin-top: 2rem; text-align: center; }
        .cross-service h3 { margin-bottom: 0.5rem; font-size: 1.125rem; }
        .cross-service-links { display: flex; justify-content: center; gap: 1rem; margin-top: 1rem; flex-wrap: wrap; }
        .cross-service-links a { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1.25rem; background: #47b450; color: #fff; border-radius: 8px; font-weight: 600; font-size: 0.9375rem; transition: background 0.15s; }
        .cross-service-links a:hover { background: #3a9441; }

        /* Respect user motion preferences */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }

        /* Hero background video */
        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -2;
        }
        /* Dark overlay for text readability */
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(71, 180, 80, 0.7) 0%, rgba(58, 148, 65, 0.7) 100%);
            z-index: -1;
        }
        /* Pause video on mobile to save data */
        @media (max-width: 767px) {
            .hero-video {
                display: none;
            }
            .hero {
                background: linear-gradient(135deg, #47b450 0%, #3a9441 100%);
            }
        }
        /* Hide trust items on mobile to reduce clutter, keep ratings visible */
        @media (min-width: 992px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
        .areas-note { text-align: center; color: #718096; margin-top: 2rem; }
        @media (min-width: 992px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr; } }
