/* ================================================
   HPVPS.CSS — High Performance VPS Page
   Theme: Clean White / Light Gray + Orange-Red accent
   Fonts: Syne (headings) + Outfit (body) + JetBrains Mono
   ================================================ */

:root {
    --hp-orange: #f97316;
    --hp-orange-dark: #ea580c;
    --hp-red: #ef4444;
    --hp-text: #0f172a;
    --hp-text-2: #475569;
    --hp-text-3: #94a3b8;
    --hp-white: #ffffff;
    --hp-bg: #f8fafc;
    --hp-bg-2: #f1f5f9;
    --hp-border: #e2e8f0;
    --hp-card-bg: #ffffff;
    --hp-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 16px rgba(0, 0, 0, 0.04);
    --hp-shadow-lg: 0 4px 24px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
    --hp-radius: 16px;
    --hp-radius-sm: 10px;
    --transition: 0.25s ease;
}

.hpvps-body {
    background: var(--hp-bg);
    color: var(--hp-text);
    font-family: 'Outfit', sans-serif;
}

/* ========================= SHARED ========================= */
.hp-section-head {
    text-align: center;
    margin-bottom: 52px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.hp-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(249, 115, 22, 0.1);
    color: var(--hp-orange-dark);
    border: 1px solid rgba(249, 115, 22, 0.25);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hp-section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: var(--hp-text);
    line-height: 1.18;
    letter-spacing: -0.5px;
    margin: 0;
}

.hp-accent {
    color: var(--hp-orange);
}

.hp-section-sub {
    font-size: 16px;
    color: var(--hp-text-2);
    line-height: 1.7;
    max-width: 580px;
    margin: 0;
}

/* ========================= HERO ========================= */
.hp-hero {
    position: relative;
    background: #f0f4ff;
    background-image:
        radial-gradient(ellipse 80% 70% at 70% 0%, rgba(99, 120, 255, 0.13) 0%, transparent 55%),
        radial-gradient(ellipse 50% 50% at 10% 80%, rgba(139, 92, 246, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse 40% 40% at 90% 80%, rgba(59, 130, 246, 0.06) 0%, transparent 50%);
    padding: 110px 0 0;
    overflow: hidden;
    min-height: 680px;
}

.hp-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hp-mesh {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(99, 120, 255, 0.18) 1.5px, transparent 1.5px);
    background-size: 36px 36px;
    opacity: 0.45;
}

.hp-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.hp-orb-1 {
    width: 500px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(99, 120, 255, 0.18), transparent);
    top: -80px;
    right: -60px;
}

.hp-orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(ellipse, rgba(139, 92, 246, 0.10), transparent);
    bottom: 40px;
    left: -60px;
}

.hp-orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(ellipse, rgba(59, 130, 246, 0.08), transparent);
    top: 60%;
    right: 35%;
}

.hp-grid {
    position: absolute;
    inset: 0;
}

.hp-hero-inner {
    display: flex;
    align-items: center;
    gap: 56px;
    position: relative;
    z-index: 1;
    padding-bottom: 70px;
}

.hp-hero-left {
    flex: 1;
    min-width: 0;
}

.hp-label-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249, 115, 22, 0.08);
    border: 1px solid rgba(249, 115, 22, 0.2);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12.5px;
    font-weight: 600;
    color: #7c3105;
    margin-bottom: 28px;
    font-family: 'JetBrains Mono', monospace;
}

.hp-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--hp-orange);
    border-radius: 50%;
    animation: hpPulse 2s ease-in-out infinite;
}

@keyframes hpPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

.hp-badge-sep {
    opacity: 0.4;
}

.hp-title {
    font-family: 'Outfit', sans-serif;
    font-size: 60px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: var(--hp-text);
    margin: 0 0 22px;
}

.hp-title-line1 {
    display: block;
}

.hp-title-line2 {
    display: block;
    color: var(--hp-text);
}

.hp-title-line2 em {
    font-style: normal;
    background: linear-gradient(135deg, #f97316, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hp-subtitle {
    font-size: 17px;
    color: var(--hp-text-2);
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 500px;
}

.hp-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hp-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--hp-text);
    font-weight: 500;
}

.hp-check-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(249, 115, 22, 0.07);
    border-radius: 7px;
    flex-shrink: 0;
}

.hp-hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hp-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f97316, #ef4444);
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.35);
}

.hp-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(249, 115, 22, 0.45);
}

.hp-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--hp-text);
    border: 2px solid var(--hp-border);
    padding: 13px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.hp-btn-outline:hover {
    border-color: var(--hp-orange);
    color: var(--hp-orange);
}

.hp-trust-row {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    gap: 0;
}

.hp-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 0 20px;
}

.hp-trust-item:first-child {
    padding-left: 0;
}

.hp-trust-item strong {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--hp-text);
}

.hp-trust-item span {
    font-size: 11.5px;
    color: var(--hp-text-3);
    font-weight: 500;
}

.hp-trust-sep {
    width: 1px;
    height: 32px;
    background: var(--hp-border);
}

/* RIGHT SIDE CARD */
.hp-hero-right {
    flex-shrink: 0;
    position: relative;
    width: 420px;
}

.hp-perf-card {
    background: var(--hp-white);
    border: 1px solid var(--hp-border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--hp-shadow-lg);
}

.hp-perf-header {
    background: #0f172a;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hp-perf-dots {
    display: flex;
    gap: 6px;
}

.pd-r {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ef4444;
}

.pd-y {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #f59e0b;
}

.pd-g {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22c55e;
}

.hp-perf-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: #94a3b8;
    flex: 1;
}

.hp-live-badge {
    font-size: 10px;
    font-weight: 700;
    color: #22c55e;
    letter-spacing: 0.05em;
    animation: hpPulse 2s ease-in-out infinite;
}

.hp-perf-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hp-metric-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hp-metric-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--hp-text-2);
    width: 68px;
    flex-shrink: 0;
    font-family: 'JetBrains Mono', monospace;
}

.hp-bar-wrap {
    flex: 1;
    height: 8px;
    background: #f1f5f9;
    border-radius: 99px;
    overflow: hidden;
}

