/* ═══════════════════════════════════════════════════════════════
   LeadPress Website — Main Stylesheet
   ═══════════════════════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
    --primary: #6366f1;
    --primary-hover: #4f46e5;
    --primary-light: rgba(99, 102, 241, 0.08);
    --primary-ring: rgba(99, 102, 241, 0.25);
    --secondary: #8b5cf6;
    --accent: #06b6d4;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;

    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --bg-dark: #0f172a;
    --bg-darker: #020617;
    --surface: #ffffff;
    --border: #e2e8f0;
    --border-light: #f1f5f9;

    --text: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --text-light: #cbd5e1;
    --text-on-dark: #e2e8f0;
    --text-on-primary: #ffffff;

    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    --radius: 12px;
    --radius-sm: 8px;
    --radius-xs: 6px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-pill: 100px;

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -2px rgba(0,0,0,0.04);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.10), 0 8px 10px -6px rgba(0,0,0,0.04);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.15);

    --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);

    --container: 1200px;
    --container-sm: 900px;
    --container-lg: 1400px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-hover); }
ul, ol { list-style: none; }
input, textarea, button, select { font-family: inherit; font-size: inherit; }

/* ── Layout ── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: var(--container-sm); margin: 0 auto; padding: 0 24px; }
.container-lg { max-width: var(--container-lg); margin: 0 auto; padding: 0 24px; }

.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--bg-dark); color: var(--text-on-dark); }
.section-gradient {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
    color: var(--text-on-dark);
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 { font-weight: 700; letter-spacing: -0.025em; line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 5vw, 3.75rem); }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-muted { color: var(--text-secondary); }
.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section-header p { margin-top: 16px; font-size: 18px; color: var(--text-secondary); line-height: 1.7; }
.section-header .badge { display: inline-block; padding: 6px 16px; border-radius: var(--radius-pill); font-size: 13px; font-weight: 600; background: var(--primary-light); color: var(--primary); margin-bottom: 16px; }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    white-space: nowrap;
    text-decoration: none;
}
.btn-primary {
    background: var(--primary);
    color: var(--text-on-primary);
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}
.btn-primary:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.4);
    transform: translateY(-1px);
    color: #fff;
}
.btn-secondary {
    background: var(--bg);
    color: var(--text);
    border-color: var(--border);
}
.btn-secondary:hover {
    background: var(--bg-alt);
    border-color: var(--primary);
    color: var(--primary);
}
.btn-ghost {
    background: transparent;
    color: var(--primary);
    border-color: transparent;
}
.btn-ghost:hover { background: var(--primary-light); }
.btn-white {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}
.btn-white:hover { background: #f1f5f9; color: var(--primary-hover); }
.btn-lg { padding: 16px 36px; font-size: 17px; border-radius: var(--radius); }
.btn-sm { padding: 8px 18px; font-size: 13px; }

.btn-group { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Badges ── */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 600;
}
.badge-primary { background: var(--primary-light); color: var(--primary); }
.badge-success { background: rgba(16, 185, 129, 0.1); color: var(--success); }
.badge-warning { background: rgba(245, 158, 11, 0.1); color: var(--warning); }
.badge-coming { background: rgba(139, 92, 246, 0.1); color: var(--secondary); }

/* ═══ ANNOUNCEMENT BAR ═══ */
.announce-bar {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #4f46e5 100%);
    background-size: 200% 100%;
    animation: shimmer 4s ease infinite;
    color: #fff;
    padding: 10px 20px;
    position: relative;
    z-index: 1001;
}
@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
.announce-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    padding-right: 32px;
}
.announce-badge {
    background: rgba(255,255,255,0.2);
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}
.announce-text {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.92;
}
.announce-cta {
    background: #fff;
    color: var(--primary);
    padding: 5px 14px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    transition: all var(--transition);
    text-decoration: none;
}
.announce-cta:hover {
    background: #f1f5f9;
    transform: translateY(-1px);
    color: var(--primary-hover);
}
.announce-close {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    cursor: pointer;
    padding: 4px 6px;
    line-height: 1;
    transition: color var(--transition);
}
.announce-close:hover { color: #fff; }

/* Countdown */
.countdown {
    display: flex;
    align-items: center;
    gap: 4px;
}
.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0,0,0,0.2);
    border-radius: 6px;
    padding: 3px 8px;
    min-width: 42px;
    line-height: 1.1;
}
.countdown-unit span {
    font-size: 16px;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
}
.countdown-unit small {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.75;
}
.countdown-sep {
    font-size: 18px;
    font-weight: 800;
    opacity: 0.6;
    margin-bottom: 8px;
}

