/* ============================================
   NEW BENTO DESIGN SYSTEM
   Award-Winning Premium Landing Page Styles
   ============================================

   This CSS file contains the complete design system
   for the new premium landing pages (index-3 style).

   Prefix Convention:
   - lp2-*  : Base design system classes
   - lp3-*  : Index-3 specific enhancements

   Sections:
   1. CSS Variables (Design Tokens)
   2. Typography
   3. Buttons
   4. Hero Section
   5. Problem/Comparison Section
   6. Use Cases Section
   7. Features Bento Grid
   8. Testimonials/Social Proof
   9. FAQ Section
   10. Final CTA Section
   11. Utility Components
   12. Responsive Breakpoints

   ============================================ */

/* ============================================
   1. CSS VARIABLES (DESIGN TOKENS)
   ============================================ */
:root {
    /* Primary Colors */
    --lp2-primary: #0066FF;
    --lp2-primary-dark: #0052CC;
    --lp2-accent: #FFB800;
    --lp2-success: #00C853;
    --lp2-danger: #FF3B5C;

    /* Dark Theme Colors */
    --lp2-dark: #0A0F1C;
    --lp2-darker: #060912;
    --lp2-gray-900: #1A1F2E;
    --lp2-gray-800: #252B3B;
    --lp2-gray-600: #6B7280;
    --lp2-gray-400: #9CA3AF;
    --lp2-gray-300: #D1D5DB;
    --lp2-gray-200: #E5E7EB;
    --lp2-gray-100: #F3F4F6;
    --lp2-white: #F5F5F5;

    /* Gradients */
    --lp2-gradient-hero: linear-gradient(135deg, #0A0F1C 0%, #1A1F2E 50%, #0A0F1C 100%);
    --lp2-gradient-glow: linear-gradient(135deg, #0066FF 0%, #00C2FF 100%);

    /* Typography */
    --lp2-font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Border Radius */
    --lp2-radius: 16px;
    --lp2-radius-lg: 24px;
    --lp2-radius-full: 9999px;

    /* Shadows */
    --lp2-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --lp2-shadow-lg: 0 25px 50px -12px rgba(0,0,0,0.25);

    /* Transitions */
    --lp2-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   2. TYPOGRAPHY
   ============================================ */
.lp2-display {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--lp2-white);
    margin: 0 0 1.5rem;
}

.lp2-line {
    display: block;
}

.lp2-highlight {
    background: var(--lp2-gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp2-section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--lp2-dark);
    margin: 0 0 1rem;
}

.lp2-title-left {
    text-align: left;
}

.lp2-section-sub {
    font-size: 1.125rem;
    color: var(--lp2-gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.lp2-overline {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--lp2-primary);
    background: rgba(0, 102, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: var(--lp2-radius-full);
    margin-bottom: 1rem;
}

.lp2-section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.lp2-intro-light .lp2-section-title {
    color: var(--lp2-white);
}

.lp2-intro-light .lp2-overline {
    background: rgba(255, 255, 255, 0.1);
    color: var(--lp2-accent);
}

.lp2-text-danger {
    color: var(--lp2-danger);
}

/* ============================================
   3. BUTTONS
   ============================================ */

/* Premium Glow Button */
.lp2-btn-glow {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--lp2-gradient-glow);
    border: none;
    border-radius: var(--lp2-radius-full);
    font-size: 1rem;
    font-weight: 600;
    color: var(--lp2-white);
    cursor: pointer;
    transition: var(--lp2-transition);
    overflow: hidden;
}

.lp2-btn-glow::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    opacity: 0;
    transition: var(--lp2-transition);
}

.lp2-btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px -10px rgba(0, 102, 255, 0.5);
}

.lp2-btn-glow:hover::before {
    opacity: 1;
}

.lp2-btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.lp2-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: var(--lp2-transition);
}

.lp2-btn-glow:hover .lp2-btn-icon {
    transform: translateX(4px);
}

/* Link Arrow Style */
.lp2-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--lp2-primary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--lp2-transition);
}

.lp2-link-arrow:hover {
    gap: 0.75rem;
}

/* ============================================
   4. HERO SECTION
   ============================================ */
.lp2-hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    padding: 80px 0 80px;
    background: var(--lp2-dark);
    overflow: hidden;
}

.lp2-hero-gradient {
    position: absolute;
    inset: 0;
    background: var(--lp2-gradient-hero);
}

.lp2-hero-mesh {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(at 20% 30%, rgba(0, 102, 255, 0.15) 0%, transparent 50%),
        radial-gradient(at 80% 70%, rgba(0, 194, 255, 0.1) 0%, transparent 50%);
}

.lp2-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: lp2-pulse 8s ease-in-out infinite;
}

.lp2-glow-1 {
    width: 600px;
    height: 600px;
    background: var(--lp2-primary);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.lp2-glow-2 {
    width: 400px;
    height: 400px;
    background: #00C2FF;
    bottom: -100px;
    left: -50px;
    animation-delay: -3s;
}

.lp2-glow-3 {
    width: 300px;
    height: 300px;
    background: var(--lp2-accent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.2;
    animation-delay: -5s;
}

@keyframes lp2-pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.1); }
}

/* Hero Particles - floating dots animation */
.lp2-hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.lp2-hero-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--lp2-white);
    border-radius: 50%;
    opacity: 0.3;
    animation: lp2-float 10s ease-in-out infinite;
}

.lp2-hero-particles span:nth-child(1) { left: 5%; top: 15%; animation-delay: 0s; }
.lp2-hero-particles span:nth-child(2) { left: 15%; top: 70%; animation-delay: -2s; }
.lp2-hero-particles span:nth-child(3) { left: 35%; top: 25%; animation-delay: -4s; }
.lp2-hero-particles span:nth-child(4) { left: 55%; top: 80%; animation-delay: -6s; }
.lp2-hero-particles span:nth-child(5) { left: 75%; top: 35%; animation-delay: -8s; }
.lp2-hero-particles span:nth-child(6) { left: 85%; top: 65%; animation-delay: -1s; }
.lp2-hero-particles span:nth-child(7) { left: 95%; top: 20%; animation-delay: -3s; }

.lp2-floating-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: var(--lp2-radius-full);
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: var(--lp2-gray-400);
}

.lp2-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--lp2-success);
    border-radius: 50%;
    animation: lp2-blink 2s ease-in-out infinite;
}

@keyframes lp2-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.lp2-hero-content {
    text-align: center;
    margin-bottom: 3rem;
}

.lp2-hero-lead {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--lp2-gray-400);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.lp2-hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.lp2-hero-meta {
    display: flex;
    gap: 1.5rem;
}

.lp2-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--lp2-gray-400);
}

.lp2-meta-item i {
    color: var(--lp2-success);
}

/* Hero Trust Badge (index-3 specific) */
.lp3-trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    /* margin-top: 1rem; */
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--lp2-radius-full);
}

.lp3-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--lp2-gray-400);
}

.lp3-trust-item i {
    color: var(--lp2-success);
}

.lp3-trust-item img {
    height: 18px;
    border-radius: 4px;
}

.lp3-trust-divider {
    color: rgba(255, 255, 255, 0.2);
}

/* ============================================
   HERO URL INPUT FORM (index-3 specific)
   ============================================ */
.lp3-url-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.lp3-url-form {
    width: 100%;
}

.lp3-url-input-group {
    display: flex;
    align-items: stretch;
    background: var(--lp2-white);
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--lp2-radius-full);
    overflow: hidden;
    transition: var(--lp2-transition);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.lp3-url-input-group:hover {
    border-color: rgba(0, 200, 255, 0.4);
    box-shadow: 0 4px 28px rgba(0, 200, 255, 0.15);
}

.lp3-url-input-group:focus-within {
    border-color: rgba(0, 200, 255, 0.8);
    box-shadow: 0 0 0 4px rgba(0, 200, 255, 0.25), 0 4px 32px rgba(0, 200, 255, 0.2);
}

.lp3-url-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 0 1.25rem;
    color: #374151 !important;
    font-size: 1rem;
    background: transparent;
}

.lp3-url-input,
#hero-url-input {
    flex: 1;
    min-width: 0;
    padding: 1rem 1rem;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    font-size: 1rem;
    font-family: var(--lp2-font);
    color: #1f2937;
}

.lp3-url-input::placeholder {
    color: #6b7280;
    opacity: 1;
}

.lp3-url-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    margin: 0.35rem;
    background: var(--lp2-gradient-glow);
    border: none;
    border-radius: var(--lp2-radius-full);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--lp2-white);
    cursor: pointer;
    transition: var(--lp2-transition);
    white-space: nowrap;
}

.lp3-url-submit:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px -5px rgba(0, 102, 255, 0.4);
}

.lp3-url-submit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 0.75rem;
}

/* URL Input Wrapper - for positioning paste button */
.lp3-url-input-wrapper {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    min-width: 0;
}

.lp3-url-input-wrapper .lp3-url-input {
    padding-right: 48px;
}

/* Paste Button */
.lp3-btn-paste {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    min-width: 36px;
    border: none;
    background: transparent;
    color: #9ca3af;
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 0;
    padding: 0;
    border-radius: 8px;
    z-index: 2;
}

.lp3-btn-paste:hover {
    background: rgba(0, 102, 255, 0.1);
    color: var(--lp2-primary);
}

.lp3-btn-paste:active {
    transform: translateY(-50%) scale(0.95);
}

.lp3-btn-paste .material-symbols-outlined {
    font-size: 24px;
}

/* Mobile responsive for URL form */
@media (max-width: 640px) {
    .lp3-url-input-group {
        flex-direction: column;
        border-radius: 0 !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        gap: 1rem;
        overflow: visible;
    }

    .lp3-url-input-group:hover,
    .lp3-url-input-group:focus-within {
        border-color: transparent !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    .lp3-url-icon {
        display: inline-flex;
        position: absolute;
        left: 1rem;
        top: calc(1.25rem + 0.75rem);
        transform: translateY(-50%);
        padding: 0;
        z-index: 1;
    }

    .lp3-url-input-group {
        position: relative;
    }

    .lp3-url-input-wrapper {
        width: 100%;
        position: relative;
    }

    .lp3-url-input,
    #hero-url-input {
        padding: 1rem 3rem 1rem 2.75rem;
        text-align: left;
        font-size: 1rem;
        background: var(--lp2-white) !important;
        border: 2px solid rgba(0, 0, 0, 0.1) !important;
        border-radius: 50px !important;
        color: #1f2937;
        width: 100%;
    }

    .lp3-btn-paste {
        right: 24px;
        width: 32px;
        height: 32px;
        min-width: 32px;
    }

    .lp3-btn-paste .material-symbols-outlined {
        font-size: 18px;
    }

    .lp3-url-input:focus,
    #hero-url-input:focus {
        border-color: rgba(0, 200, 255, 0.8) !important;
        background: var(--lp2-white) !important;
        outline: none !important;
        box-shadow: 0 0 0 4px rgba(0, 200, 255, 0.25) !important;
    }

    .lp3-url-submit {
        margin: 0;
        padding: 1.25rem 2rem;
        justify-content: center;
        width: 100%;
        font-size: 1rem;
        border-radius: 50px;
    }

    .lp3-url-submit-text {
        flex: 1;
        text-align: center;
    }

    .lp2-hero-meta {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.25rem 0.75rem;
    }
}

