/* ═══════════════════════════════════════════════════════════
   VIRASCOPE — Marketing Website Stylesheet
   Modern, dark, futuristic design system
   ═══════════════════════════════════════════════════════════ */

/* ── Reset & Variables ─────────────────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --bg:          #050810;
    --bg-alt:      #0a0e1a;
    --surface:     #111827;
    --card:        #151c2c;
    --elevated:    #1a2236;
    --border:      #1e293b;
    --border-hi:   #334155;

    /* Text */
    --white:       #f1f5f9;
    --text:        #cbd5e1;
    --text-sec:    #94a3b8;
    --muted:       #64748b;
    --faint:       #475569;

    /* Accents */
    --purple:      #6366f1;
    --purple-dark: #4f46e5;
    --purple-glow: rgba(99, 102, 241, 0.15);
    --cyan:        #22d3ee;
    --green:       #22c55e;
    --green-dark:  #16a34a;
    --red:         #ef4444;
    --orange:      #f59e0b;
    --pink:        #ec4899;

    /* Gradient */
    --gradient:    linear-gradient(135deg, #6366f1, #22d3ee, #6366f1);
    --gradient-2:  linear-gradient(135deg, #6366f1, #ec4899);

    /* Spacing */
    --container:   1200px;
    --section-py:  120px;

    /* Radius */
    --radius-sm:   8px;
    --radius:      12px;
    --radius-lg:   20px;
    --radius-xl:   24px;

    /* Shadows */
    --shadow:      0 4px 24px rgba(0,0,0,0.3);
    --shadow-lg:   0 8px 48px rgba(0,0,0,0.4);
    --glow-purple: 0 0 60px rgba(99, 102, 241, 0.2);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

img { max-width: 100%; }


/* ── Navbar ────────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(5, 8, 16, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 800;
}

.logo-icon { font-size: 24px; }
.logo-text { color: var(--white); }
.logo-accent { color: var(--purple); }

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-sec);
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

.nav-actions { display: flex; gap: 12px; }

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

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: 0.3s;
}


/* ── Buttons ───────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: inherit;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    white-space: nowrap;
}

.btn-sm {
    font-size: 13px;
    padding: 8px 20px;
    border-radius: var(--radius-sm);
}

.btn-lg {
    font-size: 16px;
    padding: 14px 32px;
    border-radius: var(--radius);
}

.btn-block {
    width: 100%;
    padding: 14px 24px;
    font-size: 15px;
    border-radius: var(--radius);
}

.btn-primary {
    background: var(--purple);
    color: white;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
}
.btn-primary:hover {
    background: var(--purple-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(99, 102, 241, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--border-hi);
}
.btn-outline:hover {
    background: var(--elevated);
    border-color: var(--purple);
}

.btn-ghost {
    background: rgba(255,255,255,0.06);
    color: var(--white);
    border: 1px solid var(--border);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--border-hi);
}


/* ── Section Headers ───────────────────────────────────────── */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--purple);
    background: var(--purple-glow);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 18px;
    color: var(--text-sec);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

.gradient-text {
    background: var(--gradient);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}


/* ── Hero ──────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 140px;
    padding-bottom: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black, transparent);
}

.hero-glow {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.06), transparent 70%);
    filter: blur(40px);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-sec);
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 32px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}

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

.hero-title {
    font-size: clamp(40px, 5.5vw, 72px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-sec);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 56px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.stat-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
}

.stat-label {
    font-size: 13px;
    color: var(--muted);
    display: block;
    margin-top: 2px;
}

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

/* Hero Screenshot */
.hero-screenshot {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 960px;
    margin: 60px auto 0;
    padding: 0 24px;
}

.screenshot-frame {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg), var(--glow-purple);
}

.screenshot-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--card);
    border-bottom: 1px solid var(--border);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #22c55e; }

.bar-title {
    margin-left: 12px;
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
}

.screenshot-body {
    padding: 24px;
    min-height: 300px;
}

/* Mock UI inside screenshot */
.mock-ui {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 20px;
}

.mock-sidebar {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mock-stat-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px;
}

.mock-stat-card.accent { border-color: var(--purple); }
.mock-stat-card.green { border-color: var(--green); }

.mock-stat-num {
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
}

.mock-stat-lbl {
    font-size: 11px;
    color: var(--muted);
    margin-top: 2px;
}

.mock-main {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.mock-table-header {
    display: grid;
    grid-template-columns: 2fr 60px 80px 100px;
    padding: 10px 16px;
    font-size: 11px;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--elevated);
    border-bottom: 1px solid var(--border);
}