/* Adjust hero top padding when bar is visible */
.hero { padding-top: 140px; }

/* ═══ HEADER / NAV ═══ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
    transition: all var(--transition);
}
.site-header.scrolled {
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.03em;
    text-decoration: none;
}
.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 900;
    font-size: 16px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-links a {
    padding: 8px 16px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-xs);
    transition: all var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); background: var(--primary-light); }

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Mobile nav */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 36px;
    height: 36px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ═══ HERO ═══ */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 140%;
    background: radial-gradient(ellipse, rgba(99, 102, 241, 0.06) 0%, transparent 70%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(139, 92, 246, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content { max-width: 560px; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    background: var(--primary-light);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}
.hero-badge .pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    animation: pulse 2s infinite;
}

.hero h1 { margin-bottom: 20px; }
.hero p { font-size: 18px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 32px; }
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}
.hero-stat strong { display: block; font-size: 28px; font-weight: 800; color: var(--text); }
.hero-stat span { font-size: 13px; color: var(--text-muted); }

.hero-visual {
    position: relative;
}
.hero-screenshot {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border: 1px solid var(--border);
    background: var(--bg-alt);
    overflow: hidden;
}
.hero-screenshot img {
    width: 100%;
    height: auto;
    display: block;
}
.hero-float-card {
    position: absolute;
    background: #fff;
    border-radius: var(--radius);
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    font-size: 13px;
    animation: float 3s ease-in-out infinite;
}
.hero-float-card.card-1 { bottom: -20px; left: -30px; }
.hero-float-card.card-2 { top: -10px; right: -20px; animation-delay: 1.5s; }
.hero-float-card .card-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 8px;
}
.hero-float-card .card-value { font-size: 20px; font-weight: 800; color: var(--text); }
.hero-float-card .card-label { color: var(--text-muted); font-size: 12px; }

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ═══ FEATURES ═══ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: all var(--transition);
}
.feature-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
    transform: translateY(-4px);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}
.feature-icon.icon-purple { background: rgba(99, 102, 241, 0.1); color: var(--primary); }
.feature-icon.icon-blue { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }
.feature-icon.icon-green { background: rgba(16, 185, 129, 0.1); color: var(--success); }
.feature-icon.icon-amber { background: rgba(245, 158, 11, 0.1); color: var(--warning); }
.feature-icon.icon-rose { background: rgba(244, 63, 94, 0.1); color: #f43f5e; }
.feature-icon.icon-cyan { background: rgba(6, 182, 212, 0.1); color: var(--accent); }

.feature-card h3 { margin-bottom: 10px; }
.feature-card p { color: var(--text-secondary); font-size: 14px; line-height: 1.7; }

/* ═══ HOW IT WORKS ═══ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    counter-reset: steps;
}
.step {
    text-align: center;
    position: relative;
    counter-increment: steps;
}
.step::before {
    content: counter(steps);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.3);
}
.step h4 { margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--text-secondary); }

/* Step connector lines */
.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(50% + 36px);
    width: calc(100% - 72px);
    height: 2px;
    background: linear-gradient(90deg, var(--primary), rgba(99, 102, 241, 0.2));
}

/* ═══ INTEGRATIONS ═══ */
.integrations-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
.integration-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 14px;
    transition: all var(--transition);
}
.integration-badge:hover { border-color: var(--primary); box-shadow: var(--shadow-md); }
.integration-badge .int-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

/* ═══ PRICING ═══ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}
.pricing-card {
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: all var(--transition);
}
.pricing-card:hover { box-shadow: var(--shadow-lg); }
.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
    transform: scale(1.03);
}
.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    padding: 4px 20px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 700;
}

.pricing-name { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.pricing-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }
.pricing-price {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}
.pricing-price .amount { font-size: 48px; font-weight: 800; letter-spacing: -0.04em; }
.pricing-price .period { font-size: 14px; color: var(--text-muted); }

.pricing-features { text-align: left; margin-bottom: 28px; }
.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
}
.pricing-features .check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-card .btn { width: 100%; justify-content: center; }

/* Discount / Early Adopter pricing extras */
.pricing-test-notice {
    text-align: center;
    margin-top: 32px;
    padding: 16px 24px;
    background: #fff8e1;
    border: 1px solid #ffe082;
    border-radius: 8px;
    font-size: 15px;
    color: #6d4c00;
    line-height: 1.6;
}
.pricing-test-notice a {
    color: #6d4c00;
    font-weight: 600;
    text-decoration: underline;
}

