
:root {
    --card-bg: #ffffff;
    --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    --card-shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.08);
    --text-main: #1e293b;
    --text-muted: #64748b;
    --primary: #0ea5e9;
    --primary-dark: #0284c7;
    --border: #e2e8f0;
}
.page-container {
    padding-bottom: 5rem;
    max-width: 1400px;
    margin: 0 auto;
}
.hosting-hero {
    background: transparent;
    color: var(--text-main);
    text-align: center;
    padding: 6rem 1.5rem 4rem;
    position: relative;
    z-index: 1;
}
.hosting-hero h1 {
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    font-weight: 850;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    color: var(--text-main);
}
.hosting-hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 500;
}
.category-info-box {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
    max-width: 850px;
    margin: 2.5rem auto 0;
    border: 1px solid var(--border);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-main);
}
.hosting-products,
.hosting-categories {
    padding: 0 1.5rem;
    margin-top: 2rem;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
    gap: 2rem;
    justify-content: center;
    margin: 0 auto;
}
.premium-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    border: 1px solid var(--border);
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    transition: 0.2s ease;
}
.premium-card:hover {
    border-color: var(--primary);
    box-shadow: var(--card-shadow-hover);
}
.pc-header {
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 1.5rem;
}
.pc-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1rem;
}
.pc-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    color: var(--primary);
}
.price-val {
    font-size: 2.5rem;
    font-weight: 900;
}
.price-cycle {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
}
.pc-body {
    flex: 1;
    margin-bottom: 2rem;
}
.pc-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.pc-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.5rem 0;
    font-weight: 600;
    color: #475569;
    font-size: 0.9rem;
}
.pc-features li i {
    color: #10b981;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}
.pc-btn {
    background: var(--primary);
    color: white !important;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.2s;
    text-decoration: none;
    border: none;
}
.pc-btn:hover {
    background: var(--primary-dark);
}
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.premium-category-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: 0.2s;
    text-decoration: none;
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border);
}
.premium-category-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}
.cat-icon-wrapper {
    width: 80px; height: 80px;
    background: #f0f9ff;
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}
.premium-category-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}
.cat-arrow {
    width: 40px; height: 40px;
    background: #f8fafc;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted);
}
.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 700;
    padding: 12px 24px;
    background: #f1f5f9;
    border-radius: 50px;
    transition: 0.2s;
}
.btn-back:hover {
    background: #e2e8f0;
}
.empty-state {
    grid-column: 1/-1;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-muted);
}
.empty-state i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}
.w-100 {
    width: 100%;
    box-sizing: border-box;
}
@media (max-width: 768px) {
    .hosting-hero { padding: 4rem 1.5rem 2rem; }
}
