/* ================================================
   VPS.CSS — Light Clean Design
   Theme: White + terminal green + electric blue
   Fonts: Outfit (UI) + JetBrains Mono (terminal)
   ================================================ */

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

.vps-hero {
    position: relative;
    background: #f0f7f4;
    background-image:
        radial-gradient(ellipse 80% 60% at 70% 50%, rgba(0, 200, 100, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 20% 30%, rgba(65, 105, 225, 0.05) 0%, transparent 50%);
    padding: 80px 0 0;
    min-height: 520px;
    overflow: hidden;
    color: #0f172a;
}

.vps-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.vps-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(34, 197, 94, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 197, 94, 0.08) 1px, transparent 1px);
    background-size: 60px 60px;
}

.vps-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.vps-glow-1 {
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(34, 197, 94, 0.12), transparent);
    top: -100px;
    right: -100px;
}

.vps-glow-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(65, 105, 225, 0.08), transparent);
    bottom: 0;
    left: 0;
}

.vps-scanline {
    display: none;
}

.vps-hero-container {
    display: flex;
    align-items: center;
    gap: 48px;
    position: relative;
    z-index: 1;
    padding-bottom: 50px;
}

.vps-hero-left {
    flex: 1;
    min-width: 0;
}

.vps-terminal-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e8f5ee;
    border: 1px solid rgba(34, 197, 94, 0.35);
    padding: 8px 16px;
    border-radius: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: #334155;
    margin-bottom: 24px;
}

.vps-term-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.vps-dot-red { background: #ef4444; }
.vps-dot-yellow { background: #f59e0b; }
.vps-dot-green { background: #22c55e; }

.vps-term-text { margin-left: 4px; }

.vps-cursor {
    color: #22c55e;
    animation: vps-blink-cur 1s steps(1) infinite;
}

@keyframes vps-blink-cur {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

.vps-hero-title {
    font-size: 52px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 18px;
    letter-spacing: -1.5px;
    font-family: 'Outfit', sans-serif;
}

.vps-highlight {
    color: #22c55e;
    text-shadow: 0 0 40px rgba(34, 197, 94, 0.2);
}

.vps-hero-sub {
    font-size: 15px;
    color: #475569;
    margin-bottom: 24px;
    line-height: 1.65;
    max-width: 480px;
}

.vps-hero-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 26px;
}

.vps-hero-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13.5px;
    color: #334155;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 400;
}

.vps-feat-prefix {
    color: #22c55e;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.vps-hero-price {
    font-size: 15px;
    color: #475569;
    margin-bottom: 24px;
}

.vps-hero-price span {
    color: #0f172a;
    font-size: 26px;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
}

.vps-hero-price em {
    font-style: normal;
    font-size: 15px;
    font-weight: 500;
    color: #64748b;
}

.vps-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    align-items: center;
}

.vps-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #22c55e;
    color: #021108;
    text-decoration: none;
    padding: 13px 26px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 800;
    transition: 0.25s;
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.3);
    letter-spacing: 0.01em;
}

.vps-btn-primary:hover {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(34, 197, 94, 0.4);
}

.vps-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #475569;
    text-decoration: none;
    padding: 13px 26px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #d1d5db;
    transition: 0.25s;
}

.vps-btn-ghost:hover {
    border-color: rgba(34, 197, 94, 0.5);
    color: #16a34a;
}

.vps-hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}

.vps-stat {
    display: flex;
    flex-direction: column;
    padding: 0 18px 0 0;
}

.vps-stat strong {
    font-size: 20px;
    font-weight: 800;
    color: #22c55e;
    line-height: 1.1;
    font-family: 'Outfit', sans-serif;
}

.vps-stat span {
    font-size: 11px;
    color: #64748b;
    font-weight: 400;
    margin-top: 2px;
}

.vps-stat-sep {
    width: 1px;
    height: 32px;
    background: rgba(0, 0, 0, 0.1);
    margin: 0 18px 0 0;
    flex-shrink: 0;
}

.vps-hero-right {
    flex: 0 0 440px;
    position: relative;
}

.vps-terminal {
    background: #0a0f1e;
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(34, 197, 94, 0.08),
        0 24px 60px rgba(0, 0, 0, 0.2),
        0 0 50px rgba(34, 197, 94, 0.07);
}

