/* ============================================
   KingShot Bot — Trust-First Dark Theme
   Color Theory: Adobe Analogous Blue Palette
   Psychology: Stripe/Discord hybrid — blue=trust, cyan=innovation, green=safety
   ============================================ */

:root {
    /* Backgrounds — Deep space, desaturated, layered */
    --bg-primary: #0A0E1A;
    --bg-secondary: #111827;
    --bg-elevated: #1C2235;
    --bg-card: rgba(17, 24, 39, 0.6);
    --bg-card-hover: rgba(28, 34, 53, 0.8);

    /* Trust Blue — Primary brand color (PayPal/Stripe trust) */
    --primary: #3B82F6;
    --primary-hover: #60A5FA;
    --primary-glow: rgba(59, 130, 246, 0.15);
    --primary-glow-strong: rgba(59, 130, 246, 0.25);

    /* Steel Cyan — Secondary (innovation signal) */
    --secondary: #06B6D4;
    --secondary-glow: rgba(6, 182, 212, 0.15);

    /* Accent Gradient — Blue to Cyan (trust spectrum) */
    --accent-gradient: linear-gradient(135deg, #3B82F6, #06B6D4);
    --accent-gradient-warm: linear-gradient(135deg, #F59E0B, #EF4444);

    /* Status Colors */
    --success: #10B981;
    --success-bg: rgba(16, 185, 129, 0.1);
    --warning: #F59E0B;
    --warning-bg: rgba(245, 158, 11, 0.1);
    --error: #EF4444;

    /* Text — Cloud scale for readability */
    --text-primary: #F1F5F9;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;
    --text-dim: #475569;

    /* Borders — Ghost lines */
    --border: rgba(30, 41, 59, 0.8);
    --border-hover: rgba(59, 130, 246, 0.2);
    --border-active: rgba(59, 130, 246, 0.4);

    /* Spacing & Radius */
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
    --shadow-glow: 0 0 30px var(--primary-glow);
}

/* ========== RESET ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Canvas */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Container */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

a { color: inherit; }
img { max-width: 100%; display: block; }

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 14px 0;
    background: rgba(10, 14, 26, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(10, 14, 26, 0.95);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 800;
}

.logo-mark {
    width: 34px;
    height: 34px;
    background: var(--accent-gradient);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 800;
    font-size: 1rem;
    color: white;
}

.logo-text {
    color: var(--text-primary);
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: -0.02em;
}

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

/* Nav links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 28px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.2s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

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

.btn-nav {
    font-size: 0.82rem;
    padding: 8px 20px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 2px 12px var(--primary-glow);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px var(--primary-glow-strong);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    border-color: var(--border-hover);
    color: var(--text-primary);
    background: rgba(59, 130, 246, 0.05);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(59, 130, 246, 0.05);
}

.btn-accent {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: #1a1a2e;
    font-weight: 700;
}

.btn-accent:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.25);
}

.btn-lg { padding: 14px 32px; font-size: 0.95rem; }
.btn-block { width: 100%; }

/* ========== TRUST BAR ========== */
.trust-bar {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
    margin-top: 62px;
}

.trust-bar-inner {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 500;
}

.trust-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* ========== HERO ========== */
.hero {
    min-height: calc(100vh - 102px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 0 60px;
    position: relative;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--success-bg);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 50px;
    font-size: 0.82rem;
    color: var(--success);
    margin-bottom: 28px;
    font-weight: 500;
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: var(--success);
    border-radius: 50%;
    display: inline-block;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero h1 {
    font-size: clamp(2.4rem, 5.5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

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

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

.hero-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

/* Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    padding: 24px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.stat { text-align: center; }

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    font-family: 'JetBrains Mono', monospace;
    color: var(--text-primary);
}

.stat-suffix {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
}

/* Hero glows */
.hero-glow {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-glow), transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-glow-2 {
    position: absolute;
    top: 30%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--secondary-glow), transparent 70%);
    z-index: 0;
    pointer-events: none;
}

/* ========== LOGO BAR ========== */
.logo-bar {
    padding: 48px 0;
    border-bottom: 1px solid var(--border);
}

.logo-bar-title {
    text-align: center;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 24px;
    font-weight: 600;
}

.logo-bar-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.platform-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dim);
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.2s;
}

.platform-item:hover {
    color: var(--text-secondary);
}

.platform-icon {
    font-size: 1.2rem;
}

/* ========== SECTION COMMON ========== */
section {
    padding: 96px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-tag {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 480px;
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: 40px;
}

/* ========== FEATURES (3 Big Cards) ========== */
.features-highlight {
    background: linear-gradient(180deg, var(--bg-primary), var(--bg-secondary), var(--bg-primary));
}

.features-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-big-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-big-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-big-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.feature-big-card:hover::before {
    opacity: 1;
}

.feature-big-icon {
    width: 52px;
    height: 52px;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
}

.feature-big-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-big-card p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 16px;
}

.feature-tag {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(59, 130, 246, 0.08);
    border-radius: 6px;
    font-size: 0.72rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ========== HOW IT WORKS ========== */
.how-it-works {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.steps-horizontal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

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

.step-h-number {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 800;
    font-size: 1.1rem;
    color: white;
    position: relative;
    z-index: 2;
}

.step-h-line {
    position: absolute;
    top: 24px;
    left: calc(50% + 28px);
    right: calc(-50% + 28px);
    height: 2px;
    background: var(--border);
    z-index: 1;
}

.step-h:last-child .step-h-line { display: none; }

.step-h h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.step-h p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* ========== REVIEWS ========== */
.review-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 12px;
}

.review-summary-stars {
    color: var(--warning);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.review-summary span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: var(--border-hover);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.review-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.78rem;
    color: white;
    flex-shrink: 0;
}

.review-name {
    font-weight: 600;
    font-size: 0.88rem;
}

.review-meta {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.review-stars {
    margin-left: auto;
    color: var(--warning);
    font-size: 0.8rem;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.review-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ========== PRICING ========== */
.pricing-preview {
    background: linear-gradient(180deg, var(--bg-primary), var(--bg-secondary) 50%, var(--bg-primary));
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

.price-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.price-card:hover {
    transform: translateY(-3px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-md);
}

.price-card.popular {
    border-color: var(--primary);
    background: rgba(59, 130, 246, 0.04);
    transform: scale(1.04);
    box-shadow: var(--shadow-glow);
}

.price-card.popular:hover {
    transform: scale(1.04) translateY(-3px);
}

.popular-badge, .lifetime-badge {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    white-space: nowrap;
}

.popular-badge {
    background: var(--primary);
    color: white;
}

.lifetime-badge {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: #1a1a2e;
}

.price-tier {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 16px;
}

.price-amount { margin-bottom: 8px; }

.currency {
    font-size: 1.3rem;
    font-weight: 700;
    vertical-align: top;
    color: var(--text-secondary);
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    font-family: 'JetBrains Mono', monospace;
    line-height: 1;
}

.period {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.price-save {
    display: inline-block;
    padding: 2px 10px;
    background: var(--success-bg);
    color: var(--success);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.price-features {
    list-style: none;
    text-align: left;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.price-features li svg { flex-shrink: 0; }

/* Pricing trust */
.pricing-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.pricing-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 500;
}

.pricing-trust-item svg {
    color: var(--success);
}

/* ========== FAQ ========== */
.faq {
    border-top: 1px solid var(--border);
}

.faq-list {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item.active {
    border-color: var(--border-active);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    gap: 12px;
}

.faq-icon {
    color: var(--primary);
    transition: transform 0.3s;
    flex-shrink: 0;
    display: flex;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 22px 18px;
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.7;
}

/* ========== FINAL CTA ========== */
.final-cta {
    padding: 80px 0 100px;
}

.cta-box {
    text-align: center;
    padding: 64px 40px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.06), rgba(6, 182, 212, 0.04));
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-gradient);
}

.cta-box h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.cta-box p {
    color: var(--text-secondary);
    margin-bottom: 28px;
    font-size: 1rem;
}

.cta-note {
    margin-top: 16px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ========== FOOTER ========== */
.footer {
    padding: 56px 0 28px;
    border-top: 1px solid var(--border);
    background: var(--bg-secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 36px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-top: 12px;
    max-width: 260px;
    line-height: 1.5;
}

.footer-links h4 {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: 14px;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.82rem;
    margin-bottom: 9px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.78rem;
}

.footer-disclaimer {
    margin-top: 6px;
    font-size: 0.7rem !important;
    color: var(--text-dim) !important;
}

/* ========== PAGE HEADER (for sub-pages) ========== */
.page-header {
    padding: 140px 0 60px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(180deg, var(--bg-primary), var(--bg-secondary));
    position: relative;
}

.page-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.page-header p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0 auto;
}

/* Keynote boxes for sub-pages */
.keynote-box {
    background: rgba(59, 130, 246, 0.05);
    border: 1px dashed rgba(59, 130, 246, 0.2);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 24px;
}

.keynote-box h3 {
    color: var(--primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    font-weight: 700;
}

.keynote-box ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.keynote-box li {
    color: var(--text-secondary);
    font-size: 0.88rem;
    padding-left: 20px;
    position: relative;
}

.keynote-box li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.keynote-box .note {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    font-size: 0.82rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Content section for sub-pages */
.content-section {
    padding: 80px 0;
}

.content-section + .content-section {
    border-top: 1px solid var(--border);
}

.content-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.content-section p,
.content-section li {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays */
.fade-in:nth-child(2) { transition-delay: 0.08s; }
.fade-in:nth-child(3) { transition-delay: 0.16s; }
.fade-in:nth-child(4) { transition-delay: 0.24s; }
.fade-in:nth-child(5) { transition-delay: 0.32s; }
.fade-in:nth-child(6) { transition-delay: 0.40s; }

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
    .features-grid-3,
    .pricing-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin-left: auto;
        margin-right: auto;
    }

    .steps-horizontal {
        grid-template-columns: 1fr;
        max-width: 320px;
    }

    .step-h-line { display: none; }

    .price-card.popular {
        transform: none;
    }
    .price-card.popular:hover {
        transform: translateY(-3px);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 14, 26, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px 24px;
        gap: 14px;
        border-bottom: 1px solid var(--border);
    }

    .nav-links.active { display: flex; }
    .nav-right { display: none; }
    .mobile-menu-btn { display: flex; }

    .trust-bar-inner { gap: 16px; }
    .trust-item { font-size: 0.72rem; }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .logo-bar-grid { gap: 20px; }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .pricing-trust { gap: 16px; }

    .cta-box { padding: 40px 24px; }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2rem; }
    .trust-bar-inner { flex-direction: column; gap: 8px; align-items: center; }
}