/* Advanced Options Toggle */
.lp3-advanced-toggle-wrapper {
    text-align: center;
    margin-top: 0.75rem;
}

.lp3-advanced-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--lp2-gray-400);
    text-decoration: none;
    transition: var(--lp2-transition);
    cursor: pointer;
}

.lp3-advanced-toggle:hover {
    color: var(--lp2-white);
}

.lp3-advanced-toggle i {
    font-size: 0.75rem;
}

.lp3-toggle-hide {
    display: none;
}

.lp3-advanced-toggle[aria-expanded="true"] .lp3-toggle-show {
    display: none;
}

.lp3-advanced-toggle[aria-expanded="true"] .lp3-toggle-hide {
    display: inline;
}

/* Advanced Options Panel */
.lp3-advanced-panel {
    margin-top: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--lp2-radius);
}

.lp3-advanced-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.lp3-advanced-field label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.lp3-advanced-field label small {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--lp2-gray-400);
    letter-spacing: 0.05em;
}

.lp3-advanced-field label i {
    font-size: 0.7rem;
    color: var(--lp2-gray-600);
    cursor: help;
}

.lp3-advanced-select,
.lp3-advanced-input {
    width: 100%;
    padding: 0.625rem 0.875rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    font-size: 0.875rem;
    color: var(--lp2-white);
    transition: var(--lp2-transition);
}

.lp3-advanced-select:focus,
.lp3-advanced-input:focus {
    outline: none;
    border-color: var(--lp2-primary);
    background: rgba(255, 255, 255, 0.1);
}

.lp3-advanced-select option {
    background: var(--lp2-dark);
    color: var(--lp2-white);
}

.lp3-advanced-input::placeholder {
    color: var(--lp2-gray-600);
}

/* Premium Features Grid */
.lp3-premium-features {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.lp3-premium-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--lp2-gray-400);
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.lp3-premium-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.lp3-premium-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-size: 0.75rem;
    color: var(--lp2-gray-400);
    text-decoration: none;
    transition: var(--lp2-transition);
    cursor: pointer;
    white-space: nowrap;
}

.lp3-premium-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--lp2-primary);
    color: var(--lp2-white);
}

.lp3-premium-btn i {
    font-size: 0.7rem;
}

/* Mobile Advanced Options */
@media (max-width: 640px) {
    .lp3-advanced-row {
        grid-template-columns: 1fr;
    }

    .lp3-premium-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp3-advanced-panel {
        padding: 1rem;
    }
}

/* App Carousel Animation (index-3 specific) */
.lp3-app-carousel {
    margin-top: 3rem;
    text-align: center;
}

.lp3-app-carousel-label {
    font-size: 0.875rem;
    color: var(--lp2-gray-400);
    /* margin-bottom: 1.5rem; */
}

.lp3-apps-link {
    color: var(--lp2-white);
    text-decoration: underline;
    font-weight: 700;
    transition: var(--lp2-transition);
}

.lp3-apps-link:hover {
    color: #00C2FF;
    text-decoration: underline;
}

.lp3-app-track-wrapper {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.lp3-app-track {
    display: flex;
    gap: 1.5rem;
    animation: lp3-scroll 30s linear infinite;
    width: max-content;
}

.lp3-app-icon {
    width: 56px;
    height: 56px;
    background: var(--lp2-white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.lp3-app-icon:hover {
    transform: scale(1.1);
}

.lp3-app-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

@keyframes lp3-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 0.75rem));
    }
}

/* Interactive Scrollable Carousel */
.lp3-carousel-interactive {
    margin-top: 2rem;
}

.lp3-carousel-interactive .lp3-app-carousel-label {
    text-align: center;
    margin-bottom: 0.75rem;
}

.lp3-scrollable {
    cursor: grab;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.lp3-scrollable::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.lp3-scrollable:active {
    cursor: grabbing;
}

/* Pause animation on hover for interactive carousels */
.lp3-carousel-interactive .lp3-app-track-wrapper:hover .lp3-app-track,
.lp3-carousel-interactive .lp3-app-track.paused {
    animation-play-state: paused;
}

/* Make clickable icons look clickable */
.lp3-app-icon {
    text-decoration: none;
    color: inherit;
}

a.lp3-app-icon {
    cursor: pointer;
}

a.lp3-app-icon:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

/* Static Pixel Platforms Grid */
.lp-pixel-platforms {
    margin-top: 3rem;
    text-align: center;
}

.lp-pixel-platforms-label {
    font-size: 0.875rem;
    color: var(--lp2-gray-400);
    margin-bottom: 1.25rem;
}

.lp-pixel-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.25rem;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1rem;
}

.lp-pixel-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.lp-pixel-icon {
    width: 48px;
    height: 48px;
    background: var(--lp2-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lp-pixel-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.lp-pixel-item:hover .lp-pixel-icon {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.lp-pixel-item span {
    font-size: 0.65rem;
    color: var(--lp2-gray-300);
    font-weight: 500;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .lp-pixel-grid {
        gap: 0.75rem 0.75rem;
    }

    .lp-pixel-icon {
        width: 40px;
        height: 40px;
    }

    .lp-pixel-icon img {
        width: 24px;
        height: 24px;
    }

    .lp-pixel-item span {
        font-size: 0.55rem;
    }
}

/* App Ecosystem Orbit (alternative hero visual) */
.lp2-ecosystem {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.lp2-ecosystem-label {
    text-align: center;
    font-size: 0.875rem;
    color: var(--lp2-gray-400);
    margin-bottom: 2rem;
}

.lp2-ecosystem-orbit {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
}

.lp2-orbit-ring {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: lp2-rotate 60s linear infinite;
}

.lp2-ring-1 {
    inset: 10%;
}

.lp2-ring-2 {
    inset: 0;
    animation-direction: reverse;
    animation-duration: 80s;
}

@keyframes lp2-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.lp2-app-bubble {
    position: absolute;
    width: 56px;
    height: 56px;
    background: var(--lp2-white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transform: rotate(calc(-1 * var(--position))) translateY(-50%);
    top: 50%;
    left: 50%;
    margin-left: -28px;
    transform-origin: center calc(50% + 140px);
    animation: lp2-counter-rotate 60s linear infinite;
}

.lp2-ring-2 .lp2-app-bubble {
    transform-origin: center calc(50% + 180px);
    animation: lp2-counter-rotate-reverse 80s linear infinite;
}

.lp2-bubble-sm {
    width: 44px;
    height: 44px;
    margin-left: -22px;
    border-radius: 12px;
}

@keyframes lp2-counter-rotate {
    from { transform: rotate(var(--position)) translateX(140px) rotate(calc(-1 * var(--position))); }
    to { transform: rotate(calc(var(--position) + 360deg)) translateX(140px) rotate(calc(-1 * var(--position) - 360deg)); }
}

@keyframes lp2-counter-rotate-reverse {
    from { transform: rotate(var(--position)) translateX(180px) rotate(calc(-1 * var(--position))); }
    to { transform: rotate(calc(var(--position) - 360deg)) translateX(180px) rotate(calc(-1 * var(--position) + 360deg)); }
}

.lp2-app-bubble img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.lp2-bubble-sm img {
    width: 24px;
    height: 24px;
}

.lp2-orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--lp2-white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.lp2-center-logo {
    width: 50px;
    height: auto;
}

/* ============================================
   5. PROBLEM/COMPARISON SECTION
   ============================================ */
.lp2-problem {
    padding: 120px 0;
    background: #F0F4F8;
}

.lp2-problem-visual {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: stretch;
    max-width: 1000px;
    margin: 0 auto;
}

.lp2-problem-card {
    background: var(--lp2-white);
    border-radius: var(--lp2-radius-lg);
    padding: 2rem;
    box-shadow: var(--lp2-shadow-lg);
    position: relative;
    overflow: hidden;
}

.lp2-card-bad {
    border: 2px solid rgba(255, 59, 92, 0.2);
}

.lp2-card-good {
    border: 2px solid rgba(0, 200, 83, 0.2);
}

.lp2-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.lp2-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.lp2-card-bad .lp2-card-icon {
    background: rgba(255, 59, 92, 0.1);
    color: var(--lp2-danger);
}

.lp2-card-good .lp2-card-icon {
    background: rgba(0, 200, 83, 0.1);
    color: var(--lp2-success);
}

.lp2-card-label {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--lp2-dark);
}

.lp2-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.lp2-card-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--lp2-gray-200);
    font-size: 0.95rem;
    color: var(--lp2-gray-600);
}

.lp2-card-list li:last-child {
    border-bottom: none;
}

/* List icons using card-icon style */
.lp2-card-list .lp2-card-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
}

.lp2-card-bad .lp2-card-list .lp2-card-icon {
    background: rgba(255, 59, 92, 0.1);
    color: var(--lp2-danger);
}

.lp2-card-good .lp2-card-list .lp2-card-icon {
    background: rgba(0, 200, 83, 0.1);
    color: var(--lp2-success);
}

.lp2-card-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 59, 92, 0.05);
    border-radius: var(--lp2-radius);
}

.lp2-stat-good {
    background: rgba(0, 200, 83, 0.05);
}

.lp2-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--lp2-danger);
    line-height: 1;
}

.lp2-stat-good .lp2-stat-number {
    color: var(--lp2-success);
}

.lp2-stat-label {
    font-size: 0.875rem;
    color: var(--lp2-gray-600);
}

.lp2-problem-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.lp2-divider-line {
    width: 2px;
    flex: 1;
    background: linear-gradient(to bottom, transparent, var(--lp2-gray-300), transparent);
}

.lp2-divider-text {
    font-weight: 700;
    color: var(--lp2-gray-400);
    font-size: 0.875rem;
}

/* ============================================
   6. USE CASES SECTION
   ============================================ */