.vps-terminal-bar {
    background: #111827;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.vps-tb-dots { display: flex; gap: 6px; }

.vps-dot-r { width: 10px; height: 10px; border-radius: 50%; background: #ef4444; }
.vps-dot-y { width: 10px; height: 10px; border-radius: 50%; background: #f59e0b; }
.vps-dot-g { width: 10px; height: 10px; border-radius: 50%; background: #22c55e; }

.vps-tb-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: #4b5563;
    flex: 1;
    text-align: center;
}

.vps-terminal-body {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.vps-tline {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    line-height: 1.5;
}

.vps-prompt { color: #22c55e; font-weight: 700; }
.vps-cmd { color: #60a5fa; }

.vps-tline-out { margin: 6px 0; }

.vps-logo-art {
    display: block;
    color: #22c55e;
    font-size: 9px;
    line-height: 1.35;
    opacity: 0.8;
    white-space: pre;
    font-family: 'JetBrains Mono', monospace;
    overflow: hidden;
}

.vps-tline-info { display: flex; gap: 0; }

.vps-key { color: #4b5563; min-width: 72px; font-size: 10.5px; }
.vps-val { color: #e2e8f0; font-size: 10.5px; }
.vps-green { color: #22c55e !important; }

.vps-cursor-blink {
    color: #22c55e;
    animation: vps-blink-cur 1s steps(1) infinite;
}

.vps-float-chip {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #0f172a;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 11px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    font-family: 'Outfit', sans-serif;
}

.vps-chip-1 { top: -14px; left: 20px; animation: vps-float-a 3s ease-in-out infinite; }
.vps-chip-2 { top: -14px; right: 30px; animation: vps-float-b 3s ease-in-out infinite; animation-delay: 1s; }
.vps-chip-3 { bottom: 50px; right: -18px; animation: vps-float-b 3s ease-in-out infinite; animation-delay: 2s; }

@keyframes vps-float-a { 0%, 100% { transform: translateY(0) } 50% { transform: translateY(-7px) } }
@keyframes vps-float-b { 0%, 100% { transform: translateY(0) } 50% { transform: translateY(-7px) } }

/* =========================
   TRUST BAR
========================= */

.vps-trust-bar {
    background: #e8f5ee;
    border-top: 1px solid rgba(34, 197, 94, 0.15);
    border-bottom: 1px solid rgba(34, 197, 94, 0.1);
    padding: 0;
}

.vps-trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.vps-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 22px 28px;
    color: #334155;
    font-size: 13px;
}

.vps-trust-item strong {
    display: block;
    color: #0f172a;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 1px;
}

.vps-trust-item span {
    display: block;
    font-size: 11px;
    color: #64748b;
}

.vps-trust-icon {
    color: #22c55e;
    font-size: 18px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.vps-trust-sep {
    width: 1px;
    height: 40px;
    background: rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

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

.vps-plans {
    padding: 80px 0;
    background: #f8fffe;
}

.vps-plans .section-header .section-badge,
.vps-plans .section-title,
.vps-plans .section-subtitle {
    color: #0f172a;
}

.vps-plans .section-badge {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border-color: rgba(34, 197, 94, 0.2);
}

.vps-plans .section-subtitle {
    color: #475569;
}

.vps-plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: start;
}

.vps-plan-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px 22px;
    position: relative;
    transition: 0.3s;
}

.vps-plan-card:hover {
    border-color: rgba(34, 197, 94, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.vps-plan-hot {
    border-color: rgba(34, 197, 94, 0.5);
    background: #f0fdf4;
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(34, 197, 94, 0.15);
}

.vps-plan-hot:hover { transform: translateY(-12px); }

.vps-hot-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: #22c55e;
    color: #021108;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 16px;
    border-radius: 20px;
    white-space: nowrap;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.vps-plan-tier {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: #22c55e;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
}

.vps-plan-name {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
    font-family: 'Outfit', sans-serif;
}

.vps-plan-price {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    margin-bottom: 4px;
}

.vps-price-sym {
    font-size: 18px;
    font-weight: 700;
    color: #64748b;
    padding-bottom: 5px;
    font-family: 'Outfit', sans-serif;
}

.vps-price-num {
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
    font-family: 'Outfit', sans-serif;
}

.vps-plan-hot .vps-price-num { color: #22c55e; }

.vps-price-per {
    font-size: 13px;
    color: #64748b;
    padding-bottom: 7px;
    font-family: 'Outfit', sans-serif;
}

.vps-plan-orig {
    font-size: 11px;
    color: #94a3b8;
    margin-bottom: 20px;
    min-height: 16px;
    font-family: 'Outfit', sans-serif;
}

.vps-plan-specs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
    padding: 16px 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.vps-spec-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.vps-spec-icon { font-size: 14px; flex-shrink: 0; width: 20px; }

.vps-spec-label {
    color: #64748b;
    flex: 1;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
}

.vps-spec-val {
    color: #0f172a;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
}

.vps-green-txt { color: #22c55e !important; }

.vps-plan-btn {
    display: block;
    text-align: center;
    padding: 13px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.25s;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.02em;
}

.vps-btn-primary {
    background: #22c55e;
    color: #021108;
    box-shadow: 0 6px 24px rgba(34, 197, 94, 0.3);
}

.vps-btn-primary:hover {
    background: #16a34a;
    transform: translateY(-2px);
}

.vps-btn-outline {
    background: transparent;
    color: #475569;
    border: 1px solid #d1d5db;
}

.vps-btn-outline:hover {
    border-color: rgba(34, 197, 94, 0.5);
    color: #16a34a;
    background: rgba(34, 197, 94, 0.05);
}

.vps-plans-note {
    text-align: center;
    font-size: 13px;
    color: #64748b;
    margin-top: 32px;
    font-family: 'Outfit', sans-serif;
}

/* =========================
   CONTROL PANELS
========================= */

.vps-panels {
    padding: 80px 0;
    background: #f8faff;
    border-top: 1px solid #e5e7eb;
}

.vps-panels .section-badge {
    background: rgba(96, 165, 250, 0.1);
    color: #60a5fa;
    border-color: rgba(96, 165, 250, 0.2);
}

.vps-panels .section-title { color: #0f172a; }
.vps-panels .section-subtitle { color: #475569; }

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

.vps-panel-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: 0.3s;
    position: relative;
}

.vps-panel-card:hover {
    border-color: rgba(96, 165, 250, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.vps-panel-popular { border-color: rgba(96, 165, 250, 0.4); }

.vps-popular-tag {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: #60a5fa;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 20px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.vps-panel-logo {
    height: 48px;
    display: flex;
    align-items: center;
}

.vps-panel-logo img {
    max-height: 40px;
    max-width: 120px;
    object-fit: contain;
    filter: brightness(1);
}

.vps-panel-icon { justify-content: center; width: 60px; }

.vps-panel-name {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    font-family: 'Outfit', sans-serif;
}

.vps-panel-info p {
    font-size: 13px;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 12px;
}

.vps-panel-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.vps-panel-tags span {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #475569;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 4px;
    font-family: 'JetBrains Mono', monospace;
}

.vps-tag-free {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Outfit', sans-serif;
}

.vps-tag-paid {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Outfit', sans-serif;
}

.vps-tag-pop {
    background: rgba(96, 165, 250, 0.12);
    color: #3b82f6;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Outfit', sans-serif;
}

.vps-tag-req {
    background: rgba(139, 92, 246, 0.1);
    color: #7c3aed;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Outfit', sans-serif;
}

/* =========================
   OS OPTIONS
========================= */

.vps-os {
    padding: 80px 0;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
}

.vps-os .section-badge {
    background: rgba(139, 92, 246, 0.1);
    color: #7c3aed;
    border-color: rgba(139, 92, 246, 0.2);
}

.vps-os .section-title { color: #0f172a; }
.vps-os .section-subtitle { color: #475569; }

.vps-os-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 16px;
}

.vps-os-card {
    background: #f8faff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.vps-os-card:hover {
    border-color: rgba(139, 92, 246, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.08);
}

.vps-os-card img { width: 48px; height: 48px; object-fit: contain; filter: brightness(1); transition: 0.3s; }
.vps-os-card:hover img { filter: brightness(1.15); }

.vps-os-name { font-size: 13px; font-weight: 700; color: #0f172a; font-family: 'Outfit', sans-serif; text-align: center; }
.vps-os-ver { font-size: 10px; color: #64748b; font-family: 'JetBrains Mono', monospace; text-align: center; }

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

.vps-compare {
    padding: 80px 0;
    background: #f8faff;
    border-top: 1px solid #e5e7eb;
}

.vps-compare .section-badge {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border-color: rgba(34, 197, 94, 0.2);
}

.vps-compare .section-title { color: #0f172a; }
.vps-compare .section-subtitle { color: #475569; }

.vps-table-wrap {
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
}

.vps-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
}

.vps-table thead tr { background: #f1f5f9; }

.vps-table th {
    padding: 18px 24px;
    text-align: left;
    font-size: 14px;
    font-weight: 700;
    color: #374151;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
}

.vps-table th.vps-col-highlight {
    background: rgba(34, 197, 94, 0.08);
    color: #16a34a;
    border-bottom-color: rgba(34, 197, 94, 0.2);
}

.vps-best-badge {
    display: inline-block;
    background: #22c55e;
    color: #021108;
    font-size: 9px;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 20px;
    margin-left: 8px;
    vertical-align: middle;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.vps-table tbody tr { border-bottom: 1px solid #f1f5f9; transition: 0.2s; }
.vps-table tbody tr:hover { background: rgba(34, 197, 94, 0.03); }
.vps-table tbody tr:last-child { border-bottom: none; }

.vps-table td { padding: 14px 24px; color: #475569; }

.vps-table td:first-child { color: #374151; font-weight: 600; font-size: 13px; }

.vps-table td.vps-col-highlight {
    background: rgba(34, 197, 94, 0.06);
    color: #0f172a;
    font-weight: 600;
}

.vps-check { color: #22c55e; font-weight: 700; }
.vps-cross { color: #ef4444; }

/* =========================
   REVIEWS
========================= */

.vps-reviews {
    padding: 80px 0;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
}

.vps-reviews .section-badge {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
    border-color: rgba(245, 158, 11, 0.2);
}

.vps-reviews .section-title { color: #0f172a; }
.vps-reviews .section-subtitle { color: #475569; }

.vps-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.vps-review-card {
    background: #f8faff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: 0.3s;
}

.vps-review-card:hover { border-color: rgba(245, 158, 11, 0.25); transform: translateY(-3px); }

.vps-review-featured { border-color: rgba(245, 158, 11, 0.4); background: #fffbeb; }

.vps-review-stars { font-size: 16px; color: #f59e0b; letter-spacing: 2px; }

.vps-review-text {
    font-size: 14px;
    color: #475569;
    line-height: 1.65;
    flex: 1;
    font-style: italic;
    font-family: 'Outfit', sans-serif;
}

.vps-reviewer { display: flex; align-items: center; gap: 12px; }

.vps-reviewer-avatar {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #021108;
    font-size: 12px;
    font-weight: 800;
    flex-shrink: 0;
    font-family: 'Outfit', sans-serif;
}

.vps-reviewer strong { display: block; font-size: 14px; font-weight: 700; color: #0f172a; font-family: 'Outfit', sans-serif; }
.vps-reviewer span { display: block; font-size: 12px; color: #64748b; font-family: 'Outfit', sans-serif; }

/* =========================
   WHY SKYSERVER
========================= */

.vps-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.vps-why-card {
    background: #f8faff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 28px 24px;
    transition: 0.3s;
}

.vps-why-card:hover { border-color: rgba(34, 197, 94, 0.25); transform: translateY(-3px); }

.vps-why-num {
    font-size: 40px;
    font-weight: 900;
    color: rgba(34, 197, 94, 0.15);
    line-height: 1;
    margin-bottom: 12px;
    font-family: 'JetBrains Mono', monospace;
}

.vps-why-card h4 { font-size: 15px; font-weight: 700; color: #0f172a; margin-bottom: 8px; font-family: 'Outfit', sans-serif; }
.vps-why-card p { font-size: 13.5px; color: #475569; line-height: 1.6; font-family: 'Outfit', sans-serif; }

/* Light theme overrides for shared sections */
.vps-hero ~ .sh-features,
.vps-plans ~ .sh-features { background: #f8faff; }

.vps-hero ~ section .section-title,
.vps-hero ~ section h2 { color: #0f172a; }

.vps-hero ~ .sh-usecases { background: #ffffff; }
.vps-hero ~ .faq-section { background: #f8faff; }
.vps-hero ~ .sh-other { background: #ffffff; }

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px) {
    .vps-plans-grid { grid-template-columns: repeat(2, 1fr); }
    .vps-os-grid { grid-template-columns: repeat(4, 1fr); }
    .vps-panels-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
    .vps-hero-right { flex: 0 0 380px; }
    .vps-hero-title { font-size: 42px; }
}

@media (max-width: 900px) {
    .vps-hero-container { flex-direction: column; padding-bottom: 40px; }
    .vps-hero-right { flex: none; width: 100%; }
    .vps-hero-title { font-size: 36px; }
    .vps-plans-grid { grid-template-columns: 1fr; }
    .vps-plan-hot { transform: none; }
    .vps-reviews-grid { grid-template-columns: 1fr; }
    .vps-why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .vps-hero { padding: 60px 0 0; min-height: unset; }
    .vps-hero-title { font-size: 28px; letter-spacing: -0.5px; }
    .vps-hero-features li { font-size: 12px; }
    .vps-btn-primary, .vps-btn-ghost { width: 100%; justify-content: center; }
    .vps-hero-actions { flex-direction: column; }
    .vps-hero-stats { gap: 0; flex-wrap: wrap; }
    .vps-stat { padding: 8px 14px 8px 0; }
    .vps-os-grid { grid-template-columns: repeat(3, 1fr); }
    .vps-panels-grid { grid-template-columns: 1fr; }
    .vps-why-grid { grid-template-columns: 1fr; }
    .vps-trust-inner { gap: 0; }
    .vps-trust-item { padding: 14px 16px; flex: 1 0 45%; }
    .vps-trust-sep { display: none; }
    .vps-logo-art { font-size: 6px; }
}

/* CTA overrides */
.cta-inner {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.cta-title {
    font-size: 44px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    line-height: 1.15;
    text-align: center;
}

.cta-title span { color: rgba(255, 255, 255, 0.88); }

.cta-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 32px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-align: center;
}