.pricing-discount-note {
    text-align: center;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--text-muted);
}
.pricing-discount-note strong {
    color: var(--primary);
}

.price-was {
    font-size: 18px;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 2px;
}

.price-save-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.03em;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    margin-bottom: 6px;
}

/* ═══ TESTIMONIALS ═══ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.testimonial-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
}
.testimonial-stars { color: var(--warning); font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-text { font-size: 14px; line-height: 1.8; color: var(--text-secondary); margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
}
.testimonial-info strong { display: block; font-size: 14px; }
.testimonial-info span { font-size: 12px; color: var(--text-muted); }

/* ═══ CTA ═══ */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1e1b4b 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-section h2, .cta-section p { position: relative; z-index: 1; }
.cta-section h2 { margin-bottom: 16px; }
.cta-section p { font-size: 18px; color: var(--text-light); max-width: 600px; margin: 0 auto 32px; }
.cta-section .btn-group { justify-content: center; position: relative; z-index: 1; }

/* ═══ LEGAL PAGES ═══ */
.legal-hero {
    padding: 140px 0 60px;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    text-align: center;
}
.legal-hero-inner { max-width: 640px; margin: 0 auto; }
.legal-badge {
    display: inline-block;
    background: rgba(99,102,241,0.1);
    border: 1px solid rgba(99,102,241,0.25);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: var(--radius-pill);
    margin-bottom: 16px;
}
.legal-hero h1 {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
}
.legal-hero p { color: var(--text-muted); font-size: 15px; }

.legal-body { padding: 60px 0 100px; }

.legal-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 60px;
    align-items: start;
}
.legal-content { min-width: 0; }

/* TOC sidebar */
.legal-toc {
    position: sticky;
    top: 96px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
}
.toc-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 12px;
}
.legal-toc ul { list-style: none; padding: 0; margin: 0; }
.legal-toc li { margin-bottom: 4px; }
.legal-toc a {
    display: block;
    font-size: 13px;
    color: var(--text-secondary);
    padding: 5px 8px;
    border-radius: 6px;
    text-decoration: none;
    transition: all var(--transition);
}
.legal-toc a:hover {
    background: rgba(99,102,241,0.08);
    color: var(--primary);
}

/* Main content */
.legal-intro {
    background: rgba(99,102,241,0.06);
    border-left: 3px solid var(--primary);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 18px 20px;
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.legal-section {
    margin-bottom: 44px;
    padding-bottom: 44px;
    border-bottom: 1px solid var(--border);
}
.legal-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.legal-section h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--text);
    scroll-margin-top: 100px;
}
.legal-section p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 12px;
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 12px;
}
.legal-section ul li {
    list-style: disc;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 6px;
}
.legal-section a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.legal-section code {
    background: rgba(99,102,241,0.08);
    color: var(--primary);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 13px;
    font-family: monospace;
}

.legal-contact-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-top: 16px;
}
.legal-contact-box p {
    margin-bottom: 6px !important;
}

.legal-note {
    background: rgba(245,158,11,0.08);
    border: 1px solid rgba(245,158,11,0.2);
    border-radius: var(--radius);
    padding: 14px 18px;
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 16px;
    line-height: 1.6;
}

/* Refund guarantee box */
.refund-guarantee-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(16,185,129,0.06);
    border: 1px solid rgba(16,185,129,0.2);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 44px;
}
.guarantee-icon { font-size: 36px; flex-shrink: 0; line-height: 1; }
.refund-guarantee-box strong {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}
.refund-guarantee-box p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* Responsive legal */
@media (max-width: 768px) {
    .legal-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .legal-toc { position: static; }
    .legal-hero h1 { font-size: 28px; }
}

