/* =====================================================
   HOSTING PAGE — PREMIUM ADVANCED DESIGN
   Brand: bdshapers
   Scope: Hosting page only
===================================================== */

.page-wrapper {
    background: #020617;
}

/* =====================================================
   SECTION 1: HERO
===================================================== */
.hosting-hero {
    background:
        radial-gradient(circle at top right, rgba(168,85,247,0.35), transparent 40%),
        radial-gradient(circle at bottom left, rgba(56,189,248,0.35), transparent 45%),
        linear-gradient(180deg, #020617, #020617);
    padding: 140px 0 120px;
    text-align: center;
}

.hosting-title {
    font-size: 56px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 18px;
}

.hosting-title span {
    background: linear-gradient(90deg, #38bdf8, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hosting-subtitle {
    max-width: 720px;
    margin: 0 auto 36px;
    font-size: 18px;
    color: #cbd5e1;
    line-height: 1.7;
}

.hosting-hero-actions {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

/* =====================================================
   SECTION 2: FEATURES (LIGHT)
===================================================== */
.hosting-features {
    background: #ffffff;
    padding: 120px 0;
}

.hosting-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #f8fafc;
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.35s ease;
}

.feature-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #020617;
}

.feature-card p {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: #020617;
}

.feature-card:hover h4,
.feature-card:hover p {
    color: #ffffff;
}

/* =====================================================
   SECTION 3: HOSTING PLANS (GLASS)
===================================================== */
.hosting-plans {
    background:
        linear-gradient(180deg, #020617, #0b2a63);
    padding: 130px 0;
}

.hosting-plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 34px;
}

.plan-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    border-radius: 28px;
    padding: 48px 36px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.18);
    color: #ffffff;
    transition: all 0.45s ease;
}

.plan-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.plan-price {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 22px;
    color: #38bdf8;
}

.plan-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 28px;
}

.plan-card li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #cbd5e1;
}

.plan-btn {
    display: inline-block;
    padding: 14px 34px;
    border-radius: 999px;
    background: linear-gradient(135deg, #38bdf8, #a855f7);
    color: #020617;
    font-weight: 700;
}

.plan-card.featured {
    transform: scale(1.06);
    box-shadow: 0 40px 90px rgba(0,0,0,0.6);
}

.plan-card:hover {
    transform: translateY(-14px);
    box-shadow: 0 50px 110px rgba(0,0,0,0.7);
}

/* =====================================================
   SECTION 4: FAQ (DARK CLEAN)
===================================================== */
.hosting-faq {
    background: #020617;
    padding: 120px 0;
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding: 22px 0;
}

.faq-item h4 {
    font-size: 17px;
    color: #ffffff;
    margin-bottom: 6px;
}

.faq-item p {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.6;
}

/* =====================================================
   SECTION 5: FINAL CTA
===================================================== */
.hosting-cta {
    background:
        radial-gradient(circle at center, rgba(56,189,248,0.35), transparent 45%),
        linear-gradient(180deg, #020617, #020617);
    padding: 130px 0;
    text-align: center;
}

.hosting-cta h2 {
    font-size: 42px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 14px;
}

.hosting-cta p {
    font-size: 16px;
    color: #cbd5e1;
    margin-bottom: 26px;
}

/* =====================================================
   MOBILE
===================================================== */
@media (max-width: 768px) {

    .hosting-title {
        font-size: 34px;
    }

    .hosting-subtitle {
        font-size: 15px;
    }

    .hosting-hero {
        padding: 100px 0 80px;
    }

    .plan-card.featured {
        transform: none;
    }
}
