@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* Custom Redesign CSS for VPS Landing Page */

.vps-redesign-container {
    --primary: #143872;
    --secondary: #39b8fd;
    --brand-orange: #F97316;
    --background: #f8f9ff;
    --surface: #ffffff;
    --on-background: #1a1b20;
    --on-surface: #1a1b20;
    --on-surface-variant: #434750;
    --outline-variant: #e2e8f0;
    --surface-container-low: #f8fafc;
    --surface-container: #f1f5f9;
    --surface-container-high: #e2e8f0;

    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--background);
    color: var(--on-background);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.vps-redesign-container * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Material Symbols Outlined Custom Configuration */
.vps-redesign-container .material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 20;
    font-size: 20px;
    display: inline-block;
    vertical-align: middle;
}

/* Layout Containers */
.vps-container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

@media (min-width: 768px) {
    .vps-container {
        padding-left: 64px;
        padding-right: 64px;
    }
}

/* Spacing and Utilities */
.vps-relative { position: relative; }
.vps-overflow-hidden { overflow: hidden; }
.vps-mb-8 { margin-bottom: 32px; }
.vps-mb-12 { margin-bottom: 48px; }
.vps-max-w-xl { max-width: 576px; }
.vps-text-secondary { color: var(--secondary); }
.vps-font-semibold { font-weight: 600; }
.vps-font-bold { font-weight: 700; }
.vps-text-center { text-align: center; }

/* Buttons */
.vps-btn-orange {
    background-color: var(--brand-orange);
    color: #ffffff !important;
    padding: 16px 40px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    border: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.2), 0 4px 6px -2px rgba(249, 115, 22, 0.1);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.vps-btn-orange:hover {
    background-color: #ea580c;
    transform: translateY(-2px);
}

.vps-btn-blue {
    background-color: #0260db;
    color: #ffffff !important;
    padding: 16px 40px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    border: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 15px -3px rgba(2, 96, 219, 0.2), 0 4px 6px -2px rgba(2, 96, 219, 0.1);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.vps-btn-blue:hover {
    background-color: #014bb1;
    transform: translateY(-2px);
}

.vps-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: #10b981;
    color: #ffffff !important;
    border: 1px solid #059669;
    padding: 16px 40px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.2);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.vps-btn-whatsapp:hover {
    background-color: #059669;
    transform: translateY(-2px);
}

.vps-btn-whatsapp svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* 1. Hero Section */
.vps-hero {
    position: relative;
    padding: 30px 0;
    background-image: url('../../images/home BG.webp');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    background-color: transparent;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .vps-hero {
        min-height: 400px;
        display: flex;
        align-items: center;
        padding: 40px 0;
    }
}

.vps-hero-right-image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.vps-hero-right-image-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

@media (min-width: 1024px) {
    .vps-hero-right-image-container {
        padding: 0;
        justify-content: flex-end;
    }
}


.vps-hero-left {
    position: relative;
    z-index: 2;
    transition: margin-left 0.3s ease;
}


.vps-badge {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 !important;
    background: transparent !important;
    color: #0260db !important;
    font-weight: 800 !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    margin-bottom: 12px !important;
}

.vps-badge-dot {
    position: relative;
    display: flex;
    height: 8px;
    width: 8px;
}

.vps-badge-dot-ping {
    animation: vps-ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
    position: absolute;
    display: inline-flex;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    background-color: #0260db;
    opacity: 0.75;
}

.vps-badge-dot-inner {
    position: relative;
    display: inline-flex;
    border-radius: 50%;
    height: 8px;
    width: 8px;
    background-color: #0260db;
}

@keyframes vps-ping {
    75%, 100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.vps-hero-title {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
    font-size: 30px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    line-height: 1.2 !important;
    margin-bottom: 20px !important;
    letter-spacing: -0.5px !important;
}

.vps-hero-title span {
    color: #0260db !important;
}

@media (min-width: 1024px) {
    .vps-hero-title {
        font-size: 48px !important;
    }
}

@media (min-width: 1024px) {
    .vps-hero .vps-container {
        padding-left: 24px;
        padding-right: 24px;
        max-width: 1440px;
    }
}

@media (min-width: 1280px) {
    .vps-hero .vps-container {
        padding-left: 32px;
        padding-right: 32px;
        max-width: 1480px;
    }
}


.vps-hero-desc {
    font-family: 'Poppins', sans-serif !important;
    font-size: 15.5px !important;
    color: #475569 !important;
    line-height: 1.75 !important;
    margin-bottom: 30px !important;
    max-width: 576px;
}

.vps-hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 640px) {
    .vps-hero-buttons {
        flex-direction: row;
    }
}

/* Provisioning Engine Mockup */
.vps-code-wrapper {
    position: relative;
    display: none;
}

@media (min-width: 1024px) {
    .vps-code-wrapper {
        display: block;
    }
}

.vps-code-glow {
    position: absolute;
    top: -40px;
    right: -40px;
    bottom: -40px;
    left: -40px;
    background-color: rgba(57, 184, 253, 0.05);
    border-radius: 9999px;
    filter: blur(64px);
}

.vps-code-box {
    position: relative;
    background-color: #1e293b;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(71, 85, 105, 0.5);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.vps-hero-img {
    position: relative;
    z-index: 10;
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 1px solid rgba(71, 85, 105, 0.3);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
    display: block;
}

.vps-code-header {
    background-color: rgba(30, 41, 59, 0.5);
    padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(71, 85, 105, 0.5);
}

.vps-code-dots {
    display: flex;
    gap: 8px;
}

.vps-code-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.vps-code-dot.red { background-color: rgba(244, 63, 94, 0.5); }
.vps-code-dot.yellow { background-color: rgba(245, 158, 11, 0.5); }
.vps-code-dot.green { background-color: rgba(16, 185, 129, 0.5); }

.vps-code-title {
    color: #94a3b8;
    font-family: monospace;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
}

.vps-code-body {
    padding: 32px;
    font-family: monospace;
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.7;
}

.vps-code-line {
    display: flex;
    margin-bottom: 8px;
}

.vps-code-line:last-child {
    margin-bottom: 0;
}

.vps-code-prompt {
    color: #34d399;
    margin-right: 12px;
    user-select: none;
}

.vps-code-comment {
    color: #64748b;
    font-style: italic;
}

.vps-code-status-ok {
    color: #38bdf8;
    margin-right: 12px;
    font-weight: 700;
}

.vps-code-status-live {
    color: #34d399;
    margin-right: 12px;
    font-weight: 700;
}

/* 2. Choose Your VPS Plan Trigger Section */
html {
    scroll-behavior: smooth;
}

.vps-plans-trigger-section {
    position: relative;
    background-color: var(--surface);
    padding: 8px 0;
    margin-top: 6px;
    margin-bottom: 6px;
    border-top: 1px solid rgba(226, 232, 240, 0.8);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.vps-plans-trigger-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    gap: 6px;
    cursor: pointer;
    width: 100%;
}

.vps-plans-trigger-title {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 22px !important;
    font-weight: 800 !important;
    color: #0260db !important;
    margin: 0 !important;
    letter-spacing: -0.5px !important;
    transition: color 0.3s ease, transform 0.3s ease;
    text-align: center;
}

.vps-plans-trigger-arrows {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0260db;
    transition: transform 0.3s ease;
}

.vps-down-double-arrow {
    stroke: #0260db;
    stroke-width: 2.5px;
    animation: vps-arrow-bounce 1.8s infinite ease-in-out;
}

@keyframes vps-arrow-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Hover & Interactive States */
.vps-plans-trigger-section:hover {
    background-color: rgba(2, 96, 219, 0.02);
    border-color: rgba(2, 96, 219, 0.15);
}

.vps-plans-trigger-link:hover .vps-plans-trigger-title {
    color: #014bb1 !important;
    transform: scale(1.02);
}

.vps-plans-trigger-link:hover .vps-plans-trigger-arrows {
    transform: translateY(-2px);
}

.vps-plans-trigger-link:hover .vps-down-double-arrow {
    stroke: #014bb1;
    animation-duration: 1.2s; /* Speed up bounce on hover */
}

/* 4. SEO & Industry Insight */
.vps-insight-section {
    max-width: 896px;
    margin-left: auto;
    margin-right: auto;
    padding: 48px 24px;
}

.vps-ai-answer {
    padding: 32px;
    background-color: var(--surface);
    border-left: 4px solid var(--primary);
    border-radius: 0 16px 16px 0;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.02);
    border-top: 1px solid var(--outline-variant);
    border-right: 1px solid var(--outline-variant);
    border-bottom: 1px solid var(--outline-variant);
}

