@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
    --bg: #06060f;
    --bg2: #0c0c1a;
    --surface: rgba(255,255,255,0.03);
    --surface-h: rgba(255,255,255,0.06);
    --glass: rgba(12,12,26,0.65);
    --ac: #a855f7;
    --ac2: #7c3aed;
    --cyan: #06b6d4;
    --pink: #ec4899;
    --glow: rgba(168,85,247,0.25);
    --glow-cyan: rgba(6,182,212,0.2);
    --txt: #f0eef5;
    --txt2: rgba(200,190,230,0.55);
    --muted: rgba(255,255,255,0.25);
    --border: rgba(168,85,247,0.08);
    --border-h: rgba(168,85,247,0.25);
    --radius: 16px;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(168,85,247,0.3); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: rgba(168,85,247,0.5); }
html { scrollbar-color: rgba(168,85,247,0.3) var(--bg); scrollbar-width: thin; }

/* ===== RESET ===== */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg);
    color: var(--txt);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}
a { text-decoration: none; color: inherit; }

/* ===== AURORA BG ===== */
.aurora {
    position: fixed; inset: 0; z-index: 0; pointer-events: none;
    overflow: hidden;
}
.aurora-orb {
    position: absolute; border-radius: 50%; filter: blur(120px);
    animation: auroraFloat 18s ease-in-out infinite alternate;
}
.aurora-orb:nth-child(1) {
    width: 700px; height: 500px; top: -15%; left: -10%;
    background: radial-gradient(circle, rgba(168,85,247,0.12), transparent 70%);
}
.aurora-orb:nth-child(2) {
    width: 600px; height: 600px; bottom: -20%; right: -10%;
    background: radial-gradient(circle, rgba(6,182,212,0.08), transparent 70%);
    animation-delay: -6s; animation-duration: 22s;
}
.aurora-orb:nth-child(3) {
    width: 500px; height: 400px; top: 40%; left: 50%;
    background: radial-gradient(circle, rgba(236,72,153,0.06), transparent 70%);
    animation-delay: -10s; animation-duration: 25s;
}
@keyframes auroraFloat {
    0% { transform: translate(0,0) scale(1); }
    33% { transform: translate(60px,-40px) scale(1.1); }
    66% { transform: translate(-30px,50px) scale(0.95); }
    100% { transform: translate(20px,-20px) scale(1.05); }
}

