/* ==========================================================================
   Dedicated Server Hosting Page Styles
   ========================================================================== */

:root {
    --dedi-bg-dark: #040814;
    --dedi-teal-btn: #0060fe;
    --dedi-teal-btn-hover: #0051d4;
    --dedi-orange-btn: #0060fe;
    --dedi-orange-btn-hover: #0051d4;
    --dedi-toggle-bg: #0f172a;
    --dedi-toggle-active: #0060fe;
    --dedi-toggle-active-text: #ffffff;
    --dedi-text-main: #0f172a;
    --dedi-text-muted: #64748b;
    --dedi-border-color: #e2e8f0;
}

/* Base resets for Dedicated Section */
.dedi-wrapper * {
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.dedi-wrapper {
    background-color: #ffffff;
    overflow-x: hidden;
    position: relative;
}

.dedi-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
}

/* 1. Sub Navigation in Hero Banner */
.dedi-hero-section .sh-hero-subnav {
    margin-top: -10px;
    margin-bottom: 55px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 5;
}

.dedi-hero-section .sh-subnav-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #1e293b;
    font-size: 15px;
    white-space: nowrap;
    letter-spacing: 0.2px;
}

.dedi-hero-section .sh-subnav-divider {
    width: 1px;
    height: 18px;
    background-color: #94a3b8;
    opacity: 0.5;
    display: inline-block;
}

.dedi-hero-section .sh-subnav-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.dedi-hero-section .sh-nav-link {
    font-family: 'Poppins', sans-serif;
    font-size: 14.5px;
    font-weight: 500;
    color: #64748b;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dedi-hero-section .sh-nav-link:hover {
    color: #0d6efd;
}

.dedi-hero-section .sh-nav-link.active {
    color: #0d6efd;
    font-weight: 700;
    border-bottom: 2px solid #0d6efd;
    padding-bottom: 2px;
    text-shadow: none;
}

/* 2. Hero Section */
.dedi-hero-section {
    position: relative;
    background-image: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), url('../images/shared-hero-bg.png');
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    padding: 150px 0 90px 0;
    color: #333333;
    overflow: hidden;
    z-index: 1;
}

/* Concentric background ring decor */
.dedi-hero-bg-circles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%);
    width: 1400px;
    height: 1400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 96, 254, 0.16) 0%, rgba(0, 96, 254, 0) 60%);
    pointer-events: none;
    z-index: -1;
}

.dedi-hero-bg-circles::after,
.dedi-hero-bg-circles::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(56, 189, 248, 0.08);
}

.dedi-hero-bg-circles::after {
    width: 850px;
    height: 850px;
}

.dedi-hero-bg-circles::before {
    width: 1150px;
    height: 1150px;
}

.dedi-hero-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    align-items: center;
    gap: 50px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 10px 0;
}

@media (max-width: 992px) {
    .dedi-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Center Content */
.dedi-hero-center-content {
    text-align: center;
    z-index: 3;
}

.dedi-hero-pretitle {
    font-size: 16px;
    font-weight: 700;
    color: #0d6efd;
    margin-bottom: 14px;
    letter-spacing: 0.3px;
    text-shadow: none;
}

.dedi-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 54px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    color: #111111;
    text-shadow: none;
}

.dedi-hero-subtitle {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.7;
    color: #444444;
    margin-bottom: 26px;
    max-width: 620px;
}

/* Buttons Row */
.dedi-buttons-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}

.dedi-single-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 38px !important;
    font-size: 16.5px !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
    background-color: #0060fe !important;
    color: #ffffff !important;
    box-shadow: 0 10px 25px rgba(0, 96, 254, 0.35);
    text-decoration: none !important;
    transition: all 0.25s ease-in-out !important;
}

.dedi-single-btn span {
    transition: transform 0.25s ease;
}

.dedi-single-btn:hover {
    background-color: #0051d4 !important;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 96, 254, 0.45);
}

.dedi-single-btn:hover span {
    transform: translateX(5px);
}

/* Bottom Curved Wave */
.dedi-hero-wave-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
    pointer-events: none;
}

.dedi-hero-wave {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 110px;
}

.dedi-hero-wave path {
    fill: #ffffff;
}


/* 5. Features Grid Section (Why Choose CloudMate) */
.dedi-features-section {
    padding: 40px 0 90px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f9f8fe 100%);
    border-bottom: 1px solid #eef0f6;
}

.dedi-section-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 48px auto;
}

.dedi-subtag {
    display: inline-block;
    color: var(--dedi-teal-btn);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.dedi-section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--dedi-text-main);
    margin: 0 0 16px 0;
    letter-spacing: -0.5px;
}

.dedi-section-desc {
    font-size: 16.5px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.dedi-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    margin-top: 20px;
}

