/* ===========================================
   Landing Page Styles
   Extracted from index.html for better maintainability
   =========================================== */

/* Acumin Pro Font for Logo */
@import url('https://use.typekit.net/ndk3jpj.css');

/* Fallback font stack for logo - similar to Acumin Pro */
.logo-text, .lp-footer-logo span, .footer-brand span {
    font-family: 'Acumin Pro', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

/* Logo SVG Icon styling */
.logo-icon-svg {
    flex-shrink: 0;
}

/* Public Site Styles */
.public-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}
.public-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.public-nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.25rem;
}
.logo-icon { font-size: 1.5rem; }
.logo-icon-svg { vertical-align: middle; margin-right: 0.25rem; }
.public-nav-links {
    display: flex;
    gap: 2rem;
}
.public-nav-links a {
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.2s;
}
.public-nav-links a:hover, .public-nav-links a.active {
    color: var(--accent-primary);
}
.public-nav-actions {
    display: flex;
    gap: 0.75rem;
}
.btn-nav-secondary {
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-primary);
    border-radius: 6px;
    cursor: pointer;
}
.btn-nav-primary {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border: none;
    color: white;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
}

/* Auth Modal */
.auth-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    z-index: 2000;
    overflow-y: auto;
    padding: 2rem 1rem;
}
.auth-modal {
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 2rem;
    max-width: 400px;
    width: 100%;
    position: relative;
    margin: auto;
    max-height: none;
}
.auth-modal-signup {
    max-width: 520px;
}

/* Mobile auth modal fixes */
@media (max-width: 600px) {
    .auth-modal-backdrop {
        padding: 1rem 0.75rem;
        align-items: flex-start;
    }
    .auth-modal {
        padding: 1.5rem 1rem;
        border-radius: 12px;
        margin-top: 0;
    }
    .auth-modal h2 {
        font-size: 1.25rem;
    }
    .auth-modal-signup {
        max-width: 100%;
    }
    .account-type-selector {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    .type-option {
        padding: 0.75rem;
    }
    .auth-form .form-input,
    .auth-form select {
        padding: 0.625rem 0.75rem;
        font-size: 16px; /* Prevents iOS zoom on focus */
    }
    .btn-auth-primary {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
}
.auth-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Account Type Selector */
.account-type-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}
.type-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: var(--bg-tertiary);
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}
.type-option:hover {
    border-color: var(--text-muted);
}
.type-option.active {
    border-color: var(--accent-primary);
    background: rgba(34, 211, 238, 0.1);
}
.type-icon {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}
.type-label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}
.type-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Trade Selector Grid */
.trade-selector {
    margin-bottom: 1.5rem;
}
.trade-selector label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}
.trade-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}
.trade-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.75rem 0.5rem;
    background: var(--bg-tertiary);
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}
.trade-option:hover {
    border-color: var(--text-muted);
}
.trade-option.active {
    border-color: var(--accent-primary);
    background: rgba(34, 211, 238, 0.1);
}
.trade-icon {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}
.trade-name {
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-align: center;
}
.trade-option.active .trade-name {
    color: var(--accent-primary);
}

/* Trade Category Groupings */
.trade-category {
    margin-bottom: 1rem;
}
.trade-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-color);
}
.trade-category-hint {
    font-size: 0.65rem;
    color: var(--accent-primary);
    opacity: 0.8;
}

/* Form Row for side-by-side inputs */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 500px) {
    .trade-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .trade-option {
        padding: 0.5rem;
        font-size: 0.75rem;
    }
    .trade-option .trade-icon {
        font-size: 1rem;
    }
}

/* ==========================================
   NEW LANDING PAGE STYLES
   ========================================== */

/* Brand Colors */
:root {
    --lp-primary: #1E3A5F;
    --lp-accent: #3B82F6;
    --lp-success: #10B981;
    --lp-bg: #F9FAFB;
    --lp-text: #1F2937;
    --lp-text-light: #6B7280;
    --lp-white: #FFFFFF;
    --lp-border: #E5E7EB;
}

.landing-page-new {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--lp-text);
    background: var(--lp-white);
    padding-top: 80px;
}

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

