/* --- Hero Section Background & Overlay --- */
.dedicated-hero {
    position: relative;
    padding: 50px 20px;
    background: url('/assets/images/dedicated-server/dedicated_server_banner_image.webp') no-repeat center right;
    background-size: cover;
    color: var(--text-white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(11, 42, 99, 1) 0%, 
        rgba(11, 42, 99, 0.95) 45%, 
        rgba(11, 42, 99, 0.3) 75%, 
        rgba(11, 42, 99, 0) 100%);
    z-index: 1;
    padding: 50px 20px !important;
}

/* FIX: Bring content to the front over the overlay */
.dedicated-hero .container {
    position: relative;
    z-index: 10 !important;
}

/* --- Hero Text & Typography --- */
.hero-badge {
    display: inline-flex;
    align-items: center;
    background: var(--primary-dark);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 6px 16px 6px 6px;
    border-radius: 50px;
    font-size: 14px;
         font-weight: 600;
    margin-bottom: 25px;
}

.hero-badge .badge-icon {
    background: var(--accent-color);
    color: #ffffff;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
}

.hero-title {
    font-size: 60px;
         font-weight: 600;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #ffffff !important; /* Force pure white */
}

.text-highlight {
    color: #4ade80 !important; /* Bright green */
    text-shadow: 0 2px 10px rgba(74, 222, 128, 0.2);
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 95%;
}

.hero-actions .btn-outline-custom {
    margin-left: 0 !important; 
}

.hero-features {
    gap: 20px;
}

.feature-item {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95) !important;
    display: flex;
    align-items: center;
}

.feature-item i {
    color: #4ade80; /* Brighter green for checkmarks */
    font-size: 18px;
    margin-right: 8px;
}

/* --- Hero Buttons --- */
.btn-primary-custom {
    background-color: var(--accent-color);
    color: #ffffff !important;
    padding: 16px 40px;
    border-radius: var(--border-radius-sm);
         font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
}