.mock-row {
    display: grid;
    grid-template-columns: 2fr 60px 80px 100px;
    padding: 10px 16px;
    font-size: 13px;
    color: var(--text);
    border-bottom: 1px solid rgba(255,255,255,0.03);
    align-items: center;
}

.mock-row.alt { background: rgba(255,255,255,0.02); }

.pill {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}

.pill.hot { background: rgba(239, 68, 68, 0.2); color: #ef4444; }
.pill.warm { background: rgba(245, 158, 11, 0.2); color: #f59e0b; }

.green-text { color: var(--green); font-weight: 600; }


/* ── Social Proof ──────────────────────────────────────────── */
.social-proof {
    padding: 48px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-alt);
}

.proof-text {
    text-align: center;
    font-size: 13px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}

.proof-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
}

.proof-item {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-sec);
    opacity: 0.7;
}


/* ── Features ──────────────────────────────────────────────── */
.features {
    padding: var(--section-py) 0;
}

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

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.3s;
    position: relative;
}

.feature-card:hover {
    border-color: var(--border-hi);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.feature-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--surface), var(--card));
    border-color: var(--purple);
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-sec);
    line-height: 1.7;
}

.feature-tag {
    display: inline-block;
    margin-top: 16px;
    font-size: 11px;
    font-weight: 600;
    color: var(--purple);
    background: var(--purple-glow);
    padding: 4px 12px;
    border-radius: 100px;
}


/* ── How It Works ──────────────────────────────────────────── */
.how-it-works {
    padding: var(--section-py) 0;
    background: var(--bg-alt);
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.step {
    display: grid;
    grid-template-columns: auto 1fr 400px;
    gap: 40px;
    align-items: center;
}

.step-number {
    font-size: 80px;
    font-weight: 900;
    color: var(--surface);
    -webkit-text-stroke: 1px var(--border-hi);
    line-height: 1;
}

.step-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.step-content p {
    font-size: 15px;
    color: var(--text-sec);
    line-height: 1.7;
}

.step-mock {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
}

.mock-field {
    display: flex;
    justify-content: space-between;
    padding: 10px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
}

.mock-field:last-child { border-bottom: none; }
.mock-field span:first-child { color: var(--text-sec); }
.mono { font-family: 'JetBrains Mono', monospace; color: var(--white); }

.step-mock.scanning {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient);
    animation: scan 2s ease infinite;
}

@keyframes scan {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(200px); opacity: 0; }
}

.mock-video {
    padding: 10px 14px;
    font-size: 13px;
    color: var(--text-sec);
    background: var(--card);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.mock-video.match {
    border-color: var(--green);
    color: var(--green);
    background: rgba(34, 197, 94, 0.05);
}

.step-mock.results {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.result-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 13px;
}

.rc-name { color: var(--white); font-weight: 600; }
.rc-viral { color: var(--orange); font-weight: 700; }
.rc-rev { color: var(--green); font-weight: 700; }


/* ── Pricing ───────────────────────────────────────────────── */
.pricing {
    padding: var(--section-py) 0;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.toggle-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--muted);
    transition: color 0.2s;
}

.toggle-label.active { color: var(--white); }

.toggle-switch {
    width: 48px;
    height: 26px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 100px;
    cursor: pointer;
    position: relative;
    transition: background 0.3s;
}

.toggle-switch.active {
    background: var(--purple);
    border-color: var(--purple);
}

.toggle-knob {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: var(--white);
    border-radius: 50%;
    transition: transform 0.3s;
}

.toggle-switch.active .toggle-knob {
    transform: translateX(22px);
}

.save-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--green);
    background: rgba(34, 197, 94, 0.1);
    padding: 2px 8px;
    border-radius: 100px;
    margin-left: 4px;
}

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

.price-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    transition: all 0.3s;
    position: relative;
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.price-card.popular {
    border-color: var(--purple);
    background: linear-gradient(180deg, var(--card), var(--surface));
    box-shadow: var(--glow-purple);
    transform: scale(1.03);
}

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

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--purple);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 20px;
    border-radius: 100px;
}

.price-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.price-desc {
    font-size: 14px;
    color: var(--muted);
}

.price-amount {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin: 24px 0;
}