.lp2-usecases {
    padding: 120px 0;
    background: #FFFFFF;
}

.lp2-usecase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.lp2-usecase-card {
    background: var(--lp2-gray-100);
    border-radius: var(--lp2-radius-lg);
    overflow: hidden;
    transition: var(--lp2-transition);
    display: flex;
    flex-direction: column;
}

.lp2-usecase-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--lp2-shadow-lg);
}

.lp2-usecase-visual {
    padding: 2rem;
    text-align: center;
    position: relative;
}

.lp2-usecase-card[data-accent="blue"] .lp2-usecase-visual {
    background: linear-gradient(135deg, #0066FF15 0%, #00C2FF10 100%);
}

.lp2-usecase-card[data-accent="red"] .lp2-usecase-visual {
    background: linear-gradient(135deg, #FF3B5C15 0%, #FF8C0010 100%);
}

.lp2-usecase-card[data-accent="green"] .lp2-usecase-visual {
    background: linear-gradient(135deg, #00C85315 0%, #00E5A010 100%);
}

.lp2-usecase-card[data-accent="purple"] .lp2-usecase-visual {
    background: linear-gradient(135deg, #8B5CF615 0%, #A855F710 100%);
}

.lp2-usecase-card[data-accent="orange"] .lp2-usecase-visual {
    background: linear-gradient(135deg, #F9731615 0%, #FFB80010 100%);
}

.lp2-usecase-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--lp2-radius);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--lp2-white);
    margin-bottom: 1.5rem;
}

.lp2-usecase-card[data-accent="blue"] .lp2-usecase-icon {
    background: var(--lp2-gradient-glow);
}

.lp2-usecase-card[data-accent="red"] .lp2-usecase-icon {
    background: linear-gradient(135deg, #FF3B5C 0%, #FF8C00 100%);
}

.lp2-usecase-card[data-accent="green"] .lp2-usecase-icon {
    background: linear-gradient(135deg, #00C853 0%, #00E5A0 100%);
}

.lp2-usecase-card[data-accent="purple"] .lp2-usecase-icon {
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
}

.lp2-usecase-card[data-accent="orange"] .lp2-usecase-icon {
    background: linear-gradient(135deg, #F97316 0%, #FFB800 100%);
}

.lp2-usecase-logos {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.lp2-usecase-logos img {
    height: 28px;
    opacity: 1;
    transition: var(--lp2-transition);
}

.lp2-usecase-card:hover .lp2-usecase-logos img {
    opacity: 1;
}

.lp2-usecase-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.lp2-usecase-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--lp2-dark);
    margin: 0 0 0.75rem;
}

.lp2-usecase-content p {
    font-size: 0.95rem;
    color: var(--lp2-gray-600);
    line-height: 1.6;
    margin: 0 0 1rem;
}

/* Feature list in use cases (index-3 specific) */
.lp3-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.lp3-feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--lp2-gray-600);
    margin-bottom: 0.5rem;
}

.lp3-feature-list li i {
    color: var(--lp2-success);
    font-size: 0.75rem;
}

.lp2-usecase-metric {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.lp2-metric-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--lp2-success);
}

.lp2-metric-label {
    font-size: 0.875rem;
    color: var(--lp2-gray-600);
}

/* Use Cases V2 - Clean Card Design */
.lp2-usecase-card-v2 {
    background: #ffffff;
    border-radius: var(--lp2-radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    font-family: var(--lp2-font);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.lp2-usecase-card-v2:hover {
    box-shadow: var(--lp2-shadow-lg);
}

.lp2-usecase-header-v2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.lp2-usecase-icon-v2 {
    width: 48px;
    height: 48px;
    border-radius: var(--lp2-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.lp2-usecase-header-v2 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--lp2-dark);
    margin: 0;
    font-family: var(--lp2-font);
}

.lp2-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    flex-grow: 1;
}

.lp2-benefits-list li {
    display: block;
    font-size: 0.875rem;
    color: var(--lp2-gray-600);
    margin-bottom: 0.625rem;
    line-height: 1.6;
    padding-left: 1.25rem;
    position: relative;
    font-family: var(--lp2-font);
}

.lp2-benefits-list li:last-child {
    margin-bottom: 0;
}

.lp2-benefits-list li i {
    color: var(--lp2-success);
    font-size: 0.7rem;
    position: absolute;
    left: 0;
    top: 0.3rem;
}

.lp2-benefits-list li strong {
    color: var(--lp2-dark);
    font-weight: 600;
}

.lp2-usecase-logos-v2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    margin-top: auto;
}

.lp2-usecase-logos-v2 img {
    height: 24px;
    /* opacity: 0.6; */
    transition: var(--lp2-transition);
}

.lp2-usecase-card-v2:hover .lp2-usecase-logos-v2 img {
    opacity: 1;
}

/* ============================================
   7. FEATURES BENTO GRID
   ============================================ */
.lp2-features {
    padding: 120px 0;
    background: var(--lp2-dark);
}

.lp2-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.lp2-bento-item {
    background: var(--lp2-gray-900);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--lp2-radius-lg);
    padding: 2rem;
    transition: var(--lp2-transition);
}

.lp2-bento-item:hover {
    border-color: rgba(0, 102, 255, 0.3);
    transform: translateY(-4px);
}

/* Desktop: Show "Learn more" on hover for linked bento items */
a.lp2-bento-item {
    position: relative;
}

a.lp2-bento-item::after {
    content: 'Learn more →';
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    font-size: 0.8rem;
    color: var(--lp2-primary);
    font-weight: 600;
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

a.lp2-bento-item:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.lp2-bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

.lp2-bento-wide {
    grid-column: span 2;
}

.lp2-bento-icon {
    width: 48px;
    height: 48px;
    background: var(--lp2-gradient-glow);
    border-radius: var(--lp2-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--lp2-white);
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.lp2-bento-item h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--lp2-white);
    margin: 0 0 0.75rem;
}

.lp2-bento-item p {
    font-size: 0.95rem;
    color: var(--lp2-gray-400);
    line-height: 1.6;
    margin: 0;
}

.lp2-bento-large h3 {
    font-size: 1.5rem;
}

/* Compact bento items with inline icon and title */
.lp2-bento-compact .lp2-bento-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.lp2-bento-compact .lp2-bento-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 0;
    font-size: 1rem;
}

.lp2-bento-compact h3 {
    margin: 0;
}

.lp2-bento-large.lp2-bento-compact .lp2-bento-icon {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
}

.lp2-bento-large.lp2-bento-compact h3 {
    font-size: 1.5rem;
}

/* Bento Visual Elements */
.lp2-bento-visual {
    margin-top: 2rem;
}

.lp2-code-block {
    background: var(--lp2-darker);
    border-radius: var(--lp2-radius);
    padding: 1.5rem;
    font-family: 'SF Mono', Monaco, monospace;
    font-size: 0.875rem;
}

.lp2-code-line {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--lp2-gray-400);
}

.lp2-code-muted {
    color: var(--lp2-gray-600);
}

.lp2-code-highlight {
    color: var(--lp2-accent);
}

.lp2-code-result {
    color: var(--lp2-success);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.lp2-code-result i {
    margin-right: 0.5rem;
}

/* Featured Bento Card */
.lp2-bento-featured {
    border: 2px solid var(--lp2-primary);
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.15) 0%, var(--lp2-card-bg) 40%);
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.2);
}

.lp2-bento-featured:hover {
    box-shadow: 0 0 40px rgba(0, 102, 255, 0.3);
}

.lp2-bento-badge {
    background: var(--lp2-primary);
    color: white;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: auto;
}

/* Visual Row Layout */
.lp2-bento-visual-row {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

/* App Honeycomb */
.lp2-app-honeycomb {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex-shrink: 0;
    align-items: center;
}

.lp2-honeycomb-row {
    display: flex;
    gap: 4px;
    justify-content: center;
}

.lp2-honeycomb-offset {
    margin-left: 20px;
}

.lp2-app-honeycomb img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 5px;
    transition: transform 0.2s ease;
}

.lp2-app-honeycomb img:hover {
    transform: scale(1.15);
}

/* Bonus Feature Row (index-3 specific) */
.lp3-bonus-feature {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 194, 255, 0.05) 100%);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: var(--lp2-radius-lg);
    padding: 2rem;
    /* margin-top: 2rem; */
}

.lp3-bonus-icon {
    width: 64px;
    height: 64px;
    background: var(--lp2-gradient-glow);
    border-radius: var(--lp2-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--lp2-white);
    flex-shrink: 0;
}

.lp3-bonus-content {
    flex: 1;
}

.lp3-bonus-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--lp2-white);
    margin: 0 0 0.5rem;
}

.lp3-bonus-content p {
    font-size: 0.95rem;
    color: var(--lp2-gray-400);
    margin: 0;
}

.lp3-bonus-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--lp2-radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--lp2-white);
    text-decoration: none;
    transition: var(--lp2-transition);
    white-space: nowrap;
}

.lp3-bonus-cta:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--lp2-white);
}

/* Bonus Row 50/50 Layout (index-3 specific) */
.lp3-bonus-row {
    display: flex;
    gap: 1.5rem;
    margin-top: 4rem;
}

.lp3-bonus-half {
    flex: 1;
    min-width: 0;
}

.lp3-bonus-coming-soon {
    opacity: 0.85;
}

.lp3-coming-soon-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--lp2-accent);
    color: var(--lp2-dark);
    padding: 0.25rem 0.5rem;
    border-radius: var(--lp2-radius-full);
    margin-left: 0.5rem;
    vertical-align: middle;
}

.lp3-cta-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lp3-cta-disabled:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Pricing Note (index-3 specific) */
.lp3-pricing-note {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--lp2-radius);
}

.lp3-pricing-note p {
    margin: 0;
    font-size: 1rem;
    color: var(--lp2-gray-400);
}

.lp3-pricing-note strong {
    color: var(--lp2-white);
}

/* Features CTA (index-3 specific) */
.lp3-features-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Light variant for features section */
.lp2-features-light {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.lp2-features-light .lp2-section-title {
    color: var(--lp2-dark);
}

.lp2-features-light .lp2-section-sub {
    color: var(--lp2-gray-600);
}

.lp2-features-light .lp2-overline {
    background: rgba(0, 102, 255, 0.1);
    color: var(--lp2-primary);
}

.lp2-features-light .lp2-bento-item {
    background: var(--lp2-white);
    border: 1px solid var(--lp2-gray-200);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.lp2-features-light .lp2-bento-item:hover {
    border-color: var(--lp2-primary);
    box-shadow: 0 8px 32px rgba(0, 102, 255, 0.12);
}

.lp2-features-light .lp2-bento-item h3 {
    color: var(--lp2-dark);
}

.lp2-features-light .lp2-bento-item p {
    color: var(--lp2-gray-600);
}

.lp2-features-light .lp2-code-block {
    background: var(--lp2-gray-100);
}

.lp2-features-light .lp2-code-line {
    color: var(--lp2-gray-700);
}

.lp2-features-light .lp2-code-muted {
    color: var(--lp2-gray-500);
}

.lp2-features-light .lp2-code-result {
    border-top-color: var(--lp2-gray-200);
}

/* ============================================
   8. TESTIMONIALS/SOCIAL PROOF SECTION
   ============================================ */
.lp2-proof {
    padding: 120px 0;
    background: #FFFBF8;
}

.lp2-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.lp2-testimonial {
    background: var(--lp2-white);
    border-radius: var(--lp2-radius-lg);
    padding: 2rem;
    box-shadow: var(--lp2-shadow);
    transition: var(--lp2-transition);
}

.lp2-testimonial:hover {
    box-shadow: var(--lp2-shadow-lg);
    transform: translateY(-4px);
}

.lp2-testimonial-content p {
    font-size: 1rem;
    color: var(--lp2-dark);
    line-height: 1.7;
    margin: 0 0 1.5rem;
    font-style: italic;
}

.lp2-testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.lp2-author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: hsl(var(--hue), 70%, 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--lp2-white);
    font-size: 0.875rem;
}

.lp2-author-info {
    flex: 1;
}

.lp2-author-info strong {
    display: block;
    font-size: 0.95rem;
    color: var(--lp2-dark);
}

.lp2-author-info span {
    font-size: 0.875rem;
    color: var(--lp2-gray-600);
}

.lp2-author-stats {
    width: 100%;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--lp2-gray-200);
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.lp2-stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 200, 83, 0.1);
    padding: 0.5rem 1rem;
    border-radius: var(--lp2-radius-full);
    font-size: 0.875rem;
    color: var(--lp2-gray-600);
}

.lp2-stat-pill span {
    font-weight: 700;
    color: var(--lp2-success);
}

/* Proof CTA (index-3 specific) */
.lp3-proof-cta {
    text-align: center;
    margin-bottom: 3rem;
}

.lp3-proof-cta p {
    font-size: 1.25rem;
    color: var(--lp2-gray-600);
    margin: 0;
}

.lp3-proof-cta strong {
    color: var(--lp2-primary);
}

/* Trust Bar */
.lp2-trust-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.lp2-trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--lp2-gray-600);
}

.lp2-trust-item img {
    height: 24px;
}

.lp2-trust-item i {
    font-size: 1.25rem;
    color: var(--lp2-primary);
}

.lp2-trust-divider {
    width: 1px;
    height: 24px;
    background: var(--lp2-gray-300);
}

/* ============================================
   9. FAQ SECTION
   ============================================ */
.lp2-faq {
    padding: 120px 0;
    background: #F7F8FA;
}

.lp2-faq-intro {
    position: sticky;
    top: 120px;
}

.lp2-faq-intro p {
    color: var(--lp2-gray-600);
    margin-bottom: 1.5rem;
}

.lp2-faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lp2-faq-item {
    background: var(--lp2-gray-100);
    border-radius: var(--lp2-radius);
    overflow: hidden;
}

.lp2-faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--lp2-dark);
    cursor: pointer;
    text-align: left;
    transition: var(--lp2-transition);
}

.lp2-faq-trigger:hover {
    color: var(--lp2-primary);
}

.lp2-faq-trigger i {
    transition: var(--lp2-transition);
}

.lp2-faq-trigger[aria-expanded="true"] i {
    transform: rotate(45deg);
}

.lp2-faq-content {
    padding: 0 1.5rem 1.5rem;
}

.lp2-faq-content p {
    margin: 0;
    color: var(--lp2-gray-600);
    line-height: 1.7;
}

/* ============================================
   10. FINAL CTA SECTION
   ============================================ */
.lp2-cta-final {
    position: relative;
    padding: 120px 0;
    background: var(--lp2-dark);
    overflow: hidden;
}

.lp2-cta-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(0, 102, 255, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 100%, rgba(255, 184, 0, 0.1) 0%, transparent 60%);
}

.lp2-cta-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--lp2-white);
    border-radius: 50%;
    opacity: 0.3;
    animation: lp2-float 10s ease-in-out infinite;
}

.lp2-cta-particles span:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.lp2-cta-particles span:nth-child(2) { left: 30%; top: 60%; animation-delay: -2s; }
.lp2-cta-particles span:nth-child(3) { left: 50%; top: 30%; animation-delay: -4s; }
.lp2-cta-particles span:nth-child(4) { left: 70%; top: 70%; animation-delay: -6s; }
.lp2-cta-particles span:nth-child(5) { left: 90%; top: 40%; animation-delay: -8s; }

@keyframes lp2-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.lp2-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.lp2-cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--lp2-white);
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
}

.lp2-cta-sub {
    font-size: 1.125rem;
    color: var(--lp2-gray-400);
    margin: 0 0 2rem;
}

.lp2-cta-note {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--lp2-gray-600);
}

/* CTA Tagline (index-3 specific) */
.lp3-cta-tagline {
    margin-top: 1rem;
    font-size: 1rem;
    color: var(--lp2-accent);
}

/* ============================================
   11. UTILITY COMPONENTS
   ============================================ */

/* Generic Section Padding */
.lp2-section {
    padding: 60px 0;
}

.lp2-section-light {
    background: var(--lp2-white);
}

.lp2-section-gray {
    background: var(--lp2-gray-100);
}

.lp2-section-dark {
    background: var(--lp2-dark);
}

/* ============================================
   12. RESPONSIVE BREAKPOINTS
   ============================================ */
@media (max-width: 1199px) {
    .lp2-bento {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp2-bento-large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 991px) {
    .lp2-usecase-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .lp2-usecase-grid-v2 {
        max-width: 100%;
    }

    .lp2-usecase-card-v2 {
        padding: 1.5rem;
    }

    .lp2-problem-visual {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .lp2-problem-divider {
        flex-direction: row;
        padding: 1rem 0;
    }

    .lp2-divider-line {
        width: auto;
        height: 2px;
        flex: 1;
    }

    .lp2-testimonials {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 3rem;
    }

    .lp2-faq-intro {
        position: static;
        text-align: center;
        margin-bottom: 3rem;
    }

    .lp2-faq-intro .lp2-section-title {
        text-align: center;
    }

    .lp2-ecosystem-orbit {
        max-width: 350px;
        margin: 0 auto;
    }

    .lp3-bonus-feature {
        flex-direction: column;
        text-align: center;
    }

    .lp3-bonus-content {
        text-align: center;
    }
}

@media (max-width: 767px) {
    html, body {
        overflow-x: hidden;
    }

    .lp2-hero {
        min-height: auto;
        padding: 60px 0 40px;
    }

    .lp2-bento {
        grid-template-columns: 1fr;
        max-width: 100%;
        overflow: hidden;
        gap: 1rem;
    }

    .lp2-bento-item {
        max-width: 100%;
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
        overflow: hidden;
    }

    .lp2-bento-large,
    .lp2-bento-wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    /* Fix bento compact items on mobile - keep header inline (icon left, text right) */
    .lp2-bento-item {
        display: block !important;
        flex-direction: column !important;
    }

    .lp2-bento-compact .lp2-bento-header {
        display: flex;
        flex-direction: row;
        align-items: center;
        text-align: left;
    }

    .lp2-bento-compact .lp2-bento-icon {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    /* Mobile: Hide default hover text for linked bento items */
    a.lp2-bento-item::after {
        display: none;
    }

    /* Mobile: Expanded state for linked bento items (tap once to expand, tap again to navigate) */
    a.lp2-bento-item.lp2-bento-expanded {
        border-color: var(--lp2-primary);
        box-shadow: 0 0 20px rgba(0, 102, 255, 0.3), 0 8px 32px rgba(0, 0, 0, 0.3);
        transform: scale(1.02);
    }

    a.lp2-bento-item.lp2-bento-expanded::after {
        display: block;
        content: 'Tap to visit →';
        position: static;
        bottom: 12px;
        right: 16px;
        font-size: 0.85rem;
        color: var(--lp2-primary);
        font-weight: 500;
        opacity: 1;
        margin-top: 1em;
    }

    .lp2-bento-visual {
        margin-top: 1.5rem;
        max-width: 100%;
        overflow: hidden;
    }

    .lp2-bento-visual-row {
        flex-direction: column;
        gap: 1rem;
    }

    .lp2-app-honeycomb {
        display: none;
    }

    .lp2-bento-badge {
        font-size: 0.55rem;
        padding: 0.2rem 0.5rem;
    }

    .lp2-usecase-visual {
        max-width: 100%;
        overflow: hidden;
    }

    .lp2-usecase-card {
        max-width: 100%;
        overflow: hidden;
        display: block !important;
        flex-direction: column !important;
    }

    .lp2-usecase-visual {
        width: 100%;
        order: 1;
    }

    .lp2-usecase-content {
        width: 100%;
        order: 2;
    }

    .lp2-usecase-logos {
        flex-wrap: wrap;
    }

    .lp2-trust-bar {
        flex-direction: column;
        gap: 1rem;
    }

    .lp2-trust-divider {
        display: none;
    }

    .lp2-hero-meta {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.25rem 0.75rem;
    }

    .lp2-ecosystem {
        display: none;
    }

    .lp2-problem, .lp2-usecases, .lp2-features, .lp2-proof, .lp2-faq, .lp2-cta-final {
        padding: 80px 0;
        overflow-x: hidden;
    }

    .lp2-btn-large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .lp3-trust-badge {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
    }

    .lp3-trust-divider {
        display: none;
    }

    .lp3-app-icon {
        width: 48px;
        height: 48px;
    }

    .lp3-app-icon img {
        width: 28px;
        height: 28px;
    }

    .lp3-app-track {
        gap: 1rem;
    }

    .lp3-bonus-row {
        flex-direction: column;
        gap: 0.75rem;
    }

    .lp3-bonus-feature {
        flex-direction: row;
        text-align: left;
        padding: 1rem;
        gap: 0.75rem;
    }

    .lp3-bonus-feature .lp3-bonus-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1rem;
    }

    .lp3-bonus-content {
        text-align: left;
    }

    .lp3-bonus-content h4 {
        font-size: 0.95rem;
        margin-bottom: 0.25rem;
    }

    .lp3-bonus-content p {
        font-size: 0.8rem;
        display: none;
    }

    .lp3-bonus-cta {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
        white-space: nowrap;
    }

    /* Mobile: Use Case Cards - Expandable Benefits */
    .lp2-usecase-header-v2 {
        cursor: pointer;
        position: relative;
    }

    .lp2-usecase-card-v2:not(.expanded) .lp2-usecase-header-v2 {
        margin-bottom: 0;
    }

    .lp2-usecase-chevron {
        margin-left: auto;
        font-size: 0.9rem;
        color: rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
    }

    .lp2-usecase-card-v2.expanded .lp2-usecase-chevron {
        transform: rotate(180deg);
    }

    .lp2-usecase-card-v2 .lp2-benefits-list {
        display: none;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .lp2-usecase-card-v2.expanded .lp2-benefits-list {
        display: block;
    }

    .lp2-usecase-card-v2 .lp2-usecase-logos-v2 {
        display: none;
        justify-content: center;
    }

    .lp2-usecase-card-v2.expanded .lp2-usecase-logos-v2 {
        display: flex;
    }

    .lp2-usecase-cta {
        display: block;
        text-align: center;
        margin-top: 1rem;
        padding: 0.75rem 1rem;
        background: var(--lp2-primary);
        color: white;
        border-radius: var(--lp2-radius);
        text-decoration: none;
        font-weight: 600;
        font-size: 0.9rem;
    }

    .lp2-usecase-card-v2:not(.expanded) .lp2-usecase-cta {
        display: none;
    }
}

/* Desktop: Hide mobile-only elements */
@media (min-width: 768px) {
    .lp2-usecase-chevron {
        display: none;
    }

    .lp2-usecase-cta {
        display: none;
    }

    .lp2-usecase-logos-v2 {
        justify-content: center;
    }

    .lp2-usecase-header-v2 {
        cursor: default;
    }
}

/* ============================================
   PRICING PAGE STYLES
   ============================================ */

/* Pricing Section */
.lp2-pricing {
    background: var(--lp2-gray-100);
    min-height: 100vh;
}

/* Pricing Toggle */
.lp2-pricing-toggle-wrapper {
    display: flex;
    justify-content: center;
}

.lp2-pricing-toggle {
    display: inline-flex;
    background: var(--lp2-white);
    border-radius: var(--lp2-radius-full);
    padding: 0.5rem;
    box-shadow: var(--lp2-shadow);
}

.lp2-toggle-btn {
    position: relative;
    padding: 0.75rem 1.5rem;
    border: none;
    background: transparent;
    border-radius: var(--lp2-radius-full);
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--lp2-gray-600);
    cursor: pointer;
    transition: var(--lp2-transition);
}

.lp2-toggle-btn:hover {
    color: var(--lp2-dark);
}

.lp2-toggle-btn.lp2-toggle-active {
    background: var(--lp2-gradient-glow);
    color: var(--lp2-white);
}

.lp2-toggle-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--lp2-danger);
    color: var(--lp2-white);
    font-size: 0.625rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: var(--lp2-radius-full);
    white-space: nowrap;
}

