.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.pricing-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.steps-card {
    transition: transform 0.3s ease;
    height: 100%;
}

.steps-card:hover {
    transform: translateY(-5px);
}

/* Mobile Bottom Navigation for Home Page */
@media (max-width: 960px) {
    /* Hide desktop app bar on mobile */
    .home-desktop-appbar {
        display: none !important;
    }

    /* Adjust main content for bottom nav */
    .home-main-content {
        padding-bottom: 80px !important;
        padding-top: 70px !important; /* Add space for mobile header */
    }

    /* Home Bottom Navigation Container */
    .home-bottom-nav-container {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1300;
        background: var(--mud-palette-surface);
        border-top: 1px solid var(--mud-palette-divider);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    /* Home Bottom Navigation Bar */
    .home-bottom-nav-bar {
        display: flex;
        align-items: center;
        justify-content: space-around;
        padding: 8px 16px;
        height: 60px;
    }

    /* Home Menu Toggle Button */
    .home-bottom-nav-toggle {
        position: relative;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: var(--mud-palette-primary);
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .home-bottom-nav-toggle:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    }

    .home-bottom-nav-toggle.active {
        transform: rotate(45deg);
    }

    .home-bottom-nav-toggle .mud-icon-root {
        color: white;
        font-size: 24px;
    }

    /* Home Semi-circular Menu Overlay */
    .home-bottom-menu-overlay {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: 0;
        background: rgba(0, 0, 0, 0.3);
        z-index: 1299;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
    }

    .home-bottom-menu-overlay.open {
        opacity: 1;
        visibility: visible;
    }

    /* Home Semi-circular Menu Container */
    .home-bottom-menu-semicircle {
        position: absolute;
        bottom: 80px;
        left: 50%;
        transform: translateX(-50%) translateY(100%);
        width: 350px;
        height: 180px;
        background: var(--mud-palette-surface);
        border-radius: 175px 175px 0 0;
        border: 1px solid var(--mud-palette-divider);
        border-bottom: none;
        box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.12);
        transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
        overflow: visible;
    }

    .home-bottom-menu-overlay.open .home-bottom-menu-semicircle {
        transform: translateX(-50%) translateY(0);
    }

    /* Home Menu Items Container */
    .home-bottom-menu-items {
        position: absolute;
        bottom: 22px;
        left: 50%;
        transform: translateX(-50%);
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 12px;
        width: 84%;
        padding: 0 10px;
    }

    /* Home Individual Menu Items */
    .home-bottom-menu-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        border-radius: 12px;
        background: var(--mud-palette-background-gray);
        border: 1px solid var(--mud-palette-divider);
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
        text-decoration: none;
        color: var(--mud-palette-text-primary);
        opacity: 0;
        transform: translateY(20px);
        font-family: inherit;
        font-size: inherit;
    }

    .home-bottom-menu-overlay.open .home-bottom-menu-item {
        opacity: 1;
        transform: translateY(0);
    }

    /* Staggered animation delays */
    .home-bottom-menu-item:nth-child(1) {
        transition-delay: 0.1s;
    }

    .home-bottom-menu-item:nth-child(2) {
        transition-delay: 0.15s;
    }

    .home-bottom-menu-item:nth-child(3) {
        transition-delay: 0.2s;
    }

    .home-bottom-menu-item:nth-child(4) {
        transition-delay: 0.25s;
    }

    .home-bottom-menu-item:nth-child(5) {
        transition-delay: 0.3s;
    }

    .home-bottom-menu-item:nth-child(6) {
        transition-delay: 0.35s;
    }

    .home-bottom-menu-item:hover {
        background: var(--mud-palette-primary);
        border-color: var(--mud-palette-primary);
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .home-bottom-menu-item:hover .menu-label {
        color: #ffffff;
    }

    .home-bottom-menu-item .mud-icon-root {
        font-size: 17px;
        margin-bottom: 2px;
    }

    .home-bottom-menu-item .menu-label {
        font-size: 9px;
        font-weight: 500;
        text-align: center;
        line-height: 1;
    }

    /* Home Quick Action Buttons */
    .home-bottom-nav-quick-action {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 4px;
        min-width: 50px;
        background: transparent;
        border: none;
        cursor: pointer;
        color: var(--mud-palette-text-secondary);
        transition: all 0.2s ease;
    }

    .home-bottom-nav-quick-action:hover {
        color: var(--mud-palette-text-primary);
    }

    .home-bottom-nav-quick-action .mud-icon-root {
        font-size: 22px;
        margin-bottom: 2px;
    }

    .home-bottom-nav-quick-action .action-label {
        font-size: 9px;
        font-weight: 500;
        text-align: center;
        line-height: 1;
    }

    /* Mobile responsive improvements */
    .mobile-hero-heading {
        font-size: 2rem !important;
        line-height: 1.3 !important;
    }

    .mobile-hero-text {
        font-size: 1rem !important;
    }

    .mobile-stack-vertical {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .mobile-stack-vertical .mud-button {
        margin-bottom: 8px !important;
    }

    .mobile-center-text {
        text-align: center !important;
    }

    .mobile-padding {
        padding: 16px !important;
    }

    .mobile-card-spacing {
        margin-bottom: 16px !important;
    }

    /* Mobile Header Styles */
    .mobile-header {
        background: var(--mud-palette-surface);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--mud-palette-divider);
    }

    /* Prevent text selection and focus issues on mobile */
    .mobile-hero-heading {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        outline: none !important;
        border: none !important;
        -webkit-tap-highlight-color: transparent;
    }

    .mobile-hero-heading:focus {
        outline: none !important;
        border: none !important;
    }
}

