/* =====================================
   Venya Home Page Styles
   ===================================== */

:root {
    --primary: #6C3AED;
    --primary-light: #8B5CF6;
    --primary-dark: #5B21B6;
    --primary-bg: #F5F3FF;
    --accent: #10B981;
    --slate-50: #F8FAFC;
    --slate-100: #F1F5F9;
    --slate-200: #E2E8F0;
    --slate-300: #CBD5E1;
    --slate-400: #94A3B8;
    --slate-500: #64748B;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1E293B;
    --slate-900: #0F172A;
    --slate-950: #020617;
    --radius: 12px;
    --radius-lg: 20px;
}

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

body {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    background: var(--slate-50);
    color: var(--slate-800);
    overflow-x: hidden;
}

/* ── Navigation ──────────────── */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--slate-200);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.nav-logo-img {
    height: 36px;
}

.nav-logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
}

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

.nav-link {
    text-decoration: none;
    font-size: .9rem;
    font-weight: 600;
    color: var(--slate-600);
    transition: color .2s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-cta {
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: .9rem;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(108, 58, 237, .3);
    transition: all .2s;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(108, 58, 237, .4);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--slate-800);
}

.mobile-menu {
    display: none;
}

@media (max-width: 768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu {
        display: none;
        flex-direction: column;
        padding: 16px 24px 20px;
        gap: 12px;
        border-top: 1px solid var(--slate-100);
        background: #fff;
    }

    .mobile-menu.open {
        display: flex;
    }

    .mobile-link {
        font-weight: 600;
        color: var(--slate-600);
        text-decoration: none;
        font-size: .95rem;
    }

    .mobile-link.active {
        color: var(--primary);
    }

    .mobile-cta {
        text-align: center;
        padding: 12px;
        background: linear-gradient(135deg, var(--primary), var(--primary-light));
        color: #fff;
        border-radius: var(--radius);
        font-weight: 700;
        text-decoration: none;
    }
}

/* ── Hero ──────────────────── */
.hero {
    padding: 80px 24px 100px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--slate-50) 50%, #EDE9FE 100%);
}

.hero-bg-1,
.hero-bg-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .35;
    z-index: 0;
}

.hero-bg-1 {
    top: -100px;
    left: -100px;
    background: var(--primary);
}

.hero-bg-2 {
    bottom: -100px;
    right: -100px;
    background: #06B6D4;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 64px;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(108, 58, 237, .1);
    color: var(--primary);
    border-radius: 100px;
    font-size: .85rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-highlight {
    color: var(--primary);
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--slate-500);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    border-radius: var(--radius);
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(108, 58, 237, .35);
    transition: all .3s;
    font-size: 1.1rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(108, 58, 237, .45);
}

.btn-secondary {
    display: flex;
    align-items: center;
    padding: 14px 28px;
    background: #fff;
    color: var(--slate-800);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius);
    text-decoration: none;
    transition: all .2s;
}

.btn-secondary:hover {
    background: var(--slate-50);
}

.btn-sub {
    font-size: .75rem;
    font-weight: 500;
    opacity: .8;
}

.btn-main {
    font-weight: 700;
}

/* Hero Mockup */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-glow {
    position: absolute;
    inset: -16px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--primary), #06B6D4);
    opacity: .15;
    filter: blur(20px);
}

.hero-mockup {
    position: relative;
}

.mockup-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .1);
    border: 1px solid var(--slate-100);
    width: 320px;
    transform: rotate(2deg);
    transition: transform .5s;
}

.mockup-card:hover {
    transform: rotate(0);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    font-weight: 700;
    font-size: .95rem;
}

.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
}

.mockup-field {
    margin-bottom: 16px;
}

.mockup-field span {
    font-size: .75rem;
    font-weight: 600;
    color: var(--slate-500);
    margin-bottom: 6px;
    display: block;
}

.mockup-input {
    height: 36px;
    border-radius: 8px;
    background: var(--slate-100);
    border: 1px solid var(--slate-200);
}

.mockup-input.short {
    width: 60%;
}

.mockup-btn {
    padding: 12px;
    text-align: center;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: .9rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
}

@media (max-width: 768px) {
    .hero {
        padding: 48px 16px 64px;
    }

    .hero-inner {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-desc {
        margin: 0 auto 28px;
    }

    .hero-actions {
        justify-content: center;
    }

    .mockup-card {
        width: 280px;
    }
}

/* ── Stats ──────────────────── */
.stats-bar {
    background: #fff;
    border-top: 1px solid var(--slate-100);
    border-bottom: 1px solid var(--slate-100);
}

.stats-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 32px 24px;
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-bg);
    color: var(--primary);
    font-size: 1.1rem;
}

.stat-value {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--slate-800);
}

.stat-label {
    font-size: .78rem;
    color: var(--slate-500);
}

/* ── Features ────────────────── */
.features {
    padding: 80px 24px;
    background: #fff;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-tag {
    display: block;
    text-align: center;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 8px;
}

.section-tag.light {
    color: #A78BFA;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.section-title.light {
    color: #fff;
}