/* Pricing Grid */
.lp2-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 991px) {
    .lp2-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
}

/* Pricing Card */
.lp2-pricing-card {
    position: relative;
    background: var(--lp2-white);
    border-radius: var(--lp2-radius-lg);
    padding: 2rem;
    box-shadow: var(--lp2-shadow);
    transition: var(--lp2-transition);
}

.lp2-pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--lp2-shadow-lg);
}

.lp2-pricing-featured {
    border: 2px solid var(--lp2-primary);
    background: linear-gradient(180deg, rgba(0, 102, 255, 0.04) 0%, var(--lp2-white) 100%);
}

.lp2-pricing-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--lp2-gradient-glow);
    color: var(--lp2-white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: var(--lp2-radius-full);
    white-space: nowrap;
}

.lp2-pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--lp2-dark);
    margin: 0 0 0.5rem;
}

.lp2-pricing-header p {
    font-size: 0.875rem;
    color: var(--lp2-gray-600);
    margin: 0 0 1.5rem;
}

/* Pricing Price */
.lp2-pricing-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.lp2-price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--lp2-dark);
    line-height: 1;
}

.lp2-price-period {
    font-size: 1rem;
    color: var(--lp2-gray-600);
    margin-left: 0.25rem;
}

.lp2-pricing-billing {
    font-size: 0.8125rem;
    color: var(--lp2-gray-600);
    margin-bottom: 1.5rem;
    min-height: 2.5rem;
}

/* Pricing Features List */
.lp2-pricing-features {
    list-style: none;
    padding: 1.5rem 0 0;
    margin: 0;
}

.lp2-pricing-features li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    font-size: 0.9375rem;
    color: var(--lp2-gray-600);
}

.lp2-pricing-features li:not(:last-child) {
    border-bottom: 1px solid var(--lp2-gray-100);
}

.lp2-feature-value {
    font-weight: 600;
    color: var(--lp2-dark);
}

.lp2-feature-yes {
    color: var(--lp2-success);
}

.lp2-feature-no {
    color: var(--lp2-danger);
}

/* Feature Info Tooltips */
.lp2-feature-info {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.lp2-feature-info .lp2-info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    font-size: 0.6rem;
    color: var(--lp2-gray-500);
    background: transparent;
    border: 1.5px solid var(--lp2-gray-400);
    border-radius: 50%;
    cursor: help;
    transition: var(--lp2-transition);
    flex-shrink: 0;
    margin-left: 4px;
}

.lp2-feature-info .lp2-info-icon:hover {
    color: var(--lp2-primary);
    border-color: var(--lp2-primary);
    background: rgba(90, 126, 255, 0.1);
}

/* Custom tooltip for pricing features */
.lp2-tooltip-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.lp2-tooltip-wrapper .lp2-tooltip-text {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    padding: 0.75rem 1rem;
    background: var(--lp2-dark);
    color: var(--lp2-white);
    font-size: 0.8125rem;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    border-radius: var(--lp2-radius-sm);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    pointer-events: none;
}

.lp2-tooltip-wrapper .lp2-tooltip-text::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: var(--lp2-dark) transparent transparent transparent;
}

.lp2-tooltip-wrapper:hover .lp2-tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* Position adjustments for edge cases */
.lp2-pricing-features .lp2-tooltip-wrapper .lp2-tooltip-text {
    left: 0;
    transform: translateX(0);
}

.lp2-pricing-features .lp2-tooltip-wrapper .lp2-tooltip-text::after {
    left: 12px;
    transform: translateX(0);
}

/* Button Styles for Pricing */
.lp2-btn-glow.w-100,
.lp2-btn-success.w-100,
.lp2-btn-disabled.w-100 {
    justify-content: center;
    margin-bottom: 0;
}

.lp2-btn-success {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--lp2-success);
    border: none;
    border-radius: var(--lp2-radius-full);
    font-size: 1rem;
    font-weight: 600;
    color: var(--lp2-white);
    cursor: pointer;
    transition: var(--lp2-transition);
}

.lp2-btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px -10px rgba(0, 200, 83, 0.5);
}

.lp2-btn-disabled {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--lp2-gray-300);
    border: none;
    border-radius: var(--lp2-radius-full);
    font-size: 1rem;
    font-weight: 600;
    color: var(--lp2-gray-600);
    cursor: not-allowed;
    opacity: 0.6;
}

.lp2-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: transparent;
    border: 2px solid var(--lp2-primary);
    border-radius: var(--lp2-radius-full);
    font-size: 1rem;
    font-weight: 600;
    color: var(--lp2-primary);
    text-decoration: none;
    cursor: pointer;
    transition: var(--lp2-transition);
}

.lp2-btn-outline:hover {
    background: var(--lp2-primary);
    color: var(--lp2-white);
}

/* All Plans Include Card */
.lp2-all-plans-card {
    background: var(--lp2-white);
    border-radius: var(--lp2-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--lp2-shadow);
}

.lp2-all-plans-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--lp2-gray-200);
}

.lp2-all-plans-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--lp2-dark);
    margin: 0;
}

.lp2-all-plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 991px) {
    .lp2-all-plans-grid {
        grid-template-columns: 1fr;
    }
}

.lp2-include-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.lp2-include-item:last-child {
    margin-bottom: 0;
}

.lp2-include-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.lp2-include-icon i {
    color: var(--lp2-primary);
    font-size: 1rem;
}

.lp2-include-content h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--lp2-dark);
    margin: 0 0 0.25rem;
}

.lp2-include-content p {
    font-size: 0.875rem;
    color: var(--lp2-gray-600);
    margin: 0;
    line-height: 1.5;
}

/* Free Plan Card */
.lp2-free-plan-card {
    background: var(--lp2-white);
    border-radius: var(--lp2-radius-lg);
    box-shadow: var(--lp2-shadow);
    border: 1px solid var(--lp2-gray-200);
    overflow: hidden;
}

.lp2-free-plan-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

@media (max-width: 991px) {
    .lp2-free-plan-grid {
        grid-template-columns: 1fr;
    }
}

.lp2-free-plan-info,
.lp2-free-plan-included,
.lp2-free-plan-excluded {
    padding: 2rem;
}

.lp2-free-plan-info {
    background: var(--lp2-gray-100);
}

.lp2-free-plan-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--lp2-dark);
    margin: 0 0 0.5rem;
}

.lp2-free-plan-info > p {
    font-size: 0.875rem;
    color: var(--lp2-gray-600);
    margin: 0 0 1rem;
}

.lp2-free-plan-included h5,
.lp2-free-plan-excluded h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--lp2-dark);
    margin: 0 0 1rem;
}

.lp2-free-plan-included ul,
.lp2-free-plan-excluded ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lp2-free-plan-included li,
.lp2-free-plan-excluded li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    color: var(--lp2-gray-600);
}

.lp2-free-plan-included i {
    color: var(--lp2-success);
}

.lp2-free-plan-excluded i {
    color: var(--lp2-danger);
}

/* Notice Card */
.lp2-notice-card {
    display: flex;
    gap: 1rem;
    background: var(--lp2-white);
    border-radius: var(--lp2-radius);
    padding: 1.5rem;
    box-shadow: var(--lp2-shadow);
    max-width: 800px;
    margin: 0 auto 2rem;
}

.lp2-notice-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.lp2-notice-icon i {
    color: var(--lp2-primary);
    font-size: 1.5rem;
}

.lp2-notice-content h6 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--lp2-dark);
    margin: 0 0 0.5rem;
}