/* Hero Section */
.lp-hero {
    background: linear-gradient(135deg, var(--lp-primary) 0%, #2d4a6f 100%);
    padding: 5rem 0;
    color: var(--lp-white);
}

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

.lp-hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 1.5rem;
}

.lp-gradient-text {
    background: linear-gradient(135deg, #60A5FA, var(--lp-success));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.lp-btn-primary {
    padding: 1rem 2rem;
    background: var(--lp-accent);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.lp-btn-primary:hover {
    background: #2563EB;
    transform: translateY(-2px);
}

.lp-btn-secondary {
    padding: 1rem 2rem;
    background: rgba(255,255,255,0.1);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.lp-btn-secondary:hover {
    background: rgba(255,255,255,0.2);
}

.lp-btn-outline {
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--lp-accent);
    border: 2px solid var(--lp-accent);
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.lp-btn-outline:hover {
    background: var(--lp-accent);
    color: white;
}

.lp-btn-full { width: 100%; }
.lp-btn-large { padding: 1.25rem 3rem; font-size: 1.125rem; }

.lp-hero-trust {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Hero Mockup */
.lp-hero-mockup {
    background: var(--lp-white);
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    overflow: hidden;
}

.lp-mockup-header {
    background: #F3F4F6;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.lp-mockup-dots {
    display: flex;
    gap: 6px;
}

.lp-mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #D1D5DB;
}

.lp-mockup-dots span:first-child { background: #EF4444; }
.lp-mockup-dots span:nth-child(2) { background: #F59E0B; }
.lp-mockup-dots span:nth-child(3) { background: #10B981; }

.lp-mockup-title {
    font-size: 0.8rem;
    color: var(--lp-text-light);
    font-weight: 500;
}

.lp-mockup-content {
    padding: 1.5rem;
    color: var(--lp-text);
}

.lp-mockup-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.lp-mockup-label { color: var(--lp-text-light); }
.lp-mockup-value { font-weight: 500; }

.lp-mockup-divider {
    height: 1px;
    background: var(--lp-border);
    margin: 1rem 0;
}

.lp-mockup-estimate { margin-top: 1rem; }

.lp-estimate-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.lp-estimate-total {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    margin-top: 0.5rem;
    border-top: 2px solid var(--lp-primary);
    font-weight: 700;
    font-size: 1rem;
    color: var(--lp-primary);
}

.lp-mockup-badge {
    margin-top: 1rem;
    padding: 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--lp-success);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

/* Section Headers */
.lp-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.lp-section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--lp-primary);
    margin: 0 0 1rem;
}

.lp-section-header p {
    font-size: 1.125rem;
    color: var(--lp-text-light);
    margin: 0;
}

/* Who Section */
.lp-who-section {
    background: var(--lp-bg);
    padding: 5rem 0;
}

.lp-who-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.lp-who-card {
    background: var(--lp-white);
    border: 2px solid var(--lp-border);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.lp-who-card:hover, .lp-who-card.active {
    border-color: var(--lp-accent);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.15);
}

.lp-who-card.active {
    background: rgba(59, 130, 246, 0.02);
}

.lp-who-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.lp-who-card h3 {
    font-size: 1.5rem;
    color: var(--lp-primary);
    margin: 0 0 0.75rem;
}

.lp-who-card p {
    color: var(--lp-text-light);
    margin: 0 0 1.5rem;
    line-height: 1.6;
}

.lp-who-product {
    font-size: 1rem;
    font-weight: 700;
    color: var(--lp-accent);
    margin-bottom: 0.5rem;
}

.lp-who-price {
    font-size: 0.875rem;
    color: var(--lp-text-light);
    margin-bottom: 1.5rem;
}

/* How It Works */
.lp-how-section {
    padding: 5rem 0;
}

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

.lp-how-step {
    text-align: center;
    position: relative;
}

.lp-step-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: var(--lp-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.lp-step-icon {
    width: 80px;
    height: 80px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.lp-how-step h4 {
    font-size: 1.25rem;
    color: var(--lp-primary);
    margin: 0 0 0.75rem;
}

.lp-how-step p {
    color: var(--lp-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Features Section */
.lp-features-section {
    background: var(--lp-bg);
    padding: 5rem 0;
}

.lp-product-toggle {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.lp-product-toggle button {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--lp-border);
    background: var(--lp-white);
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.lp-product-toggle button.active {
    border-color: var(--lp-accent);
    background: var(--lp-accent);
    color: white;
}

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

.lp-feature-card {
    background: var(--lp-white);
    border: 1px solid var(--lp-border);
    border-radius: 12px;
    padding: 2rem;
}

.lp-feature-card.lp-feature-highlight {
    border-color: var(--lp-accent);
    position: relative;
}

.lp-feature-badge {
    position: absolute;
    top: -12px;
    left: 1rem;
    background: var(--lp-accent);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

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

.lp-feature-card h4 {
    font-size: 1.125rem;
    color: var(--lp-primary);
    margin: 0 0 1rem;
}

.lp-feature-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lp-feature-card li {
    padding: 0.4rem 0;
    color: var(--lp-text-light);
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.25rem;
}

.lp-feature-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--lp-success);
    font-weight: bold;
}

/* Network Section */
.lp-network-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--lp-primary) 0%, #2d4a6f 100%);
    color: white;
}

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

.lp-network-text h2 {
    font-size: 2.5rem;
    margin: 0 0 1rem;
}

.lp-network-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.lp-network-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.lp-network-benefit {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.lp-benefit-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.lp-network-benefit strong {
    display: block;
    margin-bottom: 0.25rem;
}

.lp-network-benefit p {
    margin: 0;
    opacity: 0.8;
    font-size: 0.95rem;
}

.lp-network-visual {
    display: flex;
    justify-content: center;
}

.lp-network-diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.lp-network-node {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    font-weight: 600;
}

.lp-node-gc {
    background: var(--lp-accent);
    font-size: 1.5rem;
}

.lp-node-gc span:last-child { font-size: 0.875rem; }

.lp-network-lines {
    display: flex;
    gap: 2rem;
}

.lp-network-line {
    width: 2px;
    height: 40px;
    background: rgba(255,255,255,0.3);
}

.lp-network-subs {
    display: flex;
    gap: 1.5rem;
}

.lp-node-sub {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    font-size: 1.25rem;
}

.lp-node-sub span:last-child { font-size: 0.7rem; }

/* Pricing Section */
.lp-pricing-section {
    padding: 5rem 0;
}

.lp-pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.lp-pricing-toggle span {
    font-size: 0.95rem;
    color: var(--lp-text-light);
}

.lp-pricing-toggle span.active {
    color: var(--lp-primary);
    font-weight: 600;
}

.lp-toggle-switch {
    width: 56px;
    height: 28px;
    background: var(--lp-border);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    position: relative;
    transition: background 0.3s;
}

.lp-toggle-switch.active {
    background: var(--lp-accent);
}

.lp-toggle-slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s;
}

.lp-toggle-switch.active .lp-toggle-slider {
    transform: translateX(28px);
}

.lp-save-badge {
    background: var(--lp-success);
    color: white;
    padding: 0.125rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.lp-pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem 0;
}

.lp-pricing-tabs button {
    padding: 0.75rem 1.5rem;
    background: var(--lp-bg);
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.lp-pricing-tabs button.active {
    background: var(--lp-primary);
    color: white;
}

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

.lp-pricing-card {
    background: var(--lp-white);
    border: 2px solid var(--lp-border);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
}

.lp-pricing-card.lp-popular {
    border-color: var(--lp-accent);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.15);
}

.lp-popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--lp-accent);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.lp-plan-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--lp-primary);
    margin-bottom: 0.5rem;
}

.lp-plan-price {
    margin-bottom: 0.5rem;
}

.lp-price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--lp-primary);
}

.lp-price-period {
    font-size: 1rem;
    color: var(--lp-text-light);
}

.lp-plan-desc {
    font-size: 0.875rem;
    color: var(--lp-text-light);
    margin-bottom: 1.5rem;
}

.lp-plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.lp-plan-features li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--lp-text);
    position: relative;
    padding-left: 1.5rem;
}

