     :root {
            --primary-dark: #1a1f2e;
            --primary-orange: #ff6b35;
            --orange-bright: #ff8c42;
            --gray-dark: #2d3748;
            --gray-medium: #4a5568;
            --gray-light: #cbd5e0;
            --gray-lighter: #f7fafc;
            --white: #ffffff;
            --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.1);
            --shadow-strong: 0 10px 40px rgba(0, 0, 0, 0.15);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Archivo', sans-serif;
            background: var(--white);
            color: var(--gray-dark);
            overflow-x: hidden;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: var(--white);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 3px solid var(--primary-orange);
            box-shadow: var(--shadow-medium);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1.2rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }

        .nav-email {
            color: var(--gray-medium);
            font-size: 0.9rem;
            font-weight: 500;
        }

        .logo {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            letter-spacing: 3px;
            color: var(--primary-orange);
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--gray-dark);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-orange);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--primary-orange);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            margin-top: 80px;
            min-height: 85vh;
            background: linear-gradient(135deg, var(--gray-lighter) 0%, var(--white) 100%);
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                repeating-linear-gradient(
                    90deg,
                    transparent,
                    transparent 50px,
                    rgba(255, 107, 53, 0.02) 50px,
                    rgba(255, 107, 53, 0.02) 51px
                );
            opacity: 0.5;
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            z-index: 10;
            animation: fadeInUp 1s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h1 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 5.5rem;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            background: linear-gradient(135deg, var(--gray-dark) 0%, var(--primary-orange) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero .subtitle {
            font-size: 1.5rem;
            font-weight: 400;
            margin-bottom: 2rem;
            color: var(--gray-medium);
            max-width: 700px;
            line-height: 1.6;
        }

        .hero .coverage {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 2.5rem;
            color: var(--primary-orange);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .cta-button {
            display: inline-block;
            padding: 1.2rem 3rem;
            background: var(--primary-orange);
            color: var(--white);
            text-decoration: none;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-strong);
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
        }

        .cta-button:hover {
            background: var(--orange-bright);
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
        }

        .cta-button:hover::before {
            left: 100%;
        }

        /* Products Section */
        .products {
            padding: 8rem 2rem;
            background: var(--white);
        }

        .section-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 4rem;
            text-align: center;
            margin-bottom: 1rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gray-dark);
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: var(--gray-medium);
            margin-bottom: 5rem;
            font-weight: 400;
        }

        .product-categories {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 4rem;
        }

        .category-card {
            background: var(--white);
            border: 2px solid var(--gray-light);
            padding: 0;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-medium);
        }

        .category-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--primary-orange);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .category-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary-orange);
            box-shadow: var(--shadow-strong);
        }

        .category-card:hover::before {
            transform: scaleX(1);
        }

        .category-header {
            padding: 2.5rem;
            background: var(--gray-lighter);
        }

        .category-icon {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            color: var(--primary-orange);
        }

        .category-card h3 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2rem;
            margin-bottom: 1rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gray-dark);
        }

        .category-products {
            padding: 2rem 2.5rem 2.5rem;
        }

        .product-item {
            margin-bottom: 2.5rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid var(--gray-light);
        }

        .product-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .product-image-placeholder {
            width: 100%;
            height: 200px;
            background: var(--gray-lighter);
            border: 2px dashed var(--gray-light);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            color: var(--gray-medium);
            font-size: 0.9rem;
            text-align: center;
            padding: 1rem;
            transition: all 0.3s ease;
        }

        .product-image-placeholder:hover {
            border-color: var(--primary-orange);
            background: #fff5f2;
        }

        .product-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            margin-bottom: 1rem;
            border: 2px solid var(--gray-light);
            transition: all 0.3s ease;
        }

        .product-image:hover {
            border-color: var(--primary-orange);
            transform: scale(1.02);
            box-shadow: var(--shadow-medium);
        }

        .product-item h4 {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--gray-dark);
            margin-bottom: 0.5rem;
        }

        /* Brands Section */
        .brands {
            padding: 8rem 2rem;
            background: var(--white);
        }

        .brands-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 3rem;
        }

        .brand-card {
            background: var(--white);
            border: 2px solid var(--gray-light);
            padding: 3rem 2rem;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: var(--shadow-medium);
            position: relative;
            overflow: hidden;
        }

        .brand-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--primary-orange);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .brand-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary-orange);
            box-shadow: var(--shadow-strong);
        }

        .brand-card:hover::before {
            transform: scaleX(1);
        }

        .brand-logo-placeholder {
            width: 100%;
            height: 120px;
            background: var(--gray-lighter);
            border: 2px solid var(--gray-light);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2rem;
            letter-spacing: 3px;
            color: var(--gray-medium);
            transition: all 0.3s ease;
        }

        .brand-card:hover .brand-logo-placeholder {
            border-color: var(--primary-orange);
            background: #fff5f2;
            color: var(--primary-orange);
        }

        .brand-logo {
            width: 100%;
            height: 120px;
            object-fit: contain;
            margin-bottom: 1.5rem;
            padding: 1rem;
            background: var(--gray-lighter);
            border: 2px solid var(--gray-light);
            transition: all 0.3s ease;
        }

        .brand-card:hover .brand-logo {
            border-color: var(--primary-orange);
            background: #fff5f2;
            transform: scale(1.05);
        }

        .brand-card h3 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.8rem;
            margin-bottom: 1rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gray-dark);
        }

        .brand-card p {
            color: var(--gray-medium);
            font-size: 1rem;
            line-height: 1.7;
        }

        /* Features Section */
        .features {
            padding: 8rem 2rem;
            background: var(--gray-lighter);
        }

        .features-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
        }

        .feature-item {
            text-align: center;
            padding: 2.5rem;
            background: var(--white);
            border: 2px solid var(--gray-light);
            transition: all 0.3s ease;
            box-shadow: var(--shadow-medium);
        }

        .feature-item:hover {
            transform: scale(1.05);
            border-color: var(--primary-orange);
            box-shadow: var(--shadow-strong);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, var(--primary-orange), var(--orange-bright));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
        }

        .feature-item h3 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--gray-dark);
        }

        .feature-item p {
            color: var(--gray-medium);
            font-weight: 400;
            line-height: 1.6;
        }

        /* Contact Section */
        .contact {
            padding: 8rem 2rem;
            background: var(--white);
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .contact-info h3 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2rem;
            margin-bottom: 1rem;
            letter-spacing: 2px;
            color: var(--primary-orange);
            text-transform: uppercase;
        }

        .contact-info p {
            color: var(--gray-medium);
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 0.8rem;
        }

        .contact-info strong {
            color: var(--gray-dark);
        }

        .map-placeholder {
            background: var(--gray-lighter);
            height: 400px;
            border: 2px solid var(--gray-light);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .map-placeholder::before {
            content: '📍';
            font-size: 5rem;
            opacity: 0.3;
        }

        /* Footer */
        footer {
            background: var(--gray-dark);
            border-top: 3px solid var(--primary-orange);
            padding: 3rem 2rem;
            text-align: center;
        }

        footer p {
            color: var(--gray-light);
            font-weight: 400;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero h1 {
                font-size: 3rem;
            }

            .hero .subtitle {
                font-size: 1.2rem;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .contact-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .product-categories {
                grid-template-columns: 1fr;
            }
        }

        /* Scroll Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }