/* ============================================
   ContentSpy Landing — Style
   Dark theme, orange accent (#f97316)
   ============================================ */

:root {
    --bg: #0a0a0a;
    --bg-card: #111111;
    --bg-card-hover: #1a1a1a;
    --bg-elevated: #161616;
    --border: #222222;
    --border-light: #2a2a2a;
    --text: #ffffff;
    --text-secondary: #999999;
    --text-muted: #666666;
    --accent: #f97316;
    --accent-hover: #fb923c;
    --accent-glow: rgba(249, 115, 22, 0.3);
    --accent-subtle: rgba(249, 115, 22, 0.08);
    --green: #22c55e;
    --red: #ef4444;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

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

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- GRADIENT TEXT ---- */
.gradient-text {
    background: linear-gradient(135deg, #f97316, #fb923c, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.accent { color: var(--accent); }

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
    white-space: nowrap;
}
.btn-sm { padding: 8px 18px; font-size: 14px; }
.btn-lg { padding: 16px 32px; font-size: 17px; border-radius: var(--radius); }
.btn-block { width: 100%; justify-content: center; }
.btn-primary {
    background: var(--accent);
    color: #000;
}
.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}
.btn-glow {
    box-shadow: 0 0 30px var(--accent-glow), 0 4px 15px rgba(0,0,0,0.3);
}
.btn-glow:hover {
    box-shadow: 0 0 50px var(--accent-glow), 0 6px 20px rgba(0,0,0,0.4);
}
.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border-light);
}
.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-subtle);
}
.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border: 1.5px solid var(--border);
}
.btn-ghost:hover {
    border-color: var(--text-muted);
    color: var(--text);
}

/* ---- NAV ---- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    transition: all 0.3s ease;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
}
.nav.scrolled {
    border-bottom: 1px solid var(--border);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text);
    font-size: 20px;
    font-weight: 800;
}
.logo-icon { font-size: 24px; }
.nav-links {
    display: flex;
    gap: 32px;
}
.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

/* ---- HAMBURGER MENU ---- */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: 12px;
}
.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- MOBILE NAV ---- */
.nav-mobile {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px 28px;
    flex-direction: column;
    gap: 4px;
    z-index: 99;
}
.nav-mobile.active { display: flex; }
.nav-mobile-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s;
}
.nav-mobile-link:hover { color: var(--text); }

/* ---- BADGES ---- */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
}
.badge-platform {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    color: var(--text-secondary);
}

/* ---- SECTION COMMON ---- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent);
    background: var(--accent-subtle);
    border: 1px solid rgba(249, 115, 22, 0.15);
    margin-bottom: 20px;
}
.section-header h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.15;
}
.section-sub {
    color: var(--text-secondary);
    font-size: 16px;
    margin-top: 12px;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
    padding: 48px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.stat-item {
    text-align: center;
    padding: 16px 24px;
    border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 900;
    background: linear-gradient(135deg, #f97316, #fb923c, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 6px;
}
.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
    opacity: 0.3;
    pointer-events: none;
}
.hero-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.hero-title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto 36px;
    line-height: 1.6;
}
.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 64px;
}
.hero-micro {
    font-size: 13px;
    color: var(--text-muted);
}

/* Hero Screenshot */
.hero-visual {
    perspective: 1200px;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}
.hero-screenshot-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-card);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5), 0 0 60px var(--accent-glow);
    transform: rotateX(2deg);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}
.hero-screenshot-wrap:hover {
    transform: rotateX(0deg);
    box-shadow: 0 50px 120px rgba(0, 0, 0, 0.6), 0 0 80px var(--accent-glow);
}
.hero-screenshot {
    width: 100%;
    height: auto;
    display: block;
}
/* Floating secondary screenshots */
.hero-floaters {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.floater {
    position: absolute;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px var(--accent-glow);
    width: 240px;
    height: auto;
    transition: transform 0.4s ease;
    animation: floaterBob 6s ease-in-out infinite;
}
.floater-1 {
    top: 10%;
    right: -80px;
    animation-delay: 0s;
}
.floater-2 {
    bottom: 10%;
    left: -80px;
    animation-delay: -3s;
}
@keyframes floaterBob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ============================================
   PAIN POINTS
   ============================================ */
.pain {
    padding: 80px 0;
}
.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.pain-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}
.pain-card:hover {
    border-color: var(--border-light);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}
