/* ===== VPS Price Cards – all 5 equal, full width ===== */

.vps-glow-wrap {
    position: relative;
    overflow: hidden;
}

.vps-glow-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: -20%;
    width: 140%;
    height: 100%;
    background:
        radial-gradient(ellipse 45% 30% at 50% 15%, rgba(242, 108, 11, 0.42) 0%, rgba(242, 108, 11, 0.14) 40%, transparent 70%),
        radial-gradient(ellipse 60% 30% at 50% 58%, rgba(242, 108, 11, 0.10) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.vps-price-area .price-title h2 {
    margin-bottom: 20px;
}

.vps-price-area .price-title ul {
    margin-bottom: 8px;
}

.vps-price-area {
    padding-top: 140px;
    position: relative;
    background: transparent;
}

.vps-glow-wrap .end-area {
    background: transparent !important;
}

.vps-price-area > .container {
    position: relative;
    z-index: 1;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 40px;
}

/* ===== VPS Type Tabs ===== */

.vps-type-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-top: 40px;
    border-bottom: 3px solid #e5e5e5;
}

.vps-type-tab {
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 600;
    color: #555;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -3px;
    cursor: pointer;
    transition: color 0.3s, border-color 0.3s;
    white-space: nowrap;
}

.vps-type-tab:hover {
    color: #333;
}

.vps-type-tab.active {
    color: #222;
    border-bottom-color: #f26c0b;
    font-weight: 700;
}

/* ===== VPS Product Nav (segmented) ===== */

.vps-seg-nav a.vps-seg-btn {
    text-decoration: none;
}

/* ===== VPS Filter Bar (Segmented Control) ===== */

.vps-filter-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.vps-filter-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.vps-filter-label {
    font-size: 13px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.vps-filter-sep {
    width: 1px;
    height: 40px;
    background: #ddd;
    align-self: flex-end;
}

.vps-seg {
    position: relative;
    display: flex;
    gap: 2px;
    padding: 4px;
    border-radius: 12px;
    background: #f5f5f5;
    border: 1px solid #e8e8e8;
}

.vps-seg-track {
    position: absolute;
    top: 4px;
    left: 4px;
    height: calc(100% - 8px);
    border-radius: 9px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.vps-seg-btn {
    position: relative;
    z-index: 1;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 500;
    color: #777;
    background: none;
    border: none;
    border-radius: 9px;
    cursor: pointer;
    transition: color 0.25s;
    white-space: nowrap;
    user-select: none;
}

.vps-seg-btn:hover {
    color: #444;
}

.vps-seg-btn.active {
    color: #f26c0b;
    font-weight: 700;
}

.vps-seg-save {
    display: inline-block;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    color: #2e7d32;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 6px;
    margin-left: 5px;
    vertical-align: middle;
    letter-spacing: -0.02em;
}

/* ===== VPS Cards Grid ===== */

.vps-cards-scroll {
    display: flex;
    gap: 14px;
    margin-top: 40px;
}

.vps-cards-scroll .price-item {
    flex: 1 1 0;
    min-width: 0;
    margin-top: 24px;
}

.vps-cards-scroll .price-item:nth-child(2),
.vps-cards-scroll .price-item:nth-child(3) {
    margin-top: 0;
}

.vps-cards-scroll .price-item2 {
    box-shadow: 0 12px 40px rgba(242, 108, 11, 0.25);
    z-index: 2;
}

.vps-cards-scroll .price-top-cnt h2 {
    white-space: nowrap;
}

.vps-cards-scroll .price-top-cnt p {
    min-height: 48px;
}

/* 3-card layout (webhosting, etc.) */
.vps-cards-scroll.vps-cards-3 {
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Show All Button ===== */

.vps-show-all-wrap {
    text-align: center;
    margin-top: 56px;
}

.vps-show-all-btn {
    display: inline-block;
    padding: 14px 36px;
    border: 2px solid #f26c0b;
    border-radius: 8px;
    color: #f26c0b;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
}

.vps-show-all-btn:hover {
    background: #f26c0b;
    color: #fff;
}

/* ===== VPS Comparison Table ===== */

.vps-compare-section {
    padding: 80px 0 60px;
    background: #f8f9fa;
    position: relative;
    z-index: 2;
}

.vps-compare-section > .container {
    max-width: 1360px;
    text-align: center;
}

.vps-compare-section h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 40px;
    color: #222;
}

.vps-compare-scroll {
    overflow-x: auto;
}

.vps-compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    text-align: center;
}

.vps-compare-table thead th {
    padding: 24px 24px 20px;
    font-size: 16px;
    font-weight: 700;
    color: #222;
    border-bottom: 2px solid #eee;
    vertical-align: bottom;
}

.vps-compare-table thead th:first-child {
    text-align: left;
}

.vps-compare-table thead .vps-th-popular {
    color: #f26c0b;
    position: relative;
}

.vps-popular-label {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    background: #f26c0b;
    border-radius: 4px;
    padding: 3px 10px;
    margin-top: 8px;
}

.vps-compare-table tbody td {
    padding: 16px 24px;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
}

.vps-compare-table thead th + th,
.vps-compare-table tbody td + td {
    border-left: 1px solid #f0f0f0;
}

.vps-compare-table tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
}