/* ═══ FOOTER ═══ */
.site-footer {
    background: var(--bg-darker);
    color: var(--text-light);
    padding: 80px 0 32px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-about .logo { color: #fff; margin-bottom: 16px; }
.footer-about p { font-size: 14px; color: var(--text-muted); line-height: 1.7; max-width: 300px; }
.footer-col h4 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-col a { display: block; color: var(--text-muted); font-size: 14px; padding: 5px 0; transition: color var(--transition); }
.footer-col a:hover { color: #fff; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    font-size: 13px;
    color: var(--text-muted);
}
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: #fff; }

/* ═══ DOCS ═══ */
.docs-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 48px;
    align-items: start;
}

.docs-sidebar {
    position: sticky;
    top: 96px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--border);
}
.docs-sidebar h4 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 12px;
    padding: 0 8px;
}
.docs-sidebar ul { margin-bottom: 20px; }
.docs-sidebar a {
    display: block;
    padding: 7px 12px;
    font-size: 14px;
    color: var(--text-secondary);
    border-radius: var(--radius-xs);
    transition: all var(--transition);
}
.docs-sidebar a:hover { background: var(--primary-light); color: var(--primary); }
.docs-sidebar a.active { background: var(--primary-light); color: var(--primary); font-weight: 600; }

.docs-content {
    min-width: 0;
}
.docs-content h1 { font-size: 2rem; margin-bottom: 16px; }
.docs-content h2 { font-size: 1.5rem; margin: 48px 0 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.docs-content h3 { font-size: 1.2rem; margin: 32px 0 12px; }
.docs-content p { margin-bottom: 16px; line-height: 1.8; color: var(--text-secondary); }
.docs-content ul, .docs-content ol { margin: 0 0 20px 24px; }
.docs-content li { margin-bottom: 8px; line-height: 1.7; color: var(--text-secondary); }
.docs-content ol { list-style: decimal; }
.docs-content ul { list-style: disc; }
.docs-content code {
    background: var(--bg-alt);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--primary);
}
.docs-content pre {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 20px;
    border-radius: var(--radius-sm);
    overflow-x: auto;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
}
.docs-content pre code { background: none; padding: 0; color: inherit; }

.docs-callout {
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 14px;
    border-left: 4px solid;
}
.docs-callout.info { background: rgba(59, 130, 246, 0.06); border-color: #3b82f6; }
.docs-callout.warning { background: rgba(245, 158, 11, 0.06); border-color: var(--warning); }
.docs-callout.success { background: rgba(16, 185, 129, 0.06); border-color: var(--success); }
.docs-callout strong { display: block; margin-bottom: 4px; }

.docs-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px;
}
.docs-breadcrumb a { color: var(--text-muted); }
.docs-breadcrumb a:hover { color: var(--primary); }

/* ═══ COMING SOON CARDS ═══ */
.coming-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.coming-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    position: relative;
    overflow: hidden;
}
.coming-card::after {
    content: 'Coming Soon';
    position: absolute;
    top: 20px;
    right: -28px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: #fff;
    padding: 4px 40px;
    font-size: 11px;
    font-weight: 700;
    transform: rotate(45deg);
}
.coming-card h3 { margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.coming-card p { color: var(--text-secondary); font-size: 14px; line-height: 1.7; }
.coming-card .coming-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}
.coming-icon.icon-green { background: rgba(16, 185, 129, 0.1); color: var(--success); }
.coming-icon.icon-blue { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }
.coming-icon.icon-purple { background: rgba(99, 102, 241, 0.1); color: var(--primary); }
.coming-icon.icon-amber { background: rgba(245, 158, 11, 0.1); color: var(--warning); }

/* ═══ FAQ ═══ */
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    gap: 16px;
    width: 100%;
    background: none;
    border: none;
    padding: 0;
    text-align: left;
    color: var(--text);
}
.faq-question::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: transform var(--transition);
}
.faq-item.open .faq-question::after { content: '−'; }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { padding-top: 12px; color: var(--text-secondary); font-size: 15px; line-height: 1.7; }

