/* ── Web Hosting Plan Guide ──────────────────────── */

.hosting-intro {
    background: linear-gradient(135deg, #f0f4ff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    margin-bottom: 25px;
    border-top: 5px solid #2c3e50;
}

.hosting-intro h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.hosting-intro p {
    font-size: 1.05rem;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Plan comparison cards */
.plan-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin: 20px 0;
}

.plan-card {
    background: #fff;
    border-radius: 14px;
    padding: 24px 20px;
    box-shadow: 0 3px 14px rgba(0,0,0,0.08);
    border-top: 5px solid #dee2e6;
    text-align: center;
}

.plan-card.highlighted {
    border-top-color: #ff6b35;
}

.plan-name {
    font-size: 1rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 6px;
}

.plan-price {
    font-size: 0.85rem;
    color: #ff6b35;
    font-weight: 700;
    margin-bottom: 12px;
}

.plan-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
}

.plan-card ul li {
    font-size: 0.85rem;
    color: #6c757d;
    line-height: 1.7;
    padding: 3px 0 3px 16px;
    position: relative;
}

.plan-card ul li::before {
    content: '·';
    position: absolute;
    left: 4px;
    color: #ff6b35;
    font-weight: 700;
}

.plan-badge {
    display: inline-block;
    background: #ff6b35;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
}

/* Feature checklist table */
.feature-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.9rem;
}

.feature-table th {
    background: #2c3e50;
    color: #fff;
    padding: 11px 14px;
    text-align: left;
    font-weight: 700;
}

.feature-table th:not(:first-child) {
    text-align: center;
}

.feature-table td {
    padding: 11px 14px;
    border-bottom: 1px solid #e9ecef;
    color: #495057;
    vertical-align: middle;
}

.feature-table td:not(:first-child) {
    text-align: center;
}

.feature-table tr:nth-child(even) td {
    background: #f8f9fa;
}

.feature-table tr:last-child td {
    border-bottom: none;
}

.tick { color: #27ae60; font-weight: 700; font-size: 1rem; }
.cross { color: #ccc; font-size: 1rem; }
.sometimes { color: #ff6b35; font-size: 0.8rem; font-weight: 700; }

@media (max-width: 640px) {
    .plan-cards {
        grid-template-columns: 1fr 1fr;
    }

    .feature-table {
        font-size: 0.78rem;
    }

    .feature-table th,
    .feature-table td {
        padding: 8px 8px;
    }
}

@media (max-width: 400px) {
    .plan-cards {
        grid-template-columns: 1fr;
    }
}