.btn-primary-custom:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-outline-custom {
    background-color: transparent;
    color: #ffffff !important;
    padding: 16px 40px;
    border-radius: var(--border-radius-sm);
         font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-custom:hover {
    background-color: var(--bg-white);
    border-color: var(--bg-white);
    color: var(--primary-color) !important;
}

/* --- Solid Server Card (Ultra-Clean, 100% Solid) --- */
.solid-hero-card {
    background-color: var(--bg-white); /* Pure white solid card */
    border-radius: var(--border-radius-md);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.card-header-solid {
    background-color: var(--bg-white); /* Changed to pure white */
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.server-name {
    font-size: 1.4rem;
         font-weight: 600;
    color: var(--text-dark);
}

.status-badge {
    color: var(--accent-color);
    font-size: 13px;
         font-weight: 600;
    display: flex;
    align-items: center;
}

.status-badge i {
    font-size: 10px;
}

.card-body-solid {
    padding: 20px 25px; /* Slightly tighter padding */
    background-color: var(--bg-white);
}

.spec-row {
    display: flex;
    align-items: center;
    margin-bottom: 15px; /* Tighter spacing */
}

.spec-row:last-child {
    margin-bottom: 0;
}

.spec-icon-box {
    width: 38px; /* Slightly smaller */
    height: 38px;
    background-color: var(--bg-soft-green); /* Using light green for the icon box */
    color: var(--accent-color); /* Green icon */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-right: 15px;
}

.spec-text {
    display: flex;
    flex-direction: column;
}

.spec-text span {
    font-size: 11px; /* Smaller label */
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.spec-text strong {
    font-size: 14px; /* Tighter text */
    color: var(--text-dark);
         font-weight: 600;
}

.card-footer-solid {
    padding: 20px 25px;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-box {
    display: flex;
    flex-direction: column;
}

.starting-at {
    font-size: 12px;
    color: var(--text-muted);
}

.price-value {
    font-size: 24px;
         font-weight: 600;
    color: var(--primary-color);
    line-height: 1;
}

.price-value small {
    font-size: 14px;
    font-weight: 600;
}

.btn-deploy {
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 10px 20px;
    border-radius: var(--border-radius-sm);
         font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    text-decoration: none;
}

.btn-deploy:hover {
    background-color: var(--primary-dark);
    color: var(--text-white);
}

/* Responsive */
@media (max-width: 991px) {
    .hero-overlay {
        /* On mobile, text takes full width, so make it dark overall */
        background: rgba(11, 42, 99, 0.85); 
    }
    .dedicated-hero {
        background-position: center center;
    }
}
@media (max-width: 576px) {
    .hero-title { font-size: 2.5rem; }
    .hero-actions { display: flex; flex-direction: column; gap: 15px; }
    .btn-outline-custom { margin: 0 !important; }
}


/* ==========================================================================
   DEDICATED SERVER PLANS SECTION (Strict Variable Architecture)
   ========================================================================== */

.server-plans-section {
    /* padding: 50px 20px !important; */
    background-color: #ffffff; /* Light blue/grey layout base */
    font-family: 'Poppins', sans-serif;
    padding: 50px 20px !important;
}

.section-header {
    max-width: 750px;
    margin: 0 auto;
}

.section-title {
    font-size: 46px;
         font-weight: 600;
    color: var(--text-dark); /* Using your primary dark text color */
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- Billing Toggle Switch Styling --- */
.billing-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.billing-label {
    font-size: 16px;
         font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition);
}

.billing-label.active {
    color: var(--text-dark);
}

.discount-badge {
    background-color: var(--accent-soft); /* Light green soft background */
    color: var(--accent-color); /* Strict deep green token */
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 12px;
         font-weight: 600;
    margin-left: 8px;
    vertical-align: middle;
}

.billing-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 32px;
}

.billing-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.billing-slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: var(--border-color);
    transition: 0.4s;
    border-radius: 34px;
}

.billing-slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 4px;
    bottom: 4px;
    background-color: var(--bg-white);
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .billing-slider {
    background-color: var(--accent-color); /* Turns Green on active toggle */
}

input:checked + .billing-slider:before {
    transform: translateX(28px);
}

/* --- Server List Cards Architecture --- */
.server-list-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-md);
    padding: 30px;
    margin-bottom: 25px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    position: relative;
}

.server-list-card:hover {
    border-color: var(--secondary-color); /* Subtle blue highlight on hover */
    box-shadow: var(--shadow-soft);
    transform: translateY(-3px);
}

/* Most Popular Plan Highlighting */
.server-list-card.popular-plan {
    border: 2px solid var(--accent-color); /* Bold Green outline */
    background-color: var(--bg-white);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 30px;
    background: var(--accent-color);
    color: var(--text-white);
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 14px;
         font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.server-name {
    font-size: 32px;
         font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

/* Latency / Datacenter Badges */
.location-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.loc-badge {
    font-size: 13px;
         font-weight: 600;
    color: var(--secondary-color);
    background: var(--bg-blue-soft);
    padding: 4px 10px;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Grid Specifications Layout Inside Card */
.spec-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.spec-item i {
    font-size: 20px;
    margin-top: 2px;
}

/* Custom Icon Color Mappings strictly bounding to Root Tokens */
.text-primary-custom { 
    color: var(--secondary-color); 
}
.text-accent-custom { 
    color: var(--accent-color); 
}

.spec-item div {
    display: flex;
    flex-direction: column;
}

.spec-item strong {
    font-size: 20px;
    color: var(--text-dark);
         font-weight: 600;
    line-height: 1.3;
    margin-bottom: 2px;
}

.spec-item span {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.2;
}

/* Right-aligned Pricing Segment */
@media (min-width: 992px) {
    .border-start-lg {
        border-left: 1px solid var(--border-color);
        padding-left: 25px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
    }
}

.price-box {
    margin-bottom: 8px;
}

/* Keep dedicated-server plan pricing on one line */
.server-list-card .price-box {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 2px;
    width: 100%;
    white-space: nowrap;
}

.price-currency {
    font-size: 18px;
         font-weight: 600;
    color: var(--text-muted);
    vertical-align: top;
    margin-right: 2px;
}

.price-amount {
    font-size: 42px;
         font-weight: 600;
    color: var(--primary-color);
    line-height: 1;
    letter-spacing: -1px;
}

.price-term {
    font-size: 14px;
         font-weight: 600;
    color: var(--text-muted);
}

/* Deploy / Configuration Call-to-Action Buttons */
.server-list-card .btn-primary-custom {
    background-color: var(--accent-color);
    color: var(--text-white) !important;
    border: none;
    padding: 12px 20px;
         font-weight: 600;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.server-list-card .btn-primary-custom:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

/* --- High-Fidelity Mobile Responsiveness --- */
@media (max-width: 991px) {
    .popular-badge {
        left: 50%;
        transform: translateX(-50%);
    }
    .info-col {
        border-bottom: 1px dashed var(--border-color);
        padding-bottom: 20px;
        text-align: center;
    }
    .location-badges {
        justify-content: center;
    }
    .price-col {
        padding-top: 25px;
        border-top: 1px dashed var(--border-color);
        margin-top: 15px;
    }

    .server-list-card .price-box {
        justify-content: center;
    }
}


/* --- Infrastructure & Advanced Features Section --- */
.dedicated-features-section {
    padding: 50px 20px !important;
    background-color: #FFF8F0; /* High contrast switch from background light */
    font-family: 'Poppins', sans-serif;
}

.features-header {
    max-width: 750px;
    margin: 0 auto;
}

.feature-tag {
    display: inline-block;
    background-color: var(--accent-soft);
    color: var(--accent-color);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 12px;
         font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.features-main-title {
    font-size: 45px;
         font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.features-sub-title {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- Infrastructure Cards Style --- */
.infra-feature-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 30px 25px;
    height: 100%;
    transition: var(--transition);
}

.infra-feature-card:hover {
    background-color: var(--bg-white);
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-soft);
    transform: translateY(-4px);
}

.infra-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: var(--primary-soft);
    color: var(--primary-color);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.infra-feature-card h5 {
    font-size: 24px;
         font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.infra-feature-card p {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* --- OS Deployment Showcase Box --- */
.os-showcase-box {
    margin-top: 60px;
    background-color: var(--bg-blue-soft);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-card);
}

.showcase-title {
    font-size: 25px;
         font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.showcase-desc {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.custom-link-btn {
    font-size: 16px;
         font-weight: 600;
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.custom-link-btn:hover {
    color: var(--primary-color);
    gap: 8px;
}

/* Compatibility Badges Grid */
.compatibility-item {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 25px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    height: 100%;
    transition: var(--transition);
}

.compatibility-item:hover {
    box-shadow: var(--shadow-card);
    border-color: var(--border-color);
    transform: scale(1.02);
}

.compatibility-item i {
    font-size: 58px;
}

.compatibility-item span {
    font-size: 16px;
         font-weight: 600;
    color: var(--text-dark);
}

/* Brand Icon Fallback Context Colors (Isolated to Bootstrap Icons Font) */
.text-ubuntu { color: #E95420; }
.text-windows { color: #0078D4; }
.text-linux { color: var(--text-dark); }
.text-cpanel { color: #FF6C2C; }

/* Responsive Grid Adaptation */
@media (max-width: 991px) {
    .os-showcase-box {
        padding: 30px 20px;
    }
    .features-main-title {
        font-size: 2rem;
    }
}


/* ==========================================================================
   GLOBAL DATA CENTER & NETWORK ARCHITECTURE (Pure Variables Map)
   ========================================================================== */

.dedicated-network-section {
    padding: 50px 20px;
    background-color: #ffffff;
    font-family: 'Poppins', sans-serif;
    border-top: 1px solid var(--border-color);
}

.network-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-soft);
    color: var(--secondary-color);
    padding: 6px 14px;
    border-radius: var(--border-radius-sm);
    font-size: 13px;
         font-weight: 600;
    margin-bottom: 20px;
}

.network-title {
    font-size: 46px;
         font-weight: 600;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.network-title span {
    color: var(--secondary-color);
}

.network-desc {
    font-size: 20px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Bullets mapped precisely to --accent-color token */
.network-spec-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.network-spec-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 18px;
    color: var(--text-dark);
}

.network-spec-list li i {
    color: var(--accent-color);
    font-size: 18px;
}

.btn-network-test {
    background-color: var(--primary-color);
    color: var(--text-white) !important;
    padding: 14px 28px;
         font-weight: 600;
    font-size: 17px;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    border: none;
}

.btn-network-test:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}

/* --- Interactive Datacenter Grid Cards Style --- */
.location-grid-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 24px;
    height: 100%;
    transition: var(--transition);
}

.location-grid-card:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-card);
}

.region-header {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
    margin-bottom: 15px;
}

/* Force flag icons to lock inside the corporate secondary brand token */
.region-header .region-flag {
    font-size: 16px;
    color: var(--secondary-color);
}

.region-header h6 {
    font-size: 22px;
         font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.datacenter-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dashed var(--border-color);
}

.datacenter-item:last-child {
    border-bottom: none;
}

.datacenter-item strong {
    font-size: 17px;
    color: var(--text-dark);
         font-weight: 600;
}

.status-online {
    font-size: 13px;
         font-weight: 600;
    color: var(--accent-color);
    background-color: var(--accent-soft);
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.status-online .dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-color);
    border-radius: 50%;
}

/* Backbone Box Configured with strict tokens */
.backbone-summary-card {
    background-color: var(--primary-dark);
    border-radius: var(--border-radius-md);
    padding: 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.backbone-summary-card h5 {
    color: var(--text-white);
    font-size: 20px;
         font-weight: 600;
    margin-bottom: 10px;
}

.backbone-summary-card p {
    color: var(--border-color);
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.backbone-link {
    font-size: 16px;
         font-weight: 600;
    color: #86efac;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.backbone-link:hover {
    color: var(--text-white);
    gap: 9px;
}

/* Mobile Adaptation Rules */
@media (max-width: 991px) {
    .network-title {
        font-size: 2.1rem;
    }
}


/* ==========================================================================
   ZIGZAG EDITORIAL SHOWCASE SECTION (Strict Variable Bound)
   ========================================================================== */

.dedicated-showcase-section {
    padding: 50px 20px;
    /* background-color: var(--bg-white); */ /* High contrast break from light grey network section */
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
    background: radial-gradient(circle at 8% 18%, rgba(39, 108, 184, 0.08), transparent 28%),        radial-gradient(circle at 92% 72%, rgba(22, 137, 74, 0.07), transparent 30%),        linear-gradient(180deg, #f8fbff 0%, #f4f8fb 52%, #f5faf8 100%);
}

.zigzag-row {
    margin-bottom: 100px;
}

.zigzag-row:last-child {
    margin-bottom: 0;
}

/* --- Text Content Column Blocks --- */
.showcase-text-block {
    position: relative;
}

.showcase-pill {
    display: inline-block;
    background-color: var(--accent-soft);
    color: var(--accent-color);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 12px;
         font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.showcase-title {
    font-size: 45px;
         font-weight: 600;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.showcase-desc {
    font-size: 20px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Internal Micro Feature Bullet Stack */
.showcase-meta-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.meta-list-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.meta-list-item i {
    color: var(--accent-color); /* Linked to deep green corporate branding */
    font-size: 18px;
    margin-top: 2px;
}

.meta-list-item span {
    font-size: 18px;
         font-weight: 600;
    color: var(--text-dark);
    line-height: 1.5;
}

/* --- Premium Image Framing Architecture --- */
.showcase-image-wrapper {
    position: relative;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    overflow: visible !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
    transform: none !important;
    transition: none !important;
}

.showcase-img {
    width: 80% !important;
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    object-fit: cover;
    mix-blend-mode: multiply !important;
    filter: drop-shadow(0 15px 35px rgba(11, 42, 99, 0.12));
    transform: none !important;
    transition: none !important;
}

.zigzag-row:nth-child(2) .showcase-image-wrapper {
    background: transparent !important; 
    border: none !important;           
    box-shadow: none !important;        
    overflow: visible !important;
}

.zigzag-row:nth-child(2) .showcase-img {
    width: 85% !important;              
    margin: 0 auto !important;
    mix-blend-mode: multiply !important; 
}

/* --- High-Fidelity Mobile Grid Stacking Adjustments --- */
@media (max-width: 991px) {
    .zigzag-row {
        margin-bottom: 60px;
    }
    .showcase-title {
        font-size: 1.8rem;
    }
    .showcase-text-block {
        text-align: center;
    }
    .meta-list-item {
        text-align: left;
    }
}

/* ==========================================================================
   ULTIMATE 3x3 FAQ GRID & BOTTOM CTA BANNER (Final Version)
   ========================================================================== */

.dedicated-faq-grid-section {
    padding: 50px 20px;
    background-color: var(--bg-white);
    font-family: 'Poppins', sans-serif !important;
}

/* --- Center-Aligned FAQ Header --- */
.faq-header-left {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.faq-badge {
    display: inline-block;
    background-color: var(--accent-soft);
    color: var(--accent-color);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
         font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.faq-main-title {
    font-size: 45px;
         font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 18px;
    letter-spacing: -0.5px;
    font-family: 'Poppins', sans-serif;
}

.faq-sub-title {
    font-size: 20px;
    color: var(--text-muted);
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
}

/* --- Grid Cards Styling (Nuking Bootstrap Defaults completely) --- */
.faq-grid-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Perfect spacing between stacked cards */
}

.faq-grid-card {
    overflow: hidden;
    background-color: var(--bg-white) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: var(--border-radius-md) !important;
    box-shadow: none !important;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.faq-grid-card:hover {
    border-color: var(--border-color) !important;
    box-shadow: none !important;
}

.faq-grid-card:has(.faq-grid-btn:not(.collapsed)) {
    border-left: 1px solid var(--border-color) !important;
}

.faq-grid-btn {
    background-color: transparent !important;
    color: var(--text-dark) !important;
    font-size: 19px !important;
    font-weight: 500 !important;
    font-family: 'Poppins', sans-serif !important;
    padding: 22px 25px !important;
    border: none !important;
    box-shadow: none !important;
    transition: var(--transition);
}

/* Active State Outline */
.faq-grid-btn:not(.collapsed) {
    color: var(--accent-color) !important;
}

.faq-grid-body {
    padding: 0 25px 25px 25px !important;
    background-color: transparent !important;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
    font-family: 'Poppins', sans-serif !important;
}

/* --- Bottom Full-Width CTA Banner --- */
.faq-bottom-wide-cta {
    background-color: var(--primary-dark);
    border-radius: var(--border-radius-md);
    padding: 35px 45px;
    box-shadow: var(--shadow-soft);
    /* border-left: 4px solid var(--accent-color); */
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 10px;
}

.faq-bottom-wide-cta .cta-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-grid-icon {
    width: 50px;
    height: 50px;
    background-color: var(--bg-soft-green);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-sm);
    font-size: 20px;
    flex-shrink: 0; /* Keeps icon from squishing */
}

.faq-bottom-wide-cta h4 {
    color: var(--text-white);
         font-weight: 600;
    font-size: 22px;
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
}

.faq-bottom-wide-cta p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0;
}

.cta-button-container {
    flex-shrink: 0; /* Prevents the button from getting squished */
}

.btn-grid-cta {
    background-color: var(--accent-color);
    color: var(--text-white) !important;
    padding: 14px 26px;
    border-radius: var(--border-radius-sm);
         font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-grid-cta:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

/* --- Wide CTA Mobile Responsiveness --- */
@media (max-width: 991px) {
    .faq-bottom-wide-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
    }
    .faq-bottom-wide-cta .cta-content {
        flex-direction: column;
        align-items: flex-start;
    }
    .cta-button-container {
        width: 100%;
        margin-top: 15px;
    }
    .btn-grid-cta {
        width: 100%;
    }
}



/* =====================================================
   FINAL RESPONSIVE SAFETY NET (Dedicated Server)
   Ensures 100% compatibility across all extreme device sizes
===================================================== */

/* Ultra-wide monitors (4K / 2K) */
@media (min-width: 1600px) {
    .server-plans-section, 
    .dedicated-features-section, 
    .dedicated-network-section, 
    .dedicated-showcase-section, 
    .dedicated-faq-grid-section {
        /* padding-top: 80px !important; */
        /* padding-bottom: 80px !important; */
        padding: 50px 20px !important;
    }
}

/* Small Mobile Devices (380px & below - e.g., iPhone SE) */
@media (max-width: 380px) {
    .hero-title {
        font-size: 42px !important;
    }
    
    .section-title,
    .features-main-title,
    .network-title,
    .showcase-title,
    .faq-main-title {
        font-size: 26px !important;
        line-height: 1.25 !important;
        white-space: normal !important;
    }

    .server-name {
        font-size: 24px !important;
    }

    .price-amount {
        font-size: 34px !important;
    }

    .spec-item strong {
        font-size: 16px !important;
    }
    
    .spec-item span {
        font-size: 12.5px !important;
    }

    .infra-feature-card h5 {
        font-size: 20px !important;
    }

    .os-showcase-box {
        padding: 24px 15px !important;
    }

    .compatibility-item {
        padding: 15px 10px !important;
    }

    .compatibility-item span {
        font-size: 12.5px !important;
        text-align: center;
    }

    .network-spec-list li {
        font-size: 14.5px !important;
        align-items: flex-start !important;
    }
    
    .network-spec-list li i {
        margin-top: 4px;
    }

    .location-grid-card {
        padding: 15px !important;
    }

    .datacenter-item strong {
        font-size: 14px !important;
    }

    .status-online {
        font-size: 11px !important;
        padding: 2px 6px !important;
    }

    .faq-grid-btn {
        font-size: 15px !important;
        padding: 16px 18px !important;
    }

    .faq-grid-body {
        font-size: 14px !important;
        padding: 0 18px 18px 18px !important;
    }
    
    .faq-bottom-wide-cta {
        padding: 24px 18px !important;
    }
    
    .faq-bottom-wide-cta h4 {
        font-size: 18px !important;
    }
    
    .btn-grid-cta {
        font-size: 15px !important;
        padding: 12px 18px !important;
    }
}

/* General Mobile Flex Fixes */
@media (max-width: 575.98px) {
    .feature-item {
        font-size: 15px !important;
    }
    
    .hero-actions .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .server-list-card .price-box {
        justify-content: center !important;
    }
    
    .compatibility-item {
        min-height: 120px;
        justify-content: center;
    }
    
    .datacenter-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}


/* ========================================================
   Dedicated Features Section (Infrastructure on Your Terms)
   ======================================================== */
.dedicated-features-section {
    padding: 50px 20px !important;
    background-color: #FFF8F0; /* Gives a soft background to make white cards pop */
}

.features-main-title {
    color: var(--text-dark);
         font-weight: 600;
    margin-bottom: 15px;
}

.features-sub-title {
    color: var(--text-muted);
    font-size: 18px;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.6;
}

/* -----------------------------------------
   Infra Feature Cards (Unmanaged / Managed)
   ----------------------------------------- */
.infra-feature-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.infra-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-soft);
    border-color: var(--primary-color);
}

.infra-feature-card h4 {
    color: var(--text-dark);
         font-weight: 600;
}

/* Subtitles inside the cards */
.infra-feature-card p.small.fw-bold {
    color: var(--secondary-color) !important;
}

.infra-feature-card p:not(.small) {
    color: var(--text-muted);
    line-height: 1.6;
}

.infra-feature-card li span {
    color: var(--text-dark);
    font-size: 16px;
}

/* Icon Wrappers inside Cards */
.infra-icon-wrapper {
    width: 65px;
    height: 65px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-soft);
    color: var(--primary-color);
    font-size: 32px;
    border-radius: var(--border-radius-md);
    transition: var(--transition);
}

.infra-feature-card:hover .infra-icon-wrapper {
    background-color: var(--primary-color);
    color: var(--text-white);
}

/* Custom Primary Text Color Utility (Used in HTML bullet points) */
.text-primary-custom {
    color: var(--primary-color) !important;
}

/* -----------------------------------------
   OS Showcase Box & Comparison Table
   ----------------------------------------- */
.os-showcase-box {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-card);
}

.os-showcase-box .showcase-title {
    color: var(--text-dark);
         font-weight: 600;
}

.os-showcase-box .showcase-desc {
    color: var(--text-muted);
}

/* Table Styling Overrides */
.os-showcase-box .table {
    --bs-table-bg: transparent; /* Allows background to bleed through */
}

.os-showcase-box .table thead th {
    color: var(--text-dark);
         font-weight: 600;
    font-size: 22px;
    border-bottom: 2px solid var(--border-color) !important;
}

.os-showcase-box .table tbody tr {
    border-bottom: 1px solid var(--border-color);
}

.os-showcase-box .table tbody tr:last-child {
    border-bottom: none;
}

.os-showcase-box .table td {
    color: var(--text-dark);
    vertical-align: middle;
}

/* Muted text in the table for unmanaged options */
.os-showcase-box .table td.text-muted {
    color: var(--text-muted) !important;
}



/* ========================================================
   Enterprise Trust Section (Sticky Split-Screen Timeline)
   ======================================================== */

.premium-trust-section {
    padding: 50px 20px;
    /* Dark premium background to contrast with the pricing section above it */
    background-color: var(--primary-dark);
    color: var(--bg-white);
    position: relative;
    overflow: visible;
}

/* --- Left Column: Sticky Header --- */
.trust-sticky-header {
    position: sticky;
    top: 120px; /* Adjust this based on your navbar height */
    padding-right: 2rem;
    margin-bottom: 3rem;
}

.trust-badge {
    display: inline-block;
    padding: 6px 14px;
    background-color: rgba(10, 127, 38, 0.15); /* Soft accent */
    color: #4ade80; /* Bright green for dark theme */
    border: 1px solid rgba(74, 222, 128, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
         font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.trust-title {
    font-size: 40px;
         font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--bg-white);
}

.text-gradient {
    /* Premium text gradient for the brand name */
    background: linear-gradient(90deg, #60a5fa, #4ade80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trust-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: #94a3b8; /* Slate gray for readability on dark */
}

/* Small Stats under the sticky header */
.trust-indicators {
    gap: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
}

.indicator-item h4 {
    font-size: 25px;
         font-weight: 600;
    margin-bottom: 0;
    color: #f8fafc;
}

.indicator-item span {
    font-size: 12px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- Right Column: Timeline List --- */
.trust-timeline-list {
    padding-left: 1rem;
}

.trust-item {
    display: flex;
    gap: 25px;
    padding-bottom: 3.5rem;
    position: relative;
}

/* The vertical connecting line for the timeline */
.trust-item::before {
    content: '';
    position: absolute;
    left: 27px; /* Centers the line under the 54px circle */
    top: 60px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, rgba(74, 222, 128, 0.3) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.trust-item:last-child::before,
.trust-item.border-0::before {
    display: none;
}

/* Glowing Number Circle */
.trust-item-number {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
         font-weight: 600;
    background-color: var(--primary-color);
    color: #4ade80;
    border: 2px solid rgba(74, 222, 128, 0.4);
    box-shadow: 0 0 20px rgba(10, 127, 38, 0.2);
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.trust-item:hover .trust-item-number {
    background-color: #4ade80;
    color: var(--primary-dark);
    box-shadow: 0 0 25px rgba(74, 222, 128, 0.5);
    border-color: #4ade80;
}

/* Timeline Content */
.trust-item-content {
    padding-top: 10px; /* Aligns text with the circle */
}

.trust-item-content h3 {
    font-size: 24px;
         font-weight: 600;
    color: var(--bg-white);
    margin-bottom: 12px;
    transition: var(--transition);
}

.trust-item:hover .trust-item-content h3 {
    color: #60a5fa; /* Turns soft blue on hover */
}

.trust-item-content p {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 18px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .trust-sticky-header {
        position: relative;
        top: 0;
        margin-bottom: 4rem;
        padding-right: 0;
    }
    .trust-title {
        font-size: 2.3rem;
    }
}


/* =========================================================
   iHoster.net
   DEDICATED SERVER HOSTING
   FINAL ALL-DEVICE RESPONSIVE OVERRIDES

   KEEP AT ABSOLUTE END OF:
   dedicated-server-hosting.css
========================================================= */


/* =========================================================
   0. GLOBAL PAGE SAFETY
========================================================= */

.dedicated-server-page {
    width: 100%;
    max-width: 100%;

    /*
       IMPORTANT:
       Don't use overflow-x:hidden here.
       It can interfere with position:sticky.
    */
    overflow-x: clip;
}

.dedicated-server-page *,
.dedicated-server-page *::before,
.dedicated-server-page *::after {
    box-sizing: border-box;
}

.dedicated-server-page img,
.dedicated-server-page svg,
.dedicated-server-page video {
    max-width: 100%;
    height: auto;
}

.dedicated-server-page h1,
.dedicated-server-page h2,
.dedicated-server-page h3,
.dedicated-server-page h4,
.dedicated-server-page h5,
.dedicated-server-page h6,
.dedicated-server-page p,
.dedicated-server-page span,
.dedicated-server-page a,
.dedicated-server-page li,
.dedicated-server-page strong {
    overflow-wrap: break-word;
    word-break: normal;
}


/* =========================================================
   1. ULTRA WIDE
   1600px+
========================================================= */

@media (min-width: 1600px) {

    .dedicated-server-page .dedicated-hero .container,
    .dedicated-server-page .server-plans-section .container,
    .dedicated-server-page .premium-trust-section .container,
    .dedicated-server-page .dedicated-features-section .container,
    .dedicated-server-page .dedicated-network-section .container,
    .dedicated-server-page .dedicated-showcase-section .container,
    .dedicated-server-page .dedicated-faq-grid-section .container {
        width: 100%;
        max-width: 1500px !important;

        padding-left: 28px;
        padding-right: 28px;
    }

    .dedicated-server-page .dedicated-hero {
        padding: 70px 0 !important;
    }

    .dedicated-server-page .hero-title {
        font-size: 60px !important;
    }
}


/* =========================================================
   2. LARGE DESKTOP / LAPTOP
   1200px - 1599px
========================================================= */

@media (min-width: 1200px) and (max-width: 1599.98px) {

    .dedicated-server-page .dedicated-hero .container,
    .dedicated-server-page .server-plans-section .container,
    .dedicated-server-page .premium-trust-section .container,
    .dedicated-server-page .dedicated-features-section .container,
    .dedicated-server-page .dedicated-network-section .container,
    .dedicated-server-page .dedicated-showcase-section .container,
    .dedicated-server-page .dedicated-faq-grid-section .container {
        width: 100%;
        max-width: 1320px !important;

        padding-left: 24px;
        padding-right: 24px;
    }


    /* HERO */

    .dedicated-server-page .dedicated-hero {
        padding: 60px 0 !important;
    }

    .dedicated-server-page .hero-title {
        font-size: 52px !important;
    }

    .dedicated-server-page .hero-subtitle {
        font-size: 18px;
    }


    /* SERVER CARDS */

    .dedicated-server-page .server-list-card {
        padding: 27px;
    }

    .dedicated-server-page .server-list-card .server-name {
        font-size: 27px;
    }

    .dedicated-server-page .server-list-card .spec-item strong {
        font-size: 17px;
    }

    .dedicated-server-page .server-list-card .price-amount {
        font-size: 37px;
    }


    /* TRUST STICKY */

    .dedicated-server-page .trust-sticky-header {
        top: 110px !important;
    }
}


/* =========================================================
   3. SMALL LAPTOP
   992px - 1199px
========================================================= */

@media (min-width: 992px) and (max-width: 1199.98px) {

    .dedicated-server-page .dedicated-hero .container,
    .dedicated-server-page .server-plans-section .container,
    .dedicated-server-page .premium-trust-section .container,
    .dedicated-server-page .dedicated-features-section .container,
    .dedicated-server-page .dedicated-network-section .container,
    .dedicated-server-page .dedicated-showcase-section .container,
    .dedicated-server-page .dedicated-faq-grid-section .container {
        width: 100%;
        max-width: 100% !important;

        padding-left: 28px;
        padding-right: 28px;
    }


    /* =====================================================
       HERO
    ===================================================== */

    .dedicated-server-page .dedicated-hero {
        padding: 55px 0 !important;

        background-position: 65% center;
    }

    .dedicated-server-page .hero-title {
        font-size: 44px !important;
        line-height: 1.1 !important;
    }

    .dedicated-server-page .hero-subtitle {
        max-width: 100%;

        font-size: 16px;
    }

    .dedicated-server-page .feature-item {
        font-size: 15px;
    }

    .dedicated-server-page .hero-actions {
        gap: 10px !important;
    }

    .dedicated-server-page .hero-actions .btn {
        padding: 13px 18px;

        font-size: 14px;
    }


    /* =====================================================
       PLANS
    ===================================================== */

    .dedicated-server-page .server-list-card {
        padding: 24px 20px;
    }

    .dedicated-server-page .server-list-card .server-name {
        font-size: 24px;
    }

    .dedicated-server-page .loc-badge {
        font-size: 11px;
    }

    .dedicated-server-page .spec-item {
        gap: 8px;
    }

    .dedicated-server-page .spec-item i {
        font-size: 18px;
    }

    .dedicated-server-page .spec-item strong {
        font-size: 15px;
    }

    .dedicated-server-page .spec-item span {
        font-size: 12px;
    }

    .dedicated-server-page .price-amount {
        font-size: 34px;
    }

    .dedicated-server-page .server-list-card .btn-primary-custom {
        padding: 11px 10px;

        font-size: 13px;
    }


    /* =====================================================
       STICKY TRUST - KEEP IT
    ===================================================== */

    .dedicated-server-page .premium-trust-section,
    .dedicated-server-page .premium-trust-section .container,
    .dedicated-server-page .premium-trust-section .row,
    .dedicated-server-page .premium-trust-section [class*="col-"] {
        overflow: visible !important;
    }

    .dedicated-server-page .trust-sticky-header {
        position: -webkit-sticky !important;
        position: sticky !important;

        top: 105px !important;

        height: fit-content;

        margin-bottom: 0 !important;
    }

    .dedicated-server-page .trust-title {
        font-size: 34px;
    }

    .dedicated-server-page .trust-subtitle {
        font-size: 15px;
    }

    .dedicated-server-page .trust-item-content h3 {
        font-size: 20px;
    }

    .dedicated-server-page .trust-item-content p {
        font-size: 15px;
    }
}


/* =========================================================
   4. TABLET
   768px - 991px

   IMPORTANT:
   KEEP TRUST SECTION STICKY
========================================================= */

@media (min-width: 768px) and (max-width: 991.98px) {

    .dedicated-server-page .dedicated-hero .container,
    .dedicated-server-page .server-plans-section .container,
    .dedicated-server-page .premium-trust-section .container,
    .dedicated-server-page .dedicated-features-section .container,
    .dedicated-server-page .dedicated-network-section .container,
    .dedicated-server-page .dedicated-showcase-section .container,
    .dedicated-server-page .dedicated-faq-grid-section .container {
        width: 100%;
        max-width: 100% !important;

        padding-left: 24px;
        padding-right: 24px;
    }


    /* =====================================================
       HERO
    ===================================================== */

    .dedicated-server-page .dedicated-hero {
        padding: 55px 0 !important;

        background-position: center center;
    }

    .dedicated-server-page .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(11, 42, 99, .97) 0%,
                rgba(11, 42, 99, .90) 58%,
                rgba(11, 42, 99, .70) 100%
            ) !important;
    }

    .dedicated-server-page .hero-title {
        max-width: 680px;

        font-size: 43px !important;
        line-height: 1.1;
    }

    .dedicated-server-page .hero-subtitle {
        max-width: 650px;

        font-size: 16px;
    }

    .dedicated-server-page .hero-features {
        max-width: 650px;
    }

    .dedicated-server-page .feature-item {
        font-size: 15px;
    }


    /* =====================================================
       COMMON SECTION SPACING
    ===================================================== */

    .dedicated-server-page .server-plans-section,
    .dedicated-server-page .premium-trust-section,
    .dedicated-server-page .dedicated-features-section,
    .dedicated-server-page .dedicated-network-section,
    .dedicated-server-page .dedicated-showcase-section,
    .dedicated-server-page .dedicated-faq-grid-section {
        padding-top: 65px !important;
        padding-bottom: 65px !important;
    }


    /* =====================================================
       SECTION TITLES
    ===================================================== */

    .dedicated-server-page .section-title,
    .dedicated-server-page .features-main-title,
    .dedicated-server-page .network-title,
    .dedicated-server-page .showcase-title,
    .dedicated-server-page .faq-main-title {
        font-size: 35px !important;
        line-height: 1.2 !important;

        white-space: normal !important;
    }


    /* =====================================================
       PLANS
    ===================================================== */

    .dedicated-server-page .server-list-card {
        padding: 26px;
    }

    .dedicated-server-page .server-list-card .info-col {
        text-align: center;
    }

    .dedicated-server-page .location-badges {
        justify-content: center;
    }

    .dedicated-server-page .server-list-card .server-name {
        font-size: 27px;
    }

    .dedicated-server-page .spec-item strong {
        font-size: 17px;
    }

    .dedicated-server-page .server-list-card .price-col {
        margin-top: 20px;

        padding-top: 22px;

        text-align: center !important;
    }

    .dedicated-server-page .server-list-card .price-box {
        justify-content: center !important;
    }

    .dedicated-server-page .server-list-card .btn-primary-custom {
        width: 100%;
        max-width: 340px;

        margin-left: auto;
        margin-right: auto;
    }


    /* =====================================================
       ENTERPRISE TRUST - KEEP STICKY
    ===================================================== */

    .dedicated-server-page .premium-trust-section,
    .dedicated-server-page .premium-trust-section .container,
    .dedicated-server-page .premium-trust-section .row,
    .dedicated-server-page .premium-trust-section [class*="col-"] {
        overflow: visible !important;
    }


    /*
       Bootstrap col-lg-* normally stacks below 992px.
       Force the original 5/7 split on tablet so sticky
       still has a tall right-side column to scroll against.
    */

    .dedicated-server-page
    .premium-trust-section
    > .container
    > .row
    > .col-lg-5 {
        flex: 0 0 42% !important;

        width: 42% !important;
        max-width: 42% !important;
    }

    .dedicated-server-page
    .premium-trust-section
    > .container
    > .row
    > .col-lg-7 {
        flex: 0 0 58% !important;

        width: 58% !important;
        max-width: 58% !important;
    }


    .dedicated-server-page .trust-sticky-header {
        position: -webkit-sticky !important;
        position: sticky !important;

        top: 95px !important;

        height: fit-content;

        margin-bottom: 0 !important;

        padding-right: 18px !important;
    }

    .dedicated-server-page .trust-title {
        font-size: 29px !important;
    }

    .dedicated-server-page .trust-subtitle {
        font-size: 13.5px;
        line-height: 1.65;
    }

    .dedicated-server-page .trust-indicators {
        gap: 16px;

        padding-top: 18px;
    }

    .dedicated-server-page .indicator-item h4 {
        font-size: 21px;
    }

    .dedicated-server-page .trust-timeline-list {
        padding-left: 0;
    }

    .dedicated-server-page .trust-item {
        gap: 14px;

        padding-bottom: 35px;
    }

    .dedicated-server-page .trust-item-number {
        width: 46px;
        height: 46px;

        flex: 0 0 46px;

        font-size: 14px;
    }

    .dedicated-server-page .trust-item::before {
        left: 22px;

        top: 51px;
    }

    .dedicated-server-page .trust-item-content {
        min-width: 0;

        padding-top: 4px;
    }

    .dedicated-server-page .trust-item-content h3 {
        font-size: 17px;
        line-height: 1.4;
    }

    .dedicated-server-page .trust-item-content p {
        font-size: 13px;
        line-height: 1.65;
    }


    /* =====================================================
       FEATURES / MANAGEMENT
    ===================================================== */

    .dedicated-server-page .infra-feature-card {
        padding: 28px !important;
    }

    .dedicated-server-page .infra-feature-card p:not(.small) {
        font-size: 14.5px;
    }

    .dedicated-server-page .infra-feature-card li span {
        font-size: 14px;
    }


    /* =====================================================
       COMPARISON TABLE
    ===================================================== */

    .dedicated-server-page .os-showcase-box {
        padding: 28px !important;
    }

    .dedicated-server-page .os-showcase-box .table-responsive {
        width: 100%;

        overflow-x: auto !important;

        -webkit-overflow-scrolling: touch;
    }

    .dedicated-server-page .os-showcase-box .table {
        min-width: 720px;
    }


    /* =====================================================
       SHOWCASE
    ===================================================== */

    .dedicated-server-page .zigzag-row {
        margin-bottom: 55px;
    }

    .dedicated-server-page .showcase-text-block {
        text-align: center;
    }

    .dedicated-server-page .showcase-meta-list {
        max-width: 650px;

        margin-left: auto;
        margin-right: auto;
    }

    .dedicated-server-page .meta-list-item {
        text-align: left;
    }

    .dedicated-server-page .showcase-image-wrapper {
        max-width: 620px;

        margin-left: auto;
        margin-right: auto;
    }


    /* =====================================================
       FAQ
    ===================================================== */

    .dedicated-server-page .faq-grid-btn {
        padding: 17px 18px !important;

        font-size: 14px !important;
    }

    .dedicated-server-page .faq-grid-body {
        padding: 0 18px 18px !important;

        font-size: 13.5px !important;
    }
}


/* =========================================================
   5. MOBILE
   BELOW 768px
========================================================= */

@media (max-width: 767.98px) {

    .dedicated-server-page .dedicated-hero .container,
    .dedicated-server-page .server-plans-section .container,
    .dedicated-server-page .premium-trust-section .container,
    .dedicated-server-page .dedicated-features-section .container,
    .dedicated-server-page .dedicated-network-section .container,
    .dedicated-server-page .dedicated-showcase-section .container,
    .dedicated-server-page .dedicated-faq-grid-section .container {
        width: 100%;
        max-width: 100% !important;

        padding-left: 18px;
        padding-right: 18px;
    }


    /* =====================================================
       HERO
    ===================================================== */

    .dedicated-server-page .dedicated-hero {
        padding: 44px 0 48px !important;

        background-position: 58% center;
    }

    .dedicated-server-page .hero-overlay {
        padding: 0 !important;

        background:
            rgba(11, 42, 99, .90) !important;
    }

    .dedicated-server-page .hero-badge {
        margin-bottom: 18px;

        font-size: 11px;
    }

    .dedicated-server-page .hero-title {
        font-size: clamp(32px, 9vw, 39px) !important;
        line-height: 1.1 !important;
        letter-spacing: -0.8px;
    }

    .dedicated-server-page .hero-title br {
        display: none;
    }

    .dedicated-server-page .hero-title .text-highlight {
        display: block;
    }

    .dedicated-server-page .hero-subtitle {
        max-width: 100%;

        font-size: 14.5px;
        line-height: 1.7;
    }


    /* Hero features */

    .dedicated-server-page .hero-features {
        display: flex !important;

        flex-direction: column;

        align-items: flex-start;

        gap: 9px !important;
    }

    .dedicated-server-page .feature-item {
        width: 100%;

        margin: 0 !important;

        align-items: flex-start;

        font-size: 13.5px !important;
        line-height: 1.5;
    }

    .dedicated-server-page .feature-item i {
        flex: 0 0 auto;

        margin-top: 2px;
    }


    /* Hero buttons */

    .dedicated-server-page .hero-actions {
        display: flex !important;

        flex-direction: column;

        width: 100%;

        gap: 10px !important;
    }

    .dedicated-server-page .hero-actions .btn {
        display: flex;

        width: 100%;

        align-items: center;
        justify-content: center;

        margin: 0 !important;

        padding: 12px 14px !important;

        font-size: 13.5px;

        text-align: center;

        white-space: normal;
    }


    /* =====================================================
       COMMON SECTION SPACING
    ===================================================== */

    .dedicated-server-page .server-plans-section,
    .dedicated-server-page .premium-trust-section,
    .dedicated-server-page .dedicated-features-section,
    .dedicated-server-page .dedicated-network-section,
    .dedicated-server-page .dedicated-showcase-section,
    .dedicated-server-page .dedicated-faq-grid-section {
        padding-top: 55px !important;
        padding-bottom: 55px !important;
    }


    /* =====================================================
       COMMON HEADINGS
    ===================================================== */

    .dedicated-server-page .section-title,
    .dedicated-server-page .features-main-title,
    .dedicated-server-page .network-title,
    .dedicated-server-page .showcase-title,
    .dedicated-server-page .faq-main-title {
        font-size: 29px !important;
        line-height: 1.2 !important;

        white-space: normal !important;
    }

    .dedicated-server-page .section-subtitle,
    .dedicated-server-page .features-sub-title,
    .dedicated-server-page .network-desc,
    .dedicated-server-page .showcase-desc,
    .dedicated-server-page .faq-sub-title {
        font-size: 14px !important;
        line-height: 1.7;
    }


    /* =====================================================
       BILLING TOGGLE
    ===================================================== */

    .dedicated-server-page .billing-toggle-container {
        width: 100%;

        flex-wrap: wrap;

        gap: 9px 10px;
    }

    .dedicated-server-page .billing-label {
        font-size: 13px;
    }

    .dedicated-server-page .discount-badge {
        padding: 3px 6px;

        font-size: 9px;
    }

    .dedicated-server-page .billing-switch {
        flex: 0 0 auto;

        width: 54px;
        height: 29px;
    }

    .dedicated-server-page .billing-slider::before {
        width: 21px;
        height: 21px;
    }


    /* =====================================================
       SERVER PLAN CARDS
    ===================================================== */

    .dedicated-server-page .server-list-card {
        width: 100%;

        padding: 24px 18px;

        margin-bottom: 20px;

        border-radius: 18px;
    }

    .dedicated-server-page .popular-badge {
        max-width: calc(100% - 30px);

        padding: 5px 12px;

        font-size: 10px;

        text-align: center;

        white-space: normal;
    }

    .dedicated-server-page .server-list-card .server-name {
        font-size: 24px !important;
    }

    .dedicated-server-page .location-badges {
        justify-content: center;
    }

    .dedicated-server-page .loc-badge {
        font-size: 11px;

        padding: 4px 7px;
    }


    /* Specifications */

    .dedicated-server-page .server-list-card .spec-item {
        min-width: 0;

        gap: 10px;

        margin-bottom: 5px;

        text-align: left;
    }

    .dedicated-server-page .spec-item i {
        flex: 0 0 20px;

        font-size: 18px;
    }

    .dedicated-server-page .spec-item > div {
        min-width: 0;
    }

    .dedicated-server-page .spec-item strong {
        font-size: 15px !important;
        line-height: 1.4;
    }

    .dedicated-server-page .spec-item span {
        font-size: 12px !important;
        line-height: 1.5;
    }


    /* Pricing */

    .dedicated-server-page .server-list-card .price-col {
        margin-top: 18px;

        padding-top: 20px;

        text-align: center !important;
    }

    .dedicated-server-page .server-list-card .price-box {
        justify-content: center !important;

        white-space: nowrap;
    }

    .dedicated-server-page .price-currency {
        font-size: 15px;
    }

    .dedicated-server-page .price-amount {
        font-size: 36px !important;
    }

    .dedicated-server-page .price-term {
        font-size: 12px;
    }

    .dedicated-server-page .server-list-card .btn-primary-custom {
        width: 100%;

        padding: 12px;

        font-size: 13.5px;
    }


    /* =====================================================
       ENTERPRISE TRUST
       MOBILE STACK ONLY
    ===================================================== */

    .dedicated-server-page .premium-trust-section {
        overflow: visible !important;
    }

    .dedicated-server-page
    .premium-trust-section
    > .container
    > .row
    > .col-lg-5,
    .dedicated-server-page
    .premium-trust-section
    > .container
    > .row
    > .col-lg-7 {
        flex: 0 0 100% !important;

        width: 100% !important;
        max-width: 100% !important;
    }


    /*
       On phones the left/right columns are stacked.
       Sticky here would have no useful scrolling parent height,
       so only phones use normal positioning.
    */

    .dedicated-server-page .trust-sticky-header {
        position: relative !important;

        top: auto !important;

        width: 100%;

        margin-bottom: 35px !important;

        padding-right: 0 !important;
    }

    .dedicated-server-page .trust-title {
        font-size: 29px !important;
        line-height: 1.2;
    }

    .dedicated-server-page .trust-subtitle {
        font-size: 14px;
        line-height: 1.7;
    }

    .dedicated-server-page .trust-timeline-list {
        padding-left: 0;
    }

    .dedicated-server-page .trust-item {
        gap: 12px;

        padding-bottom: 32px;
    }

    .dedicated-server-page .trust-item-number {
        width: 44px;
        height: 44px;

        flex: 0 0 44px;

        font-size: 13px;
    }

    .dedicated-server-page .trust-item::before {
        left: 21px;

        top: 48px;
    }

    .dedicated-server-page .trust-item-content {
        min-width: 0;

        padding-top: 2px;
    }

    .dedicated-server-page .trust-item-content h3 {
        font-size: 17px;
        line-height: 1.4;
    }

    .dedicated-server-page .trust-item-content p {
        font-size: 13.5px;
        line-height: 1.65;
    }


    /* =====================================================
       MANAGEMENT FEATURES
    ===================================================== */

    .dedicated-server-page .infra-feature-card {
        min-height: auto;

        padding: 23px 19px !important;

        border-radius: 17px;
    }

    .dedicated-server-page .infra-icon-wrapper {
        width: 52px;
        height: 52px;

        margin-bottom: 16px !important;

        font-size: 22px;
    }

    .dedicated-server-page .infra-feature-card h4,
    .dedicated-server-page .infra-feature-card h5 {
        font-size: 18px;
    }

    .dedicated-server-page .infra-feature-card p {
        font-size: 13.5px !important;
        line-height: 1.65;
    }

    .dedicated-server-page .infra-feature-card li {
        align-items: flex-start !important;
    }

    .dedicated-server-page .infra-feature-card li span {
        font-size: 13px;
        line-height: 1.6;
    }


    /* =====================================================
       MANAGEMENT COMPARISON TABLE
       HORIZONTAL SWIPE
    ===================================================== */

    .dedicated-server-page .os-showcase-box {
        width: 100%;

        padding: 20px 15px !important;

        overflow: hidden;

        border-radius: 17px;
    }

    .dedicated-server-page .os-showcase-box .table-responsive {
        display: block !important;

        width: 100%;
        max-width: 100%;

        overflow-x: auto !important;
        overflow-y: hidden !important;

        -webkit-overflow-scrolling: touch;

        overscroll-behavior-x: contain;

        touch-action: pan-x pan-y;
    }

    .dedicated-server-page .os-showcase-box .table {
        width: 720px !important;
        min-width: 720px !important;
        max-width: none !important;
    }

    .dedicated-server-page .os-showcase-box .table th,
    .dedicated-server-page .os-showcase-box .table td {
        padding: 12px !important;

        font-size: 13px !important;

        white-space: normal;
    }

    .dedicated-server-page
    .os-showcase-box
    .table thead th {
        font-size: 14px !important;
    }


    /* Scroll bar */

    .dedicated-server-page
    .os-showcase-box
    .table-responsive::-webkit-scrollbar {
        height: 6px;
    }

    .dedicated-server-page
    .os-showcase-box
    .table-responsive::-webkit-scrollbar-track {
        background: #edf2f7;

        border-radius: 20px;
    }

    .dedicated-server-page
    .os-showcase-box
    .table-responsive::-webkit-scrollbar-thumb {
        background: #0b2a63;

        border-radius: 20px;
    }


    /* =====================================================
       NETWORK
    ===================================================== */

    .dedicated-server-page .network-spec-list li {
        align-items: flex-start;

        gap: 9px;

        font-size: 13.5px !important;
        line-height: 1.55;
    }

    .dedicated-server-page .network-spec-list li i {
        flex: 0 0 auto;

        margin-top: 3px;
    }

    .dedicated-server-page .btn-network-test {
        display: flex;

        width: 100%;

        align-items: center;
        justify-content: center;

        padding: 12px 15px;

        font-size: 14px;
    }

    .dedicated-server-page .location-grid-card {
        padding: 20px;

        border-radius: 16px;
    }

    .dedicated-server-page .region-header h6 {
        font-size: 18px;
    }

    .dedicated-server-page .datacenter-item strong {
        font-size: 14px;
    }

    .dedicated-server-page .status-online {
        flex: 0 0 auto;

        font-size: 11px;
    }

    .dedicated-server-page .backbone-summary-card {
        padding: 20px;

        border-radius: 16px;
    }


    /* =====================================================
       ZIGZAG SHOWCASE
    ===================================================== */

    .dedicated-server-page .zigzag-row {
        margin-bottom: 48px;
    }

    .dedicated-server-page .showcase-text-block {
        width: 100%;

        text-align: left !important;
    }

    .dedicated-server-page .showcase-desc {
        font-size: 14px !important;
    }

    .dedicated-server-page .showcase-meta-list {
        gap: 11px;
    }

    .dedicated-server-page .meta-list-item {
        align-items: flex-start;

        text-align: left !important;
    }

    .dedicated-server-page .meta-list-item span {
        font-size: 13.5px;
        line-height: 1.55;
    }

    .dedicated-server-page .showcase-image-wrapper {
        width: 100%;

        margin-top: 24px;

        overflow: visible !important;
    }

    .dedicated-server-page .showcase-img,
    .dedicated-server-page
    .zigzag-row:nth-child(2)
    .showcase-img {
        display: block;

        width: 100% !important;
        max-width: 500px !important;

        margin-left: auto !important;
        margin-right: auto !important;
    }


    /* =====================================================
       FAQ
    ===================================================== */

    .dedicated-server-page .faq-grid-accordion {
        gap: 10px;
    }

    .dedicated-server-page .faq-grid-card {
        border-radius: 13px !important;
    }

    .dedicated-server-page .faq-grid-btn {
        padding: 14px 15px !important;

        font-size: 13.5px !important;
        line-height: 1.5;

        white-space: normal;
    }

    .dedicated-server-page .faq-grid-body {
        padding: 0 15px 16px !important;

        font-size: 13px !important;
        line-height: 1.7;
    }


    /* FAQ bottom CTA */

    .dedicated-server-page .faq-bottom-wide-cta {
        flex-direction: column;

        width: 100%;

        align-items: stretch;

        gap: 18px;

        padding: 22px 18px !important;

        border-radius: 17px;
    }

    .dedicated-server-page
    .faq-bottom-wide-cta
    .cta-content {
        flex-direction: row;

        align-items: flex-start;

        gap: 12px;
    }

    .dedicated-server-page .cta-grid-icon {
        width: 44px;
        height: 44px;

        flex: 0 0 44px;

        font-size: 18px;
    }

    .dedicated-server-page .faq-bottom-wide-cta h4 {
        font-size: 17px !important;
    }

    .dedicated-server-page .faq-bottom-wide-cta p {
        font-size: 12.5px;
        line-height: 1.65;
    }

    .dedicated-server-page .cta-button-container {
        width: 100%;

        margin-top: 0;
    }

    .dedicated-server-page .btn-grid-cta {
        width: 100%;

        padding: 12px 14px !important;

        font-size: 13.5px !important;

        white-space: normal;
    }
}


/* =========================================================
   6. SMALL MOBILE
   BELOW 576px
========================================================= */

@media (max-width: 575.98px) {

    .dedicated-server-page .dedicated-hero .container,
    .dedicated-server-page .server-plans-section .container,
    .dedicated-server-page .premium-trust-section .container,
    .dedicated-server-page .dedicated-features-section .container,
    .dedicated-server-page .dedicated-network-section .container,
    .dedicated-server-page .dedicated-showcase-section .container,
    .dedicated-server-page .dedicated-faq-grid-section .container {
        padding-left: 15px;
        padding-right: 15px;
    }


    /* HERO */

    .dedicated-server-page .dedicated-hero {
        padding-top: 40px !important;
        padding-bottom: 44px !important;
    }

    .dedicated-server-page .hero-title {
        font-size: clamp(30px, 9vw, 35px) !important;
    }


    /* BILLING */

    .dedicated-server-page .billing-toggle-container {
        flex-direction: column;

        max-width: 330px;

        margin-left: auto;
        margin-right: auto;
    }

    .dedicated-server-page .billing-label {
        width: 100%;

        text-align: center;
    }


    /* PLAN SPECS */

    .dedicated-server-page
    .server-list-card
    .col-sm-6.spec-item {
        width: 100% !important;
    }


    /* TRUST */

    .dedicated-server-page .trust-title {
        font-size: 27px !important;
    }


    /* HEADINGS */

    .dedicated-server-page .section-title,
    .dedicated-server-page .features-main-title,
    .dedicated-server-page .network-title,
    .dedicated-server-page .showcase-title,
    .dedicated-server-page .faq-main-title {
        font-size: 27px !important;
    }


    /* NETWORK DATACENTERS */

    .dedicated-server-page .datacenter-item {
        flex-direction: column;

        align-items: flex-start;

        gap: 6px;
    }
}


/* =========================================================
   7. VERY SMALL PHONES
   320px - 400px
========================================================= */

@media (max-width: 400px) {

    .dedicated-server-page .dedicated-hero .container,
    .dedicated-server-page .server-plans-section .container,
    .dedicated-server-page .premium-trust-section .container,
    .dedicated-server-page .dedicated-features-section .container,
    .dedicated-server-page .dedicated-network-section .container,
    .dedicated-server-page .dedicated-showcase-section .container,
    .dedicated-server-page .dedicated-faq-grid-section .container {
        padding-left: 12px;
        padding-right: 12px;
    }


    /* HERO */

    .dedicated-server-page .hero-title {
        font-size: 28px !important;
        line-height: 1.12 !important;
    }

    .dedicated-server-page .hero-subtitle {
        font-size: 13.5px;
    }


    /* HEADINGS */

    .dedicated-server-page .section-title,
    .dedicated-server-page .features-main-title,
    .dedicated-server-page .network-title,
    .dedicated-server-page .showcase-title,
    .dedicated-server-page .faq-main-title {
        font-size: 25px !important;
        line-height: 1.22 !important;
    }


    /* PLAN */

    .dedicated-server-page .server-list-card {
        padding: 21px 14px;
    }

    .dedicated-server-page .server-list-card .server-name {
        font-size: 22px !important;
    }

    .dedicated-server-page .price-amount {
        font-size: 32px !important;
    }


    /* TRUST */

    .dedicated-server-page .trust-title {
        font-size: 25px !important;
    }

    .dedicated-server-page .trust-item {
        gap: 10px;
    }

    .dedicated-server-page .trust-item-number {
        width: 40px;
        height: 40px;

        flex-basis: 40px;
    }

    .dedicated-server-page .trust-item::before {
        left: 19px;

        top: 44px;
    }

    .dedicated-server-page .trust-item-content h3 {
        font-size: 15.5px;
    }

    .dedicated-server-page .trust-item-content p {
        font-size: 12.5px;
    }


    /* FEATURE CARDS */

    .dedicated-server-page .infra-feature-card {
        padding: 19px 15px !important;
    }


    /* TABLE */

    .dedicated-server-page .os-showcase-box {
        padding: 16px 10px !important;
    }

    .dedicated-server-page .os-showcase-box .table {
        width: 680px !important;
        min-width: 680px !important;
    }


    /* FAQ */

    .dedicated-server-page .faq-grid-btn {
        padding: 12px !important;

        font-size: 12.5px !important;
    }

    .dedicated-server-page .faq-grid-body {
        padding: 0 12px 14px !important;

        font-size: 12.5px !important;
    }

    .dedicated-server-page
    .faq-bottom-wide-cta
    .cta-content {
        flex-direction: column;
    }
}


/* =========================================================
   8. TOUCH DEVICE HOVER SAFETY
========================================================= */

@media (hover: none) {

    .dedicated-server-page .server-list-card:hover,
    .dedicated-server-page .infra-feature-card:hover,
    .dedicated-server-page .location-grid-card:hover,
    .dedicated-server-page .compatibility-item:hover,
    .dedicated-server-page .faq-grid-card:hover {
        transform: none !important;
    }
}


/* =========================================================
   9. REDUCED MOTION ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .dedicated-server-page *,
    .dedicated-server-page *::before,
    .dedicated-server-page *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;
    }
}


/* =========================================================
   DEDICATED SERVER
   MANAGEMENT TABLE - MOBILE HORIZONTAL SCROLL FIX
   KEEP AT ABSOLUTE END OF CSS
========================================================= */

@media (max-width: 991.98px) {

    /* Outer white card */
    .dedicated-server-page .os-showcase-box {
        width: 100% !important;
        max-width: 100% !important;

        overflow: hidden !important;
    }


    /* Actual scroll area */
    .dedicated-server-page
    .os-showcase-box
    .table-responsive {

        display: block !important;

        width: 100% !important;
        max-width: 100% !important;

        overflow-x: auto !important;
        overflow-y: hidden !important;

        -webkit-overflow-scrolling: touch;

        overscroll-behavior-x: contain;

        touch-action: pan-x pan-y;

        scrollbar-width: thin;
    }


    /* IMPORTANT:
       Force table wider than small screen
       otherwise there is nothing to scroll
    */
    .dedicated-server-page
    .os-showcase-box
    .table-responsive
    > table {

        width: 820px !important;
        min-width: 820px !important;
        max-width: none !important;

        table-layout: auto !important;

        margin-bottom: 0 !important;
    }


    /* Column widths */

    .dedicated-server-page
    .os-showcase-box
    table th:nth-child(1),
    .dedicated-server-page
    .os-showcase-box
    table td:nth-child(1) {

        width: 280px !important;
        min-width: 280px !important;
    }

    .dedicated-server-page
    .os-showcase-box
    table th:nth-child(2),
    .dedicated-server-page
    .os-showcase-box
    table td:nth-child(2),

    .dedicated-server-page
    .os-showcase-box
    table th:nth-child(3),
    .dedicated-server-page
    .os-showcase-box
    table td:nth-child(3) {

        width: 270px !important;
        min-width: 270px !important;
    }


    /* Text */

    .dedicated-server-page
    .os-showcase-box
    table th {

        padding: 13px 12px !important;

        font-size: 14px !important;

        white-space: normal !important;
    }

    .dedicated-server-page
    .os-showcase-box
    table td {

        padding: 12px !important;

        font-size: 13px !important;
        line-height: 1.5;

        white-space: normal !important;
    }


    /* Visible horizontal scrollbar */

    .dedicated-server-page
    .os-showcase-box
    .table-responsive::-webkit-scrollbar {

        height: 7px;
    }

    .dedicated-server-page
    .os-showcase-box
    .table-responsive::-webkit-scrollbar-track {

        background: #edf2f7;

        border-radius: 20px;
    }

    .dedicated-server-page
    .os-showcase-box
    .table-responsive::-webkit-scrollbar-thumb {

        background: #0b2a63;

        border-radius: 20px;
    }
}


/* =========================================================
   NORMAL MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .dedicated-server-page .os-showcase-box {

        padding: 20px 14px !important;
    }

    .dedicated-server-page
    .os-showcase-box
    .table-responsive
    > table {

        width: 780px !important;
        min-width: 780px !important;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .dedicated-server-page .os-showcase-box {

        padding: 18px 12px !important;
    }

    .dedicated-server-page
    .os-showcase-box
    .table-responsive
    > table {

        width: 740px !important;
        min-width: 740px !important;
    }

    .dedicated-server-page
    .os-showcase-box
    table th:nth-child(1),
    .dedicated-server-page
    .os-showcase-box
    table td:nth-child(1) {

        width: 240px !important;
        min-width: 240px !important;
    }

    .dedicated-server-page
    .os-showcase-box
    table th:nth-child(2),
    .dedicated-server-page
    .os-showcase-box
    table td:nth-child(2),

    .dedicated-server-page
    .os-showcase-box
    table th:nth-child(3),
    .dedicated-server-page
    .os-showcase-box
    table td:nth-child(3) {

        width: 250px !important;
        min-width: 250px !important;
    }
}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .dedicated-server-page .os-showcase-box {

        padding: 15px 9px !important;
    }

    .dedicated-server-page
    .os-showcase-box
    .table-responsive
    > table {

        width: 700px !important;
        min-width: 700px !important;
    }

    .dedicated-server-page
    .os-showcase-box
    table th,
    .dedicated-server-page
    .os-showcase-box
    table td {

        padding: 10px !important;

        font-size: 12.5px !important;
    }
}




/* ========================================================
   PREMIUM TABULAR PRICING STYLES
   ======================================================== */

.server-location-filters .filter-pill {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 18px;
    padding: 10px 20px;
    border-radius: 50px;
    transition: var(--transition);
}

.server-location-filters .filter-pill:hover {
    color: var(--primary-color);
    background: var(--bg-blue-soft);
}

.server-location-filters .filter-pill.active {
    background: var(--primary-color);
    color: var(--text-white);
    box-shadow: 0 4px 12px rgba(11, 42, 99, 0.2);
}

.premium-table-wrapper {
    background: var(--bg-white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-color);
    overflow: hidden; /* Keeps border radius on table corners */
}

.server-pricing-table thead {
    background-color: var(--bg-light);
    border-bottom: 2px solid var(--border-color);
}

.server-pricing-table thead th {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 19px;
    letter-spacing: 0.5px;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    border: none;
}

.server-pricing-table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.server-pricing-table tbody tr:hover {
    background-color: var(--bg-soft-green); /* Subtle hover effect */
}

.server-pricing-table tbody tr:last-child {
    border-bottom: none;
}

.server-pricing-table td {
    border: none;
    vertical-align: middle;
}

.cpu-icon-box {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-blue-soft);
    border-radius: var(--border-radius-sm);
    font-size: 1.25rem;
}

.btn-action-green {
    /* oyage thiyena parana codes... */
    background-color: var(--accent-color);
    color: var(--text-white);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: var(--border-radius-sm);
    border: none;
    transition: var(--transition);
    
    /* Meka aluthen add karanna */
    white-space: nowrap; 
}

.btn-action-green:hover {
    background-color: var(--accent-hover);
    color: var(--text-white);
    box-shadow: 0 4px 12px rgba(10, 127, 38, 0.2);
}


/* Pricing Table Mobile Horizontal Scroll Fix */
@media (max-width: 991.98px) {
    .premium-table-wrapper {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
    }
    
    .server-pricing-table {
        min-width: 900px !important; /* Table eka squish wenne nathiwa scroll wenna space eka hadanawa */
    }
}