/* Desktop - hide mobile navigation */
@media (min-width: 961px) {
    .home-bottom-nav-container {
        display: none !important;
    }

    .home-bottom-menu-overlay {
        display: none !important;
    }

    .home-desktop-appbar {
        display: block !important;
    }
}

/* Enhanced Typography and Spacing */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

/* Dark theme adjustments */
.mud-theme-dark .hero-section {
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
}

/* Features section theme support */
.features-section {
    background: var(--mud-palette-background-gray);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 49%, rgba(255, 255, 255, 0.08) 50%, transparent 51%);
    background-size: 30px 30px;
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.modern-card {
    border-radius: 24px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card {
    border-radius: 20px !important;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    border: 1px solid #e0e0e0;
    min-height: 280px;
}

.mud-theme-dark .feature-card {
    border: 1px solid #333333;
}

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

/* Ensure equal card content distribution */
.feature-card .mud-card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 240px;
}

.feature-card .mud-stack {
    height: 100%;
    justify-content: space-between;
}

.cta-section {
    background: linear-gradient(135deg, #594ae2 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle fill="rgba(255,255,255,0.1)" cx="200" cy="200" r="300"/><circle fill="rgba(255,255,255,0.05)" cx="800" cy="600" r="400"/></svg>');
    background-size: cover;
}

.modern-button {
    border-radius: 16px !important;
    font-weight: 600 !important;
    text-transform: none !important;
    padding: 12px 32px !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1) !important;
}

.modern-button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
}

.section-spacing {
    padding: 80px 0 !important;
}

.hero-spacing {
    padding: 120px 0 !important;
}

@media (max-width: 960px) {
    .section-spacing {
        padding: 60px 0 !important;
    }

    .hero-spacing {
        padding: 80px 0 !important;
    }
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px !important;
}

.pricing-card {
    border-radius: 24px !important;
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-12px);
    border-color: #594ae2;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15) !important;
}

.pricing-card.featured {
    border-color: #594ae2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex !important;
}