.lp-plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--lp-success);
    font-weight: bold;
}

/* Trades Section */
.lp-trades-section {
    background: var(--lp-bg);
    padding: 5rem 0;
}

.lp-trades-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.lp-trade-tag {
    background: var(--lp-white);
    border: 1px solid var(--lp-border);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    color: var(--lp-text);
    transition: all 0.2s;
}

.lp-trade-tag:hover {
    border-color: var(--lp-accent);
    color: var(--lp-accent);
}

/* Testimonials */
.lp-testimonials-section {
    padding: 5rem 0;
}

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

.lp-testimonial-card {
    background: var(--lp-white);
    border: 1px solid var(--lp-border);
    border-radius: 12px;
    padding: 2rem;
}

.lp-testimonial-stars {
    color: #F59E0B;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.lp-testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--lp-text);
    margin-bottom: 1.5rem;
}

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

.lp-author-avatar {
    width: 48px;
    height: 48px;
    background: var(--lp-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.lp-author-name {
    font-weight: 600;
    color: var(--lp-primary);
}

.lp-author-title {
    font-size: 0.875rem;
    color: var(--lp-text-light);
}

/* FAQ */
.lp-faq-section {
    background: var(--lp-bg);
    padding: 5rem 0;
}

.lp-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.lp-faq-item h4 {
    font-size: 1.125rem;
    color: var(--lp-primary);
    margin: 0 0 0.75rem;
}

.lp-faq-item p {
    color: var(--lp-text-light);
    line-height: 1.7;
    margin: 0;
}

/* Final CTA */
.lp-final-cta {
    background: linear-gradient(135deg, var(--lp-primary) 0%, #2d4a6f 100%);
    padding: 5rem 0;
    color: white;
    text-align: center;
}

.lp-cta-content h2 {
    font-size: 2.5rem;
    margin: 0 0 1rem;
}

.lp-cta-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.lp-cta-buttons {
    margin-bottom: 1.5rem;
}

.lp-cta-trust {
    display: flex;
    gap: 2rem;
    justify-content: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Footer */
.lp-footer {
    background: #111827;
    color: #9CA3AF;
    padding: 4rem 0 2rem;
}

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

.lp-footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
}

.lp-footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.lp-footer-links h4 {
    color: white;
    font-size: 0.875rem;
    margin: 0 0 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lp-footer-links a {
    display: block;
    color: #9CA3AF;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.35rem 0;
    transition: color 0.2s;
}

.lp-footer-links a:hover {
    color: white;
}

.lp-footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    font-size: 0.875rem;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .lp-hero .lp-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .lp-hero-title { font-size: 2.25rem; }
    .lp-hero-ctas { justify-content: center; flex-wrap: wrap; }
    .lp-hero-trust { justify-content: center; flex-wrap: wrap; }
    .lp-hero-visual { display: none; }

    .lp-who-cards { grid-template-columns: 1fr; }
    .lp-how-steps { grid-template-columns: 1fr; gap: 2rem; }
    .lp-features-grid { grid-template-columns: 1fr; }

    .lp-network-content { grid-template-columns: 1fr; text-align: center; }
    .lp-network-benefits { align-items: center; }
    .lp-network-visual { margin-top: 2rem; }

    .lp-pricing-cards { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .lp-testimonials-grid { grid-template-columns: 1fr; }
    .lp-faq-grid { grid-template-columns: 1fr; }

    .lp-footer-grid { grid-template-columns: 1fr 1fr; }
    .lp-footer-brand { grid-column: 1 / -1; }

    .lp-section-header h2 { font-size: 2rem; }
    .lp-cta-content h2 { font-size: 2rem; }
    .lp-cta-trust { flex-direction: column; gap: 0.5rem; }
}

@media (max-width: 480px) {
    .lp-hero-title { font-size: 1.75rem; }
    .lp-hero-ctas { flex-direction: column; }
    .lp-btn-primary, .lp-btn-secondary { width: 100%; justify-content: center; }
    .lp-footer-grid { grid-template-columns: 1fr; }
}

/* Legacy Landing Page (keep for now) */
.landing-page { padding-top: 80px; }
.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
}
.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid var(--accent-primary);
    border-radius: 20px;
    font-size: 0.875rem;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
}
.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin: 0 0 1.5rem;
}
.gradient-text {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}
.hero-ctas {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}
.btn-hero-primary {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border: none;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
}
.btn-hero-secondary {
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--border);
    color: var(--text-primary);
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
}
.hero-trust {
    display: flex;
    gap: 2rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}