.hp-bar {
    height: 100%;
    border-radius: 99px;
    animation: hpBarGrow 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes hpBarGrow {
    from {
        width: 0;
    }
}

.hp-bar-cpu {
    background: linear-gradient(90deg, #f97316, #ef4444);
    width: 92%;
    animation-delay: 0.1s;
}

.hp-bar-nvme {
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
    width: 88%;
    animation-delay: 0.2s;
}

.hp-bar-net {
    background: linear-gradient(90deg, #8b5cf6, #a78bfa);
    width: 95%;
    animation-delay: 0.3s;
}

.hp-bar-lat {
    background: linear-gradient(90deg, #10b981, #22c55e);
    width: 98%;
    animation-delay: 0.4s;
}

.hp-metric-val {
    font-size: 12px;
    font-weight: 700;
    color: var(--hp-text);
    width: 54px;
    text-align: right;
    font-family: 'JetBrains Mono', monospace;
}

.hp-divider-line {
    height: 1px;
    background: var(--hp-border);
    margin: 4px 0;
}

.hp-spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.hp-spec-box {
    background: #f8fafc;
    border: 1px solid var(--hp-border);
    border-radius: 10px;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hp-spec-num {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: var(--hp-orange);
}

.hp-spec-lbl {
    font-size: 11px;
    color: var(--hp-text-3);
    font-weight: 500;
}

.hp-card-footer {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 11.5px;
    color: var(--hp-text-3);
    margin-top: 4px;
}

.hp-status-dot {
    width: 7px;
    height: 7px;
    background: #22c55e;
    border-radius: 50%;
    flex-shrink: 0;
    animation: hpPulse 2s ease-in-out infinite;
}

/* Floating chips */
.hp-float {
    position: absolute;
    background: var(--hp-white);
    border: 1px solid var(--hp-border);
    border-radius: 30px;
    padding: 7px 14px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--hp-text);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    white-space: nowrap;
    animation: hpFloat 4s ease-in-out infinite;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

@keyframes hpFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.hp-float-1 {
    top: -18px;
    right: 30px;
    animation-delay: 0s;
}

.hp-float-2 {
    bottom: 60px;
    right: -14px;
    animation-delay: 1.2s;
}

.hp-float-3 {
    bottom: -14px;
    left: 20px;
    animation-delay: 0.6s;
}

/* ========================= STAT BAR ========================= */
.hp-statbar {
    background: var(--hp-white);
    border-top: 1px solid var(--hp-border);
    border-bottom: 1px solid var(--hp-border);
    padding: 18px 0;
}

.hp-statbar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.hp-stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 24px;
    font-size: 14px;
    color: var(--hp-text);
}

.hp-stat-item svg {
    color: var(--hp-orange);
    flex-shrink: 0;
}

.hp-stat-item strong {
    font-weight: 700;
}

.hp-stat-sep {
    width: 1px;
    height: 24px;
    background: var(--hp-border);
    flex-shrink: 0;
}

/* ========================= PLANS ========================= */
.hp-plans {
    padding: 80px 0;
    background: var(--hp-bg);
}

.hp-billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 44px;
}

.hp-bill-lbl {
    font-size: 15px;
    font-weight: 600;
    color: var(--hp-text);
    transition: opacity var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hp-save-pill {
    background: rgba(249, 115, 22, 0.12);
    color: var(--hp-orange-dark);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
}

.hp-toggle-btn {
    width: 50px;
    height: 26px;
    background: #e2e8f0;
    border: none;
    border-radius: 99px;
    cursor: pointer;
    position: relative;
    transition: background var(--transition);
}

.hp-toggle-btn.active {
    background: var(--hp-orange);
}

.hp-toggle-thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    transition: transform var(--transition);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.hp-toggle-btn.active .hp-toggle-thumb {
    transform: translateX(24px);
}

.hp-plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    align-items: stretch;
}

.hp-plan-card {
    background: var(--hp-white);
    border: 1.5px solid var(--hp-border);
    border-radius: var(--hp-radius);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: var(--transition);
    position: relative;
}

.hp-plan-card:hover {
    border-color: rgba(249, 115, 22, 0.35);
    box-shadow: 0 8px 32px rgba(249, 115, 22, 0.1);
    transform: translateY(-3px);
}

.hp-plan-featured {
    border-color: var(--hp-orange);
    box-shadow: 0 8px 40px rgba(249, 115, 22, 0.18);
}

.hp-featured-ribbon {
    position: absolute;
    top: -1px;
    right: 24px;
    background: linear-gradient(135deg, #f97316, #ef4444);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 14px 6px;
    border-radius: 0 0 10px 10px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hp-plan-tier-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    font-weight: 700;
    color: var(--hp-orange);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.hp-plan-name {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--hp-text);
    margin-bottom: 14px;
}

.hp-plan-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 4px;
}

.hp-cur {
    font-size: 18px;
    font-weight: 700;
    color: var(--hp-text);
}

.hp-amount {
    font-family: 'Outfit', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: var(--hp-text);
    line-height: 1;
}

.hp-plan-featured .hp-amount {
    color: var(--hp-orange);
}

.hp-per {
    font-size: 14px;
    color: var(--hp-text-3);
    font-weight: 500;
}

.hp-plan-was {
    font-size: 12.5px;
    color: var(--hp-text-3);
    min-height: 18px;
    margin-bottom: 12px;
}

.hp-was-txt {
    text-decoration: line-through;
}

.hp-plan-divider {
    height: 1px;
    background: var(--hp-border);
    margin-bottom: 18px;
}

.hp-plan-specs {
    display: flex;
    flex-direction: column;
    gap: 9px;
    flex: 1;
    margin-bottom: 22px;
}

.hp-spec {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
}

.hp-si {
    font-size: 14px;
    flex-shrink: 0;
    width: 18px;
    text-align: center;
}

.hp-sl {
    color: var(--hp-text-2);
    flex: 1;
    font-weight: 500;
}

.hp-sv {
    color: var(--hp-text);
    font-weight: 600;
    text-align: right;
}

.hp-green {
    color: #16a34a;
    font-weight: 700;
}

.hp-plan-btn {
    display: block;
    text-align: center;
    padding: 13px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.hp-btn-ghost {
    background: #f8fafc;
    color: var(--hp-text);
    border: 1.5px solid var(--hp-border);
}

.hp-btn-ghost:hover {
    background: var(--hp-orange);
    color: #fff;
    border-color: var(--hp-orange);
}

.hp-btn-fire {
    background: linear-gradient(135deg, #f97316, #ef4444);
    color: #fff;
    border: none;
    box-shadow: 0 4px 18px rgba(249, 115, 22, 0.35);
}

.hp-btn-fire:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 26px rgba(249, 115, 22, 0.45);
}

.hp-plans-note {
    text-align: center;
    color: var(--hp-text-3);
    font-size: 13.5px;
    margin-top: 32px;
}

/* ========================= FEATURES BENTO ========================= */
.hp-features {
    padding: 80px 0;
    background: var(--hp-bg-2);
}

.hp-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 20px;
}

/* When 8 cards (3+3+2): last 2 cards center-aligned */
.hp-bento .hp-bento-card:nth-last-child(2):nth-child(3n+1) {
    grid-column: 1 / 2;
}

/* Center last row of 2 by using column offsets via subgrid trick */
.hp-bento-last-row {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.hp-bento-last-row .hp-bento-card {
    flex: 0 0 calc((100% - 20px) / 3);
    max-width: calc((100% - 20px) / 3);
}

.hp-bento-card {
    background: var(--hp-white);
    border: 1px solid var(--hp-border);
    border-radius: var(--hp-radius);
    padding: 28px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hp-bento-card:hover {
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: var(--hp-shadow-lg);
    transform: translateY(-2px);
}

/* Remove span-2 on bento-big and bento-wide — all boxes equal size */
.hp-bento-big {
    grid-column: span 1;
}

.hp-bento-wide {
    grid-column: span 1;
}

.hp-bento-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(249, 115, 22, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hp-bento-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: var(--hp-text);
    margin: 0;
}

.hp-bento-card p {
    font-size: 14px;
    color: var(--hp-text-2);
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

.hp-bento-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--hp-orange-dark);
    background: rgba(249, 115, 22, 0.08);
    border: 1px solid rgba(249, 115, 22, 0.15);
    padding: 4px 10px;
    border-radius: 6px;
    margin-top: 4px;
    letter-spacing: 0.03em;
}

/* ========================= PANELS ========================= */
.hp-panels {
    padding: 80px 0;
    background: var(--hp-white);
}

.hp-panels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.hp-panel-card {
    background: var(--hp-bg);
    border: 1.5px solid var(--hp-border);
    border-radius: var(--hp-radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: var(--transition);
    position: relative;
}

.hp-panel-card:hover {
    border-color: rgba(249, 115, 22, 0.35);
    box-shadow: 0 6px 24px rgba(249, 115, 22, 0.08);
    transform: translateY(-2px);
}

.hp-panel-pop {
    border-color: var(--hp-orange);
    background: #fffbf7;
}

.hp-panel-pop-tag {
    position: absolute;
    top: -1px;
    right: 20px;
    background: var(--hp-orange);
    color: #fff;
    font-size: 10.5px;
    font-weight: 800;
    padding: 3px 12px 5px;
    border-radius: 0 0 8px 8px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.hp-panel-card img {
    height: 38px;
    width: auto;
    object-fit: contain;
    max-width: 130px;
}

.hp-panel-cli-icon {
    height: 38px;
    display: flex;
    align-items: center;
}

.hp-panel-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hp-panel-name {
    font-weight: 700;
    font-size: 15px;
    color: var(--hp-text);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.hp-panel-info p {
    font-size: 13px;
    color: var(--hp-text-2);
    line-height: 1.6;
    margin: 0;
}

.hp-panel-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.hp-panel-tags span {
    font-size: 11px;
    font-weight: 600;
    background: var(--hp-white);
    border: 1px solid var(--hp-border);
    color: var(--hp-text-2);
    padding: 3px 9px;
    border-radius: 5px;
}

.hp-tag-free {
    font-size: 10px;
    font-weight: 800;
    background: #dcfce7;
    color: #15803d;
    border: 1px solid #bbf7d0;
    padding: 2px 8px;
    border-radius: 5px;
    letter-spacing: 0.04em;
}

.hp-tag-paid {
    font-size: 10px;
    font-weight: 800;
    background: #fff7ed;
    color: #c2410c;
    border: 1px solid #fed7aa;
    padding: 2px 8px;
    border-radius: 5px;
}

.hp-tag-dev {
    font-size: 10px;
    font-weight: 800;
    background: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
    padding: 2px 8px;
    border-radius: 5px;
}

/* ========================= OS ========================= */
.hp-os {
    padding: 80px 0;
    background: var(--hp-bg-2);
}

.hp-os-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.hp-os-card {
    background: var(--hp-white);
    border: 1.5px solid var(--hp-border);
    border-radius: var(--hp-radius-sm);
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 130px;
    transition: var(--transition);
    cursor: default;
}

.hp-os-card:hover {
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.08);
    transform: translateY(-2px);
}

.hp-os-card img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.hp-os-name {
    font-weight: 700;
    font-size: 14px;
    color: var(--hp-text);
}

.hp-os-ver {
    font-size: 12px;
    color: var(--hp-text-3);
    font-weight: 500;
}

/* ========================= COMPARISON ========================= */
.hp-compare {
    padding: 80px 0;
    background: var(--hp-white);
}

.hp-table-wrap {
    overflow-x: auto;
    border-radius: var(--hp-radius);
    border: 1px solid var(--hp-border);
    box-shadow: var(--hp-shadow);
}

.hp-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14.5px;
}

.hp-table thead tr {
    background: #0f172a;
}

.hp-table th {
    padding: 16px 20px;
    font-weight: 700;
    color: #94a3b8;
    text-align: left;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.hp-table th.hp-col-hl {
    color: var(--hp-orange);
    background: rgba(249, 115, 22, 0.08);
}

.hp-best-tag {
    display: inline-block;
    font-size: 9px;
    font-weight: 800;
    background: rgba(249, 115, 22, 0.2);
    color: var(--hp-orange);
    border: 1px solid rgba(249, 115, 22, 0.3);
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 6px;
    vertical-align: middle;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hp-table tbody tr {
    border-bottom: 1px solid var(--hp-border);
    transition: background var(--transition);
}

.hp-table tbody tr:last-child {
    border-bottom: none;
}

.hp-table tbody tr:hover {
    background: #fafafa;
}

.hp-table td {
    padding: 15px 20px;
    color: var(--hp-text-2);
}

.hp-table td:first-child {
    font-weight: 600;
    color: var(--hp-text);
}

.hp-table td.hp-col-hl {
    background: rgba(249, 115, 22, 0.03);
    color: var(--hp-text);
    font-weight: 600;
    border-left: 2px solid rgba(249, 115, 22, 0.2);
    border-right: 2px solid rgba(249, 115, 22, 0.2);
}

.hp-chk {
    color: #22c55e;
    font-weight: 700;
    margin-right: 4px;
}

.hp-crs {
    color: #ef4444;
    font-weight: 700;
    margin-right: 4px;
}

/* ========================= REVIEWS ========================= */
.hp-reviews {
    padding: 80px 0;
    background: var(--hp-bg-2);
}

.hp-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.hp-review {
    background: var(--hp-white);
    border: 1px solid var(--hp-border);
    border-radius: var(--hp-radius);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: var(--transition);
}

.hp-review:hover {
    border-color: rgba(249, 115, 22, 0.25);
    box-shadow: var(--hp-shadow-lg);
    transform: translateY(-2px);
}

.hp-review-featured {
    border-color: var(--hp-orange);
    box-shadow: 0 6px 28px rgba(249, 115, 22, 0.12);
}

.hp-review-stars {
    color: #f59e0b;
    font-size: 16px;
    letter-spacing: 2px;
}

.hp-review p {
    font-size: 14.5px;
    color: var(--hp-text-2);
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

.hp-reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hp-avatar {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #f97316, #ef4444);
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hp-reviewer strong {
    display: block;
    font-weight: 700;
    font-size: 14px;
    color: var(--hp-text);
}

.hp-reviewer span {
    font-size: 12.5px;
    color: var(--hp-text-3);
}

/* ========================= FAQ ========================= */
.hp-faq {
    padding: 80px 0;
    background: var(--hp-bg);
}

.hp-faq-inner {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 52px;
    align-items: start;
}

.hp-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hp-faq-item {
    border-bottom: 1px solid var(--hp-border);
    background: var(--hp-white);
    border-radius: 0;
    overflow: hidden;
}

.hp-faq-item:first-of-type {
    border-top: 1px solid var(--hp-border);
}

.hp-faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    text-align: left;
}

.hp-faq-q span {
    font-size: 15px;
    font-weight: 600;
    color: var(--hp-text);
    line-height: 1.45;
}

.hp-faq-icon {
    width: 32px;
    height: 32px;
    border: 1.5px solid var(--hp-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--hp-text-2);
    transition: var(--transition);
    background: var(--hp-white);
}

.hp-faq-item.open .hp-faq-icon {
    background: var(--hp-orange);
    border-color: var(--hp-orange);
    color: #fff;
    transform: rotate(45deg);
}

.hp-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.hp-faq-item.open .hp-faq-a {
    max-height: 200px;
}

.hp-faq-ac {
    padding: 0 24px 20px;
    font-size: 14.5px;
    color: var(--hp-text-2);
    line-height: 1.7;
}

/* FAQ Contact card — right sidebar */
.hp-faq-contact {
    background: var(--hp-white);
    border: 1.5px solid var(--hp-border);
    border-radius: var(--hp-radius);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    position: sticky;
    top: 100px;
    text-align: center;
    box-shadow: var(--hp-shadow);
}

.hp-faq-contact-icon {
    width: 68px;
    height: 68px;
    background: rgba(99, 120, 255, 0.08);
    border: 2px solid rgba(99, 120, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6378ff;
    margin-bottom: 4px;
}

.hp-faq-contact h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--hp-text);
    margin: 0;
}

.hp-faq-contact p {
    font-size: 13.5px;
    color: var(--hp-text-2);
    line-height: 1.65;
    margin: 0;
}

.hp-faq-contact-btn {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #f97316, #ef4444);
    color: #fff;
    padding: 13px 22px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
    margin-top: 4px;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.3);
}

.hp-faq-contact-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(249, 115, 22, 0.4);
}

/* ========================= CTA ========================= */
.hp-cta {
    position: relative;
    background: linear-gradient(135deg, #3b4fd8 0%, #4c6ef5 40%, #5b7fff 70%, #6c8aff 100%);
    padding: 90px 0;
    overflow: hidden;
}

.hp-cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hp-cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.hp-cta-orb-1 {
    width: 500px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.12), transparent);
    top: -80px;
    right: -60px;
}

.hp-cta-orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(ellipse, rgba(99, 60, 220, 0.3), transparent);
    bottom: -60px;
    left: 0;
}

.hp-cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.hp-cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hp-cta-title {
    font-family: 'Outfit', sans-serif;
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -1px;
    margin: 0;
}

.hp-cta-title span {
    color: #fff;
}

.hp-cta-sub {
    font-size: 16.5px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    line-height: 1.7;
    margin: 0;
}

.hp-cta-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 6px;
}

.hp-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #3b4fd8;
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 15.5px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.15);
}