/* ═══ CHANGELOG ═══ */
.changelog-item {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}
.changelog-date { font-size: 14px; color: var(--text-muted); padding-top: 4px; }
.changelog-version { font-weight: 700; font-size: 18px; margin-bottom: 12px; }
.changelog-list { margin-left: 16px; }
.changelog-list li {
    position: relative;
    padding: 4px 0 4px 20px;
    font-size: 14px;
    color: var(--text-secondary);
    list-style: none;
}
.changelog-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-content { max-width: 100%; margin: 0 auto; }
    .hero-visual { display: none; }
    .hero-stats { justify-content: center; }
    .hero .btn-group { justify-content: center; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-card.featured { transform: none; }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .step:not(:last-child)::after { display: none; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .docs-layout { grid-template-columns: 1fr; }
    .docs-sidebar { position: static; }
}

@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid var(--border);
        padding: 16px;
        box-shadow: var(--shadow-lg);
    }
    .features-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .coming-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .hero { padding: 120px 0 60px; }
    .hero-stats { flex-wrap: wrap; gap: 24px; }
    .changelog-item { grid-template-columns: 1fr; gap: 8px; }
    .showcase-tabs { flex-wrap: wrap; }
    .mock-kanban { flex-direction: column; }
    .mock-lead-layout { flex-direction: column; }
    .mock-list-header, .mock-list-row { grid-template-columns: 1fr 1fr; gap: 4px; }
    .mock-list-header span:nth-child(3),
    .mock-list-header span:nth-child(5),
    .mock-list-row span:nth-child(3),
    .mock-list-row span:nth-child(5) { display: none; }
}

/* ── Hero Watch Demo Link ── */
.hero-watch-demo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}
.hero-watch-demo:hover { color: var(--primary); }
.hero-watch-play {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-light);
    border: 1.5px solid var(--primary);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulsePlay 2s ease-in-out infinite;
    flex-shrink: 0;
}
.hero-watch-play svg { margin-left: 2px; }
@keyframes pulsePlay {
    0%, 100% { box-shadow: 0 0 0 0 rgba(99,102,241,0.4); }
    50% { box-shadow: 0 0 0 8px rgba(99,102,241,0); }
}

/* ── Video Section ── */
.video-section { background: var(--bg-dark, #0f0f1a); }
.video-section .section-header h2,
.video-section .section-header p { color: #fff; }
.video-section .section-header p { color: rgba(255,255,255,0.6); }
.video-section .badge { background: rgba(99,102,241,0.2); color: #a5b4fc; border-color: rgba(99,102,241,0.3); }

.video-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,0.5);
    max-width: 860px;
    margin: 0 auto;
    cursor: pointer;
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    background: #1a1a2e;
    border-radius: 16px;
    overflow: hidden;
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    z-index: 10;
    background: rgba(10,10,20,0.55);
    backdrop-filter: blur(2px);
    transition: background 0.2s;
}
.video-thumbnail:hover .video-overlay { background: rgba(10,10,20,0.4); }

.video-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 0 0 16px rgba(99,102,241,0.15);
}
.video-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 0 20px rgba(99,102,241,0.2);
}
.video-play-btn { animation: bigPulse 2.5s ease-in-out infinite; }
@keyframes bigPulse {
    0%, 100% { box-shadow: 0 0 0 16px rgba(99,102,241,0.15); }
    50% { box-shadow: 0 0 0 28px rgba(99,102,241,0.0); }
}
.video-play-btn svg { margin-left: 4px; }

