/* =========================
   LANDING PAGE – BLOXCONNECT
   Fully isolated styles
========================= */

/* Hero */
.hero {
    text-align: center;
    padding: 120px 20px 100px;
}

.hero h1 {
    font-size: 3.75rem;
    font-weight: 800;
    margin-bottom: 18px;
    color: #f8fafc;
}

.hero p {
    font-size: 1.25rem;
    max-width: 680px;
    margin: 0 auto 40px;
    color: #cbd5e1;
    line-height: 1.6;
}

.hero .login-btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    background: #2563eb;
    color: #ffffff;
    border-radius: 12px;
    font-weight: 700;
    transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.hero .login-btn:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}

/* =========================
   STATS / FEATURES GRID
========================= */

.landing-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
    padding: 70px 20px 90px;
    max-width: 1150px;
    margin: 0 auto;
}

.landing-card {
    background: #020617;
    border: 1px solid #1e293b;
    border-radius: 16px;
    padding: 28px 26px;
    text-align: center;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.landing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.55);
}

.landing-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: #f8fafc;
}

.landing-card span {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #64748b;
    margin-bottom: 10px;
}

.landing-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #94a3b8;
}

/* =========================
   WHY BLOXCONNECT
========================= */

.why-bloxconnect {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}

.why-bloxconnect h2 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 14px;
    color: #f8fafc;
}

.why-bloxconnect p {
    max-width: 700px;
    margin: 0 auto 50px;
    color: #cbd5e1;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Feature list */
.why-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 36px;
    text-align: left;
}

.why-item {
    display: flex;
    gap: 16px;
}

.why-icon {
    font-size: 1.8rem;
    line-height: 1;
}

.why-item h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: #f8fafc;
}

.why-item p {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.6;
}

/* =========================
   FINAL CTA
========================= */

.landing-cta {
    text-align: center;
    padding: 90px 20px 110px;
}

.landing-cta h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #f8fafc;
}

.landing-cta p {
    max-width: 600px;
    margin: 0 auto 36px;
    color: #cbd5e1;
    font-size: 1.05rem;
}

.landing-cta a {
    display: inline-block;
    padding: 14px 36px;
    background: #2563eb;
    color: #ffffff;
    font-weight: 700;
    border-radius: 12px;
    transition: background 0.15s ease, transform 0.15s ease;
}

.landing-cta a:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 640px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .why-bloxconnect h2 {
        font-size: 2rem;
    }
}
