/**
 * page-vps.css — Nepal VPS landing page styles.
 *
 * Restored from the static site's page-level <style> block that was dropped
 * during the HTML→WordPress conversion, plus the inline <style> blocks that
 * previously lived inside page-vps.php. Enqueued only for page-vps.php.
 */

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.vps-hero-bg {
    background:
        linear-gradient(180deg, #f8fafc 0%, rgba(248,251,255,.28) 20%, rgba(248,251,255,.14) 58%, #fff 100%),
        linear-gradient(100deg, #edf4fe 0%, #f7f9fc 43%, #faf8f6 70%, #fff2ec 100%);
}
.vps-hero-bg::before {
    content: '';
    position: absolute;
    top: 72px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(82, 113, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.vps-hero-grid {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 4vw, 4.5rem);
}
.vps-hero-visual,
.vps-hero-cards {
    display: none;
}
@media (min-width: 1024px) {
    .vps-hero-grid {
        grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr) !important;
        gap: clamp(2.5rem, 4vw, 4.5rem) !important;
    }
    .vps-hero-visual {
        display: block;
    }
}
@media (min-width: 1280px) {
    .vps-hero-grid {
        grid-template-columns: minmax(0, 1.12fr) minmax(360px, .78fr) minmax(210px, .42fr) !important;
        gap: clamp(1.5rem, 2.4vw, 2.75rem) !important;
    }
    .vps-hero-cards {
        display: flex;
    }
}

.vps-hero-section { border-top: 0; }
.vps-hero-section,.vps-hero-section :is(a,button,p,li) { font-family: var(--font-brand-sans); }
.vps-hero-section :is(h1,h2,h3) { font-family: var(--font-brand-display); }
.vps-hero-grid h1 { max-width: 700px; font-size: clamp(3.15rem, 4.35vw, 4.55rem); font-weight: 700; line-height: 1.02; letter-spacing: -.048em; }
.vps-hero-lead { max-width: 630px !important; margin: 0 0 24px; color: #556176; font-size: clamp(1.05rem, 1.35vw, 1.22rem); line-height: 1.65; }
.vps-hero-price { display: flex; width: fit-content; margin-bottom: 27px; padding: 9px 13px; align-items: baseline; gap: 8px; border: 1px solid rgba(82,113,255,.16); border-radius: 12px; color: #667086; background: rgba(255,255,255,.62); box-shadow: 0 12px 30px -26px rgba(35,77,218,.65); backdrop-filter: blur(10px); }
.vps-hero-price span { font-size: .76rem; font-weight: 650; }
.vps-hero-price strong { color: #5271ff; font-size: 1.03rem; font-weight: 800; }
.vps-hero-benefits { max-width: 650px; }
.vps-hero-benefits li { color: #30394b; font-size: .98rem; font-weight: 500; }
.vps-hero-actions a { min-height: 52px; padding: 0 26px; border-radius: 999px; font-size: .9rem; font-weight: 700; }
.vps-hero-actions a + a { border-width: 1.5px; background: rgba(255,255,255,.42); }
.vps-hero-actions a:focus-visible { outline: 3px solid rgba(82,113,255,.3); outline-offset: 3px; }
.vps-hero-note { margin: 20px 0 0; color: #687287; font-size: .82rem; font-weight: 600; }
.vps-hero-visual { padding-left: 38px !important; }
.vps-terminal-card { height: clamp(520px, 36vw, 590px); aspect-ratio: auto !important; border-radius: 22px !important; border-color: rgba(82,113,255,.16) !important; box-shadow: 0 28px 70px -46px rgba(15,28,74,.72); }
.vps-hero-cards { height: clamp(520px, 36vw, 590px); gap: 16px !important; }
.vps-summary-card,.vps-expert-card { height: auto !important; border-radius: 20px !important; }
.vps-summary-card { flex: 1.05; padding: 24px !important; background: rgba(244,245,255,.86) !important; box-shadow: 0 20px 45px -38px rgba(47,67,155,.55); }
.vps-expert-card { flex: .95; padding: 24px !important; background: rgba(255,255,255,.58) !important; box-shadow: 0 20px 45px -38px rgba(47,67,155,.5); }
.vps-expert-card > div:first-child { height: 100%; display: flex; flex-direction: column; align-items: flex-start; }
.vps-expert-card > div:first-child p { max-width: 175px !important; margin-bottom: 18px !important; }
.vps-expert-cta { position: relative; z-index: 3; min-height: 44px; margin-top: auto; padding: 0 18px !important; border-radius: 999px !important; display: inline-flex !important; align-items: center; box-shadow: 0 12px 24px -17px rgba(35,77,218,.75); transition: transform .18s ease,box-shadow .18s ease; }
.vps-expert-cta:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 16px 28px -17px rgba(35,77,218,.85); }
.vps-expert-cta:focus-visible { outline: 3px solid rgba(82,113,255,.35); outline-offset: 3px; }
.vps-expert-art { right: -30px !important; bottom: 6px !important; width: 112px !important; height: 112px !important; opacity: .42 !important; }
@media (max-width: 1023px) { .vps-hero-grid h1 { max-width: 780px; } }
@media (max-width: 640px) { .vps-hero-grid h1 { font-size: clamp(2.7rem, 13vw, 3.65rem); } .vps-hero-benefits li { align-items: flex-start; } .vps-hero-actions { display: grid; grid-template-columns: 1fr; } .vps-hero-actions a { width: 100%; } }

/* ── Section backgrounds ──────────────────────────────────────────────────── */
.vps-apps-bg {
    background: radial-gradient(circle at 50% 50%, #ffffff 0%, #f3f2fe 100%);
}
.vps-section-divider {
    border-top: 1px solid rgba(196, 197, 215, 0.3);
}
.vps-cta-bg {
    background: linear-gradient(135deg, #1a2a6c 0%, #3b5bdb 50%, #5271ff 100%);
}

/* ── Feature icons ────────────────────────────────────────────────────────── */
.feature-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ── Compare table ────────────────────────────────────────────────────────── */
.compare-th {
    background: #5271ff;
    color: #fff;
    padding: 14px 18px;
    font-weight: 700;
    font-size: 13px;
    white-space: nowrap;
}
.compare-th.popular-col {
    background: #3a55e0;
    position: relative;
}
.compare-td {
    padding: 12px 18px;
    font-size: 13px;
    color: #444655;
    white-space: nowrap;
    border-bottom: 1px solid #e2e1ed;
}
.compare-td.row-label {
    font-weight: 600;
    color: #1a1b23;
    background: #f3f2fe;
    position: sticky;
    left: 0;
    z-index: 2;
    min-width: 160px;
}
.compare-td.popular-col {
    background: rgba(82, 113, 255, 0.05);
}
.compare-row:hover .compare-td {
    background: #f8f8ff;
}
.compare-row:hover .compare-td.row-label {
    background: #ecebff;
}
.check-icon { color: #5271ff; }
.cross-icon { color: #c4c5d7; }

/* Hardware strip integrated into the bottom of the VPS hero */
.vps-hero-hardware { position: relative; z-index: 3; width: min(calc(100% - 48px),var(--site-container-width)); margin: clamp(58px,6vw,88px) auto 0; padding-top: 8px; }
.vps-hero-hardware-title { display: flex; align-items: center; gap: 18px; }
.vps-hero-hardware-title i { height: 1px; flex: 1; background: linear-gradient(90deg,transparent,rgba(69,75,99,.2)); }
.vps-hero-hardware-title i:last-child { background: linear-gradient(90deg,rgba(69,75,99,.2),transparent); }
.vps-hero-hardware-title span { color: #777a88; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; white-space: nowrap; }
.vps-hero-hardware-logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 24px clamp(28px,4vw,58px); margin-top: 25px; }
.vps-hero-hardware-logos img { display: block; width: auto; max-width: 96px; height: 30px; opacity: .58; filter: grayscale(1); transition: opacity .2s ease,filter .2s ease,transform .2s ease; }
.vps-hero-hardware-logos img:hover { opacity: .9; filter: grayscale(0); transform: translateY(-2px); }
@media (max-width: 640px) { .vps-hero-hardware { width: calc(100% - 32px); margin-top: 48px; padding-top: 23px; } .vps-hero-hardware-title { gap: 10px; } .vps-hero-hardware-title span { font-size: 8px; letter-spacing: .08em; } .vps-hero-hardware-logos { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 20px 14px; margin-top: 22px; } .vps-hero-hardware-logos img { max-width: 100%; height: 23px; margin: auto; } }

/* ── Stitch KVM pricing section ───────────────────────────────────────────── */
.vps-pricing-section {
    position: relative;
    overflow: hidden;
    padding: clamp(80px, 8vw, 128px) 24px;
    background:
        radial-gradient(circle at 8% 12%, rgba(82, 113, 255, 0.09), transparent 28%),
        radial-gradient(circle at 92% 88%, rgba(132, 92, 246, 0.07), transparent 30%),
        #fbfaff;
}
.vps-pricing-shell { width: min(100%, var(--site-container-width)); margin-inline: auto; }
.vps-pricing-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 44px; }
.vps-pricing-intro { max-width: 760px; }
.vps-pricing-eyebrow { display: inline-flex; align-items: center; gap: 7px; margin-bottom: 18px; padding: 7px 13px; border: 1px solid rgba(82,113,255,.18); border-radius: 999px; background: rgba(82,113,255,.08); color: #5271ff; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.vps-pricing-eyebrow .material-symbols-outlined { font-size: 15px; }
.vps-pricing-intro h2 { margin: 0; color: #171821; font-size: clamp(2.25rem, 4vw, 3.35rem); font-weight: 750; line-height: 1.08; letter-spacing: -.045em; }
.vps-pricing-intro > p { max-width: 690px; margin: 16px 0 0; color: #535667; font-size: 1.04rem; line-height: 1.7; }
.vps-pricing-assurances { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 22px; color: #383b49; font-size: .82rem; font-weight: 650; }
.vps-pricing-assurances > span { display: inline-flex; align-items: center; gap: 6px; }
.vps-pricing-assurances .material-symbols-outlined { color: #5271ff; font-size: 17px; }
.vps-billing-control { display: flex; min-width: max-content; align-items: center; gap: 12px; padding: 9px 12px; border: 1px solid #dedfed; border-radius: 999px; background: rgba(255,255,255,.86); box-shadow: 0 8px 28px rgba(31,42,91,.07); }
.vps-billing-control > span { cursor: pointer; color: #777a89; font-size: .82rem; font-weight: 650; outline: none; }
.vps-billing-control > span.is-active { color: #1a1b23; }
.vps-billing-control strong { margin-left: 4px; padding: 3px 7px; border-radius: 999px; background: #e9edff; color: #3d5be9; font-size: .66rem; }
#billing-toggle { position: relative; width: 42px; height: 24px; padding: 0; border: 0; border-radius: 999px; background: #d8dbea; cursor: pointer; transition: background .2s ease; }
#billing-toggle #toggle-dot { position: absolute; top: 4px; left: 4px; width: 16px; height: 16px; border-radius: 50%; background: #fff; box-shadow: 0 2px 5px rgba(20,26,55,.2); transition: transform .22s ease; }
#billing-toggle.is-yearly { background: #5271ff; }
#billing-toggle.is-yearly #toggle-dot { transform: translateX(18px); }
#billing-toggle:focus-visible, .vps-billing-control > span:focus-visible { outline: 2px solid #5271ff; outline-offset: 3px; }
.vps-plans-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; align-items: stretch; }
.vps-plan-card {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: visible;
    border: 1px solid #dedfed;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 8px 30px rgba(25,35,75,.055);
    transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.vps-plan-card:hover {
    box-shadow: 0 20px 46px rgba(48,67,151,.14);
    transform: translateY(-3px);
    border-color: rgba(82,113,255,.45);
}
.vps-plan-card.popular {
    border: 2px solid #5271ff;
    background: linear-gradient(180deg, rgba(82,113,255,.045), #fff 30%);
    box-shadow: 0 18px 48px rgba(82,113,255,.17);
}
.vps-plan-badge { position: absolute; top: 0; left: 50%; z-index: 2; padding: 6px 14px; border-radius: 0 0 10px 10px; background: #5271ff; color: #fff; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; transform: translateX(-50%); white-space: nowrap; }
.vps-plan-header { display: flex; flex-direction: column; padding: 30px 28px 16px; }
.vps-plan-card.popular .vps-plan-header { padding-top: 38px; }
.vps-plan-title-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.vps-plan-title-row h3 { margin: 0; color: #171821; font-size: 1.65rem; font-weight: 760; letter-spacing: -.03em; }
.vps-plan-title-row > span { padding: 5px 9px; border-radius: 8px; background: #fff2e6; color: #a04c00; font-size: .66rem; font-weight: 800; }
.vps-plan-header > p { min-height: 40px; margin: 10px 0 22px; color: #626575; font-size: .79rem; line-height: 1.5; }
.vps-plan-price { display: flex; align-items: baseline; color: #171821; }
.vps-plan-price > span { margin-right: 4px; color: #6d7080; font-size: .82rem; font-weight: 700; }
.vps-plan-price > strong { font-size: clamp(2.15rem, 3vw, 2.75rem); font-weight: 780; line-height: 1; letter-spacing: -.045em; }
.vps-plan-price > small { margin-left: 4px; color: #757887; font-size: .75rem; }
.vps-plan-billing { min-height: 18px; margin-top: 10px; color: #777a89; font-size: .7rem; }
.vps-plan-specs { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; margin-top: 24px; }
.spec-chip {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 11px 12px;
    border: 1px solid #e7e7f0;
    border-radius: 10px;
    background: #f8f8fc;
}
.spec-chip small { color: #7b7e8e; font-size: 9px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.spec-chip strong { margin-top: 3px; color: #20212a; font-size: .88rem; font-weight: 750; }
.vps-plan-features { display: grid; gap: 9px; margin-top: 20px; padding-top: 19px; border-top: 1px solid #ececf3; }
.vps-plan-features > div { display: flex; align-items: center; gap: 8px; color: #505362; font-size: .78rem; }
.vps-plan-features .material-symbols-outlined { display: grid; width: 17px; height: 17px; flex: 0 0 17px; place-items: center; border-radius: 50%; background: #edf0ff; color: #5271ff; font-size: 12px; font-weight: 800; }
.vps-plan-footer { display: flex; flex: 1; flex-direction: column; padding: 0 28px 28px; }
.vps-plan-cta { display: flex; min-height: 46px; width: 100%; align-items: center; justify-content: center; gap: 8px; border: 1px solid #d9dce8; border-radius: 11px; background: #fff; color: #3154e7; font-size: .82rem; font-weight: 750; text-decoration: none; transition: color .18s ease, background .18s ease, border-color .18s ease, transform .18s ease; }
.vps-plan-cta .material-symbols-outlined { font-size: 17px; }
.vps-plan-card.popular .vps-plan-cta, .vps-plan-cta:hover { border-color: #5271ff; background: #5271ff; color: #fff; }
.vps-plan-cta:hover { transform: translateY(-1px); }
.vps-plan-renewal { min-height: 38px; margin: 12px 0 0; color: #666978; font-size: .69rem; line-height: 1.45; }
.vps-plan-footer .vps-plan-features { margin-top: 18px; }
.vps-plan-includes { margin-top: 54px; padding: clamp(30px,4vw,48px); border: 1px solid #d6d9e8; border-radius: 18px; background: rgba(238,240,255,.72); }
.vps-plan-includes h3 { margin: 0; color: #1a1b23; font-size: clamp(1.55rem,2.8vw,2.25rem); font-weight: 750; line-height: 1.2; letter-spacing: -.035em; text-align: center; }
.vps-plan-includes h3 span { color: #5271ff; }
.vps-plan-includes-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px 34px; max-width: 980px; margin: 34px auto 0; }
.vps-plan-includes-grid > span { display: flex; align-items: center; gap: 10px; color: #333541; font-size: .88rem; font-weight: 600; }
.vps-plan-includes-grid i { display: grid; width: 24px; height: 24px; flex: 0 0 24px; place-items: center; border-radius: 50%; background: #dde4ff; color: #5271ff; font-size: 15px; font-style: normal; font-weight: 800; }
.vps-pricing-note { display: flex; align-items: center; justify-content: center; gap: 7px; margin: 28px 0 0; color: #747786; font-size: .75rem; text-align: center; }
.vps-pricing-note .material-symbols-outlined { color: #5271ff; font-size: 16px; }
@media (max-width: 1100px) { .vps-pricing-header { align-items: flex-start; flex-direction: column; } .vps-plans-grid { grid-template-columns: repeat(2,minmax(0,1fr)); } }
@media (max-width: 760px) { .vps-plan-includes-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .vps-pricing-section { padding: 72px 16px; } .vps-pricing-header { margin-bottom: 34px; } .vps-billing-control { width: 100%; justify-content: center; } .vps-plans-grid, .vps-plan-includes-grid { grid-template-columns: 1fr; } .vps-plan-header { padding-inline: 24px; } .vps-plan-footer { padding-inline: 24px; } .vps-plan-includes { margin-top: 40px; padding: 28px 22px; } }

/* Full Stitch pricing experience */
.vps-pricing-section { padding: clamp(76px,7vw,108px) 24px 0; background: #f7f8ff; }
.vps-pricing-header { display: block; max-width: 1040px; margin: 0 auto 32px; padding-top: 4px; text-align: center; }
.vps-pricing-header h2 { margin: 0; color: #20212b; font-size: clamp(2.2rem,3.4vw,3.1rem); font-weight: 750; line-height: 1.08; letter-spacing: -.045em; }
@media (min-width: 1200px) { .vps-pricing-header h2 { white-space: nowrap; } }
.vps-pricing-header p { max-width: 660px; margin: 16px auto 0; color: #5d6070; font-size: 1rem; line-height: 1.6; }
.vps-product-tabs { display: flex; width: max-content; margin: 0 auto 48px; padding: 6px; border: 1px solid #dfe2ed; border-radius: 14px; background: #eef0f8; }
.vps-product-tabs button,.vps-product-tabs a { display: grid; min-width: 172px; min-height: 44px; place-items: center; border: 0; border-radius: 10px; background: transparent; color: #565968; font: inherit; font-size: .9rem; font-weight: 600; text-decoration: none; cursor: pointer; }
.vps-product-tabs .is-active { background: #fff; color: #5271ff; box-shadow: 0 2px 8px rgba(31,42,91,.06); }
.vps-pricing-layout { display: grid; grid-template-columns: 250px minmax(0,1fr); gap: 32px; align-items: end; }
.vps-pricing-sidebar { align-self: stretch; padding: 8px 0 20px; color: #424552; }
.vps-save-pill { display: inline-flex; margin-bottom: 28px; padding: 7px 13px; border: 1px solid #f0c8ca; border-radius: 999px; background: #fff8f8; color: #d73b43; font-size: .78rem; font-weight: 700; }
.vps-pricing-sidebar .vps-billing-control { display: grid; grid-template-columns: 1fr 1fr; gap: 0; width: 100%; padding: 5px; border-color: #dfe2ed; border-radius: 999px; background: #eff1f8; box-shadow: none; }
.vps-pricing-sidebar .vps-billing-control > span { display: grid; min-height: 42px; place-items: center; border-radius: 999px; font-size: .86rem; }
.vps-pricing-sidebar .vps-billing-control > span.is-active { background: #fff; box-shadow: 0 2px 8px rgba(31,42,91,.07); }
.vps-pricing-sidebar #billing-toggle { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.vps-pricing-sidebar > em { display: block; margin-top: 18px; color: #777a88; font-size: .83rem; }
.vps-pricing-sidebar hr { margin: 22px 0 20px; border: 0; border-top: 1px solid #dde0ea; }
.vps-pricing-sidebar h3 { margin: 0 0 16px; color: #30323d; font-size: .91rem; font-weight: 700; }
.vps-pricing-sidebar ul { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.vps-pricing-sidebar li { display: flex; align-items: center; gap: 9px; color: #5b5e6b; font-size: .78rem; }
.vps-pricing-sidebar li .material-symbols-outlined { color: #5271ff; font-size: 18px; }
.vps-pricing-layout .vps-plans-grid { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; align-items: end; }
.vps-pricing-layout .vps-plan-card { min-height: 326px; border-color: #dfe2ed; border-radius: 24px; box-shadow: none; }
.vps-pricing-layout .vps-plan-card:hover { border-color: #bfcaff; box-shadow: 0 16px 36px rgba(45,61,127,.09); transform: translateY(-2px); }
.vps-pricing-layout .vps-plan-card.popular { min-height: 344px; border: 2px solid #c6d0ff; background: #f1f3ff; box-shadow: 0 16px 38px rgba(82,113,255,.1); }
.vps-pricing-layout .vps-plan-badge { top: -23px; padding: 10px 25px; border-radius: 999px; font-size: .72rem; line-height: 1.15; letter-spacing: .08em; }
.vps-pricing-layout .vps-plan-header { padding: 30px 32px 16px; }
.vps-pricing-layout .vps-plan-card.popular .vps-plan-header { padding-top: 36px; }
.vps-pricing-layout .vps-plan-title-row h3 { font-size: 1.55rem; font-weight: 720; }
.vps-pricing-layout .vps-plan-header > p { min-height: 38px; margin: 8px 0 17px; font-size: .76rem; }
.vps-plan-discount { display: flex; align-items: center; gap: 10px; margin-bottom: 17px; }
.vps-plan-discount span { padding: 5px 8px; border: 1px solid #f0c8ca; border-radius: 4px; color: #d73b43; font-size: .7rem; font-weight: 700; }
.vps-plan-discount del { color: #999ca8; font-size: .74rem; }
.vps-pricing-layout .vps-plan-price > strong { font-size: clamp(2rem,3vw,2.55rem); }
.vps-pricing-layout .vps-plan-billing { color: #5271ff; font-size: .72rem; }
.vps-pricing-layout .vps-plan-footer { justify-content: flex-end; padding: 8px 32px 30px; }
.vps-pricing-layout .vps-plan-cta { min-height: 52px; border: 0; border-radius: 12px; background: #f1f2f8; color: #30323d; font-size: .86rem; }
.vps-pricing-layout .vps-plan-card.popular .vps-plan-cta { background: #5271ff; color: #fff; box-shadow: 0 8px 18px rgba(82,113,255,.22); }
.vps-pricing-layout .vps-plan-card:not(.popular) .vps-plan-cta:hover { background: #e9ebf4; color: #20212b; }
@media (max-width: 1080px) { .vps-pricing-layout { grid-template-columns: 1fr; } .vps-pricing-sidebar { display: grid; grid-template-columns: auto minmax(280px,420px); gap: 12px 24px; align-items: center; } .vps-pricing-sidebar .vps-save-pill { margin: 0; } .vps-pricing-sidebar > em,.vps-pricing-sidebar hr,.vps-pricing-sidebar h3,.vps-pricing-sidebar ul { grid-column: 1/-1; } }
@media (max-width: 780px) { .vps-pricing-layout .vps-plans-grid { grid-template-columns: 1fr; gap: 36px; } .vps-pricing-layout .vps-plan-card,.vps-pricing-layout .vps-plan-card.popular { min-height: 0; } }
@media (max-width: 560px) { .vps-pricing-section { padding: 72px 16px 42px; } .vps-product-tabs { width: 100%; } .vps-product-tabs button,.vps-product-tabs a { min-width: 0; width: 50%; } .vps-pricing-sidebar { display: block; } .vps-pricing-sidebar .vps-save-pill { margin-bottom: 20px; } .vps-pricing-sidebar .vps-billing-control { width: 100%; } }

/* KVM VPS Pricing Section — Stitch light mode */
.vps-billing-control-centered { width: max-content; margin: 0 auto 22px; padding: 0; border: 0; background: transparent; box-shadow: none; }
.vps-billing-control-centered > span { color: #555866; font-size: .92rem; font-weight: 650; }
.vps-billing-control-centered > span.is-active { color: #20212b; }
.vps-billing-control-centered > strong { margin-left: 6px; padding: 6px 10px; border-radius: 999px; background: #5271ff; color: #fff; font-size: .66rem; letter-spacing: .04em; }
.vps-pricing-section > .vps-pricing-shell > .vps-plans-grid { grid-template-columns: repeat(4,minmax(0,1fr)); gap: 18px; align-items: stretch; }
.vps-pricing-section > .vps-pricing-shell > .vps-plans-grid .vps-plan-card { min-height: 530px; border: 1px solid #d7dae5; border-radius: 16px; box-shadow: 0 2px 5px rgba(32,40,75,.035); }
.vps-pricing-section > .vps-pricing-shell > .vps-plans-grid .vps-plan-card.popular { border: 2px solid #2857df; background: #fff; box-shadow: 0 14px 32px rgba(40,87,223,.12); }
.vps-pricing-section > .vps-pricing-shell > .vps-plans-grid .vps-plan-badge { top: -19px; padding: 8px 22px; border-radius: 999px; background: #2857df; }
.vps-pricing-section > .vps-pricing-shell > .vps-plans-grid .vps-plan-header { padding: 28px 28px 8px; }
.vps-pricing-section > .vps-pricing-shell > .vps-plans-grid .vps-plan-card.popular .vps-plan-header { padding-top: 27px; }
.vps-pricing-section > .vps-pricing-shell > .vps-plans-grid .vps-plan-title-row h3 { font-size: 1.55rem; }
.vps-pricing-section > .vps-pricing-shell > .vps-plans-grid .vps-plan-title-row > span { padding: 5px 9px; border-radius: 8px; background: #fff1e5; color: #a4510a; font-size: .7rem; }
.vps-pricing-section > .vps-pricing-shell > .vps-plans-grid .vps-plan-discount { margin: 24px 0 8px; }
.vps-pricing-section > .vps-pricing-shell > .vps-plans-grid .vps-plan-discount del { color: #666977; font-size: .76rem; }
.vps-pricing-section > .vps-pricing-shell > .vps-plans-grid .vps-plan-price > strong { font-size: clamp(2.2rem,3vw,2.7rem); }
.vps-pricing-section > .vps-pricing-shell > .vps-plans-grid .vps-plan-footer { flex: 0 0 auto; padding: 10px 28px 26px; }
.vps-pricing-section > .vps-pricing-shell > .vps-plans-grid .vps-plan-cta { order: 0; min-height: 50px; border: 2px solid #2857df; border-radius: 9px; background: #fff; color: #2857df; font-size: .88rem; }
.vps-pricing-section > .vps-pricing-shell > .vps-plans-grid .vps-plan-card.popular .vps-plan-cta { background: #2857df; color: #fff; }
.vps-pricing-section > .vps-pricing-shell > .vps-plans-grid .vps-plan-renewal { order: 1; min-height: 44px; margin: 14px 0 0; color: #5c5f6e; font-size: .69rem; }
.vps-pricing-section > .vps-pricing-shell > .vps-plans-grid .vps-plan-features { order: 2; gap: 15px; margin-top: 10px; padding-top: 20px; }
.vps-pricing-section > .vps-pricing-shell > .vps-plans-grid .vps-plan-features > div { font-size: .78rem; font-weight: 560; }
.vps-pricing-section > .vps-pricing-shell > .vps-plans-grid .vps-plan-features .material-symbols-outlined { background: transparent; color: #2857df; font-size: 17px; }
.vps-pricing-section > .vps-pricing-shell > .vps-plan-includes { margin-top: 62px; padding: 38px 44px; border-radius: 17px; background: #eef0ff; }
.vps-pricing-section > .vps-pricing-shell > .vps-plan-includes-grid { margin-top: 30px; }
.vps-pricing-section > .vps-pricing-shell > .vps-pricing-note { margin: 34px 0 0; }
@media (max-width: 1100px) { .vps-pricing-section > .vps-pricing-shell > .vps-plans-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 34px 18px; } }

/* ── VPS use cases ────────────────────────────────────────────────────────── */
/* Stitch-inspired technical plan comparison */
.vps-tech-compare { padding: clamp(54px,5vw,76px) 24px clamp(112px,11vw,170px); background: #f7f8ff; color: #20212b; }
.vps-pricing-section .vps-tech-compare { margin-top: clamp(64px,6vw,92px); padding: 0 0 clamp(88px,8vw,128px); background: transparent; }
.vps-tech-compare-shell { width: min(100%, var(--site-container-width)); margin-inline: auto; }
.vps-tech-compare-header { max-width: 760px; margin: 0 auto 34px; text-align: center; }
.vps-tech-compare-header h2 { margin: 0; font-size: clamp(2rem,3.15vw,2.55rem); font-weight: 740; line-height: 1.12; letter-spacing: -.04em; }
.vps-tech-compare-header p { max-width: 650px; margin: 10px auto 0; color: #606372; font-size: .98rem; line-height: 1.55; }
.vps-tech-table-wrap { overflow-x: auto; border: 1px solid #e3e5ee; border-radius: 24px; background: #fff; }
.vps-tech-table { width: 100%; min-width: 720px; border-spacing: 0; border-collapse: separate; table-layout: fixed; }
.vps-tech-table th,.vps-tech-table td { height: 72px; padding: 16px 24px; border-bottom: 1px solid #eceef4; text-align: center; font-size: .94rem; }
.vps-tech-table tr:last-child th,.vps-tech-table tr:last-child td { border-bottom: 0; }
.vps-tech-table thead th { height: 70px; background: #fafaff; color: #252733; font-size: .95rem; font-weight: 720; }
.vps-tech-table thead th:first-child { width: 34%; border-radius: 23px 0 0; text-align: left; }
.vps-tech-table thead th:last-child { border-radius: 0 23px 0 0; }
.vps-tech-table tbody th { color: #3f4250; text-align: left; font-weight: 560; }
.vps-tech-table td { color: #575a68; font-weight: 520; }
.vps-tech-table .is-featured { background: #f4f5ff; color: #5271ff; font-weight: 700; }
.vps-tech-table thead .is-featured { position: relative; background: #eef0ff; color: #5271ff; }
.vps-tech-table thead .is-featured span { display: block; }
.vps-tech-benefits { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 24px; margin-top: 76px; }
.vps-tech-benefit { min-height: 246px; padding: 32px; border: 1px solid #e3e5ee; border-radius: 24px; background: #fff; }
.vps-tech-benefit > .material-symbols-outlined { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 13px; background: #eef1ff; color: #5271ff; font-size: 23px; }
.vps-tech-benefit h3 { margin: 24px 0 0; font-size: 1.35rem; font-weight: 720; letter-spacing: -.025em; }
.vps-tech-benefit p { max-width: 340px; margin: 13px 0 0; color: #5b5e6d; font-size: .91rem; line-height: 1.65; }
@media (max-width: 900px) { .vps-tech-benefits { grid-template-columns: 1fr; } .vps-tech-benefit { min-height: 0; } }
@media (max-width: 600px) { .vps-tech-compare { padding: 72px 16px 96px; } .vps-tech-compare-header { margin-bottom: 30px; } .vps-tech-table-wrap { margin-right: -16px; border-radius: 16px 0 0 16px; } .vps-tech-benefits { margin-top: 42px; } .vps-tech-benefit { min-height: 0; padding: 24px; } .vps-tech-benefit > .material-symbols-outlined { width: 42px; height: 42px; } }

/* Combined pricing + comparison mobile experience */
@media (max-width: 780px) {
  .vps-pricing-section { overflow: clip; padding: 68px 0 0; }
  .vps-pricing-shell { width: 100%; }
  .vps-pricing-header,.vps-product-tabs,.vps-pricing-sidebar,.vps-tech-compare-header,.vps-tech-benefits { margin-right: 16px; margin-left: 16px; }
  .vps-pricing-header { padding-inline: 4px; }
  .vps-pricing-header h2 { font-size: clamp(2rem,10vw,2.65rem); }
  .vps-pricing-header p { font-size: .94rem; }
  .vps-product-tabs { width: auto; margin-bottom: 34px; }
  .vps-pricing-layout { display: block; }
  .vps-pricing-sidebar { display: grid; grid-template-columns: auto 1fr; gap: 14px 18px; margin-bottom: 34px; padding: 0; }
  .vps-pricing-sidebar .vps-save-pill { align-self: center; margin: 0; white-space: nowrap; }
  .vps-pricing-sidebar .vps-billing-control { min-width: 0; }
  .vps-pricing-sidebar > em { grid-column: 1/-1; margin: 0; text-align: center; }
  .vps-pricing-sidebar hr { display: none; }
  .vps-pricing-sidebar h3 { grid-column: 1/-1; margin: 6px 0 0; }
  .vps-pricing-sidebar ul { grid-column: 1/-1; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px 14px; }
  .vps-pricing-sidebar li { align-items: flex-start; font-size: .73rem; line-height: 1.35; }
  .vps-pricing-layout .vps-plans-grid { display: flex; gap: 14px; overflow-x: auto; padding: 24px 16px 20px; scroll-padding-inline: 16px; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .vps-pricing-layout .vps-plans-grid::-webkit-scrollbar { display: none; }
  .vps-pricing-layout .vps-plan-card,.vps-pricing-layout .vps-plan-card.popular { width: min(84vw,350px); min-width: min(84vw,350px); min-height: 330px; scroll-snap-align: center; }
  .vps-pricing-layout .vps-plan-card.popular { min-height: 344px; }
  .vps-pricing-section > .vps-pricing-shell > .vps-plans-grid { display: flex; gap: 14px; overflow-x: auto; padding: 24px 16px 20px; scroll-padding-inline: 16px; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .vps-pricing-section > .vps-pricing-shell > .vps-plans-grid::-webkit-scrollbar { display: none; }
  .vps-pricing-section > .vps-pricing-shell > .vps-plans-grid .vps-plan-card,.vps-pricing-section > .vps-pricing-shell > .vps-plans-grid .vps-plan-card.popular { width: min(84vw,350px); min-width: min(84vw,350px); min-height: 520px; scroll-snap-align: center; }
  .vps-billing-control-centered { margin-bottom: 30px; }
  .vps-pricing-section > .vps-pricing-shell > .vps-plan-includes { margin: 42px 16px 0; padding: 28px 22px; }
  .vps-pricing-section > .vps-pricing-shell > .vps-plan-includes-grid { grid-template-columns: 1fr; gap: 14px; }
  .vps-pricing-section > .vps-pricing-shell > .vps-pricing-note { margin: 26px 20px 0; }
  .vps-pricing-section .vps-tech-compare { margin-top: 52px; padding: 0 0 88px; }
  .vps-tech-compare-header { margin-bottom: 28px; }
  .vps-tech-compare-header h2 { font-size: clamp(1.85rem,8vw,2.3rem); }
  .vps-tech-table-wrap { margin: 0; border-right: 0; border-left: 0; border-radius: 0; box-shadow: inset 14px 0 20px -24px rgba(23,30,60,.5); }
  .vps-tech-table { min-width: 680px; }
  .vps-tech-table th,.vps-tech-table td { height: 64px; padding: 13px 16px; font-size: .82rem; }
  .vps-tech-table thead th:first-child,.vps-tech-table tbody th { position: sticky; left: 0; z-index: 2; width: 170px; min-width: 170px; background: #fff; box-shadow: 8px 0 18px -18px rgba(24,31,62,.7); }
  .vps-tech-table thead th:first-child { z-index: 3; background: #fafaff; border-radius: 0; }
  .vps-tech-benefits { grid-template-columns: 1fr; gap: 14px; margin-top: 36px; }
  .vps-tech-benefit { display: grid; grid-template-columns: 44px minmax(0,1fr); gap: 16px; min-height: 0; padding: 22px; border-radius: 18px; }
  .vps-tech-benefit > .material-symbols-outlined { width: 44px; height: 44px; }
  .vps-tech-benefit h3 { margin-top: 1px; font-size: 1.1rem; }
  .vps-tech-benefit p { margin-top: 8px; font-size: .84rem; }
}
@media (max-width: 420px) {
  .vps-pricing-sidebar { grid-template-columns: 1fr; }
  .vps-pricing-sidebar .vps-save-pill { justify-self: center; }
  .vps-pricing-sidebar > em,.vps-pricing-sidebar h3,.vps-pricing-sidebar ul { grid-column: 1; }
  .vps-pricing-sidebar ul { grid-template-columns: 1fr; padding-inline: 12px; }
  .vps-pricing-layout .vps-plan-card,.vps-pricing-layout .vps-plan-card.popular { width: 88vw; min-width: 88vw; }
}

/* Premium light pricing treatment inspired by the supplied reference */
.vps-pricing-section { background: linear-gradient(180deg,#faf9ff 0%,#f6f7ff 100%); color: #1b1c25; }
.vps-pricing-coupon { display: inline-flex; align-items: center; gap: 7px; margin-bottom: 24px; padding: 6px 12px; border: 1px solid #ccebd9; border-radius: 999px; background: #effaf4; color: #14824b; font-size: .7rem; font-weight: 750; }
.vps-pricing-coupon .material-symbols-outlined { font-size: 15px; }
.vps-pricing-header h2 { color: #191a22; }
.vps-pricing-header p { color: #5d6070; }
.vps-billing-control-centered > span { color: #747786; }
.vps-billing-control-centered > span.is-active { color: #191a22; }
.vps-billing-control-centered > strong { background: #5271ff; }
#billing-toggle { background: #cfd3e2; }
.vps-pricing-section > .vps-pricing-shell > .vps-plans-grid { padding-top: 44px; }
.vps-pricing-section > .vps-pricing-shell > .vps-plans-grid .vps-plan-card { min-height: 0; margin-top: 0; border: 1px solid #d9dce8; border-radius: 22px; background: #fff; color: #191a22; box-shadow: 0 10px 30px rgba(37,48,93,.055); }
.vps-pricing-section > .vps-pricing-shell > .vps-plans-grid .vps-plan-card:hover { border-color: #aebcff; box-shadow: 0 20px 44px rgba(44,65,154,.13); }
.vps-pricing-section > .vps-pricing-shell > .vps-plans-grid .vps-plan-card.popular { border: 2px solid #5271ff; border-top: 0; border-radius: 0 0 22px 22px; background: linear-gradient(180deg,#f7f9ff 0%,#fff 24%); box-shadow: 0 18px 44px rgba(82,113,255,.16); }
.vps-pricing-section > .vps-pricing-shell > .vps-plans-grid .vps-plan-badge { display: grid; top: -48px; left: -2px; width: calc(100% + 4px); min-height: 50px; padding: 0 16px; place-items: center; border: 2px solid #5271ff; border-bottom: 0; border-radius: 22px 22px 0 0; background: #5271ff; color: #fff; font-size: .73rem; transform: none; }
.vps-pricing-section > .vps-pricing-shell > .vps-plans-grid .vps-plan-title-row h3 { color: #191a22; }
.vps-pricing-section > .vps-pricing-shell > .vps-plans-grid .vps-plan-title-row > span { border-radius: 7px; background: #ffbd24; color: #18130a; }
.vps-pricing-section > .vps-pricing-shell > .vps-plans-grid .vps-plan-discount del { color: #8b8e9b; }
.vps-pricing-section > .vps-pricing-shell > .vps-plans-grid .vps-plan-price { color: #191a22; }
.vps-pricing-section > .vps-pricing-shell > .vps-plans-grid .vps-plan-price > span,.vps-pricing-section > .vps-pricing-shell > .vps-plans-grid .vps-plan-price > small { color: #666978; }
.vps-pricing-section > .vps-pricing-shell > .vps-plans-grid .vps-plan-cta { border: 1.5px solid #5271ff; background: #fff; color: #3154e7; }
.vps-pricing-section > .vps-pricing-shell > .vps-plans-grid .vps-plan-card.popular .vps-plan-cta { border-color: #5271ff; background: #5271ff; color: #fff; box-shadow: 0 8px 20px rgba(82,113,255,.2); }
.vps-pricing-section > .vps-pricing-shell > .vps-plans-grid .vps-plan-card:not(.popular) .vps-plan-cta:hover { border-color: #5271ff; background: #5271ff; color: #fff; }
.vps-pricing-section > .vps-pricing-shell > .vps-plans-grid .vps-plan-renewal { color: #676a78; }
.vps-pricing-section > .vps-pricing-shell > .vps-plans-grid .vps-plan-features { border-color: #e2e4ec; }
.vps-pricing-section > .vps-pricing-shell > .vps-plans-grid .vps-plan-features > div { color: #393c48; }
.vps-pricing-section > .vps-pricing-shell > .vps-plans-grid .vps-plan-features .material-symbols-outlined { color: #5271ff; }
.vps-pricing-section > .vps-pricing-shell > .vps-plan-includes { border-color: #d7dced; background: #eef1ff; }
.vps-pricing-section > .vps-pricing-shell > .vps-plan-includes h3 { color: #191a22; }
.vps-pricing-section > .vps-pricing-shell > .vps-plan-includes h3 span { color: #5271ff; }
.vps-pricing-section > .vps-pricing-shell > .vps-plan-includes-grid > span { color: #343743; }
.vps-pricing-section > .vps-pricing-shell > .vps-plan-includes-grid i { background: #dfe6ff; color: #3154e7; }
.vps-pricing-section > .vps-pricing-shell > .vps-pricing-note { color: #747786; }
.vps-pricing-section .vps-tech-compare { color: #191a22; }
.vps-pricing-section .vps-tech-compare-header h2 { color: #191a22; }
.vps-pricing-section .vps-tech-compare-header p { color: #656876; }
.vps-pricing-section .vps-tech-table-wrap { border-color: #dfe2ec; background: #fff; }
.vps-pricing-section .vps-tech-table th,.vps-pricing-section .vps-tech-table td { border-color: #e9ebf1; }
.vps-pricing-section .vps-tech-table thead th { background: #f8f9fd; color: #252733; }
.vps-pricing-section .vps-tech-table tbody th { color: #4c4f5c; }
.vps-pricing-section .vps-tech-table td { color: #5b5e6c; }
.vps-pricing-section .vps-tech-table .is-featured { background: #f0f3ff; color: #5271ff; }
.vps-pricing-section .vps-tech-benefit { border-color: #dfe2ec; background: #fff; }
.vps-pricing-section .vps-tech-benefit h3 { color: #191a22; }
.vps-pricing-section .vps-tech-benefit p { color: #626573; }
.vps-pricing-section .vps-tech-benefit > .material-symbols-outlined { background: #edf1ff; color: #5271ff; }
@media (max-width: 780px) {
  .vps-pricing-section .vps-tech-table thead th:first-child,.vps-pricing-section .vps-tech-table tbody th { background: #fff; }
  .vps-pricing-section .vps-tech-table thead th:first-child { background: #f8f9fd; }
}

.vps-use-cases { padding: clamp(88px,9vw,140px) 24px; background: #fff; color: #191a22; }
.vps-use-cases-shell { width: min(100%, var(--site-container-width)); margin-inline: auto; }
.vps-use-cases-header { max-width: 850px; margin: 0 auto 64px; text-align: center; }
.vps-use-cases-header > span { display: inline-flex; padding: 6px 12px; border-radius: 999px; background: rgba(82,113,255,.08); color: #5271ff; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.vps-use-cases-header h2 { margin: 18px 0 0; font-size: clamp(2.35rem,4.3vw,3.5rem); font-weight: 760; line-height: 1.06; letter-spacing: -.05em; }
.vps-use-cases-header p { max-width: 690px; margin: 16px auto 0; color: #5a5d6c; font-size: 1rem; line-height: 1.7; }
.vps-use-cases-featured { display: grid; grid-template-columns: minmax(0,1fr) minmax(440px,.9fr); gap: clamp(54px,7vw,100px); align-items: center; padding: 18px 10px 64px; }
.vps-use-cases-primary { display: grid; gap: 48px; }
.vps-use-case-detail { display: grid; grid-template-columns: 44px minmax(0,1fr); gap: 18px; }
.vps-use-case-detail > .material-symbols-outlined { color: #20212a; font-size: 30px; font-variation-settings: 'wght' 450; }
.vps-use-case-detail h3 { margin: 0; font-size: clamp(1.45rem,2.3vw,1.9rem); font-weight: 740; letter-spacing: -.03em; }
.vps-use-case-detail p { max-width: 620px; margin: 14px 0 0; color: #4f5261; font-size: .95rem; line-height: 1.72; }
.vps-use-case-visual { position: relative; padding: 34px; border-radius: 22px; background: linear-gradient(145deg,#1d6ef2,#a8c9ff); box-shadow: 0 22px 55px rgba(45,94,186,.16); }
.vps-store-window { position: relative; min-height: 360px; padding: 48px 24px 28px; border: 1px solid rgba(255,255,255,.72); border-radius: 15px; background: rgba(255,255,255,.9); box-shadow: 0 16px 34px rgba(30,67,132,.2); }
.vps-store-bar { position: absolute; inset: 0 0 auto; display: flex; height: 34px; align-items: center; gap: 6px; padding: 0 12px; border-bottom: 1px solid #e5e7ef; border-radius: 15px 15px 0 0; background: #f6f7fb; }
.vps-store-bar i { width: 8px; height: 8px; border-radius: 50%; background: #ef4444; }.vps-store-bar i:nth-child(2) { background: #f59e0b; }.vps-store-bar i:nth-child(3) { background: #22c55e; }
.vps-store-bar span { margin-left: 8px; color: #9699a7; font-size: 8px; }
.vps-store-content { display: grid; grid-template-columns: 1.1fr .9fr; gap: 18px; min-height: 230px; }
.vps-store-product { display: grid; place-items: center; border-radius: 12px; background: linear-gradient(145deg,#e8edff,#c6d8ff); color: #5271ff; }.vps-store-product .material-symbols-outlined { font-size: 90px; font-variation-settings: 'FILL' 1; }
.vps-store-copy { display: flex; flex-direction: column; gap: 14px; padding-top: 22px; }.vps-store-copy b { display: block; height: 13px; border-radius: 999px; background: #e8eaf2; }.vps-store-copy b:nth-child(2) { width: 82%; }.vps-store-copy b:nth-child(3) { width: 58%; }.vps-store-copy button { min-height: 38px; margin-top: auto; border: 0; border-radius: 8px; background: #5271ff; color: #fff; font-size: 11px; font-weight: 750; }
.vps-store-status { position: absolute; top: -18px; left: -18px; display: flex; overflow: hidden; border: 1px solid #dfe2ec; border-radius: 10px; background: #fff; box-shadow: 0 9px 22px rgba(30,55,105,.15); }.vps-store-status > span { display: flex; flex-direction: column; padding: 9px 12px; border-right: 1px solid #edf0f5; }.vps-store-status > span:last-child { border: 0; }.vps-store-status small { color: #9699a7; font-size: 7px; text-transform: uppercase; }.vps-store-status strong { margin-top: 3px; color: #16a269; font-size: 9px; }
.vps-store-chart { position: absolute; right: -20px; bottom: -20px; left: 32%; padding: 13px 16px; border: 1px solid #dfe2ec; border-radius: 10px; background: rgba(255,255,255,.96); box-shadow: 0 10px 24px rgba(30,55,105,.16); }.vps-store-chart > span { color: #5d6070; font-size: 9px; font-weight: 700; }.vps-store-chart > div { display: flex; height: 46px; align-items: flex-end; gap: 4px; margin-top: 7px; }.vps-store-chart i { width: 7%; border-radius: 2px 2px 0 0; background: #72a5ff; }.vps-store-chart i:nth-child(3n+1) { height: 38%; }.vps-store-chart i:nth-child(3n+2) { height: 72%; }.vps-store-chart i:nth-child(3n) { height: 52%; }
.vps-use-cases-secondary { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); border: 1px solid #e0e2eb; background: #fff; }
.vps-use-cases-secondary article { position: relative; min-height: 270px; padding: clamp(32px,4vw,52px); }.vps-use-cases-secondary article + article { border-left: 1px solid #e0e2eb; }
.vps-use-cases-secondary .material-symbols-outlined { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 11px; background: rgba(82,113,255,.09); color: #5271ff; font-size: 23px; }
.vps-use-cases-secondary h3 { margin: 22px 0 0; font-size: clamp(1.4rem,2.2vw,1.8rem); font-weight: 730; letter-spacing: -.025em; }.vps-use-cases-secondary p { max-width: 600px; margin: 15px 0 0; color: #4f5261; font-size: .93rem; line-height: 1.72; }
@media (max-width: 960px) { .vps-use-cases-featured { grid-template-columns: 1fr; } .vps-use-case-visual { max-width: 680px; width: 100%; margin: 0 auto; } }
@media (max-width: 680px) { .vps-use-cases { padding: 72px 16px; } .vps-use-cases-header { margin-bottom: 44px; } .vps-use-cases-featured { gap: 48px; padding-inline: 0; } .vps-use-cases-primary { gap: 38px; } .vps-use-case-detail { grid-template-columns: 36px minmax(0,1fr); gap: 12px; } .vps-use-case-visual { padding: 20px; } .vps-store-window { min-height: 300px; } .vps-store-status { left: -8px; } .vps-store-chart { right: -8px; bottom: -12px; left: 18%; } .vps-use-cases-secondary { grid-template-columns: 1fr; } .vps-use-cases-secondary article + article { border-top: 1px solid #e0e2eb; border-left: 0; } }

/* ── Stitch email solutions vertical story ───────────────────────────────── */
.vps-email-solutions { padding: clamp(88px,9vw,140px) 24px; background: #f9f7ff; color: #1a1b23; }
.vps-email-shell { width: min(100%, var(--site-container-width)); margin-inline: auto; }
.vps-email-header { max-width: 760px; margin-bottom: 72px; }
.vps-email-header > span { display: inline-flex; padding: 6px 12px; border-radius: 999px; background: rgba(82,113,255,.09); color: #5271ff; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.vps-email-header h2 { margin: 18px 0 0; font-size: clamp(2.25rem,4vw,3.3rem); font-weight: 750; line-height: 1.08; letter-spacing: -.045em; }
.vps-email-header p { max-width: 690px; margin: 16px 0 0; color: #565968; font-size: 1.04rem; line-height: 1.7; }
.vps-email-story { display: grid; grid-template-columns: minmax(0,1fr) minmax(460px,1fr); gap: clamp(56px,7vw,110px); align-items: start; }
.vps-email-visual { position: sticky; top: 150px; grid-column: 2; grid-row: 1; }
.vps-email-browser { overflow: hidden; aspect-ratio: 16/10; border: 1px solid #d5d6e4; border-radius: 18px; background: #f0effb; box-shadow: 0 18px 50px rgba(45,54,98,.1); }
.vps-email-browser-bar { display: flex; height: 38px; align-items: center; gap: 7px; padding: 0 14px; border-bottom: 1px solid #d5d6e4; background: #e4e3ef; }
.vps-email-browser-bar i { width: 9px; height: 9px; border-radius: 50%; background: #ef4444; }
.vps-email-browser-bar i:nth-child(2) { background: #f59e0b; }.vps-email-browser-bar i:nth-child(3) { background: #5271ff; }
.vps-email-browser-bar span { display: flex; height: 21px; flex: 1; align-items: center; margin-left: 10px; padding: 0 14px; border-radius: 999px; background: rgba(255,255,255,.8); color: #858897; font-size: 9px; }
.vps-email-canvas { position: relative; display: grid; height: calc(100% - 38px); overflow: hidden; place-items: center; background: #f8f8fc; }
.vps-infrastructure-media { position: absolute; inset: 0; width: 100%; height: 100%; padding: clamp(16px,2vw,28px); object-fit: contain; opacity: 0; transform: translateY(14px) scale(.96); transition: opacity .48s ease, transform .65s cubic-bezier(.22,1,.36,1); }
.vps-infrastructure-media.is-active { opacity: 1; transform: translateY(0) scale(1); }
.vps-email-steps { grid-column: 1; grid-row: 1; display: grid; gap: clamp(112px,11vw,168px); padding: 30px 0 90px; }
.vps-email-step { position: relative; max-width: 510px; padding-left: 42px; border-left: 2px solid #d5d6e4; opacity: .32; filter: blur(1.2px); transform: translateY(18px) scale(.985); transition: border-color .4s ease, opacity .45s ease, filter .45s ease, transform .55s cubic-bezier(.22,1,.36,1); }
.vps-email-step.is-active { border-color: #5271ff; opacity: 1; filter: blur(0); transform: translateY(0) scale(1); }
.vps-email-provider { position: absolute; top: 0; left: -25px; display: grid; width: 48px; height: 48px; place-items: center; overflow: hidden; border: 1px solid #d5d6e4; border-radius: 50%; background: #fff; box-shadow: 0 5px 14px rgba(37,48,94,.08); }
.vps-email-provider img { width: 32px; height: 32px; object-fit: contain; }
.vps-email-provider .material-symbols-outlined { color: #5271ff; font-size: 24px; font-variation-settings: 'FILL' 1, 'wght' 550; }
.vps-email-label { display: inline-flex; margin-bottom: 18px; padding: 5px 10px; border-radius: 999px; background: rgba(82,113,255,.08); color: #5271ff; font-size: 10px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.vps-email-step h3 { margin: 0; font-size: clamp(1.7rem,3vw,2.25rem); font-weight: 740; letter-spacing: -.035em; }
.vps-email-step p { max-width: 470px; margin: 16px 0 24px; color: #5b5e6d; font-size: .94rem; line-height: 1.72; }
.vps-email-step > a { display: inline-flex; min-height: 46px; align-items: center; gap: 9px; padding: 0 20px; border-radius: 10px; background: #5271ff; color: #fff; font-size: .8rem; font-weight: 750; text-decoration: none; box-shadow: 0 8px 20px rgba(82,113,255,.18); transition: transform .18s ease, box-shadow .18s ease; }
.vps-email-step > a:hover { transform: translateY(-2px); box-shadow: 0 13px 26px rgba(82,113,255,.25); }.vps-email-step > a .material-symbols-outlined { font-size: 17px; }
@media (max-width: 900px) { .vps-email-story { grid-template-columns: 1fr; } .vps-email-visual { position: relative; top: auto; grid-column: 1; grid-row: 1; max-width: 680px; width: 100%; margin: 0 auto; } .vps-email-steps { grid-column: 1; grid-row: 2; gap: 72px; padding: 20px 0 0; } .vps-email-step { max-width: none; opacity: 1; filter: none; transform: none; } }
@media (max-width: 640px) { .vps-email-solutions { padding: 72px 16px; } .vps-email-header { margin-bottom: 42px; } .vps-email-browser { border-radius: 14px; } .vps-email-step { padding-left: 32px; } .vps-email-provider { left: -21px; width: 40px; height: 40px; } .vps-email-provider img { width: 27px; height: 27px; } }
@media (prefers-reduced-motion: reduce) { .vps-infrastructure-media, .vps-email-step, .vps-email-step > a { transition: none; } }

/* ── Support section ──────────────────────────────────────────────────────── */
.support-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: start;
}
@media (min-width: 1024px) {
    .support-grid {
        grid-template-columns: 5fr 7fr;
    }
}
.stat-divider {
    display: none;
}
@media (min-width: 768px) {
    .stat-divider {
        display: block !important;
    }
}

/* ── Apps hub (orbit layout + floating icons) ─────────────────────────────── */
@keyframes vps-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}
.vps-app-float   { animation: vps-float 4s ease-in-out infinite; }
.vps-app-float-d { animation: vps-float 4s ease-in-out infinite; animation-delay: 2s; }
.vps-conn-line   { fill: none; stroke: #c7c7e0; stroke-width: 1.5; stroke-dasharray: 5 3; opacity: 0.7; }
.vps-orbit-col   { display: none; flex-direction: column; gap: 3.5rem; }
.vps-mobile-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 3rem; }
@media (min-width: 1024px) {
    .vps-orbit-col   { display: flex; }
    .vps-mobile-grid { display: none; }
    .vps-svg-lines   { display: block !important; }
    .lg-row          { flex-direction: row !important; gap: 1rem !important; }
}
.vps-app-icon {
    background: #fff;
    border-radius: 18px;
    border: 1.5px solid rgba(82, 113, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 28px -6px rgba(82, 113, 255, 0.14), 0 2px 6px -2px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.2s, transform 0.2s;
}
.vps-app-icon:hover {
    box-shadow: 0 14px 36px -6px rgba(82, 113, 255, 0.22);
    transform: translateY(-2px);
}
.vps-app-label {
    font-size: 11px;
    font-weight: 700;
    color: #57586c;
    letter-spacing: 0.02em;
    margin-bottom: 6px;
}

/* ── Misc animations ──────────────────────────────────────────────────────── */
@keyframes typing-bounce {
    0%, 80%, 100% { transform: translateY(0); }
    40%           { transform: translateY(-5px); }
}

/* ── Latest VPS articles (Stitch: Precision Modernism) ───────────────────── */
.vps-latest-articles {
    padding: clamp(72px, 9vw, 112px) max(24px, calc((100vw - 1280px) / 2));
    background: #fbf8ff;
}
.vps-latest-articles__header {
    margin: 0 auto clamp(42px, 6vw, 64px);
    text-align: center;
}
.vps-latest-articles__eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    padding: 6px 16px;
    border-radius: 999px;
    background: #f3f2fe;
    color: #224dda;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .05em;
}
.vps-latest-articles__header h2,
.vps-latest-articles__header p {
    font-family: var(--font-brand-display);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.02em;
}
.vps-latest-articles__header h2 { margin: 0 0 4px; color: #1a1b23; }
.vps-latest-articles__header p {
    position: relative;
    display: inline-block;
    margin: 0;
    color: transparent;
    -webkit-text-stroke: 1.5px #224dda;
}
.vps-latest-articles__header p::after {
    position: absolute;
    right: 0;
    bottom: -10px;
    left: 0;
    height: 8px;
    border-top: 2px solid rgba(34,77,218,.22);
    border-radius: 50%;
    content: '';
    transform: rotate(-1deg);
}
.vps-latest-articles__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.vps-article-card { min-width: 0; }
.vps-article-card__image {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    margin-bottom: 16px;
    border-radius: 16px;
    background: #bccdf4;
}
.vps-article-card--rose .vps-article-card__image { background: #f9a8a8; }
.vps-article-card--mint .vps-article-card__image { background: #c1ece5; }
.vps-article-card__image::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.1), transparent 55%);
    content: '';
    pointer-events: none;
}
.vps-article-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    mix-blend-mode: multiply;
    transition: transform .5s ease-out;
}
.vps-article-card:hover .vps-article-card__image img { transform: scale(1.05); }
.vps-article-card__placeholder { display: grid; width: 100%; height: 100%; place-items: center; color: rgba(26,27,35,.56); }
.vps-article-card__placeholder .material-symbols-outlined { font-size: 54px; }
.vps-article-card__meta { display: flex; min-height: 28px; align-items: center; justify-content: space-between; gap: 12px; }
.vps-article-card__meta a {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 6px;
    background: #f3f2fe;
    color: #444655;
    font-size: 12px;
    font-weight: 650;
    text-decoration: none;
}
.vps-article-card__meta time { color: #747686; font-size: 12px; }
.vps-article-card h3 { margin: 9px 0 0; font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 650; line-height: 1.32; letter-spacing: -.02em; }
.vps-article-card h3 a { color: #1a1b23; text-decoration: none; transition: color .2s ease; }
.vps-article-card:hover h3 a { color: #224dda; }
.vps-article-card :focus-visible { outline: 3px solid rgba(34,77,218,.32); outline-offset: 4px; }
@media (max-width: 820px) { .vps-latest-articles__grid { grid-template-columns: 1fr; gap: 40px; } .vps-article-card { max-width: 620px; width: 100%; margin-inline: auto; } }
@media (max-width: 520px) { .vps-latest-articles { padding-inline: 16px; } .vps-article-card__meta { align-items: flex-start; flex-direction: column; gap: 7px; } }
@media (prefers-reduced-motion: reduce) { .vps-article-card__image img { transition: none; } }