.video-play-label {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* Blurred mock screen behind the play button */
.video-mock-screen {
    position: absolute;
    inset: 0;
    filter: blur(2px);
    opacity: 0.6;
}
.vms-topbar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: #1e1e3a;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.vms-dots { display: flex; gap: 5px; }
.vms-dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.2); }
.vms-title { font-size: 12px; color: rgba(255,255,255,0.4); }
.vms-body { padding: 16px; height: calc(100% - 40px); background: #13132a; }
.vms-kanban { display: flex; gap: 12px; height: 100%; }
.vms-col {
    flex: 1;
    background: rgba(255,255,255,0.04);
    border-radius: 8px;
    padding: 10px;
}
.vms-col-title {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    margin-bottom: 8px;
}
.vms-card {
    height: 48px;
    background: rgba(255,255,255,0.07);
    border-radius: 6px;
    margin-bottom: 8px;
}
.vms-card.short { height: 36px; }

/* Scroll nudge */
.video-scroll-nudge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-top: 32px;
    color: rgba(255,255,255,0.35);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.scroll-arrow {
    animation: bounceDown 1.6s ease-in-out infinite;
    color: rgba(255,255,255,0.3);
}
@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* Hot badge */
.badge-hot {
    background: rgba(239,68,68,0.1);
    color: #f87171;
    border-color: rgba(239,68,68,0.25);
    animation: badgePop 3s ease-in-out infinite;
}
@keyframes badgePop {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}

/* YouTube embed */
.video-embed { aspect-ratio: 16/9; }
.video-embed iframe { width: 100%; height: 100%; border-radius: 16px; }

/* Video stats */
.video-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.video-stat { text-align: center; }
.video-stat strong { display: block; font-size: 28px; font-weight: 800; color: #fff; }
.video-stat span { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 4px; display: block; }

/* ── Screenshot Showcase ── */
.screenshot-showcase { background: var(--bg); }

.showcase-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.showcase-tab {
    padding: 10px 22px;
    border-radius: 8px;
    border: 1.5px solid var(--border);
    background: var(--surface);
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}
.showcase-tab:hover { border-color: var(--primary); color: var(--primary); }
.showcase-tab.active { background: var(--primary); border-color: var(--primary); color: #fff; }

.showcase-panels { position: relative; }
.showcase-panel { display: none; }
.showcase-panel.active { display: block; }

.showcase-caption {
    text-align: center;
    margin-top: 20px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}
.showcase-caption strong { color: var(--text); }

/* Browser Frame */
.browser-frame {
    border-radius: 12px;
    overflow: hidden;
    border: 1.5px solid var(--border);
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
    background: #fff;
}
.browser-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #f1f3f5;
    border-bottom: 1px solid var(--border);
}
.browser-dots { display: flex; gap: 6px; }
.browser-dots span {
    width: 12px; height: 12px; border-radius: 50%;
    background: #ddd;
}
.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #febc2e; }
.browser-dots span:nth-child(3) { background: #28c840; }
.browser-url {
    flex: 1;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 12px;
    color: var(--text-muted);
    font-family: monospace;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.browser-content { padding: 20px; min-height: 340px; background: #f8f9ff; overflow: auto; }

/* Kanban Mock */
.mock-kanban { display: flex; gap: 16px; min-width: 0; }
.mock-col { flex: 1; min-width: 160px; }
.mock-col-header {
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
    padding: 8px 10px;
    background: #fff;
    border-radius: 8px 8px 0 0;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mock-count {
    background: var(--border);
    color: var(--text-muted);
    border-radius: 10px;
    padding: 1px 7px;
    font-size: 11px;
}
.mock-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 8px;
    font-size: 12px;
}
.mock-card strong { display: block; margin-bottom: 3px; font-size: 13px; color: var(--text); }
.mock-card p { color: var(--text-muted); margin: 0 0 6px; line-height: 1.4; }
.mock-tags { display: flex; gap: 4px; flex-wrap: wrap; }
.mock-tag {
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
    font-style: normal;
}
.tag-new { background: rgba(99,102,241,0.1); color: #6366f1; }
.tag-progress { background: rgba(245,158,11,0.1); color: #d97706; }
.tag-done { background: rgba(16,185,129,0.1); color: #059669; }
.tag-lost { background: rgba(239,68,68,0.1); color: #dc2626; }

/* Lead Detail Mock */
.mock-lead-layout { display: flex; gap: 20px; }
.mock-lead-main { flex: 1; min-width: 0; }
.mock-lead-sidebar { width: 200px; flex-shrink: 0; }
.mock-lead-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}
.mock-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.mock-lead-name { font-weight: 700; font-size: 15px; color: var(--text); }
.mock-lead-sub { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.mock-section-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin: 14px 0 8px;
}
.mock-message {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px;
    font-size: 13px;
    color: var(--text);
    line-height: 1.6;
}
.mock-activity {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 6px;
    line-height: 1.5;
}
.mock-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
    margin-top: 4px;
}
.mock-detail-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 12px;
}
.mock-detail-row span { color: var(--text-muted); }
.mock-detail-row strong { color: var(--text); }

/* Settings Mock */
.mock-settings { max-width: 560px; margin: 0 auto; }
.mock-settings-title { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.mock-settings-sub { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.mock-toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    margin-bottom: 10px;
}
.mock-toggle-info strong { display: block; font-size: 14px; color: var(--text); }
.mock-toggle-info span { font-size: 12px; color: var(--text-muted); }
.mock-toggle {
    width: 42px; height: 24px; border-radius: 12px;
    position: relative; flex-shrink: 0;
    transition: background 0.2s;
}
.mock-toggle::after {
    content: '';
    position: absolute;
    top: 3px;
    width: 18px; height: 18px;
    background: #fff;
    border-radius: 50%;
    transition: left 0.2s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.mock-toggle.on { background: var(--primary); }
.mock-toggle.on::after { left: 21px; }
.mock-toggle.off { background: #cbd5e1; }
.mock-toggle.off::after { left: 3px; }

/* List View Mock */
.mock-list { background: #fff; border-radius: 8px; overflow: hidden; border: 1px solid var(--border); }
.mock-list-header, .mock-list-row {
    display: grid;
    grid-template-columns: 1.5fr 2fr 1.2fr 1.2fr 0.8fr;
    gap: 8px;
    padding: 10px 16px;
    font-size: 12px;
    align-items: center;
}
.mock-list-header {
    background: #f8f9ff;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    border-bottom: 1.5px solid var(--border);
}
.mock-list-row { border-bottom: 1px solid var(--border); color: var(--text-muted); }
.mock-list-row:last-child { border-bottom: none; }
.mock-list-row span:first-child { color: var(--text); }

/* ── Nav Try Free link ── */
.nav-links .nav-try-free {
    color: var(--primary) !important;
    font-weight: 700;
    border: 1.5px solid var(--primary);
    border-radius: 6px;
    padding: 4px 12px !important;
    transition: background 0.2s, color 0.2s;
}
.nav-links .nav-try-free:hover {
    background: var(--primary);
    color: #fff !important;
}

/* ── Download Page ── */
.download-hero { padding: 140px 0 60px; text-align: center; }
.download-hero-inner .badge { margin: 0 auto 16px; display: inline-block; }
.download-hero-inner h1 { font-size: clamp(36px, 6vw, 56px); font-weight: 800; margin-bottom: 16px; }
.download-hero-inner p { font-size: 18px; color: var(--text-muted); max-width: 520px; margin: 0 auto; }

.download-cards-section { padding-top: 40px; }
.download-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 860px;
    margin: 0 auto;
}

.download-card {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}
.download-card.featured {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary), 0 8px 32px rgba(99,102,241,0.12);
}
.download-card-popular {
    background: var(--primary);
    color: #fff;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    padding: 6px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.download-card-header {
    padding: 28px 28px 20px;
    border-bottom: 1px solid var(--border);
}
.download-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}
.download-badge.free { background: rgba(16,185,129,0.1); color: #059669; }
.download-badge.pro { background: rgba(99,102,241,0.1); color: var(--primary); }

.download-card-header h2 { font-size: 24px; font-weight: 800; margin-bottom: 6px; }
.download-price { font-size: 32px; font-weight: 800; color: var(--text); margin-bottom: 10px; }
.download-price span { font-size: 14px; font-weight: 500; color: var(--text-muted); }
.download-card-header p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.download-card-body { padding: 24px 28px 28px; flex: 1; display: flex; flex-direction: column; }

.download-features {
    list-style: none;
    margin-bottom: 24px;
    flex: 1;
}
.download-features li {
    font-size: 14px;
    padding: 7px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
}
.download-features li:last-child { border-bottom: none; }
.download-features li::before {
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
    width: 18px;
    text-align: center;
}
.download-features li.yes::before { content: '✓'; color: #059669; }
.download-features li.no { color: var(--text-muted); }
.download-features li.no::before { content: '—'; color: var(--border); }

.btn-full { width: 100%; text-align: center; display: block; }
.download-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 10px;
}
.download-note a { color: var(--primary); }

/* Comparison Table */
.comparison-section { }
.comparison-table-wrap { overflow-x: auto; }
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.comparison-table th, .comparison-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}
.comparison-table thead th {
    background: var(--surface);
    font-weight: 700;
    font-size: 15px;
    position: sticky;
    top: 0;
}
.feature-col { width: 50%; color: var(--text); }
.free-col, .pro-col { width: 25%; text-align: center; }
.pro-col { color: var(--primary); }
.th-sub {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.group-row td {
    background: var(--bg-alt, #f8f9ff);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    padding: 10px 16px;
}
.yes-cell { text-align: center; color: #059669; font-weight: 700; font-size: 16px; }
.no-cell { text-align: center; color: var(--border); font-size: 16px; }
.comparison-table tfoot td { padding: 20px 16px; border-bottom: none; }
.comparison-table tbody tr:hover { background: var(--primary-light); }

@media (max-width: 640px) {
    .download-cards { grid-template-columns: 1fr; }
    .comparison-table th, .comparison-table td { padding: 10px 10px; font-size: 13px; }
}