.lp2-notice-content p {
    font-size: 0.9375rem;
    color: var(--lp2-gray-600);
    margin: 0;
}

/* Pricing Page Responsive */
@media (max-width: 767px) {
    .lp2-pricing-toggle {
        flex-wrap: wrap;
        justify-content: center;
    }

    .lp2-toggle-btn {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }

    .lp2-toggle-badge {
        position: static;
        margin-left: 0.5rem;
    }

    .lp2-pricing-card {
        padding: 1.5rem;
    }

    .lp2-price-amount {
        font-size: 2.5rem;
    }

    .lp2-all-plans-card {
        padding: 1.5rem;
    }

    .lp2-free-plan-info,
    .lp2-free-plan-included,
    .lp2-free-plan-excluded {
        padding: 1.5rem;
    }
}

/* ============================================
   13. DARK BACKGROUND TEXT CONTRAST FIX
   ============================================ */
/*
 * All gray text on dark backgrounds should be WHITE for readability.
 * Dark sections: .lp2-hero, .lp2-features, .lp2-cta-final, .lp2-section-dark
 *
 * PRESERVED accent colors (yellow):
 * - .lp2-highlight (gradient text)
 * - .lp2-code-highlight (yellow code)
 * - .lp3-cta-tagline (yellow tagline)
 * - .lp2-intro-light .lp2-overline (yellow overline)
 */

/* ---- HERO SECTION ---- */
.lp2-hero p,
.lp2-hero span:not(.lp2-highlight):not(.lp2-btn-text):not(.lp2-overline),
.lp2-hero li,
.lp2-hero label {
    color: var(--lp2-white);
}

/* Override hero white text for paste button icon */
.lp2-hero .lp3-btn-paste .material-symbols-outlined {
    color: #9ca3af !important;
}

.lp2-hero-lead {
    color: var(--lp2-white);
}

.lp2-meta-item,
.lp2-floating-badge,
.lp3-trust-item,
.lp3-app-carousel-label {
    color: var(--lp2-white);
}

.lp3-app-carousel-label a {
    color: var(--lp2-white);
    text-decoration: underline;
}

.lp3-app-carousel-label a:hover {
    color: var(--lp2-white);
    text-decoration: underline;
    opacity: 0.85;
}

/* ---- FEATURES/BENTO SECTION ---- */
.lp2-features p,
.lp2-features span:not(.lp2-code-highlight):not(.lp2-btn-text):not(.lp2-overline),
.lp2-features li,
.lp2-features label {
    color: var(--lp2-white);
}

.lp2-features .lp2-section-sub {
    color: var(--lp2-white);
}

.lp2-bento-item p {
    color: var(--lp2-white);
}

.lp2-code-line {
    color: var(--lp2-white);
}

.lp2-code-muted {
    color: var(--lp2-gray-300);
}

.lp3-bonus-content p,
.lp3-pricing-note p,
.lp3-pricing-note strong {
    color: var(--lp2-white);
}

/* ---- FINAL CTA SECTION ---- */
.lp2-cta-final p:not(.lp3-cta-tagline),
.lp2-cta-final span:not(.lp2-btn-text),
.lp2-cta-final li,
.lp2-cta-final label {
    color: var(--lp2-white);
}

.lp2-cta-sub {
    color: var(--lp2-white);
}

.lp2-cta-note {
    color: var(--lp2-white);
}

/* ---- GENERIC DARK SECTION ---- */
.lp2-section-dark p,
.lp2-section-dark span,
.lp2-section-dark li,
.lp2-section-dark label {
    color: var(--lp2-white);
}

/* Ecosystem label (if used) */
.lp2-ecosystem-label {
    color: var(--lp2-white);
}

/* Ensure intro text in dark sections has good contrast */
.lp2-intro-light .lp2-section-sub {
    color: var(--lp2-white);
}

/* ============================================
   14. MOBILE COLLAPSIBLE BENTO ITEMS
   ============================================ */
/* On mobile, bento items collapse to show only header with expand arrow */

@media (max-width: 767px) {
    /* Make bento items collapsible */
    .lp2-bento-item {
        position: relative;
        cursor: pointer;
    }

    /* Add expand arrow to compact header */
    .lp2-bento-compact .lp2-bento-header {
        position: relative;
        padding-right: 2.5rem;
    }

    .lp2-bento-compact .lp2-bento-header::after {
        content: '\f078'; /* Font Awesome chevron-down */
        font-family: 'Font Awesome 6 Free', 'Font Awesome 5 Free', 'FontAwesome';
        font-weight: 900;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        font-size: 0.875rem;
        color: var(--lp2-gray-400);
        transition: transform 0.3s ease;
    }

    /* Add expand arrow to non-compact h3 (items without .lp2-bento-compact) */
    .lp2-bento-item:not(.lp2-bento-compact) > h3 {
        position: relative;
        padding-right: 2rem;
    }

    .lp2-bento-item:not(.lp2-bento-compact) > h3::after {
        content: '\f078'; /* Font Awesome chevron-down */
        font-family: 'Font Awesome 6 Free', 'Font Awesome 5 Free', 'FontAwesome';
        font-weight: 900;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        font-size: 0.75rem;
        color: var(--lp2-gray-400);
        transition: transform 0.3s ease;
    }

    /* Rotate arrow when expanded */
    .lp2-bento-item.lp2-bento-expanded .lp2-bento-header::after,
    .lp2-bento-item.lp2-bento-expanded:not(.lp2-bento-compact) > h3::after {
        transform: translateY(-50%) rotate(180deg);
    }

    /* Hide content by default on mobile */
    .lp2-bento-item > p,
    .lp2-bento-item .lp2-bento-visual {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        margin: 0;
        padding: 0;
        transition: max-height 0.3s ease, opacity 0.3s ease, margin 0.3s ease;
    }

    /* Show content when expanded */
    .lp2-bento-item.lp2-bento-expanded > p {
        max-height: 200px;
        opacity: 1;
        margin-top: 0;
    }

    .lp2-bento-item.lp2-bento-expanded .lp2-bento-visual {
        max-height: 500px;
        opacity: 1;
        margin-top: 1.5rem;
    }

    /* Reduce padding on collapsed items */
    .lp2-bento-item {
        padding: 1.25rem;
    }

    .lp2-bento-item.lp2-bento-expanded {
        padding: 1.5rem;
    }

    /* Adjust compact header margin when collapsed */
    .lp2-bento-compact .lp2-bento-header {
        margin-bottom: 0;
    }

    .lp2-bento-item.lp2-bento-expanded .lp2-bento-header {
        margin-bottom: 1rem;
    }

    /* Adjust non-compact h3 margin when collapsed */
    .lp2-bento-item:not(.lp2-bento-compact) > h3 {
        margin-bottom: 0;
    }

    .lp2-bento-item.lp2-bento-expanded:not(.lp2-bento-compact) > h3 {
        margin-bottom: 0.75rem;
    }
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.lp2-howitworks {
    padding: 100px 0;
    background: linear-gradient(180deg, #E8F4FD 0%, #F0F7FF 50%, #F8FBFF 100%);
    position: relative;
}

.lp2-howitworks::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.2), transparent);
}

/* 3 Steps Grid */
.lp2-steps-grid {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 24px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.lp2-step {
    background: white;
    border-radius: var(--lp2-radius-lg);
    padding: 48px 32px 32px;
    text-align: center;
    position: relative;
    flex: 1;
    min-width: 280px;
    max-width: 340px;
    box-shadow: 0 8px 32px rgba(0, 102, 255, 0.08);
    transition: var(--lp2-transition);
    border: 1px solid rgba(0, 102, 255, 0.08);
}

.lp2-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 102, 255, 0.15);
    border-color: rgba(0, 102, 255, 0.15);
}

.lp2-step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    background: var(--lp2-gradient-glow);
    color: white;
    font-weight: 800;
    font-size: 1.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.35);
    border: 3px solid white;
}

.lp2-step h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--lp2-dark);
    margin-bottom: 12px;
    margin-top: 8px;
}

.lp2-step p {
    color: var(--lp2-gray-600);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.lp2-step-note {
    display: block;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--lp2-gray-200);
    font-size: 0.8rem;
    color: var(--lp2-gray-400);
    line-height: 1.5;
}

.lp2-step-note a {
    color: var(--lp2-primary);
    text-decoration: none;
}

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

.lp2-step-arrow {
    color: var(--lp2-primary);
    font-size: 1.5rem;
    opacity: 0.4;
    align-self: center;
}

/* Section Divider */
.lp2-section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.15), transparent);
    margin: 48px 0;
}

/* Flow Diagram Section */
.lp2-flow-title {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--lp2-dark);
    margin-bottom: 24px;
}

.lp2-flow-section {
    background: white;
    border-radius: var(--lp2-radius-lg);
    padding: 40px 48px;
    box-shadow: 0 8px 40px rgba(0, 102, 255, 0.08);
    border: 1px solid rgba(0, 102, 255, 0.06);
    position: relative;
    overflow: hidden;
}

.lp2-flow-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--lp2-gradient-glow);
}

.lp2-flow-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.lp2-flow-node {
    background: var(--lp2-gray-100);
    border-radius: var(--lp2-radius);
    padding: 28px 24px;
    text-align: center;
    min-width: 160px;
    transition: var(--lp2-transition);
}

.lp2-flow-node:hover {
    transform: translateY(-2px);
}

.lp2-flow-node-icons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 16px;
}

.lp2-flow-node-icons i {
    font-size: 1.4rem;
    color: var(--lp2-gray-500);
    transition: var(--lp2-transition);
}

.lp2-flow-node:hover .lp2-flow-node-icons i {
    color: var(--lp2-primary);
}

.lp2-flow-node-icon {
    width: 56px;
    height: 56px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.lp2-flow-node-icon i {
    font-size: 1.4rem;
    color: var(--lp2-primary);
}

/* Logo in detection node */
.lp2-flow-logo {
    background: var(--lp2-gradient-glow) !important;
    padding: 12px;
}

.lp2-flow-logo img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.lp2-flow-logo i {
    color: white !important;
    font-size: 1.5rem;
}

.lp2-flow-node span {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--lp2-dark);
    line-height: 1.4;
}

.lp2-flow-node small {
    display: block;
    font-size: 0.8rem;
    color: var(--lp2-gray-500);
    margin-top: 6px;
}

.lp2-flow-source {
    border: 2px solid var(--lp2-gray-200);
    background: linear-gradient(135deg, #FAFBFC 0%, #F5F7FA 100%);
}

.lp2-flow-detection {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.08) 0%, rgba(0, 194, 255, 0.08) 100%);
    border: 2px solid var(--lp2-primary);
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.15);
}