.vps-ai-label {
    font-size: 12px;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.vps-ai-desc {
    color: var(--on-surface-variant);
    font-size: 16px;
    line-height: 1.625;
}

.vps-ai-desc span {
    font-weight: 600;
    color: var(--primary);
}

/* 5. Use Cases Section */
.vps-use-cases {
    padding-top: 28px;
    padding-bottom: 28px;
    background-color: #f8fafc;
}

.vps-section-header {
    text-align: center;
    margin-bottom: 20px;
}

.vps-section-title {
    font-size: 30px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

@media (min-width: 1024px) {
    .vps-section-title {
        font-size: 40px;
    }
}

.vps-section-desc {
    color: var(--on-surface-variant);
    max-width: 672px;
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
}

.vps-use-cases-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 640px) {
    .vps-use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .vps-use-cases-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.vps-premium-card {
    background-color: var(--surface);
    border: 1px solid var(--outline-variant);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 220px;
}

.vps-premium-card:hover {
    border-color: var(--secondary);
    box-shadow: 0 20px 40px -15px rgba(20, 56, 114, 0.08);
    transform: translateY(-2px);
}

.vps-premium-card.active-card {
    border-color: rgba(20, 56, 114, 0.2);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
}

.vps-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.vps-card-desc {
    font-size: 14px;
    color: var(--on-surface-variant);
    line-height: 1.625;
}

.vps-badge-pill {
    display: inline-flex;
    margin-top: 32px;
    padding: 4px 8px;
    font-size: 10px;
    font-weight: 700;
    border-radius: 4px;
    width: fit-content;
}

.vps-badge-pill.green { background-color: #ecfdf5; color: #047857; }
.vps-badge-pill.blue { background-color: #eff6ff; color: #1d4ed8; }
.vps-badge-pill.slate { background-color: #f1f5f9; color: #475569; }
.vps-badge-pill.primary { background-color: var(--primary); color: #ffffff; }
.vps-badge-pill.orange { background-color: #fffbeb; color: #b45309; }

/* 6. Strategic Benefits & Technology Tiers */
.vps-benefits-section {
    padding-top: 28px;
    padding-bottom: 28px;
    background-color: var(--surface);
}

.vps-benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
}

@media (min-width: 1024px) {
    .vps-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 80px;
    }
}

.vps-benefits-title {
    font-size: 30px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.vps-benefits-table {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vps-table-header {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 20px;
    background-color: #f8fafc;
    border-radius: 12px;
    font-weight: 800;
    color: var(--primary);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.vps-table-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 20px;
    border-bottom: 1px solid var(--outline-variant);
    align-items: center;
}

.vps-table-row:last-child {
    border-bottom: none;
}

.vps-row-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--on-surface-variant);
}

.vps-row-val {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

/* Tech Tiers Card */
.vps-tech-card {
    background-color: var(--primary);
    color: #ffffff;
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(20, 56, 114, 0.15);
    position: relative;
    overflow: hidden;
}

@media (min-width: 640px) {
    .vps-tech-card {
        padding: 48px;
    }
}

.vps-tech-glow {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    background-color: rgba(57, 184, 253, 0.15);
    border-radius: 50%;
    filter: blur(40px);
}

.vps-tech-title {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 24px;
}

.vps-tech-item {
    position: relative;
    padding-left: 32px;
    margin-bottom: 28px;
}

.vps-tech-item:last-child {
    margin-bottom: 0;
}

.vps-tech-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 4px;
    height: calc(100% - 8px);
    border-radius: 9999px;
}

.vps-tech-item.vps::before { background-color: var(--secondary); }
.vps-tech-item.vds::before { background-color: #34d399; }

.vps-tech-sub {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.vps-tech-sub.vps { color: var(--secondary); }
.vps-tech-sub.vds { color: #34d399; }

.vps-tech-desc {
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.625;
}

/* 7. Standardized Plan Comparison Table */
.vps-plans-section {
    padding-top: 48px;
    padding-bottom: 48px;
    background-color: var(--surface);
}

.vps-table-wrapper {
    margin-top: 48px;
}

.vps-table-responsive {
    overflow-x: auto;
    border: 1px solid var(--outline-variant);
    border-radius: 16px;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.02);
}

/* Scrollbar styling */
.vps-table-responsive::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.vps-table-responsive::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.vps-spec-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 1000px;
    background-color: var(--surface);
}

.vps-spec-table th {
    background-color: #f8fafc;
    padding: 24px;
    font-size: 10px;
    font-weight: 800;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 1px solid var(--outline-variant);
}

.vps-spec-table td {
    padding: 24px;
    font-size: 14px;
    color: var(--on-surface-variant);
    border-bottom: 1px solid #f1f5f9;
    background-color: inherit;
    transition: background-color 0.2s ease;
}

.vps-spec-table tr:last-child td {
    border-bottom: none;
}

.vps-spec-table tr:hover td {
    background-color: #f8fafc;
}

.vps-spec-table tr.vps-popular-row td {
    background-color: rgba(57, 184, 253, 0.03);
}

.vps-spec-table tr.vps-popular-row:hover td {
    background-color: rgba(57, 184, 253, 0.06);
}

.vps-spec-table th.vps-sticky-col,
.vps-spec-table td.vps-sticky-col {
    position: sticky;
    left: 0;
    z-index: 10;
    background-color: inherit;
    font-weight: 700;
    color: var(--primary);
    box-shadow: 2px 0 5px -2px rgba(0,0,0,0.05);
}

.vps-plan-name-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.vps-pop-badge {
    background-color: var(--secondary);
    color: #ffffff;
    font-size: 9px;
    padding: 2px 8px;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.vps-plan-price-val {
    font-weight: 800;
    color: var(--primary);
    font-size: 16px;
}

.vps-btn-buy-sm {
    background-color: var(--primary);
    color: #ffffff !important;
    padding: 8px 24px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 12px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: background-color 0.2s;
}

.vps-btn-buy-sm:hover {
    background-color: #0c234a;
}

/* Discount callout under table */
.vps-table-callout {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.vps-discount-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #059669;
    background-color: #ecfdf5;
    padding: 8px 24px;
    border-radius: 9999px;
    border: 1px solid #d1fae5;
}

.vps-discount-badge .material-symbols-outlined {
    font-size: 16px;
}

/* 8. Secondary Expert CTA Banner */
.vps-timing-cta {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 24px 28px 24px;
}

@media (min-width: 768px) {
    .vps-timing-cta {
        padding: 0 64px 28px 64px;
    }
}

.vps-banner-box {
    background-color: #ecfdf5;
    border: 1px solid #d1fae5;
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

@media (min-width: 768px) {
    .vps-banner-box {
        flex-direction: row;
    }
}

.vps-banner-text {
    max-width: 576px;
    text-align: center;
}

@media (min-width: 768px) {
    .vps-banner-text {
        text-align: left;
    }
}

.vps-banner-text-h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.vps-banner-text-p {
    color: var(--on-surface-variant);
    font-size: 16px;
}

.vps-banner-btn {
    white-space: nowrap;
    background-color: #10b981;
    color: #ffffff !important;
    padding: 20px 48px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.2);
    transition: all 0.2s ease;
}

.vps-banner-btn:hover {
    background-color: #059669;
    transform: translateY(-2px);
}

/* 9. Reliability Features */
.vps-reliability-section {
    padding-top: 28px;
    padding-bottom: 28px;
    background-color: #f8fafc;
}

.vps-reliability-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 640px) {
    .vps-reliability-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .vps-reliability-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.vps-reliability-card {
    background-color: var(--surface);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--outline-variant);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.01);
}

.vps-reliability-card .material-symbols-outlined {
    font-size: 32px;
    color: var(--secondary);
    margin-bottom: 24px;
    display: block;
}

.vps-reliability-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.vps-reliability-desc {
    font-size: 14px;
    color: var(--on-surface-variant);
    line-height: 1.625;
}

/* 10. FAQs Section */
.vps-faq-section {
    padding-top: 28px;
    padding-bottom: 28px;
    background-color: #fff7ed;
}

.vps-faq-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: left;
}

@media (min-width: 992px) {
    .vps-faq-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

.vps-faq-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vps-faq-item {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
    overflow: hidden;
    transition: all 0.3s ease;
}

.vps-faq-header {
    width: 100%;
    padding: 22px 25px;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--on-surface);
    cursor: pointer;
    transition: color 0.2s ease;
    font-family: inherit;
}

.vps-faq-header:hover {
    color: #0260db;
}

.vps-faq-question {
    padding-right: 15px;
    line-height: 1.4;
}

.vps-faq-toggle-icon {
    font-size: 14px;
    color: var(--on-surface-variant);
    transition: transform 0.3s ease;
}

.vps-faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.vps-faq-content {
    padding: 0 25px 22px 25px;
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--on-surface-variant);
}

/* Active FAQ Styling */
.vps-faq-item.active {
    border-color: rgba(2, 96, 219, 0.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
}

.vps-faq-item.active .vps-faq-header {
    color: #0260db;
}

.vps-faq-item.active .vps-faq-toggle-icon {
    transform: rotate(185deg);
    color: #0260db;
}

/* 11. Final CTA Area */
.vps-final-cta {
    padding-top: 28px;
    padding-bottom: 28px;
    background-color: var(--surface);
}

.vps-cta-consult {
    background-color: rgba(20, 56, 114, 0.03);
    border: 1px solid rgba(20, 56, 114, 0.08);
    border-radius: 40px;
    padding: 32px;
    text-align: center;
    margin-bottom: 24px;
}

@media (min-width: 1024px) {
    .vps-cta-consult {
        padding: 48px;
        border-radius: 48px;
    }
}

.vps-consult-avatars {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.vps-consult-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 4px solid var(--surface);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    margin-left: -12px;
}

.vps-consult-avatar:first-child {
    margin-left: 0;
}

.vps-consult-h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.vps-consult-p {
    color: var(--on-surface-variant);
    max-width: 576px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 32px;
}

/* Big Deploy CTA Card */
.vps-cta-deploy {
    background-color: var(--primary);
    border-radius: 32px;
    padding: 40px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(20, 56, 114, 0.2);
}

@media (min-width: 1024px) {
    .vps-cta-deploy {
        padding: 96px;
        border-radius: 48px;
    }
}

.vps-cta-deploy-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(57, 184, 253, 0.15) 0%, transparent 70%);
}

.vps-deploy-h2 {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 32px;
    position: relative;
    z-index: 10;
    letter-spacing: -0.02em;
}

@media (min-width: 1024px) {
    .vps-deploy-h2 {
        font-size: 56px;
    }
}

.vps-deploy-h2 span {
    color: var(--secondary);
}

.vps-deploy-p {
    color: #cbd5e1;
    font-size: 18px;
    max-width: 672px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 48px;
    position: relative;
    z-index: 10;
}

.vps-deploy-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    position: relative;
    z-index: 10;
}

@media (min-width: 640px) {
    .vps-deploy-buttons {
        flex-direction: row;
    }
}

.vps-btn-white-glass {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    padding: 20px 48px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 20px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
}

.vps-btn-white-glass:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.vps-deploy-badges {
    margin-top: 48px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    color: #94a3b8;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 10px;
    position: relative;
    z-index: 10;
}

.vps-deploy-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.vps-deploy-badge-item .material-symbols-outlined {
    color: var(--secondary);
    font-size: 14px;
}

/* 12. Interactive Plans Widget Styles */
.vps-plans-widget-wrapper {
    padding: 28px 0;
    background: radial-gradient(circle at top, rgba(57, 184, 253, 0.12) 0%, transparent 80%), var(--primary);
}

/* Dark theme overrides for plans section components */
.vps-plans-widget-wrapper .vps-section-title {
    color: #ffffff !important;
}
.vps-plans-widget-wrapper .vps-section-desc {
    color: rgba(255, 255, 255, 0.7) !important;
}

.vps-plans-widget-wrapper .vps-category-tabs-container {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: none !important;
}
.vps-plans-widget-wrapper .vps-category-tab {
    color: rgba(255, 255, 255, 0.8) !important;
}
.vps-plans-widget-wrapper .vps-category-tab:hover {
    color: #ffffff !important;
    background-color: rgba(255, 255, 255, 0.05) !important;
}
.vps-plans-widget-wrapper .vps-category-tab.active {
    background: #ffffff !important;
    color: var(--primary) !important;
}
.vps-plans-widget-wrapper .vps-category-tab.active * {
    color: var(--primary) !important;
}

.vps-plans-widget-wrapper .vps-subcategory-tab {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: rgba(255, 255, 255, 0.8) !important;
}
.vps-plans-widget-wrapper .vps-subcategory-tab:hover {
    background-color: rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
}
.vps-plans-widget-wrapper .vps-subcategory-tab.active {
    background: #ffffff !important;
    color: var(--primary) !important;
    border-color: #ffffff !important;
}

.vps-plans-widget-wrapper .vps-cycle-selector {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
}
.vps-plans-widget-wrapper .vps-cycle-btn {
    color: rgba(255, 255, 255, 0.9) !important;
}
.vps-plans-widget-wrapper .vps-cycle-btn:hover {
    color: #ffffff !important;
    background-color: rgba(255, 255, 255, 0.12) !important;
}
.vps-plans-widget-wrapper .vps-cycle-btn.active,
.vps-plans-widget-wrapper .vps-cycle-btn[data-cycle="yearly"].active {
    background: #ffffff !important;
    color: #1657ff !important;
    border: 2px solid #1657ff !important;
    box-shadow: 0 0 14px rgba(22, 87, 255, 0.35) !important;
    font-weight: 800 !important;
}
.vps-plans-widget-wrapper .vps-cycle-btn.active * {
    color: #1657ff !important;
    font-weight: 800 !important;
}
.vps-plans-widget-wrapper .vps-cycle-btn.active .vps-discount-badge-small {
    background-color: #1657ff !important;
    color: #ffffff !important;
    border: none !important;
}

.vps-plans-widget-wrapper .vps-pricing-note {
    color: rgba(255, 255, 255, 0.7) !important;
}
.vps-plans-widget-wrapper .vps-slider-progress-container {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.vps-plans-widget-wrapper .vps-price-card.popular {
    border: 2px solid var(--secondary) !important;
}
.vps-plans-widget-wrapper .vps-price-card.popular:hover {
    border-color: var(--secondary) !important;
}
.vps-plans-widget-wrapper .vps-popular-banner {
    background: var(--secondary) !important;
    color: var(--primary) !important;
}
.vps-plans-widget-wrapper .vps-pricing-grid:has(.vps-price-card:hover) .vps-price-card.popular:not(:hover) {
    border-color: var(--outline-variant) !important;
}

.vps-plans-widget-wrapper .vps-section-header {
    margin-bottom: 24px;
}

.vps-category-tabs-container {
    max-width: 750px;
    margin: 0 auto 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(1px, 1fr));
    background: var(--surface);
    border-radius: 16px;
    border: 1px solid var(--outline-variant);
    padding: 6px;
    box-shadow: 0 10px 25px -5px rgba(20, 56, 114, 0.05);
}

@media (max-width: 767px) {
    .vps-category-tabs-container {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)) !important;
        overflow-x: auto !important;
        max-width: 100% !important;
        scrollbar-width: none !important;
    }
    .vps-category-tabs-container::-webkit-scrollbar {
        display: none !important;
    }
    .vps-category-tab {
        padding: 12px 14px !important;
        font-size: 14px !important;
        white-space: nowrap !important;
    }
    .vps-category-tab h3 {
        font-size: 14px !important;
    }
}

