/* ============================================
   Ekklesia Landing Page
   Design System: Blue primary + deep slate accents
   ============================================ */

/* ── Variables ── */
:root {
    --lp-primary: #2563EB;
    --lp-primary-hover: #1D4ED8;
    --lp-primary-dark: #0F172A;
    --lp-primary-light: #DBEAFE;
    --lp-primary-glow: rgba(37, 99, 235, 0.15);
    --lp-gradient: linear-gradient(135deg, #2563EB 0%, #1E40AF 50%, #0F172A 100%);
    --lp-gradient-text: linear-gradient(135deg, #2563EB, #7C3AED);
    --lp-white: #ffffff;
    --lp-bg: #F8FAFC;
    --lp-bg-alt: #F1F5F9;
    --lp-text: #0F172A;
    --lp-text-secondary: #475569;
    --lp-text-muted: #94A3B8;
    --lp-border: #E2E8F0;
    --lp-shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --lp-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --lp-shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --lp-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --lp-shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --lp-radius: 0.75rem;
    --lp-radius-lg: 1rem;
    --lp-radius-xl: 1.5rem;
    --lp-nav-height: 72px;
}

/* ── Smooth scrolling ── */
html { scroll-behavior: smooth; }

/* ── Container ── */
.lp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}


/* ════════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════════ */
.lp-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--lp-nav-height);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(221, 229, 237, 0.5);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.lp-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Logo */
.lp-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
    flex-shrink: 0;
}

.lp-logo-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
    flex-shrink: 0;
}

.lp-logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--lp-text);
    letter-spacing: -0.01em;
}

/* Nav links */
.lp-nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.lp-nav-link {
    padding: 0.5rem 0.875rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--lp-text-secondary);
    text-decoration: none;
    transition: color 0.2s, background 0.2s;
}
.lp-nav-link:hover {
    color: var(--lp-primary);
    background: var(--lp-primary-light);
}

/* Nav actions */
.lp-nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.lp-hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--lp-text);
    cursor: pointer;
    padding: 0.25rem;
}


/* ════════════════════════════════════════════
   BUTTONS (Global)
   ════════════════════════════════════════════ */
.lp-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--lp-primary);
    color: white;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: var(--lp-radius);
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.lp-btn-primary:hover {
    background: var(--lp-primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 153, 190, 0.3);
    color: white;
}

.lp-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--lp-primary);
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: var(--lp-radius);
    border: 2px solid var(--lp-primary);
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.15s;
}
.lp-btn-outline:hover {
    background: var(--lp-primary);
    color: white;
    transform: translateY(-1px);
}

.lp-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: transparent;
    color: var(--lp-text-secondary);
    font-weight: 500;
    font-size: 0.9375rem;
    border-radius: var(--lp-radius);
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s, background 0.2s;
}
.lp-btn-ghost:hover {
    color: var(--lp-primary);
    background: var(--lp-primary-light);
}

.lp-btn-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: white;
    color: var(--lp-primary-dark);
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--lp-radius);
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.2s;
}
.lp-btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: var(--lp-primary-dark);
}

.lp-btn-lg {
    padding: 0.9375rem 2rem;
    font-size: 1rem;
}

.lp-btn-block {
    width: 100%;
    justify-content: center;
}


/* ════════════════════════════════════════════
   GRADIENT TEXT utility
   ════════════════════════════════════════════ */
.lp-gradient-text {
    background: var(--lp-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* ════════════════════════════════════════════
   SECTION HEADERS
   ════════════════════════════════════════════ */
.lp-section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.lp-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.875rem;
    border-radius: 100px;
    background: var(--lp-primary-light);
    color: var(--lp-primary);
    font-weight: 600;
    font-size: 0.8125rem;
    margin-bottom: 1rem;
}

.lp-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--lp-text);
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
}

