/* Urgency Banner */
        .urgency-banner {
            background: var(--black);
            color: var(--white);
            text-align: center;
            padding: 12px 20px;
            font-size: 14px;
            font-weight: 600;
        }

        .urgency-banner .highlight { color: var(--gold-500); }
        .urgency-banner.hidden { display: none; }

        /* Navigation */
        

        

        

        

        

        

        /* Hero Section */
        

        

        

        .badge.seasonal {
            background: var(--black);
            border-color: var(--black);
            color: var(--white);
        }

        .badge.seasonal .highlight { color: var(--gold-500); }
        .badge 

        

        .hero h1 .accent { color: var(--red-600); }

        .hero-subhead {
            font-size: 20px;
            color: var(--gray-600);
            margin-bottom: 40px;
            line-height: 1.6;
            max-width: 520px;
        }

        

        .proof-item { display: flex; flex-direction: column; }

        .proof-number {
            font-size: 32px;
            font-weight: 800;
            color: var(--black);
            letter-spacing: -1px;
        }

        .proof-label {
            font-size: 14px;
            color: var(--gray-500);
        }

        /* Form Card */
        

        

        .form-subtitle {
            text-align: center;
            color: var(--gray-500);
            font-size: 15px;
            margin-bottom: 28px;
        }

        

        

        

        

        

        

        

        .submit-btn 

        .form-trust {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 20px;
            font-size: 13px;
            color: var(--gray-500);
        }

        .form-trust 

        /* Section Styles */
        .section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 40px;
        }

        

        

        .section-subtitle {
            font-size: 18px;
            color: var(--gray-600);
            max-width: 600px;
            margin-bottom: 48px;
        }

        /* Leak Visualization */
        .leak-visual {
            background: var(--gray-100);
            border-radius: 20px;
            padding: 48px;
            margin-bottom: 48px;
        }

        .revenue-bar-container {
            margin-bottom: 32px;
        }

        .revenue-bar-label {
            display: flex;
            justify-content: space-between;
            margin-bottom: 12px;
            font-size: 14px;
            font-weight: 600;
        }

        .revenue-bar {
            height: 48px;
            background: var(--gray-200);
            border-radius: 8px;
            overflow: hidden;
            display: flex;
        }

        .revenue-kept {
            background: var(--green-500);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 700;
            font-size: 15px;
        }

        .revenue-lost {
            background: var(--red-500);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 700;
            font-size: 15px;
        }

        .leak-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .leak-stat {
            text-align: center;
            padding: 24px;
            background: var(--white);
            border-radius: 12px;
        }

        .leak-stat .number {
            font-size: 36px;
            font-weight: 800;
            color: var(--red-600);
            letter-spacing: -1px;
        }

        .leak-stat .label {
            font-size: 14px;
            color: var(--gray-600);
            margin-top: 4px;
        }

        /* Recovery Comparison */
        .recovery-grid {
            display: grid;
            grid-template-columns: 1fr 80px 1fr;
            gap: 24px;
            align-items: center;
            margin-top: 48px;
        }

        .recovery-box {
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 16px;
            padding: 32px;
            text-align: center;
        }

        .recovery-box.before {
            border-color: var(--red-500);
            border-width: 2px;
        }

        .recovery-box.after {
            border-color: var(--green-500);
            border-width: 2px;
            background: linear-gradient(180deg, hsl(142, 71%, 45%, 0.05) 0%, var(--white) 100%);
        }

        .recovery-box .label {
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

        .recovery-box.before .label { color: var(--red-600); }
        .recovery-box.after .label { color: var(--green-600); }

        .recovery-box .rate {
            font-size: 56px;
            font-weight: 800;
            letter-spacing: -2px;
        }

        .recovery-box.before .rate { color: var(--red-600); }
        .recovery-box.after .rate { color: var(--green-600); }

        .recovery-box .desc {
            font-size: 15px;
            color: var(--gray-600);
            margin-top: 8px;
        }

        .recovery-arrow {
            display: flex;
            justify-content: center;
        }

        .recovery-arrow 

        /* Process Grid */
        

        .process-step {
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 16px;
            padding: 28px;
            text-align: center;
        }

        .step-number {
            width: 40px;
            height: 40px;
            background: var(--black);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 700;
            margin: 0 auto 16px;
        }

        .process-step h3 {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .process-step p {
            font-size: 14px;
            color: var(--gray-600);
            line-height: 1.5;
        }

        /* Testimonial */
        .testimonial-section {
            background: var(--gray-100);
            border-radius: 24px;
            padding: 60px;
            margin: 80px auto;
            max-width: 900px;
            text-align: center;
        }

        .testimonial-quote {
            font-size: 24px;
            font-weight: 500;
            line-height: 1.5;
            margin-bottom: 32px;
            color: var(--gray-800);
        }

        .testimonial-result {
            display: inline-block;
            background: var(--green-500);
            color: var(--white);
            padding: 8px 20px;
            border-radius: 100px;
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 24px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
        }

        .testimonial-avatar {
            width: 56px;
            height: 56px;
            background: var(--gray-300);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .testimonial-avatar 

        .testimonial-info { text-align: left; }
        .testimonial-name { font-size: 16px; font-weight: 700; }
        .testimonial-role { font-size: 14px; color: var(--gray-500); }

        /* Final CTA */
        

        

        .final-cta p {
            font-size: 18px;
            color: var(--gray-400);
            margin-bottom: 32px;
        }

        .final-cta .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--white);
            color: var(--black);
            padding: 18px 36px;
            border-radius: 980px;
            font-size: 17px;
            font-weight: 600;
            text-decoration: none;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .final-cta .cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px hsl(0, 0%, 100%, 0.15);
        }

        /* Footer */
        

        

        /* Responsive */
        @media (max-width: 900px) {
            

            
            
            .leak-stats { grid-template-columns: 1fr; }
            .recovery-grid { grid-template-columns: 1fr; }
            .recovery-arrow { transform: rotate(90deg); padding: 16px 0; }
            
        }

        @media (max-width: 600px) {
            
            
            
            
            .leak-visual { padding: 32px 24px; }
        }