.vps-category-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    border-radius: 12px;
    border: none;
    background: transparent !important;
    color: var(--on-surface-variant) !important;
    font-family: inherit;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.vps-category-tab:hover {
    color: var(--primary) !important;
    background-color: rgba(20, 56, 114, 0.04) !important;
}

.vps-category-tab.active {
    background: var(--primary) !important;
    color: #ffffff !important;
    box-shadow: 0 8px 16px -4px rgba(20, 56, 114, 0.2) !important;
}

.vps-category-tab.active * {
    color: #ffffff !important;
}

.vps-category-tab .material-symbols-outlined {
    font-size: 22px;
    color: inherit !important;
}

.vps-category-tab h3 {
    color: inherit !important;
}

.vps-subcategory-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    border-bottom: none !important;
    padding-bottom: 0 !important;
    flex-wrap: wrap;
}

.vps-subcategory-tab {
    background: #ffffff;
    border: 1px solid var(--outline-variant);
    border-radius: 9999px !important;
    padding: 10px 24px !important;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: var(--on-surface-variant);
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 4px rgba(20, 56, 114, 0.02);
}

.vps-subcategory-tab:hover {
    color: var(--primary);
    background-color: #f8fafc;
    border-color: var(--outline-variant);
}

.vps-subcategory-tab.active {
    background: var(--primary) !important;
    color: #ffffff !important;
    border-color: var(--primary) !important;
    font-weight: 700;
    box-shadow: 0 6px 12px -3px rgba(20, 56, 114, 0.25) !important;
}

.vps-subcategory-tab::after {
    display: none !important;
}

.vps-cycle-selector-container {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}

.vps-cycle-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    background: var(--surface);
    padding: 6px;
    border-radius: 14px;
    border: 1px solid var(--outline-variant);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.vps-cycle-btn {
    background: transparent;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--on-surface-variant);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 100px;
}

.vps-cycle-btn:hover {
    background-color: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.vps-cycle-btn.active,
.vps-cycle-btn[data-cycle="yearly"].active {
    background: #ffffff !important;
    color: #1657ff !important;
    border: 2px solid #1657ff !important;
    box-shadow: 0 0 14px rgba(22, 87, 255, 0.35) !important;
    font-weight: 800 !important;
}

.vps-cycle-btn.active * {
    color: #1657ff !important;
    font-weight: 800 !important;
}

.vps-cycle-btn.active .vps-discount-badge-small {
    background-color: #1657ff !important;
    color: #ffffff !important;
    border: none !important;
}

.vps-discount-badge-small {
    font-size: 11px;
    font-weight: 800;
    color: #ffffff !important;
    background-color: #10b981;
    padding: 2px 4px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    border: none;
}

.vps-cycle-btn[data-cycle="yearly"] .vps-discount-badge-small {
    background-color: #ea580c;
    color: #ffffff !important;
    border: none;
}

.vps-pricing-note {
    text-align: center;
    font-size: 13px;
    color: var(--on-surface-variant);
    margin-bottom: 24px;
    margin-top: 8px;
    font-weight: 500;
}

.vps-plan-cards-container {
    display: none;
    animation: vps-fade-in 0.4s ease-out;
}

.vps-plan-cards-container.active {
    display: block;
}

.vps-pricing-slider-wrapper {
    position: relative;
    width: 100%;
}

.vps-pricing-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 24px 20px;
    scroll-padding: 0 20px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.vps-pricing-grid::-webkit-scrollbar {
    display: none;
}

.vps-pricing-grid.dragging {
    scroll-snap-type: none;
    scroll-behavior: auto;
    cursor: grab;
}

.vps-pricing-grid.dragging * {
    user-select: none;
    cursor: grabbing;
}

.vps-price-card {
    background: var(--surface);
    border: 2px solid var(--outline-variant);
    border-radius: 20px;
    padding: 24px;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    scroll-snap-align: start;
    flex: 0 0 calc(100% - 60px);
    overflow: hidden;
}

@media (min-width: 640px) {
    .vps-price-card {
        flex: 0 0 calc((100% - 60px) / 2);
    }
}

@media (min-width: 1024px) {
    .vps-pricing-slider-wrapper {
        padding: 0 90px;
        position: relative;
    }
    .vps-pricing-slider-wrapper::before {
        content: '' !important;
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        height: 65% !important;
        left: -100vw !important;
        width: calc(100vw + 90px) !important;
        cursor: pointer !important;
        background: transparent !important;
        z-index: 15 !important;
        pointer-events: auto !important;
    }
    .vps-pricing-slider-wrapper::after {
        content: '' !important;
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        height: 65% !important;
        right: -100vw !important;
        width: calc(100vw + 90px) !important;
        cursor: pointer !important;
        background: transparent !important;
        z-index: 15 !important;
        pointer-events: auto !important;
    }
    .vps-pricing-slider-wrapper:has(.vps-slider-arrow.prev.disabled)::before,
    .vps-pricing-slider-wrapper:has(.vps-slider-arrow.prev[style*="display: none"])::before,
    .vps-pricing-slider-wrapper:has(.vps-slider-arrow.prev[style*="display:none"])::before {
        cursor: default !important;
        pointer-events: none !important;
    }
    .vps-pricing-slider-wrapper:has(.vps-slider-arrow.next.disabled)::after,
    .vps-pricing-slider-wrapper:has(.vps-slider-arrow.next[style*="display: none"])::after,
    .vps-pricing-slider-wrapper:has(.vps-slider-arrow.next[style*="display:none"])::after {
        cursor: default !important;
        pointer-events: none !important;
    }
    .vps-pricing-grid {
        padding: 24px 0 !important;
        scroll-padding: 0 !important;
        overflow-x: hidden !important;
        scroll-snap-type: none !important;
        justify-content: center;
    }
    .vps-pricing-grid:has(> .vps-price-card:nth-child(4)) {
        justify-content: flex-start !important;
    }
    .vps-price-card {
        flex: 0 0 calc((100% - 40px) / 3) !important;
    }
}

.vps-price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(20, 56, 114, 0.08);
    border: 3px solid var(--secondary);
    padding: 23px;
}

.vps-price-card.popular {
    border: 2px solid var(--primary);
    padding-top: 40px;
    box-shadow: 0 15px 30px -10px rgba(20, 56, 114, 0.15);
}

.vps-price-card.popular:hover {
    border-color: var(--secondary);
    padding-top: 39px;
    padding-left: 23px;
    padding-right: 23px;
    padding-bottom: 23px;
}

.vps-price-card:hover .vps-card-header {
    margin: -23px -23px 8px -23px;
}

.vps-price-card.popular:hover .vps-card-header {
    margin: -39px -23px 8px -23px;
}

.vps-pricing-grid:has(.vps-price-card:hover) .vps-price-card.popular:not(:hover) {
    border-color: var(--outline-variant);
    box-shadow: 0 10px 25px -5px rgba(20, 56, 114, 0.05), 0 4px 10px -2px rgba(20, 56, 114, 0.03);
}

.vps-popular-banner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: #ffffff;
    text-align: center;
    padding: 8px 0;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 18px 18px 0 0;
}

.vps-card-header {
    margin: -24px -24px 8px -24px;
    padding: 20px 24px 6px 24px;
    background-color: #D4EEF7;
    border-bottom: 1px solid var(--outline-variant);
    border-radius: 18px 18px 0 0;
}

.vps-price-card.popular .vps-card-header {
    margin: -40px -24px 8px -24px;
    padding: 36px 24px 6px 24px;
    background-color: #D4EEF7;
    border-bottom: 1px solid rgba(20, 56, 114, 0.1);
}

.vps-card-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 2px;
    line-height: 1.2;
}

