/* =========================================
   Website Hosting Premium Styles
   Theme: Managed SaaS / Blue / Clean
   ========================================= */

:root {
    /* Hosting Page Palette (Blue Theme) */
    --server-primary: #0586FE;
    --server-accent: #00d4ff;

    --server-bg-white: #ffffff;
    --server-bg-gray: #202124;
    /* User requested match for --color-black-light from homepage */
    --server-bg-dark: #121418;

    --server-text-dark: #1a1a1a;
    --server-text-light: #666666;
    --server-text-on-dark: #ffffff;
    --server-text-muted-on-dark: rgba(255, 255, 255, 0.7);

    --gradient-server-text: linear-gradient(135deg, #0586FE 0%, #00d4ff 100%);
    --gradient-server-text: linear-gradient(135deg, #0586FE 0%, #00d4ff 100%);

    --server-shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.05);
    --server-shadow-hover: 0 15px 35px rgba(5, 134, 254, 0.1);

    --section-gap: 100px;
}

/* Base Layout */
.server-page-wrapper {
    font-family: 'Saira', sans-serif;
    color: var(--server-text-dark);
    overflow-x: hidden;
}

.server-section-padding {
    padding: var(--section-gap) 0;
}

.server-bg-white {
    background-color: var(--server-bg-white);
    color: var(--server-text-dark);
}

.server-bg-white h2,
.server-bg-white h3,
.server-bg-white h4,
.server-bg-white h5 {
    color: var(--server-text-dark);
}

.server-bg-white p,
.server-bg-white li,
.server-bg-white .text-muted {
    color: var(--server-text-light) !important;
}

.server-bg-gray {
    background-color: var(--server-bg-gray);
    color: #fff;
    /* Ensure text is white on this dark "gray" background */
}

.server-bg-gray h2,
.server-bg-gray h3,
.server-bg-gray h4,
.server-bg-gray h5 {
    color: #fff;
}

.server-bg-gray p,
.server-bg-gray li,
.server-bg-gray .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Typography */


/* =========================================
   Module 1: Hosting Hero (SaaS Style)
   ========================================= */
.server-hero {
    min-height: 70vh;
    background: var(--server-bg-gray);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
}

.server-hero-content {
    position: relative;
    z-index: 2;
}



/* =========================================
   Module 2: Feature Cards (Icon Grid)
   ========================================= */
.server-feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: var(--server-shadow-sm);
    transition: 0.3s;
    height: 100%;
    text-align: center;
}

.server-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--server-shadow-hover);
    border-color: rgba(5, 134, 254, 0.2);
}

.server-feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(5, 134, 254, 0.05);
    border-radius: 50%;
    color: var(--server-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 25px;
    transition: 0.3s;
}

.server-feature-card:hover .server-feature-icon {
    background: var(--server-primary);
    color: #fff;
}

.server-feature-title {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.server-feature-desc {
    color: var(--server-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* =========================================
   Module 3: Solution Tiers (No Price)
   ========================================= */
.server-solution-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--server-shadow-sm);
    transition: 0.3s;
    height: 100%;
    border: 1px solid transparent;
}

.server-solution-card:hover {
    box-shadow: var(--server-shadow-hover);
    transform: translateY(-5px);
    border-color: rgba(5, 134, 254, 0.3);
}

/* Force dark text inside solution body only */
.server-solution-body p,
.server-solution-body li,
.server-solution-body .text-muted {
    color: var(--server-text-light) !important;
}

.server-solution-body h2,
.server-solution-body h3,
.server-solution-body h4,
.server-solution-body h5 {
    color: var(--server-text-dark) !important;
}

/* Explicitly restore header colors to white */
.server-solution-header h3,
.server-solution-header p {
    color: #fff !important;
}

.server-solution-header {
    background: linear-gradient(135deg, #0586FE 0%, #00d4ff 100%);
    padding: 30px;
    color: #fff;
}

.server-solution-header.pro {
    background: linear-gradient(135deg, #5b42f3 0%, #00d4ff 100%);
}

.server-solution-body {
    padding: 40px 30px;
}

.server-check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.server-check-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    color: var(--server-text-light);
}

.server-check-list li i {
    color: var(--server-primary);
    margin-right: 12px;
    font-size: 1.1rem;
}

/* =========================================
   Module 4: CTA
   ========================================= */
.server-cta-section {
    background: var(--server-bg-dark);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.server-cta-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at top right, rgba(5, 134, 254, 0.1) 0%, transparent 60%);
}

.server-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

/* Buttons - Using global .customer-btn */