/* ═══════════════════════════════════════════════════
   DisputeForMe Home / Landing — redesign
   Faithful implementation of "DisputeForMe Home Page.dc.html".
   Token-driven; light + dark via #lp[data-theme].
   All selectors are #lp / .lp-* namespaced (no global leakage).
   ═══════════════════════════════════════════════════ */

#lp {
    --bg: #F4F7FB;
    --surface: #FFFFFF;
    --surface2: #FBFCFE;
    --border: #E3E8F0;
    --ink: #0F1B33;
    --ink2: #51607A;
    --ink3: #8A97AD;
    --primary: #2B5CE6;
    --primary-d: #1E47C4;
    --on-primary: #FFFFFF;
    --navy: #0F2547;
    --accent: #0E9F8E;
    --shadow: 0 1px 2px rgba(15, 27, 51, .06);
    --shadow-lg: 0 18px 44px rgba(15, 37, 71, .12);

    min-height: 100vh;
    background: var(--bg);
    color: var(--ink);
    font-family: 'Hanken Grotesk', system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    transition: background .3s ease, color .3s ease;
}

#lp[data-theme="dark"] {
    --bg: #0A1628;
    --surface: #122444;
    --surface2: #0F2038;
    --border: #20355A;
    --ink: #EAF0F9;
    --ink2: #9DB0CC;
    --ink3: #6E86AE;
    --primary: #5B8DEF;
    --primary-d: #3D74E0;
    --on-primary: #06122A;
    --navy: #0B1B33;
    --accent: #2DD4BF;
    --shadow: 0 1px 2px rgba(0, 0, 0, .35);
    --shadow-lg: 0 18px 44px rgba(0, 0, 0, .5);
}

#lp *,
#lp *::before,
#lp *::after {
    box-sizing: border-box;
}

#lp .lp-mono {
    font-family: 'IBM Plex Mono', monospace;
}

/* ─── Header ─── */
#lp .lp-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: color-mix(in srgb, var(--bg) 86%, transparent);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow .25s ease;
}

#lp .lp-header.is-scrolled {
    box-shadow: 0 6px 24px rgba(15, 37, 71, .10);
}

#lp .lp-header-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 14px 28px;
    display: flex;
    align-items: center;
    gap: 18px;
}

#lp .lp-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

#lp .lp-brand-mark {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: linear-gradient(150deg, #3D74E0, #0F2547);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(15, 37, 71, .3);
}

#lp .lp-brand-mark > span {
    width: 12px;
    height: 12px;
    border: 2.5px solid #fff;
    border-radius: 50%;
}

#lp .lp-brand-name {
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -.02em;
}

#lp .lp-nav {
    margin-left: 14px;
    display: flex;
    gap: 4px;
}

#lp .lp-nav-link {
    text-decoration: none;
    color: var(--ink2);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 9px;
    transition: background .15s ease, color .15s ease;
}

#lp .lp-nav-link:hover {
    background: var(--surface2);
    color: var(--ink);
}

#lp .lp-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

#lp .lp-theme-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--ink2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: color .15s ease, border-color .15s ease;
}

#lp .lp-theme-btn:hover {
    color: var(--ink);
    border-color: var(--ink3);
}

#lp .lp-mobile-toggle {
    display: none;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--ink);
    cursor: pointer;
    font-size: 18px;
}

/* ─── Buttons / links ─── */
#lp .lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    font-family: inherit;
    transition: background .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

#lp .lp-btn-primary {
    font-size: 14px;
    font-weight: 700;
    color: var(--on-primary);
    background: var(--primary);
    padding: 10px 20px;
    border-radius: 100px;
    box-shadow: 0 6px 16px rgba(43, 92, 230, .3);
}

#lp .lp-btn-primary:hover { background: var(--primary-d); }

#lp .lp-btn-primary-lg {
    font-size: 15px;
    padding: 14px 26px;
    box-shadow: 0 8px 20px rgba(43, 92, 230, .32);
}

