        /* Critical: Reset & Variables */
        *{margin:0;padding:0;box-sizing:border-box}
        :root{--primary-green:#0fa46c;--dark-green:#067b52;--light-green:#ecfff6;--text-dark:#0b0f0c;--text-gray:#5f6b66;--bg-light:#fff;--bg-gray:#f6f7f9;--border-dark:#111827}

        /* Critical: Font fallback system for faster text rendering */
        body{font-family:'Source Sans 3',system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,sans-serif;color:var(--text-dark);background:var(--bg-light);line-height:1.6;-webkit-font-smoothing:antialiased;text-rendering:optimizeSpeed}

        /* Critical: Above-the-fold content */
        .container{max-width:1200px;margin:0 auto;padding:0 24px}
        .hero{background:radial-gradient(1200px 400px at 10% 0%,#eafff3 0%,transparent 60%),linear-gradient(135deg,#fff 0%,#f0fdf4 100%);padding:120px 0 0}
        .hero-layout{display:grid;grid-template-columns:minmax(0,1fr) minmax(320px,520px);align-items:center;gap:56px}
        .hero-image{justify-self:end;width:100%;max-width:520px}
        .hero-image img{display:block;width:100%;height:auto;aspect-ratio:auto;object-fit:contain;border-radius:0;box-shadow:none}
        .hero h1{font-size:clamp(32px,5vw,56px);font-weight:800;line-height:1.1;margin-bottom:20px;color:var(--text-dark);font-family:'Space Grotesk',sans-serif}
        .hero .highlight{color:var(--primary-green)}
        .hero p{font-size:20px;color:var(--text-gray);margin-bottom:28px;max-width:640px}
        .btn-primary{display:inline-flex;align-items:center;justify-content:center;text-align:center;line-height:1.2;background:var(--primary-green);color:#fff;padding:18px 40px;border-radius:12px;text-decoration:none;font-weight:600;font-size:18px;transition:all .3s ease;border:none;cursor:pointer;contain:layout style paint}
        .btn-primary:hover{background:var(--dark-green);transform:translateY(-2px);box-shadow:0 10px 25px rgba(15,164,108,.3)}
        @media (max-width:900px){.hero-layout{grid-template-columns:1fr;gap:30px}.hero-image{justify-self:center;max-width:340px}}

        /* Reduce CLS: Reserve space for images */
        img{max-width:100%;height:auto}
        .problem-icon img{width:140px;height:140px;aspect-ratio:1;object-fit:contain}

        /* GPU acceleration for animations */
        .question.active,.results.active{will-change:opacity,transform}

        /* Deferred styles */
        body {
            font-family: 'Source Sans 3', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            color: var(--text-dark);
            background: var(--bg-light);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        h1, h2, h3 {
            font-family: 'Space Grotesk', sans-serif;
            letter-spacing: -0.02em;
        }

        .eyebrow {
            text-transform: uppercase;
            letter-spacing: 0.18em;
            font-size: 12px;
            font-weight: 700;
            color: var(--text-gray);
            margin-bottom: 14px;
        }

        .section-head {
            text-align: center;
            max-width: 720px;
            margin: 0 auto 50px;
        }

        .section-subtitle {
            color: var(--text-gray);
            font-size: 18px;
        }

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

        /* Hero Section */
        .hero {
            background: radial-gradient(1200px 400px at 10% 0%, #eafff3 0%, transparent 60%),
                linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
            padding: 120px 0 0;
        }

        .hero-layout {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
            align-items: center;
            gap: 56px;
        }

        .hero-image {
            justify-self: end;
            width: 100%;
            max-width: 520px;
        }

        .hero-image img {
            display: block;
            width: 100%;
            height: auto;
            aspect-ratio: auto;
            object-fit: contain;
            border-radius: 0;
            box-shadow: none;
        }

        .hero h1 {
            font-size: clamp(32px, 5vw, 56px);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 20px;
            color: var(--text-dark);
        }

        .hero .highlight {
            color: var(--primary-green);
        }

        .hero p {
            font-size: 20px;
            color: var(--text-gray);
            margin-bottom: 28px;
            max-width: 640px;
        }

        .hero-note {
            color: var(--text-gray);
            font-size: 14px;
            margin-bottom: 22px;
        }

        .hero-actions {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 24px;
        }

        .btn-ghost {
            display: inline-flex;
            background: transparent;
            color: var(--text-dark);
            padding: 18px 32px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            border: 2px solid var(--border-dark);
            transition: all 0.2s ease;
            align-items: center;
            justify-content: center;
            text-align: center;
            line-height: 1.2;
        }

        .btn-ghost:hover {
            border-color: var(--primary-green);
            color: var(--primary-green);
            transform: translateY(-2px);
        }

        .hero-badges {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 14px;
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 999px;
            font-size: 14px;
            font-weight: 600;
            color: #111827;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
        }

        .badge-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--primary-green);
        }

        .trust-strip {
            background: #ffffff;
            border-top: 1px solid #eef1f0;
            border-bottom: 1px solid #eef1f0;
            padding: 24px 0;
        }

        .partner-note {
            background: #ffffff;
            border-top: 1px solid #eef1f0;
            border-bottom: 1px solid #eef1f0;
            padding: 10px 0;
        }

        .partner-note p {
            margin: 0;
            text-align: center;
            font-size: 14px;
            color: var(--text-gray);
        }

        .partner-note a {
            color: var(--primary-green);
            font-weight: 700;
            text-decoration: none;
        }

        .partner-note a:hover {
            text-decoration: underline;
        }

        .trust-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 20px;
            text-align: center;
        }

        .trust-item {
            padding: 12px 16px;
            border-radius: 12px;
            background: #f9fafb;
            border: 1px solid #e5e7eb;
        }

        .trust-label {
            display: block;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--text-gray);
            margin-bottom: 6px;
        }

        .trust-value {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-dark);
        }


        .btn-primary {
            display: inline-flex;
            background: var(--primary-green);
            color: white;
            padding: 18px 40px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            will-change: transform;
            align-items: center;
            justify-content: center;
            text-align: center;
            line-height: 1.2;
        }

        .btn-primary:hover {
            background: var(--dark-green);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(15, 164, 108, 0.3);
        }

        /* Problem Section */
        .problem {
            padding: 100px 0;
            background: var(--bg-light);
            content-visibility: auto;
            contain-intrinsic-size: 900px;
        }

        .problem h2 {
            font-size: clamp(28px, 4vw, 40px);
            font-weight: 700;
            text-align: center;
            margin-bottom: 60px;
        }

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

        .problem-card {
            text-align: center;
            padding: 26px 20px;
            background: #ffffff;
            border-radius: 18px;
            border: 1px solid #e5e7eb;
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
            max-width: 360px;
            margin: 0 auto;
            min-height: 330px;
            display: flex;
            flex-direction: column;
        }

        .inline-cta {
            margin-top: 24px;
            text-align: center;
            background: #f9fafb;
            border: 2px solid #e5e7eb;
            padding: 28px;
            border-radius: 16px;
        }

        .inline-cta h3 {
            font-size: 22px;
            margin-bottom: 10px;
        }

        .inline-cta p {
            color: var(--text-gray);
            margin-bottom: 18px;
        }

        .problem-icon {
            margin-bottom: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .problem-icon img {
            width: 140px;
            height: 140px;
            object-fit: contain;
        }

        .problem-card h3 {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .problem-card p {
            color: var(--text-gray);
            font-size: 16px;
        }

        /* Process Section */
        .process {
            padding: 100px 0;
            background: var(--bg-gray);
            content-visibility: auto;
            contain-intrinsic-size: 850px;
        }

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

        .step-card {
            background: #ffffff;
            border-radius: 18px;
            padding: 28px;
            border: 1px solid #e5e7eb;
            box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
            text-align: left;
        }

        .step-index {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.14em;
            color: var(--primary-green);
            font-weight: 700;
            margin-bottom: 12px;
        }

        /* Quiz Section */
        .quiz-section {
            padding: 100px 0;
            background: var(--bg-gray);
            content-visibility: auto;
            contain-intrinsic-size: 1100px;
        }

        .quiz-container {
            max-width: 700px;
            margin: 0 auto;
            background: white;
            padding: 60px;
            border-radius: 20px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }

        .quiz-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .quiz-header h2 {
            font-size: clamp(26px, 4vw, 36px);
            font-weight: 700;
            margin-bottom: 16px;
        }

        .quiz-header p {
            color: var(--text-gray);
            font-size: 18px;
        }

        .quiz-note {
            text-align: center;
            font-size: 14px;
            color: var(--text-gray);
            margin: -20px 0 30px;
        }

        .progress-bar {
            height: 8px;
            background: #e5e7eb;
            border-radius: 10px;
            margin-bottom: 40px;
            overflow: hidden;
        }

        .progress-meta {
            display: flex;
            justify-content: space-between;
            font-size: 14px;
            color: var(--text-gray);
            margin: 12px 0 18px;
        }

        .progress-fill {
            height: 100%;
            background: var(--primary-green);
            transition: width 0.3s ease;
            border-radius: 10px;
        }

        .question {
            display: none;
        }

        .question.active {
            display: block;
            animation: fadeIn 0.4s ease;
            will-change: opacity, transform;
        }

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

        .question h3 {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 30px;
        }

        .options {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .option {
            padding: 20px 24px;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.2s ease;
            background: white;
            font-size: 16px;
            font-weight: 500;
            text-align: left;
        }

        .option:hover {
            border-color: var(--primary-green);
            background: var(--light-green);
        }

        .option.selected {
            border-color: var(--primary-green);
            background: var(--light-green);
        }

        .slider-container {
            margin: 30px 0;
        }

        .slider {
            width: 100%;
            height: 8px;
            border-radius: 5px;
            background: #e5e7eb;
            outline: none;
            -webkit-appearance: none;
        }

        .slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: var(--primary-green);
            cursor: pointer;
        }

        .slider::-moz-range-thumb {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: var(--primary-green);
            cursor: pointer;
            border: none;
        }

        .slider-value {
            text-align: center;
            font-size: 32px;
            font-weight: 700;
            color: var(--primary-green);
            margin: 20px 0;
        }

        .quiz-nav {
            display: flex;
            gap: 16px;
            margin-top: 40px;
        }

        .btn-secondary {
            flex: 1;
            padding: 16px;
            border: 2px solid #e5e7eb;
            background: white;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .btn-secondary:hover {
            border-color: var(--primary-green);
            color: var(--primary-green);
        }

        .btn-next {
            flex: 2;
            background: var(--primary-green);
            color: white;
            border: none;
        }

        .btn-next:hover {
            background: var(--dark-green);
        }

        .btn-next:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .contact-inputs {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .input-field {
            padding: 16px;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            font-size: 16px;
            font-family: 'Source Sans 3', sans-serif;
            transition: border-color 0.2s ease;
        }

        .input-field:focus {
            outline: none;
            border-color: var(--primary-green);
        }

        /* Results Section */
        .results {
            display: none;
            text-align: center;
        }

        .results.active {
            display: block;
            animation: fadeIn 0.4s ease;
        }

        .results h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .savings-box {
            background: linear-gradient(135deg, var(--light-green) 0%, #ffffff 100%);
            padding: 40px;
            border-radius: 16px;
            margin: 40px 0;
            border: 2px solid var(--primary-green);
        }

        .savings-amount {
            font-size: 56px;
            font-weight: 800;
            color: var(--primary-green);
            margin-bottom: 16px;
        }

        .savings-detail {
            font-size: 18px;
            color: var(--text-gray);
            margin-bottom: 8px;
        }

        .testimonial-box {
            background: var(--bg-gray);
            padding: 30px;
            border-radius: 12px;
            margin: 30px 0;
            font-style: italic;
            color: var(--text-gray);
        }

        /* Testimonials Section */
        .testimonials {
            padding: 100px 0;
            background: var(--bg-light);
            content-visibility: auto;
            contain-intrinsic-size: 900px;
        }

        .testimonials h2 {
            font-size: clamp(28px, 4vw, 40px);
            font-weight: 700;
            text-align: center;
            margin-bottom: 60px;
        }

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

        .testimonial-card {
            background: var(--bg-gray);
            padding: 40px;
            border-radius: 16px;
        }

        .testimonial-meta {
            margin-top: 6px;
            font-size: 13px;
            color: var(--text-gray);
        }

        .testimonial-text {
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 24px;
            color: var(--text-dark);
        }

        .testimonial-author {
            font-weight: 600;
            color: var(--text-dark);
        }

        .testimonial-role {
            color: var(--text-gray);
            font-size: 14px;
        }

        /* Offer Section */
        .offer {
            padding: 100px 0;
            background: var(--bg-gray);
            content-visibility: auto;
            contain-intrinsic-size: 900px;
        }

        .offer h2 {
            font-size: clamp(28px, 4vw, 40px);
            font-weight: 700;
            text-align: center;
            margin-bottom: 24px;
        }

        .offer-subtitle {
            text-align: center;
            font-size: 20px;
            color: var(--text-gray);
            margin-bottom: 60px;
        }

        .offer-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
            gap: 30px;
            align-items: start;
        }

        .offer-card {
            background: white;
            padding: 50px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 3px solid var(--primary-green);
        }

        .offer-aside {
            background: #ffffff;
            border-radius: 20px;
            padding: 40px;
            border: 1px solid #e5e7eb;
            box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
        }

        .offer-aside h3 {
            font-size: 24px;
            margin-bottom: 12px;
        }

        .offer-metrics {
            display: grid;
            gap: 18px;
            margin: 22px 0;
        }

        .offer-metric-value {
            display: block;
            font-size: 26px;
            font-weight: 800;
            color: var(--text-dark);
        }

        .offer-metric-label {
            font-size: 14px;
            color: var(--text-gray);
        }

        .offer-note {
            background: #f9fafb;
            border: 1px dashed #d1d5db;
            padding: 16px;
            border-radius: 12px;
            font-size: 14px;
        }

        .offer-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 30px;
            text-align: center;
        }

        .offer-features {
            list-style: none;
            margin-bottom: 40px;
        }

        .offer-features li {
            padding: 16px 0;
            border-bottom: 1px solid #e5e7eb;
            font-size: 18px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .offer-features li:last-child {
            border-bottom: none;
        }

        .checkmark {
            color: var(--primary-green);
            font-weight: 700;
            font-size: 20px;
        }

        .offer-cta {
            text-align: center;
        }

        .personal-strip {
            padding: 34px 0 24px;
            background: var(--bg-light);
        }

        .personal-card {
            max-width: 820px;
            margin: 0 auto;
            padding: 18px 24px;
            border: 1px solid #e5e7eb;
            border-radius: 16px;
            background: #ffffff;
            text-align: center;
        }

        .personal-card h3 {
            font-size: clamp(24px, 2.5vw, 32px);
            font-weight: 700;
            margin-bottom: 8px;
        }

        .personal-card p {
            margin: 0;
            color: var(--text-gray);
            font-size: 18px;
        }

        /* Benefits Section */
        .benefits {
            padding: 100px 0;
            background: var(--bg-light);
            content-visibility: auto;
            contain-intrinsic-size: 700px;
        }

        .benefits h2 {
            font-size: clamp(28px, 4vw, 40px);
            font-weight: 700;
            text-align: center;
            margin-bottom: 60px;
        }

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


        .benefit-item {
            text-align: center;
        }

        .benefit-number {
            font-size: 56px;
            font-weight: 800;
            color: var(--primary-green);
            margin-bottom: 16px;
        }

        .benefit-item h3 {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .benefit-item p {
            color: var(--text-gray);
            font-size: 16px;
        }

        /* CTA Section */
        .cta {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
            text-align: center;
            color: white;
            content-visibility: auto;
            contain-intrinsic-size: 600px;
        }

        .cta h2 {
            font-size: clamp(28px, 4vw, 40px);
            font-weight: 700;
            margin-bottom: 24px;
        }

        .cta p {
            font-size: 20px;
            margin-bottom: 40px;
            opacity: 0.95;
        }

        .btn-white {
            background: white;
            color: var(--primary-green);
            padding: 18px 40px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            display: inline-flex;
            transition: all 0.3s ease;
            align-items: center;
            justify-content: center;
            text-align: center;
            line-height: 1.2;
        }

        .btn-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        /* Footer */
        .footer {
            padding: 60px 0;
            background: var(--text-dark);
            color: white;
            text-align: center;
            content-visibility: auto;
            contain-intrinsic-size: 500px;
        }

        .sticky-cta {
            position: fixed;
            bottom: 16px;
            left: 16px;
            right: 16px;
            max-width: 560px;
            margin: 0 auto;
            background: #111827;
            color: white;
            border-radius: 14px;
            padding: 12px 14px;
            display: none;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            z-index: 999;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
        }

        .sticky-cta p {
            font-size: 14px;
            margin: 0;
        }

        .sticky-cta a {
            background: var(--primary-green);
            color: white;
            text-decoration: none;
            padding: 10px 14px;
            border-radius: 10px;
            font-weight: 600;
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

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

        .footer h3 {
            font-size: 24px;
            margin-bottom: 20px;
        }

        .footer p {
            opacity: 0.8;
            margin-bottom: 12px;
        }

        .partner-note-footer {
            margin: 24px 0;
            padding: 16px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.16);
            border-bottom: 1px solid rgba(255, 255, 255, 0.16);
        }

        .partner-note-footer p {
            margin: 0;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.85);
        }

        .partner-note-footer a {
            color: #7ff0c3;
            font-weight: 700;
            text-decoration: none;
        }

        .partner-note-footer a:hover {
            text-decoration: underline;
        }

        .footer-links {
            margin-top: 0;
            padding-top: 0;
            border-top: none;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            margin: 0 16px;
            opacity: 0.8;
            transition: opacity 0.2s ease;
        }

        .footer-links a:hover {
            opacity: 1;
        }

        /* Tablet & Mobile Optimization */
        @media (max-width: 1024px) {
            .container {
                padding: 0 20px;
            }

            .eyebrow {
                font-size: 11px;
                letter-spacing: 0.14em;
            }

            .section-subtitle {
                font-size: 16px;
            }

            .hero {
                padding: 96px 0 64px;
            }

            .hero-layout {
                grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
                gap: 36px;
            }

            .hero h1 {
                font-size: clamp(30px, 6vw, 48px);
            }

            .hero p {
                font-size: 18px;
            }

            .btn-primary,
            .btn-ghost,
            .btn-white {
                padding: 14px 28px;
                font-size: 16px;
            }

            .badge {
                font-size: 13px;
                padding: 8px 12px;
            }

            .problem,
            .process,
            .quiz-section,
            .testimonials,
            .offer,
            .benefits,
            .cta {
                padding: 80px 0;
            }

            .problem-grid {
                gap: 28px;
                margin-bottom: 40px;
            }

            .problem-card {
                min-height: 0;
                padding: 22px 18px;
            }

            .problem-card h3 {
                font-size: 20px;
            }

            .problem-card p {
                font-size: 15px;
            }

            .problem-icon img {
                width: 120px;
                height: 120px;
            }

            .step-card {
                padding: 24px;
            }

            .step-card h3 {
                font-size: 20px;
            }

            .step-card p {
                font-size: 15px;
            }

            .quiz-container {
                padding: 40px;
            }

            .quiz-header h2 {
                font-size: 28px;
            }

            .quiz-header p {
                font-size: 16px;
            }

            .question h3 {
                font-size: 20px;
            }

            .option {
                padding: 16px 18px;
                font-size: 15px;
            }

            .testimonial-card {
                padding: 26px;
            }

            .testimonial-text {
                font-size: 15px;
            }

            .offer-card {
                padding: 36px;
            }

            .offer-aside {
                padding: 30px;
            }

            .offer-title {
                font-size: 24px;
            }

            .offer-subtitle {
                font-size: 18px;
            }

            .offer-features li {
                font-size: 16px;
            }

            .benefit-number {
                font-size: 44px;
            }

            .benefit-item h3 {
                font-size: 20px;
            }

            .benefit-item p {
                font-size: 15px;
            }

            .cta p {
                font-size: 18px;
            }

            .sticky-cta {
                max-width: 520px;
                padding: 10px 12px;
            }

            .sticky-cta p {
                font-size: 13px;
            }

            .sticky-cta a {
                padding: 8px 12px;
                font-size: 14px;
            }
        }

        @media (max-width: 768px) {
            .hero {
                padding: 80px 0 60px;
            }

            .hero-layout {
                grid-template-columns: 1fr;
                gap: 28px;
            }

            .hero-image {
                justify-self: center;
                max-width: 300px;
            }

            .hero h1 {
                font-size: clamp(26px, 7vw, 36px);
            }

            .hero p {
                font-size: 16px;
            }

            .btn-primary {
                padding: 14px 28px;
                font-size: 15px;
                width: 100%;
            }

            .hero-actions {
                flex-direction: column;
                align-items: stretch;
            }

            .btn-ghost {
                width: 100%;
                text-align: center;
                padding: 12px 20px;
                font-size: 15px;
            }

            .hero-badges {
                gap: 10px;
            }

            .badge {
                width: 100%;
                justify-content: center;
            }

            .problem-icon img {
                width: 100px;
                height: 100px;
            }

            .trust-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .process-grid {
                grid-template-columns: 1fr;
            }

            .offer-grid {
                grid-template-columns: 1fr;
            }

            .sticky-cta {
                display: flex;
            }

            .problem h2,
            .testimonials h2,
            .offer h2,
            .benefits h2,
            .cta h2 {
                font-size: clamp(22px, 5vw, 28px);
                line-height: 1.3;
            }

            .problem-card h3 {
                font-size: 17px;
                line-height: 1.4;
            }

            .problem-card p {
                font-size: 14px;
            }

            .credibility h2 {
                font-size: 26px;
            }

            .credibility p {
                font-size: 15px;
            }

            .quiz-container {
                padding: 32px 20px;
            }

            .quiz-header h2 {
                font-size: 22px;
            }

            .question h3 {
                font-size: 17px;
            }

            .quiz-header p {
                font-size: 14px;
            }

            .offer-card {
                padding: 28px 18px;
            }

            .offer-aside {
                padding: 22px 18px;
            }

            .testimonial-card {
                padding: 22px;
            }

            .testimonial-text {
                font-size: 15px;
            }

            .offer-subtitle {
                font-size: 16px;
            }

            .savings-amount {
                font-size: 32px;
            }

            .results h2 {
                font-size: 22px;
            }

            .faq h2 {
                font-size: 24px !important;
            }

            .faq summary {
                font-size: 15px !important;
            }

            .quiz-nav {
                flex-direction: column;
            }

            .btn-next {
                order: -1;
            }

            .benefit-number {
                font-size: 40px;
            }

            .benefit-item h3 {
                font-size: 18px;
            }

            .benefit-item p {
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }

            .hero {
                padding: 70px 0 50px;
            }

            .hero h1 {
                font-size: clamp(22px, 6.5vw, 30px);
                line-height: 1.2;
            }

            .hero p {
                font-size: 14px;
                line-height: 1.5;
            }

            .badge {
                font-size: 12px;
                padding: 8px 10px;
            }

            .problem-icon img {
                width: 80px;
                height: 80px;
            }

            .trust-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .trust-item {
                padding: 10px 12px;
            }

            .trust-label {
                font-size: 10px;
            }

            .trust-value {
                font-size: 14px;
            }

            .problem-grid,
            .benefits-grid,
            .testimonial-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .problem h2,
            .testimonials h2,
            .offer h2,
            .benefits h2,
            .cta h2 {
                font-size: clamp(20px, 5.5vw, 24px);
                line-height: 1.3;
            }

            .problem-card {
                padding: 20px 16px;
                min-height: auto;
            }

            .problem-card h3 {
                font-size: 15px;
                line-height: 1.4;
            }

            .problem-card p {
                font-size: 13px;
            }

            .inline-cta {
                padding: 20px 16px;
            }

            .inline-cta h3 {
                font-size: 16px;
            }

            .inline-cta p {
                font-size: 13px;
            }

            .step-card {
                padding: 18px;
            }

            .step-card h3 {
                font-size: 16px;
            }

            .step-card p {
                font-size: 13px;
            }

            .testimonial-card {
                padding: 18px;
            }

            .testimonial-text {
                font-size: 14px;
                line-height: 1.6;
            }

            .offer-card {
                padding: 24px 16px;
            }

            .offer-title {
                font-size: 20px;
            }

            .offer-subtitle {
                font-size: 15px;
            }

            .offer-features li {
                font-size: 14px;
                padding: 12px 0;
            }

            .benefit-number {
                font-size: 36px;
            }

            .benefit-item h3 {
                font-size: 16px;
            }

            .benefit-item p {
                font-size: 13px;
            }

            .faq h2 {
                font-size: 20px !important;
            }

            .faq summary {
                font-size: 14px !important;
            }

            .faq p {
                font-size: 13px;
            }

            .quiz-container {
                padding: 24px 16px;
            }

            .quiz-header h2 {
                font-size: 20px;
            }

            .quiz-header p {
                font-size: 13px;
            }

            .question h3 {
                font-size: 16px;
            }

            .option {
                padding: 14px 16px;
                font-size: 14px;
            }

            .cta {
                padding: 60px 0;
            }

            .cta p {
                font-size: 15px;
            }

            .sticky-cta {
                flex-direction: column;
                align-items: stretch;
                text-align: center;
                padding: 10px 12px;
                gap: 10px;
            }

            .sticky-cta p {
                font-size: 12px;
                line-height: 1.3;
            }

            .sticky-cta a {
                width: 100%;
                text-align: center;
                padding: 10px 12px;
                font-size: 13px;
                display: inline-flex;
            }
        }