.lp-section-subtitle {
    font-size: 1.125rem;
    color: var(--lp-text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}


/* ════════════════════════════════════════════
   HERO SECTION
   ════════════════════════════════════════════ */
.lp-hero {
    position: relative;
    padding: calc(var(--lp-nav-height) + 4rem) 0 5rem;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.lp-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% -10%, rgba(37, 153, 190, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 50%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, #f8fafb 0%, #ffffff 100%);
    z-index: 0;
}

.lp-hero > .lp-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.lp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    background: var(--lp-primary-light);
    color: var(--lp-primary);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(37, 153, 190, 0.15);
}

.lp-hero-title {
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1.08;
    color: var(--lp-text);
    margin: 0 0 1.25rem;
    letter-spacing: -0.03em;
}

.lp-hero-subtitle {
    font-size: 1.25rem;
    color: var(--lp-text-secondary);
    line-height: 1.7;
    margin: 0 0 2rem;
    max-width: 520px;
}

.lp-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.lp-hero-trust {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.lp-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    color: var(--lp-text-muted);
    font-weight: 500;
}
.lp-trust-item i {
    color: #10b981;
    font-size: 0.875rem;
}

/* ── Dashboard Preview (Hero Visual) ── */
.lp-hero-visual {
    display: flex;
    justify-content: center;
}

.lp-dashboard-preview {
    width: 100%;
    max-width: 520px;
    border-radius: var(--lp-radius-xl);
    background: white;
    box-shadow: var(--lp-shadow-xl),
                0 0 0 1px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    animation: lpFloatUp 0.8s ease-out;
}

.lp-preview-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 1.25rem;
    background: var(--lp-primary-dark);
}

.lp-preview-dots {
    display: flex;
    gap: 0.375rem;
}
.lp-preview-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.lp-preview-dots span:nth-child(1) { background: #ef4444; }
.lp-preview-dots span:nth-child(2) { background: #f59e0b; }
.lp-preview-dots span:nth-child(3) { background: #10b981; }

.lp-preview-title {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8125rem;
    font-weight: 500;
}

.lp-preview-body {
    padding: 1.5rem;
}

.lp-preview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.lp-preview-stat {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem;
    border-radius: var(--lp-radius);
    background: var(--lp-bg);
    border: 1px solid var(--lp-border);
}

.lp-stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.lp-stat-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--lp-text);
    line-height: 1.2;
}

.lp-stat-label {
    font-size: 0.6875rem;
    color: var(--lp-text-muted);
    font-weight: 500;
}

/* Chart bars */
.lp-preview-chart {
    background: var(--lp-bg);
    border-radius: var(--lp-radius);
    padding: 1.25rem;
    border: 1px solid var(--lp-border);
}

.lp-chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 0.625rem;
    height: 100px;
}

.lp-bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: var(--lp-primary-light);
    transition: height 0.6s ease;
    animation: lpGrowBar 1s ease-out forwards;
}
.lp-bar-active {
    background: var(--lp-primary);
}


/* ════════════════════════════════════════════
   SOCIAL PROOF BAR
   ════════════════════════════════════════════ */
.lp-social-proof {
    padding: 3rem 0;
    background: var(--lp-primary-dark);
}

.lp-proof-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.lp-proof-item {
    text-align: center;
}

.lp-proof-number {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.02em;
}

.lp-proof-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
    margin-top: 0.125rem;
}

.lp-proof-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}


/* ════════════════════════════════════════════
   FEATURES SECTION
   ════════════════════════════════════════════ */
.lp-features {
    padding: 6rem 0;
    background: white;
}

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

.lp-feature-card {
    padding: 2rem;
    border-radius: var(--lp-radius-lg);
    border: 1px solid var(--lp-border);
    background: white;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.lp-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--lp-shadow-lg);
    border-color: rgba(37, 153, 190, 0.2);
}

.lp-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--lp-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.lp-feature-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--lp-text);
    margin: 0 0 0.5rem;
}

.lp-feature-card p {
    font-size: 0.9375rem;
    color: var(--lp-text-secondary);
    line-height: 1.65;
    margin: 0 0 1rem;
}

.lp-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}
.lp-feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--lp-text-secondary);
    font-weight: 500;
}
.lp-feature-list li i {
    color: var(--lp-primary);
    font-size: 0.75rem;
}


/* ════════════════════════════════════════════
   HOW IT WORKS
   ════════════════════════════════════════════ */
.lp-how-it-works {
    padding: 6rem 0;
    background: var(--lp-bg);
}

.lp-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

.lp-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    padding: 0 1.5rem;
}

.lp-step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--lp-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 12px rgba(37, 153, 190, 0.3);
}

