@import url('https://fonts.googleapis.com/css2?family=Homemade+Apple&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            max-width: 100%;
        }

        /* Prevent horizontal scrolling on all devices */
        html {
            font-size: 14px; /* Reduced from default 16px to scale down all rem-based elements */
            scroll-behavior: smooth;
        }
        
        html, body {
            margin: 0 !important;
            padding: 0 !important;
            height: 100%;
            box-sizing: border-box;
            max-width: 100vw;
            min-height: 100vh;
            overflow-x: hidden;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        /* Ensure all containers respect viewport width */
        * {
            max-width: 100%;
        }

        /* Ensure all sections have proper padding */
        section {
            padding-left: max(1rem, env(safe-area-inset-left));
            padding-right: max(1rem, env(safe-area-inset-right));
            position: relative;
            z-index: auto !important;
        }

        /* Global scaling - reduce all major section spacing by 25% */
        .process, .benefits, .deletions, .faq, .cta, .social-proof, .credit-advisor {
            padding-top: calc(4rem * 0.75) !important;
            padding-bottom: calc(4rem * 0.75) !important;
        }

        .hero {
            padding-top: calc(2rem * 0.75) !important;
            padding-bottom: calc(2rem * 0.75) !important;
        }

        .section-header {
            margin-bottom: calc(3rem * 0.75) !important;
        }

        .process-steps, .benefits-grid, .deletions-grid, .hero-features {
            margin-top: calc(3rem * 0.75) !important;
        }

        .cta-container, .hero-content .tagline {
            margin-top: calc(2rem * 0.75) !important;
            margin-bottom: calc(2rem * 0.75) !important;
        }

        /* Desktop/Mobile visibility classes */
        .desktop-only {
            display: block;
        }

        .mobile-only {
            display: none;
        }

        /* Prevent text overflow */
        p, h1, h2, h3, h4, h5, h6, span, div {
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        /* Hide reCAPTCHA badge since disclosure is in footer */
        .grecaptcha-badge {
            display: none !important;
        }

        /* Title enlarge animation */
        @keyframes titleEnlarge {
            0% {
                transform: scale(0.8);
                opacity: 0;
            }
            50% {
                transform: scale(1.05);
                opacity: 0.8;
            }
            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        /* Style reCAPTCHA disclosure in footer */
        .recaptcha-disclosure {
            color: #bfbfbf;
            margin-top: 1rem;
            text-align: center;
            font-size: 0.75rem;
            line-height: 1.4;
        }

        .recaptcha-disclosure a {
            color: #4A90E2;
            text-decoration: underline;
        }

        .recaptcha-disclosure a:hover {
            color: #1976d2;
            text-decoration: underline;
        }

        body {
            padding-top: 68px; /* Compensate for fixed header */
            min-height: 100vh;
            width: 100vw;
            overflow-x: hidden;
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 0.75rem 1rem;
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            z-index: 1000;
        }

        .logo {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            font-size: 1.2rem;
            font-weight: bold;
            justify-self: start;
        }

        .logo-main {
            display: flex;
            align-items: center;
        }

        .powered-by-header {
            font-size: 0.7rem;
            color: #666;
            font-weight: normal;
            margin-top: 2px;
        }

        .powered-by-header a {
            color: #4A90E2;
            text-decoration: none;
            font-weight: 600;
        }

        .powered-by-header a:hover {
            color: #357ABD;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: #f0f0f0;
            border-radius: 50%;
            margin-right: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .header-right {
            position: relative;
            display: flex;
            align-items: center;
            gap: 1rem;
            justify-self: end;
        }

        /* Nav menu: full width, auto height, X always above, starts immediately below header */
        .nav {
            position: fixed;
            top: 80px; /* Pushed down to clear header completely */
            left: 0;
            right: 0;
            width: 100vw;
            background: #fff;
            padding: 1rem 0;
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            gap: 0;
            z-index: 999;
            box-shadow: none;
            border: none;
            height: auto;
            min-height: 0;
            max-height: none;
            opacity: 0;
            transform: translateY(-10px);
            transition: opacity 0.3s ease, transform 0.3s ease;
            display: none;
        }
        
        body.nav-open .nav {
            display: flex;
            opacity: 1;
            transform: translateY(0);
        }

        .nav.closing {
            opacity: 0 !important;
            transform: translateY(-10px) !important;
        }

        /* Floating Dispute Button */
        .floating-dispute-btn {
            position: fixed;
            top: 50%;
            right: 0;
            transform: translateY(-50%);
            background: #333;
            color: white;
            padding: 1rem 0.5rem;
            border-radius: 8px 0 0 8px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            z-index: 15001;
            box-shadow: -2px 0 8px rgba(0, 0, 0, 0.15);
            display: flex;
            flex-direction: column;
            align-items: center;
            writing-mode: vertical-rl;
            text-orientation: mixed;
            opacity: 0;
            transform: translateY(-50%) translateX(100%);
            transition: all 0.3s ease;
            pointer-events: none;
            text-decoration: none;
            min-height: 80px;
            justify-content: center;
        }

        .floating-dispute-btn.show {
            opacity: 1;
            transform: translateY(-50%) translateX(0);
            pointer-events: auto;
        }

        .floating-dispute-btn:hover {
            background: #555;
            transform: translateY(-50%) translateX(-5px);
            box-shadow: -4px 0 12px rgba(0, 0, 0, 0.2);
        }

        .floating-dispute-btn svg {
            width: 16px;
            height: 16px;
        }

        .menu-toggle {
            z-index: 2000 !important;
        }

        .nav a {
            color: #222;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 500;
            padding: 0.75rem 2rem;
            margin: 0;
            text-align: left;
            transition: color 0.2s;
            line-height: 1.4;
            display: block;
            width: 100%;
            box-sizing: border-box;
        }
        .nav a:hover, .nav a.active {
            color: #1976d2;
        }

        .nav-powered {
            margin-top: auto;
            padding: 2.5rem 0 2.5rem 2.5rem;
            color: #888;
            font-size: 1rem;
            text-align: left;
        }

        .nav-powered a {
            color: #1976d2;
            font-size: 1rem;
            font-weight: 400;
            text-decoration: none;
        }

        /* Remove any overlay */
        .nav-overlay { display: none !important; }

        /* Menu Toggle Button */
        .menu-toggle {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 20px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            margin-left: 1.5rem;
            z-index: 1002;
            position: relative;
        }

        /* Home Button (replaces hamburger menu on agency pages) */
        .home-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 30px;
            height: 30px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            margin-left: 1.5rem;
            z-index: 1002;
            position: relative;
            text-decoration: none;
            color: #666;
            transition: all 0.3s ease;
        }

        .home-btn:hover {
            color: #1976d2;
            transform: translateY(-1px);
        }

        .home-btn svg {
            transition: all 0.3s ease;
        }

        .menu-toggle .bar {
            width: 100%;
            height: 2px;
            background-color: #666;
            transition: all 0.3s ease;
        }

        /* Hamburger Animation */
        .menu-toggle.open .bar:nth-child(1) {
            transform: translateY(9px) rotate(45deg);
        }

        .menu-toggle.open .bar:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.open .bar:nth-child(3) {
            transform: translateY(-9px) rotate(-45deg);
        }


        /* Ensure other sections don't overlap */
        section {
            position: relative;
            z-index: auto !important;
        }

        /* Remove desktop-specific styles */
        @media (min-width: 1024px) {
            .header-right {
                display: flex;
                align-items: center;
                gap: 1.5rem;
            }
            
            /* Keep nav as slide-in menu - full width */
            .nav {
                position: fixed;
            }
        }

        /* Mobile navigation styles */
        @media (max-width: 768px) {
            .header {
                padding: 0.75rem 1rem;
                grid-template-columns: 1fr auto;
                gap: 1rem;
            }
            
            .header-right {
                display: flex;
                align-items: center;
                gap: 0.75rem;
                justify-self: end;
            }
            
            .menu-toggle {
                order: 2;
                margin-left: 0;
            }
            
            .dispute-btn {
                font-size: 0.85rem;
                padding: 0.5rem 0.75rem;
                order: 1;
            }
            
            .floating-dispute-btn {
                bottom: 15px;
                right: 15px;
                padding: 0.6rem 1rem;
                font-size: 0.85rem;
            }
        }

        .dispute-btn {
            background: #333;
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: background 0.3s;
        }

        .dispute-btn:hover {
            background: #555;
        }

        /* Modern Hero Section */
        .hero {
            background: linear-gradient(135deg, #e8f4ff 0%, #d1e9ff 100%);
            padding: 0;
            position: relative;
            overflow: hidden;
            min-height: 85vh;
            padding-top: 120px; /* Increased padding to push title down from navbar */
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            max-width: 1400px;
            margin: 0 auto;
            gap: 2rem;
            padding: 2rem;
            align-items: center;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            padding-top: 2rem;
        }

        .hero h1 {
            font-size: 5rem;
            font-weight: 900;
            color: #1a1a1a;
            line-height: 0.9;
            margin: 0;
            margin-top: 2rem; /* Add top margin to push title down from navbar */
            letter-spacing: -0.02em;
            white-space: nowrap;
            word-break: keep-all;
            overflow-wrap: normal;
            animation: titleEnlarge 1.2s ease-out;
            transform-origin: center;
        }

        .hero h1 br {
            display: block;
            content: "";
            margin-top: 0.2em;
        }

        .price-container {
            display: flex;
            align-items: baseline;
            gap: 1rem;
            margin-top: 3rem;
        }

        .price {
            font-size: 4rem;
            font-weight: 700;
            color: #1976d2;
            line-height: 1;
        }

        .price-detail {
            color: #666;
            font-size: 1.25rem;
        }

        .tagline {
            font-size: 1.25rem;
            color: #555;
            line-height: 1.6;
            margin: 2rem 0;
            max-width: 90%;
        }

        .hero-features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin: 2.5rem 0;
        }

        .feature {
            display: flex;
            align-items: center;
            gap: 1rem;
            font-size: 1.1rem;
            color: #333;
            font-weight: 500;
        }

        .feature-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            background: rgba(25, 118, 210, 0.08);
            border-radius: 50%;
        }

        .cta-container {
            margin: 3rem 0 0;
        }

        .cta-button {
            display: inline-block;
            background: #1976d2;
            color: white;
            padding: 1.25rem 2.5rem;
            border-radius: 12px;
            font-size: 1.2rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 20px 40px rgba(25, 118, 210, 0.15);
        }

        .cta-button::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
            transform: rotate(45deg);
            transition: all 0.3s ease;
        }

        .cta-button:hover::after {
            animation: shine 1.5s ease;
        }

        .cta-note {
            margin-top: 1rem;
            color: #666;
            font-size: 1rem;
        }

        /* Hero Visual Section */
        .hero-visual {
            position: relative;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .visual-container {
            position: relative;
            width: 100%;
            max-width: 500px;
            aspect-ratio: 4/3;
        }

        .letter-preview {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80%;
            height: 85%;
            background: white;
            border-radius: 12px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.08);
            padding: 2rem;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .letter-header {
            padding-bottom: 1.5rem;
            border-bottom: 1px solid #eee;
            position: relative;
        }

        .agency-name {
            display: inline-block;
            transition: opacity 0.5s ease;
            font-weight: 500;
            color: #1976d2;
            font-size: 0.85rem;
        }

        .letter-content {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }

        .typing-text, .typing-line {
            position: relative;
            color: #333;
            font-family: 'Courier New', monospace;
            font-size: 0.85rem;
            opacity: 0;
            animation: fadeIn 0.5s forwards;
            line-height: 1.4;
            max-width: 75%;  /* Ensure text doesn't extend too far right */
        }

        .typing-line {
            position: relative;
            padding-left: 2rem;
        }

        .typing-line:first-child {
            color: #1976d2;
            font-weight: 500;
        }

        .typing-text {
            animation-delay: 0.5s;
        }

        .typing-line:nth-child(1) {
            animation-delay: 1s;
        }

        .typing-line:nth-child(2) {
            animation-delay: 1.5s;
        }

        .typing-line:nth-child(3) {
            animation-delay: 2s;
        }

        .typing-line:nth-child(4) {
            animation-delay: 2.5s;
        }

        .typing-line:nth-child(5) {
            animation-delay: 3s;
        }

        /* Adjust the typing animation to restart for new agencies */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(3px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .certified-stamp {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: #1976d2;
            color: white;
            padding: 0.4rem 0.8rem;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 1px;
            transform: rotate(8deg);
            z-index: 2;
        }

        .certified-badge {
            background: #1976d2;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 1px;
        }

        .success-indicators {
            position: absolute;
            bottom: -2rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 2.5rem;
            background: white;
            padding: 1rem 2rem;
            border-radius: 100px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }

        .indicator {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            color: #666;
        }

        .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #1976d2;
            flex-shrink: 0;
        }

        .dot.active {
            background: #1976d2;
        }

        /* Legal notice styling */
        .legal-notice {
            margin-top: 2rem;
            text-align: center;
            padding: 0 1rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            background: transparent;
            width: 100%;
            display: block;
        }

        .legal-notice p {
            font-size: 0.8rem;
            color: #666;
            line-height: 1.4;
            margin: 0;
            text-align: center;
        }

        .trademark-notice {
            margin-top: 0.75rem;
            text-align: center;
            padding: 0 1rem;
            font-size: 0.7rem;
            color: #888;
            line-height: 1.3;
            position: relative;
            background: transparent;
            width: 100%;
            display: block;
        }

        @media (max-width: 768px) {
            .legal-notice {
                margin-top: 1.5rem;
                padding: 0 1rem;
            }

            .legal-notice p {
                font-size: 0.75rem;
            }

            .trademark-notice {
                margin-top: 0.5rem;
                font-size: 0.65rem;
            }

            /* Override any floating/absolute positioned notices */
            .hero .legal-notice,
            .hero .trademark-notice,
            .hero .cta-container .legal-notice,
            .hero .cta-container .trademark-notice {
                position: relative !important;
                right: auto !important;
                top: auto !important;
                bottom: auto !important;
                left: auto !important;
                float: none !important;
                clear: both !important;
                margin: 1rem auto !important;
                padding: 0 1rem !important;
                max-width: 100% !important;
                width: 100% !important;
                display: block !important;
                text-align: center !important;
                background: transparent !important;
            }

            .hero .legal-notice p,
            .hero .cta-container .legal-notice p {
                font-size: 0.75rem !important;
                color: #666 !important;
                line-height: 1.4 !important;
                margin: 0 !important;
                text-align: center !important;
            }
        }

        @keyframes shine {
            0% {
                left: -50%;
            }
            100% {
                left: 150%;
            }
        }

        /* Hide mobile card on desktop */
        .mobile-hero-card {
            display: none;
        }

        /* Tablet Experience - Complete Redesign (1024px and below) */
        @media (max-width: 1024px) {
            /* Hide desktop content, show mobile card */
            .desktop-hero-content {
                display: none;
            }
            
            .mobile-hero-card {
                display: block;
            }
            .hero {
                background: linear-gradient(180deg, #1976d2 0%, #1565c0 100%);
                padding: 0;
                padding-top: 80px;
                min-height: 100vh;
                display: flex;
                align-items: stretch;
                justify-content: center;
                position: relative;
                overflow: hidden;
            }

            .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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.02"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.04"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
                pointer-events: none;
            }

            .hero-visual {
                display: none;
            }

            .hero-grid {
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                max-width: 800px;
                margin: 0 auto;
                padding: 3rem 2rem;
                text-align: center;
                position: relative;
                z-index: 2;
                gap: 0;
            }

            .hero-content {
                width: 100%;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 2rem;
            }

            .hero h1 {
                font-size: 3.5rem;
                font-weight: 900;
                color: white;
                line-height: 1.1;
                margin: 0;
                text-align: center;
                text-shadow: 0 2px 4px rgba(0,0,0,0.1);
            }

            .price-container {
                background: rgba(255,255,255,0.15);
                backdrop-filter: blur(10px);
                border: 1px solid rgba(255,255,255,0.2);
                border-radius: 20px;
                padding: 2rem;
                margin: 0;
                text-align: center;
                box-shadow: 0 8px 32px rgba(0,0,0,0.1);
            }

            .price {
                font-size: 4rem;
                font-weight: 900;
                color: white;
                display: block;
                margin-bottom: 0.5rem;
                text-shadow: 0 2px 4px rgba(0,0,0,0.1);
            }

            .price-detail {
                font-size: 1.2rem;
                color: rgba(255,255,255,0.9);
                font-weight: 500;
            }

            .tagline {
                font-size: 1.3rem;
                color: rgba(255,255,255,0.95);
                text-align: center;
                max-width: 600px;
                margin: 0;
                line-height: 1.5;
                font-weight: 400;
            }

            .hero-features {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 1rem;
                width: 100%;
                max-width: 600px;
                margin: 0;
            }

            .feature {
                background: rgba(255,255,255,0.1);
                backdrop-filter: blur(10px);
                border: 1px solid rgba(255,255,255,0.2);
                padding: 1.5rem 1rem;
                border-radius: 16px;
                text-align: center;
                transition: all 0.3s ease;
            }

            .feature:hover {
                background: rgba(255,255,255,0.15);
                transform: translateY(-4px);
                box-shadow: 0 8px 24px rgba(0,0,0,0.15);
            }

            .feature-icon {
                margin-bottom: 0.5rem;
            }

            .feature-icon svg {
                filter: brightness(0) invert(1);
            }

            .feature span {
                font-size: 0.9rem;
                font-weight: 600;
                color: white;
                display: block;
            }

            .cta-container {
                text-align: center;
                margin: 0;
            }

            .cta-button {
                background: white;
                color: #1976d2;
                font-size: 1.2rem;
                font-weight: 700;
                padding: 1.5rem 3rem;
                border-radius: 50px;
                text-decoration: none;
                display: inline-block;
                transition: all 0.3s ease;
                box-shadow: 0 4px 20px rgba(0,0,0,0.15);
                border: none;
            }

            .cta-button:hover {
                transform: translateY(-3px);
                box-shadow: 0 8px 30px rgba(0,0,0,0.2);
                background: #f8f9fa;
            }

            .cta-note {
                margin-top: 1rem;
                font-size: 0.95rem;
                color: rgba(255,255,255,0.8);
                font-weight: 400;
            }

            /* Legal and trademark notices on blue background - tablet */
            .hero .legal-notice {
                color: rgba(255,255,255,0.9) !important;
                text-align: center !important;
                margin: 2rem auto 0 auto !important;
                padding: 0 2rem !important;
                position: relative !important;
                background: transparent !important;
                max-width: 800px !important;
                width: 100% !important;
                display: block !important;
            }

            .hero .legal-notice p {
                color: rgba(255,255,255,0.9) !important;
                font-size: 0.85rem !important;
                line-height: 1.4 !important;
                margin: 0 !important;
                text-align: center !important;
            }

            .hero .trademark-notice {
                color: rgba(255,255,255,0.7) !important;
                text-align: center !important;
                margin: 1rem auto 2rem auto !important;
                padding: 0 2rem !important;
                position: relative !important;
                background: transparent !important;
                font-size: 0.75rem !important;
                max-width: 800px !important;
                width: 100% !important;
                display: block !important;
            }
        }

        /* Mobile Experience - Complete Redesign (768px and below) */
        @media (max-width: 768px) {
            /* Show mobile elements, hide desktop elements */
            .desktop-only {
                display: none !important;
            }

            .mobile-only {
                display: block !important;
            }

            /* Ensure mobile card is visible */
            .desktop-hero-content {
                display: none;
            }
            
            .mobile-hero-card {
                display: block;
            }
            .hero {
                background: linear-gradient(180deg, #1976d2 0%, #1565c0 50%, #0d47a1 100%);
                padding: 0;
                padding-top: 80px;
                min-height: 100vh;
                display: flex;
                align-items: center;
                justify-content: center;
                position: relative;
                overflow: hidden;
            }

            .hero::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
                           radial-gradient(circle at 70% 80%, rgba(255,255,255,0.05) 0%, transparent 50%);
                pointer-events: none;
            }

            .hero-grid {
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                max-width: 500px;
                margin: 0 auto;
                padding: 2rem 1.5rem;
                text-align: center;
                position: relative;
                z-index: 2;
                gap: 2.5rem;
                width: 100%;
            }

            .hero-content {
                width: 100%;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 2rem;
            }

            /* Mobile Hero Card Design */
            .mobile-hero-card {
                background: rgba(255,255,255,0.95);
                backdrop-filter: blur(20px);
                border-radius: 24px;
                padding: 3rem 2.5rem;
                box-shadow: 0 20px 60px rgba(0,0,0,0.15);
                border: 1px solid rgba(255,255,255,0.3);
                width: 100%;
                text-align: center;
                overflow: visible;
            }

            .hero h1 {
                font-size: 2.8rem;
                font-weight: 900;
                color: #1976d2;
                line-height: 1.3;
                margin: 0;
                text-align: center;
                padding: 0.1rem 0;
                overflow: visible;
                animation: titleEnlarge 1.2s ease-out;
                transform-origin: center;
            }

            .price-container {
                background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
                border-radius: 20px;
                padding: 2rem 1.5rem;
                margin: 0;
                position: relative;
                overflow: hidden;
            }

            .price-container::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
                animation: shimmer 3s infinite;
            }

            @keyframes shimmer {
                0% { transform: translateX(-100%); }
                100% { transform: translateX(100%); }
            }

            .price {
                font-size: 3.5rem;
                font-weight: 900;
                color: white;
                display: block;
                margin-bottom: 0.5rem;
                position: relative;
                z-index: 2;
            }

            .price-detail {
                font-size: 1.1rem;
                color: rgba(255,255,255,0.9);
                font-weight: 500;
                position: relative;
                z-index: 2;
            }

            .tagline {
                font-size: 1.1rem;
                color: #444;
                text-align: center;
                margin: 0;
                line-height: 1.6;
                font-weight: 400;
            }

            .hero-features {
                display: flex;
                flex-direction: column;
                gap: 1rem;
                width: 100%;
                margin: 0;
            }

            .feature {
                background: rgba(25, 118, 210, 0.05);
                border: 2px solid rgba(25, 118, 210, 0.1);
                padding: 1.2rem;
                border-radius: 16px;
                display: flex;
                align-items: center;
                gap: 1rem;
                text-align: left;
                transition: all 0.3s ease;
                position: relative;
                overflow: hidden;
            }

            .feature::before {
                content: '';
                position: absolute;
                left: 0;
                top: 0;
                bottom: 0;
                width: 4px;
                background: linear-gradient(180deg, #1976d2 0%, #1565c0 100%);
            }

            .feature:hover {
                background: rgba(25, 118, 210, 0.08);
                transform: translateX(8px);
                border-color: rgba(25, 118, 210, 0.2);
            }

            .feature-icon {
                background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
                border-radius: 12px;
                padding: 0.8rem;
                flex-shrink: 0;
                box-shadow: 0 4px 12px rgba(25, 118, 210, 0.2);
            }

            .feature-icon svg {
                width: 20px;
                height: 20px;
                filter: brightness(0) invert(1);
            }

            .feature span {
                font-size: 1rem;
                font-weight: 600;
                color: #1976d2;
            }

            .cta-container {
                margin: 0;
                width: 100%;
            }

            .cta-button {
                background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
                color: white;
                font-size: 1.1rem;
                font-weight: 700;
                padding: 1.5rem 2rem;
                border-radius: 50px;
                text-decoration: none;
                display: block;
                width: 100%;
                transition: all 0.3s ease;
                box-shadow: 0 8px 24px rgba(25, 118, 210, 0.3);
                border: none;
                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.2), transparent);
                transition: left 0.5s;
            }

            .cta-button:hover::before {
                left: 100%;
            }

            .cta-button:hover {
                transform: translateY(-2px);
                box-shadow: 0 12px 32px rgba(25, 118, 210, 0.4);
            }

            .cta-note {
                margin-top: 1rem;
                font-size: 0.9rem;
                color: #666;
                font-weight: 400;
            }

            /* Legal and trademark notices on blue background - mobile */
            .hero .legal-notice {
                color: rgba(255,255,255,0.9) !important;
                text-align: center !important;
                margin: 2rem auto 0 auto !important;
                padding: 0 1.5rem !important;
                position: relative !important;
                background: transparent !important;
                max-width: 500px !important;
                width: 100% !important;
                display: block !important;
            }

            .hero .legal-notice p {
                color: rgba(255,255,255,0.9) !important;
                font-size: 0.8rem !important;
                line-height: 1.4 !important;
                margin: 0 !important;
                text-align: center !important;
            }

            .hero .trademark-notice {
                color: rgba(255,255,255,0.7) !important;
                text-align: center !important;
                margin: 1rem auto 2rem auto !important;
                padding: 0 1.5rem !important;
                position: relative !important;
                background: transparent !important;
                font-size: 0.7rem !important;
                max-width: 500px !important;
                width: 100% !important;
                display: block !important;
            }
        }

        /* Document Showcase */
        .documents-scroll { display:none; }
        
        /* keep container gap rules if re-enabled */

        .document {
            min-width: 250px;
            height: 300px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
        }

        .document img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .deleted-stamp {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) rotate(-25deg);
            background: rgba(255, 0, 0, 0.9);
            color: white;
            padding: 0.5rem 1.5rem;
            font-weight: bold;
            font-size: 1.5rem;
            border-radius: 5px;
        }

        .trademark-notice {
            text-align: center;
            color: #666;
            font-size: 0.9rem;
            margin-top: 2rem;
        }

        /* Process Section */
        .process {
            padding: 4rem 2rem;
            background: white;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-label {
            color: #4A90E2;
            font-weight: 600;
            letter-spacing: 2px;
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 1rem;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: #666;
            max-width: 800px;
            margin: 0 auto;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .step {
            background: #F8F9FA;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
        }

        .step-icon {
            width: 60px;
            height: 60px;
            background: #333;
            border-radius: 50%;
            margin: 0 auto 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
        }

        .step h3 {
            color: #4A90E2;
            margin-bottom: 0.8rem;
            font-size: 1.3rem;
        }

        .step p {
            font-size: 0.9rem;
            margin-bottom: 1rem;
            color: #666;
        }

        /* Comparison Section */
        .comparison {
            padding: 4rem 2rem;
            background: #F8F9FA;
        }

        .comparison-table {
            max-width: 800px;
            margin: 0 auto;
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .comparison-header {
            background: #4A90E2;
            color: white;
            padding: 1.5rem;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.75rem;
            font-size: 1.5rem;
            font-weight: 700;
            text-align: center;
            flex-wrap: wrap;
            border-radius: 24px;
        }

        .comparison-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
        }

        .comparison-item {
            padding: 1rem 1.5rem;
            border-bottom: 1px solid #f0f0f0;
        }

        .comparison-item:nth-child(odd) {
            border-right: 1px solid #f0f0f0;
        }

        .comparison-item.negative {
            color: #E74C3C;
        }

        /* Deletions Section */
        .deletions {
            padding: 4rem 2rem;
            background: linear-gradient(135deg, #E8F4FD 0%, #D6EFFF 100%);
        }

        .deletion-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 3rem auto 0;
        }

        .deletion-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .deletion-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .deletion-image-wrapper {
            position: relative;
            height: 300px;
            overflow: hidden;
        }

        .deletion-letter-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }

        .deletion-card:hover .deletion-letter-img {
            transform: scale(1.05);
        }

        .deletion-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: #e74c3c;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 1px;
            transform: rotate(5deg);
            box-shadow: 0 3px 10px rgba(231, 76, 60, 0.3);
        }

        .deletion-info {
            padding: 1.5rem;
            text-align: center;
        }

        .deletion-info h4 {
            font-size: 1.2rem;
            color: #333;
            margin-bottom: 0.5rem;
            font-weight: 700;
        }

        .deletion-amount {
            color: #4A90E2;
            font-weight: 600;
            font-size: 0.95rem;
            margin: 0;
        }

        .deletion-summary {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-top: 3rem;
            flex-wrap: wrap;
        }

        .summary-stat {
            text-align: center;
            padding: 1.5rem;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            min-width: 150px;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: #4A90E2;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.9rem;
            color: #666;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        @media(max-width: 768px) {
            .deletion-summary {
                gap: 1.5rem;
            }
            
            .summary-stat {
                min-width: 120px;
                padding: 1rem;
            }
            
            .stat-number {
                font-size: 2rem;
            }
        }

        /* Benefits Section */
        .benefits {
            padding: 4rem 2rem;
            background: white;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            max-width: 1200px;
            margin: 3rem auto 0;
        }

        .benefit {
            text-align: center;
        }

        .benefit-icon {
            width: 80px;
            height: 80px;
            background: #4A90E2;
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
        }

        .benefit h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: #333;
        }

        .benefit p {
            color: #666;
            line-height: 1.6;
        }

        /* CTA Section */
        .cta {
            padding: 4rem 2rem;
            background: linear-gradient(135deg, #E8F4FD 0%, #D6EFFF 100%);
            text-align: center;
        }

        .cta-form {
            width: min(700px, calc(100vw - 2rem));
            margin: 2rem auto;
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            position: relative;
            min-height: 520px;
            max-height: 620px;
            overflow-y: auto;
        }

        .cta-form:focus {
            outline: none;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1), 0 0 0 3px rgba(74,144,226,0.1);
        }

        .form-group {
            margin-bottom: 0.5rem;
            text-align: left;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.2rem;
            font-weight: 600;
            color: #333;
            font-size: 0.75rem;
        }

        /* Make form content much smaller */
        #dispute-form input,
        #dispute-form select,
        #dispute-form textarea {
            padding: 0.3rem !important;
            font-size: 0.75rem !important;
            line-height: 1.2 !important;
        }

        #dispute-form textarea {
            height: 50px !important;
        }

        #dispute-form .step h3 {
            font-size: 1rem !important;
            margin-bottom: 0.4rem !important;
        }

        #dispute-form .step p {
            font-size: 0.75rem !important;
            margin-bottom: 0.4rem !important;
            line-height: 1.3 !important;
        }

        /* Additional aggressive reductions */
        #dispute-form .btn {
            padding: 0.5rem 1rem !important;
            font-size: 0.8rem !important;
        }

        #dispute-form .form-row {
            gap: 0.5rem !important;
        }

        #dispute-form .checkbox-group {
            margin: 0.3rem 0 !important;
        }

        #dispute-form .checkbox-group label {
            font-size: 0.7rem !important;
            margin-bottom: 0.1rem !important;
        }

        /* Step 4 specific compact layout */
        #step-4 .agreement-content {
            font-size: 0.85rem !important;
            line-height: 1.4 !important;
            padding: 0.75rem !important;
            text-align: left !important;
        }

        #step-4 .agreement-content h4 {
            font-size: 1rem !important;
            margin: 0 0 0.75rem 0 !important;
            text-align: center !important;
        }

        #step-4 .agreement-content div {
            text-align: left !important;
        }

        #step-4 .agreement-content div[style*="text-align:center"] {
            text-align: center !important;
        }

        #step-4 .agreement-content a {
            color: #4A90E2 !important;
            text-decoration: none !important;
        }

        #step-4 .agreement-content a:hover {
            color: #357ABD !important;
            text-decoration: underline !important;
        }

        /* Ensure form buttons are always visible */
        #step-agreement {
            padding-bottom: 0.5rem;
        }

        #step-agreement .form-group {
            margin-bottom: 0.75rem;
        }

        #step-agreement label[style*="display:flex"] {
            margin-bottom: 1rem;
        }

        /* Button layout for Step 4 */
        #step-agreement div[style*="display:flex"] .next-btn {
            flex: 1;
            max-width: 200px;
        }

        /* Mobile responsive for agreement layout */
        @media (max-width: 480px) {
            .agreement-box {
                padding: 0.5rem !important;
                font-size: 0.8rem !important;
                margin-bottom: 0.75rem !important;
        }

            #step-4 .agreement-content {
                font-size: 0.8rem !important;
                padding: 0.5rem !important;
        }

            #step-4 .agreement-content h4 {
                font-size: 0.9rem !important;
                margin-bottom: 0.5rem !important;
            }
            
            /* Mobile button layout */
            #step-agreement div[style*="display:flex"] {
                flex-direction: column !important;
                gap: 0.75rem !important;
        }

            #step-agreement div[style*="display:flex"] .next-btn {
                max-width: none !important;
                width: 100% !important;
            }
        }

        /* Force left alignment for Step 4 content - override any centering */
        #step-4,
        #step-4 *,
        #step-4 .agreement-content,
        #step-4 .agreement-content *,
        #step-4 ol,
        #step-4 ol *,
        #step-4 li,
        #step-4 li * {
            text-align: left !important;
        }

        /* Specific targeting for the problematic text */
        div[id="step-4"] {
            text-align: left !important;
        }

        div[id="step-4"] * {
            text-align: left !important;
        }

        #step-4 .checkbox-group {
            margin: 0.2rem 0 !important;
        }

        #step-4 .checkbox-group label {
            font-size: 0.65rem !important;
        }

        .checkbox-group {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .checkbox-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.8rem;
            border: 2px solid #ddd;
            border-radius: 8px;
            cursor: pointer;
            transition: border-color 0.3s;
            flex: 1;
        }

        .checkbox-item:hover {
            border-color: #4A90E2;
        }

        .checkbox-item input {
            margin: 0;
        }

        .next-btn {
            background: #4A90E2;
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            width: 100%;
            transition: background 0.3s;
        }

        .next-btn:hover {
            background: #357ABD;
        }

        /* FAQ Section */
        .faq {
            padding: 4rem 2rem;
            background: white;
        }

        .faq .section-subtitle {
            max-width: 800px;
            margin: 1.5rem auto 3rem;
            text-align: center;
            color: #666;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .faq-item {
            background: #F8F9FA;
            border-radius: 10px;
            overflow: hidden;
        }

        .faq-question {
            width: 100%;
            text-align: left;
            padding: 1.25rem;
            background: #F8F9FA;
            border: none;
            font-size: 1rem;
            font-weight: 600;
            color: #333;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s;
        }

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

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s cubic-bezier(0.4,0,0.2,1), opacity 0.3s;
            opacity: 0;
            padding: 0 1.25rem;
        }

        .faq-answer.open {
            max-height: 500px;
            opacity: 1;
            padding: 0 1.25rem 1.25rem;
        }

        .faq-toggle {
            font-size: 1.2em;
            transition: transform 0.3s;
        }

        .faq-toggle.open {
            transform: rotate(45deg);
        }

        @media (max-width: 768px) {
            .faq-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Credit Advisor Section */
        .credit-advisor {
            padding: 4rem 2rem;
            background: white;
            text-align: center;
        }

        .advisor-icon {
            width: 80px;
            height: 80px;
            background: #333;
            border-radius: 50%;
            margin: 0 auto 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
        }

        .advisor-title {
            font-size: 2rem;
            color: #333;
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .advisor-subtitle {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 2rem;
            line-height: 1.5;
        }

        .advisor-btn {
            background: #333;
            color: white;
            padding: 1rem 2rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            transition: background 0.3s;
        }

        .advisor-btn:hover {
            background: #555;
        }

        /* Footer */
        .footer {
            background: #333;
            color: #fff;
            padding: 3rem 2rem;
            display: block;
            visibility: visible;
            opacity: 1;
            position: relative;
            z-index: 10001;
        }

        .footer-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-email {
            font-size: 1.1rem;
            flex: 1 1 220px;
            color: #fff;
        }

        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem 2rem;
            font-size: 0.95rem;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #fff;
        }

        @media (max-width: 768px) {
            .footer-top {
                flex-direction: column;
                text-align: center;
            }

            .footer-links {
                justify-content: center;
            }
        }

        /* Privacy Modal */
        .modal {
            display: none;
            position: fixed;
            z-index: 15000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            backdrop-filter: blur(5px);
        }

        .modal-content {
            background-color: white;
            margin: 2% auto;
            padding: 0;
            border-radius: 15px;
            width: 90%;
            max-width: 800px;
            max-height: 90vh;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }

        .modal-header {
            background: #333;
            color: white;
            padding: 1.5rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .modal-header h2 {
            margin: 0;
            font-size: 1.5rem;
        }

        .close {
            color: white;
            font-size: 2rem;
            font-weight: bold;
            cursor: pointer;
            border: none;
            background: none;
            padding: 0;
            line-height: 1;
        }

        .close:hover {
            opacity: 0.7;
        }

        .modal-body {
            padding: 2rem;
            max-height: calc(90vh - 120px);
            overflow-y: auto;
            line-height: 1.6;
        }

        .modal-body h3 {
            color: #333;
            margin-top: 2rem;
            margin-bottom: 1rem;
            font-size: 1.2rem;
            border-bottom: 2px solid #4A90E2;
            padding-bottom: 0.5rem;
        }

        .modal-body h3:first-child {
            margin-top: 0;
        }

        .modal-body p {
            margin-bottom: 1rem;
            color: #555;
        }

        .modal-body ul {
            margin-bottom: 1rem;
            padding-left: 1.5rem;
        }

        .modal-body li {
            margin-bottom: 0.5rem;
            color: #555;
        }

        .highlight-box {
            background: #f8f9fa;
            border-left: 4px solid #4A90E2;
            padding: 1rem;
            margin: 1rem 0;
            border-radius: 0 8px 8px 0;
        }

        .contact-info {
            background: #333;
            color: white;
            padding: 1rem;
            border-radius: 8px;
            margin: 1rem 0;
        }

        /* Mobile responsive for modal */
        @media (max-width: 768px) {
            .modal-content {
                width: 95%;
                margin: 5% auto;
                max-height: 85vh;
            }

            .modal-header {
                padding: 1rem;
            }

            .modal-body {
                padding: 1rem;
                max-height: calc(85vh - 80px);
            }
        }

        /* Scrollbar styling - Hide scrollbars */
        .documents-scroll::-webkit-scrollbar {
            display: none;
        }

        .documents-scroll {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        /* Social Proof Section */
        .social-proof {
            padding: 4rem 2rem;
            background: #F8F9FA;
        }

        .results-showcase {
            display: flex;
            justify-content: center;
            margin: 3rem auto;
        }

        .result-card {
            background: #fff;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            padding: 2rem;
            position: relative;
            display: flex;
            align-items: center;
            gap: 1.5rem;
            flex-wrap: wrap;
            max-width: 900px;
        }

        .verification-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: #28a745;
            color: #fff;
            font-size: 0.8rem;
            font-weight: 600;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
        }

        .client-photo {
            width: 300px;
            height: 380px;
            border-radius: 8px;
            background: #e0e0e0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            color: #666;
            flex-shrink: 0;
            cursor: pointer;
        }

        .client-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: inherit;
        }

        .card-details {
            flex: 1;
            display: flex;
                flex-direction: column;
            gap: 0.4rem;
        }

        .client-name {
            font-size: 1.2rem;
            font-weight: 700;
            color: #333;
        }

        .result-stats {
            display: flex;
                flex-direction: column;
            gap: 0.3rem;
            font-size: 0.95rem;
            color: #666;
        }

        .paid-amount {
            color: #333;
            font-weight: 600;
        }

        .removed-amount {
            color: #4A90E2;
            font-weight: 700;
            font-size: 1.1rem;
        }

        .result-description {
            color: #666;
        }

        .roi-highlight {
            margin-top: 0.5rem;
            font-weight: 700;
            color: #4A90E2;
        }

        .client-review {
            font-style: italic;
            color: #555;
            margin-top: 0.5rem;
            line-height: 1.5;
        }

        @media (max-width: 768px) {
            .result-card {
                flex-direction: column;
                text-align: center;
            }

            .client-photo {
                width: 200px;
                height: 260px;
                margin: 0 auto;
            }
        }

        /* Disclaimers */
        .disclaimer {
            font-size: 0.75rem;
            color: #777;
            line-height: 1.4;
                text-align: center;
            max-width: 800px;
            margin: 1rem auto 0;
        }
        .footer .disclaimer {
            color: #bfbfbf;
            margin-top: 1rem;
        }



        .nav-powered {
            margin-top: 1rem;
            font-size: 0.75rem;
            color: #666;
        }

        .nav-powered a { color:#4A90E2; text-decoration:none; }

        /* Offset for sticky header when using anchor links */
        [id] {
            scroll-margin-top: 60px;
        }
        @media (max-width: 768px) {
            [id] {
                scroll-margin-top: 80px;
            }
        }

        .form-step {display:none;}
        .form-step.active {display:block;}

        /* Form responsive optimizations */
        @media (max-width: 768px) {
            .cta-form {
                min-height: 480px;
                max-height: 550px;
            }
            /* Stack grid layouts on mobile */
            .form-step div[style*="grid-template-columns"] {
                display: block !important;
            }
            .form-step div[style*="grid-template-columns"] .form-group {
                margin-bottom: 1rem;
            }
        }

        /* --- Form Field Styling --- */
        .cta-form input[type=text],
        .cta-form input[type=email],
        .cta-form input[type=number]{
          width:100%;
          padding:0.75rem 1rem;
          border:2px solid #ddd;
          border-radius:8px;
          font:inherit;
          transition:border-color .25s, box-shadow .25s;
        }

        .cta-form input:focus{
          outline:none;
          border-color:#4A90E2;
          box-shadow:0 0 0 3px rgba(74,144,226,.25);
        }

        .form-group{margin-bottom:1.25rem;}

        .form-group label{
          display:block;
          margin-bottom:.35rem;
          font-weight:600;
          color:#333;
          font-size:.95rem;
        }

        /* inline DOB fields */
        .cta-form input[name=dobMonth],
        .cta-form input[name=dobDay],
        .cta-form input[name=dobYear],
        .cta-form input[name=state],
        .cta-form input[name=zip]{
          width:100%;
        }

        /* make the small numeric boxes equal height */
        @media(min-width:480px){
          .cta-form input[name=dobMonth],
          .cta-form input[name=dobDay]{max-width:70px;}
          .cta-form input[name=dobYear]{max-width:110px;}
          .cta-form input[name=state]{max-width:80px;}
          .cta-form input[name=zip]{max-width:110px;}
        }

        /* --- Step navigation buttons --- */
        .form-next, .form-prev{
          width:100%;
        }

        @media(min-width:480px){
          .form-next, .form-prev{width:auto;}
        }

        /* DOB mini-inputs */
        .dob-input{
          width:70px;
          text-align:center;
          -webkit-appearance: none;   /* Safari iOS */
          appearance: none;           /* Standard property */
        }

        /* Agreement box */
        .agreement-box{
          padding:0.75rem;
          border:1px solid #ddd;
          background:#fafafa;
          border-radius:6px;
          font-size:.85rem;
          line-height:1.4;
          margin-bottom:0.75rem;
        }
        .croa-notice{
          margin:0.75rem 0;
          padding:0.5rem;
          background:#fffbe6;
          border:1px solid #f0e6b8;
          font-size:0.8rem;
          text-transform:uppercase;
          font-weight:600;
        }

        .typewriter {
            font-size: 1.3rem;
            color: #333;
            margin-bottom: 2rem;
            font-weight: 500;
        }
        .typewriter .cursor {
            display:inline-block;
            width:2px;
            height:1.2em;
            background:#333;
            margin-left:2px;
            animation:blink 0.8s steps(1) infinite;
            vertical-align: bottom;
        }
        @keyframes blink{0%,50%{opacity:1;}51%,100%{opacity:0;}}

        @media (max-width: 600px){
            /* Show mobile elements, hide desktop elements */
            .desktop-only {
                display: none !important;
            }

            .mobile-only {
                display: block !important;
            }

            .hero {
                padding: 2rem 1rem;
                padding-top: 120px; /* Account for navbar */
                min-height: 100vh;
                display: flex;
                align-items: center;
                justify-content: center;
                background: linear-gradient(135deg, #e8f4ff 0%, #d1e9ff 100%);
            }

            .hero-grid {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 2rem;
                max-width: 600px;
                margin: 0 auto;
                width: 100%;
                text-align: center;
            }

            .hero-content {
                width: 100%;
                max-width: 500px;
                order: 1; /* Position first */
            }

            .hero h1 {
                font-size: 3.2rem;
                font-weight: 900;
                color: #1976d2;
                line-height: 1.1;
                margin: 0 0 1.5rem 0;
                text-align: center;
                animation: titleEnlarge 1.2s ease-out;
                transform-origin: center;
            }

            .price-container {
                margin: 1.5rem 0;
                text-align: center;
            }

            .price {
                font-size: 3.5rem;
                font-weight: 900;
                color: white;
                display: block;
            }

            .price-detail {
                font-size: 1.2rem;
                color: rgba(255,255,255,0.9);
                margin-top: 0.5rem;
            }

            .tagline {
                font-size: 1.2rem;
                color: #555;
                line-height: 1.6;
                margin: 2rem 0;
                text-align: center;
                max-width: 100%;
            }

            .hero-features {
                display: grid;
                grid-template-columns: 1fr;
                gap: 1rem;
                margin: 2rem 0;
                width: 100%;
                order: 2; /* Position before legal notice (order 3) */
            }

            .feature {
                background: white;
                padding: 1rem;
                border-radius: 8px;
                box-shadow: 0 2px 8px rgba(0,0,0,0.1);
                text-align: left;
                border-left: 4px solid #1976d2;
            }

            .cta-container {
                margin: 2.5rem 0 1rem 0;
                text-align: center;
                width: 100%;
            }

            .start-btn {
                background: #1976d2;
                color: white;
                padding: 1.2rem 2rem;
                border-radius: 8px;
                font-size: 1.1rem;
                font-weight: 600;
                text-decoration: none;
                display: inline-block;
                width: 100%;
                max-width: 300px;
                transition: all 0.3s ease;
            }

            .start-btn:hover {
                background: #1565c0;
                transform: translateY(-2px);
            }

            /* Style legal disclaimer within cta-container on mobile - Override conflicting rules */
            .hero .cta-container .legal-notice {
                margin-top: 1rem !important;
                margin-bottom: 0 !important;
                text-align: center !important;
                padding: 0 !important;
                position: static !important;
                background: transparent !important;
                max-width: 100% !important;
                width: 100% !important;
                display: block !important;
            }

            .hero .cta-container .legal-notice p {
                font-size: 0.8rem !important;
                color: #666 !important;
                line-height: 1.4 !important;
                margin: 0 !important;
                max-width: 100% !important;
                text-align: center !important;
            }

            /* Style trademark notice within cta-container on mobile - Override conflicting rules */
            .hero .cta-container .trademark-notice {
                margin-top: 0.75rem !important;
                margin-bottom: 0 !important;
                text-align: center !important;
                padding: 0 !important;
                position: static !important;
                background: transparent !important;
                max-width: 100% !important;
                width: 100% !important;
                display: block !important;
                font-size: 0.7rem !important;
                color: #888 !important;
                line-height: 1.3 !important;
            }
        }

        /* Extra small mobile devices */
        /* Extra Small Mobile - Optimized Design (480px and below) */
        @media (max-width: 480px) {
            /* Show mobile elements, hide desktop elements */
            .desktop-only {
                display: none !important;
            }

            .mobile-only {
                display: block !important;
            }

            .hero {
                background: linear-gradient(180deg, #1976d2 0%, #1565c0 100%);
                padding: 0;
                padding-top: 70px;
                min-height: 100vh;
                display: flex;
                align-items: center;
                justify-content: center;
                position: relative;
            }

            .hero-grid {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 1.5rem;
                max-width: 500px;
                margin: 0 auto;
                width: 100%;
                text-align: center;
                padding: 1.5rem 1rem;
            }

            .hero-content {
                gap: 1.8rem;
            }

            .hero h1 {
                font-size: 2.4rem;
                font-weight: 900;
                color: #1976d2;
                line-height: 1.4;
                margin: 0;
                padding: 0.2rem 0;
                overflow: visible;
                animation: titleEnlarge 1.2s ease-out;
                transform-origin: center;
            }

            .mobile-hero-card {
                padding: 2.5rem 2rem;
                margin: 0 1rem;
                overflow: visible;
            }

            .price-container {
                padding: 1.8rem 1.2rem;
            }

            .price {
                font-size: 3rem;
                font-weight: 900;
                color: white;
                display: block;
                margin-bottom: 0.4rem;
            }

            .price-detail {
                font-size: 1rem;
                color: rgba(255,255,255,0.9);
            }

            .tagline {
                font-size: 1rem;
                color: #444;
                line-height: 1.6;
                margin: 0;
            }

            .hero-features {
                gap: 0.8rem;
            }

            .feature {
                padding: 1rem;
                border-radius: 14px;
            }

            .feature-icon {
                padding: 0.7rem;
                border-radius: 10px;
            }

            .feature-icon svg {
                width: 18px;
                height: 18px;
            }

            .feature span {
                font-size: 0.95rem;
                font-weight: 600;
            }

            .cta-button {
                font-size: 1rem;
                padding: 1.3rem 1.8rem;
                border-radius: 40px;
            }

            .cta-note {
                font-size: 0.85rem;
            }

            /* Style legal disclaimer within cta-container on mobile - Override conflicting rules */
            .hero .cta-container .legal-notice {
                margin-top: 1rem !important;
                margin-bottom: 0 !important;
                text-align: center !important;
                padding: 0 !important;
                position: static !important;
                background: transparent !important;
                max-width: 100% !important;
                width: 100% !important;
                display: block !important;
            }

            .hero .cta-container .legal-notice p {
                font-size: 0.8rem !important;
                color: #666 !important;
                line-height: 1.4 !important;
                margin: 0 !important;
                max-width: 100% !important;
                text-align: center !important;
            }

            /* Style trademark notice within cta-container on mobile - Override conflicting rules */
            .hero .cta-container .trademark-notice {
                margin-top: 0.75rem !important;
                margin-bottom: 0 !important;
                text-align: center !important;
                padding: 0 !important;
                position: static !important;
                background: transparent !important;
                max-width: 100% !important;
                width: 100% !important;
                display: block !important;
                font-size: 0.7rem !important;
                color: #888 !important;
                line-height: 1.3 !important;
            }

            /* Legal and trademark notices on blue background - small mobile */
            .hero .legal-notice {
                color: rgba(255,255,255,0.9) !important;
                text-align: center !important;
                margin: 1.5rem auto 0 auto !important;
                padding: 0 1rem !important;
                position: relative !important;
                background: transparent !important;
                max-width: 380px !important;
                width: 100% !important;
                display: block !important;
            }

            .hero .legal-notice p {
                color: rgba(255,255,255,0.9) !important;
                font-size: 0.75rem !important;
                line-height: 1.4 !important;
                margin: 0 !important;
                text-align: center !important;
            }

            .hero .trademark-notice {
                color: rgba(255,255,255,0.7) !important;
                text-align: center !important;
                margin: 0.75rem auto 1.5rem auto !important;
                padding: 0 1rem !important;
                position: relative !important;
                background: transparent !important;
                font-size: 0.65rem !important;
                max-width: 380px !important;
                width: 100% !important;
                display: block !important;
            }

            /* Style legal disclaimer within cta-container on mobile - Override conflicting rules */
            .hero .cta-container .legal-notice {
                margin-top: 0.75rem !important;
                margin-bottom: 0 !important;
                text-align: center !important;
                padding: 0 !important;
                position: static !important;
                background: transparent !important;
                max-width: 100% !important;
                width: 100% !important;
                display: block !important;
            }

            .hero .cta-container .legal-notice p {
                font-size: 0.75rem !important;
                color: #666 !important;
                line-height: 1.4 !important;
                margin: 0 !important;
                max-width: 100% !important;
                text-align: center !important;
            }

            /* Style trademark notice within cta-container on mobile - Override conflicting rules */
            .hero .cta-container .trademark-notice {
                margin-top: 0.5rem !important;
                margin-bottom: 0 !important;
                text-align: center !important;
                padding: 0 !important;
                position: static !important;
                background: transparent !important;
                max-width: 100% !important;
                width: 100% !important;
                display: block !important;
                font-size: 0.65rem !important;
                color: #888 !important;
                line-height: 1.3 !important;
            }
        }

        .image-wrapper {
            position: relative;
            cursor: pointer;
        }

        .zoom-btn {
            position: absolute;
            bottom: 8px;
            right: 8px;
            background: #fff;
            border: none;
            border-radius: 50%;
            font-size: 1.1rem;
            cursor: pointer;
            padding: 4px 6px;
            box-shadow: 0 1px 4px rgba(0,0,0,.25);
            transition: transform .2s;
        }

        .zoom-btn:hover {
            transform: scale(1.1);
        }

        /* Hero Section */
        .signature-preview {
            font-family: 'Homemade Apple', 'Segoe Script', 'Dancing Script', cursive;
            font-size: 1.8rem;
            letter-spacing: 0.5px;
            color: #222;
        }

        .small-icon-btn {
            border: none;
            background: #e0e0e0;
            color: #333;
            padding: 0.35rem 0.6rem;
            font-size: 1rem;
            border-radius: 4px;
            cursor: pointer;
            line-height: 1;
        }

        .small-icon-btn:hover {
            background: #d2d2d2;
        }

        @media(max-width:480px) {
            .cta-form {
                width: calc(100vw - 0.5rem);
                padding: 2rem 1.5rem;
                margin: 0.5rem auto;
                min-height: 75vh;
            }
            .faq-grid {
                grid-template-columns: 1fr;
                padding: 0 0.5rem;
            }
            .progress-container {
                padding: 0.1rem 0.5rem 0.5rem 0.5rem;
                max-height: 90vh;
            }
            .progress-title {
                font-size: 1.1rem;
                margin-bottom: 0.5rem;
            }
            .progress-step {
                margin-bottom: 0.75rem;
            }
            .final-message {
                padding: 0.5rem;
                max-height: 70vh;
                margin-top: 0;
            }
            
            /* Make success content more compact on mobile */
            .final-message h3 {
                font-size: 1.2rem !important;
            }
            
            .final-message p {
                font-size: 0.85rem !important;
            }
            
            /* Hide the success header section on mobile to save space */
            .final-message > div:first-child {
                display: none !important;
            }
        }

        /* Extra small screens */
        @media(max-width:320px) {
            .cta-form {
                padding: 1rem 0.75rem;
            }
            .header-tracking-btn {
                padding: 0.5rem 1rem;
                font-size: 0.85rem;
            }
            .header-tracking-input {
                padding: 0.5rem 0.75rem;
                font-size: 0.85rem;
            }
        }

        /* Mobile upsell responsiveness */
        @media(max-width:768px) {
            .upsell-section .grid-features {
                grid-template-columns: 1fr !important;
                gap: 0.75rem !important;
            }
            .upsell-section .feature-card {
                padding: 1rem !important;
                text-align: left !important;
            }
            .upsell-section .feature-title {
                font-size: 1rem !important;
            }
            .upsell-section .feature-desc {
                font-size: 0.8rem !important;
            }
            .upsell-section .pricing-box {
                padding: 1rem !important;
            }
            .upsell-section .pricing-amount {
                font-size: 1.3rem !important;
            }
            .upsell-section .checkbox-label {
                flex-direction: column !important;
                align-items: flex-start !important;
                gap: 0.75rem !important;
                padding: 1rem !important;
            }
            .upsell-section .checkbox-input {
                align-self: flex-start !important;
            }
        }

        @media(max-width:480px) {
            .upsell-section .inner-container {
                padding: 1.5rem !important;
            }
            .upsell-section .main-title {
                font-size: 1.1rem !important;
            }
            .upsell-section .main-subtitle {
                font-size: 0.9rem !important;
            }
            .upsell-section .section-title {
                font-size: 1rem !important;
            }
        }

        /* Mobile image modal - properly centered and contained */
        @media(max-width:768px) {
            #image-modal {
                padding: 10px !important;
            }
            
            #image-modal .modal-content {
                max-width: calc(100vw - 20px) !important;
                max-height: calc(100vh - 20px) !important;
                margin: 0 !important;
                padding: 0 !important;
                position: absolute !important;
                top: 50% !important;
                left: 50% !important;
                transform: translate(-50%, -50%) !important;
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
            }
            
            #image-modal #modal-image {
                max-width: 100% !important;
                max-height: 100% !important;
                width: auto !important;
                height: auto !important;
                object-fit: contain !important;
            }
            
            #image-modal #close-image {
                position: fixed !important;
                top: 20px !important;
                right: 20px !important;
                font-size: 2.5rem !important;
                z-index: 10001 !important;
                background: rgba(0,0,0,0.8) !important;
                color: white !important;
                border-radius: 50% !important;
                width: 45px !important;
                height: 45px !important;
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
            }
        }

        /* Header Tracking Form - Desktop Only */
        .header-tracking {
            display: none;
            flex-direction: column;
            align-items: center;
            justify-self: center;
            gap: 0.75rem;
            max-width: min(400px, 100%);
            width: 100%;
            padding: 0 0.5rem;
        }

        .header-tracking-text {
            font-size: 0.9rem;
            color: #666;
            text-align: center;
            line-height: 1.4;
        }

        .header-tracking-form {
            display: flex;
            gap: 0.75rem;
            align-items: center;
            width: 100%;
        }

        .header-tracking-input {
            flex: 1;
            padding: 0.75rem 1rem;
            border: 2px solid #4A90E2;
            border-radius: 6px;
            font-size: 0.95rem;
            transition: border-color 0.3s;
        }

        .header-tracking-input:focus {
            outline: none;
            border-color: #357ABD;
        }

        .header-tracking-input::placeholder {
            color: #999;
        }

        .header-tracking-btn {
            padding: 0.75rem 1.5rem;
            background: #4A90E2;
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            white-space: nowrap;
        }

        .header-tracking-btn:hover {
            background: #357ABD;
        }

        @media(min-width:1024px) {
            .header-right {
                display: flex;
                align-items: center;
                justify-self: end;
                gap: 1rem;
            }
        }

        @media(min-width:1024px) {
            .header-tracking {
                display: flex;
            }
            
            /* Hide the mobile track link when desktop tracking is shown */
            .nav a[href="#"]:has([id="track-link-header"]) {
                display: none;
            }
        }

        /* Progress Animation Styles */
        .progress-container {
            text-align: center;
            padding: 0.25rem 1rem 1rem 1rem;
            max-height: 90vh;
            overflow-y: auto;
            max-width: 600px;
            margin: 0 auto;
        }

        .progress-title {
            font-size: 1.3rem;
            color: #333;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .progress-step {
            margin-bottom: 1.5rem;
            opacity: 0.3;
            transition: opacity 0.5s ease;
        }

        .progress-step.active {
            opacity: 1;
        }

        .progress-step.completed {
            opacity: 1;
            color: #4A90E2;
        }

        .progress-step h4 {
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .progress-bar {
            width: 100%;
            height: 16px;
            background: #e0e0e0;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 0.5rem;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #4A90E2, #357ABD);
            border-radius: 8px;
            width: 0%;
            transition: width 0.8s ease;
        }

        .progress-text {
            font-size: 0.9rem;
            color: #666;
        }

        .checkmark {
            display: inline-block;
            width: 20px;
            height: 20px;
            background: #4A90E2;
            border-radius: 50%;
            color: white;
            line-height: 20px;
            font-size: 12px;
            margin-right: 8px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .progress-step.completed .checkmark {
            opacity: 1;
        }

        .final-message {
            background: #f0f8ff;
            border: 2px solid #4A90E2;
            border-radius: 10px;
            padding: 0.75rem;
            margin-top: 0;
            display: none;
            max-height: 70vh;
            overflow-y: auto;
        }

        .final-message.show {
            display: block;
            animation: fadeInUp 0.6s ease;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Cookie Banner */
        #cookie-banner {
            position: fixed;
            left: 0;
            bottom: 0;
            width: 100%;
            background: #333;
            color: #fff;
            padding: 1rem 2rem;
            font-size: 0.95rem;
            z-index: 10002;
            display: none;  /* Hidden by default */
            align-items: center;
            justify-content: center;
            gap: 1rem;
            text-align: center;
            box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
        }

        #cookie-banner.show {
            display: flex;  /* Only show when .show class is added */
        }

        #cookie-banner a {
            color: #4A90E2;
            text-decoration: underline;
        }

        #cookie-banner button {
            padding: 0.5rem 1rem;
            border: none;
            border-radius: 4px;
            background: #4A90E2;
            color: #fff;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            white-space: nowrap;
        }

        #cookie-banner button:hover {
            background: #357ABD;
        }

        @media (max-width: 600px) {
            #cookie-banner {
                font-size: 0.8rem;
                padding: 0.75rem 1rem;
                flex-direction: column;
                gap: 0.75rem;
            }
            
            #cookie-banner button {
                font-size: 0.8rem;
                padding: 0.5rem 1rem;
                width: 100%;
            }
        }

        /* Hide floating legal and trademark notices on mobile and tablets */
        @media (max-width: 1024px) {
            .hero .legal-notice,
            .hero .trademark-notice {
                display: none !important;
            }
        }

        /* Keep the notices in the CTA container visible */
        @media (max-width: 1024px) {
            .hero .cta-container .legal-notice,
            .hero .cta-container .trademark-notice {
                display: block !important;
                margin-top: 1rem !important;
                text-align: center !important;
            }

            .hero .cta-container .trademark-notice {
                margin-top: 0.5rem !important;
                font-size: 0.65rem !important;
                color: #888 !important;
            }
        }



        