.vps-card-sku {
    font-size: 13px;
    font-weight: 700;
    color: #0260db; /* Highly visible primary blue */
    margin-bottom: 2px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

.vps-card-cpu {
    font-size: 13px;
    color: var(--on-surface-variant);
    margin-bottom: 0;
    font-weight: 500;
    line-height: 1.2;
}

.vps-card-price-container {
    margin-bottom: 12px;
}

.vps-card-price {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: baseline;
    gap: 2px;
    line-height: 1;
}

.vps-card-price .period {
    font-size: 16px;
    font-weight: 600;
    color: var(--on-surface-variant);
}

.vps-card-subprice {
    font-size: 13px;
    color: var(--on-surface-variant);
    font-weight: 500;
    height: 18px;
    margin-top: 3px;
}

.vps-spec-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
    border-top: 1px solid #cbd5e1;
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vps-spec-item {
    position: relative;
    padding-left: 28px;
    font-size: 13.5px;
    color: var(--on-surface-variant);
    font-weight: 500;
    line-height: 1.4;
    white-space: nowrap;
}

.vps-spec-item .material-symbols-outlined {
    position: absolute;
    left: 0;
    top: 1px;
    font-size: 18px;
    color: var(--primary);
}

.vps-btn-deploy {
    width: 100%;
    background: var(--primary);
    color: #ffffff !important;
    text-align: center;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 0;
    box-shadow: 0 4px 6px -1px rgba(20, 56, 114, 0.1);
    display: inline-block;
}

.vps-btn-deploy:hover {
    background: #0c234a;
    transform: translateY(-1px);
    box-shadow: 0 8px 12px -1px rgba(20, 56, 114, 0.2);
}

.vps-spec-accordion-trigger {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    user-select: none;
    transition: color 0.2s;
}

.vps-spec-accordion-trigger:hover {
    color: var(--secondary);
}

.vps-spec-accordion-trigger .material-symbols-outlined {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.vps-spec-accordion-trigger.active .material-symbols-outlined {
    transform: rotate(180deg);
}

.vps-spec-accordion-content {
    display: none;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed var(--outline-variant);
}

.vps-spec-accordion-content.open {
    display: block;
    animation: vps-slide-down 0.3s ease-out;
}

.vps-spec-details-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vps-spec-details-item {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--on-surface-variant);
    font-weight: 500;
}

.vps-spec-details-label {
    color: #94a3b8;
}

.vps-spec-details-val {
    font-weight: 600;
    color: var(--primary);
}

@keyframes vps-fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes vps-slide-down {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Premium Navigation Arrows (Enhanced Discoverability) */
.vps-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid var(--secondary);
    box-shadow: 0 10px 25px -5px rgba(20, 56, 114, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 25;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--primary);
}

.vps-slider-arrow .material-symbols-outlined {
    font-size: 28px !important;
    font-weight: 700 !important;
}

.vps-slider-arrow:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 15px 30px -5px rgba(20, 56, 114, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.vps-slider-arrow.prev {
    left: -27px;
}

.vps-slider-arrow.next {
    right: -27px;
}

@media (min-width: 1024px) {
    .vps-slider-arrow {
        top: 50% !important;
        transform: translateY(-50%) !important;
        height: 65% !important;
        width: 64px !important;
        border-radius: 32px !important;
        background: rgba(212, 238, 247, 0.2) !important;
        border: 3.5px solid rgba(57, 184, 253, 0.35) !important;
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
        box-shadow: none !important;
        z-index: 25 !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        overflow: hidden !important;
    }


    .vps-slider-arrow.prev {
        left: 12px !important;
    }

    .vps-slider-arrow.next {
        right: 12px !important;
    }

    .vps-slider-arrow:hover {
        background: rgba(212, 238, 247, 0.35) !important;
        border-color: rgba(57, 184, 253, 0.85) !important;
        box-shadow: 0 0 35px rgba(57, 184, 253, 0.75) !important;
        color: #ffffff !important;
        transform: translateY(-50%) !important;
    }

    .vps-slider-arrow.disabled {
        opacity: 0 !important;
        pointer-events: none !important;
    }

    .vps-slider-arrow .material-symbols-outlined {
        font-size: 36px !important;
        font-weight: 200 !important;
        font-variation-settings: 'FILL' 0, 'wght' 200, 'GRAD' 0, 'opsz' 40 !important;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        overflow: hidden !important;
        border-radius: inherit !important;
        z-index: 2 !important;
        color: #39b8fd !important;
        text-shadow: none !important;
    }

    .vps-slider-arrow.next .material-symbols-outlined {
        transform: scale(2.4, 6);
        text-shadow: none !important;
    }

    .vps-slider-arrow.prev .material-symbols-outlined {
        transform: scale(2.4, 6);
        text-shadow: none !important;
    }


    .vps-slider-arrow.next:not(:hover) .material-symbols-outlined {
        animation: vps-chevron-bounce-right 1.6s infinite ease-in-out !important;
    }

    .vps-slider-arrow.prev:not(:hover) .material-symbols-outlined {
        animation: vps-chevron-bounce-left 1.6s infinite ease-in-out !important;
    }

    .vps-slider-arrow.prev:hover .material-symbols-outlined {
        transform: translateX(-3px) scale(2.4, 6) !important;
        text-shadow: none !important;
        animation: none !important;
    }

    .vps-slider-arrow.next:hover .material-symbols-outlined {
        transform: translateX(3px) scale(2.4, 6) !important;
        text-shadow: none !important;
        animation: none !important;
    }
}

@keyframes vps-chevron-bounce-right {
    0%, 100% {
        transform: scale(2.4, 6);
        text-shadow: none !important;
    }
    50% {
        transform: translateX(4px) scale(2.4, 6);
        text-shadow: none !important;
    }
}

@keyframes vps-chevron-bounce-left {
    0%, 100% {
        transform: scale(2.4, 6);
        text-shadow: none !important;
    }
    50% {
        transform: translateX(-4px) scale(2.4, 6);
        text-shadow: none !important;
    }
}



.vps-slider-arrow.disabled {
    opacity: 0;
    pointer-events: none;
}

/* Hide navigation arrows on touch/mobile screens */
@media (max-width: 1023px) {
    .vps-slider-arrow {
        display: none;
    }
}

/* Premium Horizontal Progress Bar */
.vps-slider-progress-container {
    width: 200px;
    height: 8px;
    background: #cbd5e1;
    border-radius: 999px;
    margin: 20px auto 0;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(226, 232, 240, 0.8);
    cursor: pointer;
    user-select: none;
    display: none; /* Shown dynamically in JS if layout overflows */
}

.vps-slider-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 999px;
    transition: width 0.15s cubic-bezier(0.1, 0.8, 0.2, 1);
}



/* Compact spacing overrides for larger viewports to keep design balanced */
@media (min-width: 1024px) {
    .vps-trust-bar {
        padding-top: 28px !important;
        padding-bottom: 28px !important;
    }
    .vps-use-cases {
        padding-top: 36px !important;
        padding-bottom: 36px !important;
    }
    .vps-section-header {
        margin-bottom: 24px !important;
    }
    .vps-benefits-section {
        padding-top: 36px !important;
        padding-bottom: 36px !important;
    }
    .vps-plans-section {
        padding-top: 36px !important;
        padding-bottom: 36px !important;
    }
    .vps-reliability-section {
        padding-top: 36px !important;
        padding-bottom: 36px !important;
    }
    .vps-faq-section {
        padding-top: 36px !important;
        padding-bottom: 36px !important;
    }
    .vps-final-cta {
        padding-top: 36px !important;
        padding-bottom: 36px !important;
    }
    .vps-plans-widget-wrapper {
        padding: 40px 0 !important;
    }
    .vps-cta-consult {
        margin-bottom: 28px !important;
    }
}

/* ==========================================================================
   Javascript Interactive Pricing Widget Styles
   ========================================================================== */

/* 1. Pricing Cycle Blocks Toggling via Parent Class */
.vps-price-monthly-block,
.vps-price-3month-block,
.vps-price-6month-block,
.vps-price-yearly-block,
.vps-price-2year-block,
.vps-price-3year-block {
    display: none !important;
}

.vps-cycle-monthly .vps-price-monthly-block { display: block !important; }
.vps-cycle-3month .vps-price-3month-block { display: block !important; }
.vps-cycle-6month .vps-price-6month-block { display: block !important; }
.vps-cycle-yearly .vps-price-yearly-block { display: block !important; }
.vps-cycle-2year .vps-price-2year-block { display: block !important; }
.vps-cycle-3year .vps-price-3year-block { display: block !important; }

/* ==========================================================================
   VPS vs VDS Comparison Section Styles
   ========================================================================== */

.vps-vs-vds-section {
    padding-top: 60px;
    padding-bottom: 0px;
    background-color: var(--background);
}

/* Comparison Table */
.vps-compare-table-wrapper {
    overflow-x: auto;
    margin-bottom: 40px;
    background: #ffffff;
    border-radius: 20px;
    border: 2px solid #D4EEF7;
    box-shadow: 0 10px 25px -5px rgba(20, 56, 114, 0.04);
}

.vps-compare-table-wrapper::-webkit-scrollbar {
    height: 6px;
}

.vps-compare-table-wrapper::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.vps-compare-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 900px;
    background-color: #ffffff;
}

.vps-compare-table th {
    padding: 16px 24px;
    font-size: 17px;
    font-weight: 700;
    color: var(--primary);
    border-bottom: 1px solid var(--outline-variant);
    background-color: #f8fafc;
    text-align: center;
}

.vps-compare-table th:first-child {
    width: 25%;
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
}

.vps-compare-table th:nth-child(2),
.vps-compare-table th:nth-child(3) {
    width: 37.5%;
}

.vps-compare-table td {
    padding: 14px 24px;
    font-size: 16px;
    color: var(--on-surface-variant);
    border-bottom: 1px solid #f1f5f9;
    line-height: 1.5;
}

.vps-compare-table th:not(:last-child),
.vps-compare-table td:not(:last-child) {
    border-right: 1px solid rgba(57, 184, 253, 0.25);
}

.vps-compare-table tr:last-child td {
    border-bottom: none;
}

.vps-compare-table tr:nth-child(even) {
    background-color: #fafbfe;
}

.vps-compare-table tr:hover td {
    background-color: #f1f5f9;
}

.vps-compare-table .feature-name {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: var(--primary);
    border-bottom: none; /* inside flex container cell */
}


.vps-compare-table .feature-name .material-symbols-outlined {
    font-size: 20px;
    color: var(--secondary);
}

.vps-compare-table .th-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 17px;
    width: fit-content;
    margin: 0 auto;
}

.vps-compare-table .th-content.blue {
    background-color: #0260db;
    color: #ffffff;
}

.vps-compare-table .th-content.green {
    background-color: #10b981;
    color: #ffffff;
}

.vps-compare-table .th-content .material-symbols-outlined {
    font-size: 20px;
}

/* Descriptive Columns */
.vps-features-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

@media (min-width: 992px) {
    .vps-features-columns {
        grid-template-columns: 1fr 1fr;
    }
}

.vps-feature-col-card {
    background-color: var(--primary);
    background-repeat: no-repeat;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vps-feature-col-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 35px -5px rgba(0, 0, 0, 0.4), 0 0 15px rgba(57, 184, 253, 0.15);
}

.vps-feature-col-card.blue-theme {
    border-top: 5px solid var(--secondary);
    background-image: radial-gradient(circle at center, rgba(57, 184, 253, 0.15) 0%, transparent 70%);
}

.vps-feature-col-card.green-theme {
    border-top: 5px solid #10b981;
    background-image: radial-gradient(circle at center, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
}

.vps-feature-col-card .illustration-wrapper {
    width: 140px;
    height: 140px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vps-feature-col-card .illustration-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.vps-feature-col-card .col-card-body {
    width: 100%;
}

.vps-feature-col-card .vps-col-title {
    font-size: 30px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 12px;
}

.vps-feature-col-card.green-theme .vps-col-title {
    color: #10b981;
}

.vps-feature-col-card .vps-col-desc {
    font-size: 16px;
    color: #cbd5e1;
    line-height: 1.65;
    margin-bottom: 20px;
}

.vps-feature-col-card .vps-col-bold-intro {
    font-size: 16.5px;
    font-weight: 700;
    color: #D4EEF7;
    margin-bottom: 16px;
}

.vps-feature-col-card .vps-col-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vps-feature-col-card .vps-col-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15.5px;
    color: #e2e8f0;
    font-weight: 600;
}

.vps-feature-col-card .vps-col-checklist .check-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.vps-feature-col-card .blue-list .check-icon {
    color: var(--secondary);
}

.vps-feature-col-card .green-list .check-icon {
    color: #34d399;
}

/* Which Should You Choose Banner */
.vps-choice-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    background-color: #fffbeb;
    border: 1px solid #fef3c7;
    border-radius: 24px;
    padding: 32px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .vps-choice-banner {
        flex-direction: row;
        padding: 40px;
    }
}