.lp-step-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--lp-text);
    margin: 0 0 0.5rem;
}

.lp-step-content p {
    font-size: 0.9375rem;
    color: var(--lp-text-secondary);
    line-height: 1.65;
    margin: 0;
}

.lp-step-connector {
    width: 60px;
    height: 2px;
    background: var(--lp-border);
    margin-top: 28px;
    flex-shrink: 0;
    position: relative;
}
.lp-step-connector::after {
    content: '';
    position: absolute;
    right: -3px;
    top: -3px;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--lp-primary);
    border-top: 2px solid var(--lp-primary);
    transform: rotate(45deg);
}


/* ════════════════════════════════════════════
   PRICING
   ════════════════════════════════════════════ */
.lp-pricing {
    padding: 6rem 0;
    background: white;
}

.lp-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

.lp-price-card {
    padding: 2rem;
    border-radius: var(--lp-radius-lg);
    border: 1px solid var(--lp-border);
    background: white;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.lp-price-card .lp-price-features {
    flex: 1;
}

.lp-price-card .lp-btn-block {
    margin-top: auto;
}
.lp-price-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--lp-shadow-lg);
}

.lp-price-featured {
    border: 2px solid var(--lp-primary);
    padding-top: 3rem;
    box-shadow: var(--lp-shadow-md);
}

.lp-price-popular {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.375rem 1.25rem;
    background: var(--lp-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 0 0 var(--lp-radius) var(--lp-radius);
}

.lp-price-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--lp-text);
    margin: 0 0 0.25rem;
}

.lp-price-desc {
    font-size: 0.875rem;
    color: var(--lp-text-muted);
    margin: 0 0 1.25rem;
}

.lp-price-amount {
    display: flex;
    align-items: baseline;
    gap: 0.125rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--lp-border);
}

.lp-price-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--lp-text);
}

.lp-price-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--lp-text);
    letter-spacing: -0.03em;
    line-height: 1;
}

.lp-price-period {
    font-size: 0.9375rem;
    color: var(--lp-text-muted);
    font-weight: 500;
}

.lp-price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}
.lp-price-features li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    color: var(--lp-text-secondary);
}
.lp-price-features li i {
    color: var(--lp-primary);
    font-size: 0.875rem;
    flex-shrink: 0;
}


/* ════════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════════ */
.lp-testimonials {
    padding: 6rem 0;
    background: var(--lp-bg);
}

.lp-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.lp-testimonial-card {
    padding: 2rem;
    border-radius: var(--lp-radius-lg);
    background: white;
    border: 1px solid var(--lp-border);
    transition: transform 0.2s, box-shadow 0.2s;
}
.lp-testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--lp-shadow-md);
}

.lp-testimonial-stars {
    display: flex;
    gap: 0.125rem;
    margin-bottom: 1rem;
    color: #f59e0b;
    font-size: 0.875rem;
}

.lp-testimonial-text {
    font-size: 0.9375rem;
    color: var(--lp-text-secondary);
    line-height: 1.7;
    margin: 0 0 1.5rem;
    font-style: italic;
}

.lp-testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.lp-author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--lp-primary-light);
    color: var(--lp-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8125rem;
    flex-shrink: 0;
}

.lp-author-name {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--lp-text);
}

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


/* ════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════ */
.lp-faq {
    padding: 6rem 0;
    background: white;
}

.lp-faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.lp-faq-item {
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    overflow: hidden;
    transition: border-color 0.2s;
}
.lp-faq-item.lp-faq-open {
    border-color: rgba(37, 153, 190, 0.3);
}

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

.lp-faq-question i {
    font-size: 1rem;
    flex-shrink: 0;
    color: var(--lp-primary);
}

.lp-faq-answer {
    padding: 0 1.25rem 1.125rem;
    animation: lpFadeDown 0.25s ease;
}

.lp-faq-answer p {
    font-size: 0.9375rem;
    color: var(--lp-text-secondary);
    line-height: 1.7;
    margin: 0;
}


/* ════════════════════════════════════════════
   CTA SECTION
   ════════════════════════════════════════════ */
.lp-cta {
    padding: 6rem 0;
    background: var(--lp-bg);
}

