/* hosting.css */
.hosting-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f8fafc;
}

.hosting-header {
    text-align: center;
    margin-bottom: 3rem;
}

.hosting-header h1 {
    font-size: 2.8rem;
    background: linear-gradient(135deg, #1e293b, #2d3a4e);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.2rem;
    color: #475569;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title h2 {
    font-size: 2rem;
    color: #0f172a;
    border-bottom: 3px solid #3b82f6;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.content-box {
    background: white;
    padding: 1.8rem;
    border-radius: 24px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
    line-height: 1.6;
    color: #1e293b;
}

.pricing-section {
    margin: 4rem 0;
}

.alt-bg {
    background: #f1f5f9;
    padding: 2rem;
    border-radius: 40px;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.pricing-card {
    background: white;
    border-radius: 28px;
    padding: 1.8rem;
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 20px 25px -12px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 30px -12px rgba(0,0,0,0.15);
}

.pricing-card.featured {
    border-top: 4px solid #f97316;
    background: linear-gradient(to bottom, #ffffff, #fff7ed);
}

.card-header {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0f172a;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #3b82f6;
}

.price span {
    font-size: 1rem;
    font-weight: normal;
    color: #64748b;
}

.setup-fee {
    margin-top: 0.5rem;
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
    color: #f97316;
    font-weight: 500;
}

.features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.features li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    border-bottom: 1px dashed #eef2ff;
}

.features li::before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.extra-basic {
    margin-top: 2rem;
    background: #eef2ff;
    padding: 1.2rem;
    border-radius: 20px;
    text-align: center;
}

.note {
    font-size: 0.8rem;
    color: #475569;
    margin-top: 0.8rem;
}

.table-wrapper {
    overflow-x: auto;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.pricing-table th,
.pricing-table td {
    padding: 1rem 1.2rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.pricing-table th {
    background-color: #1e293b;
    color: white;
    font-weight: 600;
}

.pricing-table tr:hover {
    background-color: #f8fafc;
}

.cta-footer {
    text-align: center;
    margin: 3rem 0 2rem;
    font-size: 1.2rem;
}

.cta-footer a {
    background: #3b82f6;
    color: white;
    padding: 0.6rem 1.8rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}

.cta-footer a:hover {
    background: #2563eb;
}

@media (max-width: 760px) {
    .hosting-container {
        padding: 1rem;
    }
    .pricing-card {
        min-width: 100%;
    }
    .cards-grid {
        flex-direction: column;
        align-items: center;
    }
}