.vps-choice-banner .vps-choice-scale-img {
    width: 140px;
    height: 140px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vps-choice-banner .vps-choice-scale-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.vps-choice-banner .vps-choice-content {
    flex-grow: 1;
}

.vps-choice-banner .vps-choice-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
}

.vps-choice-banner .vps-choice-para {
    font-size: 14.5px;
    color: var(--on-surface-variant);
    line-height: 1.6;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.vps-choice-banner .vps-choice-para:last-child {
    margin-bottom: 0;
}

@media (min-width: 640px) {
    .vps-choice-banner .vps-choice-para {
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }
}

.vps-choice-banner .choice-badge {
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
    white-space: nowrap;
}

.vps-choice-banner .vps-badge-blue {
    background-color: #eff6ff;
    color: #1e40af;
    border: 1px solid #bfdbfe;
}

.vps-choice-banner .vds-badge-green {
    background-color: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.vps-why-choose-section {
    text-align: center;
    background-color: var(--primary);
    background-image: radial-gradient(circle at center, rgba(57, 184, 253, 0.15) 0%, transparent 70%);
    border: none;
    border-radius: 32px;
    padding: 48px 32px 28px 32px;
    margin-bottom: 0px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(20, 56, 114, 0.2);
}

.vps-why-choose-section .vps-why-title {
    font-size: 34px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .vps-why-choose-section .vps-why-title {
        font-size: 42px;
    }
}

.vps-why-choose-section .vps-why-title span {
    color: var(--secondary);
}

.vps-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .vps-why-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.vps-why-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 12px;
    cursor: pointer;
}

.vps-why-card .icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #D4EEF7;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.vps-why-card .icon-circle .material-symbols-outlined {
    font-size: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.vps-why-card h4 {
    font-size: 13.5px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;
    max-width: 160px;
    transition: color 0.3s ease;
}

.vps-why-desc {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto;
    font-weight: 500;
}

/* Card Hover Interactive States */
.vps-why-card:hover .icon-circle {
    background-color: #ffffff;
    color: var(--primary);
    box-shadow: 0 0 20px rgba(57, 184, 253, 0.4);
    transform: translateY(-4px);
}

.vps-why-card:hover h4 {
    color: #D4EEF7;
}

/* 1. Storage Icon - Disk float/bounce */
.vps-why-card:nth-child(1):hover .material-symbols-outlined {
    animation: vps-why-bounce-y 1.2s ease-in-out infinite;
}

@keyframes vps-why-bounce-y {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

/* 2. Lock Icon - Security shake */
.vps-why-card:nth-child(2):hover .material-symbols-outlined {
    animation: vps-why-shake 0.6s ease-in-out 2;
}

@keyframes vps-why-shake {
    0%, 100% { transform: rotate(0); }
    20%, 60% { transform: rotate(-12deg); }
    40%, 80% { transform: rotate(12deg); }
}

/* 3. Rocket Icon - Launch diagonal slide */
.vps-why-card:nth-child(3):hover .material-symbols-outlined {
    animation: vps-why-rocket-launch 0.8s ease-in-out;
}

@keyframes vps-why-rocket-launch {
    0% { transform: translate(0, 0) scale(1); opacity: 1; }
    40% { transform: translate(10px, -10px) scale(0.8); opacity: 0; }
    41% { transform: translate(-10px, 10px) scale(0.8); opacity: 0; }
    100% { transform: translate(0, 0) scale(1); opacity: 1; }
}

/* 4. Gear Icon - Settings spin */
.vps-why-card:nth-child(4):hover .material-symbols-outlined {
    animation: vps-why-spin 2s linear infinite;
}

@keyframes vps-why-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 5. Scale Icon - Expand / Shrink Pulse */
.vps-why-card:nth-child(5):hover .material-symbols-outlined {
    animation: vps-why-pulse 1s ease-in-out infinite;
}

@keyframes vps-why-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.25); }
}

/* 6. Shield Icon - Security glow pulse */
.vps-why-card:nth-child(6):hover .material-symbols-outlined {
    animation: vps-why-shield-pulse 1.2s ease-in-out infinite;
}

@keyframes vps-why-shield-pulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0px var(--secondary)); }
    50% { transform: scale(1.15); filter: drop-shadow(0 0 4px var(--secondary)); }
}

/* 7. Support Icon - Headset wiggle */
.vps-why-card:nth-child(7):hover .material-symbols-outlined {
    animation: vps-why-wiggle 1s ease-in-out infinite;
}

@keyframes vps-why-wiggle {
    0%, 100% { transform: rotate(0) translateY(0); }
    25% { transform: rotate(-8deg) translateY(-2px); }
    75% { transform: rotate(8deg) translateY(-2px); }
}

/* 8. Network Icon - Ping bounce / scale */
.vps-why-card:nth-child(8):hover .material-symbols-outlined {
    animation: vps-why-ping-bounce 1s ease-in-out infinite;
}

@keyframes vps-why-ping-bounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-3px) scale(1.1); }
}

/* FAQ Compare Section */
.vps-faq-compare-section {
    margin-top: 40px;
}

.vps-faq-compare-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary);
    text-align: center;
    margin-bottom: 32px;
}

.vps-faq-compare-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 992px) {
    .vps-faq-compare-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

.vps-faq-compare-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vps-faq-compare-item {
    background-color: #ffffff;
    border: 1px solid var(--outline-variant);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.01);
}

.vps-faq-compare-item:hover {
    border-color: rgba(2, 96, 219, 0.15);
}

.vps-faq-compare-item.active {
    border-color: #0260db;
    box-shadow: 0 10px 20px -5px rgba(2, 96, 219, 0.08);
}

.vps-faq-compare-header {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
    transition: color 0.2s ease;
    font-family: inherit;
    line-height: 1.4;
}

.vps-faq-compare-header:focus {
    outline: none;
}

.vps-faq-compare-header:hover {
    color: #0260db;
}

.vps-faq-compare-item.active .vps-faq-compare-header {
    color: #0260db;
}

.vps-faq-compare-header .toggle-icon {
    font-size: 20px;
    color: var(--on-surface-variant);
    transition: transform 0.3s ease;
}

.vps-faq-compare-item.active .toggle-icon {
    transform: rotate(180deg);
    color: #0260db;
}

.vps-faq-compare-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.vps-faq-compare-content {
    padding: 0 24px 20px 24px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--on-surface-variant);
}



/* Shared Hosting Page Custom Color Theme (Blue Theme) */
.vps-redesign-container.shared-hosting-page {
    --primary: #143872;
    --secondary: #39b8fd;
}

/* Hosting Plan Section Override */
.shared-hosting-page .vps-plans-widget-wrapper {
    background: radial-gradient(circle at top, rgba(57, 184, 253, 0.12) 0%, transparent 80%), #143872 !important;
}

.shared-hosting-page .vps-plans-widget-wrapper .vps-category-tab.active {
    color: #143872 !important;
}

.shared-hosting-page .vps-plans-widget-wrapper .vps-category-tab.active * {
    color: #143872 !important;
}

.shared-hosting-page .vps-plans-widget-wrapper .vps-cycle-btn.active,
.shared-hosting-page .vps-plans-widget-wrapper .vps-cycle-btn[data-cycle="yearly"].active {
    background: #ffffff !important;
    color: #1657ff !important;
    border: 2px solid #1657ff !important;
    box-shadow: 0 0 14px rgba(22, 87, 255, 0.35) !important;
    font-weight: 800 !important;
}

.shared-hosting-page .vps-plans-widget-wrapper .vps-cycle-btn.active * {
    color: #1657ff !important;
    font-weight: 800 !important;
}

.shared-hosting-page .vps-plans-widget-wrapper .vps-cycle-btn.active .vps-discount-badge-small {
    background-color: #1657ff !important;
    color: #ffffff !important;
    border: none !important;
}

.shared-hosting-page .vps-btn-deploy {
    background: #39b8fd !important;
    color: #ffffff !important;
}

.shared-hosting-page .vps-btn-deploy:hover {
    background: #0260db !important;
    transform: translateY(-1px);
    box-shadow: 0 8px 12px -1px rgba(20, 56, 114, 0.3) !important;
}

.shared-hosting-page .vps-card-sku {
    color: #143872 !important;
}

/* Feature column cards: What is Shared Hosting? & What is VPS Hosting? */
.shared-hosting-page .vps-feature-col-card {
    background-color: #143872 !important;
}

.shared-hosting-page .vps-feature-col-card.blue-theme {
    background-image: radial-gradient(circle at center, rgba(57, 184, 253, 0.12) 0%, transparent 70%) !important;
    border-top: 5px solid #39b8fd !important;
}

.shared-hosting-page .vps-feature-col-card.green-theme {
    background-image: radial-gradient(circle at center, rgba(57, 184, 253, 0.12) 0%, transparent 70%) !important;
    border-top: 5px solid #39b8fd !important;
}

.shared-hosting-page .vps-feature-col-card:hover {
    box-shadow: 0 20px 35px -5px rgba(0, 0, 0, 0.4), 0 0 15px rgba(57, 184, 253, 0.15) !important;
}

/* Why Choose Section Overrides */
.shared-hosting-page .vps-why-choose-section {
    background-color: #143872 !important;
    background-image: radial-gradient(circle at center, rgba(57, 184, 253, 0.12) 0%, transparent 70%) !important;
    box-shadow: 0 25px 50px -12px rgba(20, 56, 114, 0.25) !important;
}

.shared-hosting-page .vps-why-choose-section .vps-why-title span {
    color: #39b8fd !important;
}

.shared-hosting-page .vps-why-card .icon-circle {
    background-color: #D4EEF7 !important;
    color: #143872 !important;
}

.shared-hosting-page .vps-why-card:hover .icon-circle {
    background-color: #ffffff !important;
    color: #143872 !important;
    box-shadow: 0 0 20px rgba(57, 184, 253, 0.5) !important;
}

.shared-hosting-page .vps-why-card:hover h4 {
    color: #bae6fd !important;
}

/* Comparison banner & Choice scale overrides */
.shared-hosting-page .vps-choice-banner {
    background-color: #eff6ff !important;
    border: 1px solid #bfdbfe !important;
}

.shared-hosting-page .vps-choice-banner .vps-badge-blue {
    background-color: #eff6ff !important;
    color: #1e40af !important;
    border: 1px solid #bfdbfe !important;
}

/* Category Tabs Horizonal Layout for 3 Tabs on Shared Hosting Page */
.shared-hosting-page .vps-category-tabs-container {
    max-width: 750px;
    grid-template-columns: repeat(3, 1fr) !important;
}

.shared-hosting-page .vps-category-tab {
    white-space: nowrap !important;
    padding: 16px 20px !important;
}

@media (max-width: 767px) {
    .shared-hosting-page .vps-category-tabs-container {
        grid-template-columns: repeat(3, minmax(140px, 1fr)) !important;
        overflow-x: auto !important;
        justify-content: start !important;
        max-width: 100% !important;
        scrollbar-width: none !important; /* Firefox */
        display: grid !important;
    }
    .shared-hosting-page .vps-category-tabs-container::-webkit-scrollbar {
        display: none !important; /* Chrome/Safari */
    }
    .shared-hosting-page .vps-category-tab {
        padding: 12px 14px !important;
        font-size: 14px !important;
    }
    .shared-hosting-page .vps-category-tab h3 {
        font-size: 14px !important;
    }
}

