        /* ============================================
           PAIN POINT SECTION — "IS YOUR WEBSITE…"
           ============================================ */
        .lp-section {
            padding: 5rem 1.5rem;
            background: transparent;
        }

        .lp-section-alt {
            background: rgba(0, 0, 0, 0.12);
        }

        [data-theme="light"] .lp-section-alt {
            background: rgba(255, 255, 255, 0.25);
        }

        @media (prefers-color-scheme: light) {
            [data-theme="auto"] .lp-section-alt {
                background: rgba(255, 255, 255, 0.25);
            }
        }

        .lp-container {
            max-width: 1100px;
            margin: 0 auto;
            text-align: center;
        }

        .lp-section-badge {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--brand-primary);
            margin: 0 auto 1rem;
            justify-content: center;
            width: fit-content;
        }

        .lp-section-title {
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 1rem;
            letter-spacing: -0.01em;
        }

        .lp-section-sub {
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 650px;
            line-height: 1.7;
            margin: 0 auto 2.5rem;
        }

        /* Pain point cards */
        .lp-pain-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.25rem;
        }

        .lp-pain-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border-color);
            border-radius: 1rem;
            padding: 1.75rem;
            transition: all 0.3s ease;
            text-align: left;
        }

        .lp-pain-card:hover {
            border-color: rgba(207, 91, 46, 0.3);
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
        }

        .lp-pain-icon {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .lp-pain-icon img {
            width: 100%;
            height: auto;
            object-fit: contain;
            border-radius: 1rem;
        }

        .lp-pain-title {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .lp-pain-desc {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* ============================================
           WHAT YOU GET SECTION — VALUE STACK
           ============================================ */
        .lp-value-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
        }

        .lp-value-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border-color);
            border-radius: 1rem;
            padding: 2rem;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            text-align: left;
        }

        .lp-value-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .lp-value-card:hover::before {
            opacity: 1;
        }

        .lp-value-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
        }

        .lp-value-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: rgba(207, 91, 46, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.25rem;
        }

        .lp-value-icon svg {
            width: 24px;
            height: 24px;
            color: var(--brand-primary);
        }

        .lp-value-title {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .lp-value-desc {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* ============================================
           REAL-TIME QUOTE CTA — THE BIG DIFFERENTIATOR
           ============================================ */
        .lp-quote-cta {
            padding: 2rem 1.5rem 1rem;
            background: linear-gradient(135deg, rgba(26, 15, 32, 0.5) 0%, rgba(10, 10, 15, 0.35) 50%, rgba(15, 26, 37, 0.5) 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .lp-quote-cta-inner {
            max-width: 750px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .lp-quote-icon {
            width: 56px;
            height: 56px;
            margin: 0 auto 0.75rem;
            border-radius: 16px;
            background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 40px rgba(207, 91, 46, 0.3);
        }

        .lp-quote-icon svg {
            width: 28px;
            height: 28px;
            color: white;
        }

        .lp-quote-title {
            font-size: clamp(1.8rem, 4vw, 2.6rem);
            font-weight: 800;
            margin-bottom: 0.5rem;
        }

        .lp-quote-desc {
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 550px;
            margin: 0 auto 1rem;
            line-height: 1.7;
        }

        .lp-quote-features {
            display: grid;
            grid-template-columns: repeat(4, auto);
            justify-content: center;
            gap: 0.75rem;
            margin-bottom: 1rem;
        }

        @media (max-width: 600px) {
            .lp-quote-features {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .lp-quote-feature {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-color);
            border-radius: 100px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-secondary);
            white-space: nowrap;
        }

        .lp-quote-feature .check {
            color: var(--accent-green);
            font-weight: 800;
        }

        .lp-quote-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(120px);
            opacity: 0.2;
            pointer-events: none;
        }

        .lp-quote-orb-1 {
            width: 400px;
            height: 400px;
            background: var(--brand-primary);
            top: -100px;
            left: -100px;
        }

        .lp-quote-orb-2 {
            width: 300px;
            height: 300px;
            background: var(--accent-cyan);
            bottom: -80px;
            right: -80px;
        }

        /* ============================================
           PROCESS SECTION — HOW IT WORKS
           ============================================ */
        .lp-process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            position: relative;
        }

        @media (max-width: 900px) {
            .lp-process-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            .lp-process-grid {
                grid-template-columns: 1fr;
            }
        }

        .lp-process-step {
            text-align: center;
            position: relative;
            padding: 1.75rem 1.25rem 2rem;
        }

        .lp-process-num {
            width: 56px;
            height: 56px;
            margin: 0 auto 1rem;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            font-weight: 800;
            color: white;
            box-shadow: 0 6px 20px rgba(207, 91, 46, 0.3);
        }

        .lp-process-title {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.4rem;
        }

        .lp-process-desc {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* ============================================
           TESTIMONIAL / SOCIAL PROOF
           ============================================ */
        .lp-testimonial {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border-color);
            border-radius: 1.5rem;
            padding: 2.5rem;
            max-width: 700px;
            margin: 3rem auto 0;
            text-align: center;
            position: relative;
        }

        .lp-testimonial::before {
            content: '"';
            position: absolute;
            top: -10px;
            left: 2rem;
            font-size: 5rem;
            font-weight: 900;
            line-height: 1;
            background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            opacity: 0.5;
        }

        .lp-testimonial-text {
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--text-primary);
            font-style: italic;
            margin-bottom: 1.25rem;
        }

        .lp-testimonial-author {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--brand-primary);
        }

        .lp-testimonial-role {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        .lp-stars {
            color: #facc15;
            font-size: 1.2rem;
            margin-bottom: 0.75rem;
            letter-spacing: 2px;
        }

        /* ============================================
           FINAL CTA — CLOSE THE DEAL
           ============================================ */
        .lp-final-cta {
            padding: 5rem 1.5rem;
            text-align: center;
            background: linear-gradient(135deg, rgba(10, 10, 15, 0.4) 0%, rgba(26, 15, 32, 0.5) 100%);
            position: relative;
            overflow: hidden;
        }

        .lp-final-cta-inner {
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .lp-final-title {
            font-size: clamp(1.8rem, 4vw, 2.6rem);
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .lp-final-sub {
            font-size: 1.1rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        .lp-final-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .lp-final-note {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        /* ============================================
           STICKY MOBILE CTA BAR
           ============================================ */
        .lp-sticky-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 9998;
            background: rgba(10, 10, 15, 0.98);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-top: 1px solid var(--border-color);
            padding: 0.75rem 1rem;
            /* Balanced padding, nudge handled by JS */
            display: none;
        }

        .lp-sticky-inner {
            max-width: 500px;
            margin: 0 auto;
            display: flex;
            gap: 0.5rem;
        }

        .lp-sticky-inner .btn {
            flex: 1;
            padding: 0.6rem 0.5rem;
            font-size: 0.85rem;
            justify-content: center;
            min-width: 0;
        }

        .btn-call {
            background: linear-gradient(135deg, var(--accent-green) 0%, #16a34a 100%);
            color: white;
            box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
        }

        .btn-call:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4);
        }

        /* ============================================
           CONDENSED FOOTER
           ============================================ */
        .lp-footer {
            padding: 2rem 1.5rem;
            background: rgba(10, 10, 15, 0.6);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-top: 1px solid var(--glass-border);
            text-align: center;
        }

        [data-theme="light"] .lp-footer {
            background: rgba(255, 255, 255, 0.5);
        }

        @media (prefers-color-scheme: light) {
            [data-theme="auto"] .lp-footer {
                background: rgba(255, 255, 255, 0.5);
            }
        }

        .lp-footer-logo img {
            height: 40px;
            margin: 0 auto 0.75rem;
        }

        .lp-footer-info {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-bottom: 0.5rem;
        }

        .lp-footer-info a {
            color: var(--text-secondary);
            transition: color 0.2s;
        }

        .lp-footer-info a:hover {
            color: var(--brand-primary);
        }

        .lp-footer-copy {
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        /* ============================================
           ANIMATIONS (INTERSECTION OBSERVER)
           ============================================ */
        .fade-up {
            opacity: 0;
            transform: translateY(12px);
            transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .stagger-1 {
            transition-delay: 0.1s;
        }

        .stagger-2 {
            transition-delay: 0.2s;
        }

        .stagger-3 {
            transition-delay: 0.3s;
        }

        .stagger-4 {
            transition-delay: 0.4s;
        }

        /* ============================================
           RESPONSIVE
           ============================================ */
        @media (max-width: 768px) {
            .lp-trust-inner {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }

            .lp-sticky-bar {
                display: block;
            }

            /* Push chat widget above the sticky CTA bar */
            #lc_text-widget {
                bottom: 80px !important;
            }

            .lp-hero {
                min-height: auto;
                padding: 5.5rem 1rem 1rem;
            }

            .lp-section {
                padding: 3.5rem 1.25rem;
            }

            .lp-quote-cta {
                padding: 3.5rem 1.25rem;
            }

            .lp-phone-label {
                display: none;
            }

            .lp-final-cta,
            .lp-footer {
                padding-bottom: 5rem;
            }

            .lp-testimonial {
                padding: 1.75rem;
            }

            .lp-testimonial::before {
                font-size: 3.5rem;
                left: 1rem;
            }
        }

        @media (min-width: 769px) {
            .lp-sticky-bar {
                display: none !important;
            }
        }

        @media (max-width: 480px) {
            .lp-hero-actions {
                flex-direction: column;
                align-items: stretch;
            }

            .lp-hero-actions .btn {
                width: 100%;
            }

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

            .lp-final-actions .btn {
                width: 100%;
            }
        }

        /* ============================================
           INDUSTRY SHOWCASE — TABBED WITH SCREENSHOTS
           ============================================ */
        .ind-showcase {
            margin-top: 3rem;
        }

        .ind-showcase-intro {
            text-align: center;
            margin-bottom: 0.75rem;
        }

        .ind-showcase-intro h3 {
            font-size: clamp(1.4rem, 3vw, 2rem);
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .ind-showcase-intro p {
            color: var(--text-secondary);
            font-size: 1rem;
            max-width: 560px;
            margin: 0 auto;
        }

        /* Tabs bar */
        .ind-tabs {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }

        .ind-tab {
            padding: 0.55rem 1.2rem;
            border-radius: 100px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-secondary);
            background: var(--glass-bg);
            backdrop-filter: blur(14px) saturate(140%);
            -webkit-backdrop-filter: blur(14px) saturate(140%);
            border: 1px solid var(--glass-border);
            cursor: pointer;
            transition: all 0.3s ease;
            user-select: none;
        }

        .ind-tab:hover {
            background: rgba(255, 255, 255, 0.08);
            color: var(--text-primary);
        }

        .ind-tab.active {
            background: linear-gradient(135deg, var(--accent), #e8622a);
            color: #fff;
            border-color: transparent;
            box-shadow: 0 4px 20px rgba(207, 91, 46, 0.35);
        }

        [data-theme="light"] .ind-tab {
            background: rgba(0, 0, 0, 0.04);
            border-color: rgba(0, 0, 0, 0.1);
        }

        [data-theme="light"] .ind-tab:hover {
            background: rgba(0, 0, 0, 0.08);
        }

        /* Panel wrapper */
        .ind-panels {
            position: relative;
            min-height: 400px;
        }

        .ind-panel {
            display: none;
            animation: indFadeIn 0.5s ease;
        }

        .ind-panel.active {
            display: block;
        }

        @keyframes indFadeIn {
            from {
                opacity: 0;
                transform: translateY(12px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Browser frame around screenshot */
        .ind-browser-frame {
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(30px) saturate(160%);
            -webkit-backdrop-filter: blur(30px) saturate(160%);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
            max-width: 820px;
            margin: 0 auto;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        .ind-browser-frame:hover {
            transform: translateY(-4px) scale(1.005);
            box-shadow: 0 28px 100px rgba(0, 0, 0, 0.5), 0 0 60px rgba(207, 91, 46, 0.08);
        }

        [data-theme="light"] .ind-browser-frame {
            background: rgba(255, 255, 255, 0.6);
            border-color: rgba(255, 255, 255, 0.7);
            box-shadow: 0 20px 80px rgba(0, 0, 0, 0.12);
        }

        /* Screenshot container — browser chrome baked into image */
        .ind-screenshot {
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 20px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
            max-width: 820px;
            margin: 0 auto;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        .ind-screenshot:hover {
            transform: translateY(-4px) scale(1.005);
            box-shadow: 0 28px 100px rgba(0, 0, 0, 0.5), 0 0 60px rgba(207, 91, 46, 0.08);
        }

        [data-theme="light"] .ind-screenshot {
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.06);
        }

        [data-theme="light"] .ind-screenshot:hover {
            box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.08);
        }

        .ind-screenshot img {
            width: 100%;
            display: block;
            height: auto;
        }

        .ind-browser-topbar {
            background: rgba(30, 30, 38, 0.95);
            padding: 0.55rem 0.85rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        [data-theme="light"] .ind-browser-topbar {
            background: #f0f0f0;
        }

        .ind-browser-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }

        .ind-browser-dot:nth-child(1) {
            background: #ff5f57;
        }

        .ind-browser-dot:nth-child(2) {
            background: #ffbd2e;
        }

        .ind-browser-dot:nth-child(3) {
            background: #28c840;
        }

        .ind-browser-url {
            flex: 1;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 6px;
            padding: 0.3rem 0.7rem;
            font-size: 0.7rem;
            color: var(--text-muted);
            margin-left: 0.5rem;
            font-family: 'SF Mono', 'Fira Code', monospace;
        }

        [data-theme="light"] .ind-browser-url {
            background: #fff;
            color: #999;
        }

        .ind-browser-frame img {
            width: 100%;
            display: block;
        }

        /* Hide browser chrome on AFTER side — show clean website screenshot */
        .ind-side:last-child .ind-browser-topbar {
            display: none;
        }

        .ind-side:last-child .ind-browser-frame img {
            border-radius: 16px 16px 0 0;
        }

        /* Result caption below screenshot */
        .ind-result {
            text-align: center;
            margin-top: 1.25rem;
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-secondary);
        }

        .ind-result strong {
            color: var(--text-primary);
        }

        /* Before / After comparison grid */
        .ind-comparison {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            max-width: 1100px;
            margin: 0 auto;
            align-items: start;
        }

        .ind-side {
            text-align: center;
        }

        .ind-side-label {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            padding: 0.3rem 1rem;
            border-radius: 100px;
            margin-bottom: 0.75rem;
        }

        .ind-side-label--before {
            background: rgba(239, 68, 68, 0.12);
            color: #f87171;
            border: 1px solid rgba(239, 68, 68, 0.25);
        }

        .ind-side-label--after {
            background: rgba(34, 197, 94, 0.12);
            color: #4ade80;
            border: 1px solid rgba(34, 197, 94, 0.25);
        }

        /* Progress bar for auto-rotation */
        .ind-progress {
            width: 100%;
            max-width: 400px;
            height: 3px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 3px;
            margin: 1.5rem auto 0;
            overflow: hidden;
        }

        .ind-progress-bar {
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, var(--accent), #e8622a);
            border-radius: 3px;
            transition: width 0.1s linear;
        }

        [data-theme="light"] .ind-progress {
            background: rgba(0, 0, 0, 0.06);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .ind-tabs {
                gap: 0.35rem;
            }

            .ind-tab {
                padding: 0.4rem 0.85rem;
                font-size: 0.75rem;
            }

            .ind-browser-frame {
                border-radius: 12px;
            }

            .ind-comparison {
                grid-template-columns: 1fr;
                gap: 1.25rem;
            }
        }

        @media (max-width: 480px) {
            .ind-tabs {
                justify-content: flex-start;
                overflow-x: auto;
                flex-wrap: nowrap;
                -webkit-overflow-scrolling: touch;
                padding-bottom: 0.5rem;
            }

            .ind-tab {
                white-space: nowrap;
                flex-shrink: 0;
            }
        }

        /* ============================================
           GUARANTEE BADGE
           ============================================ */
        .lp-guarantee {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            margin-top: 1.5rem;
            padding: 0.75rem 1.25rem;
            background: rgba(34, 197, 94, 0.08);
            border: 1px solid rgba(34, 197, 94, 0.25);
            border-radius: 12px;
            font-size: 0.85rem;
            color: var(--accent-green);
            font-weight: 600;
        }

        .lp-guarantee-icon {
            font-size: 1.4rem;
            line-height: 1;
        }

        .lp-hero-micro-proof {
            margin-top: 0.75rem;
            margin-bottom: 0.75rem;
            font-size: 0.82rem;
            color: var(--text-muted);
            letter-spacing: 0.02em;
        }

        /* ============================================
           URGENCY BANNER
           ============================================ */
        .lp-urgency {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 0.4rem;
            margin-bottom: 0;
            padding: 0.5rem 1.1rem;
            background: rgba(250, 204, 21, 0.08);
            border: 1px solid rgba(250, 204, 21, 0.25);
            border-radius: 100px;
            font-size: 0.85rem;
            font-weight: 600;
            color: #facc15;
        }

        /* Light mode contrast for urgency banner */
        [data-theme="light"] .lp-urgency {
            color: #b8421a !important;
            background: rgba(207, 91, 46, 0.08) !important;
            border-color: rgba(207, 91, 46, 0.25) !important;
        }

        /* ============================================
           FAQ / OBJECTIONS
           ============================================ */
        .lp-faq-list {
            max-width: 750px;
            margin: 0 auto;
        }

        .lp-faq-item {
            background: var(--glass-bg);
            backdrop-filter: blur(18px) saturate(140%);
            -webkit-backdrop-filter: blur(18px) saturate(140%);
            border: 1px solid var(--glass-border);
            border-radius: 1rem;
            margin-bottom: 0.75rem;
            padding: 0 1.25rem;
            transition: all 0.3s ease;
            box-shadow: var(--glass-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.06);
        }

        .lp-faq-item:hover {
            border-color: var(--card-hover-border);
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        .lp-faq-q {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.25rem 0;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1.05rem;
            font-weight: 600;
            cursor: pointer;
            text-align: left;
            font-family: inherit;
            gap: 1rem;
        }

        .lp-faq-q:hover {
            color: var(--brand-primary);
        }

        .lp-faq-chevron {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
            transition: transform 0.3s ease;
            color: var(--text-muted);
        }

        .lp-faq-item.open .lp-faq-chevron {
            transform: rotate(180deg);
        }

        .lp-faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s ease;
        }

        .lp-faq-item.open .lp-faq-a {
            max-height: 300px;
        }

        .lp-faq-a-inner {
            padding: 0 0 1.25rem;
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* ============================================
           FREE AUDIT CTA
           ============================================ */
        .lp-audit-cta {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            margin-top: 2.5rem;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border-color);
            border-radius: 1rem;
            text-align: center;
        }

        .lp-audit-text {
            font-size: 1rem;
            color: var(--text-secondary);
        }

        .lp-audit-text strong {
            color: var(--text-primary);
        }

        .btn-audit {
            background: rgba(34, 197, 94, 0.12);
            color: var(--accent-green);
            border: 1px solid rgba(34, 197, 94, 0.3);
            box-shadow: none;
        }

        .btn-audit:hover {
            background: rgba(34, 197, 94, 0.2);
            transform: translateY(-2px);
        }

        /* ============================================
           THEME TOGGLE BUTTON
           ============================================ */
        .lp-theme-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            border: 1px solid var(--glass-border);
            border-radius: 10px;
            background: var(--glass-bg);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            cursor: pointer;
            transition: all 0.3s ease;
            color: var(--text-secondary);
        }

        .lp-theme-toggle:hover {
            background: var(--brand-primary-alpha);
            color: var(--brand-primary);
            border-color: var(--brand-primary);
        }

        .lp-theme-icon {
            width: 18px;
            height: 18px;
        }

        /* Dark mode: show sun (click to go light), hide moon */
        :root .lp-theme-icon.moon,
        [data-theme="dark"] .lp-theme-icon.moon {
            display: none;
        }

        :root .lp-theme-icon.sun,
        [data-theme="dark"] .lp-theme-icon.sun {
            display: block;
        }

        /* Light mode: show moon (click to go dark), hide sun */
        [data-theme="light"] .lp-theme-icon.sun {
            display: none;
        }

        [data-theme="light"] .lp-theme-icon.moon {
            display: block;
        }

        /* Auto: show based on system */
        [data-theme="auto"] .lp-theme-icon.sun {
            display: block;
        }

        [data-theme="auto"] .lp-theme-icon.moon {
            display: none;
        }

        @media (prefers-color-scheme: light) {
            [data-theme="auto"] .lp-theme-icon.sun {
                display: none;
            }

            [data-theme="auto"] .lp-theme-icon.moon {
                display: block;
            }
        }

        /* ============================================
           LOGO SWITCHING
           ============================================ */
        .lp-logo-light {
            display: none;
        }

        .lp-logo-dark {
            display: block;
        }

        [data-theme="light"] .lp-logo-dark {
            display: none;
        }

        [data-theme="light"] .lp-logo-light {
            display: block;
        }

        @media (prefers-color-scheme: light) {
            [data-theme="auto"] .lp-logo-dark {
                display: none;
            }

            [data-theme="auto"] .lp-logo-light {
                display: block;
            }
        }

        /* Also swap footer logo */
        .lp-footer .lp-logo-light {
            display: none;
        }

        .lp-footer .lp-logo-dark {
            display: block;
        }

        [data-theme="light"] .lp-footer .lp-logo-dark {
            display: none;
        }

        [data-theme="light"] .lp-footer .lp-logo-light {
            display: block;
        }

        @media (prefers-color-scheme: light) {
            [data-theme="auto"] .lp-footer .lp-logo-dark {
                display: none;
            }

            [data-theme="auto"] .lp-footer .lp-logo-light {
                display: block;
            }
        }

        /* ============================================
           AMBIENT BACKGROUND BLOBS — give glass something to blur
           ============================================ */
        .lp-section {
            position: relative;
            overflow: hidden;
        }

        .section-glow {
            position: absolute;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            overflow: visible;
        }

        .section-glow .glow-blob {
            position: absolute;
            border-radius: 50%;
            will-change: transform;
        }

        /* Blob color variations */
        .glow-blob--orange {
            background: radial-gradient(circle, rgba(207, 91, 46, 0.55) 0%, transparent 70%);
            filter: blur(60px);
        }

        .glow-blob--purple {
            background: radial-gradient(circle, rgba(168, 85, 247, 0.45) 0%, transparent 70%);
            filter: blur(70px);
        }

        .glow-blob--cyan {
            background: radial-gradient(circle, rgba(34, 211, 238, 0.40) 0%, transparent 70%);
            filter: blur(55px);
        }

        /* Reduce blob intensity in light mode */
        [data-theme="light"] .glow-blob--orange {
            background: radial-gradient(circle, rgba(207, 91, 46, 0.22) 0%, transparent 70%);
        }

        [data-theme="light"] .glow-blob--purple {
            background: radial-gradient(circle, rgba(168, 85, 247, 0.18) 0%, transparent 70%);
        }

        [data-theme="light"] .glow-blob--cyan {
            background: radial-gradient(circle, rgba(34, 211, 238, 0.16) 0%, transparent 70%);
        }

        @media (prefers-color-scheme: light) {
            [data-theme="auto"] .glow-blob--orange {
                background: radial-gradient(circle, rgba(207, 91, 46, 0.22) 0%, transparent 70%);
            }

            [data-theme="auto"] .glow-blob--purple {
                background: radial-gradient(circle, rgba(168, 85, 247, 0.18) 0%, transparent 70%);
            }

            [data-theme="auto"] .glow-blob--cyan {
                background: radial-gradient(circle, rgba(34, 211, 238, 0.16) 0%, transparent 70%);
            }
        }

        /* Section-specific blob content sits above glow */
        .lp-section>.lp-container {
            position: relative;
            z-index: 2;
        }

        /* ============================================
           GLASSMORPHISM CARD SYSTEM
           ============================================ */
        .glass-panel {
            background: var(--glass-bg);
            backdrop-filter: blur(24px) saturate(160%);
            -webkit-backdrop-filter: blur(24px) saturate(160%);
            border: 1px solid var(--glass-border);
            border-radius: 1.25rem;
            box-shadow: var(--glass-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        /* Cursor-tracking subtle glow on hover */
        .glass-panel::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: inherit;
            background: radial-gradient(300px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
                    rgba(207, 91, 46, 0.08),
                    transparent 60%);
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
            z-index: 0;
        }

        .glass-panel:hover::before {
            opacity: 1;
        }

        .glass-panel:hover {
            border-color: var(--card-hover-border);
            transform: translateY(-4px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(207, 91, 46, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.12);
        }

        /* Apply glass to existing card classes */
        .lp-pain-card,
        .lp-value-card,
        .lp-process-step,
        .lp-testimonial,
        .lp-audit-cta {
            background: linear-gradient(135deg,
                    rgba(255, 255, 255, 0.1) 0%,
                    rgba(168, 85, 247, 0.06) 50%,
                    rgba(34, 211, 238, 0.04) 100%) !important;
            backdrop-filter: blur(24px) saturate(180%);
            -webkit-backdrop-filter: blur(24px) saturate(180%);
            border: 1px solid rgba(255, 255, 255, 0.2) !important;
            border-top: 1px solid rgba(255, 255, 255, 0.35) !important;
            border-left: 1px solid rgba(255, 255, 255, 0.25) !important;
            border-radius: 1.25rem;
            box-shadow:
                0 8px 32px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.2),
                inset 0 0 20px rgba(255, 255, 255, 0.03);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        /* Frost overlay on cards */
        .lp-pain-card::after,
        .lp-value-card::after,
        .lp-process-step::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 50%;
            background: linear-gradient(180deg,
                    rgba(255, 255, 255, 0.08) 0%,
                    transparent 100%);
            border-radius: 1.25rem 1.25rem 0 0;
            pointer-events: none;
            z-index: 0;
        }

        /* Cursor glow on existing cards */
        .lp-pain-card::before,
        .lp-value-card::before,
        .lp-process-step::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: inherit;
            background: radial-gradient(300px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
                    rgba(207, 91, 46, 0.1),
                    transparent 60%);
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
            z-index: 0;
        }

        .lp-pain-card:hover::before,
        .lp-value-card:hover::before,
        .lp-process-step:hover::before {
            opacity: 1;
        }

        .lp-pain-card:hover,
        .lp-value-card:hover,
        .lp-process-step:hover {
            border-color: rgba(255, 255, 255, 0.35) !important;
            transform: translateY(-4px);
            box-shadow:
                0 20px 50px rgba(0, 0, 0, 0.4),
                0 0 60px rgba(168, 85, 247, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                inset 0 0 30px rgba(255, 255, 255, 0.05);
        }

        /* Glassmorphism hero badge */
        .lp-hero-badge {
            background: var(--glass-bg) !important;
            backdrop-filter: blur(16px) saturate(140%);
            -webkit-backdrop-filter: blur(16px) saturate(140%);
            border: 1px solid var(--glass-border) !important;
        }

        /* Glassmorphism section badge */
        .lp-section-badge {
            background: var(--glass-bg) !important;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--glass-border) !important;
            padding: 0.35rem 0.9rem;
            border-radius: 2rem;
        }

        /* Quote feature pills glassmorphism */
        .lp-quote-feature {
            background: var(--glass-bg) !important;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--glass-border) !important;
        }

        /* Nav glassmorphism */
        .lp-nav {
            background: var(--nav-bg) !important;
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border-bottom: 1px solid var(--glass-border);
        }

        /* Blobs and orbs get smooth parallax movement via JS */
        .glow-blob,
        .lp-orb {
            transition: transform 0.15s linear;
        }

        /* ============================================
           CAROUSEL BEFORE/AFTER — AUTO-SCROLLING
           ============================================ */
        .lp-carousel-wrapper {
            position: relative;
            overflow: hidden;
            height: 280px;
        }

        .lp-carousel-track {
            display: flex;
            animation: lpCarouselScroll 12s ease-in-out infinite;
            height: 100%;
        }

        .lp-carousel-slide {
            min-width: 100%;
            height: 100%;
        }

        @keyframes lpCarouselScroll {

            0%,
            20% {
                transform: translateX(0);
            }

            33%,
            53% {
                transform: translateX(-100%);
            }

            66%,
            86% {
                transform: translateX(-200%);
            }

            100% {
                transform: translateX(0);
            }
        }

        /* Carousel page indicator dots */
        .lp-carousel-dots {
            display: flex;
            justify-content: center;
            gap: 6px;
            margin-top: 0.75rem;
        }

        .lp-carousel-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--text-muted);
            opacity: 0.4;
        }

        .lp-carousel-dot.active {
            opacity: 1;
            background: var(--brand-primary);
        }

        /* Bad site page variations */
        .bad-page-about .bad-img-placeholder {
            height: 40px;
        }

        .bad-page-about h4 {
            font-size: 0.9rem !important;
        }

        .bad-page-contact input {
            display: block;
            width: 80%;
            padding: 0.2rem 0.4rem;
            margin-bottom: 0.3rem;
            border: 1px solid #ccc;
            background: #fff;
            font-size: 0.6rem;
            font-family: Arial, sans-serif;
        }

        .bad-page-contact label {
            font-size: 0.6rem;
            color: #666;
            display: block;
            margin-bottom: 0.15rem;
        }

        /* Good site page variations */
        .good-page-about .good-feature-row {
            display: flex;
            gap: 0.5rem;
            margin-top: 0.5rem;
        }

        .good-page-about .good-feature-pill {
            padding: 0.2rem 0.5rem;
            border-radius: 100px;
            font-size: 0.5rem;
            font-weight: 600;
            background: rgba(207, 91, 46, 0.15);
            color: var(--brand-primary);
            border: 1px solid rgba(207, 91, 46, 0.25);
        }

        .good-page-contact .good-field {
            display: block;
            width: 85%;
            padding: 0.35rem 0.6rem;
            margin-bottom: 0.4rem;
            border-radius: 6px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.05);
            font-size: 0.55rem;
            color: rgba(255, 255, 255, 0.4);
            font-family: 'Inter', sans-serif;
        }

        .lp-section-alt {
            background: rgba(0, 0, 0, 0.12) !important;
        }

        [data-theme="light"] .lp-section-alt {
            background: rgba(255, 255, 255, 0.25) !important;
        }

        /* Light mode glass card overrides */
        [data-theme="light"] .lp-pain-card,
        [data-theme="light"] .lp-value-card,
        [data-theme="light"] .lp-process-step,
        [data-theme="light"] .lp-testimonial,
        [data-theme="light"] .lp-audit-cta {
            background: linear-gradient(135deg,
                    rgba(255, 255, 255, 0.55) 0%,
                    rgba(200, 180, 240, 0.15) 50%,
                    rgba(180, 220, 240, 0.12) 100%) !important;
            border: 1px solid rgba(0, 0, 0, 0.1) !important;
            border-top: 1px solid rgba(255, 255, 255, 0.7) !important;
            border-left: 1px solid rgba(255, 255, 255, 0.5) !important;
            box-shadow:
                0 8px 32px rgba(0, 0, 0, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.5),
                inset 0 0 20px rgba(255, 255, 255, 0.15);
        }

        [data-theme="light"] .lp-pain-card::after,
        [data-theme="light"] .lp-value-card::after,
        [data-theme="light"] .lp-process-step::after {
            background: linear-gradient(180deg,
                    rgba(255, 255, 255, 0.25) 0%,
                    transparent 100%);
        }

        [data-theme="light"] .lp-pain-card:hover,
        [data-theme="light"] .lp-value-card:hover,
        [data-theme="light"] .lp-process-step:hover {
            border-color: rgba(0, 0, 0, 0.18) !important;
            box-shadow:
                0 20px 50px rgba(0, 0, 0, 0.1),
                0 0 40px rgba(168, 85, 247, 0.06),
                inset 0 1px 0 rgba(255, 255, 255, 0.6);
        }

        /* Ensure text is dark and readable in light mode */
        [data-theme="light"] .lp-pain-title,
        [data-theme="light"] .lp-pain-desc,
        [data-theme="light"] .lp-value-title,
        [data-theme="light"] .lp-value-desc,
        [data-theme="light"] .lp-process-title,
        [data-theme="light"] .lp-process-desc,
        [data-theme="light"] .lp-hero-sub,
        [data-theme="light"] .lp-section-sub {
            color: #2d2d30;
        }

        [data-theme="light"] .lp-hero-title,
        [data-theme="light"] .lp-section-title,
        [data-theme="light"] h2,
        [data-theme="light"] h3 {
            color: #1a1a1f;
        }

        /* Hero gradient text — boost saturation & contrast in light mode */
        [data-theme="light"] .lp-hero-title .gradient-text {
            background: linear-gradient(90deg, #b8421a, #8b2fc4, #0ea5c9);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: contrast(1.15) saturate(1.3);
        }

        /* Quote CTA & Final CTA — fully opaque in light mode to block parallax bleed-through */
        [data-theme="light"] .lp-quote-cta,
        [data-theme="light"] .lp-final-cta {
            background: linear-gradient(135deg,
                    #ede8f4 0%,
                    #f0ecf5 50%,
                    #e8f0f5 100%) !important;
            isolation: isolate;
        }

        [data-theme="light"] .lp-quote-title,
        [data-theme="light"] .lp-final-title {
            color: #1a1a1f !important;
        }

        [data-theme="light"] .lp-quote-desc,
        [data-theme="light"] .lp-final-sub {
            color: #2d2d30 !important;
        }

        [data-theme="light"] .lp-quote-feature {
            color: #2d2d30;
            border-color: rgba(0, 0, 0, 0.12);
        }

        /* Urgency badge — dark text in light mode */
        [data-theme="light"] .lp-quote-cta .lp-urgency,
        [data-theme="light"] .lp-final-cta .lp-urgency {
            color: #b8421a !important;
            background: rgba(207, 91, 46, 0.08) !important;
            border-color: rgba(207, 91, 46, 0.25) !important;
        }

        /* CTA button — ensure visible in light mode */
        [data-theme="light"] .lp-quote-cta .btn-primary,
        [data-theme="light"] .lp-final-cta .btn-primary {
            color: #fff !important;
            box-shadow: 0 4px 20px rgba(207, 91, 46, 0.35) !important;
        }

        /* Guarantee badge — dark text in light mode */
        [data-theme="light"] .lp-quote-cta .lp-guarantee,
        [data-theme="light"] .lp-final-cta .lp-guarantee {
            color: #166534 !important;
            background: rgba(34, 197, 94, 0.08) !important;
            border-color: rgba(34, 197, 94, 0.25) !important;
        }

        /* Quote icon — keep visible */
        [data-theme="light"] .lp-quote-icon {
            box-shadow: 0 10px 40px rgba(207, 91, 46, 0.2) !important;
        }

        /* Footer "Proudly based" note — make visible */
        [data-theme="light"] .lp-final-note {
            color: #3a3a3f !important;
        }

        /* Auto theme copies */
        @media (prefers-color-scheme: light) {
            [data-theme="auto"] .lp-section-alt {
                background: rgba(255, 255, 255, 0.25) !important;
            }

            [data-theme="auto"] .lp-pain-card,
            [data-theme="auto"] .lp-value-card,
            [data-theme="auto"] .lp-process-step,
            [data-theme="auto"] .lp-testimonial,
            [data-theme="auto"] .lp-audit-cta {
                background: linear-gradient(135deg,
                        rgba(255, 255, 255, 0.55) 0%,
                        rgba(200, 180, 240, 0.15) 50%,
                        rgba(180, 220, 240, 0.12) 100%) !important;
                border: 1px solid rgba(0, 0, 0, 0.1) !important;
                border-top: 1px solid rgba(255, 255, 255, 0.7) !important;
                border-left: 1px solid rgba(255, 255, 255, 0.5) !important;
                box-shadow:
                    0 8px 32px rgba(0, 0, 0, 0.08),
                    inset 0 1px 0 rgba(255, 255, 255, 0.5),
                    inset 0 0 20px rgba(255, 255, 255, 0.15);
            }

            [data-theme="auto"] .lp-pain-card::after,
            [data-theme="auto"] .lp-value-card::after,
            [data-theme="auto"] .lp-process-step::after {
                background: linear-gradient(180deg,
                        rgba(255, 255, 255, 0.25) 0%,
                        transparent 100%);
            }

            [data-theme="auto"] .lp-pain-title,
            [data-theme="auto"] .lp-pain-desc,
            [data-theme="auto"] .lp-value-title,
            [data-theme="auto"] .lp-value-desc,
            [data-theme="auto"] .lp-process-title,
            [data-theme="auto"] .lp-process-desc,
            [data-theme="auto"] .lp-hero-sub,
            [data-theme="auto"] .lp-section-sub {
                color: #2d2d30;
            }

            [data-theme="auto"] .lp-hero-title,
            [data-theme="auto"] .lp-section-title,
            [data-theme="auto"] h2,
            [data-theme="auto"] h3 {
                color: #1a1a1f;
            }

            [data-theme="auto"] .lp-hero-title .gradient-text {
                background: linear-gradient(90deg, #b8421a, #8b2fc4, #0ea5c9);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
                filter: contrast(1.15) saturate(1.3);
            }

            [data-theme="auto"] .lp-quote-cta,
            [data-theme="auto"] .lp-final-cta {
                background: linear-gradient(135deg,
                        #ede8f4 0%,
                        #f0ecf5 50%,
                        #e8f0f5 100%) !important;
                isolation: isolate;
            }

            [data-theme="auto"] .lp-quote-title,
            [data-theme="auto"] .lp-final-title {
                color: #1a1a1f !important;
            }

            [data-theme="auto"] .lp-quote-desc,
            [data-theme="auto"] .lp-final-sub {
                color: #2d2d30 !important;
            }

            [data-theme="auto"] .lp-quote-feature {
                color: #2d2d30;
                border-color: rgba(0, 0, 0, 0.12);
            }

            [data-theme="auto"] .lp-quote-cta .lp-urgency,
            [data-theme="auto"] .lp-final-cta .lp-urgency {
                color: #b8421a !important;
                background: rgba(207, 91, 46, 0.08) !important;
                border-color: rgba(207, 91, 46, 0.25) !important;
            }

            [data-theme="auto"] .lp-quote-cta .btn-primary,
            [data-theme="auto"] .lp-final-cta .btn-primary {
                color: #fff !important;
                box-shadow: 0 4px 20px rgba(207, 91, 46, 0.35) !important;
            }

            [data-theme="auto"] .lp-quote-cta .lp-guarantee,
            [data-theme="auto"] .lp-final-cta .lp-guarantee {
                color: #166534 !important;
                background: rgba(34, 197, 94, 0.08) !important;
                border-color: rgba(34, 197, 94, 0.25) !important;
            }

            [data-theme="auto"] .lp-quote-icon {
                box-shadow: 0 10px 40px rgba(207, 91, 46, 0.2) !important;
            }

            [data-theme="auto"] .lp-final-note {
                color: #3a3a3f !important;
            }
        }


        /* ============================================
           TECH LOGO STRIP — Simple & Clean
           ============================================ */
        .tech-logo-section {
            padding: 2rem 0 3rem;
            overflow: hidden;
            position: relative;
        }

        .tech-logo-section .lp-container {
            text-align: center;
        }

        .tech-logo-section .lp-section-sub {
            text-align: center;
            display: block;
            margin-bottom: 2.5rem;
            opacity: 0.7;
            font-size: 1rem;
        }

        .tech-logo-strip {
            position: relative;
            overflow: hidden;
            border-radius: 2rem;
            padding: 0.5rem 0;
            /* Gradient edge fades — mask-based so it works on any background */
            -webkit-mask-image: linear-gradient(to right,
                    transparent 0%,
                    black 12%,
                    black 88%,
                    transparent 100%);
            mask-image: linear-gradient(to right,
                    transparent 0%,
                    black 12%,
                    black 88%,
                    transparent 100%);
        }

        /* Review section components */
        .lp-review-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .lp-review-header .lp-since-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            padding: 0.75rem 1.25rem;
            background: rgba(34, 197, 94, 0.08);
            border: 1px solid rgba(34, 197, 94, 0.25);
            border-radius: 12px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--accent-green);
            margin-bottom: 1.5rem;
        }

        @media (max-width: 480px) {
            .lp-review-header .lp-since-badge {
                font-size: 0.8rem;
            }

            .lp-review-track {
                display: flex;
                gap: 1.5rem;
                width: calc(2 * (10 * 340px + 10 * 1.5rem));
                -webkit-animation: reviewScroll 60s linear infinite;
                animation: reviewScroll 60s linear infinite;
                will-change: transform;
            }
        }

        .lp-review-carousel {
            position: relative;
            overflow: hidden;
            padding: 1rem 0 3rem;
        }

        .lp-review-strip {
            position: relative;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            padding: 1rem 0 1.5rem;
            /* Fade cards at edges instead of hard clip */
            -webkit-mask-image: linear-gradient(to right,
                    transparent 0%, black 5%, black 95%, transparent 100%);
            mask-image: linear-gradient(to right,
                    transparent 0%, black 5%, black 95%, transparent 100%);
            scrollbar-width: none;
            content-visibility: auto;
            contain-intrinsic-size: 0 400px;
        }

        .lp-review-strip::-webkit-scrollbar {
            display: none;
        }

        .lp-review-track {
            display: flex;
            gap: 1.5rem;
            width: calc(2 * (10 * 340px + 10 * 1.5rem));
            /* 10 cards * 340px width + 10 gaps per set * 2 sets */
            -webkit-animation: reviewScroll 60s linear infinite;
            animation: reviewScroll 60s linear infinite;
            will-change: transform;
        }

        .lp-review-strip:hover .lp-review-track {
            -webkit-animation-play-state: paused;
            animation-play-state: paused;
        }

        .lp-review-card {
            flex: 0 0 340px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--glass-border);
            border-radius: 1.25rem;
            padding: 2rem;
            text-align: center;
        }

        @media (max-width: 768px) {
            .lp-review-card {
                flex: 0 0 300px;
                padding: 1.5rem;
            }
        }

        .lp-review-card .lp-stars {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #FFD700;
        }

        .lp-review-card .lp-review-text {
            font-size: 1rem;
            font-style: italic;
            color: var(--text-primary);
            line-height: 1.6;
            margin-bottom: 1.25rem;
        }

        .lp-review-card .lp-review-author {
            font-weight: 700;
            color: var(--accent);
            font-size: 0.95rem;
        }

        .lp-review-card .lp-review-source {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-top: 0.25rem;
        }

        @keyframes reviewScroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(calc(-10 * 340px - 10 * 1.5rem));
            }
        }

        @-webkit-keyframes reviewScroll {
            0% {
                -webkit-transform: translateX(0);
            }

            100% {
                -webkit-transform: translateX(calc(-10 * 340px - 10 * 1.5rem));
            }
        }

        @media (max-width: 768px) {
            @keyframes reviewScroll {
                0% {
                    transform: translateX(0);
                }

                100% {
                    transform: translateX(calc(-10 * 300px - 10 * 1.5rem));
                }
            }

            @-webkit-keyframes reviewScroll {
                0% {
                    -webkit-transform: translateX(0);
                }

                100% {
                    -webkit-transform: translateX(calc(-10 * 300px - 10 * 1.5rem));
                }
            }

            .lp-review-track {
                width: calc(2 * (10 * 300px + 10 * 1.5rem));
            }
        }

        /* Portfolio collage — refined showcase */
        .portfolio-collage {
            position: relative;
            width: 100%;
            height: 380px;
            padding-top: 10px;
            perspective: 1200px;
            overflow: hidden;
            background: radial-gradient(ellipse at 50% 0%, rgba(109, 40, 217, 0.12) 0%, transparent 60%);
            /* Mask removed for debugging */
        }

        .portfolio-collage-card {
            position: absolute;
            width: 280px;
            height: 175px;
            /* Fallback for iOS < 15 */
            aspect-ratio: 16 / 10;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.06);
            opacity: 0;
            pointer-events: none;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
        }

        .portfolio-collage-card.card-enter {
            -webkit-animation: collageCardIn 1.1s cubic-bezier(.16, 1, .3, 1) forwards;
            animation: collageCardIn 1.1s cubic-bezier(.16, 1, .3, 1) forwards;
        }

        .portfolio-collage-card.card-exit {
            -webkit-animation: collageCardOut 0.9s cubic-bezier(.55, .06, .68, .19) forwards;
            animation: collageCardOut 0.9s cubic-bezier(.55, .06, .68, .19) forwards;
        }

        @keyframes collageCardIn {
            0% {
                opacity: 0;
                -webkit-transform: var(--card-rot) scale(0.82) translateY(35px);
                transform: var(--card-rot) scale(0.82) translateY(35px);
            }

            40% {
                opacity: 0.7;
            }

            100% {
                opacity: 1;
                -webkit-transform: var(--card-rot) scale(1) translateY(0);
                transform: var(--card-rot) scale(1) translateY(0);
            }
        }

        @-webkit-keyframes collageCardIn {
            0% {
                opacity: 0;
                -webkit-transform: var(--card-rot) scale(0.82) translateY(35px);
            }

            40% {
                opacity: 0.7;
            }

            100% {
                opacity: 1;
                -webkit-transform: var(--card-rot) scale(1) translateY(0);
            }
        }

        @keyframes collageCardOut {
            0% {
                opacity: 1;
                -webkit-transform: var(--card-rot) scale(1) translateY(0);
                transform: var(--card-rot) scale(1) translateY(0);
            }

            60% {
                opacity: 0.3;
            }

            100% {
                opacity: 0;
                -webkit-transform: var(--card-rot) scale(0.88) translateY(-25px);
                transform: var(--card-rot) scale(0.88) translateY(-25px);
            }
        }

        @-webkit-keyframes collageCardOut {
            0% {
                opacity: 1;
                -webkit-transform: var(--card-rot) scale(1) translateY(0);
            }

            60% {
                opacity: 0.3;
            }

            100% {
                opacity: 0;
                -webkit-transform: var(--card-rot) scale(0.88) translateY(-25px);
            }
        }

        .portfolio-collage-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center;
            display: block;
        }

        .portfolio-collage-label {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 0.75rem 1rem;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
            color: #fff;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.02em;
            backdrop-filter: blur(4px);
        }

        @media (max-width: 768px) {
            .portfolio-collage {
                height: 380px;
            }

            .portfolio-collage-card {
                width: 200px;
                height: 125px;
                /* Fallback */
            }

            .portfolio-collage-label {
                font-size: 0.6rem;
                padding: 0.35rem 0.5rem;
                backdrop-filter: none;
                background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
            }
        }

        @media (max-width: 480px) {
            .portfolio-collage {
                height: 320px;
            }

            .portfolio-collage-card {
                width: 160px;
                height: 100px;
                /* Fallback */
            }

            .portfolio-collage-label {
                font-size: 0.5rem;
                padding: 0.25rem 0.4rem;
            }
        }

        /* Gradient edge fades — mask-based so it works on any background */
        .tech-logo-strip {
            -webkit-mask-image: linear-gradient(to right,
                    transparent 0%,
                    black 12%,
                    black 88%,
                    transparent 100%);
            mask-image: linear-gradient(to right,
                    transparent 0%,
                    black 12%,
                    black 88%,
                    transparent 100%);
        }

        .tech-logo-row {
            display: flex;
            width: max-content;
            gap: 3.5rem;
            align-items: center;
            animation: logoScroll 35s linear infinite;
            padding: 1rem 0;
            will-change: transform;
        }

        .tech-logo-row:hover {
            animation-play-state: paused;
        }

        @keyframes logoScroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-33.333%);
            }
        }

        .tech-logo-item {
            flex-shrink: 0;
            opacity: 0.6;
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        .tech-logo-item:hover {
            opacity: 1;
            transform: scale(1.15);
        }

        .tech-logo-item img {
            width: 52px;
            height: 52px;
            object-fit: contain;
        }




        /* Responsive */
        @media (max-width: 768px) {
            .tech-logo-section {
                padding: 2rem 0;
            }

            .tech-logo-strip {
                border-radius: 0;
            }

            .tech-logo-strip::before,
            .tech-logo-strip::after {
                width: 40px;
            }

            .tech-logo-item img {
                width: 36px;
                height: 36px;
            }

            .tech-logo-row {
                gap: 2rem;
            }
        }

        /* Reduced motion */
        @media (prefers-reduced-motion: reduce) {
            .tech-logo-row {
                animation: none !important;
            }
        }

        /* ===========================================
   INLINE CONTACT FORM (Hero + Final CTA)
   =========================================== */
        .inline-contact-form {
            width: 100%;
            max-width: 720px;
            margin: 2rem auto 1rem;
            position: relative;
        }

        .inline-form-row {
            display: flex;
            gap: 0.625rem;
            align-items: stretch;
            background: linear-gradient(135deg,
                    rgba(255, 255, 255, 0.08) 0%,
                    rgba(207, 91, 46, 0.06) 50%,
                    rgba(34, 211, 238, 0.06) 100%);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1.5px solid rgba(207, 91, 46, 0.35);
            border-radius: 16px;
            padding: 0.625rem;
            box-shadow:
                0 0 20px rgba(207, 91, 46, 0.12),
                0 0 60px rgba(207, 91, 46, 0.05),
                0 8px 32px rgba(0, 0, 0, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.08);
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        .inline-form-row:hover,
        .inline-form-row:focus-within {
            border-color: rgba(207, 91, 46, 0.55);
            box-shadow:
                0 0 30px rgba(207, 91, 46, 0.2),
                0 0 80px rgba(207, 91, 46, 0.08),
                0 12px 40px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.12);
        }

        [data-theme="light"] .inline-form-row {
            background: linear-gradient(135deg,
                    rgba(255, 255, 255, 0.85) 0%,
                    rgba(207, 91, 46, 0.05) 50%,
                    rgba(34, 211, 238, 0.05) 100%);
            border-color: rgba(207, 91, 46, 0.3);
            box-shadow:
                0 0 20px rgba(207, 91, 46, 0.1),
                0 8px 32px rgba(0, 0, 0, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
        }

        [data-theme="light"] .inline-form-row:hover,
        [data-theme="light"] .inline-form-row:focus-within {
            border-color: rgba(207, 91, 46, 0.5);
            box-shadow:
                0 0 30px rgba(207, 91, 46, 0.15),
                0 12px 40px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
        }

        .inline-form-row input {
            flex: 1;
            min-width: 0;
            padding: 0.9rem 1.1rem;
            border: 1.5px solid rgba(255, 255, 255, 0.12);
            border-radius: 11px;
            background: rgba(255, 255, 255, 0.07);
            color: #fff;
            font-size: 0.95rem;
            font-family: inherit;
            font-weight: 500;
            outline: none;
            transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
        }

        [data-theme="light"] .inline-form-row input {
            background: #fff;
            color: #1a1a2e;
            border-color: rgba(0, 0, 0, 0.12);
        }

        .inline-form-row input::placeholder {
            color: rgba(255, 255, 255, 0.45);
            font-weight: 400;
        }

        [data-theme="light"] .inline-form-row input::placeholder {
            color: rgba(0, 0, 0, 0.4);
        }

        .inline-form-row input:focus {
            border-color: #cf5b2e;
            background: rgba(255, 255, 255, 0.1);
            box-shadow: 0 0 0 3px rgba(207, 91, 46, 0.2), inset 0 0 8px rgba(207, 91, 46, 0.06);
        }

        [data-theme="light"] .inline-form-row input:focus {
            background: #fff;
            box-shadow: 0 0 0 3px rgba(207, 91, 46, 0.15);
        }

        .inline-form-row button[type="submit"] {
            white-space: nowrap;
            padding: 0.9rem 2rem;
            border-radius: 11px;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            border: none;
            flex-shrink: 0;
            background: linear-gradient(135deg, #cf5b2e, #e0723f);
            color: #fff;
            box-shadow: 0 4px 16px rgba(207, 91, 46, 0.4);
            transition: transform 0.2s, box-shadow 0.2s;
            letter-spacing: 0.02em;
        }

        .inline-form-row button[type="submit"]:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 24px rgba(207, 91, 46, 0.5);
        }

        .inline-form-row button[type="submit"]:active {
            transform: translateY(0);
        }

        /* Mobile: stack inputs vertically */
        @media (max-width: 640px) {
            .inline-form-row {
                flex-direction: column;
                padding: 0.75rem;
            }

            .inline-form-row input,
            .inline-form-row button[type="submit"] {
                width: 100%;
                font-size: 16px;
                /* Prevents iOS Safari auto-zoom on focus */
            }

            .inline-form-row button[type="submit"] {
                padding: 1rem;
            }
        }

        /* --- Success State --- */
        .inline-contact-form.form-success .inline-form-row {
            border-color: #10b981;
            background: rgba(16, 185, 129, 0.1);
            box-shadow: 0 0 30px rgba(16, 185, 129, 0.15), 0 8px 32px rgba(0, 0, 0, 0.2);
        }

        /* === ANIMATED SUCCESS OVERLAY === */
        .inline-success-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 10;
            border-radius: 16px;
            overflow: hidden;
            opacity: 0;
            transform: scale(0.9);
            pointer-events: none;
            transition: opacity 0.5s cubic-bezier(.16, 1, .3, 1), transform 0.5s cubic-bezier(.16, 1, .3, 1);
        }

        .inline-success-overlay::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg,
                    rgba(16, 185, 129, 0.15) 0%,
                    rgba(6, 78, 59, 0.9) 30%,
                    rgba(6, 78, 59, 0.95) 70%,
                    rgba(16, 185, 129, 0.15) 100%);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            z-index: -1;
        }

        [data-theme="light"] .inline-success-overlay::before {
            background: linear-gradient(135deg,
                    rgba(16, 185, 129, 0.1) 0%,
                    rgba(236, 253, 245, 0.95) 30%,
                    rgba(236, 253, 245, 0.98) 70%,
                    rgba(16, 185, 129, 0.1) 100%);
        }

        .inline-contact-form.form-success .inline-success-overlay {
            opacity: 1;
            transform: scale(1);
            pointer-events: auto;
        }

        /* Animated checkmark circle */
        .success-checkmark {
            width: 64px;
            height: 64px;
            margin-bottom: 1rem;
        }

        .success-checkmark .check-circle {
            fill: none;
            stroke: #10b981;
            stroke-width: 3;
            stroke-dasharray: 166;
            stroke-dashoffset: 166;
            stroke-linecap: round;
        }

        .success-checkmark .check-path {
            fill: none;
            stroke: #fff;
            stroke-width: 3;
            stroke-dasharray: 48;
            stroke-dashoffset: 48;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        [data-theme="light"] .success-checkmark .check-path {
            stroke: #065f46;
        }

        .form-success .success-checkmark .check-circle {
            animation: checkCircleDraw 0.6s 0.2s cubic-bezier(.65, 0, .45, 1) forwards;
        }

        .form-success .success-checkmark .check-path {
            animation: checkDraw 0.4s 0.6s cubic-bezier(.65, 0, .45, 1) forwards;
        }

        @keyframes checkCircleDraw {
            to {
                stroke-dashoffset: 0;
            }
        }

        @keyframes checkDraw {
            to {
                stroke-dashoffset: 0;
            }
        }

        /* Success text */
        .success-title {
            font-size: 1.4rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 0.35rem;
            opacity: 0;
            transform: translateY(10px);
        }

        [data-theme="light"] .success-title {
            color: #065f46;
        }

        .form-success .success-title {
            animation: successFadeUp 0.5s 0.7s ease forwards;
        }

        .success-sub {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.7);
            opacity: 0;
            transform: translateY(10px);
            text-align: center;
            padding: 0 1rem;
        }

        [data-theme="light"] .success-sub {
            color: #3a6b5a;
        }

        .form-success .success-sub {
            animation: successFadeUp 0.5s 0.85s ease forwards;
        }

        @keyframes successFadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Confetti burst particles */
        .success-confetti {
            position: absolute;
            inset: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .confetti-dot {
            position: absolute;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            top: 50%;
            left: 50%;
            opacity: 0;
        }

        .form-success .confetti-dot {
            animation: confettiBurst 1s cubic-bezier(.2, .6, .35, 1) forwards;
        }

        .confetti-dot:nth-child(1) {
            background: #10b981;
            --cx: -60px;
            --cy: -50px;
            animation-delay: 0.3s;
        }

        .confetti-dot:nth-child(2) {
            background: #cf5b2e;
            --cx: 55px;
            --cy: -45px;
            animation-delay: 0.35s;
        }

        .confetti-dot:nth-child(3) {
            background: #22d3ee;
            --cx: -40px;
            --cy: 50px;
            animation-delay: 0.4s;
        }

        .confetti-dot:nth-child(4) {
            background: #a855f7;
            --cx: 65px;
            --cy: 40px;
            animation-delay: 0.45s;
        }

        .confetti-dot:nth-child(5) {
            background: #facc15;
            --cx: -70px;
            --cy: 10px;
            animation-delay: 0.38s;
        }

        .confetti-dot:nth-child(6) {
            background: #f43f5e;
            --cx: 50px;
            --cy: -55px;
            animation-delay: 0.42s;
        }

        .confetti-dot:nth-child(7) {
            background: #10b981;
            --cx: 0px;
            --cy: -65px;
            animation-delay: 0.33s;
        }

        .confetti-dot:nth-child(8) {
            background: #cf5b2e;
            --cx: -55px;
            --cy: -20px;
            animation-delay: 0.47s;
        }

        @keyframes confettiBurst {
            0% {
                opacity: 1;
                transform: translate(0, 0) scale(0);
            }

            50% {
                opacity: 1;
                transform: translate(var(--cx), var(--cy)) scale(1.2);
            }

            100% {
                opacity: 0;
                transform: translate(calc(var(--cx) * 1.5), calc(var(--cy) * 1.5)) scale(0.4);
            }
        }

        /* Glow ring pulse */
        .success-glow {
            position: absolute;
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(16, 185, 129, 0.3) 0%, transparent 70%);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -60%);
            opacity: 0;
        }

        .form-success .success-glow {
            animation: glowPulse 1.5s 0.2s ease-out forwards;
        }

        @keyframes glowPulse {
            0% {
                opacity: 0;
                transform: translate(-50%, -60%) scale(0.5);
            }

            40% {
                opacity: 1;
            }

            100% {
                opacity: 0;
                transform: translate(-50%, -60%) scale(2.5);
            }
        }

        /* ===========================================
   PORTFOLIO COLLAGE — Overflow Fix
   =========================================== */
        .portfolio-collage {
            overflow: hidden;
        }

        @media (max-width: 480px) {
            .portfolio-collage {
                padding: 0 2%;
            }
        }