.hero-visual {
    display: flex;
    justify-content: center;
}
.hero-mockup {
    width: 100%;
    max-width: 500px;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
}
.mockup-header {
    padding: 0.75rem;
    background: var(--bg-tertiary);
    display: flex;
    gap: 0.5rem;
}
.mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.mockup-dot.red { background: #ff5f56; }
.mockup-dot.yellow { background: #ffbd2e; }
.mockup-dot.green { background: #27ca40; }
.mockup-content {
    display: flex;
    height: 300px;
}
.mockup-sidebar {
    width: 60px;
    background: var(--bg-tertiary);
}
.mockup-main {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.mockup-card {
    height: 60px;
    background: var(--bg-tertiary);
    border-radius: 8px;
}
.mockup-card.small { height: 40px; }

/* Products Section */
.products-section, .features-overview {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
}
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-header h2 {
    font-size: 2.5rem;
    margin: 0 0 0.5rem;
}
.section-header p {
    color: var(--text-secondary);
    font-size: 1.125rem;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.product-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    cursor: pointer;
    transition: all 0.3s;
}
.product-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-4px);
}
.product-icon { font-size: 3rem; margin-bottom: 1rem; }
.product-card h3 { font-size: 1.5rem; margin: 0 0 1rem; }
.product-card p { color: var(--text-secondary); margin-bottom: 1.5rem; }
.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}
.product-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
}
.product-features li::before {
    content: '✓ ';
    color: var(--accent-success);
}
.product-price {
    margin-bottom: 1.5rem;
}
.product-price .price {
    font-size: 2rem;
    font-weight: 700;
}
.product-price .period {
    color: var(--text-muted);
}
.product-price .price-note {
    font-size: 0.875rem;
    color: var(--text-muted);
}
.btn-product {
    background: transparent;
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.feature-item {
    text-align: center;
    padding: 2rem;
}
.feature-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.feature-item h4 { margin: 0 0 0.5rem; }
.feature-item p { color: var(--text-secondary); font-size: 0.875rem; }

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.1), rgba(168, 85, 247, 0.1));
    padding: 6rem 2rem;
    text-align: center;
}
.cta-content h2 { font-size: 2.5rem; margin: 0 0 1rem; }
.cta-content p { color: var(--text-secondary); margin-bottom: 2rem; font-size: 1.25rem; }
.btn-cta {
    padding: 1rem 3rem;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border: none;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
}

/* Features Pages */
.features-page { padding-top: 80px; }
.features-hero {
    padding: 6rem 2rem;
    text-align: center;
}
.gc-hero { background: linear-gradient(135deg, rgba(34, 211, 238, 0.1), rgba(34, 211, 238, 0.05)); }
.sub-hero { background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(249, 115, 22, 0.05)); }
.features-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--bg-secondary);
    border-radius: 20px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}
.features-hero h1 { font-size: 3rem; margin: 0 0 1rem; }
.features-hero p { color: var(--text-secondary); font-size: 1.25rem; margin-bottom: 2rem; }

.feature-detail {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.feature-detail.alt { background: var(--bg-secondary); max-width: none; }
.feature-detail.alt .feature-detail-content { max-width: 1200px; margin: 0 auto; }
.feature-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.feature-detail-content.reverse { direction: rtl; }
.feature-detail-content.reverse > * { direction: ltr; }
.feature-detail-text h2 { font-size: 2rem; margin: 0 0 1rem; }
.feature-detail-text ul { padding-left: 1.5rem; color: var(--text-secondary); }
.feature-detail-text li { margin-bottom: 0.5rem; }
.trade-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1rem 0; }
.trade-tags span {
    padding: 0.25rem 0.75rem;
    background: var(--bg-tertiary);
    border-radius: 4px;
    font-size: 0.875rem;
}
.feature-stat { color: var(--accent-primary); font-size: 0.875rem; }

/* Trade Editions */
.trade-editions {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.trades-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.trade-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
}
.trade-card.coming-soon { opacity: 0.6; }
.trade-card .trade-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.trade-card h3 { margin: 0 0 1rem; font-size: 1.125rem; }
.trade-card ul { padding-left: 1rem; margin: 0 0 1rem; font-size: 0.8rem; color: var(--text-secondary); }
.trade-status {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
}
.trade-status.available { background: rgba(34, 197, 94, 0.2); color: var(--accent-success); }
.trade-status.coming { background: rgba(168, 85, 247, 0.2); color: var(--accent-secondary); }

/* Pricing Preview */
.gc-pricing-preview, .sub-pricing-preview {
    padding: 4rem 2rem;
    text-align: center;
    background: var(--bg-secondary);
}
.pricing-cards-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}
.pricing-mini-card {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    min-width: 200px;
    position: relative;
}
.pricing-mini-card.featured {
    border-color: var(--accent-primary);
}
.mini-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.7rem;
}
.mini-price {
    font-size: 2rem;
    font-weight: 700;
    margin: 0.5rem 0;
}
.mini-price span { font-size: 1rem; color: var(--text-muted); }
.pricing-mini-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
}
.pricing-mini-card button {
    width: 100%;
    padding: 0.75rem;
    background: var(--accent-primary);
    border: none;
    color: white;
    border-radius: 6px;
    cursor: pointer;
}
.pricing-note {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Full Pricing Page */
.pricing-page-full { padding-top: 80px; }
.pricing-hero {
    text-align: center;
    padding: 4rem 2rem;
}
.pricing-hero h1 { font-size: 2.5rem; margin: 0 0 0.5rem; }
.pricing-hero p { color: var(--text-secondary); }
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}
.pricing-tab {
    padding: 1rem 2rem;
    background: var(--bg-secondary);
    border: 2px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.pricing-tab.active {
    border-color: var(--accent-primary);
    background: rgba(34, 211, 238, 0.1);
}
.pricing-section { max-width: 1000px; margin: 0 auto; padding: 0 2rem; }
.pricing-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pricing-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; max-width: 700px; margin: 0 auto; }
.pricing-card-full {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
}
.pricing-card-full.featured { border-color: var(--accent-primary); }
.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 12px;
    font-size: 0.75rem;
}
.price-display {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0.5rem 0;
}
.price-display span { font-size: 1rem; color: var(--text-muted); }
.price-desc { color: var(--text-muted); margin-bottom: 1.5rem; }
.pricing-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}
.pricing-features-list li {
    padding: 0.5rem 0;
    font-size: 0.875rem;
}
.pricing-features-list li.included::before { content: '✓ '; color: var(--accent-success); }
.pricing-features-list li.excluded { color: var(--text-muted); text-decoration: line-through; }
.pricing-features-list li.excluded::before { content: '✗ '; }
.btn-pricing {
    width: 100%;
    padding: 0.875rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    color: var(--text-primary);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
}
.btn-pricing.primary {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border: none;
    color: white;
}
.trade-editions-pricing {
    margin-top: 3rem;
    text-align: center;
}
.trade-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}
.trade-pill {
    padding: 0.5rem 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 0.875rem;
}
.trade-pill.coming { opacity: 0.5; }
.pricing-faq {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 2rem;
}
.pricing-faq h2 { text-align: center; margin-bottom: 2rem; }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.faq-item h4 { margin: 0 0 0.5rem; font-size: 1rem; }
.faq-item p { color: var(--text-secondary); font-size: 0.875rem; margin: 0; }

/* Footer */
.public-footer {
    background: var(--bg-secondary);
    padding: 3rem 2rem;
    border-top: 1px solid var(--border);
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}
.footer-links {
    display: flex;
    gap: 2rem;
}
.footer-links a {
    color: var(--text-secondary);
    cursor: pointer;
}
.footer-copy {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ============ NEW LANDING PAGE STYLES ============ */

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.hero-stat {
    display: flex;
    flex-direction: column;
}
.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-primary);
}
.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Hero Trust with Avatars */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}
.trust-avatars {
    display: flex;
}
.trust-avatars .avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    border: 2px solid var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: -8px;
}
.trust-avatars .avatar:first-child { margin-left: 0; }