#lp .lp-btn-outline {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    padding: 9px 18px;
    border: 1px solid var(--border);
    border-radius: 100px;
    background: transparent;
}

#lp .lp-btn-outline:hover { border-color: var(--ink3); }

#lp .lp-btn-secondary {
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 14px 24px;
    border-radius: 100px;
}

#lp .lp-btn-secondary:hover { border-color: var(--ink3); }

#lp .lp-btn-teal {
    font-size: 15px;
    font-weight: 700;
    color: #06342B;
    background: #41E0B8;
    padding: 14px;
    border-radius: 100px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(65, 224, 184, .25);
}

#lp .lp-btn-teal:hover { background: #5cead0; }

#lp .lp-btn-teal-lg {
    padding: 15px 32px;
    box-shadow: 0 10px 26px rgba(65, 224, 184, .3);
}

/* ─── Mobile menu ─── */
#lp .lp-mobile-menu {
    position: sticky;
    top: 67px;
    z-index: 49;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 12px 28px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: var(--shadow-lg);
}

#lp .lp-mobile-link {
    text-decoration: none;
    color: var(--ink);
    font-size: 15px;
    font-weight: 600;
    padding: 11px 8px;
    border-radius: 8px;
}

#lp .lp-mobile-link.is-divider {
    border-top: 1px solid var(--border);
    margin-top: 4px;
    font-weight: 700;
}

/* ─── Hero ─── */
#lp .lp-hero {
    max-width: 1240px;
    margin: 0 auto;
    padding: 72px 28px 56px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 56px;
    align-items: center;
}

#lp .lp-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 13px;
    border: 1px solid var(--border);
    border-radius: 100px;
    background: var(--surface);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
}

#lp .lp-badge > span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

#lp .lp-h1 {
    font-size: 56px;
    line-height: 1.05;
    letter-spacing: -.03em;
    font-weight: 800;
    margin: 22px 0 0;
}

#lp .lp-lead {
    font-size: 18px;
    line-height: 1.6;
    color: var(--ink2);
    max-width: 50ch;
    margin: 20px 0 0;
}

#lp .lp-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

#lp .lp-trust {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 26px;
    font-size: 13px;
    color: var(--ink3);
}

#lp .lp-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--ink3);
}

/* ─── Section scaffold ─── */
#lp .lp-section {
    max-width: 1240px;
    margin: 0 auto;
    padding: 80px 28px 40px;
    scroll-margin-top: 80px;
}

#lp .lp-eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 600;
}

#lp .lp-h2 {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -.02em;
    margin: 10px 0 0;
}

#lp .lp-sub {
    font-size: 16px;
    color: var(--ink2);
    line-height: 1.6;
    margin: 14px auto 0;
}

/* ─── Card grids ─── */
#lp .lp-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 44px;
}

#lp .lp-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 26px;
    box-shadow: var(--shadow);
    transition: transform .2s ease, box-shadow .2s ease;
}

#lp .lp-card.is-lift:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

#lp .lp-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin: 0;
}

#lp .lp-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--ink2);
    margin: 8px 0 0;
}

#lp .lp-ico {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

#lp .lp-ico-primary { background: color-mix(in srgb, var(--primary) 12%, transparent); }
#lp .lp-ico-accent  { background: color-mix(in srgb, var(--accent) 14%, transparent); }

/* ─── Steps ─── */
#lp .lp-step {
    padding: 28px;
}

#lp .lp-step-num {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    font-weight: 600;
    color: var(--on-primary);
    background: var(--primary);
    width: 30px;
    height: 30px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#lp .lp-step h3 {
    font-size: 18px;
    margin: 18px 0 0;
}

/* ─── Social proof ─── */
#lp .lp-proof {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--surface2);
}

#lp .lp-proof-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 34px 28px;
}

#lp .lp-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

#lp .lp-stat-num {
    font-size: 34px;
    font-weight: 800;
    font-family: 'IBM Plex Mono', monospace;
    letter-spacing: -.02em;
}