.lp-cta-inner {
    position: relative;
    text-align: center;
    padding: 4rem 2rem;
    border-radius: var(--lp-radius-xl);
    background: var(--lp-gradient);
    overflow: hidden;
}

.lp-cta-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 20% 100%, rgba(16, 185, 129, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse 50% 60% at 80% 0%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    z-index: 0;
}

.lp-cta-inner > * {
    position: relative;
    z-index: 1;
}

.lp-cta-inner h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: white;
    margin: 0 0 0.75rem;
    letter-spacing: -0.02em;
}

.lp-cta-inner p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 2rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.lp-cta-actions {
    margin-bottom: 1rem;
}

.lp-cta-trust {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}


/* ════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════ */
.lp-footer {
    padding: 4rem 0 0;
    background: var(--lp-primary-dark);
    color: rgba(255, 255, 255, 0.75);
}

.lp-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.lp-footer-brand p {
    font-size: 0.875rem;
    line-height: 1.7;
    margin: 1rem 0 0;
    color: rgba(255, 255, 255, 0.55);
    max-width: 300px;
}

.lp-footer-brand .lp-logo-text {
    color: white;
}

.lp-footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.lp-footer-col h4 {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.4);
    margin: 0 0 0.5rem;
}

.lp-footer-col a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}
.lp-footer-col a:hover {
    color: white;
}

.lp-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

.lp-footer-links {
    display: flex;
    gap: 1.5rem;
}

.lp-footer-links a {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.2s;
}
.lp-footer-links a:hover {
    color: rgba(255, 255, 255, 0.8);
}


/* ════════════════════════════════════════════
   ANIMATIONS
   ════════════════════════════════════════════ */
@keyframes lpFloatUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes lpGrowBar {
    from { height: 0 !important; }
}

@keyframes lpFadeDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}


/* ════════════════════════════════════════════
   RESPONSIVE DESIGN
   ════════════════════════════════════════════ */

/* ── Tablet (≤1024px) ── */
@media (max-width: 1024px) {
    .lp-hero > .lp-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .lp-hero-subtitle {
        max-width: 100%;
    }

    .lp-hero-actions {
        justify-content: center;
    }

    .lp-hero-trust {
        justify-content: center;
    }

    .lp-hero-visual {
        max-width: 480px;
        margin: 0 auto;
    }

    .lp-features-grid,
    .lp-pricing-grid,
    .lp-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

/* ── Mobile (≤768px) ── */
@media (max-width: 768px) {
    .lp-nav-links {
        display: none;
        position: absolute;
        top: var(--lp-nav-height);
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        border-bottom: 1px solid var(--lp-border);
        box-shadow: var(--lp-shadow-md);
    }
    .lp-nav-links.lp-nav-open {
        display: flex;
    }

    .lp-nav-actions .lp-btn-ghost { display: none; }

    .lp-hamburger {
        display: block;
    }

    .lp-hero {
        min-height: auto;
        padding-top: calc(var(--lp-nav-height) + 2.5rem);
        padding-bottom: 3rem;
    }

    .lp-hero-title {
        font-size: 2.5rem;
    }

    .lp-hero-subtitle {
        font-size: 1.0625rem;
    }

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

    .lp-hero-trust {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .lp-section-title {
        font-size: 2rem;
    }

    .lp-features-grid,
    .lp-pricing-grid,
    .lp-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .lp-steps {
        flex-direction: column;
        align-items: center;
    }

    .lp-step-connector {
        width: 2px;
        height: 40px;
        margin: 0;
    }
    .lp-step-connector::after {
        right: -3px;
        top: auto;
        bottom: -3px;
        transform: rotate(135deg);
    }

    .lp-proof-grid {
        gap: 1.5rem;
    }
    .lp-proof-divider {
        display: none;
    }
    .lp-proof-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .lp-footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .lp-footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .lp-cta-inner {
        padding: 3rem 1.5rem;
    }

    .lp-cta-inner h2 {
        font-size: 1.75rem;
    }
}

/* ── Small Mobile (≤480px) ── */
@media (max-width: 480px) {
    .lp-hero-title {
        font-size: 2rem;
    }

    .lp-preview-stats {
        grid-template-columns: 1fr;
    }

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

    .lp-price-card { padding: 1.5rem; }

    .lp-price-value { font-size: 2.5rem; }

    .lp-mobile-app-title {
        font-size: 1.75rem;
    }

    .lp-download-buttons {
        flex-direction: column;
    }

    .lp-phone-mockup {
        transform: scale(0.85);
        transform-origin: top center;
    }
}


/* ════════════════════════════════════════════
   OUTLINE WHITE BUTTON (CTA)
   ════════════════════════════════════════════ */
.lp-btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: transparent;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--lp-radius);
    border: 2px solid rgba(255, 255, 255, 0.5);
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.lp-btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: white;
    color: white;
    transform: translateY(-2px);
}


