/* ================================================================
   NEXCLIQ — LANDING PAGE STYLES
   ================================================================ */

/* -------------------- LANDING BODY OVERRIDE -------------------- */
body.landing-body {
    display: block;
    padding: 0;
    background: #080808;
    overflow-x: hidden;
}

/* -------------------- HERO SECTION -------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px 120px;
    overflow: hidden;
}

/* Radial glow behind the headline */
.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(255, 85, 0, 0.13) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Subtle grid texture */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,85,0,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,85,0,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
    pointer-events: none;
}

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

.hero-badge {
    display: inline-block;
    border: 0.5px solid rgba(255, 85, 0, 0.4);
    color: var(--accent);
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 7px 18px;
    border-radius: 100px;
    margin-bottom: 36px;
    background: rgba(255, 85, 0, 0.06);
}

.hero-logo {
    height: 38px;
    margin: 0 auto 48px;
    object-fit: contain;
}

.hero-headline {
    font-size: clamp(48px, 9vw, 88px);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -2px;
    color: #ffffff;
    margin-bottom: 12px;
}

.hero-headline .accent-word {
    color: var(--accent);
    display: block;
}

.hero-subheadline {
    font-size: clamp(14px, 2.5vw, 18px);
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.6;
    max-width: 520px;
    margin: 24px auto 48px;
    letter-spacing: 0.2px;
}

.hero-cta-group {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.cta-primary {
    background-color: var(--accent);
    color: #ffffff;
    border: none;
    padding: 16px 36px;
    border-radius: var(--radius-md);
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: opacity var(--transition), box-shadow var(--transition), transform var(--transition);
}

.cta-primary:hover {
    opacity: 0.92;
    box-shadow: 0 8px 30px rgba(255, 85, 0, 0.4);
    transform: translateY(-1px);
}

.cta-secondary {
    background: transparent;
    color: var(--text);
    border: 0.5px solid var(--line);
    padding: 16px 36px;
    border-radius: var(--radius-md);
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: border-color var(--transition), color var(--transition), transform var(--transition);
}

.cta-secondary:hover {
    border-color: var(--text-muted);
    color: var(--text);
    transform: translateY(-1px);
}

/* Trust line under CTAs */
.hero-trust {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.hero-trust strong {
    color: var(--text);
}

/* Scroll indicator */
.scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-hint svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(6px); }
}

/* -------------------- STATS BAR -------------------- */
.stats-bar {
    border-top: 0.5px solid var(--line);
    border-bottom: 0.5px solid var(--line);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--card);
}

.stat-item {
    padding: 32px 24px;
    text-align: center;
    border-right: 0.5px solid var(--line);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-desc {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* -------------------- FEATURES SECTION -------------------- */
.features {
    padding: 100px 24px;
    max-width: 1100px;
    margin: 0 auto;
}

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

.section-eyebrow {
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.15;
    color: var(--text);
}

.section-desc {
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 300;
    margin-top: 16px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

.feature-card {
    background: var(--card);
    border: 0.5px solid var(--line);
    border-radius: var(--radius-xl);
    padding: 30px;
    transition: border-color var(--transition), transform var(--transition);
}

.feature-card:hover {
    border-color: rgba(255, 85, 0, 0.3);
    transform: translateY(-2px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon.orange {
    background: linear-gradient(135deg, var(--accent), #ff7a33);
}

.feature-icon.green {
    background: linear-gradient(135deg, var(--accent-green-border), #0d9467);
}

.feature-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 2;
}

.feature-name {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.1px;
}

.feature-desc {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.6;
}

/* -------------------- HOW IT WORKS -------------------- */
.how-it-works {
    padding: 100px 24px;
    background: var(--card);
    border-top: 0.5px solid var(--line);
    border-bottom: 0.5px solid var(--line);
}

.how-it-works-inner {
    max-width: 900px;
    margin: 0 auto;
}

.steps-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-top: 64px;
}

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

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 85, 0, 0.12);
    border: 1px solid rgba(255, 85, 0, 0.3);
    color: var(--accent);
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-desc {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.6;
}

/* -------------------- FINAL CTA -------------------- */
.final-cta {
    padding: 120px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    bottom: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse at center, rgba(255, 85, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.final-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.final-cta-headline {
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.final-cta-sub {
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* -------------------- LANDING FOOTER -------------------- */
.landing-footer {
    border-top: 0.5px solid var(--line);
    padding: 32px 24px;
    text-align: center;
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.landing-footer a {
    color: var(--text-muted);
    transition: color var(--transition);
}

.landing-footer a:hover {
    color: var(--accent);
}

/* -------------------- RESPONSIVE -------------------- */
@media (max-width: 640px) {
    .hero {
        padding: 60px 20px 100px;
    }

    .stats-bar {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-right: none;
        border-bottom: 0.5px solid var(--line);
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-primary,
    .cta-secondary {
        text-align: center;
    }

    .features,
    .final-cta {
        padding: 60px 20px;
    }

    .how-it-works {
        padding: 60px 20px;
    }
}