/* --- MODERN RESET & TYPOGRAPHY (GEMINI THEME) --- */
        * { margin:0; padding:0; box-sizing:border-box; }
        body {
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            line-height: 1.6;
            color: #1e293b;
            background: #f8fafc;
            -webkit-font-smoothing: antialiased;
        }

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

        /* --- HEADER / HERO SECTION (GEMINI THEME) --- */
        .header {
            background: radial-gradient(circle at top right, #1e3a8a 0%, #0f172a 100%);
            color: white;
            padding: 40px 0 80px;
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .header::after {
            content: '';
            position: absolute;
            top: -100px; right: -100px;
            width: 600px; height: 600px;
            background: radial-gradient(circle, rgba(34,197,94,0.15) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        /* --- LOGO & NAV --- */
        .logo {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 60px;
            padding-top: 10px;
        }

        .logo-text {
            font-size: 28px;
            font-weight: 800;
            letter-spacing: -0.03em;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-icon {
            width: 42px; height: 42px;
            background: #22c55e;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 20px rgba(34,197,94,0.4);
        }

        .logo-icon svg { width: 24px; height: 24px; stroke: white; stroke-width: 2.5; fill: none; }

        .header-phone {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255,255,255,0.2);
            color: white;
            padding: 12px 24px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .header-phone:hover { background: white; color: #0f172a; }
        .header-phone svg { width: 18px; height: 18px; stroke: currentColor; fill: none; }

        /* --- HERO TYPOGRAPHY --- */
        h1 {
            font-size: 52px;
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 24px;
            letter-spacing: -0.02em;
            background: linear-gradient(to right, #ffffff, #cbd5e1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            text-align: center;
        }

        .subheadline {
            font-size: 22px;
            color: #cbd5e1;
            margin-bottom: 40px;
            font-weight: 400;
            text-align: center;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        /* --- TRUST BAR --- */
        .trust-bar {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .trust-item {
            background: rgba(255,255,255,0.05);
            padding: 10px 20px;
            border-radius: 50px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
            font-size: 15px;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .check { color: #4ade80; font-weight: bold; }

        /* --- CONVERSION FORM --- */
        .form-container {
            background: white;
            max-width: 800px;
            margin: -60px auto 60px;
            padding: 50px;
            border-radius: 24px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            position: relative;
            z-index: 10;
            border-top: 6px solid #22c55e;
        }

        .form-title {
            text-align: center;
            font-size: 32px;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 10px;
            letter-spacing: -0.02em;
        }

        .form-subtitle {
            text-align: center;
            color: #64748b;
            margin-bottom: 35px;
            font-size: 16px;
        }

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

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            font-size: 14px;
            color: #334155;
        }

        .form-group input, .form-group select {
            width: 100%;
            padding: 16px;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            font-size: 18px;
            color: #1e293b;
            transition: all 0.2s;
            background: #f8fafc;
        }

        .form-group input:focus {
            outline: none;
            border-color: #22c55e;
            background: white;
            box-shadow: 0 0 0 4px rgba(34,197,94,0.1);
        }

        /* Checkbox Box Styling */
        .consent-box {
            background: #f0fdf4;
            border: 1px solid #dcfce7;
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 25px;
            display: flex;
            gap: 12px;
        }

        input[type="checkbox"] {
            width: 20px; height: 20px;
            accent-color: #22c55e;
            margin-top: 3px;
        }

        .consent-text { font-size: 13px; color: #475569; line-height: 1.5; }
        .consent-text strong { color: #166534; display: block; font-size: 14px; margin-bottom: 2px; }

        /* --- CTA BUTTON --- */
        .cta-button {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
            color: white;
            font-size: 20px;
            font-weight: 700;
            padding: 20px;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            box-shadow: 0 10px 30px -10px rgba(34,197,94,0.6);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 20px 40px -10px rgba(34,197,94,0.7);
            background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
        }

        /* --- SOCIAL PROOF (Under Button) --- */
        .form-footer {
            margin-top: 20px;
            text-align: center;
            font-size: 14px;
            color: #64748b;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }

        .live-indicator {
            display: inline-block;
            width: 8px; height: 8px;
            background: #22c55e;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
            70% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
            100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
        }

        /* --- CONTENT SECTIONS --- */
        .content-section {
            padding: 80px 0;
        }

        .content-section.gray {
            background: white;
        }

        .section-title {
            text-align: center;
            font-size: 36px;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 50px;
        }

        /* Stats Grid */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
            margin: 80px 0;
        }

        .stat-card {
            background: white;
            padding: 30px;
            border-radius: 16px;
            text-align: center;
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
            border: 1px solid #f1f5f9;
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
        }

        .stat-number { font-size: 42px; font-weight: 800; color: #22c55e; display: block; margin-bottom: 5px; }
        .stat-label { font-size: 16px; color: #64748b; font-weight: 500; }

        /* Testimonials */
        .testimonial-card {
            background: white;
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
            border: 1px solid #f1f5f9;
        }

        .testimonial-rating {
            color: #f59e0b;
            font-size: 18px;
            margin-bottom: 10px;
        }

        .testimonial-quote {
            font-size: 16px;
            line-height: 1.6;
            color: #475569;
            margin-bottom: 15px;
            font-style: italic;
        }

        .testimonial-author {
            font-size: 14px;
            color: #64748b;
        }

        /* Steps/Process */
        .process-section { background: white; padding: 80px 0; }

        .process-box {
            background: white;
            border-radius: 24px;
            padding: 60px 40px;
            border: 3px solid #0f172a;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
        }

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

        .step-card { text-align: center; }
        .step-icon {
            width: 70px; height: 70px;
            background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            font-weight: 700;
            margin: 0 auto 20px;
            box-shadow: 0 4px 15px rgba(34,197,94,0.3);
        }

        .step-title { font-weight: 700; font-size: 20px; margin-bottom: 10px; color: #0f172a; }
        .step-desc { color: #64748b; line-height: 1.6; }

        /* Comparison Table */
        details { margin: 40px 0; }
        summary {
            font-size: 36px;
            margin-bottom: 40px;
            text-align: center;
            color: #0f172a;
            cursor: pointer;
            list-style: none;
            font-weight: 800;
            padding: 20px;
            background: #f8fafc;
            border-radius: 12px;
            transition: background 0.3s;
        }
        summary:hover { background: #e0f2fe; }
        summary::after { content: ' ▼'; font-size: 24px; }
        details[open] summary::after { content: ' ▲'; }

        .comparison-table {
            overflow-x: auto;
            border-radius: 12px;
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
        }

        .comparison-table table {
            width: 100%;
            border-collapse: collapse;
            background: white;
        }

        .comparison-table th {
            background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
            color: white;
            padding: 16px;
            text-align: left;
            font-weight: 600;
            font-size: 15px;
        }

        .comparison-table td {
            padding: 16px;
            border-bottom: 1px solid #e2e8f0;
            color: #475569;
        }

        .comparison-table tr:hover {
            background: #f8fafc;
        }

        /* Product Cards */
        .product-card {
            background: white;
            border-radius: 20px;
            padding: 35px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 50px rgba(0,0,0,0.12);
        }

        /* Trust Badges */
        .trust-badges-row {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
            margin-top: 30px;
            border-top: 1px solid #e2e8f0;
            padding-top: 30px;
        }

        .badge {
            font-size: 12px;
            font-weight: 600;
            color: #475569;
            background: #f1f5f9;
            padding: 6px 12px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        /* Warning Section */
        .warning-box {
            background: #fef2f2;
            border-left: 4px solid #ef4444;
            padding: 30px;
            border-radius: 12px;
            margin: 40px 0;
        }

        .warning-box h3 { color: #dc2626; font-size: 24px; margin-bottom: 20px; }
        .warning-box h4 { color: #dc2626; margin: 20px 0 15px; }
        .warning-box p, .warning-box li { color: #7f1d1d; line-height: 1.8; }

        /* Info Box */
        .info-box {
            background: #f0fdf4;
            border-left: 4px solid #22c55e;
            padding: 30px;
            border-radius: 12px;
            margin: 40px 0;
        }

        .info-box h3 { color: #166534; margin-bottom: 15px; }
        .info-box p { color: #166534; line-height: 1.8; }

        /* City Links */
        .city-link {
            background: white;
            padding: 12px 20px;
            border-radius: 25px;
            text-decoration: none;
            color: #0f172a;
            font-weight: 600;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            display: inline-block;
        }

        .city-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            background: #f0fdf4;
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
            color: white;
            padding: 60px 0 40px;
            margin-top: 80px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h4 {
            font-size: 18px;
            margin-bottom: 20px;
            color: #22c55e;
        }

        .footer-column ul {
            list-style: none;
            padding: 0;
        }

        .footer-column li {
            padding: 8px 0;
        }

        .footer-column a {
            color: white;
            text-decoration: none;
            opacity: 0.9;
            transition: opacity 0.3s;
        }

        .footer-column a:hover {
            opacity: 1;
            text-decoration: underline;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.2);
            padding-top: 30px;
            text-align: center;
            opacity: 0.9;
        }

        /* FAQ */
        .faq-item {
            background: white;
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 20px;
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
            border: 1px solid #f1f5f9;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
            transform: translateY(-2px);
        }

        .faq-question {
            font-size: 18px;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 15px;
        }

        .faq-answer {
            color: #475569;
            line-height: 1.8;
            font-size: 16px;
        }

        /* Confetti Animation */
        .confetti-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 9999;
            display: none;
        }

        .confetti-container.active {
            display: block;
        }

        .confetti {
            position: absolute;
            width: 10px;
            height: 10px;
            background: #f0f;
            animation: confetti-fall linear;
        }

        @keyframes confetti-fall {
            0% {
                transform: translateY(-100vh) rotate(0deg);
                opacity: 1;
            }
            100% {
                transform: translateY(100vh) rotate(720deg);
                opacity: 0;
            }
        }

        /* Success Overlay */
        .success-overlay {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            z-index: 10000;
            text-align: center;
            display: none;
        }

        .success-overlay.active {
            display: block;
            animation: successPop 0.5s ease;
        }

        @keyframes successPop {
            0% {
                transform: translate(-50%, -50%) scale(0.8);
                opacity: 0;
            }
            50% {
                transform: translate(-50%, -50%) scale(1.1);
            }
            100% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 1;
            }
        }

        /* Mobile Adjustments */
        @media (max-width: 768px) {
            .header { padding: 30px 0 60px; }
            h1 { font-size: 34px; }
            .subheadline { font-size: 18px; }
            .form-container { margin-top: -30px; padding: 30px 20px; border-radius: 20px; }
            .form-row-desktop { grid-template-columns: 1fr; gap: 15px; }
            .logo { flex-direction: column; gap: 20px; }
            .trust-bar { gap: 10px; font-size: 13px; }
            .trust-item { padding: 8px 15px; }
            .section-title { font-size: 28px; }
            .process-box { padding: 40px 20px; }
        }