.currency {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.amount {
    font-size: 56px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.amount.hidden { display: none; }

.period {
    font-size: 14px;
    color: var(--muted);
    margin-left: 4px;
}

.price-features {
    list-style: none;
    margin-bottom: 32px;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.price-features li.disabled { color: var(--faint); }

.check { color: var(--green); font-weight: 700; }
.x { color: var(--faint); }

.pricing-note {
    text-align: center;
    margin-top: 32px;
    font-size: 13px;
    color: var(--muted);
}


/* ── Testimonials ──────────────────────────────────────────── */
.testimonials {
    padding: var(--section-py) 0;
    background: var(--bg-alt);
}

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

.testimonial-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.3s;
}

.testimonial-card:hover {
    border-color: var(--border-hi);
    transform: translateY(-2px);
}

.stars {
    color: var(--orange);
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.quote {
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

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

.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--purple-glow);
    border: 1px solid var(--purple);
    color: var(--purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

.author-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.author-role {
    font-size: 12px;
    color: var(--muted);
}


/* ── FAQ ───────────────────────────────────────────────────── */
.faq {
    padding: var(--section-py) 0;
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
    text-align: left;
    transition: color 0.2s;
}

.faq-question:hover { color: var(--purple); }

.faq-icon {
    font-size: 24px;
    color: var(--muted);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    color: var(--purple);
}

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

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 20px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--text-sec);
    line-height: 1.7;
}


/* ── CTA ───────────────────────────────────────────────────── */
.cta {
    padding: var(--section-py) 0;
    background: var(--bg-alt);
}

.cta-card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 80px 40px;
    text-align: center;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(99, 102, 241, 0.15), transparent 70%);
    pointer-events: none;
}

.cta-card h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
    position: relative;
}

.cta-card p {
    font-size: 18px;
    color: var(--text-sec);
    margin-bottom: 32px;
    position: relative;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    position: relative;
}


/* ── Footer ────────────────────────────────────────────────── */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border);
}

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

.footer-brand p {
    font-size: 14px;
    color: var(--muted);
    margin-top: 12px;
    max-width: 280px;
    line-height: 1.6;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: var(--text-sec);
    padding: 6px 0;
    transition: color 0.2s;
}

.footer-col a:hover { color: var(--white); }

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

.footer-bottom p {
    font-size: 13px;
    color: var(--muted);
}


/* ── Download Section ──────────────────────────────────────── */
.download {
    padding: var(--section-py) 0;
    background: linear-gradient(180deg, var(--bg) 0%, rgba(110, 0, 255, 0.04) 50%, var(--bg) 100%);
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 720px;
    margin: 0 auto 48px;
}

.download-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.download-card:hover {
    border-color: rgba(110, 0, 255, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.download-card:hover::before { opacity: 1; }

.dl-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(110, 0, 255, 0.1);
    color: var(--accent);
}

.download-card h3 {
    font-size: 22px;
    margin-bottom: 6px;
    color: var(--white);
}

.dl-compat {
    font-size: 13px;
    color: var(--text-sec);
    margin-bottom: 20px;
}

.dl-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
    padding: 10px 16px;
    margin-bottom: 20px;
    font-size: 13px;
    color: var(--text-sec);
}

.dl-size {
    color: var(--muted);
    font-size: 12px;
}

.btn-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
}

.dl-note {
    font-size: 12px;
    color: var(--muted);
    margin-top: 12px;
}

.download-footer {
    text-align: center;
}

.download-footer p {
    font-size: 15px;
    color: var(--text-sec);
    margin-bottom: 20px;
}

.accent-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.accent-link:hover { color: var(--accent-h); }

.dl-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.dl-badge {
    font-size: 13px;
    color: var(--text-sec);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 8px 18px;
}


/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .step {
        grid-template-columns: auto 1fr;
    }
    .step-visual {
        grid-column: 1 / -1;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
    .price-card.popular { transform: none; }
    .price-card.popular:hover { transform: translateY(-4px); }
}

@media (max-width: 768px) {
    :root { --section-py: 80px; }

    .nav-links { display: none; }
    .mobile-toggle { display: flex; }

    .hero { padding-top: 120px; }
    .hero-title { letter-spacing: -0.5px; }
    .hero-actions { flex-direction: column; align-items: center; }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    .stat-divider { width: 40px; height: 1px; }

    .mock-ui { grid-template-columns: 1fr; }
    .mock-sidebar { flex-direction: row; }
    .mock-stat-card { flex: 1; }

    .feature-card.featured { grid-column: span 1; }
    .features-grid { grid-template-columns: 1fr; }

    .step { grid-template-columns: 1fr; gap: 20px; }
    .step-number {
        font-size: 48px;
    }
    .step-visual { max-width: 100%; }

    .testimonial-grid { grid-template-columns: 1fr; }

    .download-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto 48px; }
    .dl-badges { flex-direction: column; align-items: center; gap: 10px; }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 32px; }
    .mock-sidebar { flex-direction: column; }
}


/* ── Animations ────────────────────────────────────────────── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.fade-in-delay-1 { animation-delay: 0.1s; }
.fade-in-delay-2 { animation-delay: 0.2s; }
.fade-in-delay-3 { animation-delay: 0.3s; }