/* ════════════════════════════════════════════
   NAV SCROLLED STATE
   ════════════════════════════════════════════ */
.lp-nav.lp-nav-scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--lp-shadow-sm);
}


/* ════════════════════════════════════════════
   30-DAY TRIAL BADGE & NOTE
   ════════════════════════════════════════════ */
.lp-price-trial {
    position: relative;
    overflow: visible;
}

.lp-trial-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.875rem;
    border-radius: 100px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 1rem;
}

.lp-trial-note {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: var(--lp-radius);
    background: #fef3c7;
    color: #92400e;
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 1.25rem;
}
.lp-trial-note i {
    flex-shrink: 0;
    margin-top: 0.125rem;
}


/* ════════════════════════════════════════════
   MOBILE APP SECTION
   ════════════════════════════════════════════ */
.lp-mobile-app {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--lp-bg) 0%, #ffffff 100%);
    overflow: hidden;
}

.lp-mobile-app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.lp-mobile-app-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--lp-text);
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
}

.lp-mobile-app-subtitle {
    font-size: 1.125rem;
    color: var(--lp-text-secondary);
    line-height: 1.7;
    margin: 0 0 2rem;
    max-width: 480px;
}

/* App Feature List */
.lp-app-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.lp-app-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--lp-radius);
    background: white;
    border: 1px solid var(--lp-border);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.lp-app-feature:hover {
    transform: translateX(4px);
    box-shadow: var(--lp-shadow-md);
    border-color: rgba(37, 99, 235, 0.15);
}

.lp-app-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.lp-app-feature div {
    display: flex;
    flex-direction: column;
}
.lp-app-feature strong {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--lp-text);
    margin-bottom: 0.125rem;
}
.lp-app-feature span {
    font-size: 0.8125rem;
    color: var(--lp-text-muted);
    line-height: 1.5;
}


/* ── Download Buttons ── */
.lp-download-section {
    position: relative;
}

.lp-download-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.lp-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    border-radius: var(--lp-radius);
    text-decoration: none;
    font-family: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    border: none;
    min-width: 180px;
}
.lp-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--lp-shadow-lg);
}

.lp-download-btn i {
    font-size: 1.5rem;
}

.lp-download-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 500;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    opacity: 0.85;
}

.lp-download-platform {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.2;
}

.lp-download-ios {
    background: #000000;
    color: #ffffff;
}
.lp-download-ios:hover {
    background: #1a1a1a;
    color: #ffffff;
}

.lp-download-android {
    background: #1a7340;
    color: #ffffff;
}
.lp-download-android:hover {
    background: #15612f;
    color: #ffffff;
}

.lp-download-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--lp-text-muted);
    margin: 1rem 0 0;
    padding: 0.75rem 1rem;
    background: var(--lp-bg);
    border-radius: var(--lp-radius);
    border: 1px solid var(--lp-border);
}
.lp-download-note i {
    font-size: 1rem;
    color: var(--lp-primary);
    flex-shrink: 0;
}


/* ── Device Detection: Show/Hide Download Buttons ── */
/* Default: hide all device-specific, show desktop */
.lp-download-ios-only,
.lp-download-android-only {
    display: none;
}

.lp-download-desktop-only {
    display: block;
}

/* On iOS device */
body.lp-device-ios .lp-download-ios-only {
    display: block;
}
body.lp-device-ios .lp-download-desktop-only {
    display: none;
}

/* On Android device */
body.lp-device-android .lp-download-android-only {
    display: block;
}
body.lp-device-android .lp-download-desktop-only {
    display: none;
}


/* ── Phone Mockup ── */
.lp-mobile-app-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.lp-phone-mockup {
    position: relative;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.15));
}