.lp2-flow-detection .lp2-flow-node-icon {
    background: var(--lp2-gradient-glow);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.3);
}

.lp2-flow-detection .lp2-flow-node-icon i {
    color: white;
}

.lp2-flow-detection:hover {
    transform: scale(1.08);
}

.lp2-flow-detection:hover .lp2-flow-node-icon {
    transform: scale(1.15);
    box-shadow: 0 8px 28px rgba(0, 102, 255, 0.4);
}

/* Flow Arrows */
.lp2-flow-arrow {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--lp2-primary);
}

.lp2-flow-arrow-line {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--lp2-primary), rgba(0, 194, 255, 0.8));
    border-radius: 2px;
    opacity: 0.6;
}

.lp2-flow-arrow i {
    font-size: 1rem;
    animation: pulse-arrow 2s ease-in-out infinite;
}

@keyframes pulse-arrow {
    0%, 100% { opacity: 0.6; transform: translateX(0); }
    50% { opacity: 1; transform: translateX(3px); }
}

/* Flow Branch */
.lp2-flow-branch {
    display: flex;
    flex-direction: column;
    gap: 48px;
    position: relative;
    padding-left: 8px;
}

.lp2-flow-branch::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 75%;
    background: linear-gradient(180deg, var(--lp2-success), var(--lp2-gray-300));
    border-radius: 2px;
    opacity: 0.5;
}

.lp2-flow-branch-top,
.lp2-flow-branch-bottom {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lp2-flow-branch-top .lp2-flow-arrow-line,
.lp2-flow-branch-bottom .lp2-flow-arrow-line {
    width: 32px;
}

.lp2-flow-condition {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: var(--lp2-radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lp2-flow-yes {
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.2) 0%, rgba(0, 200, 83, 0.1) 100%);
    color: var(--lp2-success);
    border: 1px solid rgba(0, 200, 83, 0.3);
}

.lp2-flow-no {
    background: linear-gradient(135deg, rgba(107, 114, 128, 0.15) 0%, rgba(107, 114, 128, 0.08) 100%);
    color: var(--lp2-gray-600);
    border: 1px solid rgba(107, 114, 128, 0.2);
}

/* Flow Results */
.lp2-flow-results {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lp2-flow-result {
    min-width: 180px;
}

.lp2-flow-app {
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.12) 0%, rgba(0, 200, 83, 0.04) 100%);
    border: 2px solid var(--lp2-success);
    box-shadow: 0 4px 16px rgba(0, 200, 83, 0.15);
}

.lp2-flow-app .lp2-flow-node-icon {
    background: linear-gradient(135deg, #00C853 0%, #00E676 100%);
    box-shadow: 0 4px 16px rgba(0, 200, 83, 0.3);
}

.lp2-flow-app .lp2-flow-node-icon i {
    color: white;
}

.lp2-flow-app .lp2-flow-node-icons {
    display: flex;
    flex-direction: row;
    gap: 6px;
    margin-bottom: 12px;
    justify-content: center;
    width: 100%;
}

.lp2-flow-app .lp2-flow-node-icons i {
    font-size: 1rem;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.lp2-flow-app .lp2-flow-node-icons .fa-youtube {
    color: #FF0000;
}

.lp2-flow-app .lp2-flow-node-icons .fa-amazon {
    color: #FF9900;
}

.lp2-flow-app .lp2-flow-node-icons .fa-tiktok {
    color: #000000;
}

.lp2-flow-app .lp2-flow-node-icons .fa-spotify {
    color: #1DB954;
}

.lp2-flow-browser {
    border: 2px solid var(--lp2-gray-300);
    background: linear-gradient(135deg, #FAFBFC 0%, #F0F2F5 100%);
}

.lp2-flow-note {
    text-align: center;
    margin-top: 40px;
    padding: 16px 24px;
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.08) 0%, rgba(0, 200, 83, 0.04) 100%);
    border-radius: var(--lp2-radius);
    color: var(--lp2-success);
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid rgba(0, 200, 83, 0.15);
}

.lp2-flow-note i {
    margin-right: 10px;
}

/* How It Works CTA */
.lp2-howitworks-cta {
    text-align: center;
    margin-top: 56px;
}

.lp2-cta-headline {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--lp2-dark);
    margin-bottom: 24px;
}

.lp2-cta-subtext {
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--lp2-gray-400);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
    .lp2-steps-grid {
        flex-direction: column;
        /* gap: 40px; */
    }

    .lp2-step {
        max-width: 100%;
        width: 100%;
    }

    .lp2-step-arrow {
        transform: rotate(90deg);
    }

    .lp2-flow-diagram {
        flex-direction: column;
        gap: 24px;
    }

    .lp2-flow-arrow {
        transform: rotate(90deg);
    }

    .lp2-flow-branch {
        flex-direction: row;
        gap: 24px;
        padding-left: 0;
        padding-top: 8px;
    }

    .lp2-flow-branch::before {
        width: 75%;
        height: 3px;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
        background: linear-gradient(90deg, var(--lp2-success), var(--lp2-gray-300));
    }

    .lp2-flow-results {
        flex-direction: row;
        gap: 16px;
    }

    .lp2-flow-result {
        flex: 1;
        min-width: 140px;
    }

    .lp2-flow-section {
        padding: 40px 24px;
    }
}