.dedi-feature-box {
    background: #ffffff;
    border: 1px solid #eef2f6;
    padding: 32px 28px;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 1;
}

.dedi-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.dedi-feature-box.color-1 .dedi-feature-icon {
    background: #eff6ff;
}
.dedi-feature-box.color-1 .dedi-feature-icon svg { stroke: #2563eb; }

.dedi-feature-box.color-2 .dedi-feature-icon {
    background: #f5f3ff;
}
.dedi-feature-box.color-2 .dedi-feature-icon svg { stroke: #7c3aed; }

.dedi-feature-box.color-3 .dedi-feature-icon {
    background: #f0f9ff;
}
.dedi-feature-box.color-3 .dedi-feature-icon svg { stroke: #0284c7; }

.dedi-feature-box.color-4 .dedi-feature-icon {
    background: #faf5ff;
}
.dedi-feature-box.color-4 .dedi-feature-icon svg { stroke: #9333ea; }

.dedi-feature-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--dedi-text-main);
    margin: 0 0 12px 0;
    font-family: 'Poppins', sans-serif;
}

.dedi-feature-desc {
    font-size: 14.5px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}


@media (max-width: 1200px) {
    .dedi-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dedi-hero-grid {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .dedi-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .dedi-hero-section {
        padding: 110px 0 80px 0;
    }

    .dedi-hero-center-content {
        max-width: 100% !important;
    }

    .dedi-hero-pretitle {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .dedi-hero-title {
        font-size: clamp(32px, 8vw, 40px) !important;
        line-height: 1.22 !important;
        margin-bottom: 16px;
    }

    .dedi-hero-subtitle {
        font-size: 15.5px !important;
        line-height: 1.6 !important;
        margin-bottom: 24px !important;
    }

    .dedi-checkpoints {
        gap: 14px !important;
        font-size: 14px !important;
        margin-bottom: 24px !important;
    }

    .dedi-buttons-row {
        width: 100%;
    }

    .dedi-single-btn {
        width: 100%;
        padding: 15px 24px !important;
        font-size: 16px !important;
    }

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


@keyframes pulseGlow {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(22, 199, 61, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(22, 199, 61, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(22, 199, 61, 0);
    }
}

@keyframes floatHardware {
    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-6px);
    }
}

.dedi-plans-section {
    padding: 85px 0 100px 0;
    background: radial-gradient(circle at 50% 10%, rgba(0, 96, 254, 0.05) 0%, rgba(255, 255, 255, 0) 60%),
        linear-gradient(180deg, #f7faff 0%, #ffffff 50%, #f3f8ff 100%);
    position: relative;
    overflow: hidden;
}

.plans-ambient-bg {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 1400px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 114, 255, 0.07) 0%, rgba(0, 229, 255, 0.03) 40%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.dedi-plans-section .dedi-container {
    position: relative;
    z-index: 1;
}

/* Section Header */
.se-title-1.uppercase-badge {
    font-size: 13.5px;
    font-weight: 800;
    background: linear-gradient(90deg, #005cff, #00d2ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
    display: inline-block;
}

.se-title-2.main-heading {
    font-size: 46px;
    font-weight: 900;
    color: #0b162b;
    margin-bottom: 18px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -1.2px;
    line-height: 1.2;
}

.se-subtitle {
    font-size: 18.5px;
    color: #53637e;
    font-weight: 500;
    max-width: 680px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
}


.filter-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.filter-pills .item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 13px 36px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    background: #ffffff;
    border: 1.5px solid #e2edf8;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(15, 30, 60, 0.04);
    user-select: none;
    min-width: 150px;
}

.filter-pills .item .pill-icon {
    width: 22px;
    height: 22px;
    color: #0060fe;
    transition: all 0.3s ease;
}

.filter-pills .item:hover {
    border-color: #0060fe;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 96, 254, 0.12);
}

.filter-pills .item.active {
    background: linear-gradient(135deg, #005aff 0%, #0037f5 60%, #00bfff 100%);
    background-size: 200% auto;
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 12px 30px rgba(0, 96, 254, 0.4);
    transform: scale(1.04);
}

.filter-pills .item.active .pill-icon {
    color: #ffffff;
}

/* Main Plan Card Container */
.plans-container {
    max-width: 1600px;
    margin: 0 auto;
}

.plans-container .plan {
    background: #ffffff;
    border-radius: 28px;
    border: 1.5px solid #d2e4f8;
    box-shadow: 0 25px 80px rgba(13, 37, 76, 0.08), 0 0 1px 1px #ffffff inset;
    padding: 42px 48px;
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 40px;
    align-items: stretch;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.plans-container .plan:hover {
    transform: none;
    border-color: #e5edf8;
}

/* Left Column - Enterprise Info Panel */
.main-info-se {
    background: linear-gradient(150deg, #fafcff 0%, #f0f6ff 100%);
    border: 1.5px solid #e1edfc;
    border-radius: 24px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    height: 100%;
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 75, 200, 0.04);
}

.badge-edition {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e9fbf0;
    color: #159b3f;
    border: 1px solid #bceecf;
    padding: 5px 14px;
    border-radius: 99px;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 22px;
}

.badge-edition .pulse-dot {
    width: 9px;
    height: 9px;
    background-color: #16c73d;
    border-radius: 50%;
    display: inline-block;
    animation: pulseGlow 2s infinite;
}

.server-graphic-wrap {
    margin-bottom: 20px;
    align-self: center;
    filter: drop-shadow(0 15px 25px rgba(0, 96, 254, 0.16));
    animation: floatHardware 6s ease-in-out infinite;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.plan-name-main {
    font-size: 30px;
    font-weight: 900;
    color: #0b162b;
    margin-top: 0;
    margin-bottom: 6px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.8px;
}

.plan-sub-name {
    font-size: 16px;
    font-weight: 700;
    color: #0060fe;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.location-pill-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    background: #ffffff;
    border: 1px solid #cfe1fb;
    padding: 7px 15px;
    border-radius: 99px;
    font-size: 14.5px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 35px;
    box-shadow: 0 2px 8px rgba(0, 96, 254, 0.05);
}

.inline-pricing-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: auto;
    width: 100%;
    border-top: 1.5px dashed #d6e6fb;
    padding-top: 26px;
}

.pricing-tier-label {
    font-size: 11.5px;
    font-weight: 800;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 6px;
}

.inline-pricing-wrap .price-display {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    color: #0b162b;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.inline-pricing-wrap .price-display .curr {
    font-size: 26px;
    font-weight: 800;
    color: #0060fe;
    margin-right: 4px;
}

.inline-pricing-wrap .price-display .num {
    font-size: 44px;
    font-weight: 900;
    letter-spacing: -1.5px;
    line-height: 1;
}

.inline-pricing-wrap .price-display .per {
    font-size: 18px;
    font-weight: 700;
    color: #64748b;
    margin-left: 3px;
}

.renew-notice-inline {
    font-size: 13.5px;
    color: #475569;
    font-weight: 600;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-buy-now-compact {
    width: 100%;
    background: linear-gradient(135deg, #005cff 0%, #0030eb 60%, #00c6ff 100%);
    background-size: 200% auto;
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 800;
    padding: 15px 26px;
    border-radius: 14px;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(0, 85, 255, 0.35);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.8px;
}

.btn-buy-now-compact .btn-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-buy-now-compact:hover {
    background-position: right center;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 85, 255, 0.5);
}

.btn-buy-now-compact:hover .btn-arrow {
    transform: translateX(4px);
}

/* Specs Grid */
.specs-grid-se {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
    grid-template-rows: 1fr 1fr;
}

.spec-cell {
    background: #ffffff;
    border: 1.5px solid #e5edf8;
    border-radius: 0;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.spec-icon-wrap {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #f0f6ff 0%, #e3effc 100%);
    border: 1px solid #cce0ff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: #0060fe;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.spec-icon-wrap svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: all 0.3s ease;
}

.spec-title {
    font-size: 18px;
    font-weight: 800;
    color: #0567f1;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.spec-value {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.5;
}

.spec-value .sub-text {
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    display: block;
    margin-top: 2px;
}

/* Minimal Footer Features Row */
.se-footer-row-minimal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 45px auto 25px auto;
    max-width: 1240px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.minimal-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
}

.minimal-pill .icon-check-blue svg {
    width: 22px;
    height: 22px;
    display: block;
}

/* Minimal Bottom Banner */
.se-bottom-bar-minimal {
    text-align: center;
    max-width: 1240px;
    margin: 0 auto;
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
}

.se-bottom-bar-minimal strong {
    color: #0060fe;
    font-weight: 800;
}

/* Responsive Styles for Dedicated Plans */
@media (max-width: 1150px) {
    .plans-container .plan {
        grid-template-columns: 1fr;
        padding: 36px 28px;
        gap: 36px;
    }

    .main-info-se {
        height: auto;
    }

    .specs-grid-se {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .se-title-2.main-heading {
        font-size: 32px;
    }

    .specs-grid-se {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .filter-pills .item {
        padding: 12px 24px;
        min-width: 130px;
        font-size: 15px;
    }

    .plans-container .plan {
        padding: 26px 20px;
    }

    .main-info-se {
        padding: 24px 20px;
    }
}