.pain-icon { font-size: 36px; margin-bottom: 16px; }
.pain-problem {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.5;
}
.pain-arrow {
    font-size: 20px;
    color: var(--accent);
    margin-bottom: 16px;
}
.pain-solution {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.5;
}

/* ============================================
   DEMO
   ============================================ */
.demo {
    padding: 80px 0;
}
.demo-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 48px;
    flex-wrap: wrap;
}
.demo-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
}
.step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--accent);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    flex-shrink: 0;
}
.step-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}
.demo-connector {
    width: 40px;
    height: 2px;
    background: var(--border-light);
}
.demo-video-wrap {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 0 60px rgba(249,115,22,0.15);
}
.demo-video {
    width: 100%;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
    background: var(--bg-card);
}
.demo-video-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent);
    color: #000;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
}

/* ============================================
   FEATURES
   ============================================ */
.features {
    padding: 100px 0;
}
.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}
.feature-block:last-child { margin-bottom: 0; }
.feature-block.reverse .feature-info { order: 2; }
.feature-block.reverse .feature-visual { order: 1; }
.feature-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent);
    background: var(--accent-subtle);
    margin-bottom: 16px;
}
.feature-info h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}
.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
}
.feature-list li svg { flex-shrink: 0; }

/* Feature Screenshots */
.feature-screenshot-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-card);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(249, 115, 22, 0.1);
    transition: all 0.5s ease;
    position: relative;
}
.feature-screenshot-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.3);
    pointer-events: none;
}
.feature-screenshot-wrap:hover {
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 50px rgba(249, 115, 22, 0.15);
    transform: translateY(-6px) scale(1.01);
}
.feature-screenshot {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   USP
   ============================================ */
.usp {
    padding: 80px 0;
}
.usp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.usp-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}
.usp-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
}
.usp-icon { font-size: 36px; margin-bottom: 16px; }
.usp-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}
.usp-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   SOCIAL PROOF
   ============================================ */
.proof {
    padding: 100px 0;
}
.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.proof-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: all 0.3s ease;
}
.proof-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
}
.proof-stars {
    color: #fbbf24;
    font-size: 18px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}
.proof-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}
.proof-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.proof-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-subtle);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}
.proof-name { font-size: 14px; font-weight: 600; }
.proof-role { font-size: 12px; color: var(--text-muted); }

/* ============================================
   PRICING
   ============================================ */
.pricing {
    padding: 100px 0;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}
.price-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    transition: all 0.3s ease;
}
.price-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
}
.price-card.featured {
    border-color: var(--accent);
    background: linear-gradient(180deg, rgba(249, 115, 22, 0.05) 0%, var(--bg-card) 40%);
    box-shadow: 0 0 40px var(--accent-glow);
    transform: scale(1.04);
    z-index: 1;
}
.price-card.featured:hover {
    transform: scale(1.04) translateY(-4px);
}
.price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #000;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 16px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.price-tier {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}
.price-tagline {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}
.price-amount {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 4px;
}
.price-dollar {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-muted);
}
.price-amount {
    font-size: 56px;
    font-weight: 900;
    line-height: 1;
}
.price-old {
    font-size: 18px;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 400;
}
.price-period {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 28px;
}
.price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}
.price-features li {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
}
.price-features li.included .check { color: var(--green); font-weight: 700; }
.price-features li.highlight { color: var(--text); font-weight: 500; }
.price-features li.locked { color: var(--text-muted); opacity: 0.5; }
.price-features li.locked .lock { font-size: 14px; }
.price-device {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}
.pricing-note {
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 32px;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.comparison {
    padding: 0 0 80px;
}
.comparison-details {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.comparison-toggle {
    display: block;
    padding: 20px 28px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.2s;
    list-style: none;
}
.comparison-toggle:hover { color: var(--accent); }
.comparison-toggle::-webkit-details-marker { display: none; }
.comparison-table-wrap {
    overflow-x: auto;
    padding: 0 20px 20px;
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.comparison-table th, .comparison-table td {
    padding: 12px 16px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}
.comparison-table th:first-child, .comparison-table td:first-child {
    text-align: left;
}
.comparison-table th {
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}
.comparison-table td {
    color: var(--text-secondary);
}
.highlight-col {
    background: rgba(249, 115, 22, 0.03);
}
.comparison-table th.highlight-col {
    color: var(--accent);
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how {
    padding: 100px 0;
}
.how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.how-step {
    text-align: center;
    padding: 24px;
}
.how-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    color: #000;
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.how-step h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}
.how-step p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
    padding: 100px 0;
}
.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.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-light);
}
.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--text);
    font-family: var(--font);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s;
}
.faq-q::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    color: var(--text-muted);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
}
.faq-item.active .faq-q::after {
    transform: rotate(45deg);
    color: var(--accent);
}
.faq-q:hover { color: var(--accent); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.active .faq-a {
    max-height: 200px;
    padding: 0 24px 20px;
}
.faq-a p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.final-cta::before {
    content: '';
    position: absolute;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
    opacity: 0.25;
    pointer-events: none;
}
.final-cta h2 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    margin-bottom: 16px;
    line-height: 1.1;
}
.final-cta > p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 36px;
}
.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.final-micro {
    font-size: 13px;
    color: var(--text-muted);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 60px 0 32px;
    border-top: 1px solid var(--border);
}
.footer-inner {
    text-align: center;
}
.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
}
.footer-tagline {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }
.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