/* Phone Mockup */
.hero-phone {
    width: 280px;
    background: var(--bg-secondary);
    border-radius: 36px;
    border: 3px solid var(--bg-tertiary);
    padding: 8px;
    position: relative;
}
.phone-notch {
    width: 100px;
    height: 24px;
    background: var(--bg-tertiary);
    border-radius: 0 0 12px 12px;
    margin: 0 auto 12px;
}
.phone-screen {
    background: var(--bg-primary);
    border-radius: 24px;
    padding: 16px;
    min-height: 400px;
}
.phone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
    font-weight: 600;
}
.phone-progress {
    color: var(--accent-success);
    font-size: 0.875rem;
}
.phone-checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.phone-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--bg-secondary);
    border-radius: 8px;
    font-size: 0.875rem;
}
.phone-item .check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}
.phone-item.done .check {
    background: var(--accent-success);
    color: white;
}
.phone-item.critical {
    background: rgba(248, 113, 113, 0.1);
    border: 1px solid var(--accent-critical);
}
.phone-item.critical .check {
    background: var(--accent-critical);
    color: white;
}
.phone-item:not(.done):not(.critical) .check {
    border: 2px solid var(--border);
}
.phone-action {
    margin-top: 16px;
}
.phone-action button {
    width: 100%;
    padding: 12px;
    background: var(--accent-primary);
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    cursor: pointer;
}
.hero-badge-float {
    position: absolute;
    bottom: 80px;
    right: -20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    box-shadow: var(--shadow-lg);
}
.badge-icon {
    color: var(--accent-warning);
}

/* Play Icon in CTA */
.play-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--accent-primary);
    border-radius: 50%;
    margin-right: 8px;
    font-size: 0.625rem;
}

/* Problem Section */
.problem-section {
    padding: 6rem 2rem;
    background: var(--bg-secondary);
}
.problems-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.problem-card {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}
.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.problem-card h4 {
    font-size: 1.125rem;
    margin: 0 0 1rem;
    color: var(--text-primary);
}
.problem-card p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin: 0;
}
.solution-intro {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.solution-intro p {
    color: var(--accent-primary);
    font-size: 1.125rem;
    font-weight: 500;
}

/* Demo Section */
.demo-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.demo-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}
.demo-step {
    text-align: center;
}
.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}
.step-visual {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.demo-step h4 {
    margin: 0 0 0.5rem;
    font-size: 1.125rem;
}
.demo-step p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin: 0;
}

/* Demo Step Mockups */
.upload-mockup {
    background: var(--bg-secondary);
    border: 2px dashed var(--border);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}
.upload-icon { font-size: 2rem; margin-bottom: 8px; }
.upload-text { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 12px; }
.upload-progress {
    height: 4px;
    background: var(--bg-tertiary);
    border-radius: 2px;
    overflow: hidden;
}
.upload-progress::after {
    content: '';
    display: block;
    width: 70%;
    height: 100%;
    background: var(--accent-primary);
    animation: progress 2s ease-in-out infinite;
}
@keyframes progress {
    0% { width: 0%; }
    50% { width: 100%; }
    100% { width: 100%; }
}

.ai-mockup {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 24px;
    position: relative;
}
.ai-pulse {
    width: 40px;
    height: 40px;
    background: var(--accent-secondary);
    border-radius: 50%;
    margin: 0 auto 16px;
    animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
}
.ai-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.checklist-mockup {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 16px;
}
.mini-check {
    padding: 8px 12px;
    background: var(--bg-tertiary);
    border-radius: 6px;
    margin-bottom: 6px;
    font-size: 0.75rem;
    text-align: left;
}
.mini-check.done { color: var(--accent-success); }
.mini-check.active {
    background: rgba(34, 211, 238, 0.2);
    color: var(--accent-primary);
}