.bg-grid {
    position: fixed; inset: 0; z-index: 0; pointer-events: none;
    background-image:
        linear-gradient(rgba(168,85,247,0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(168,85,247,0.018) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 20%, transparent 70%);
}
#particles-canvas { position: fixed; inset: 0; pointer-events: none; z-index: 1; }

/* ===== NAV ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 0 40px; height: 64px;
    display: flex; align-items: center; justify-content: space-between;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.navbar.scrolled {
    background: rgba(6,6,15,0.8);
    backdrop-filter: blur(20px) saturate(1.4);
    border-bottom: 1px solid var(--border);
}
.nav-brand {
    display: flex; align-items: center; gap: 10px;
    font-weight: 900; font-size: 18px; letter-spacing: -0.5px;
}
.nav-brand .brand-icon {
    width: 28px; height: 28px; border-radius: 8px;
    background: linear-gradient(135deg, var(--ac), var(--cyan));
    display: grid; place-items: center;
    box-shadow: 0 0 20px var(--glow);
    position: relative; overflow: hidden;
}
.nav-brand .brand-icon::after {
    content: ''; position: absolute; inset: 3px;
    border-radius: 5px; background: var(--bg);
}
.nav-brand span {
    background: linear-gradient(135deg, #e0c3fc, var(--ac));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
    padding: 7px 16px; border-radius: 10px;
    font-size: 13px; font-weight: 600;
    color: var(--txt2); transition: all 0.25s;
    position: relative;
}
.nav-links a:hover { color: var(--txt); background: rgba(255,255,255,0.04); }
.nav-links a.active { color: #fff; }
.nav-links a.active::after {
    content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 16px; height: 2px; border-radius: 2px;
    background: var(--ac); box-shadow: 0 0 8px var(--glow);
}
.nav-dashboard-btn {
    background: linear-gradient(135deg, var(--ac2), var(--ac)) !important;
    color: #fff !important; border-radius: 10px !important;
    padding: 8px 18px !important;
    box-shadow: 0 2px 16px var(--glow);
    transition: all 0.25s !important;
}
.nav-dashboard-btn:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 24px rgba(168,85,247,0.35) !important;
}

/* ===== HERO ===== */
.hero {
    min-height: calc(100vh - 180px);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
    padding: 80px 20px 20px;
    position: relative; z-index: 10;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 16px; border-radius: 99px;
    background: rgba(168,85,247,0.06);
    border: 1px solid rgba(168,85,247,0.15);
    font-size: 11px; font-weight: 700;
    color: var(--ac); text-transform: uppercase; letter-spacing: 2.5px;
    margin-bottom: 32px;
    animation: fadeUp 0.7s cubic-bezier(0.16,1,0.3,1);
}
.hero-badge .pulse-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34,197,94,0.5);
    animation: pulse 2s ease infinite;
}
@keyframes pulse {
    0%,100% { opacity: 1; box-shadow: 0 0 8px rgba(34,197,94,0.5); }
    50% { opacity: 0.4; box-shadow: 0 0 2px rgba(34,197,94,0.2); }
}
.hero h1 {
    font-size: clamp(48px, 8vw, 88px);
    font-weight: 900; letter-spacing: -3px; line-height: 0.95;
    margin-bottom: 24px;
    animation: fadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.08s both;
}
.hero h1 .gradient-text {
    background: linear-gradient(135deg, #e9d5ff 0%, var(--ac) 40%, var(--cyan) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shimmer 4s ease-in-out infinite;
}
@keyframes shimmer {
    0%,100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}
.hero-subtitle {
    font-size: clamp(15px, 1.6vw, 17px);
    color: var(--txt2); max-width: 480px;
    margin: 0 auto 44px; line-height: 1.75;
    animation: fadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.14s both;
}
.hero-actions {
    display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
    animation: fadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.2s both;
}
.hero-glow {
    position: absolute; width: 500px; height: 500px;
    border-radius: 50%; top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    background: radial-gradient(circle, rgba(168,85,247,0.08), transparent 60%);
    pointer-events: none; z-index: -1;
    animation: heroGlow 6s ease-in-out infinite alternate;
}
@keyframes heroGlow {
    0% { transform: translate(-50%,-50%) scale(1); opacity: 0.6; }
    100% { transform: translate(-50%,-50%) scale(1.3); opacity: 1; }
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 28px; border-radius: 12px;
    font-size: 14px; font-weight: 700;
    cursor: pointer; border: none;
    transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
    position: relative; overflow: hidden;
}
.btn-primary {
    background: linear-gradient(135deg, var(--ac2), var(--ac));
    color: #fff;
    box-shadow: 0 4px 20px var(--glow), inset 0 1px 0 rgba(255,255,255,0.1);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(168,85,247,0.4), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-secondary {
    background: rgba(255,255,255,0.03);
    color: var(--txt); border: 1px solid var(--border);
    backdrop-filter: blur(8px);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.06);
    border-color: var(--border-h);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

/* ===== SECTIONS ===== */
.section { padding: 100px 20px; position: relative; z-index: 10; }
.page-container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-tag {
    font-size: 11px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 4px;
    color: var(--cyan); margin-bottom: 14px; display: inline-block;
}
.section-header h2 {
    font-size: clamp(30px, 5vw, 46px);
    font-weight: 900; letter-spacing: -1.5px; margin-bottom: 14px;
}
.section-header p { font-size: 15px; color: var(--txt2); max-width: 460px; margin: 0 auto; }
.section-divider {
    width: 60px; height: 3px; border-radius: 3px; margin: 0 auto 60px;
    background: linear-gradient(90deg, var(--ac), var(--cyan));
    opacity: 0.5;
}

/* ===== STATS ===== */
.stats-bar {
    display: flex; justify-content: center; gap: 0;
    padding: 0 20px; position: relative; z-index: 10;
    max-width: 700px; margin: 0 auto;
}
.stat-item {
    text-align: center; flex: 1; padding: 36px 20px;
    position: relative;
}
.stat-item + .stat-item::before {
    content: ''; position: absolute; left: 0; top: 25%; height: 50%;
    width: 1px; background: var(--border);
}
.stat-value {
    font-size: 40px; font-weight: 900; letter-spacing: -1px;
    background: linear-gradient(135deg, #e0c3fc, var(--ac));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-label {
    font-size: 10px; text-transform: uppercase; letter-spacing: 2.5px;
    color: var(--muted); margin-top: 6px; font-weight: 700;
}

/* ===== PRODUCT CARDS ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px; max-width: 900px; margin: 0 auto;
}
.product-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px; padding: 36px 30px;
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
    position: relative; overflow: hidden;
}
.product-card::before {
    content: ''; position: absolute; inset: 0;
    border-radius: 20px; padding: 1px;
    background: linear-gradient(135deg, rgba(168,85,247,0.2), transparent 50%, rgba(6,182,212,0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    opacity: 0; transition: opacity 0.4s;
    pointer-events: none;
}
.product-card:hover::before { opacity: 1; }
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 0 40px rgba(168,85,247,0.06);
    border-color: transparent;
}
.product-card .card-glow {
    position: absolute; top: -40px; right: -40px;
    width: 120px; height: 120px; border-radius: 50%;
    filter: blur(50px); opacity: 0;
    transition: opacity 0.4s; pointer-events: none;
}
.product-card:nth-child(1) .card-glow { background: var(--ac); }
.product-card:nth-child(2) .card-glow { background: var(--cyan); }
.product-card:hover .card-glow { opacity: 0.08; }
.product-card .card-icon {
    width: 52px; height: 52px; border-radius: 14px;
    display: grid; place-items: center;
    margin-bottom: 22px; font-size: 22px;
    transition: all 0.35s;
}
.product-card:nth-child(1) .card-icon {
    background: rgba(168,85,247,0.08); color: var(--ac);
    border: 1px solid rgba(168,85,247,0.12);
}
.product-card:nth-child(2) .card-icon {
    background: rgba(6,182,212,0.08); color: var(--cyan);
    border: 1px solid rgba(6,182,212,0.12);
}
.product-card:hover .card-icon {
    transform: scale(1.1);
    box-shadow: 0 0 24px var(--glow);
}
.product-card h3 { font-size: 21px; font-weight: 800; margin-bottom: 10px; letter-spacing: -0.5px; }
.product-card .card-description {
    color: var(--txt2); font-size: 14px; line-height: 1.7; margin-bottom: 22px;
}
.product-card .card-features { list-style: none; margin-bottom: 26px; }
.product-card .card-features li {
    display: flex; align-items: center; gap: 10px;
    padding: 5px 0; font-size: 13px; color: var(--txt2);
}
.product-card .card-features li::before {
    content: '✦'; font-size: 8px; flex-shrink: 0;
    color: var(--ac); opacity: 0.7;
}
.product-card:nth-child(2) .card-features li::before { color: var(--cyan); }
.product-card .card-actions { display: flex; gap: 8px; }
.product-card .card-actions .btn { padding: 10px 20px; font-size: 13px; border-radius: 12px; }

/* ===== BENTO FEATURE GRID ===== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(160px, auto);
    gap: 16px; max-width: 1000px; margin: 0 auto;
}
.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius); padding: 28px 24px;
    transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
    position: relative; overflow: hidden;
}
.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-h);
    box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.feature-card .feature-icon {
    font-size: 28px; margin-bottom: 16px; display: block;
    background: linear-gradient(135deg, var(--ac), var(--cyan));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.feature-card h3 { font-size: 16px; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.3px; }
.feature-card p { color: var(--txt2); font-size: 13px; line-height: 1.7; }
.feature-card.wide { grid-column: span 2; }

/* ===== CTA SECTION ===== */
.cta-section {
    position: relative; z-index: 10;
    padding: 80px 20px;
}
.cta-box {
    max-width: 700px; margin: 0 auto;
    background: linear-gradient(135deg, rgba(168,85,247,0.06), rgba(6,182,212,0.04));
    border: 1px solid var(--border-h);
    border-radius: 24px; padding: 56px 40px;
    text-align: center; position: relative; overflow: hidden;
}
.cta-box::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(168,85,247,0.1), transparent 60%);
    pointer-events: none;
}
.cta-box h2 { font-size: 32px; font-weight: 900; letter-spacing: -1px; margin-bottom: 12px; position: relative; }
.cta-box p { color: var(--txt2); font-size: 15px; margin-bottom: 32px; position: relative; }
.cta-box .cta-actions { display: flex; gap: 12px; justify-content: center; position: relative; }

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
    background: var(--surface);
    border: 1px solid var(--border-h);
    border-radius: 20px; padding: 40px;
    margin-bottom: 56px; text-align: center;
    max-width: 720px; margin-left: auto; margin-right: auto;
}
.highlight-box h2 { font-size: 22px; font-weight: 800; margin-bottom: 14px; }
.highlight-box p { color: var(--txt2); line-height: 1.75; font-size: 14px; }
.highlight-box strong { color: var(--ac); }