.vps-compare-table tbody .vps-td-popular {
    background: transparent;
}

.vps-compare-table tbody td strong {
    color: #222;
    font-size: 16px;
}

.vps-compare-cta td {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
    border-bottom: none !important;
    border-left: none !important;
}

.vps-table-btn,
.vps-table-btn-pop {
    position: relative;
    z-index: 2;
}

.vps-table-btn {
    display: inline-block;
    padding: 10px 24px;
    border: 2px solid #f26c0b;
    border-radius: 6px;
    color: #f26c0b;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.vps-table-btn:hover {
    background: #f26c0b;
    color: #fff;
}

.vps-table-btn-pop {
    background: #f26c0b;
    color: #fff;
}

.vps-table-btn-pop:hover {
    background: #d95e09;
    border-color: #d95e09;
}

@media (max-width: 768px) {
    .vps-compare-section {
        padding: 50px 0 40px;
    }

    .vps-compare-section h2 {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .vps-compare-scroll {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .vps-compare-table {
        font-size: 13px;
        min-width: 600px;
    }

    .vps-compare-table thead th {
        padding: 12px 10px;
        font-size: 12px;
    }

    .vps-compare-table tbody td {
        padding: 10px 10px;
    }

    .vps-compare-table tbody td:first-child {
        font-size: 12px;
    }

    .vps-compare-table tbody td strong {
        font-size: 13px;
    }

    .vps-table-btn,
    .vps-table-btn-pop {
        padding: 8px 14px;
        font-size: 12px;
    }

    .vps-popular-label {
        font-size: 9px;
        padding: 2px 6px;
    }

    .vps-compare-cta td {
        padding-top: 14px !important;
        padding-bottom: 14px !important;
    }
}

@media (max-width: 480px) {
    .vps-compare-section {
        padding: 40px 0 30px;
    }

    .vps-compare-section h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .vps-compare-table {
        min-width: 540px;
        font-size: 12px;
    }

    .vps-compare-table thead th {
        padding: 10px 8px;
        font-size: 11px;
    }

    .vps-compare-table tbody td {
        padding: 8px 8px;
        font-size: 11px;
    }

    .vps-compare-table tbody td strong {
        font-size: 12px;
    }

    .vps-table-btn,
    .vps-table-btn-pop {
        padding: 6px 10px;
        font-size: 11px;
    }
}

@media (max-width: 1100px) {
    .vps-cards-scroll {
        flex-wrap: wrap;
    }

    .vps-cards-scroll .price-item {
        flex: 1 1 calc(50% - 8px);
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .vps-cards-scroll .price-item {
        flex: 1 1 100%;
    }

    .vps-filter-bar {
        flex-direction: column;
        gap: 12px;
        margin-top: 24px;
        margin-bottom: 0;
    }

    .vps-filter-sep {
        display: none;
    }

    .vps-filter-group {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }

    .vps-seg {
        width: 100%;
    }

    .vps-seg-btn {
        flex: 1;
        text-align: center;
        padding: 10px 12px;
        font-size: 13px;
    }

    .vps-cards-scroll {
        margin-top: 20px;
    }

    .vps-cards-scroll .price-top-cnt h2 {
        white-space: normal;
    }

    .vps-compare-table-wrap h3 {
        font-size: 22px;
    }

    .vps-price-area {
        padding-top: 120px;
    }

    .vps-price-area .price-title h2 {
        font-size: 32px;
        line-height: 38px;
    }

    .vps-type-tabs {
        gap: 0;
    }

    .vps-type-tab {
        padding: 12px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .vps-price-area {
        padding-top: 100px;
    }

    .vps-price-area .price-title h2 {
        font-size: 28px;
        line-height: 34px;
    }

    .vps-type-tab {
        padding: 10px 12px;
        font-size: 13px;
    }

    .vps-filter-bar {
        gap: 10px;
        margin-top: 20px;
    }

    .vps-cards-scroll {
        margin-top: 16px;
    }

    .vps-seg-btn {
        padding: 8px 10px;
        font-size: 12px;
    }

    .vps-seg-save {
        font-size: 10px;
    }
}
