/* Hosting Advisor Specific Styles */
.hosting-hero {
    background: linear-gradient(135deg, #0ea5e9, #3b82f6);
    color: white;
    padding: 8rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hosting-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-1.2.1&auto=format&fit=crop&w=2850&q=80') center/cover;
    opacity: 0.1;
}

.hosting-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hosting-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #bfdbfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hosting-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Layout */
.hosting-layout {
    display: grid;
    grid-template-columns: 250px 1fr 250px;
    gap: 2rem;
    margin: 2rem 0;
}

/* Sidebar Styles */
.sidebar {
    position: sticky;
    top: 100px;
}

.ad-space {
    background: #f8fafc;
    border-radius: 16px;
    overflow: hidden;
}

.ad-placeholder {
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    color: #94a3b8;
    font-size: 0.875rem;
    border: 2px dashed #cbd5e1;
}

/* Main Content Styles */
.hosting-main {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* Advisor Tool Styles */
#hosting-advisor {
    max-width: 800px;
    margin: 0 auto;
}

.advisor-welcome,
.advisor-question,
.advisor-results {
    display: none;
    text-align: center;
    padding: 2rem;
}

.advisor-welcome.active,
.advisor-question.active,
.advisor-results.active {
    display: block;
}

.btn-primary {
    background: #0ea5e9;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background: #0284c7;
    transform: translateY(-2px);
}

/* Question Styles */
.question-container {
    max-width: 600px;
    margin: 0 auto;
}

.question {
    margin-bottom: 2rem;
}

.options {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.option-btn {
    background: white;
    border: 2px solid #e2e8f0;
    padding: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.option-btn:hover {
    border-color: #0ea5e9;
    background: #f0f9ff;
}

.option-btn.selected {
    border-color: #0ea5e9;
    background: #f0f9ff;
}

/* Results Styles */
.recommendation-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.recommendation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.recommendation-score {
    background: #f0f9ff;
    color: #0369a1;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
}


.recommendation-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #475569;
}

.feature-item i {
    color: #0ea5e9;
}

/* Article Styles */
.hosting-article {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.hosting-article h2 {
    font-size: 2rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.hosting-article h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin: 2rem 0 1rem;
}

.hosting-article h4 {
    font-size: 1.25rem;
    color: #334155;
    margin: 1.5rem 0 0.75rem;
}

.hosting-article p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.hosting-article ul {
    list-style-type: none;
    padding-left: 0;
    margin: 1rem 0;
}

.hosting-article li {
    color: #475569;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.hosting-article li::before {
    content: '•';
    color: #0ea5e9;
    position: absolute;
    left: 0;
}

/* Related Pages Section */
.related-pages {
    margin: 4rem 0;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 16px;
}

.related-pages h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #0f172a;
}

.pages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.page-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: #1e293b;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.page-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.page-link i {
    font-size: 2rem;
    color: #0ea5e9;
    margin-bottom: 1rem;
}

.page-link h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.page-link p {
    font-size: 0.875rem;
    color: #64748b;
    text-align: center;
}


/* Responsive Design */
@media (max-width: 1200px) {
    .hosting-layout {
        grid-template-columns: 200px 1fr 200px;
        gap: 1rem;
    }
}

@media (max-width: 992px) {
    .hosting-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        display: none;
    }

    .hosting-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hosting-main {
        padding: 1rem;
    }

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

    .hosting-article h2 {
        font-size: 1.75rem;
    }

    .hosting-article h3 {
        font-size: 1.35rem;
    }

    .hosting-article h4 {
        font-size: 1.15rem;
    }

    .pages-grid {
        grid-template-columns: 1fr;
    }
}



/* Update existing styles */
.recommendation-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #475569;
}

.detail-item i {
    color: #0ea5e9;
}

.pricing-info {
    margin: 1rem 0;
}

.pricing-tiers {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.pricing-tier {
    padding: 0.5rem 1rem;
    background: #f0f9ff;
    border-radius: 6px;
    font-size: 0.875rem;
    color: #0369a1;
}

.progress-container {
    width: 100%;
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    margin: 2rem 0;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(to right, #0ea5e9, #3b82f6);
    width: 0;
    transition: width 0.3s ease;
}