        /* ========================================
           COWBOY MOVERS DESIGN SYSTEM
           Western Minimalism
        ======================================== */

        :root {
            /* Primary palette - Clean Minimalist */
            --color-primary: #ffffff;      /* Pure white */
            --color-secondary: #c9963c;    /* Muted gold */
            --color-accent: #1a1a1a;       /* Near black */

            /* Backgrounds */
            --color-background: #ffffff;   /* White */
            --color-surface: #ffffff;      /* White */
            --color-surface-alt: #f8f8f8;  /* Very light gray */
            --color-bg-warm: #faf8f5;      /* Warm cream */
            --color-bg-cool: #f5f5f7;      /* Cool light gray */
            --color-bg-sand: #f7f5f0;      /* Soft sand */

            /* Text colors */
            --color-text: #1a1a1a;         /* Near black */
            --color-text-muted: #666666;   /* Medium gray */
            --color-text-light: #ffffff;   /* White */

            /* Functional */
            --color-border: #e8e8e8;       /* Light gray border */
            --color-success: #22c55e;      /* Modern green */

            /* Typography */
            --font-display: 'Playfair Display', Georgia, serif;
            --font-body: 'Source Sans 3', -apple-system, sans-serif;

            /* Spacing */
            --section-padding: 5rem 2rem;
            --container-max: 1100px;
        }

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

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px; /* Account for fixed header */
            overflow-x: hidden; /* Prevent horizontal scroll on mobile */
        }

        body {
            font-family: var(--font-body);
            font-size: 16px;
            line-height: 1.6;
            color: var(--color-text);
            background: var(--color-background);
            -webkit-font-smoothing: antialiased;
            -webkit-tap-highlight-color: transparent; /* Clean taps on mobile */
            overflow-x: hidden; /* Prevent horizontal scroll on mobile */
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-display);
            font-weight: 600;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* ========================================
           HEADER - Minimal & Fixed
        ======================================== */

        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: #ffffff;
            z-index: 1000;
            transition: all 0.3s ease;
            border-bottom: 1px solid var(--color-border);
        }

        nav {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 1.25rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .logo-icon {
            width: 32px;
            height: 32px;
            fill: var(--color-secondary);
        }

        /* Icon styling */
        .icon {
            width: 24px;
            height: 24px;
            fill: currentColor;
            flex-shrink: 0;
        }

        .icon-sm {
            width: 18px;
            height: 18px;
        }

        .icon-lg {
            width: 32px;
            height: 32px;
        }

        .icon-xl {
            width: 48px;
            height: 48px;
        }

        .logo-text {
            font-family: var(--font-display);
            font-size: clamp(0.9rem, 3vw, 1.25rem);
            font-weight: 600;
            color: var(--color-text);
            letter-spacing: 0.01em;
            text-transform: uppercase;
            line-height: 1.2;
        }

        .logo-text span {
            color: var(--color-secondary);
            font-style: italic;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            color: var(--color-text);
            font-size: 0.9rem;
            font-weight: 500;
            transition: color 0.2s ease;
        }

        .nav-links a:hover {
            color: var(--color-secondary);
        }

        .nav-cta {
            background: var(--color-secondary);
            color: var(--color-primary) !important;
            padding: 0.75rem 1.5rem;
            font-weight: 600;
            opacity: 1 !important;
            border-radius: 6px;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(212, 168, 75, 0.4);
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--color-text);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
        }

        /* ========================================
           HERO - Full Impact with Background Image
        ======================================== */

        .hero {
            margin-top: 72px;
            min-height: 70vh;
            padding: 6rem 2rem;
            display: flex;
            align-items: center;
            background: url('hero-bg.jpg') center center / cover no-repeat;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(26, 22, 18, 0.85) 0%, rgba(26, 22, 18, 0.7) 100%);
        }

        .hero-content {
            max-width: var(--container-max);
            margin: 0 auto;
            width: 100%;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .hero-text {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero-text h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            color: #ffffff;
            margin-bottom: 1.5rem;
            font-weight: 500;
            line-height: 1.15;
        }

        .hero-text h1 span {
            color: var(--color-secondary);
            font-style: italic;
            display: block;
        }

        .hero-text > p {
            font-size: 1.15rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2.5rem;
            line-height: 1.8;
            max-width: 550px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-rating {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 2rem;
            padding: 0.75rem 1.25rem;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
        }

        .hero-rating .stars {
            color: var(--color-secondary);
            font-size: 1rem;
            letter-spacing: 0.02em;
        }

        .hero-rating span {
            color: #ffffff;
            font-size: 0.9rem;
        }

        .hero-rating strong {
            color: #ffffff;
        }

        .hero-cta-group {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            align-items: center;
            justify-content: center;
        }

        .hero .btn-outline {
            color: #ffffff;
            border-color: rgba(255, 255, 255, 0.4);
        }

        .hero .btn-outline:hover {
            border-color: #ffffff;
            background: rgba(255, 255, 255, 0.1);
        }

        /* Mobile responsive hero */
        @media (max-width: 992px) {
            .hero {
                padding: 4rem 1.5rem;
                min-height: 60vh;
                background-image: url('hero-bg-800.jpg');
            }

            .hero-text h1 {
                font-size: clamp(2rem, 7vw, 3rem);
            }
        }

        @media (max-width: 600px) {
            .hero {
                padding: 3rem 1.25rem;
                min-height: auto;
                background-image: url('hero-bg-400.jpg');
            }

            .hero-rating {
                flex-direction: column;
                gap: 0.25rem;
                border-radius: 8px;
            }

            .hero-cta-group {
                flex-direction: column;
                width: 100%;
            }

            .hero-cta-group .btn {
                width: 100%;
                justify-content: center;
            }

            .hero-text > p {
                font-size: 1rem;
            }
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            font-family: var(--font-display);
            font-size: 1rem;
            font-weight: 600;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .btn-primary {
            background: var(--color-secondary);
            color: #1a1612;
        }

        .btn-primary .icon {
            fill: #1a1612;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(212, 168, 75, 0.4);
        }

        .btn-outline {
            background: transparent;
            color: var(--color-text);
            border: 2px solid var(--color-border);
        }

        .btn-outline:hover {
            border-color: var(--color-text);
            background: var(--color-surface-alt);
        }

        /* ========================================
           TRUST BAR - Clean Minimal
        ======================================== */

        .trust-bar {
            background: var(--color-surface-alt);
            border-bottom: 1px solid var(--color-border);
            padding: 1.5rem 2rem;
        }

        .trust-items {
            max-width: var(--container-max);
            margin: 0 auto;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem 3rem;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-align: left;
        }

        .trust-icon {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .trust-icon .icon {
            width: 24px;
            height: 24px;
            fill: var(--color-secondary);
        }

        .trust-label {
            font-family: var(--font-body);
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--color-text);
        }

        /* ========================================
           SERVICES - Clean Cards
        ======================================== */

        .services {
            padding: var(--section-padding);
            background: var(--color-background);
            border-top: 1px solid var(--color-border);
        }

        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 2rem;
        }

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

        .section-label {
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--color-secondary);
            text-transform: uppercase;
            letter-spacing: 0.15em;
            margin-bottom: 0.75rem;
        }

        .section-title {
            font-size: clamp(1.75rem, 4vw, 2.5rem);
            color: var(--color-text);
            margin-bottom: 0.75rem;
            font-weight: 500;
        }

        .section-subtitle {
            font-size: 1.05rem;
            color: var(--color-text-muted);
            max-width: 550px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .service-card {
            background: var(--color-surface);
            padding: 2rem;
            border: 1px solid var(--color-border);
            border-radius: 8px;
            transition: all 0.2s ease;
        }

        .service-card:hover {
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
            border-color: var(--color-secondary);
        }

        .service-icon {
            margin-bottom: 1.25rem;
        }

        .service-card .icon-xl {
            width: 40px;
            height: 40px;
            fill: var(--color-secondary);
        }

        .service-card h3 {
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
            color: var(--color-text);
        }

        .service-card p {
            color: var(--color-text-muted);
            margin-bottom: 1.25rem;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        .service-features {
            list-style: none;
            margin-bottom: 1.25rem;
        }

        .service-features li {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.4rem 0;
            font-size: 0.9rem;
            color: var(--color-text-muted);
        }

        .service-features .check {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 16px;
            height: 16px;
        }

        .service-features .check .icon {
            width: 14px;
            height: 14px;
            fill: var(--color-success);
        }

        .service-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--color-secondary);
            font-weight: 600;
            font-size: 0.9rem;
            transition: gap 0.2s ease;
        }

        .service-link:hover {
            gap: 0.75rem;
        }

        /* ========================================
           WHY CHOOSE US - Light Minimal
        ======================================== */

        .why-us {
            padding: var(--section-padding);
            background: var(--color-bg-cool);
            position: relative;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .feature-item {
            display: flex;
            gap: 1.25rem;
            padding: 1.5rem;
            background: var(--color-surface);
            border: 1px solid var(--color-border);
            border-radius: 8px;
        }

        .feature-number {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 500;
            color: var(--color-secondary);
            line-height: 1;
            font-style: italic;
            min-width: 50px;
        }

        .feature-content h3 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            color: var(--color-text);
        }

        .feature-content p {
            color: var(--color-text-muted);
            line-height: 1.6;
            font-size: 0.95rem;
        }

        /* ========================================
           TESTIMONIALS - Clean Minimal
        ======================================== */

        .testimonials {
            padding: var(--section-padding);
            background: var(--color-background);
            border-top: 1px solid var(--color-border);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .testimonial-card {
            background: var(--color-surface);
            padding: 1.5rem;
            border: 1px solid var(--color-border);
            border-radius: 8px;
            transition: box-shadow 0.2s ease;
        }

        .testimonial-card:hover {
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
        }

        .testimonial-stars {
            color: var(--color-secondary);
            font-size: 1rem;
            margin-bottom: 0.75rem;
            letter-spacing: 0.05em;
        }

        .testimonial-text {
            font-size: 0.95rem;
            line-height: 1.7;
            color: var(--color-text);
            margin-bottom: 1.25rem;
            font-family: var(--font-body);
            font-style: normal;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding-top: 1rem;
            border-top: 1px solid var(--color-border);
        }

        .author-avatar {
            width: 40px;
            height: 40px;
            background: var(--color-surface-alt);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 0.85rem;
            color: var(--color-text-muted);
        }

        .author-info h4 {
            font-size: 0.9rem;
            color: var(--color-text);
        }

        .author-info span {
            font-size: 0.8rem;
            color: var(--color-text-muted);
        }

        /* ========================================
           CTA SECTION - Clean Minimal
        ======================================== */

        .cta-section {
            padding: 4rem 2rem;
            background: var(--color-bg-sand);
            text-align: center;
            border-top: 1px solid var(--color-border);
        }

        .cta-badge {
            display: inline-block;
            background: rgba(201, 150, 60, 0.1);
            color: var(--color-secondary);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.03em;
            margin-bottom: 1.25rem;
        }

        .cta-section h2 {
            font-size: clamp(1.75rem, 4vw, 2.5rem);
            color: var(--color-text);
            margin-bottom: 0.75rem;
            font-weight: 500;
        }

        .cta-section > .container > p {
            font-size: 1rem;
            color: var(--color-text-muted);
            margin-bottom: 1.5rem;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .cta-note {
            margin-top: 1.25rem;
            font-size: 0.85rem;
            color: var(--color-text-muted);
            margin-bottom: 0 !important;
        }

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

        .btn-dark {
            background: var(--color-secondary);
            color: #1a1612;
        }

        .btn-dark .icon {
            fill: #1a1612;
        }

        .btn-dark:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(212, 168, 75, 0.3);
        }

        .cta-section .btn-outline {
            border-color: var(--color-border);
            color: var(--color-text);
        }

        .cta-section .btn-outline:hover {
            border-color: var(--color-text);
            background: var(--color-surface);
        }

        .cta-section .btn-outline .icon {
            fill: var(--color-text);
        }

        /* ========================================
           ABOUT PREVIEW - Clean Minimal
        ======================================== */

        .about-preview {
            padding: var(--section-padding);
            background: var(--color-bg-warm);
        }

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

        .about-image {
            position: relative;
        }

        .about-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 8px;
        }

        .about-content .section-label {
            text-align: left;
            justify-content: flex-start;
        }

        .about-content h2 {
            font-size: 2rem;
            margin-bottom: 1.25rem;
        }

        .about-content p {
            color: var(--color-text-muted);
            margin-bottom: 1rem;
            line-height: 1.7;
            font-size: 0.95rem;
        }

        .about-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--color-border);
        }

        .stat-item h3 {
            font-size: 2rem;
            color: var(--color-secondary);
            margin-bottom: 0.25rem;
            font-style: italic;
            font-weight: 500;
        }

        .stat-item p {
            font-size: 0.85rem;
            color: var(--color-text-muted);
            margin: 0;
        }

        /* ========================================
           FOOTER - Clean Minimal
        ======================================== */

        footer {
            background: var(--color-surface-alt);
            color: var(--color-text);
            padding: 3rem 2rem 2rem;
            border-top: 1px solid var(--color-border);
        }

        .footer-content {
            max-width: var(--container-max);
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid var(--color-border);
        }

        .footer-brand .logo-text {
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
            color: var(--color-text);
        }

        .footer-brand p {
            color: var(--color-text-muted);
            margin-bottom: 1rem;
            line-height: 1.6;
            font-size: 0.9rem;
        }

        .footer-contact-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
            color: var(--color-text-muted);
            font-size: 0.9rem;
        }

        .footer-contact-item a {
            color: var(--color-text-muted);
            transition: color 0.2s ease;
        }

        .footer-contact-item a:hover {
            color: var(--color-secondary);
        }

        .footer-contact-item .icon {
            fill: var(--color-secondary);
            width: 16px;
            height: 16px;
        }

        .footer-section h4 {
            font-size: 0.9rem;
            margin-bottom: 1rem;
            color: var(--color-text);
            font-weight: 600;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.5rem;
        }

        .footer-links a {
            color: var(--color-text-muted);
            font-size: 0.9rem;
            transition: color 0.2s ease;
        }

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

        .footer-bottom {
            max-width: var(--container-max);
            margin: 0 auto;
            padding-top: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.8rem;
            color: var(--color-text-muted);
        }

        /* ========================================
           MOBILE RESPONSIVE
        ======================================== */

        @media (max-width: 992px) {
            nav {
                padding: 1rem 1.5rem;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: #ffffff;
                flex-direction: column;
                padding: 1.5rem 2rem;
                gap: 1rem;
                border-top: 1px solid var(--color-border);
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links a {
                padding: 0.75rem 0;
                font-size: 1.1rem;
            }

            .menu-toggle {
                display: block;
                padding: 0.75rem;
                min-width: 44px;
                min-height: 44px;
            }

            .hero {
                min-height: auto;
                padding-top: 2rem;
                padding-bottom: 2rem;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero-phone {
                display: none;
            }

            .trust-items {
                grid-template-columns: repeat(2, 1fr);
            }

            .trust-item:nth-child(2) {
                border-right: none;
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }

            .service-card {
                padding: 2rem;
            }

            /* Third card spans full width on tablet for visual balance */
            .service-card:last-child:nth-child(odd) {
                grid-column: 1 / -1;
                max-width: 400px;
                margin: 0 auto;
            }

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

            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }

            /* Third testimonial spans full width */
            .testimonial-card:last-child:nth-child(odd) {
                grid-column: 1 / -1;
                max-width: 500px;
                margin: 0 auto;
            }

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

            .about-image img {
                height: 300px;
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }

            .section-header {
                margin-bottom: 2.5rem;
            }

            :root {
                --section-padding: 4rem 1.5rem;
            }
        }

        @media (max-width: 600px) {
            nav {
                padding: 0.875rem 1rem;
            }

            .logo-icon {
                width: 28px;
                height: 28px;
            }

            .hero {
                min-height: auto;
            }

            .hero-cta {
                flex-direction: column;
                align-items: flex-start;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .service-card:last-child:nth-child(odd) {
                max-width: none;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .testimonial-card:last-child:nth-child(odd) {
                max-width: none;
            }

            .trust-items {
                grid-template-columns: 1fr;
            }

            .trust-item {
                border-right: none;
                border-bottom: 1px solid var(--color-border);
                padding: 1.5rem 1rem;
            }

            .trust-item:last-child {
                border-bottom: none;
            }

            .about-stats {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .about-image img {
                height: 250px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-brand {
                text-align: center;
            }

            .footer-contact-item {
                justify-content: center;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }

            .cta-buttons {
                flex-direction: column;
                width: 100%;
            }

            .cta-buttons .btn {
                width: 100%;
                justify-content: center;
            }

            .how-it-works-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .step-item {
                padding: 1.5rem 1rem;
            }

            .section-title {
                font-size: 1.75rem;
            }

            .btn {
                padding: 0.875rem 1.5rem;
                font-size: 0.95rem;
            }

            :root {
                --section-padding: 3rem 1rem;
            }
        }

        /* ========================================
           SCROLL ANIMATIONS
        ======================================== */

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .fade-in-left {
            opacity: 0;
            transform: translateX(-30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .fade-in-right {
            opacity: 0;
            transform: translateX(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        /* ========================================
           HOW IT WORKS - Clean Minimal
        ======================================== */

        .how-it-works {
            padding: var(--section-padding);
            background: var(--color-bg-warm);
            border-top: 1px solid var(--color-border);
        }

        .how-it-works-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .step-item {
            text-align: center;
            position: relative;
            padding: 1.5rem;
        }

        .step-number {
            width: 48px;
            height: 48px;
            background: var(--color-secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.25rem;
            font-family: var(--font-display);
            font-size: 1.25rem;
            font-weight: 600;
            color: #ffffff;
        }

        .step-item h3 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            color: var(--color-text);
        }

        .step-item p {
            color: var(--color-text-muted);
            line-height: 1.6;
            font-size: 0.9rem;
        }

        /* ========================================
           SERVICE AREAS SECTION
        ======================================== */

        .service-areas {
            padding: 3rem 2rem;
            background: var(--color-bg-sand);
            border-top: 1px solid var(--color-border);
            border-bottom: 1px solid var(--color-border);
        }

        .areas-content {
            max-width: var(--container-max);
            margin: 0 auto;
            text-align: center;
        }

        .areas-content h3 {
            font-size: 1.25rem;
            margin-bottom: 1rem;
            color: var(--color-text);
        }

        .areas-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.5rem 1.5rem;
            color: var(--color-text-muted);
            font-size: 0.95rem;
        }

        .areas-list span {
            display: flex;
            align-items: center;
            gap: 0.35rem;
        }

        .areas-list span::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--color-secondary);
            border-radius: 50%;
        }

        /* ========================================
           STICKY MOBILE CTA
        ======================================== */

        .mobile-cta {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #1a1612;
            padding: 1rem;
            z-index: 999;
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
        }

        .mobile-cta a {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            background: var(--color-secondary);
            color: var(--color-primary);
            padding: 1rem;
            border-radius: 8px;
            font-family: var(--font-display);
            font-weight: 600;
            font-size: 1.1rem;
            width: 100%;
        }

        @media (max-width: 768px) {
            .mobile-cta {
                display: block;
            }

            footer {
                padding-bottom: 6rem;
            }
        }

        /* ========================================
           GOOGLE REVIEWS BADGE
        ======================================== */

        .google-reviews-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: var(--color-surface);
            border: 1px solid var(--color-border);
            border-radius: 8px;
            padding: 0.75rem 1.25rem;
            margin-top: 1.5rem;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .google-reviews-badge:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }

        .google-reviews-badge .stars {
            color: #fbbf24;
            font-size: 1.1rem;
            letter-spacing: 0.05em;
        }

        .google-reviews-badge span {
            font-size: 0.9rem;
            color: var(--color-text-muted);
        }

        .google-reviews-badge strong {
            color: var(--color-text);
        }

        /* ========================================
           SOCIAL PROOF BAR
        ======================================== */
        .social-proof-bar {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 3rem;
            flex-wrap: wrap;
            padding: 2rem;
            background: var(--color-bg-warm);
            border-top: 1px solid var(--color-border);
            border-bottom: 1px solid var(--color-border);
        }

        .social-proof-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.25rem;
            text-align: center;
        }

        .social-proof-number {
            font-family: var(--font-display);
            font-size: 2.5rem;
            font-weight: 600;
            color: var(--color-secondary);
            line-height: 1;
            font-style: italic;
        }

        .social-proof-label {
            font-size: 0.9rem;
            color: var(--color-text-muted);
            font-weight: 500;
        }

        /* ========================================
           URGENCY ELEMENTS
        ======================================== */
        .availability-indicator {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.625rem 1rem;
            background: #ecfdf5;
            border: 1px solid #a7f3d0;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 500;
            color: #047857;
        }

        .availability-dot {
            width: 8px;
            height: 8px;
            background: #10b981;
            border-radius: 50%;
            animation: availability-blink 1.5s ease-in-out infinite;
        }

        @keyframes availability-blink {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(0.9); }
        }

        .guarantee-badge-compact {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(201, 150, 60, 0.1);
            border: 1px solid rgba(201, 150, 60, 0.3);
            border-radius: 6px;
            padding: 0.5rem 1rem;
            font-size: 0.85rem;
            color: var(--color-text);
            font-weight: 500;
        }

        .guarantee-badge-compact svg {
            width: 18px;
            height: 18px;
            fill: var(--color-secondary);
        }

        /* ========================================
           FAQ SECTION
        ======================================== */
        .faq-section {
            padding: var(--section-padding);
            background: var(--color-bg-cool);
            border-top: 1px solid var(--color-border);
        }

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

        .faq-item {
            background: var(--color-surface);
            border: 1px solid var(--color-border);
            border-radius: 8px;
            margin-bottom: 1rem;
            overflow: hidden;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }

        .faq-item:hover {
            border-color: var(--color-secondary);
        }

        .faq-item[open] {
            border-color: var(--color-secondary);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.25rem 1.5rem;
            cursor: pointer;
            list-style: none;
            user-select: none;
            transition: background 0.2s ease;
        }

        .faq-question::-webkit-details-marker {
            display: none;
        }

        .faq-question:hover {
            background: var(--color-surface-alt);
        }

        .faq-question-text {
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 500;
            color: var(--color-text);
            line-height: 1.4;
            padding-right: 1rem;
        }

        .faq-icon {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(201, 150, 60, 0.1);
            border-radius: 50%;
            transition: transform 0.3s ease, background 0.2s ease;
        }

        .faq-icon .icon {
            width: 16px;
            height: 16px;
            fill: var(--color-secondary);
            transition: transform 0.3s ease;
        }

        .faq-item[open] .faq-icon {
            background: var(--color-secondary);
        }

        .faq-item[open] .faq-icon .icon {
            fill: #ffffff;
            transform: rotate(45deg);
        }

        .faq-answer {
            padding: 0 1.5rem 1.5rem 1.5rem;
            border-top: 1px solid var(--color-border);
            animation: faqFadeIn 0.3s ease;
        }

        @keyframes faqFadeIn {
            from { opacity: 0; transform: translateY(-8px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .faq-answer p {
            color: var(--color-text-muted);
            line-height: 1.7;
            margin-top: 1rem;
            font-size: 0.95rem;
        }

        .faq-answer p:first-child {
            margin-top: 1.25rem;
        }

        .faq-answer strong {
            color: var(--color-text);
            font-weight: 600;
        }

        .faq-answer a {
            color: var(--color-secondary);
            font-weight: 600;
            text-decoration: underline;
            text-decoration-color: rgba(201, 150, 60, 0.3);
            text-underline-offset: 2px;
        }

        .faq-answer a:hover {
            text-decoration-color: var(--color-secondary);
        }

        .faq-answer ul {
            margin: 1rem 0;
            padding-left: 1.25rem;
            color: var(--color-text-muted);
        }

        .faq-answer li {
            margin-bottom: 0.5rem;
            line-height: 1.6;
            font-size: 0.95rem;
        }

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

        .faq-cta-content {
            background: var(--color-surface);
            border: 1px solid var(--color-border);
            border-radius: 12px;
            padding: 2.5rem 2rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .faq-cta-content h3 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 500;
            color: var(--color-text);
            margin-bottom: 0.75rem;
        }

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

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

        @media (max-width: 768px) {
            .social-proof-bar {
                gap: 1.5rem;
                padding: 1.5rem 1rem;
            }
            .social-proof-number {
                font-size: 2rem;
            }
            .faq-question {
                padding: 1rem 1.25rem;
            }
            .faq-question-text {
                font-size: 1rem;
            }
            .faq-answer {
                padding: 0 1.25rem 1.25rem 1.25rem;
            }
            .faq-cta-content {
                padding: 2rem 1.5rem;
            }
            .faq-cta-buttons {
                flex-direction: column;
            }
            .faq-cta-buttons .btn {
                width: 100%;
                justify-content: center;
            }
        }