.lp-phone-frame {
    width: 280px;
    background: #0F172A;
    border-radius: 36px;
    padding: 12px;
    position: relative;
    overflow: hidden;
}

.lp-phone-notch {
    width: 120px;
    height: 28px;
    background: #0F172A;
    border-radius: 0 0 16px 16px;
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.lp-phone-screen {
    background: #ffffff;
    border-radius: 26px;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    flex-direction: column;
}

/* Phone Screen Content */
.lp-phone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 1rem 0.75rem;
    background: linear-gradient(135deg, var(--lp-primary) 0%, #7C3AED 100%);
}

.lp-phone-greeting {
    font-size: 0.8125rem;
    font-weight: 600;
    color: white;
}

.lp-phone-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6875rem;
    font-weight: 700;
}

.lp-phone-give-banner {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin: 0.75rem;
    padding: 0.75rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, var(--lp-primary), #7C3AED);
    color: white;
}
.lp-phone-give-banner i {
    font-size: 1.125rem;
    flex-shrink: 0;
}
.lp-phone-give-banner strong {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
}
.lp-phone-give-banner span {
    font-size: 0.625rem;
    opacity: 0.85;
}

.lp-phone-section-title {
    padding: 0.625rem 0.75rem 0.375rem;
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--lp-text);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.lp-phone-event {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 0.75rem;
    margin: 0 0.5rem 0.375rem;
    border-radius: 0.5rem;
    background: var(--lp-bg);
    border: 1px solid var(--lp-border);
}

.lp-phone-event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    background: var(--lp-primary-light);
    min-width: 40px;
}

.lp-phone-month {
    font-size: 0.5rem;
    font-weight: 700;
    color: var(--lp-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lp-phone-day {
    font-size: 0.875rem;
    font-weight: 800;
    color: var(--lp-primary);
    line-height: 1;
}

.lp-phone-event strong {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--lp-text);
}
.lp-phone-event span {
    font-size: 0.5625rem;
    color: var(--lp-text-muted);
}

.lp-phone-nav-bar {
    display: flex;
    justify-content: space-around;
    padding: 0.625rem 0.25rem;
    margin-top: auto;
    border-top: 1px solid var(--lp-border);
    background: white;
}

.lp-phone-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.125rem;
    font-size: 0.5rem;
    color: var(--lp-text-muted);
    font-weight: 500;
}
.lp-phone-nav-item i {
    font-size: 0.875rem;
}

.lp-phone-nav-active {
    color: var(--lp-primary);
}


/* ════════════════════════════════════════════
   SCROLL ANIMATIONS
   ════════════════════════════════════════════ */
.lp-animate-target {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.lp-animate-target.lp-animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger feature cards */
.lp-features-grid .lp-animate-target:nth-child(2) { transition-delay: 0.08s; }
.lp-features-grid .lp-animate-target:nth-child(3) { transition-delay: 0.16s; }
.lp-features-grid .lp-animate-target:nth-child(4) { transition-delay: 0.24s; }
.lp-features-grid .lp-animate-target:nth-child(5) { transition-delay: 0.32s; }
.lp-features-grid .lp-animate-target:nth-child(6) { transition-delay: 0.4s; }

/* Stagger app features */
.lp-app-features .lp-animate-target:nth-child(2) { transition-delay: 0.1s; }
.lp-app-features .lp-animate-target:nth-child(3) { transition-delay: 0.2s; }
.lp-app-features .lp-animate-target:nth-child(4) { transition-delay: 0.3s; }

/* Stagger pricing cards */
.lp-pricing-grid .lp-animate-target:nth-child(2) { transition-delay: 0.1s; }
.lp-pricing-grid .lp-animate-target:nth-child(3) { transition-delay: 0.2s; }


/* ════════════════════════════════════════════
   MOBILE APP RESPONSIVE
   ════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .lp-mobile-app-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .lp-mobile-app-title {
        text-align: center;
    }

    .lp-mobile-app-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .lp-mobile-app-content .lp-section-badge {
        display: inline-flex;
    }

    .lp-download-buttons {
        justify-content: center;
    }

    .lp-download-note {
        justify-content: center;
    }

    .lp-mobile-app-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .lp-mobile-app {
        padding: 4rem 0;
    }

    .lp-mobile-app-title {
        font-size: 2rem;
    }

    .lp-cta-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .lp-download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .lp-download-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .lp-phone-frame {
        width: 240px;
    }

    .lp-phone-screen {
        min-height: 400px;
    }
}

/* ── Dark Mode ── */
[data-theme="dark"] {
    --lp-primary: #3B82F6;
    --lp-primary-hover: #60A5FA;
    --lp-primary-dark: #E2E8F0;
    --lp-primary-light: rgba(59, 130, 246, 0.15);
    --lp-primary-glow: rgba(59, 130, 246, 0.25);
    --lp-gradient: linear-gradient(135deg, #1E40AF 0%, #2563EB 50%, #0F172A 100%);
    --lp-gradient-text: linear-gradient(135deg, #60A5FA, #A78BFA);
    --lp-white: #1E293B;
    --lp-bg: #0F172A;
    --lp-bg-alt: #1E293B;
    --lp-text: #F1F5F9;
    --lp-text-secondary: #94A3B8;
    --lp-text-muted: #64748B;
    --lp-border: #334155;
    --lp-shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.3);
    --lp-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.4), 0 1px 2px -1px rgb(0 0 0 / 0.3);
    --lp-shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.4), 0 2px 4px -2px rgb(0 0 0 / 0.3);
    --lp-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.4), 0 4px 6px -4px rgb(0 0 0 / 0.3);
    --lp-shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.4), 0 8px 10px -6px rgb(0 0 0 / 0.3);
}