.hp-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.2);
}

.hp-cta-secondary {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 14px 26px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.hp-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.25);
}

.hp-cta-features {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 4px;
}

.hp-cta-features span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.75);
}

.hp-cta-features svg {
    color: rgba(255, 255, 255, 0.9);
    flex-shrink: 0;
}

/* ========================= RESPONSIVE ========================= */
@media (max-width: 1200px) {
    .hp-plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hp-panels-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hp-bento {
        grid-template-columns: repeat(2, 1fr);
    }

    .hp-bento-big,
    .hp-bento-wide {
        grid-column: span 1;
    }

    .hp-hero-right {
        width: 360px;
    }

    .hp-bento-last-row .hp-bento-card {
        flex: 0 0 calc((100% - 20px) / 2);
        max-width: calc((100% - 20px) / 2);
    }
}

@media (max-width: 900px) {
    .hp-hero {
        padding: 80px 0 0;
    }

    .hp-hero-inner {
        flex-direction: column;
        padding-bottom: 40px;
        gap: 36px;
    }

    .hp-hero-left {
        width: 100%;
        text-align: center;
    }

    .hp-hero-right {
        width: 100%;
        max-width: 460px;
    }

    .hp-subtitle {
        max-width: 100%;
    }

    .hp-checklist {
        align-items: flex-start;
        text-align: left;
        display: inline-flex;
        flex-direction: column;
    }

    .hp-hero-cta {
        justify-content: center;
    }

    .hp-label-badge {
        justify-content: center;
    }

    .hp-trust-row {
        justify-content: center;
    }

    .hp-float {
        display: none;
    }

    .hp-title {
        font-size: 44px;
        letter-spacing: -1px;
    }

    .hp-faq-inner {
        grid-template-columns: 1fr;
    }

    .hp-faq-contact {
        position: static;
    }

    .hp-reviews-grid {
        grid-template-columns: 1fr;
    }

    .hp-section-title {
        font-size: 30px;
    }

    .hp-cta-title {
        font-size: 38px;
    }

    .hp-bento {
        grid-template-columns: repeat(2, 1fr);
    }

    .hp-bento-last-row .hp-bento-card {
        flex: 0 0 calc((100% - 20px) / 2);
        max-width: calc((100% - 20px) / 2);
    }

    .hp-statbar-inner {
        flex-wrap: wrap;
        gap: 0;
        justify-content: center;
    }

    .hp-plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .hp-hero {
        padding: 70px 0 0;
        min-height: auto;
    }

    .hp-title {
        font-size: 32px;
        letter-spacing: -0.5px;
    }

    .hp-subtitle {
        font-size: 15px;
    }

    .hp-checklist li {
        font-size: 14px;
    }

    .hp-hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hp-btn-primary,
    .hp-btn-outline {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    /* Trust row — 2x2 grid on mobile */
    .hp-trust-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .hp-trust-sep {
        display: none;
    }

    .hp-trust-item {
        padding: 12px;
        background: rgba(255, 255, 255, 0.7);
        border: 1px solid var(--hp-border);
        border-radius: 10px;
    }

    .hp-trust-item strong {
        font-size: 18px;
    }

    /* Plans */
    .hp-plans-grid {
        grid-template-columns: 1fr;
    }

    .hp-plan-card.hp-plan-featured {
        transform: none;
    }

    /* Panels */
    .hp-panels-grid {
        grid-template-columns: 1fr;
    }

    /* Bento */
    .hp-bento {
        grid-template-columns: 1fr;
    }

    .hp-bento-big,
    .hp-bento-wide {
        grid-column: span 1;
    }

    .hp-bento-last-row {
        flex-direction: column;
    }

    .hp-bento-last-row .hp-bento-card {
        flex: 1 1 100%;
        max-width: 100%;
    }

    /* Stats bar — single column on mobile */
    .hp-statbar {
        padding: 8px 0;
    }

    .hp-statbar-inner {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }

    .hp-stat-sep {
        display: none;
    }

    .hp-stat-item {
        padding: 11px 20px;
        font-size: 14px;
        border-bottom: 1px solid var(--hp-border);
        justify-content: flex-start;
        gap: 10px;
    }

    .hp-stat-item:last-child {
        border-bottom: none;
    }

    /* Section titles */
    .hp-section-title {
        font-size: 26px;
    }

    .hp-section-sub {
        font-size: 14.5px;
    }

    /* FAQ */
    .hp-faq-inner {
        gap: 28px;
    }

    .hp-faq-q span {
        font-size: 14px;
    }

    /* CTA */
    .hp-cta {
        padding: 64px 0;
    }

    .hp-cta-title {
        font-size: 28px;
    }

    .hp-cta-btns {
        flex-direction: column;
        align-items: stretch;
    }

    .hp-cta-primary,
    .hp-cta-secondary {
        text-align: center;
        justify-content: center;
    }

    .hp-cta-features {
        gap: 12px;
        flex-direction: column;
        align-items: center;
    }

    /* Reviews */
    .hp-reviews-grid {
        grid-template-columns: 1fr;
    }

    .hp-review {
        padding: 22px;
    }

    /* OS grid */
    .hp-os-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hp-panels-grid {
        grid-template-columns: 1fr;
    }

    /* Perf card */
    .hp-perf-card {
        font-size: 13px;
    }

    .hp-spec-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Billing toggle row */
    .hp-billing-row {
        gap: 10px;
    }
}

@media (max-width: 380px) {
    .hp-title {
        font-size: 28px;
    }

    .hp-section-title {
        font-size: 23px;
    }

    .hp-cta-title {
        font-size: 24px;
    }

    .hp-os-grid {
        grid-template-columns: 1fr;
    }
}