@media (max-width: 576px) {
    .lp2-howitworks {
        padding: 60px 0;
    }

    .lp2-steps-grid {
        margin-bottom: 48px;
    }

    .lp2-flow-diagram {
        gap: 16px;
        align-items: center;
    }

    .lp2-flow-node {
        padding: 16px;
        min-width: auto;
        width: 85%;
        max-width: 280px;
    }

    .lp2-flow-node-icon {
        width: 44px;
        height: 44px;
    }

    .lp2-flow-node-icons i {
        font-size: 1.1rem;
    }

    .lp2-flow-source .lp2-flow-node-icons i {
        font-size: 1rem;
    }

    .lp2-flow-branch {
        flex-direction: row;
        justify-content: center;
        gap: 16px;
        padding: 8px 0;
        width: 100%;
    }

    .lp2-flow-branch::before {
        display: none;
    }

    .lp2-flow-branch-top,
    .lp2-flow-branch-bottom {
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }

    .lp2-flow-branch-top .lp2-flow-arrow-line,
    .lp2-flow-branch-bottom .lp2-flow-arrow-line {
        width: 2px;
        height: 12px;
        background: linear-gradient(180deg, var(--lp2-success), var(--lp2-success));
    }

    .lp2-flow-branch-bottom .lp2-flow-arrow-line {
        background: linear-gradient(180deg, var(--lp2-gray-300), var(--lp2-gray-300));
    }

    .lp2-flow-condition {
        font-size: 0.65rem;
        padding: 3px 8px;
    }

    .lp2-flow-results {
        flex-direction: row;
        gap: 10px;
        width: 100%;
        max-width: none;
        padding: 0 10px;
    }

    .lp2-flow-result {
        flex: 1;
        min-width: 0;
        padding: 12px 8px;
    }

    .lp2-flow-result span {
        font-size: 0.8rem;
    }

    .lp2-flow-result small {
        font-size: 0.65rem;
    }

    .lp2-flow-section {
        padding: 32px 12px;
    }

    .lp2-flow-title {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .lp2-flow-app .lp2-flow-node-icons i {
        width: 22px;
        height: 22px;
        font-size: 0.75rem;
    }

    .lp2-flow-arrow {
        height: 24px;
    }

    .lp2-flow-arrow .lp2-flow-arrow-line {
        width: 2px;
        height: 16px;
        background: linear-gradient(180deg, var(--lp2-primary), rgba(0, 194, 255, 0.6));
    }

    .lp2-flow-arrow i {
        transform: rotate(90deg);
        font-size: 0.7rem;
    }
}

/* ============================================
   MOBILE COMPACT: How It Works & Problem Sections
   Fits each section in one screen on mobile
   ============================================ */
@media (max-width: 767px) {
    /* HOW IT WORKS - All 3 steps in one compact card */
    .lp2-howitworks {
        padding: 40px 0;
    }

    .lp2-howitworks .lp2-section-intro {
        margin-bottom: 24px;
    }

    .lp2-howitworks .lp2-section-title {
        font-size: 1.5rem;
    }

    .lp2-howitworks .lp2-section-sub {
        font-size: 1.125rem;
        margin-bottom: 0;
    }

    .lp2-steps-grid {
        background: white;
        border-radius: var(--lp2-radius-lg);
        padding: 20px 16px;
        box-shadow: 0 4px 20px rgba(0, 102, 255, 0.08);
        gap: 0;
        margin-bottom: 24px;
    }

    .lp2-step {
        background: transparent;
        box-shadow: none;
        border: none;
        padding: 14px 8px;
        border-bottom: 1px solid var(--lp2-gray-200);
        border-radius: 0;
        display: grid;
        grid-template-columns: 32px 1fr;
        grid-template-rows: auto auto;
        gap: 4px 12px;
        text-align: left;
    }

    .lp2-step:last-of-type {
        border-bottom: none;
        padding-bottom: 8px;
    }

    .lp2-step:first-of-type {
        padding-top: 8px;
    }

    .lp2-step:hover {
        transform: none;
        box-shadow: none;
    }

    .lp2-step-number {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 0.95rem;
        border: 2px solid white;
        box-shadow: 0 3px 10px rgba(0, 102, 255, 0.25);
        grid-row: 1 / 3;
        grid-column: 1;
        align-self: start;
        margin-top: 2px;
    }

    .lp2-step h3 {
        font-size: 0.95rem;
        margin: 0;
        line-height: 1.3;
        grid-column: 2;
        font-weight: 600;
    }

    .lp2-step p {
        font-size: 0.8rem;
        line-height: 1.4;
        margin: 0;
        color: var(--lp2-gray-500);
        grid-column: 2;
    }

    .lp2-step-note {
        display: none;
    }

    .lp2-step-arrow {
        display: none;
    }

    /* Section divider on mobile */
    .lp2-section-divider {
        margin: 32px 0;
    }

    /* Mobile-friendly flow section */
    .lp2-flow-title {
        font-size: 1.1rem;
        margin-bottom: 16px;
        text-align: center;
    }

    .lp2-flow-section {
        display: block;
        padding: 24px 16px;
        border-radius: var(--lp2-radius-lg);
        background: linear-gradient(135deg, rgba(0, 102, 255, 0.03), rgba(0, 194, 255, 0.03));
    }

    .lp2-flow-diagram {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .lp2-flow-node {
        width: 90%;
        max-width: 280px;
        padding: 14px 12px;
        min-width: auto;
    }

    .lp2-flow-node span {
        font-size: 0.85rem;
    }

    .lp2-flow-node-icons {
        gap: 6px;
        margin-bottom: 8px;
    }

    .lp2-flow-node-icons i {
        font-size: 1rem;
    }

    .lp2-flow-arrow {
        transform: rotate(90deg);
        height: 20px;
    }

    .lp2-flow-arrow .lp2-flow-arrow-line {
        width: 2px;
        height: 14px;
    }

    .lp2-flow-arrow i {
        transform: rotate(90deg);
        font-size: 0.65rem;
    }

    .lp2-flow-branch {
        flex-direction: row;
        justify-content: center;
        gap: 12px;
        width: 100%;
        padding: 4px 0;
    }

    .lp2-flow-branch::before {
        display: none;
    }

    .lp2-flow-branch-top,
    .lp2-flow-branch-bottom {
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }

    .lp2-flow-branch-top .lp2-flow-arrow-line,
    .lp2-flow-branch-bottom .lp2-flow-arrow-line {
        width: 2px;
        height: 10px;
    }

    .lp2-flow-condition {
        font-size: 0.6rem;
        padding: 2px 6px;
    }

    .lp2-flow-results {
        flex-direction: row;
        gap: 8px;
        width: 100%;
        padding: 0;
    }

    .lp2-flow-result {
        flex: 1;
        min-width: 0;
        padding: 10px 6px;
    }

    .lp2-flow-result span {
        font-size: 0.75rem;
    }

    .lp2-flow-result small {
        font-size: 0.6rem;
        line-height: 1.2;
    }

    .lp2-flow-app .lp2-flow-node-icons {
        gap: 3px;
    }

    .lp2-flow-app .lp2-flow-node-icons i {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }

    .lp2-flow-node-icon {
        width: 36px;
        height: 36px;
    }

    .lp2-flow-detection .lp2-flow-node-icon {
        width: 40px;
        height: 40px;
    }

    .lp2-flow-logo img {
        width: 22px;
        height: 22px;
    }

    .lp2-howitworks-cta {
        margin-top: 16px;
    }

    .lp2-howitworks-cta .lp2-btn-glow {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .lp2-cta-subtext {
        font-size: 0.8rem;
        margin-top: 8px;
    }

    .lp2-cta-headline {
        margin-top: 44px;
        font-size: 1.5rem;
    }

    /* PROBLEM SECTION - Both cards combined in one */
    

    .lp2-problem-visual {
        background: white;
        border-radius: var(--lp2-radius-lg);
        padding: 12px 14px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        gap: 0;
    }

    .lp2-problem-card {
        background: transparent;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 8px 0;
    }

    .lp2-card-bad {
        border-bottom: 1px solid var(--lp2-gray-200);
        padding-bottom: 10px;
    }

    .lp2-card-good {
        padding-top: 10px;
    }

    .lp2-card-header {
        margin-bottom: 6px;
        gap: 0.4rem;
    }

    .lp2-card-icon {
        width: 26px;
        height: 26px;
        font-size: 0.75rem;
    }

    .lp2-card-label {
        font-size: 1.2rem;
        padding-left: 0.4rem;
    }

    .lp2-card-list {
        margin-bottom: 8px;
    }

    .lp2-card-list li {
        padding: 6px;
        font-size: 1rem;
        gap: 1rem;
        line-height: 1.35;
        border-bottom: none;
        align-items: baseline;
    }

    .lp2-card-list .lp2-card-icon {
        width: 20px;
        height: 20px;
        min-width: 20px;
        font-size: 0.55rem;
    }

    .lp2-card-stat {
        padding: 8px;
        border-radius: 6px;
    }

    .lp2-stat-number {
        font-size: 1.5rem;
    }

    .lp2-stat-label {
        font-size: 0.7rem;
    }

    .lp2-problem-divider {
        display: none;
    }
}

/* Hero Section Mobile Adjustments */
@media (max-width: 767px) {
    .lp3-carousel-interactive {
        margin: 0;
    }

    .lp3-app-carousel {
        margin: 1rem 0 0 0;
    }

    .lp2-hero-content {
        margin-bottom: 0;
    }

    .lp3-app-carousel-label {
        margin-top: 2rem;
    }
}

/* ============================================
   CLICK JOURNEY SECTION
   Visual flow diagram showing link journey
   ============================================ */

.click-journey-wrapper {
    background: #fff;
    border-radius: 24px;
    padding: 3rem 2rem;
    margin-top: 3rem;
    box-shadow: 0 4px 30px rgba(0,0,0,0.06);
    border: 1px solid #e2e8f0;
}

.click-journey-section {
    text-align: center;
}

.click-journey-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0.75rem 0 0.5rem 0;
}

.click-journey-subtitle {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0 0 2.5rem 0;
}

.click-journey-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.journey-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.journey-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.journey-source {
    min-width: 180px;
    max-width: 200px;
}

.journey-tap-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #f0f5ff 0%, #e0e7ff 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    box-shadow: 0 2px 10px rgba(99, 102, 241, 0.15);
}

.journey-tap-icon i {
    font-size: 1.75rem;
    color: #6366f1;
}

.journey-detection {
    min-width: 200px;
    max-width: 220px;
    background: linear-gradient(135deg, #f0f5ff 0%, #e8f0fe 100%);
    border-color: #c7d2fe;
}

.journey-icons-row {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.journey-icon-circle {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #64748b;
}

.journey-icon-circle i.fa-instagram { color: #e4405f; }
.journey-icon-circle i.fa-facebook-f { color: #1877f2; }
.journey-icon-circle i.fa-tiktok { color: #000; }
.journey-icon-circle i.fa-envelope { color: #64748b; }

.journey-card-text {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.4;
}

.journey-logo-box {
    width: 64px;
    height: 64px;
    background: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    box-shadow: 0 2px 10px rgba(79, 125, 243, 0.15);
}

.journey-logo-box img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.journey-arrow {
    flex-shrink: 0;
}

.journey-arrow-single {
    width: 100px;
    height: 160px;
}

.journey-arrow-single svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.journey-branch-container {
    width: 100px;
    height: 160px;
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
}

.journey-branch-arrows {
    width: 100%;
    height: 100%;
    overflow: visible;
    transform: scaleY(-1); /* Flip for desktop - green on top, amber on bottom */
}

.journey-results {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.journey-result {
    min-width: 220px;
    max-width: 260px;
}

.journey-app-installed {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-color: #a7f3d0;
}

.journey-no-app {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border-color: #fde68a;
}

.journey-result-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}

.journey-badge-green {
    background: #10b981;
    color: #fff;
}

.journey-badge-amber {
    background: #f59e0b;
    color: #fff;
}

.journey-app-icons .journey-icon-circle {
    background: #fff;
    border-color: #d1fae5;
}

.journey-icon-youtube i { color: #ff0000; }
.journey-icon-amazon i { color: #ff9900; }
.journey-icon-spotify i { color: #1db954; }
.journey-icon-tiktok i { color: #000; }

.journey-no-app-text {
    font-size: 0.85rem;
    color: #92400e;
    margin: 0;
    line-height: 1.5;
}

.journey-browser-icons .journey-icon-circle {
    background: #fff;
    border-color: #fde68a;
}

.journey-browser-icons .journey-icon-circle img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* App Installed Text */
.journey-app-text {
    font-size: 0.85rem;
    color: #065f46;
    margin: 0.5rem 0 0 0;
    font-weight: 500;
}

/* Warning Card (Without LinkTwin) */
.journey-warning-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 1px solid #cbd5e1;
    border-radius: 50px;
    padding: 0.5rem 1rem 0.5rem 0.5rem;
    margin-top: 2rem;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.journey-warning-inline {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.journey-warning-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #64748b;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 0.4rem 0.75rem;
    border-radius: 50px;
    flex-shrink: 0;
}

.journey-warning-badge i {
    font-size: 0.7rem;
}

.journey-warning-text-inline {
    font-size: 0.9rem;
    color: #475569;
    font-weight: 500;
}

/* Click Journey - Tablet Responsive */
@media (max-width: 900px) {
    .click-journey-diagram {
        flex-direction: column;
        gap: 0;
    }

    .journey-card {
        width: 100%;
        max-width: 280px;
    }

    .journey-source, .journey-detection {
        min-width: auto;
        max-width: 180px;
    }

    .journey-result {
        min-width: auto;
        max-width: 160px;
        padding: 1rem 0.75rem;
    }

    .journey-arrow-single {
        width: 80px;
        height: 60px;
        transform: rotate(90deg);
    }

    .journey-branch-container {
        width: 80px;
        height: 60px;
        transform: rotate(90deg);
    }

    .journey-branch-arrows {
        transform: none; /* Remove desktop flip on mobile */
    }

    .journey-results {
        flex-direction: row;
        gap: 0.75rem;
        width: 100%;
        max-width: 340px;
    }

    .journey-result-badge {
        font-size: 0.55rem;
        padding: 0.3rem 0.5rem;
    }

    .journey-app-text, .journey-no-app-text {
        font-size: 0.75rem;
    }

    .journey-app-icons .journey-icon-circle,
    .journey-browser-icons .journey-icon-circle {
        width: 28px;
        height: 28px;
    }

    .journey-app-icons .journey-icon-circle i {
        font-size: 0.85rem;
    }

    .journey-browser-icons .journey-icon-circle img {
        width: 16px;
        height: 16px;
    }

    .click-journey-title {
        font-size: 1.5rem;
    }
}

/* Click Journey - Mobile Responsive */
@media (max-width: 600px) {
    .click-journey-wrapper {
        padding: 2rem 1rem;
        border-radius: 16px;
    }

    .journey-icons-row {
        gap: 0.35rem;
    }

    .journey-icon-circle {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .journey-result .journey-icon-circle {
        width: 26px;
        height: 26px;
    }

    .journey-logo-box {
        width: 56px;
        height: 56px;
    }

    .journey-logo-box img {
        width: 32px;
        height: 32px;
    }

    .journey-tap-icon {
        width: 56px;
        height: 56px;
    }

    .journey-tap-icon i {
        font-size: 1.5rem;
    }

    .journey-warning-card {
        border-radius: 16px;
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .journey-result {
        max-width: 145px;
        padding: 0.75rem 0.5rem;
    }

    .journey-results {
        max-width: fit-content;
        gap: 0.5rem;
    }
}