/* Navigation */
[data-theme="dark"] .lp-nav {
    background: rgba(15, 23, 42, 0.9);
    border-bottom-color: var(--lp-border);
}

[data-theme="dark"] .lp-nav.lp-nav-scrolled {
    background: rgba(15, 23, 42, 0.95);
    border-bottom-color: var(--lp-border);
}

[data-theme="dark"] .lp-nav-links {
    background: rgba(15, 23, 42, 0.98);
    border-bottom-color: var(--lp-border);
}

[data-theme="dark"] .lp-nav-link {
    color: var(--lp-text-secondary);
}

[data-theme="dark"] .lp-nav-link:hover {
    color: var(--lp-text);
}

/* Hero */
[data-theme="dark"] .lp-hero-bg {
    background: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
}

[data-theme="dark"] .lp-hero-bg::before {
    background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 60%),
                radial-gradient(circle at 80% 30%, rgba(99, 102, 241, 0.08) 0%, transparent 60%);
}

[data-theme="dark"] .lp-hero-badge {
    background: rgba(59, 130, 246, 0.15);
    color: #93C5FD;
    border-color: rgba(59, 130, 246, 0.25);
}

/* Dashboard Preview */
[data-theme="dark"] .lp-dashboard-preview {
    background: #1E293B;
    border-color: var(--lp-border);
}

[data-theme="dark"] .lp-preview-header {
    background: #0F172A;
    border-bottom-color: var(--lp-border);
}

[data-theme="dark"] .lp-preview-stat {
    background: rgba(59, 130, 246, 0.08);
    border-color: var(--lp-border);
}

/* Social Proof */
[data-theme="dark"] .lp-social-proof {
    background: #0F172A;
    border-color: var(--lp-border);
}

[data-theme="dark"] .lp-proof-divider {
    background: var(--lp-border);
}

/* Features */
[data-theme="dark"] .lp-features {
    background: #0F172A;
}

[data-theme="dark"] .lp-feature-card {
    background: #1E293B;
    border-color: var(--lp-border);
}

[data-theme="dark"] .lp-feature-card:hover {
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.08);
}

[data-theme="dark"] .lp-feature-icon {
    background: rgba(59, 130, 246, 0.12);
}

/* How It Works */
[data-theme="dark"] .lp-how-it-works {
    background: #0F172A;
}

[data-theme="dark"] .lp-step-number {
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

[data-theme="dark"] .lp-step-content h3 {
    color: var(--lp-text);
}

[data-theme="dark"] .lp-step-content p {
    color: var(--lp-text-secondary);
}

[data-theme="dark"] .lp-step-connector {
    background: var(--lp-border);
}

/* Pricing */
[data-theme="dark"] .lp-pricing {
    background: #0F172A;
}

[data-theme="dark"] .lp-price-card {
    background: #1E293B;
    border-color: var(--lp-border);
}

[data-theme="dark"] .lp-price-card.lp-price-featured {
    border-color: var(--lp-primary);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.12);
}

