﻿/* ===== Landing page content inside the same neon box ===== */

.landing-box {
    height: 860px;
}
.page-center {
    padding-top: 70px;
}
/* keep same as auth */

.landing {
    position: relative;
    background: #222;
    padding: 42px 28px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

    /* Optional: nicer scrolling */
    .landing::-webkit-scrollbar {
        width: 8px;
    }

    .landing::-webkit-scrollbar-thumb {
        background: rgba(255,255,255,.12);
        border-radius: 10px;
    }

.landing-hero h2 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    letter-spacing: .06em;
    line-height: 1.35;
}

.neon {
    color: #45f3ff;
}

.subtitle {
    margin-top: 12px;
    color: #8f8f8f;
    font-size: 0.95em;
    text-align: center;
    line-height: 1.6;
}

.cta-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.cta-primary {
    border: none;
    outline: none;
    padding: 12px 16px;
    background: #45f3ff;
    cursor: pointer;
    border-radius: 6px;
    font-weight: 700;
    width: 100%;
    text-align: center;
    color: #fff;
    border: 2px solid #45f3ff;
}

    .cta-primary:active {
        opacity: .85;
    }

.cta-secondary {
    text-align: center;
    font-size: 0.85em;
    color: #8f8f8f;
}

    .cta-secondary:hover {
        color: #45f3ff;
    }

.full {
    width: 100%;
    display: block;
}

.quick-stats {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.stat {
    flex: 1;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    background: rgba(255,255,255,.03);
}

.stat-value {
    color: #fff;
    font-weight: 800;
}

.stat-label {
    color: #8f8f8f;
    font-size: .8em;
    margin-top: 2px;
}

.landing-section h3 {
    color: #fff;
    font-size: 0.95em;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-top: 6px;
}

.muted {
    color: #8f8f8f;
}

.tiny {
    font-size: .8em;
}

.center {
    text-align: center;
}

.list {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.li {
    color: #8f8f8f;
    font-size: .95em;
    line-height: 1.35;
}

.tick {
    color: #45f3ff;
    font-weight: 800;
    margin-right: 8px;
}

.steps {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.step {
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.03);
    border-radius: 12px;
    padding: 12px;
}

.step-num-blue {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 2px solid #45f3ff;
    color: #45f3ff;
    font-weight: 900;
    margin-bottom: 8px;
}

.step-num-red {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 2px solid #ff2770;
    color: #ff2770;
    font-weight: 900;
    margin-bottom: 8px;
}

.step-title {
    color: #fff;
    font-weight: 700;
    font-size: .95em;
}

.step-text {
    color: #8f8f8f;
    font-size: .9em;
    margin-top: 4px;
}

.proof-box {
    margin-top: 12px;
    border: 1px dashed rgba(255,255,255,.18);
    border-radius: 12px;
    padding: 12px;
    background: rgba(255,255,255,.02);
}

.proof-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}

    .proof-row span {
        width: 34px;
        height: 34px;
        border-radius: 999px;
        border: 1px solid rgba(255,255,255,.10);
        background: rgba(255,255,255,.06);
    }

    .proof-row i {
        height: 12px;
        flex: 1;
        border-radius: 999px;
        border: 1px solid rgba(255,255,255,.10);
        background: rgba(255,255,255,.06);
    }

.proof-note {
    color: #8f8f8f;
    font-size: .85em;
    margin-top: 6px;
}

.price-card {
    margin-top: 12px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.03);
    border-radius: 12px;
    padding: 14px;
}

.price-main {
    color: #fff;
    font-weight: 900;
    font-size: 1.8em;
    text-align: center;
}

    .price-main span {
        color: #8f8f8f;
        font-size: .45em;
        font-weight: 600;
        margin-left: 6px;
    }

.price-sub {
    color: #8f8f8f;
    text-align: center;
    margin: 6px 0 12px;
    font-size: .9em;
}

.landing-footer {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 6px;
    font-size: .85em;
    color: #8f8f8f;
}

    .landing-footer a:hover {
        color: #45f3ff;
    }