/* ==========================================================================
   Shared Hosting Info & Upgrade Columns Section Styles
   ========================================================================== */

.shared-hosting-info-section {
    padding: 40px 0 20px 0;
    background-color: #faf9fe;
}

.shared-hosting-info-section .info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
}

@media (max-width: 991px) {
    .shared-hosting-info-section .info-grid {
        grid-template-columns: 1fr;
    }
}

.shared-hosting-info-section .info-card {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px -10px rgba(20, 56, 114, 0.05);
    padding: 16px 36px 28px 36px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shared-hosting-info-section .info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -15px rgba(20, 56, 114, 0.1);
}

.shared-hosting-info-section .info-card-blue {
    border-top: 6px solid #0260db;
}

.shared-hosting-info-section .info-card-green {
    border-top: 6px solid #10b981;
}

.shared-hosting-info-section .info-card-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 160px;
    margin-bottom: 20px;
}

.shared-hosting-info-section .info-card-illustration img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.shared-hosting-info-section .info-card-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.shared-hosting-info-section .info-card-header-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

@media (min-width: 992px) {
    .shared-hosting-info-section .info-card-header-row {
        min-height: 64px;
    }
}

.shared-hosting-info-section .info-card-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shared-hosting-info-section .info-card-icon-box.box-blue {
    background-color: #eff6ff;
    color: #0260db;
}

.shared-hosting-info-section .info-card-icon-box.box-green {
    background-color: #f0fdf4;
    color: #10b981;
}

.shared-hosting-info-section .info-card-icon-box .material-symbols-outlined {
    font-size: 24px;
}

.shared-hosting-info-section .info-card-title {
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    line-height: 1.2;
}

.shared-hosting-info-section .info-card-title span.text-blue {
    color: #0260db;
}

.shared-hosting-info-section .info-card-title span.text-green {
    color: #10b981;
}

.shared-hosting-info-section .info-card-paragraphs p {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 16px;
}

.shared-hosting-info-section .info-card-paragraphs p:last-child {
    margin-bottom: 0;
}

.shared-hosting-info-section .info-card-paragraphs + .info-card-list-section {
    margin-top: 24px;
}

.shared-hosting-info-section .info-card-divider {
    border-top: 1.5px dashed #e2e8f0;
    margin: 20px 0;
}

.shared-hosting-info-section .info-card-list-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.shared-hosting-info-section .list-section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.shared-hosting-info-section .list-section-title .check-title-icon {
    color: #0260db;
    font-size: 20px;
}

.shared-hosting-info-section .info-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shared-hosting-info-section .info-card-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 15px;
    color: #334155;
    font-weight: 500;
}

.shared-hosting-info-section .info-card-list li:last-child {
    border-bottom: none;
}

.shared-hosting-info-section .info-card-list .check-bullet-icon {
    color: #0260db;
    font-size: 18px;
    margin-right: 12px;
}

.shared-hosting-info-section .info-card-list .list-item-text {
    flex-grow: 1;
}

.shared-hosting-info-section .info-card-list .list-item-right-icon {
    color: #94a3b8;
    font-size: 20px;
}

.shared-hosting-info-section .info-card-list .wordpress-svg-icon svg {
    display: block;
}

/* Specific styles for checklist in card 2 */
.shared-hosting-info-section .checkmark-left-list li {
    justify-content: flex-start;
}

.shared-hosting-info-section .checkmark-left-list .check-bullet-icon.text-green {
    color: #10b981;
}

.shared-hosting-info-section .checkmark-left-list .list-item-right-icon {
    margin-left: auto;
}

.shared-hosting-info-section .checkmark-left-list .list-item-right-icon.text-green {
    color: #10b981;
    opacity: 0.8;
}

/* Traffic Guidance Sub-section styling */
.shared-hosting-info-section .traffic-guidance-box {
    margin-top: 24px;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px;
}

.shared-hosting-info-section .traffic-guidance-box .guidance-title {
    display: block;
    font-size: 14.5px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.shared-hosting-info-section .traffic-guidance-box .guidance-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.shared-hosting-info-section .traffic-guidance-box .guidance-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #475569;
}

.shared-hosting-info-section .traffic-guidance-box .guidance-icon {
    color: #0260db;
    font-weight: bold;
    font-size: 14px;
}

/* Upgrade paths section styling */
.shared-hosting-info-section .upgrade-paths-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.shared-hosting-info-section .upgrade-paths-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.shared-hosting-info-section .upgrade-paths-title .rocket-icon {
    color: #10b981;
    font-size: 20px;
}