/* ============================================
   ANIMATIONS
   ============================================ */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.pain-grid [data-animate]:nth-child(2),
.usp-grid [data-animate]:nth-child(2),
.proof-grid [data-animate]:nth-child(2),
.how-grid [data-animate]:nth-child(2) { transition-delay: 0.1s; }

.pain-grid [data-animate]:nth-child(3),
.usp-grid [data-animate]:nth-child(3),
.proof-grid [data-animate]:nth-child(3),
.how-grid [data-animate]:nth-child(3) { transition-delay: 0.2s; }

.usp-grid [data-animate]:nth-child(4),
.how-grid [data-animate]:nth-child(4) { transition-delay: 0.3s; }

/* Glow pulse on hero screenshot */
@keyframes glowPulse {
    0%, 100% { box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5), 0 0 60px var(--accent-glow); }
    50% { box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5), 0 0 100px var(--accent-glow); }
}
.hero-screenshot-wrap.visible {
    animation: glowPulse 4s ease-in-out infinite;
}

/* Shimmer effect on screenshot wraps */
.feature-screenshot-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
    z-index: 1;
    pointer-events: none;
    animation: shimmer 8s ease-in-out infinite;
}
@keyframes shimmer {
    0%, 100% { left: -100%; }
    50% { left: 150%; }
}

/* Feature block scale-in */
.feature-block[data-animate] {
    opacity: 0;
    transform: translateY(40px) scale(0.97);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.feature-block[data-animate].visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Floating CTA glow animation */
@keyframes ctaGlow {
    0%, 100% { box-shadow: 0 0 30px var(--accent-glow), 0 4px 15px rgba(0,0,0,0.3); }
    50% { box-shadow: 0 0 60px var(--accent-glow), 0 6px 20px rgba(0,0,0,0.4); }
}
.btn-glow {
    animation: ctaGlow 3s ease-in-out infinite;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .feature-block {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .feature-block.reverse .feature-info { order: 1; }
    .feature-block.reverse .feature-visual { order: 2; }
    .pricing-grid { gap: 16px; }
    .price-card.featured { transform: scale(1); }
    .price-card.featured:hover { transform: translateY(-4px); }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-cta-desktop { display: none; }
    .nav-hamburger { display: flex; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(3) { border-right: 1px solid var(--border); border-top: 1px solid var(--border); }
    .stat-item:nth-child(4) { border-right: none; border-top: 1px solid var(--border); }
    .hero { padding: 120px 0 60px; }
    .hero-title { font-size: 32px; }
    .hero-floaters { display: none; }
    .pain-grid { grid-template-columns: 1fr; }
    .usp-grid { grid-template-columns: repeat(2, 1fr); }
    .proof-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .how-grid { grid-template-columns: repeat(2, 1fr); }
    .demo-steps { flex-direction: column; align-items: flex-start; gap: 4px; padding: 0 20px; }
    .demo-connector { width: 2px; height: 20px; margin-left: 15px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .usp-grid { grid-template-columns: 1fr; }
    .how-grid { grid-template-columns: 1fr; }
    .hero-badges { gap: 8px; }
    .hero-title { font-size: 28px; }
    .mockup-stats { grid-template-columns: repeat(2, 1fr); }
    .price-card { padding: 28px 20px; }
}
