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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        .header {
            background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 50%, #7c3aed 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .header::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 100" fill="rgba(255,255,255,0.1)"><polygon points="0,0 1000,100 1000,0"/></svg>');
            background-size: cover;
        }

        .header-content {
            position: relative;
            z-index: 2;
        }

        .logo {
            font-size: 2.5em;
            font-weight: bold;
            margin-bottom: 20px;
            letter-spacing: 2px;
        }

        .header h1 {
            font-size: 3.5em;
            margin-bottom: 25px;
            font-weight: 900;
            line-height: 1.2;
        }

        .header .subheadline {
            font-size: 1.5em;
            margin-bottom: 35px;
            opacity: 0.95;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .guarantee-badge {
            background: linear-gradient(45deg, #ef4444, #dc2626);
            color: white;
            padding: 18px 35px;
            border-radius: 50px;
            font-size: 1.2em;
            font-weight: bold;
            display: inline-block;
            margin: 25px 0;
            transform: rotate(-2deg);
            box-shadow: 0 15px 35px rgba(0,0,0,0.3);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: rotate(-2deg) scale(1); }
            50% { transform: rotate(-2deg) scale(1.05); }
        }

        /* Trust Indicators */
        .trust-bar {
            background: rgba(255,255,255,0.15);
            padding: 20px 0;
            margin-top: 40px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }

        .trust-items {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .trust-item {
            font-size: 0.95em;
            opacity: 0.9;
        }

        /* Hero Stats */
        .stats-section {
            background: #f8fafc;
            padding: 80px 0;
            position: relative;
        }

        .stats-section::before {
            content: '';
            position: absolute;
            top: -50px;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 50%, #7c3aed 100%);
            clip-path: polygon(0 50px, 100% 0, 100% 100px, 0 100%);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .stat-card {
            background: white;
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border-top: 4px solid #3730a3;
        }

        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0,0,0,0.15);
        }

        .stat-number {
            font-size: 3.5em;
            font-weight: 900;
            background: linear-gradient(135deg, #1e3a8a, #7c3aed);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 15px;
        }

        .stat-label {
            font-size: 1.2em;
            color: #64748b;
            font-weight: 600;
        }

        /* Case Study Section */
        .case-study {
            padding: 100px 0;
            background: white;
        }

        .case-study h2 {
            font-size: 3em;
            text-align: center;
            margin-bottom: 60px;
            color: #1e293b;
            font-weight: 800;
        }

        .case-study-intro {
            text-align: center;
            font-size: 1.3em;
            color: #64748b;
            margin-bottom: 60px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .before-after {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin: 60px 0;
        }

        .before, .after {
            padding: 40px;
            border-radius: 20px;
            position: relative;
        }

        .before {
            background: linear-gradient(135deg, #fef2f2, #fee2e2);
            border: 2px solid #fecaca;
            border-left: 6px solid #ef4444;
        }

        .after {
            background: linear-gradient(135deg, #f0fdf4, #dcfce7);
            border: 2px solid #bbf7d0;
            border-left: 6px solid #22c55e;
        }

        .before h3, .after h3 {
            margin-bottom: 25px;
            font-size: 1.8em;
            font-weight: 700;
        }

        .before h3 {
            color: #dc2626;
        }

        .after h3 {
            color: #16a34a;
        }

        .before-after ul {
            list-style: none;
            padding: 0;
        }

        .before-after li {
            padding: 8px 0;
            font-size: 1.1em;
            line-height: 1.6;
        }

        /* Client Testimonial */
        .testimonial {
            background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 50%, #7c3aed 100%);
            color: white;
            padding: 100px 0;
            text-align: center;
            position: relative;
        }

        .testimonial::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 15em;
            opacity: 0.1;
            font-family: serif;
        }

        .testimonial-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .quote {
            font-size: 1.8em;
            font-style: italic;
            margin-bottom: 40px;
            line-height: 1.6;
            font-weight: 300;
        }

        .client-info {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 30px;
            margin-top: 40px;
        }

        .client-photo {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: linear-gradient(135deg, #60a5fa, #3b82f6);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5em;
            font-weight: bold;
            border: 4px solid rgba(255,255,255,0.3);
        }

        .client-details {
            text-align: left;
        }

        .client-name {
            font-size: 1.4em;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .client-title {
            font-size: 1.1em;
            opacity: 0.9;
        }

        /* Services Section */
        .services {
            padding: 100px 0;
            background: #f8fafc;
        }

        .services h2 {
            text-align: center;
            font-size: 3em;
            margin-bottom: 30px;
            font-weight: 800;
            color: #1e293b;
        }

        .services-subtitle {
            text-align: center;
            font-size: 1.3em;
            color: #64748b;
            margin-bottom: 70px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }

        .service-item {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border-top: 4px solid #3730a3;
        }

        .service-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 30px 60px rgba(0,0,0,0.12);
        }

        .service-icon {
            font-size: 3em;
            margin-bottom: 20px;
        }

        .service-item h3 {
            color: #1e293b;
            font-size: 1.6em;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .service-item ul {
            list-style: none;
            padding: 0;
        }

        .service-item li {
            padding: 8px 0;
            font-size: 1.05em;
            color: #475569;
            line-height: 1.6;
        }

        .checkmark {
            color: #22c55e;
            font-weight: bold;
            margin-right: 12px;
            font-size: 1.1em;
        }

        /* Pricing Hint */
        .pricing-hint {
            background: linear-gradient(135deg, #fef3c7, #fde68a);
            border: 2px solid #f59e0b;
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            margin: 60px 0;
        }

        .pricing-hint h3 {
            color: #92400e;
            font-size: 1.5em;
            margin-bottom: 15px;
        }

        .pricing-hint p {
            color: #78350f;
            font-size: 1.1em;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #f97316 100%);
            color: white;
            padding: 100px 0;
            text-align: center;
            position: relative;
        }

        .cta-section h2 {
            font-size: 3.2em;
            margin-bottom: 30px;
            font-weight: 800;
        }

        .cta-subtitle {
            font-size: 1.4em;
            margin-bottom: 50px;
            opacity: 0.95;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Contact Form */
        .contact-form {
            background:rgba(255,255,255,0.15);
            max-width: 700px;
            margin: 60px auto 0;
            padding: 50px;
            border-radius: 25px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.15);
            position: relative;
        }

        .contact-form::before {
            content: '';
            position: absolute;
            top: -3px;
            left: -3px;
            right: -3px;
            bottom: -3px;
            background: linear-gradient(45deg, #3730a3, #7c3aed, #dc2626);
            border-radius: 25px;
            z-index: -1;
        }

        .form-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .form-header h3 {
            color: #1e293b;
            font-size: 2em;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .form-header p {
            color: white;
            font-size: 1.1em;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 25px;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: white;
            font-size: 1.05em;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 18px;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            font-size: 1.05em;
            transition: all 0.3s ease;
            background: #f9fafb;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: #3730a3;
            outline: none;
            background: white;
            box-shadow: 0 0 0 3px rgba(55, 48, 163, 0.1);
        }

        .form-group textarea {
            height: 120px;
            resize: vertical;
        }

        .submit-btn {
            background: linear-gradient(135deg, #1e3a8a, #3730a3);
            color: white;
            padding: 20px 40px;
            border: none;
            border-radius: 12px;
            font-size: 1.2em;
            font-weight: bold;
            cursor: pointer;
            width: 100%;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .submit-btn:hover {
            background: linear-gradient(135deg, #1e40af, #4338ca);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(30, 58, 138, 0.3);
        }

        .urgency {
            margin-top: 40px;
            padding: 25px;
            background: rgba(255,255,255,0.15);
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }

        .urgency-items {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .urgency-item {
            font-size: 1.1em;
            font-weight: 600;
        }

        /* Message Styles */
        .message {
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 30px;
            font-weight: 600;
            text-align: center;
        }

        .message.success {
            background: linear-gradient(135deg, #f0fdf4, #dcfce7);
            border: 2px solid #bbf7d0;
            color: #16a34a;
        }

        .message.error {
            background: linear-gradient(135deg, #fef2f2, #fee2e2);
            border: 2px solid #fecaca;
            color: #dc2626;
        }

        /* FAQ Section */
        .faq-section {
            padding: 100px 0;
            background: white;
        }

        .faq-section h2 {
            text-align: center;
            font-size: 3em;
            margin-bottom: 60px;
            color: #1e293b;
            font-weight: 800;
        }

        .faq-item {
            background: #f8fafc;
            margin-bottom: 20px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .faq-question {
            background: #e2e8f0;
            padding: 25px;
            cursor: pointer;
            font-weight: 700;
            font-size: 1.2em;
            color: #1e293b;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: #cbd5e1;
        }

        .faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-answer.active {
            padding: 25px;
            max-height: 500px;
        }

        .faq-answer p {
            color: #475569;
            line-height: 1.6;
            font-size: 1.05em;
        }

        /* Footer */
        .footer {
            background: #1e293b;
            color: white;
            padding: 60px 0;
            text-align: center;
        }

        .footer-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .footer h3 {
            font-size: 2em;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .footer-contact {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin: 30px 0;
            flex-wrap: wrap;
        }

        .footer-contact div {
            font-size: 1.1em;
        }

        .footer-legal {
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid #374151;
            font-size: 0.95em;
            opacity: 0.8;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .header h1 {
                font-size: 2.5em;
            }
            
            .before-after {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .client-info {
                flex-direction: column;
                gap: 20px;
            }
            
            .client-details {
                text-align: center;
            }

            .trust-items {
                gap: 20px;
            }

            .urgency-items {
                flex-direction: column;
                gap: 15px;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 0;
            }
        }