.section-desc {
    text-align: center;
    color: var(--slate-500);
    font-size: 1.05rem;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.feature-card {
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--slate-100);
    background: var(--slate-50);
    transition: all .3s;
}

.feature-card:hover {
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
    border-color: rgba(108, 58, 237, .15);
}

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

.feature-card p {
    font-size: .9rem;
    color: var(--slate-500);
    line-height: 1.6;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: #fff;
}

.feature-icon.purple {
    background: var(--primary);
    box-shadow: 0 4px 12px rgba(108, 58, 237, .3);
}

.feature-icon.blue {
    background: #3B82F6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, .3);
}

.feature-icon.green {
    background: var(--accent);
    box-shadow: 0 4px 12px rgba(16, 185, 129, .3);
}

.feature-icon.orange {
    background: #F59E0B;
    box-shadow: 0 4px 12px rgba(245, 158, 11, .3);
}

.feature-icon.pink {
    background: #EC4899;
    box-shadow: 0 4px 12px rgba(236, 72, 153, .3);
}

.feature-icon.teal {
    background: #06B6D4;
    box-shadow: 0 4px 12px rgba(6, 182, 212, .3);
}

@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

/* ── How It Works ──────────── */
.how-it-works {
    padding: 80px 24px;
    background: var(--slate-900);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 220px;
    max-width: 300px;
    padding: 32px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    text-align: center;
}

.step-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.step-card p {
    font-size: .88rem;
    color: var(--slate-400);
    line-height: 1.6;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    font-size: 1.3rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.step-arrow {
    color: var(--primary-light);
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .step-arrow {
        transform: rotate(90deg);
    }

    .steps-grid {
        flex-direction: column;
    }
}

/* ── Download ────────────────── */
.download {
    padding: 80px 24px;
    background: #fff;
    text-align: center;
}

.download-logo {
    height: 64px;
    margin-bottom: 20px;
}

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

.download-card {
    border-radius: var(--radius-lg);
    padding: 40px 28px;
    text-align: center;
}

.download-card.dark {
    background: linear-gradient(135deg, var(--slate-900), var(--slate-800));
    color: #fff;
}

.download-card.light {
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
}

.download-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.download-card p {
    font-size: .9rem;
    color: var(--slate-400);
    margin-bottom: 24px;
}

.download-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 16px;
}

.download-icon.android {
    background: #22C55E;
    color: #fff;
}

.download-icon.play {
    background: var(--slate-200);
    color: var(--slate-400);
}

.download-icon.apple {
    background: var(--slate-200);
    color: var(--slate-400);
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
    border-radius: 12px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: .95rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    text-decoration: none;
    transition: all .2s;
    width: 100%;
}

.download-btn:hover {
    transform: translateY(-1px);
}

.download-btn.disabled {
    background: var(--slate-200);
    color: var(--slate-500);
    cursor: not-allowed;
}

.download-note {
    display: block;
    font-size: .78rem;
    color: var(--slate-500);
    margin-top: 12px;
}

.ios-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    max-width: 700px;
    margin: 0 auto;
    padding: 20px 28px;
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
}

.ios-banner h4 {
    font-size: 1rem;
    font-weight: 700;
}

.ios-banner p {
    font-size: .85rem;
    color: var(--slate-500);
}

.ios-badge {
    padding: 6px 14px;
    background: var(--slate-200);
    color: var(--slate-500);
    border-radius: 100px;
    font-size: .78rem;
    font-weight: 700;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .download-grid {
        grid-template-columns: 1fr;
    }

    .ios-banner {
        flex-direction: column;
        text-align: center;
    }
}

/* ── CTA ──────────────────── */
.cta-section {
    padding: 64px 24px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
}

.cta-section h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.cta-section p {
    font-size: 1.05rem;
    opacity: .9;
    margin-bottom: 28px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    background: #fff;
    color: var(--primary);
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all .2s;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .15);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
}

/* ── Footer ──────────────────── */
.home-footer {
    background: var(--slate-950);
    color: #fff;
    padding: 48px 24px 32px;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
}

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

.footer-main {}

.footer-logo-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    margin-bottom: 12px;
}

.footer-logo-img {
    height: 28px;
    filter: grayscale(1) brightness(2);
}

.footer-logo-text {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--slate-300);
}

.footer-tagline {
    font-size: .85rem;
    color: var(--slate-500);
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-powered {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-powered span {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: var(--slate-600);
}

.footer-alornix {
    height: 18px;
}

.footer-col h4 {
    font-weight: 700;
    color: var(--slate-200);
    margin-bottom: 16px;
    font-size: .9rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: var(--slate-400);
    text-decoration: none;
    font-size: .85rem;
    transition: color .2s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: .75rem;
    color: var(--slate-600);
}

.footer-bottom a {
    color: var(--primary-light);
    text-decoration: none;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    color: var(--slate-500);
    font-size: 1.1rem;
    transition: color .2s;
}

.footer-socials a:hover {
    color: var(--slate-300);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}