/* ===== DISCLAIMER ===== */
.disclaimer {
    background: rgba(255,255,255,0.015);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 14px; padding: 24px 28px;
    margin-top: 60px; text-align: center;
    color: var(--muted); font-size: 12px; line-height: 1.7;
    max-width: 700px; margin-left: auto; margin-right: auto;
}

/* ===== FOOTER ===== */
.site-footer {
    position: relative; z-index: 10;
    padding: 48px 20px; text-align: center;
}
.site-footer::before {
    content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 200px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--ac), var(--cyan), transparent);
}
.footer-brand {
    font-weight: 900; font-size: 18px; margin-bottom: 8px;
    background: linear-gradient(135deg, #e0c3fc, var(--ac2));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.footer-text { color: var(--muted); font-size: 12px; }
.footer-links { display: flex; justify-content: center; gap: 24px; margin-top: 16px; }
.footer-links a { color: var(--muted); font-size: 12px; font-weight: 600; transition: color 0.2s; }
.footer-links a:hover { color: var(--ac); }

/* ===== BACK NAV ===== */
.back-nav {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 22px; border-radius: 12px;
    background: var(--surface);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    color: var(--txt2); font-weight: 600; font-size: 13px;
    transition: all 0.25s; margin-bottom: 40px;
}
.back-nav:hover { color: var(--txt); border-color: var(--border-h); transform: translateX(-4px); }

/* ===== PAGE HERO ===== */
.page-hero {
    padding: 130px 20px 52px;
    text-align: center; position: relative; z-index: 10;
}
.page-hero h1 {
    font-size: clamp(34px, 6vw, 54px);
    font-weight: 900; letter-spacing: -2px; margin-bottom: 16px;
    background: linear-gradient(135deg, #fff 30%, #c084fc 60%, var(--cyan));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.page-hero .subtitle {
    color: var(--txt2); font-size: 16px;
    max-width: 520px; margin: 0 auto; line-height: 1.7;
}

/* ===== PRICING ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px; max-width: 760px; margin: 0 auto;
}
.pricing-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 22px; padding: 40px 32px;
    position: relative; overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.pricing-card::before {
    content: ''; position: absolute; inset: 0;
    border-radius: 22px; padding: 1px;
    background: linear-gradient(135deg, rgba(168,85,247,0.25), transparent 50%, rgba(6,182,212,0.15));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    opacity: 0; transition: opacity 0.4s;
    pointer-events: none;
}
.pricing-card:hover::before { opacity: 1; }
.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 64px rgba(0,0,0,0.35), 0 0 40px rgba(168,85,247,0.06);
    border-color: transparent;
}
.pricing-card .pricing-glow {
    position: absolute; top: -50px; right: -50px;
    width: 140px; height: 140px; border-radius: 50%;
    filter: blur(60px); opacity: 0;
    transition: opacity 0.4s; pointer-events: none;
}
.pricing-card:hover .pricing-glow { opacity: 0.1; }
.pricing-card.pro .pricing-glow { background: var(--ac); }
.pricing-card.beginner .pricing-glow { background: var(--cyan); }
.pricing-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 14px; border-radius: 99px;
    font-size: 10px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 2.5px;
    margin-bottom: 20px;
}
.pricing-card.pro .pricing-badge {
    background: rgba(168,85,247,0.1);
    border: 1px solid rgba(168,85,247,0.2);
    color: var(--ac);
}
.pricing-card.beginner .pricing-badge {
    background: rgba(6,182,212,0.1);
    border: 1px solid rgba(6,182,212,0.2);
    color: var(--cyan);
}
.pricing-card h3 {
    font-size: 26px; font-weight: 900; letter-spacing: -0.5px; margin-bottom: 24px;
}
.pricing-tiers {
    display: flex; flex-direction: column; gap: 12px;
    margin-bottom: 28px;
}
.pricing-tier {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 18px; border-radius: 12px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
}
.pricing-tier .tier-duration {
    font-size: 14px; font-weight: 600; color: var(--txt);
}
.pricing-tier .tier-price {
    font-size: 18px; font-weight: 900;
    background: linear-gradient(135deg, #e0c3fc, var(--ac));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.pricing-card.beginner .pricing-tier .tier-price {
    background: linear-gradient(135deg, #a5f3fc, var(--cyan));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.pricing-features {
    list-style: none; margin-bottom: 30px;
}
.pricing-features li {
    display: flex; align-items: center; gap: 10px;
    padding: 6px 0; font-size: 13.5px; color: var(--txt2);
}
.pricing-features li::before {
    content: '✦'; font-size: 8px; flex-shrink: 0;
    color: var(--ac); opacity: 0.7;
}
.pricing-card.beginner .pricing-features li::before { color: var(--cyan); }
.pricing-card .pricing-cta { width: 100%; text-align: center; justify-content: center; }
.pricing-coming-soon {
    display: inline-block;
    padding: 5px 14px; border-radius: 99px;
    background: rgba(6,182,212,0.08);
    border: 1px solid rgba(6,182,212,0.15);
    font-size: 10px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 2px;
    color: var(--cyan); margin-bottom: 8px;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0; transform: translateY(28px);
    transition: all 0.6s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .navbar { padding: 0 16px; }
    .nav-links a { padding: 5px 10px; font-size: 11px; }
    .products-grid { grid-template-columns: 1fr; }
    .feature-grid { grid-template-columns: 1fr; }
    .feature-card.wide { grid-column: span 1; }
    .hero-actions { flex-direction: column; align-items: center; }
    .stats-bar { flex-wrap: wrap; gap: 0; }
    .stat-item { min-width: 50%; }
    .cta-box { padding: 40px 24px; }
    .cta-box .cta-actions { flex-direction: column; align-items: center; }
}
