.hosting-plans-section {
    background: var(--off-white);
}

.hosting-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 32px;
}

.hosting-toggle span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}

.toggle-switch {
    position: relative;
    width: 50px;
    height: 26px;
    background: var(--gray-200);
    border-radius: 100px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.toggle-switch.active {
    background: linear-gradient(135deg, var(--green), var(--blue));
}

.toggle-knob {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--white);
    transition: var(--transition);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.toggle-switch.active .toggle-knob {
    transform: translateX(24px);
}

.save-badge {
    background: #dcfce7;
    color: var(--green-dark);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 100px;
}

/* Plan cards full */
.plans-grid {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

/* Comparison table */
.comparison-section {
    background: var(--white);
}

.comparison-table-wrap {
    margin-top: 48px;
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.comparison-table th {
    padding: 16px 20px;
    text-align: left;
    background: var(--dark);
    color: var(--white);
    font-weight: 700;
}

.comparison-table th:first-child {
    border-radius: 0;
}

.comparison-table th.featured-col {
    background: linear-gradient(135deg, var(--green), var(--blue));
}

.comparison-table td {
    padding: 13px 20px;
    border-bottom: 1px solid var(--gray-200);
    color: var(--text);
}

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

.comparison-table tr:nth-child(even) td {
    background: var(--off-white);
}

.comparison-table td.featured-col {
    background: #f0fdf4 !important;
    font-weight: 700;
    color: var(--green-dark);
}

.check-green {
    color: var(--green);
    font-weight: 900;
    font-size: 1rem;
}

.cross-gray {
    color: var(--gray-400);
    font-weight: 700;
}

/* Hosting features section */
.hosting-features-section {
    background: var(--off-white);
}

.hosting-features-grid {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.hosting-feature-row {
    display: flex;
    gap: 18px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 22px 20px;
    align-items: flex-start;
    transition: var(--transition);
}

.hosting-feature-row:hover {
    border-color: var(--green);
    box-shadow: 0 4px 16px rgba(22, 163, 74, 0.08);
}

.hf-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.hf-icon.green {
    background: #dcfce7;
}

.hf-icon.blue {
    background: #e0f2fe;
}

.hf-title {
    font-size: 0.92rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.hf-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.65;
}

@media (max-width: 900px) {
    .plans-grid {
        grid-template-columns: 1fr;
    }

    .hosting-features-grid {
        grid-template-columns: 1fr;
    }
}