#lp .lp-stat-label {
    font-size: 13px;
    color: var(--ink2);
    margin-top: 2px;
}

/* ─── Pricing ─── */
#lp .lp-pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr 1fr;
    gap: 18px;
    margin-top: 44px;
    align-items: stretch;
}

#lp .lp-plan {
    background: var(--navy);
    border: 1px solid var(--navy);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 56px rgba(15, 37, 71, .32);
    color: #EAF0F9;
    display: flex;
    flex-direction: column;
}

#lp .lp-plan-banner {
    background: linear-gradient(90deg, #0E9F8E, #13B89F);
    padding: 9px;
    text-align: center;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #053128;
}

#lp .lp-check-ico {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--accent) 18%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

#lp .lp-check-ico > span {
    color: var(--accent);
    font-size: 11px;
    font-weight: 800;
}

#lp .lp-badge-pill {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--ink2);
    border: 1px solid var(--border);
    padding: 4px 10px;
    border-radius: 100px;
}

/* ─── FAQ ─── */
#lp .lp-faq {
    max-width: 760px;
    margin: 0 auto;
    padding: 60px 28px 40px;
    scroll-margin-top: 80px;
}

#lp .lp-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#lp .lp-faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

#lp .lp-faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--ink);
    font-family: inherit;
}

#lp .lp-faq-q > span:first-child {
    font-size: 16px;
    font-weight: 700;
    flex: 1;
}

#lp .lp-faq-sign {
    font-size: 20px;
    color: var(--primary);
    font-weight: 600;
    line-height: 1;
}

#lp .lp-faq-a {
    padding: 0 22px 20px;
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--ink2);
}

/* ─── Final CTA ─── */
#lp .lp-cta-wrap {
    max-width: 1240px;
    margin: 40px auto 0;
    padding: 0 28px;
}

#lp .lp-cta {
    background: radial-gradient(700px 280px at 80% 0%, #1B4FB0 0%, #102C57 50%, #0A1C38 100%);
    border-radius: 22px;
    padding: 54px 40px;
    text-align: center;
    color: #EAF0F9;
    position: relative;
    overflow: hidden;
}

#lp .lp-cta-grid {
    position: absolute;
    inset: 0;
    opacity: .3;
    background-image:
        linear-gradient(#ffffff12 1px, transparent 1px),
        linear-gradient(90deg, #ffffff12 1px, transparent 1px);
    background-size: 42px 42px;
    -webkit-mask-image: radial-gradient(520px 300px at 80% 0%, #000, transparent 70%);
    mask-image: radial-gradient(520px 300px at 80% 0%, #000, transparent 70%);
}

/* ─── Footer ─── */
#lp .lp-footer {
    max-width: 1240px;
    margin: 0 auto;
    padding: 56px 28px 48px;
}

#lp .lp-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 28px;
}

#lp .lp-footer-col-title {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
}

#lp .lp-footer-links {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

#lp .lp-footer-link {
    text-decoration: none;
    color: var(--ink2);
    font-size: 13.5px;
}

#lp .lp-footer-link:hover { color: var(--ink); }

/* ─── Responsive ─── */
@media (max-width: 960px) {
    #lp .lp-hero {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 48px;
    }

    #lp .lp-h1 { font-size: 40px; }

    #lp .lp-grid-3 { grid-template-columns: 1fr; }

    #lp .lp-pricing-grid { grid-template-columns: 1fr; }

    #lp .lp-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
    #lp .lp-desktop-nav { display: none !important; }
    #lp .lp-mobile-toggle { display: flex !important; align-items: center; justify-content: center; }
}

@media (max-width: 560px) {
    #lp .lp-stats { grid-template-columns: repeat(2, 1fr); gap: 24px 20px; }

    #lp .lp-h1 { font-size: 34px; }

    #lp .lp-footer-grid { grid-template-columns: 1fr; }
}