.pass-mockup {
    text-align: center;
}
.pass-badge {
    display: inline-block;
    padding: 16px 32px;
    background: var(--accent-success);
    color: white;
    border-radius: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.pass-text {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Updated Product Cards */
.product-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(34, 211, 238, 0.1);
    color: var(--accent-primary);
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.product-desc {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
.product-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.product-features li::before { content: none; }
.check-icon {
    color: var(--accent-success);
    font-weight: 700;
}
.trade-icons {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}
.product-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.product-price {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}
.price-old {
    text-decoration: line-through;
    color: var(--text-muted);
    margin-right: 0.5rem;
}
.btn-product-primary {
    padding: 1rem;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border: none;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
}

/* Testimonials */
.testimonials-section {
    padding: 6rem 2rem;
    background: var(--bg-secondary);
}
.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.testimonial-card {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
}
.testimonial-content {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-style: italic;
}
.testimonial-content::before {
    content: '"';
    font-size: 3rem;
    color: var(--accent-primary);
    line-height: 0;
    display: block;
    margin-bottom: 0.5rem;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
}
.author-name {
    font-weight: 600;
    color: var(--text-primary);
}
.author-title {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* FAQ Section - New Style */
.faq-section {
    padding: 6rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.faq-item-new {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
}
.faq-item-new h4 {
    margin: 0 0 0.75rem;
    font-size: 1.0625rem;
    color: var(--text-primary);
}
.faq-item-new p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* CTA Section - Updated */
.cta-buttons {
    margin-bottom: 1.5rem;
}
.btn-cta-primary {
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border: none;
    color: white;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    box-shadow: 0 4px 24px rgba(34, 211, 238, 0.3);
}
.cta-trust {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}
.cta-urgency {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
}
.urgency-badge {
    background: rgba(248, 113, 113, 0.2);
    color: var(--accent-critical);
    padding: 4px 12px;
    border-radius: 12px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; text-align: center; }
    .hero-visual { display: none; }
    .hero-stats { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-ctas { justify-content: center; }
    .products-grid { grid-template-columns: 1fr; }
    .problems-grid { grid-template-columns: 1fr; }
    .demo-steps { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .trades-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid-3 { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .public-nav-links { display: none; }
    .hero h1 { font-size: 2rem; }
    .hero-stats { flex-direction: column; gap: 1rem; align-items: center; }
    .hero-ctas { flex-direction: column; }
    .btn-hero-primary, .btn-hero-secondary { width: 100%; }
    .demo-steps { grid-template-columns: 1fr; }
    .cta-trust { flex-direction: column; gap: 0.5rem; }
    .features-grid { grid-template-columns: 1fr; }
    .feature-detail-content { grid-template-columns: 1fr; }
    .trades-grid { grid-template-columns: 1fr; }
    .pricing-cards-row { flex-direction: column; align-items: center; }
    .faq-grid { grid-template-columns: 1fr; }
    .footer-content { flex-direction: column; gap: 1rem; text-align: center; }
}

/* ===========================================
   Legal Pages Styles (Privacy, Terms, Contact)
   =========================================== */

.legal-page {
    padding-top: 80px;
    min-height: 100vh;
    background: var(--bg-primary);
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem 4rem;
}

.legal-page h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.legal-updated {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.legal-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin: 1.5rem 0 0.75rem;
}

.legal-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-section li {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.legal-section li strong {
    color: var(--text-primary);
}

.legal-section a {
    color: var(--accent-primary);
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

/* Contact Page Specific Styles */
.contact-page .contact-intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
}

.contact-card .contact-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.contact-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.contact-link {
    color: var(--accent-primary);
    font-weight: 500;
    text-decoration: none;
    font-size: 1rem;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-company {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-company h2 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.contact-company p {
    color: var(--text-secondary);
    margin: 0.25rem 0;
}

.contact-cta {
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
}

.contact-cta h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.contact-cta p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Footer payment disclaimer */
.lp-footer-payments {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    opacity: 0.8;
}

/* Responsive for legal pages */
@media (max-width: 768px) {
    .legal-container {
        padding: 2rem 1rem 3rem;
    }
    .legal-page h1 {
        font-size: 1.75rem;
    }
    .contact-cards {
        grid-template-columns: 1fr;
    }
}