[data-theme="dark"] .lp-price-header {
    border-bottom-color: var(--lp-border);
}

[data-theme="dark"] .lp-price-features li::before {
    color: #34D399;
}

[data-theme="dark"] .lp-trial-note {
    background: rgba(251, 191, 36, 0.1);
    color: #FCD34D;
    border: 1px solid rgba(251, 191, 36, 0.2);
}

/* Testimonials */
[data-theme="dark"] .lp-testimonials {
    background: #1E293B;
}

[data-theme="dark"] .lp-testimonial-card {
    background: #0F172A;
    border-color: var(--lp-border);
}

/* FAQ */
[data-theme="dark"] .lp-faq {
    background: #0F172A;
}

[data-theme="dark"] .lp-faq-item {
    background: #1E293B;
    border-color: var(--lp-border);
}

[data-theme="dark"] .lp-faq-question {
    color: var(--lp-text);
}

[data-theme="dark"] .lp-faq-question:hover {
    background: rgba(59, 130, 246, 0.06);
}

[data-theme="dark"] .lp-faq-answer {
    color: var(--lp-text-secondary);
    border-top-color: var(--lp-border);
}

/* CTA */
[data-theme="dark"] .lp-cta {
    background: #0F172A;
}

[data-theme="dark"] .lp-cta-inner {
    background: linear-gradient(135deg, #1E3A5F 0%, #1E293B 50%, #0F172A 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

[data-theme="dark"] .lp-cta-bg::before,
[data-theme="dark"] .lp-cta-bg::after {
    opacity: 0.08;
}

/* Footer */
[data-theme="dark"] .lp-footer {
    background: #0B1120;
    border-top-color: var(--lp-border);
}

[data-theme="dark"] .lp-footer-col h4 {
    color: var(--lp-text);
}

[data-theme="dark"] .lp-footer-col a {
    color: var(--lp-text-muted);
}

[data-theme="dark"] .lp-footer-col a:hover {
    color: var(--lp-text);
}

[data-theme="dark"] .lp-footer-bottom {
    border-top-color: var(--lp-border);
    color: var(--lp-text-muted);
}

/* Mobile App Section */
[data-theme="dark"] .lp-mobile-app {
    background: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
}

[data-theme="dark"] .lp-app-feature {
    background: #1E293B;
    border-color: var(--lp-border);
}

[data-theme="dark"] .lp-app-feature:hover {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .lp-app-feature strong {
    color: var(--lp-text);
}

[data-theme="dark"] .lp-app-feature span {
    color: var(--lp-text-muted);
}

[data-theme="dark"] .lp-download-note {
    background: #1E293B;
    border-color: var(--lp-border);
    color: var(--lp-text-muted);
}

/* Phone Mockup */
[data-theme="dark"] .lp-phone-screen {
    background: #1E293B;
}

[data-theme="dark"] .lp-phone-nav-bar {
    background: #0F172A;
    border-top-color: var(--lp-border);
}

/* Buttons */
[data-theme="dark"] .lp-btn-outline {
    color: var(--lp-text);
    border-color: var(--lp-border);
}

[data-theme="dark"] .lp-btn-outline:hover {
    background: var(--lp-bg-alt);
}

[data-theme="dark"] .lp-btn-white {
    background: #1E293B;
    color: var(--lp-text);
    border: 1px solid var(--lp-border);
}

[data-theme="dark"] .lp-btn-white:hover {
    background: #334155;
}

[data-theme="dark"] .lp-btn-outline-white {
    border-color: rgba(255, 255, 255, 0.3);
    color: #F1F5F9;
}

[data-theme="dark"] .lp-btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* Section Badge */
[data-theme="dark"] .lp-section-badge {
    background: rgba(59, 130, 246, 0.12);
    color: #93C5FD;
}

/* Theme Toggle */
[data-theme="dark"] .lp-theme-toggle {
    color: var(--lp-text-secondary);
}

[data-theme="dark"] .lp-theme-toggle:hover {
    color: var(--lp-text);
}
