        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-red: #b91c1c;
            --primary-gold: #fbbf24;
            --dark-red: #7f1d1d;
            --light-red: #dc2626;
            --dark-gold: #f59e0b;
            --text-dark: #1f2937;
            --text-gray: #6b7280;
            --bg-light: #f9fafb;
            --white: #ffffff;
            --shadow: 0 10px 40px rgba(0,0,0,0.1);
            --shadow-hover: 0 20px 60px rgba(0,0,0,0.15);
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background: var(--bg-light);
            overflow-x: hidden;
        }

        /* Navigation */
        .main-nav {
            background: rgba(127, 29, 29, 0.95);
            backdrop-filter: blur(20px);
            color: white;
            padding: 20px 0;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: all 0.3s ease;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
        }

        .main-nav.scrolled {
            background: rgba(127, 29, 29, 0.98);
            padding: 12px 0;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-img {
            height: 50px;
            transition: all 0.3s ease;
        }

        .main-nav.scrolled .logo-img {
            height: 40px;
        }

        .logo-text {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--primary-gold);
            text-decoration: none;
            letter-spacing: -0.02em;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 10px 18px;
            border-radius: 50px;
            transition: all 0.3s ease;
        }

        .nav-links a:hover {
            background: rgba(255,255,255,0.1);
            color: var(--primary-gold);
        }

        .cta-nav {
            background: var(--primary-gold);
            color: var(--dark-red) !important;
            font-weight: 700;
            padding: 12px 28px !important;
        }

        .cta-nav:hover {
            background: var(--dark-gold);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
        }

        .mobile-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 8px;
        }

        .mobile-toggle span {
            width: 25px;
            height: 3px;
            background: white;
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 50%, #1f2937 100%);
            color: white;
            padding: 160px 0 100px;
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a"><stop offset="0%" stop-color="rgba(251,191,36,0.3)"/><stop offset="100%" stop-color="transparent"/></radialGradient></defs><circle cx="200" cy="300" r="300" fill="url(%23a)"/><circle cx="800" cy="700" r="250" fill="url(%23a)"/></svg>');
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(1px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(2deg); }
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
            position: relative;
            z-index: 2;
        }

        .hero-content {
            max-width: 900px;
            animation: slideInUp 1s ease-out;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            background: rgba(251, 191, 36, 0.2);
            border: 2px solid var(--primary-gold);
            color: var(--primary-gold);
            padding: 10px 24px;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 700;
            margin-bottom: 30px;
            animation: slideInUp 1s ease-out 0.2s both;
        }

        .hero-title {
            font-size: 4.2rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 30px;
            letter-spacing: -0.03em;
            animation: slideInUp 1s ease-out 0.4s both;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            line-height: 1.6;
            margin-bottom: 40px;
            opacity: 0.95;
            font-weight: 400;
            animation: slideInUp 1s ease-out 0.6s both;
        }

        .hero-cta {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            animation: slideInUp 1s ease-out 0.8s both;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 20px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.15rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
        }

        .btn-primary {
            background: var(--primary-gold);
            color: var(--dark-red);
            box-shadow: 0 8px 30px rgba(251, 191, 36, 0.4);
        }

        .btn-primary:hover {
            background: var(--dark-gold);
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 15px 40px rgba(251, 191, 36, 0.5);
        }

        .btn-outline {
            background: transparent;
            color: white;
            border-color: rgba(255,255,255,0.3);
        }

        .btn-outline:hover {
            background: rgba(255,255,255,0.15);
            border-color: var(--primary-gold);
            color: var(--primary-gold);
            transform: translateY(-3px);
        }

        .trust-badge {
            display: flex;
            gap: 40px;
            margin-top: 50px;
            flex-wrap: wrap;
            animation: slideInUp 1s ease-out 1s both;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .trust-icon {
            font-size: 2rem;
        }

        .trust-text {
            font-size: 0.95rem;
            opacity: 0.9;
        }

        /* Container */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 80px;
        }

        .section-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-red), var(--light-red));
            color: white;
            padding: 10px 24px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 700;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .section-title {
            font-size: 3.8rem;
            font-weight: 900;
            color: var(--text-dark);
            margin-bottom: 25px;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }

        .section-subtitle {
            font-size: 1.3rem;
            color: var(--text-gray);
            font-weight: 400;
            line-height: 1.7;
        }

        /* Services Grid */
        .services-section {
            padding: 120px 0;
            background: var(--white);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 35px;
        }

        .service-card {
            background: var(--white);
            border-radius: 24px;
            padding: 45px 35px;
            box-shadow: var(--shadow);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            border: 2px solid rgba(0,0,0,0.05);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-red), var(--primary-gold));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-12px);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary-gold);
        }

        .service-icon {
            width: 85px;
            height: 85px;
            background: linear-gradient(135deg, var(--primary-red), var(--light-red));
            border-radius: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            margin-bottom: 30px;
            transition: all 0.4s ease;
        }

        .service-card:hover .service-icon {
            transform: scale(1.15) rotate(5deg);
            background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
        }

        .service-title {
            font-size: 1.7rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 18px;
            line-height: 1.3;
        }

        .service-description {
            color: var(--text-gray);
            line-height: 1.8;
            font-size: 1.05rem;
            margin-bottom: 25px;
        }

        .service-features {
            list-style: none;
            margin-bottom: 25px;
        }

        .service-features li {
            padding: 8px 0;
            padding-left: 30px;
            position: relative;
            color: var(--text-gray);
        }

        .service-features li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--primary-gold);
            font-weight: 700;
            font-size: 1.2rem;
        }

        .service-price {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--primary-red);
            margin-bottom: 20px;
        }

        .service-cta {
            display: inline-block;
            background: var(--primary-red);
            color: white;
            padding: 14px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
        }

        .service-cta:hover {
            background: var(--dark-red);
            transform: translateX(5px);
        }

        /* Benefits Section */
        .benefits-section {
            padding: 120px 0;
            background: var(--bg-light);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }

        .benefit-card {
            background: var(--white);
            border-radius: 24px;
            padding: 50px 40px;
            box-shadow: var(--shadow);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
        }

        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary-gold);
        }

        .benefit-icon {
            width: 85px;
            height: 85px;
            background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
            border-radius: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            margin-bottom: 30px;
            transition: all 0.4s ease;
        }

        .benefit-card:hover .benefit-icon {
            transform: scale(1.1) rotate(-5deg);
        }

        .benefit-title {
            font-size: 1.7rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .benefit-description {
            color: var(--text-gray);
            line-height: 1.8;
            font-size: 1.05rem;
        }

        /* Process Section */
        .process-section {
            padding: 120px 0;
            background: linear-gradient(135deg, var(--dark-red), var(--primary-red));
            color: white;
            position: relative;
            overflow: hidden;
        }

        .process-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="100" cy="100" r="200" fill="rgba(251,191,36,0.1)"/><circle cx="900" cy="900" r="200" fill="rgba(251,191,36,0.1)"/></svg>');
            opacity: 0.5;
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            position: relative;
            z-index: 2;
        }

        .process-step {
            text-align: center;
            padding: 45px 35px;
            background: rgba(255,255,255,0.12);
            border-radius: 24px;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255,255,255,0.15);
            transition: all 0.3s ease;
        }

        .process-step:hover {
            background: rgba(255,255,255,0.18);
            transform: translateY(-8px);
            border-color: var(--primary-gold);
        }

        .step-number {
            width: 70px;
            height: 70px;
            background: var(--primary-gold);
            color: var(--dark-red);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 900;
            margin: 0 auto 25px;
        }

        .step-title {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 18px;
            color: var(--primary-gold);
        }

        .step-description {
            line-height: 1.7;
            opacity: 0.95;
            font-size: 1.05rem;
        }

        /* Testimonials */
        .testimonials-section {
            padding: 120px 0;
            background: var(--white);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 35px;
        }

        .testimonial-card {
            background: var(--bg-light);
            padding: 40px 35px;
            border-radius: 24px;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            border-left: 5px solid var(--primary-gold);
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .testimonial-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-dark);
            margin-bottom: 25px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-red), var(--primary-gold));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            font-weight: 700;
        }

        .author-info h4 {
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 3px;
        }

        .author-info p {
            color: var(--text-gray);
            font-size: 0.9rem;
        }

        .stars {
            color: var(--primary-gold);
            font-size: 1.2rem;
            margin-bottom: 15px;
        }

        /* CTA Section */
        .cta-section {
            padding: 120px 0;
            background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
            color: white;
            text-align: center;
        }

        .cta-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .cta-title {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 25px;
            line-height: 1.2;
        }

        .cta-subtitle {
            font-size: 1.4rem;
            margin-bottom: 45px;
            opacity: 0.95;
            line-height: 1.6;
        }

        .contact-info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .contact-info-card {
            background: rgba(255,255,255,0.12);
            padding: 35px 25px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255,255,255,0.15);
        }

        .contact-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .contact-label {
            font-size: 0.9rem;
            opacity: 0.8;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .contact-value {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-gold);
        }

        /* Footer */
        .footer {
            background: #0f172a;
            color: white;
            padding: 80px 0 40px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 60px;
            margin-bottom: 50px;
        }

        .footer-logo {
            height: 60px;
            margin-bottom: 20px;
        }

        .footer-section h4 {
            color: var(--primary-gold);
            font-size: 1.3rem;
            font-weight: 800;
            margin-bottom: 25px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 12px;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .footer-section ul li:hover {
            opacity: 1;
        }

        .footer-section ul li a {
            color: white;
            text-decoration: none;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 40px;
            text-align: center;
            opacity: 0.7;
            font-size: 0.95rem;
        }

        /* Animations */
        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-title {
                font-size: 3.2rem;
            }
            
            .section-title {
                font-size: 2.8rem;
            }

            .cta-title {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100vh;
                background: rgba(127, 29, 29, 0.98);
                flex-direction: column;
                justify-content: center;
                gap: 30px;
                transition: left 0.3s ease;
                backdrop-filter: blur(20px);
            }

            .nav-links.active {
                left: 0;
            }

            .mobile-toggle {
                display: flex;
            }

            .mobile-toggle.active span:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }

            .mobile-toggle.active span:nth-child(2) {
                opacity: 0;
            }

            .mobile-toggle.active span:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }

            .hero {
                padding: 140px 0 80px;
                text-align: center;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-cta {
                justify-content: center;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .cta-title {
                font-size: 2.2rem;
            }

            .container {
                padding: 0 20px;
            }

            .services-grid,
            .benefits-grid,
            .process-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .trust-badge {
                justify-content: center;
            }
        }