.shared-hosting-info-section .upgrade-rows {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.shared-hosting-info-section .upgrade-row-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    text-decoration: none !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.shared-hosting-info-section .upgrade-row-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.shared-hosting-info-section .upgrade-row-link .path-icon {
    font-size: 18px;
    color: #64748b;
    transition: color 0.25s ease;
}

.shared-hosting-info-section .upgrade-row-link .path-title {
    font-size: 14px;
    font-weight: 700;
    color: #334155;
    transition: color 0.25s ease;
}

.shared-hosting-info-section .upgrade-row-link .path-desc {
    font-size: 13px;
    color: #64748b;
    margin-left: auto;
    margin-right: 16px;
}

.shared-hosting-info-section .upgrade-row-link .path-arrow {
    font-size: 16px;
    color: #cbd5e1;
    transition: transform 0.25s ease, color 0.25s ease;
}

/* Hover States for Upgrade Paths */
.shared-hosting-info-section .upgrade-row-link:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.shared-hosting-info-section .upgrade-row-link.vps-path:hover {
    background-color: #eff6ff;
    border-color: #bfdbfe;
}
.shared-hosting-info-section .upgrade-row-link.vps-path:hover .path-icon,
.shared-hosting-info-section .upgrade-row-link.vps-path:hover .path-title,
.shared-hosting-info-section .upgrade-row-link.vps-path:hover .path-arrow {
    color: #0260db;
}

.shared-hosting-info-section .upgrade-row-link.cloud-path:hover {
    background-color: #faf5ff;
    border-color: #e9d5ff;
}
.shared-hosting-info-section .upgrade-row-link.cloud-path:hover .path-icon,
.shared-hosting-info-section .upgrade-row-link.cloud-path:hover .path-title,
.shared-hosting-info-section .upgrade-row-link.cloud-path:hover .path-arrow {
    color: #7c3aed;
}

.shared-hosting-info-section .upgrade-row-link.dedicated-path:hover {
    background-color: #fff7ed;
    border-color: #fed7aa;
}
.shared-hosting-info-section .upgrade-row-link.dedicated-path:hover .path-icon,
.shared-hosting-info-section .upgrade-row-link.dedicated-path:hover .path-title,
.shared-hosting-info-section .upgrade-row-link.dedicated-path:hover .path-arrow {
    color: #f97316;
}

.shared-hosting-info-section .upgrade-row-link:hover .path-arrow {
    transform: translateX(2px);
}

/* Responsive adjustment for upgrade rows - on smaller screens stack description */
@media (max-width: 640px) {
    .shared-hosting-info-section .upgrade-row-link {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        position: relative;
        padding-right: 40px;
    }
    .shared-hosting-info-section .upgrade-row-link .path-desc {
        margin-left: 0;
        margin-right: 0;
        font-size: 12.5px;
    }
    .shared-hosting-info-section .upgrade-row-link .path-arrow {
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
    }
    .shared-hosting-info-section .upgrade-row-link:hover .path-arrow {
        transform: translate(2px, -50%);
    }
}

/* Left card advisory box styling (green themed) */
.shared-hosting-info-section .info-card-advisory {
    padding: 16px;
    background-color: #f0fdf4;
    border: 1px solid #d1fae5;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.shared-hosting-info-section .info-card-advisory .advisory-icon {
    color: #10b981;
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.shared-hosting-info-section .info-card-advisory .advisory-content {
    flex-grow: 1;
}

.shared-hosting-info-section .info-card-advisory .advisory-title {
    font-size: 14.5px;
    font-weight: 700;
    color: #065f46;
    margin: 0 0 4px 0;
    line-height: 1.4;
}

.shared-hosting-info-section .info-card-advisory .advisory-text {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #065f46;
    margin: 0 0 8px 0;
    line-height: 1.5;
}

.shared-hosting-info-section .info-card-advisory .advisory-btn {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff !important;
    background-color: #10b981;
    border-radius: 12px;
    padding: 10px 24px;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px -2px rgba(16, 185, 129, 0.2);
    transition: all 0.2s ease;
    margin-top: 12px;
    border: none;
    cursor: pointer;
}

.shared-hosting-info-section .info-card-advisory .advisory-btn:hover {
    background-color: #059669;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px -2px rgba(16, 185, 129, 0.3);
}

/* Conversion reassurance copy */
.shared-hosting-info-section .conversion-reassurance {
    padding: 16px;
    background-color: #f0fdf4;
    border: 1px solid #d1fae5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.shared-hosting-info-section .conversion-reassurance .shield-icon {
    color: #10b981;
    font-size: 20px;
    flex-shrink: 0;
}

.shared-hosting-info-section .conversion-reassurance .reassurance-text {
    font-family: 'Poppins', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    color: #065f46;
    line-height: 1.4;
}

/* Responsive bottom alignment for desktop vs mobile */
@media (min-width: 992px) {
    .shared-hosting-info-section .info-card-advisory,
    .shared-hosting-info-section .conversion-reassurance {
        margin-top: auto;
    }
}

@media (max-width: 991px) {
    .shared-hosting-info-section .info-card-advisory,
    .shared-hosting-info-section .conversion-reassurance {
        margin-top: 24px;
    }
}

@media (max-width: 576px) {
    .shared-hosting-info-section .info-card {
        padding: 24px;
    }
    .shared-hosting-info-section .info-card-title {
        font-size: 22px;
    }
    .shared-hosting-info-section .info-card-illustration {
        height: 160px;
    }
}

/* Reduce space before Why Choose section on Shared Hosting page */
.shared-hosting-page .vps-vs-vds-section {
    padding-top: 20px;
}

/* Increase space around the trigger link banner on Shared Hosting and VPS pages */
.shared-hosting-page .vps-plans-trigger-section,
.vps-hosting-page .vps-plans-trigger-section {
    padding: 24px 0;
    margin-top: 24px;
    margin-bottom: 24px;
}

/* Increase padding-bottom of Secondary CTA banner on Shared Hosting and VPS pages since it is now at the bottom */
.shared-hosting-page .vps-timing-cta,
.vps-hosting-page .vps-timing-cta {
    padding-bottom: 40px;
}

@media (min-width: 768px) {
    .shared-hosting-page .vps-timing-cta,
    .vps-hosting-page .vps-timing-cta {
        padding-bottom: 60px;
    }
}

/* Card inner vertical spacer */
.shared-hosting-info-section .info-card-spacer {
    height: 28px;
    flex-shrink: 0;
}

/* Expert Call Back CTA Box Redesign (Shared Hosting & VPS Hosting Pages) */
.shared-hosting-page .vps-timing-cta .expert-cta-box,
.vps-hosting-page .vps-timing-cta .expert-cta-box {
    background-color: #f3fbf7;
    border: 1px solid #d1fae5;
    border-radius: 24px;
    padding: 36px 40px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 10px 30px -10px rgba(16, 185, 129, 0.05);
}

.shared-hosting-page .vps-timing-cta .expert-cta-left,
.vps-hosting-page .vps-timing-cta .expert-cta-left {
    flex: 1.3;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.shared-hosting-page .vps-timing-cta .expert-cta-header,
.vps-hosting-page .vps-timing-cta .expert-cta-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.shared-hosting-page .vps-timing-cta .headset-icon-circle,
.vps-hosting-page .vps-timing-cta .headset-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #d1fae5;
    color: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.shared-hosting-page .vps-timing-cta .headset-icon-circle .material-symbols-outlined,
.vps-hosting-page .vps-timing-cta .headset-icon-circle .material-symbols-outlined {
    font-size: 32px;
}

.shared-hosting-page .vps-timing-cta .expert-cta-titles,
.vps-hosting-page .vps-timing-cta .expert-cta-titles {
    flex-grow: 1;
}

.shared-hosting-page .vps-timing-cta .expert-cta-title,
.vps-hosting-page .vps-timing-cta .expert-cta-title {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 28px !important;
    font-weight: 800 !important;
    color: #0f172a;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.shared-hosting-page .vps-timing-cta .expert-cta-desc,
.vps-hosting-page .vps-timing-cta .expert-cta-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

.shared-hosting-page .vps-timing-cta .expert-cta-badges,
.vps-hosting-page .vps-timing-cta .expert-cta-badges {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.shared-hosting-page .vps-timing-cta .expert-badge-item,
.vps-hosting-page .vps-timing-cta .expert-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.shared-hosting-page .vps-timing-cta .expert-badge-item .badge-icon,
.vps-hosting-page .vps-timing-cta .expert-badge-item .badge-icon {
    color: #10b981;
    font-size: 18px;
}

.shared-hosting-page .vps-timing-cta .expert-badge-item .badge-text,
.vps-hosting-page .vps-timing-cta .expert-badge-item .badge-text {
    font-family: 'Poppins', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    color: #475569;
}

.shared-hosting-page .vps-timing-cta .expert-badge-divider,
.vps-hosting-page .vps-timing-cta .expert-badge-divider {
    width: 1px;
    height: 16px;
    background-color: #cbd5e1;
}

.shared-hosting-page .vps-timing-cta .expert-cta-middle-divider,
.vps-hosting-page .vps-timing-cta .expert-cta-middle-divider {
    width: 1px;
    align-self: stretch;
    border-left: 1.5px dashed #cbd5e1;
}

.shared-hosting-page .vps-timing-cta .expert-cta-right,
.vps-hosting-page .vps-timing-cta .expert-cta-right {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
}

.shared-hosting-page .vps-timing-cta .callback-promo-row,
.vps-hosting-page .vps-timing-cta .callback-promo-row {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.shared-hosting-page .vps-timing-cta .phone-icon-circle,
.vps-hosting-page .vps-timing-cta .phone-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e6f7ef;
    color: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.shared-hosting-page .vps-timing-cta .phone-icon-circle .material-symbols-outlined,
.vps-hosting-page .vps-timing-cta .phone-icon-circle .material-symbols-outlined {
    font-size: 20px;
}

.shared-hosting-page .vps-timing-cta .callback-promo-text,
.vps-hosting-page .vps-timing-cta .callback-promo-text {
    flex-grow: 1;
}

.shared-hosting-page .vps-timing-cta .callback-promo-text strong,
.vps-hosting-page .vps-timing-cta .callback-promo-text strong {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 14.5px;
    color: #10b981;
    margin-bottom: 2px;
}

.shared-hosting-page .vps-timing-cta .callback-promo-text p,
.vps-hosting-page .vps-timing-cta .callback-promo-text p {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

.shared-hosting-page .vps-timing-cta .expert-callback-btn,
.vps-hosting-page .vps-timing-cta .expert-callback-btn {
    width: 100%;
    background-color: #10b981;
    color: #ffffff !important;
    padding: 14px 24px;
    border-radius: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 16px -4px rgba(16, 185, 129, 0.2);
    transition: all 0.2s ease;
    border: none;
}

.shared-hosting-page .vps-timing-cta .expert-callback-btn:hover,
.vps-hosting-page .vps-timing-cta .expert-callback-btn:hover {
    background-color: #059669;
    transform: translateY(-1.5px);
    box-shadow: 0 10px 20px -4px rgba(16, 185, 129, 0.3);
}

.shared-hosting-page .vps-timing-cta .expert-callback-btn .material-symbols-outlined,
.vps-hosting-page .vps-timing-cta .expert-callback-btn .material-symbols-outlined {
    font-size: 18px;
}

.shared-hosting-page .vps-timing-cta .callback-security-note,
.vps-hosting-page .vps-timing-cta .callback-security-note {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 12.5px;
    color: #64748b;
    width: 100%;
    justify-content: center;
}

.shared-hosting-page .vps-timing-cta .callback-security-note .material-symbols-outlined,
.vps-hosting-page .vps-timing-cta .callback-security-note .material-symbols-outlined {
    font-size: 14px;
}

/* Responsive CTA */
@media (max-width: 991px) {
    .shared-hosting-page .vps-timing-cta .expert-cta-box,
    .vps-hosting-page .vps-timing-cta .expert-cta-box {
        flex-direction: column;
        align-items: stretch;
        gap: 32px;
        padding: 32px 24px;
    }
    
    .shared-hosting-page .vps-timing-cta .expert-cta-middle-divider,
    .vps-hosting-page .vps-timing-cta .expert-cta-middle-divider {
        display: none;
    }
    
    .shared-hosting-page .vps-timing-cta .expert-cta-right,
    .vps-hosting-page .vps-timing-cta .expert-cta-right {
        border-top: 1.5px dashed #cbd5e1;
        padding-top: 24px;
    }
}

@media (max-width: 576px) {
    .shared-hosting-page .vps-timing-cta .expert-cta-header,
    .vps-hosting-page .vps-timing-cta .expert-cta-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .shared-hosting-page .vps-timing-cta .expert-badge-divider,
    .vps-hosting-page .vps-timing-cta .expert-badge-divider {
        display: none;
    }
    
    .shared-hosting-page .vps-timing-cta .expert-cta-badges,
    .vps-hosting-page .vps-timing-cta .expert-cta-badges {
        justify-content: center;
        gap: 12px 20px;
    }
}

/* Dedicated Info Columns Section */
.dedicated-info-section {
    padding: 60px 0;
    background-color: var(--background);
}

.dedicated-info-section .info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.dedicated-info-section .info-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 32px 32px 28px 32px;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 10px 30px -10px rgba(16, 24, 40, 0.03);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dedicated-info-section .info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px -10px rgba(16, 24, 40, 0.06);
}

.dedicated-info-section .info-card-blue {
    border: 1px solid #dbeafe;
}

.dedicated-info-section .info-card-green {
    border: 1px solid #d1fae5;
}

.dedicated-info-section .info-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    z-index: 3;
}

.dedicated-info-section .info-card-blue::before {
    background-color: #3b82f6;
}

.dedicated-info-section .info-card-green::before {
    background-color: #10b981;
}

.dedicated-info-section .info-card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.dedicated-info-section .card-watermark {
    position: absolute;
    right: -25px;
    bottom: -5px;
    width: 280px;
    opacity: 0.12;
    pointer-events: none;
    z-index: 1;
    transition: transform 0.5s ease, opacity 0.3s ease;
}

.dedicated-info-section .info-card:hover .card-watermark {
    transform: scale(1.04);
    opacity: 0.16;
}

.dedicated-info-section .info-card-header-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.dedicated-info-section .info-card-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dedicated-info-section .info-card-icon-box.box-blue {
    background-color: #eff6ff;
    color: #3b82f6;
}

.dedicated-info-section .info-card-icon-box.box-green {
    background-color: #f0fdf4;
    color: #10b981;
}

.dedicated-info-section .info-card-icon-box .material-symbols-outlined {
    font-size: 28px;
}

.dedicated-info-section .info-card-title {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 26px !important;
    font-weight: 800 !important;
    color: #0f172a;
    line-height: 1.3;
    margin: 0;
}

.dedicated-info-section .info-card-underline {
    width: 32px;
    height: 4px;
    border-radius: 2px;
    margin-top: 10px;
}

.dedicated-info-section .info-card-blue .info-card-underline {
    background-color: #3b82f6;
}

.dedicated-info-section .info-card-green .info-card-underline {
    background-color: #10b981;
}

.dedicated-info-section .info-card-paragraphs p {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.dedicated-info-section .info-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    flex-grow: 1;
    margin-top: auto;
}

.dedicated-info-section .info-card-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 14.5px;
    font-weight: 500;
    color: #334155;
    border-bottom: 1px solid #f1f5f9;
    padding: 10px 0;
}

.dedicated-info-section .info-card-list li:first-child {
    padding-top: 0;
}

.dedicated-info-section .info-card-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.dedicated-info-section .info-card-list .check-bullet-icon {
    color: #10b981;
    font-size: 20px;
    flex-shrink: 0;
}

/* Responsive Info Section */
@media (max-width: 991px) {
    .dedicated-info-section .info-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 576px) {
    .dedicated-info-section {
        padding: 40px 0;
    }
    
    .dedicated-info-section .info-card {
        padding: 32px 24px;
    }
    
    .dedicated-info-section .info-card-title {
        font-size: 22px !important;
    }
}

/* Dedicated Page Why Choose Section Redesign */
.dedicated-why-choose-section {
    text-align: center;
    background-color: var(--primary);
    background-image: radial-gradient(circle at center, rgba(57, 184, 253, 0.15) 0%, transparent 70%);
    border: 1px solid rgba(57, 184, 253, 0.15);
    border-radius: 24px;
    padding: 60px 40px;
    margin-bottom: 0px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(20, 56, 114, 0.25);
}

.dedicated-why-header {
    margin-bottom: 48px;
}

.dedicated-why-title {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.dedicated-why-title span {
    color: #39b8fd;
}

.dedicated-why-divider {
    width: 48px;
    height: 4px;
    background-color: #39b8fd;
    margin: 16px auto 0 auto;
    border-radius: 2px;
}

.dedicated-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

@media (max-width: 1024px) {
    .dedicated-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .dedicated-why-grid {
        grid-template-columns: 1fr;
    }
    .dedicated-why-choose-section {
        padding: 40px 20px;
    }
    .dedicated-why-title {
        font-size: 28px;
    }
}

.dedicated-why-card {
    background: rgba(10, 26, 63, 0.4);
    border: 1px solid rgba(57, 184, 253, 0.1);
    border-radius: 16px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dedicated-why-card:hover {
    background: rgba(10, 26, 63, 0.8);
    border-color: rgba(57, 184, 253, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(3, 10, 30, 0.4);
}

.dedicated-card-icon {
    color: #39b8fd;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.dedicated-why-card:hover .dedicated-card-icon {
    transform: scale(1.1);
}

.dedicated-card-title {
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.4;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.dedicated-card-desc {
    font-size: 13.5px;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.dedicated-why-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    max-width: 850px;
    margin: 0 auto;
    background: rgba(57, 184, 253, 0.05);
    border: 1px solid rgba(57, 184, 253, 0.1);
    border-radius: 50px;
    padding: 16px 32px;
    text-align: left;
}

@media (max-width: 768px) {
    .dedicated-why-footer {
        flex-direction: column;
        border-radius: 20px;
        padding: 24px;
        text-align: center;
    }
}

.dedicated-footer-icon {
    color: #39b8fd;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dedicated-footer-text {
    font-size: 14.5px;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Dedicated Page Plan Trigger Spacing */
.dedicated-trigger-section {
    padding: 36px 0 !important;
    margin-top: 20px !important;
    margin-bottom: 20px !important;
}

/* Expert Callback CTA - WhatsApp Button & Container Styling */
.vps-timing-cta .cta-btn-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 6px;
}

.vps-timing-cta .cta-btn-subtext {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #64748b;
    text-align: center;
    margin: 0;
}

.shared-hosting-page .vps-timing-cta .expert-whatsapp-btn,
.vps-hosting-page .vps-timing-cta .expert-whatsapp-btn {
    width: 100%;
    background-color: #ffffff;
    color: #10b981 !important;
    border: 1.5px solid #10b981;
    padding: 13.5px 24px;
    border-radius: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.05);
}

.shared-hosting-page .vps-timing-cta .expert-whatsapp-btn:hover,
.vps-hosting-page .vps-timing-cta .expert-whatsapp-btn:hover {
    background-color: #f0fdf4;
    transform: translateY(-1.5px);
    box-shadow: 0 8px 16px rgba(16, 185, 129, 0.15);
}

.shared-hosting-page .vps-timing-cta .expert-whatsapp-btn svg,
.vps-hosting-page .vps-timing-cta .expert-whatsapp-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* ==========================================================================
   Cloud Upgrade Section (When Should You Upgrade to Cloud Hosting?)
   ========================================================================== */
.cloud-upgrade-section {
    background-color: #fffdf9; /* soft warm cream background */
    border: 1px solid #fef08a; /* soft yellow/gold border */
    border-radius: 24px;
    padding: 56px 40px 48px 40px;
    margin: 40px 0 60px 0;
    box-shadow: 0 4px 25px -2px rgba(234, 179, 8, 0.03);
    position: relative;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

.cloud-upgrade-header {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
}

.cloud-upgrade-title {
    font-family: 'Poppins', sans-serif !important;
    font-size: 38px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    margin: 0 0 12px 0 !important;
    line-height: 1.3 !important;
    letter-spacing: -0.02em !important;
}

.cloud-upgrade-title span {
    color: #2563eb;
}

.cloud-upgrade-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 16px !important;
    color: #475569 !important;
    font-weight: 600 !important;
    margin: 0 !important;
}

.cloud-upgrade-divider {
    width: 48px;
    height: 4px;
    background-color: #2563eb;
    margin: 16px auto 0 auto;
    border-radius: 2px;
}

/* 5-Column Grid with dividers */
.cloud-upgrade-items-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.cloud-upgrade-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-right: 1px solid rgba(226, 232, 240, 1);
    padding: 8px 16px;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.cloud-upgrade-item:last-child {
    border-right: none;
}

.upgrade-item-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.cloud-upgrade-item:hover {
    transform: translateY(-4px);
}

.cloud-upgrade-item:hover .upgrade-item-icon-box {
    transform: scale(1.08);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.upgrade-item-icon-box .material-symbols-outlined {
    font-size: 30px;
}

.upgrade-item-icon-box.box-green {
    background-color: #f0fdf4;
    color: #10b981;
}

.upgrade-item-icon-box.box-blue {
    background-color: #eff6ff;
    color: #3b82f6;
}

.upgrade-item-icon-box.box-purple {
    background-color: #faf5ff;
    color: #a855f7;
}

.upgrade-item-icon-box.box-orange {
    background-color: #fff7ed;
    color: #f97316;
}

.upgrade-item-icon-box.box-cyan {
    background-color: #ecfeff;
    color: #0891b2;
}

.upgrade-item-text {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 15px !important;
    color: #1e293b !important;
    line-height: 1.5 !important;
    font-weight: 700 !important;
    margin: 0 !important;
    letter-spacing: -0.01em !important;
}

/* Footer Banner Styling */
.cloud-upgrade-footer-banner {
    background-color: #fefbeb; /* gold alert background */
    border: 1px solid #fde68a;
    border-radius: 12px;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 36px;
}

.cloud-upgrade-footer-banner .footer-banner-icon {
    color: #d97706;
    font-size: 20px;
    font-variation-settings: 'FILL' 1;
    flex-shrink: 0;
}

.cloud-upgrade-footer-banner .footer-banner-text {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 14.5px !important;
    color: #78350f;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .cloud-upgrade-title {
        font-size: 32px !important;
    }
    .cloud-upgrade-items-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    .cloud-upgrade-item {
        border-right: 1px solid rgba(226, 232, 240, 1);
    }
    .cloud-upgrade-item:nth-child(3) {
        border-right: none;
    }
}

@media (max-width: 768px) {
    .cloud-upgrade-title {
        font-size: 28px !important;
    }
    .cloud-upgrade-items-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 16px;
    }
    .cloud-upgrade-item {
        border-right: none;
        border-bottom: 1px solid rgba(226, 232, 240, 0.8);
        padding-bottom: 20px;
    }
    .cloud-upgrade-item:nth-last-child(-n+2) {
        border-bottom: none;
        padding-bottom: 0;
    }
}

@media (max-width: 480px) {
    .cloud-upgrade-items-grid {
        grid-template-columns: 1fr;
    }
    .cloud-upgrade-item {
        border-bottom: 1px solid rgba(226, 232, 240, 0.8);
        padding-bottom: 20px;
    }
    .cloud-upgrade-item:last-child {
        border-bottom: none;
    }
    .cloud-upgrade-title {
        font-size: 24px !important;
    }
    .cloud-upgrade-section {
        padding: 36px 20px;
    }
}

/* ==========================================================================
   How Cloud Hosting Works Section CSS
   ========================================================================== */
#how-cloud-works .vps-container {
    max-width: 1400px;
}

.cloud-works-container-box {
    background-color: #f8fafc;
    border: 2px solid #D4EEF7;
    border-radius: 24px;
    padding: 48px 32px;
    box-shadow: 0 10px 30px -5px rgba(212, 238, 247, 0.2);
}

.cloud-works-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.cloud-works-card {
    background-color: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 16px;
    padding: 32px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -2px rgba(0, 0, 0, 0.02);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.25s ease;
}

.cloud-works-card:hover {
    transform: translateY(-5px);
    border-color: #2563eb;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.06), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
}

.works-card-illustration-wrapper {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.work-card-illustration {
    transition: transform 0.3s ease;
}

.cloud-works-card:hover .work-card-illustration {
    transform: scale(1.05);
}

.cloud-works-card-title {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 16.5px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.4;
}

.cloud-works-card-desc {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .cloud-works-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .cloud-works-grid {
        grid-template-columns: 1fr;
    }
    .cloud-works-container-box {
        padding: 32px 20px;
    }
}

/* ==========================================
   GLOBAL FIX FOR BILLING CYCLE SELECTOR BUTTONS
   ========================================== */
.vps-cycle-btn {
    color: rgba(255, 255, 255, 0.9) !important;
}

.vps-cycle-btn:hover {
    color: #ffffff !important;
    background-color: rgba(255, 255, 255, 0.12) !important;
}

.vps-cycle-btn.active,
.vps-cycle-btn.active[data-cycle],
.vps-plans-widget-wrapper .vps-cycle-btn.active,
.shared-hosting-page .vps-plans-widget-wrapper .vps-cycle-btn.active {
    background: #ffffff !important;
    color: #1657ff !important;
    border: 2.5px solid #1657ff !important;
    box-shadow: 0 0 16px rgba(22, 87, 255, 0.4) !important;
    font-weight: 800 !important;
}

.vps-cycle-btn.active *,
.vps-cycle-btn.active[data-cycle] *,
.vps-plans-widget-wrapper .vps-cycle-btn.active *,
.shared-hosting-page .vps-plans-widget-wrapper .vps-cycle-btn.active * {
    color: #1657ff !important;
    font-weight: 800 !important;
}

.vps-cycle-btn.active .vps-discount-badge-small,
.vps-plans-widget-wrapper .vps-cycle-btn.active .vps-discount-badge-small,
.shared-hosting-page .vps-plans-widget-wrapper .vps-cycle-btn.active .vps-discount-badge-small {
    background-color: #1657ff !important;
    color: #ffffff !important;
    border: none !important;
    font-weight: 800 !important;
}

/* Hide old progress bar container */
.vps-slider-progress-container {
    display: none !important;
}

/* Dynamic Slider Controls (Counter & Dots) */
.vps-slider-controls {
    display: none; /* Injected and shown dynamically by JS when slider overflows */
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 30px;
    user-select: none;
}

.vps-slider-counter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.vps-slider-counter i {
    color: #39b8fd; /* Match brand secondary cyan/sky-blue */
    font-size: 13px;
}

.vps-slider-dots {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.vps-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.vps-slider-dot:hover {
    background-color: rgba(255, 255, 255, 0.6);
}

.vps-slider-dot.active {
    background-color: #39b8fd; /* Sky Blue active dot */
    transform: scale(1.25);
    box-shadow: 0 0 8px rgba(57, 184, 253, 0.6);
}

/* Responsive Stack on Mobile */
@media (max-width: 767px) {
    .vps-slider-controls {
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
    }
}

/* Slider Hint for desktop discoverability */
.vps-slider-hint {
    position: absolute;
    right: -25px; /* offset to align above the next button on tablet */
    top: -25px; /* positioned above the cards on tablet */
    bottom: auto;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 15.5px; /* increased text size */
    font-weight: 700;
    color: #39b8fd;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: none;
    align-items: center;
    gap: 4px;
    pointer-events: none;
    z-index: 30;
    white-space: nowrap;
    opacity: 0.95;
    transition: opacity 0.3s ease;
}

.vps-hint-arrow-right-wrapper {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    animation: vps-hint-pulse-horizontal 2s infinite ease-in-out;
}

.vps-hint-arrow-right {
    display: inline-block;
    transform: scaleX(2.0); /* physically lengthen the horizontal arrow */
    transform-origin: left center;
    margin-left: 4px;
    font-weight: 900 !important;
    text-shadow: 0.5px 0 0 currentColor, -0.5px 0 0 currentColor, 0 0.5px 0 currentColor, 0 -0.5px 0 currentColor; /* outlines character for bolder look */
}

@keyframes vps-hint-pulse-horizontal {
    0%, 100% {
        transform: translateX(0);
        opacity: 0.7;
    }
    50% {
        transform: translateX(5px); /* Translate rightwards horizontally */
        opacity: 1;
    }
}

@media (min-width: 1024px) {
    .vps-slider-hint {
        right: 30px !important; /* positioned exactly above the top-right corner of the plan card grid */
        top: -25px !important;
        bottom: auto !important;
    }
}

@media (max-width: 767px) {
    .vps-slider-hint {
        display: none !important;
    }
}