/* ============================================================
   Prepaid-Host — Homepage Styles
   Used by resources/views/sites/index.blade.php
   Extracted from inline <style> block (no visual changes).
   ============================================================ */

/* ===================================================
   HERO SECTION — ANIMATED MESH GRADIENT
   =================================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    color: #fff;
    padding: 120px 0 60px;
    background: #060a14;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/images/maincubes_kaltgang.webp');
    background-image: -webkit-image-set(url('/images/maincubes_kaltgang.webp') type('image/webp'), url('/images/maincubes_kaltgang.jpg') type('image/jpeg'));
    background-size: cover;
    background-position: center;
    filter: grayscale(20%) brightness(0.18);
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6,10,20,0.75) 0%, rgba(6,10,20,0.65) 50%, rgba(6,10,20,0.8) 100%);
    z-index: 1;
}

/* ── Animated mesh gradient (6 color points) ── */
.hero-mesh {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}
.hero-mesh-dot {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    will-change: transform;
}
.hero-mesh-dot--1 {
    width: 50vw; height: 50vw; max-width: 700px; max-height: 700px;
    background: radial-gradient(circle, #009CFF 0%, transparent 70%);
    top: -15%; left: -10%;
    opacity: 0.5;
    filter: blur(50px);
    animation: meshFlow1 14s ease-in-out infinite;
}
.hero-mesh-dot--2 {
    width: 45vw; height: 45vw; max-width: 600px; max-height: 600px;
    background: radial-gradient(circle, #006EC8 0%, transparent 70%);
    top: 10%; right: -15%;
    opacity: 0.45;
    filter: blur(45px);
    animation: meshFlow2 16s ease-in-out infinite;
}
.hero-mesh-dot--3 {
    width: 40vw; height: 40vw; max-width: 550px; max-height: 550px;
    background: radial-gradient(circle, #00d4ff 0%, transparent 70%);
    bottom: -10%; left: 20%;
    opacity: 0.35;
    filter: blur(55px);
    animation: meshFlow3 18s ease-in-out infinite;
}
.hero-mesh-dot--4 {
    width: 35vw; height: 35vw; max-width: 450px; max-height: 450px;
    background: radial-gradient(circle, #0891b2 0%, transparent 70%);
    top: 50%; right: 10%;
    opacity: 0.3;
    filter: blur(40px);
    animation: meshFlow4 20s ease-in-out infinite;
}
.hero-mesh-dot--5 {
    width: 30vw; height: 30vw; max-width: 400px; max-height: 400px;
    background: radial-gradient(circle, #009CFF 0%, transparent 70%);
    top: 25%; left: 35%;
    opacity: 0.2;
    filter: blur(35px);
    animation: meshFlow5 12s ease-in-out infinite;
}
.hero-mesh-dot--6 {
    width: 25vw; height: 25vw; max-width: 350px; max-height: 350px;
    background: radial-gradient(circle, #00b4d8 0%, transparent 70%);
    bottom: 20%; right: 25%;
    opacity: 0.25;
    filter: blur(45px);
    animation: meshFlow6 15s ease-in-out infinite;
}
/* Mesh movement — large sweeping paths across the viewport */
@keyframes meshFlow1 {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(15vw, 10vh); }
    50% { transform: translate(5vw, 25vh); }
    75% { transform: translate(-8vw, 12vh); }
}
@keyframes meshFlow2 {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(-12vw, 15vh); }
    50% { transform: translate(-20vw, 5vh); }
    75% { transform: translate(-5vw, -10vh); }
}
@keyframes meshFlow3 {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(10vw, -15vh); }
    50% { transform: translate(-5vw, -8vh); }
    75% { transform: translate(15vw, -5vh); }
}
@keyframes meshFlow4 {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(-18vw, -8vh); }
    50% { transform: translate(-10vw, 12vh); }
    75% { transform: translate(5vw, 8vh); }
}
@keyframes meshFlow5 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(8vw, -10vh) scale(1.3); }
}
@keyframes meshFlow6 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-10vw, 8vh) scale(1.15); }
}

/* ── Noise grain overlay ── */
.hero-noise {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

.hero-container { position: relative; z-index: 3; }

/* ── Hero Two-Column Layout ── */
.hero-layout {
    display: flex;
    align-items: center;
    gap: 48px;
}

/* ── 19" Server Assembly ── */
.hero-server {
    flex: 0 0 480px;
    position: relative;
}
.hero-chassis {
    background:
        linear-gradient(180deg, #2d3038 0%, #23262c 30%, #1e2127 60%, #1a1d22 100%);
    border: 2px solid #3e4148;
    border-bottom-color: #333;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    transform: perspective(1000px) rotateY(-3deg) rotateX(2deg);
    box-shadow:
        0 30px 80px rgba(0,0,0,0.6),
        inset 0 1px 0 rgba(255,255,255,0.1),
        inset 0 -1px 0 rgba(0,0,0,0.3),
        0 0 40px rgba(0,156,255,0.05);
    transition: transform 0.4s ease;
}
.hero-chassis:hover {
    transform: perspective(1000px) rotateY(-1deg) rotateX(1deg);
}
/* Top edge — open chassis lid edge with metallic bevel */
.hero-chassis::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(180deg, #555 0%, #3a3d44 100%);
    box-shadow: 0 1px 3px rgba(0,0,0,0.4);
    z-index: 2;
}
/* Side panel — brushed metal + ventilation slots */
.hero-chassis::after {
    content: '';
    position: absolute; top: 0; right: 0; bottom: 0; width: 10px;
    background:
        repeating-linear-gradient(180deg,
            transparent 0px, transparent 8px,
            rgba(0,0,0,0.3) 8px, rgba(0,0,0,0.3) 10px,
            transparent 10px, transparent 18px
        ),
        repeating-linear-gradient(180deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 3px),
        linear-gradient(180deg, #2e3138, #22252a);
    border-left: 1px solid #444;
    z-index: 1;
}

/* Rack ears (mounting flanges) */
.hero-rail {
    position: absolute;
    top: 0; bottom: 0; width: 18px;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.03), transparent),
        linear-gradient(180deg, #36393f, #2c2f35, #282b31);
    display: flex; flex-direction: column;
    align-items: center; justify-content: space-between;
    padding: 10px 0; z-index: 2;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.hero-rail--l { left: 0; border-right: 1px solid #4a4d53; }
.hero-rail--r { right: 10px; border-left: 1px solid #4a4d53; }
.hero-rail-screw {
    width: 7px; height: 7px; border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #999, #666, #555);
    border: 1px solid #777;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), 0 1px 2px rgba(0,0,0,0.4);
}
/* Phillips head cross on screws */
.hero-rail-screw::after {
    content: '+';
    position: absolute;
    font-size: 5px; line-height: 7px;
    color: rgba(0,0,0,0.3);
    width: 7px; text-align: center;
}

/* Front panel I/O strip */
.hero-front-io {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 14px;
    margin: 0 30px 0 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: linear-gradient(180deg, rgba(255,255,255,0.015), transparent);
    font-family: 'SF Mono', 'Fira Code', 'Courier New', monospace;
}
.hero-io-power {
    width: 14px; height: 14px; border-radius: 50%;
    background: radial-gradient(circle at 40% 35%, #444, #222);
    border: 1.5px solid #555;
    position: relative;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}
.hero-io-power::after {
    content: '';
    position: absolute; top: 2px; left: 50%; transform: translateX(-50%);
    width: 6px; height: 6px; border-radius: 50%;
    border: 1.5px solid #888;
    border-bottom-color: transparent;
}
.hero-io-led {
    width: 4px; height: 4px; border-radius: 50%;
}
.hero-io-led--power { background: rgba(255,255,255,0.08); transition: background 0.3s, box-shadow 0.3s; }
.hero-io-led--power.on { background: #10b981; box-shadow: 0 0 4px #10b981; animation: ledPulse 2s ease-in-out infinite; }
.hero-io-led--hdd { background: rgba(255,255,255,0.08); transition: background 0.3s, box-shadow 0.3s; }
.hero-io-led--hdd.on { background: #f59e0b; box-shadow: 0 0 3px #f59e0b; animation: hddBlink 0.3s ease-in-out infinite; }
@keyframes hddBlink { 0%,100% { opacity: 1; } 50% { opacity: 0.1; } }
.hero-io-usb {
    width: 10px; height: 6px; border-radius: 1px;
    background: #1a1a1a;
    border: 1px solid #555;
}
.hero-io-sep {
    width: 1px; height: 10px;
    background: rgba(255,255,255,0.06);
}
.hero-io-label {
    font-size: 9px; font-weight: 600;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.1em; text-transform: uppercase;
    margin-left: auto;
}
.hero-io-status {
    display: flex; align-items: center; gap: 4px;
    font-size: 9px; color: rgba(255,255,255,0.3); font-weight: 500;
    transition: color 0.3s;
}
.hero-io-status.on { color: #10b981; }
.hero-io-status-dot {
    width: 4px; height: 4px; border-radius: 50%;
    background: rgba(255,255,255,0.08);
    transition: background 0.3s, box-shadow 0.3s;
}
.hero-io-status.on .hero-io-status-dot {
    background: #10b981; box-shadow: 0 0 4px #10b981;
}
@keyframes ledPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Chassis interior — recessed area with inner shadow */
.hero-chassis-inner {
    margin: 0 30px 0 20px;
    padding: 0;
    position: relative;
}

/* Motherboard PCB area — realistic multi-layer PCB */
.hero-mobo {
    margin: 6px 0;
    padding: 14px;
    background:
        /* Diagonal circuit traces */
        linear-gradient(45deg, transparent 48%, rgba(184,148,30,0.06) 48%, rgba(184,148,30,0.06) 49%, transparent 49%),
        linear-gradient(-45deg, transparent 48%, rgba(184,148,30,0.04) 48%, rgba(184,148,30,0.04) 49%, transparent 49%),
        linear-gradient(30deg, transparent 47%, rgba(0,180,100,0.04) 47%, rgba(0,180,100,0.04) 48%, transparent 48%),
        /* Grid traces */
        repeating-linear-gradient(0deg, transparent, transparent 12px, rgba(0,156,255,0.025) 12px, rgba(0,156,255,0.025) 13px),
        repeating-linear-gradient(90deg, transparent, transparent 12px, rgba(0,156,255,0.025) 12px, rgba(0,156,255,0.025) 13px),
        /* Base PCB color — dark green FR-4 */
        linear-gradient(135deg, #0d3d22 0%, #0a2e1a 50%, #0d3520 100%);
    border: 1px solid rgba(0,156,255,0.15);
    border-radius: 4px;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
}
/* PCB standoff screws (metallic) */
.hero-mobo::before {
    content: '';
    position: absolute; top: 5px; left: 5px;
    width: 7px; height: 7px; border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #aaa, #666);
    border: 1px solid #888;
    box-shadow:
        calc(100% - 17px) 0 0 0 #666,
        0 calc(100% - 17px) 0 0 #666,
        calc(100% - 17px) calc(100% - 17px) 0 0 #666,
        /* SMD capacitors — tan/brown ceramic, clearly visible */
        20px 10px 0 -1px #8b6914,
        23px 10px 0 -1px #8b6914,
        calc(100% - 30px) 14px 0 -1px #6b5010,
        calc(100% - 26px) 14px 0 -1px #6b5010,
        calc(50%) calc(100% - 12px) 0 -1px #8b6914,
        calc(50% + 4px) calc(100% - 12px) 0 -1px #6b5010,
        /* Extra capacitor row — top edge */
        38px 5px 0 -1px #8b6914,
        41px 5px 0 -1px #6b5010,
        54px 7px 0 -1px #8b6914,
        57px 7px 0 -1px #8b6914,
        /* Right-edge capacitors */
        calc(100% - 18px) 26px 0 -1px #8b6914,
        calc(100% - 18px) 32px 0 -1px #6b5010,
        /* Bottom-edge capacitors */
        26px calc(100% - 9px) 0 -1px #8b6914,
        30px calc(100% - 9px) 0 -1px #6b5010,
        42px calc(100% - 11px) 0 -1px #8b6914,
        /* ICs — black rectangles, clearly visible */
        7px calc(50%) 0 0 #111,
        calc(100% - 11px) calc(50% + 6px) 0 0 #111,
        /* Crystal oscillator — silver, reflective */
        calc(50% - 14px) 5px 0 -0.5px #aaa,
        /* Voltage regulators — black, slightly larger */
        5px 34px 0 0 #151515,
        calc(100% - 9px) 46px 0 0 #151515,
        /* Resistor arrays — dark with faint markings */
        14px calc(50% + 3px) 0 -1.5px #222,
        calc(100% - 20px) calc(50% - 5px) 0 -1.5px #222;
    z-index: 1;
}
/* SATA/power connector block at edge + silkscreen text */
.hero-mobo::after {
    content: 'REV 2.0';
    position: absolute; bottom: 5px; right: 8px;
    font-size: 5px; font-weight: 600;
    color: rgba(255,255,255,0.08);
    letter-spacing: 0.1em;
    font-family: 'Arial', sans-serif;
}

/* Rear section: fans + PSU */
.hero-chassis-rear {
    display: flex; align-items: center; gap: 6px;
    padding: 8px 10px;
    margin: 0 30px 0 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.1));
}
/* Fan — square housing with circular opening */
.hero-fan {
    width: 32px; height: 32px; border-radius: 4px;
    background:
        radial-gradient(circle, transparent 12px, #2a2d33 12px, #2a2d33 13px, transparent 13px),
        linear-gradient(180deg, #2a2d33, #1e2127);
    border: 1px solid #4a4d53;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.2);
}
/* Fan corner screw holes */
.hero-fan-frame {
    position: absolute; inset: 0; z-index: 1; pointer-events: none;
}
.hero-fan-frame::before {
    content: '';
    position: absolute; top: 2px; left: 2px;
    width: 3px; height: 3px; border-radius: 50%;
    background: #444; border: 0.5px solid #555;
    box-shadow: 23px 0 0 #444, 0 23px 0 #444, 23px 23px 0 #444;
}
/* Fan blades */
.hero-fan::before {
    content: '';
    position: absolute; inset: 4px;
    background:
        conic-gradient(from 0deg,
            rgba(200,200,200,0.12) 0deg, transparent 35deg,
            rgba(200,200,200,0.12) 72deg, transparent 107deg,
            rgba(200,200,200,0.12) 144deg, transparent 179deg,
            rgba(200,200,200,0.12) 216deg, transparent 251deg,
            rgba(200,200,200,0.12) 288deg, transparent 323deg);
    border-radius: 50%;
    animation: fanSpin 0.6s linear infinite;
    animation-play-state: paused;
}
/* Fan hub */
.hero-fan::after {
    content: '';
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 8px; height: 8px; border-radius: 50%;
    background: radial-gradient(circle at 40% 35%, #555, #333);
    border: 1px solid #666;
    z-index: 1;
}
@keyframes fanSpin { to { transform: rotate(360deg); } }
.hero-fan--active::before { animation-play-state: running; }
/* I/O shield separator */
.hero-rear-sep {
    width: 1px; height: 24px;
    background: #444;
    margin: 0 2px;
}
/* PSU module */
.hero-psu + .hero-psu { margin-left: 0; }
.hero-psu {
    margin-left: auto;
    padding: 5px 8px;
    background: linear-gradient(180deg, #32353b, #26292f, #22252b);
    border: 1px solid #4a4d53;
    border-radius: 3px;
    display: flex; align-items: center; gap: 5px;
    font-family: 'SF Mono', 'Fira Code', 'Courier New', monospace;
    position: relative;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.hero-psu-vent {
    width: 18px; height: 18px;
    background:
        radial-gradient(circle, transparent 5px, #333 5px, #333 6px, transparent 6px),
        repeating-linear-gradient(0deg, #2a2a2a 0px, #2a2a2a 1px, #1a1d22 1px, #1a1d22 3px);
    border-radius: 2px;
    border: 1px solid #4a4d53;
}
.hero-psu-label {
    font-size: 7px; font-weight: 700;
    color: rgba(255,255,255,0.25);
    letter-spacing: 0.06em;
}
/* PSU efficiency badge */
.hero-psu-badge {
    font-size: 5px; font-weight: 700;
    color: #c4a020;
    letter-spacing: 0.05em;
    display: block;
}

/* Hardware component card — hidden until JS triggers */
.hero-hw {
    padding: 10px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    position: relative; overflow: visible;
    opacity: 0;
    transform: translateY(-24px) scale(0.95);
    transition: background 0.3s, border-color 0.3s;
}
.hero-hw:hover {
    background: rgba(0,156,255,0.06);
    border-color: rgba(0,156,255,0.2);
}
/* Active: currently being installed — blue glow pulse */
.hero-hw--active {
    border-color: rgba(0,156,255,0.4);
    box-shadow: 0 0 16px rgba(0,156,255,0.15), inset 0 0 12px rgba(0,156,255,0.05);
    animation: hwPulse 1s ease-in-out infinite;
}
@keyframes hwPulse {
    0%, 100% { box-shadow: 0 0 16px rgba(0,156,255,0.15), inset 0 0 12px rgba(0,156,255,0.05); }
    50% { box-shadow: 0 0 24px rgba(0,156,255,0.3), inset 0 0 16px rgba(0,156,255,0.08); }
}
/* Installed: drop animation plays once, then stays visible via class styles */
.hero-hw--installed {
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: hwDrop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes hwDrop {
    0%   { opacity: 0; transform: translateY(-24px) scale(0.95); }
    70%  { transform: translateY(2px) scale(1.01); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
/* Mainboard spans full width, row layout */
.hero-hw--mobo { grid-column: 1 / -1; flex-direction: row; gap: 10px; }

/* Component info */
.hero-hw-info { text-align: center; }
.hero-hw--mobo .hero-hw-info { text-align: left; flex: 1; }
.hero-hw-name {
    font-size: 9px; font-weight: 600;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase; letter-spacing: 0.08em;
    display: block;
}
.hero-hw-spec {
    font-size: 12px; font-weight: 700;
    color: #fff; display: block; margin-top: 1px;
}

/* Status LED — starts dark, JS activates */
.hero-hw-led {
    position: absolute; top: 7px; right: 7px;
    width: 5px; height: 5px; border-radius: 50%;
    background: rgba(255,255,255,0.08);
    transition: background 0.3s, box-shadow 0.3s;
}
.hero-hw-led--on {
    background: #10b981;
    box-shadow: 0 0 6px #10b981;
}

/* ── CSS Hardware Art ── */

/* Mainboard PCB — horizontal view */
.hw-art-mobo {
    width: 80px; height: 36px; flex-shrink: 0;
    background:
        repeating-linear-gradient(0deg, transparent, transparent 6px, rgba(0,156,255,0.06) 6px, rgba(0,156,255,0.06) 7px),
        repeating-linear-gradient(90deg, transparent, transparent 6px, rgba(0,156,255,0.06) 6px, rgba(0,156,255,0.06) 7px),
        linear-gradient(135deg, #1a5c32, #0f3a1e);
    border-radius: 3px;
    border: 1px solid rgba(0,156,255,0.15);
    position: relative;
}
.hw-art-mobo::before {
    content: '';
    position: absolute; top: 6px; left: 10px;
    width: 16px; height: 16px;
    border: 1.5px dashed rgba(200,200,200,0.22);
    border-radius: 2px;
}
.hw-art-mobo::after {
    content: '';
    position: absolute; top: 5px; right: 12px;
    width: 2px; height: 20px;
    background: rgba(184,148,30,0.3);
    box-shadow: 5px 0 0 rgba(184,148,30,0.25), 10px 0 0 rgba(184,148,30,0.2);
    border-radius: 1px;
}

/* CPU — silver IHS on green substrate */
.hw-art-cpu {
    width: 52px; height: 56px;
    position: relative;
}
/* Green PCB substrate base */
.hw-art-cpu-sub {
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 52px;
    background: linear-gradient(180deg, #145528, #0f3a1e);
    border-radius: 3px;
    border: 1px solid rgba(255,255,255,0.06);
}
/* LGA pin grid on substrate */
.hw-art-cpu-sub::after {
    content: '';
    position: absolute; bottom: 3px; left: 4px; right: 4px;
    height: 20px;
    background:
        repeating-linear-gradient(90deg, rgba(184,148,30,0.5) 0px, rgba(184,148,30,0.5) 1px, transparent 1px, transparent 2.5px),
        repeating-linear-gradient(0deg, rgba(184,148,30,0.4) 0px, rgba(184,148,30,0.4) 1px, transparent 1px, transparent 2.5px);
    border-radius: 1px;
}
/* Silver IHS (heat spreader) — sits on top */
.hw-art-cpu::before {
    content: 'EPYC';
    position: absolute; top: 0; left: 3px; right: 3px;
    height: 38px;
    background: linear-gradient(155deg, #d0d4d8, #a8adb2 30%, #bcc0c4 50%, #9a9fa4 80%, #b0b4b8);
    border-radius: 3px;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.4),
        inset 0 -1px 0 rgba(0,0,0,0.15),
        0 2px 6px rgba(0,0,0,0.5);
    font-size: 6px; font-weight: 800; letter-spacing: 0.18em;
    color: rgba(30,30,30,0.4);
    font-family: 'Arial', sans-serif;
    display: flex; align-items: center; justify-content: center;
    padding-top: 2px;
    z-index: 1;
}
/* AMD logo area — small etched rectangle */
.hw-art-cpu::after {
    content: 'AMD';
    position: absolute; top: 24px; left: 50%; transform: translateX(-50%);
    font-size: 4px; font-weight: 700;
    color: rgba(30,30,30,0.25);
    letter-spacing: 0.2em;
    font-family: 'Arial', sans-serif;
    z-index: 2;
}

/* RAM — DIMM sticks with notch + heatspreader hint */
.hw-art-ram { display: flex; gap: 3px; align-items: flex-end; padding-bottom: 4px; position: relative; }
/* DIMM slot rail + latch clips */
.hw-art-ram::before {
    content: '';
    position: absolute;
    bottom: 0; left: -2px; right: -2px;
    height: 3px;
    background: linear-gradient(180deg, #1a4d30, #0f3a1e);
    border-radius: 1px;
    border: 0.5px solid rgba(255,255,255,0.06);
}
.hw-art-ram::after {
    content: '';
    position: absolute;
    bottom: -1px; left: -3px;
    width: 3px; height: 6px;
    background: #e8e4d4;
    border-radius: 1px 1px 0 0;
    border: 0.5px solid rgba(200,190,160,0.3);
    box-shadow: calc(100% + 3px) 0 0 0 #e8e4d4;
}
.hw-art-ram-dimm {
    width: 10px; height: 44px;
    background: linear-gradient(180deg, #1a6634 0%, #145528 40%, #1a6634 60%, #145528 100%);
    border-radius: 2px 2px 0 0;
    position: relative;
    border: 1px solid rgba(255,255,255,0.08);
}
/* Memory IC chips on DIMM */
.hw-art-ram-dimm::before {
    content: '';
    position: absolute; top: 4px; left: 2px;
    width: 5px; height: 3px;
    background: #0a0a0a;
    border-radius: 0.5px;
    border: 0.5px solid rgba(255,255,255,0.04);
    box-shadow: 0 6px 0 #0a0a0a, 0 12px 0 #0a0a0a, 0 18px 0 #0a0a0a, 0 24px 0 #0a0a0a;
}
/* Gold contacts + key notch */
.hw-art-ram-dimm::after {
    content: '';
    position: absolute; bottom: -3px; left: 0; right: 0;
    height: 4px;
    background:
        linear-gradient(90deg,
            repeating-linear-gradient(90deg, #c4a020 0px, #c4a020 1px, transparent 1px, transparent 2px) 0 0 / 40% 100%,
            transparent 40% 48%,
            repeating-linear-gradient(90deg, #c4a020 0px, #c4a020 1px, transparent 1px, transparent 2px) 48% 0 / 52% 100%
        );
}

/* NVMe M.2 — with controller + NAND chips */
.hw-art-nvme {
    width: 62px; height: 18px;
    background: linear-gradient(180deg, #1a6634, #134a24, #105020);
    border-radius: 2px;
    border: 1px solid rgba(255,255,255,0.08);
    position: relative;
    margin-bottom: 2px;
}
/* Controller chip + NAND chips */
.hw-art-nvme::before {
    content: '';
    position: absolute; top: 3px; left: 6px;
    width: 10px; height: 10px;
    background: #111;
    border-radius: 1px;
    border: 0.5px solid rgba(255,255,255,0.08);
    /* Second NAND chip */
    box-shadow: 14px 0 0 0 #111, 14px 0 0 0.5px rgba(255,255,255,0.06),
                28px 0 0 0 #111, 28px 0 0 0.5px rgba(255,255,255,0.06);
}
/* M.2 key connector */
.hw-art-nvme::after {
    content: '';
    position: absolute; top: 3px; right: -2px;
    width: 5px; height: 10px;
    background: repeating-linear-gradient(0deg, #c4a020 0px, #c4a020 1px, transparent 1px, transparent 2px);
    border-radius: 0 1px 1px 0;
}
/* M.2 label overlay */
.hw-art-nvme-label {
    position: absolute; top: 1px; left: 2px;
    font-size: 3.5px; font-weight: 700;
    color: rgba(255,255,255,0.12);
    letter-spacing: 0.1em;
    font-family: 'Arial', sans-serif;
}

/* Dual NVMe wrapper */
.hw-art-nvme-dual {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.hw-art-nvme-dual .hw-art-nvme {
    margin-bottom: 0;
}

/* Network PCIe Card */
.hw-art-nic {
    width: 70px; height: 32px;
    background: linear-gradient(180deg, #1a2d52, #142244, #101c3a);
    border-radius: 3px 3px 0 0;
    border: 1px solid rgba(120,140,180,0.15);
    position: relative;
    margin-bottom: 5px;
}
/* SFP+ ports with LED indicators */
.hw-art-nic::before {
    content: '';
    position: absolute; top: 5px; left: 6px;
    width: 12px; height: 10px;
    background: #0a0a0a;
    border: 1.5px solid rgba(140,150,170,0.35);
    border-radius: 1px;
    box-shadow:
        17px 0 0 #0a0a0a,
        17px 0 0 1.5px rgba(140,150,170,0.3),
        /* Port LEDs — green and amber */
        2px -3px 0 -1px #10b981,
        5px -3px 0 -1px #f59e0b,
        19px -3px 0 -1px #10b981,
        22px -3px 0 -1px #f59e0b;
}
/* PCIe edge connector + controller chip */
.hw-art-nic::after {
    content: '';
    position: absolute; bottom: -4px; left: 8px;
    width: 40px; height: 4px;
    background: repeating-linear-gradient(90deg, #c4a020 0px, #c4a020 1px, transparent 1px, transparent 2px);
    border-radius: 0 0 1px 1px;
    box-shadow:
        /* Controller chip on card */
        10px -14px 0 0 #0a0a0a,
        10px -14px 0 1px rgba(255,255,255,0.05);
}
/* PCIe bracket */
.hw-art-nic-bracket {
    position: absolute; left: -3px; top: -2px; bottom: -5px;
    width: 3px;
    background: linear-gradient(180deg, #888, #666);
    border-radius: 1px 0 0 1px;
}

/* Footer with provisioning progress */
.hero-chassis-foot {
    padding: 8px 12px;
    margin: 0 30px 0 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.hero-server-progress-text {
    font-size: 10px;
    color: rgba(255,255,255,0.4);
    font-family: 'SF Mono', 'Fira Code', 'Courier New', monospace;
    margin-bottom: 6px;
    display: flex; justify-content: space-between;
}
.hero-server-progress-pct {
    color: #009CFF; font-weight: 600;
}
.hero-server-progress-track {
    height: 3px; border-radius: 3px;
    background: rgba(255,255,255,0.06);
    overflow: hidden;
}
.hero-server-progress-fill {
    height: 100%; border-radius: 3px;
    background: linear-gradient(90deg, #009CFF, #00d4ff);
    width: 0%;
}

/* ── Hero content (headline + CTAs) ── */
.hero-content {
    flex: 1;
    min-width: 0;
    max-width: 640px;
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.08;
    margin-bottom: 20px;
    color: #fff;
    -webkit-text-fill-color: unset;
}
.hero-title-accent {
    background: linear-gradient(135deg, #00d4ff, #009CFF, #006EC8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
    margin-bottom: 12px;
}
.hero-text {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin-bottom: 28px;
}

/* ── Feature pills ── */
.hero-features {
    display: flex; align-items: center; justify-content: flex-start;
    gap: 10px; flex-wrap: wrap;
    margin-bottom: 32px;
}
.hero-pill {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 8px 16px; border-radius: 999px;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.08);
    font-size: 13px; font-weight: 500;
    color: rgba(255,255,255,0.75);
    transition: transform 0.3s ease, opacity 0.3s ease, color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.hero-pill:hover {
    background: rgba(0,156,255,0.12);
    border-color: rgba(0,156,255,0.3);
    color: #fff;
}
.hero-pill i { font-size: 11px; }
.hero-pill i.fa-map-marker-alt { color: #009CFF; }
.hero-pill i.fa-bolt { color: #fbbf24; }
.hero-pill i.fa-shield-alt { color: #10b981; }
.hero-pill i.fa-file-contract { color: #009CFF; }
.hero-promo-badge {
    padding: 7px 16px; border-radius: 999px;
    background: linear-gradient(135deg, #ffd644, #ff7a45);
    color: #1a1f3b; display: inline-flex; align-items: center; gap: 10px;
    font-size: 13px; box-shadow: 0 4px 24px rgba(255,122,69,0.35);
    margin-bottom: 20px;
}
.hero-promo-icon {
    width: 24px; height: 24px; border-radius: 999px;
    background: rgba(0,0,0,0.15);
    display: inline-flex; align-items: center; justify-content: center;
}
.hero-promo-icon i { font-size: 13px; }
.hero-promo-text {
    font-weight: 600; max-width: 260px;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.hero-promo-link {
    padding: 4px 10px; border-radius: 999px;
    background: rgba(0,0,0,0.12); color: #fff;
    font-weight: 600; font-size: 12px; text-decoration: none;
}
.hero-promo-link:hover { background: rgba(0,0,0,0.22); }
.hero-actions {
    display: flex; justify-content: flex-start; gap: 16px; flex-wrap: wrap;
}
.hero-btn {
    padding: 14px 36px; border-radius: 14px;
    font-weight: 600; font-size: 15px; transition: transform 0.3s ease, opacity 0.3s ease, color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 28px rgba(0, 156, 255, 0.35);
    position: relative;
    border: none;
}
.hero-btn:hover {
    box-shadow: 0 8px 40px rgba(0, 156, 255, 0.5);
    transform: translateY(-3px);
}
.hero-btn-outline {
    display: inline-flex; align-items: center;
    padding: 13px 36px; border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.15);
    color: #e2e8f0; font-size: 15px; font-weight: 500;
    text-decoration: none; transition: transform 0.3s ease, opacity 0.3s ease, color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.hero-btn-outline:hover {
    border-color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    color: #fff; text-decoration: none;
    box-shadow: 0 4px 24px rgba(255,255,255,0.08);
    transform: translateY(-3px);
}

/* ── Ambient Underglow ── */
.hero-server-glow {
    position: absolute;
    bottom: -16px; left: 8%; right: 8%;
    height: 32px;
    background: radial-gradient(ellipse at 50% 0%, rgba(0,156,255,0.18) 0%, transparent 70%);
    filter: blur(12px);
    pointer-events: none;
    opacity: 0;
    transition: opacity 2s ease;
    z-index: -1;
}
.hero-server-glow.active { opacity: 1; }

/* ── Chassis accent strip (blue line at bottom of inner area) ── */
.hero-chassis-accent {
    position: absolute;
    bottom: 0; left: 20px; right: 30px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #009CFF 30%, #00d4ff 50%, #009CFF 70%, transparent 100%);
    opacity: 0;
    transition: opacity 1.5s ease;
    z-index: 4;
}
.hero-chassis-accent.active {
    opacity: 1;
    box-shadow: 0 0 8px rgba(0,156,255,0.25), 0 0 20px rgba(0,156,255,0.1);
}

/* ── PSU Status LED ── */
.hero-psu-led {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    transition: background 0.4s, box-shadow 0.4s;
}
.hero-psu-led.on {
    background: #10b981;
    box-shadow: 0 0 4px #10b981, 0 0 8px rgba(16,185,129,0.3);
    animation: ledPulse 2s ease-in-out infinite;
}

/* ── I/O Shield between fans and PSUs ── */
.hero-rear-io {
    display: flex; flex-direction: column; gap: 2px;
    padding: 2px 3px;
    background: linear-gradient(180deg, #36393f, #2a2d33);
    border: 1px solid #4a4d53;
    border-radius: 2px;
    margin: 0 2px;
}
.hero-rear-io-port {
    width: 8px; height: 3px;
    background: #111;
    border-radius: 1px;
    border: 0.5px solid #555;
}
.hero-rear-io-port--eth {
    width: 6px; height: 5px;
    background: #0a0a0a;
    border: 0.5px solid #666;
    position: relative;
}
.hero-rear-io-port--eth::after {
    content: '';
    position: absolute; top: -2px; left: 1px;
    width: 2px; height: 2px; border-radius: 50%;
    background: #10b981;
    box-shadow: 3px 0 0 #f59e0b;
    opacity: 0;
    transition: opacity 0.3s;
}
.hero-rear-io-port--eth.on::after { opacity: 1; }

/* ── 4th Fan style ── */
.hero-fan--small {
    width: 24px; height: 24px;
}
.hero-fan--small .hero-fan-frame::before {
    box-shadow: 15px 0 0 #444, 0 15px 0 #444, 15px 15px 0 #444;
}

/* ── Rack Slide-In (overrides data-reveal for server) ── */
.hero-server[data-reveal="rack"] {
    opacity: 0;
    transform: translateX(120px);
    will-change: opacity, transform;
}
.hero-server[data-reveal="rack"].ph-visible {
    animation: rackSlideIn 1.1s cubic-bezier(0.16, 1, 0.3, 1) var(--ph-delay, 0s) forwards !important;
    transform: none !important;
}
@keyframes rackSlideIn {
    0%   { opacity: 0; transform: translateX(120px); }
    35%  { opacity: 1; }
    80%  { transform: translateX(-6px); }
    92%  { transform: translateX(2px); }
    100% { opacity: 1; transform: translateX(0); }
}

/* ── OLED Front-Panel Display ── */
.hero-io-oled {
    width: 62px; height: 14px;
    background: #050505;
    border: 1px solid #2a2a2a;
    border-radius: 2px;
    margin-left: auto;
    overflow: hidden;
    position: relative;
    font-family: 'SF Mono', 'Fira Code', 'Courier New', monospace;
    font-size: 6px;
    line-height: 14px;
    text-align: center;
    letter-spacing: 0.04em;
    box-shadow: inset 0 0 6px rgba(0,0,0,0.8);
}
.hero-io-oled-text {
    color: #00ff41;
    opacity: 0;
    transition: opacity 0.25s ease;
    white-space: nowrap;
}
.hero-io-oled-text.on { opacity: 1; }
/* Scanline effect on OLED */
.hero-io-oled::after {
    content: '';
    position: absolute; inset: 0;
    background: repeating-linear-gradient(
        180deg,
        transparent 0px, transparent 1px,
        rgba(0,0,0,0.15) 1px, rgba(0,0,0,0.15) 2px
    );
    pointer-events: none;
}

/* ── Fan Speed Ramp-Up ── */
.hero-fan--spin-slow::before  { animation-duration: 2.5s !important; }
.hero-fan--spin-med::before   { animation-duration: 1s !important; }
.hero-fan--spin-fast::before  { animation-duration: 0.35s !important; }

/* ── Front-Panel Temperature Display ── */
.hero-io-temp {
    font-family: 'SF Mono', 'Fira Code', 'Courier New', monospace;
    font-size: 7px;
    font-weight: 700;
    color: rgba(255,60,60,0.06);
    letter-spacing: 0.03em;
    transition: color 0.6s, text-shadow 0.6s;
    min-width: 18px;
    text-align: right;
}
.hero-io-temp.on {
    color: #ff5040;
    text-shadow: 0 0 3px rgba(255,80,60,0.4);
}


/* ── POST Boot (reuses progress text, no height change) ── */
.hero-server-progress-step {
    transition: opacity 0.2s ease;
}
.hero-server-progress-step.post-fade {
    opacity: 0;
}
/* Green bar state after POST completes */
.hero-server-progress-fill.post-done {
    background: linear-gradient(90deg, #10b981, #34d399) !important;
    transition: background 0.6s ease;
}
.hero-server-progress-pct.post-done {
    color: #10b981 !important;
    transition: color 0.4s ease;
}
.hero-server-progress-step.post-ready {
    color: #10b981;
    font-weight: 600;
}

/* ── Chassis Reflection ── */
.hero-chassis {
    -webkit-box-reflect: below 2px linear-gradient(transparent 88%, rgba(255,255,255,0.035));
}

/* ── PCB Pulse Wave ── */
.hero-mobo-pulse {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 10;
    overflow: hidden;
    border-radius: 4px;
}
.hero-mobo-pulse::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 50px;
    left: -50px;
    background: linear-gradient(90deg, transparent, rgba(0,156,255,0.3), rgba(0,212,255,0.15), transparent);
}
.hero-mobo-pulse.active::before {
    animation: pcbPulse 0.8s ease-in-out forwards;
}
@keyframes pcbPulse {
    0% { left: -50px; }
    100% { left: calc(100% + 50px); }
}
/* Mobo powered glow after pulse */
.hero-mobo.powered {
    border-color: rgba(0,156,255,0.25);
    box-shadow: inset 0 0 15px rgba(0,156,255,0.04), 0 0 8px rgba(0,156,255,0.06);
    transition: border-color 1.5s ease, box-shadow 1.5s ease;
}

/* ── NIC LED Blink on network activity ── */
@keyframes nicLedBlink {
    0%, 100% { opacity: 1; }
    25% { opacity: 0.15; }
    50% { opacity: 0.9; }
    75% { opacity: 0.25; }
}
.hero-hw--nic.hero-hw--installed .hw-art-nic::before {
    animation: nicLedBlink 0.45s ease-in-out infinite;
}

/* ── Data Flow Border Animation ── */
@keyframes dataFlow {
    0%, 100% {
        border-color: rgba(255,255,255,0.05);
        box-shadow: none;
    }
    50% {
        border-color: rgba(184,148,30,0.25);
        box-shadow: 0 0 8px rgba(184,148,30,0.1), inset 0 0 6px rgba(184,148,30,0.04);
    }
}
.hero-hw.data-flow {
    animation: dataFlow 2.5s ease-in-out infinite;
}
.hero-hw--mobo.data-flow { animation-delay: 0s; }
.hero-hw--cpu.data-flow { animation-delay: 0.4s; }
.hero-hw--ram.data-flow { animation-delay: 0.8s; }
.hero-hw--nvme.data-flow { animation-delay: 1.2s; }
.hero-hw--nic.data-flow { animation-delay: 1.6s; }

/* ── Responsive ── */
@media (max-width: 991.98px) {
    .hero-section { padding: 100px 0 50px; }
    .hero-title { font-size: 2.75rem; }
    .hero-layout { gap: 32px; }
    .hero-server { flex: 0 0 380px; }
}
@media (max-width: 767.98px) {
    .hero-section { min-height: auto; padding: 90px 0 40px; }
    .hero-layout { flex-direction: column; }
    .hero-content { text-align: center; max-width: 100%; }
    .hero-features { justify-content: center; }
    .hero-actions { justify-content: center; }
    .hero-title { font-size: 2rem; }
    .hero-server { flex: none; width: 100%; max-width: 420px; margin: 0 auto; }
    .hero-chassis { transform: perspective(1000px) rotateY(-1deg) rotateX(1deg); }
    .hero-features { gap: 6px; }
    .hero-pill { font-size: 12px; padding: 6px 12px; }
    .hero-mesh-dot { filter: blur(40px) !important; opacity: 0.2 !important; }
    .hero-promo-text { max-width: 180px; }
    .hero-rear-io { display: none; }
}
@media (max-width: 480px) {
    .hero-chassis { transform: none; }
    .hero-hw { padding: 8px; gap: 5px; }
    .hero-hw-spec { font-size: 11px; }
    .hero-mobo { gap: 5px; padding: 8px; }
    .hero-front-io { padding: 5px 10px; gap: 6px; }
    .hero-chassis-rear { padding: 6px 8px; }
    .hero-fan { width: 24px; height: 24px; }
    .hw-art-cpu { width: 38px; height: 38px; }
    .hw-art-ram-dimm { height: 32px; width: 7px; }
    .hw-art-nvme { width: 44px; height: 14px; }
    .hw-art-nic { width: 50px; height: 22px; }
    .hero-fan--small { display: none; }
}
@media (prefers-reduced-motion: reduce) {
    .hero-mesh-dot { animation: none !important; }
    .hero-hw { animation: none !important; opacity: 1; transform: none; }
    .hero-hw-led { animation: none !important; background: #10b981; box-shadow: 0 0 6px #10b981; }
    .hero-fan::before { animation: none !important; }
    .hero-io-led--power, .hero-io-led--hdd { animation: none !important; }
    .hero-mobo-pulse::before { animation: none !important; }
    .hero-hw.data-flow { animation: none !important; border-color: rgba(184,148,30,0.15); }
    .hw-art-nic::before { animation: none !important; }
    .hero-server-progress-step { transition: none !important; }
}

/* ===================================================
   STATS RIBBON
   =================================================== */
.hp-ribbon {
    background: #fff;
    border-bottom: 1px solid #e8edf2;
    position: relative; z-index: 12;
    /* pull up to overlap hero bottom */
    margin-top: 0;
}
.hp-ribbon-inner {
    display: grid; grid-template-columns: repeat(3, 1fr);
    border-left: 1px solid #e8edf2;
}
.hp-ribbon-item {
    padding: 1.2rem 1rem; text-align: center;
    border-right: 1px solid #e8edf2;
    border-top: 3px solid transparent;
    transition: border-color 0.25s, box-shadow 0.25s;
}
.hp-ribbon-item:hover { border-top-color: #009CFF; box-shadow: inset 0 -3px 0 #009CFF; }
.hp-ribbon-value {
    font-size: 1.5rem; font-weight: 800; color: #009CFF; line-height: 1;
    background: linear-gradient(135deg, #009CFF, #006EC8);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hp-ribbon-label { font-size: 0.775rem; color: #64748b; margin-top: 0.2rem; font-weight: 500; }

@media (max-width: 640px) {
    .hp-ribbon-inner { grid-template-columns: repeat(2, 1fr); }
}

/* ===================================================
   GAMES SHOWCASE SECTION
   =================================================== */
.games-section {
    padding: 6rem 0;
    background: #ffffff;
}
.games-header { text-align: center; margin-bottom: 3.25rem; }
.games-badge {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: var(--ph-color-primary-lt);
    border: 1px solid color-mix(in srgb, var(--ph-color-primary) 22%, transparent);
    color: var(--ph-color-primary);
    padding: 0.4rem 1rem;
    border-radius: var(--ph-radius-pill);
    font-size: 0.78rem; font-weight: 700;
    letter-spacing: 0.03em;
    margin-bottom: 1rem;
}
.games-header h2 { font-size: 2.25rem; font-weight: 800; color: var(--ph-color-navy); letter-spacing: -0.018em; margin-bottom: 0.75rem; }
.games-header p { color: var(--ph-color-muted); font-size: 1rem; max-width: 560px; margin: 0 auto; line-height: 1.6; }
.games-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}
.game-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center; text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative; overflow: hidden;
    display: flex; flex-direction: column; align-items: center;
}
.game-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 156, 255, 0.08);
    border-color: rgba(0, 156, 255, 0.3);
    background: #fff;
    text-decoration: none;
}
.game-icon {
    width: 60px; height: 60px;
    border-radius: 14px;
    margin: 0 auto 1rem;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; color: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.game-icon-mc    { background: linear-gradient(135deg, #6db33f, #4a8a2e); }
.game-icon-cs    { background: linear-gradient(135deg, #f5a623, #d4881e); }
.game-icon-val   { background: linear-gradient(135deg, #e4392b, #b32820); }
.game-icon-rust  { background: linear-gradient(135deg, #cd4300, #8b2e00); }
.game-icon-ark   { background: linear-gradient(135deg, #009CFF, #006EC8); }
.game-icon-fivem { background: linear-gradient(135deg, #1e2a5e, #4062bb); }
.game-icon-vr    { background: linear-gradient(135deg, #1a1a2e, #4a6fa5); }
.game-icon-tf    { background: linear-gradient(135deg, #7e3f98, #5a2a70); }
.game-icon-pal   { background: linear-gradient(135deg, #2ecc71, #1a8a4a); }
.game-icon-more  { background: linear-gradient(135deg, #14b8a6, #0d9488); }
.game-name { font-size: 0.9375rem; font-weight: 700; color: #182A39; margin-bottom: 0.25rem; }
.game-tag { font-size: 0.75rem; color: #009CFF; font-weight: 600; background: rgba(0,156,255,0.08); padding: 0.15rem 0.5rem; border-radius: 50px; }
.games-cta { text-align: center; }
.games-cta-btn {
    display: inline-flex; align-items: center; gap: 0.75rem;
    background: linear-gradient(135deg, #009CFF 0%, #006EC8 100%);
    color: #fff; padding: 0.875rem 2rem; border-radius: 50px;
    font-size: 0.9375rem; font-weight: 600; text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease, color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; box-shadow: 0 4px 20px rgba(0,156,255,0.3);
}
.games-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,156,255,0.4); color: #fff; text-decoration: none; }
@media (max-width: 1200px) { .games-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 900px)  { .games-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .games-header h2 { font-size: 1.75rem; } }
@media (max-width: 640px)  { .games-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===================================================
   PRODUCTS SECTION
   =================================================== */
.products-section {
    padding: 8rem 0 5rem;
    background: #ffffff;
    margin-top: -75px;
    position: relative;
    z-index: 10;
}
.products-header { text-align: center; margin-bottom: 3.25rem; }
.products-badge {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: var(--ph-color-primary-lt);
    border: 1px solid color-mix(in srgb, var(--ph-color-primary) 22%, transparent);
    color: var(--ph-color-primary);
    padding: 0.4rem 1rem;
    border-radius: var(--ph-radius-pill);
    font-size: 0.78rem; font-weight: 700;
    letter-spacing: 0.03em;
    margin-bottom: 1rem;
}
.products-header h2 { font-size: 2.25rem; font-weight: 800; color: var(--ph-color-navy); letter-spacing: -0.018em; margin-bottom: 0.75rem; }
.products-header p { color: var(--ph-color-muted); font-size: 1rem; max-width: 580px; margin: 0 auto; line-height: 1.6; }

.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.75rem; }

.product-card {
    --pc-accent:      var(--ph-color-primary);
    --pc-accent-d:    var(--ph-color-primary-d);
    --pc-accent-tint: var(--ph-color-primary-lt);
    background: #fff;
    border: 1px solid var(--ph-color-border);
    border-radius: var(--ph-radius-card);
    padding: 2rem 1.85rem 1.75rem;
    text-decoration: none;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex; flex-direction: column;
    position: relative; overflow: hidden;
}
.product-card:hover {
    border-color: var(--pc-accent);
    box-shadow: 0 6px 18px rgba(0, 156, 255, 0.08);
    transform: translateY(-2px);
}

.product-icon {
    width: 48px; height: 48px;
    border-radius: var(--ph-radius);
    background: var(--pc-accent-tint);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem;
}
.product-icon i { font-size: 1.25rem; color: var(--pc-accent); }

.product-content h3 { font-size: 1.25rem; font-weight: 700; color: var(--ph-color-navy); margin-bottom: 0.5rem; }
.product-content p { font-size: 0.875rem; color: var(--ph-color-muted); line-height: 1.55; margin-bottom: 1.25rem; }

.product-price { display: flex; align-items: baseline; gap: 0.3rem; margin-bottom: 1.25rem; }
.product-price .from {
    font-size: 0.7rem;
    color: var(--ph-color-light);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.product-price .amount {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--pc-accent);
    letter-spacing: -0.02em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.product-price .period { font-size: 0.8125rem; color: var(--ph-color-muted); }

.product-features {
    display: flex; flex-direction: column; gap: 0.55rem;
    padding-top: 1rem; border-top: 1px solid #f1f5f9;
    margin-bottom: 1.25rem; flex-grow: 1;
}
.product-features span { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8125rem; color: var(--ph-color-text); }
.product-features i { color: var(--ph-color-success); font-size: 0.75rem; }

.product-cta {
    display: flex; align-items: center; justify-content: space-between;
    font-size: 0.875rem; font-weight: 700; color: var(--pc-accent);
    padding-top: 1rem; border-top: 1px solid #f1f5f9;
}
.product-cta i { transition: transform 0.3s ease; }
.product-card:hover .product-cta i { transform: translateX(5px); }

@media (max-width: 1200px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
    .products-section { padding: 3rem 0; }
    .products-header h2 { font-size: 1.75rem; }
    .products-grid { grid-template-columns: 1fr; gap: 1rem; }
    .product-price .amount { font-size: 2rem; }
}

/* ===================================================
   TECH STACK / LOGO CLOUD (real partner logos)
   =================================================== */
.hp-stack-section {
    padding: 3.25rem 0 3rem;
    background: #fff;
    border-bottom: 1px solid var(--ph-color-border);
}
.hp-stack-eyebrow {
    text-align: center;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--ph-color-muted);
    margin: 0 auto 1.75rem;
    max-width: 620px;
    line-height: 1.5;
}
.hp-stack-grid {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 1180px;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1rem;
    align-items: center;
}
.hp-stack-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 0.5rem;
    user-select: none;
}
.hp-stack-item img {
    display: block;
    height: 38px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    opacity: 0.55;
    filter: grayscale(100%);
    transition: opacity 0.25s ease, filter 0.25s ease, transform 0.25s ease;
}
.hp-stack-item:hover img {
    opacity: 1;
    filter: grayscale(0);
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .hp-stack-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 720px) {
    .hp-stack-grid { grid-template-columns: repeat(3, 1fr); }
    .hp-stack-item img { height: 32px; }
}
@media (max-width: 480px) {
    .hp-stack-section { padding: 2.5rem 0 2.25rem; }
    .hp-stack-grid { grid-template-columns: repeat(2, 1fr); }
    .hp-stack-eyebrow { font-size: 0.74rem; padding: 0 1rem; }
}

/* ===================================================
   DARK SECTIONS WRAPPER (Features + Domain)
   =================================================== */
.dark-sections-wrapper { background: #182A39; position: relative; overflow: hidden; }
.dark-sections-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 20% 10%, rgba(0,156,255,0.12) 0%, transparent 35%),
        radial-gradient(circle at 80% 30%, rgba(0,110,200,0.08) 0%, transparent 35%),
        radial-gradient(circle at 30% 70%, rgba(0,156,255,0.1) 0%, transparent 40%),
        radial-gradient(circle at 85% 85%, rgba(0,110,200,0.08) 0%, transparent 35%);
    pointer-events: none;
}

/* Features */
.features-section { padding: 6rem 0 5rem; position: relative; }
.features-header { text-align: center; margin-bottom: 3.5rem; position: relative; z-index: 1; }
.features-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(255,255,255,0.1); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15); color: #fff;
    padding: 0.5rem 1.25rem; border-radius: 50px;
    font-size: 0.875rem; font-weight: 600; margin-bottom: 1rem;
}
.features-badge i { color: #fbbf24; }
.features-header h2 { font-size: 2.25rem; font-weight: 800; color: #fff; margin-bottom: 0.75rem; }
.features-header h2 span {
    background: linear-gradient(135deg, #009CFF 0%, #00d4ff 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.features-header p { color: rgba(255,255,255,0.7); font-size: 1.0625rem; max-width: 600px; margin: 0 auto; }

.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; position: relative; z-index: 1; }
.feature-glass-card {
    --fc-accent:    #009CFF;
    --fc-accent-d:  #006EC8;
    --fc-accent-rgb: 0, 156, 255;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 1.75rem;
    position: relative; overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
/* Per-card accent rotation (1=blue, 2=purple, 3=cyan, 4=green, 5=amber, 6=blue) */

.feature-glass-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(var(--fc-accent-rgb), 0.45), transparent);
}
.feature-glass-card:hover {
    background: rgba(255, 255, 255, 0.065);
    border-color: rgba(var(--fc-accent-rgb), 0.28);
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}
.feature-glass-glow {
    position: absolute; bottom: -50%; left: 50%; transform: translateX(-50%);
    width: 150%; height: 100%;
    background: radial-gradient(ellipse, rgba(var(--fc-accent-rgb), 0.18) 0%, transparent 70%);
    pointer-events: none; opacity: 0; transition: opacity 0.4s ease;
}
.feature-glass-card:hover .feature-glass-glow { opacity: 1; }

.feature-glass-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: rgba(var(--fc-accent-rgb), 0.15);
    border: 1px solid rgba(var(--fc-accent-rgb), 0.28);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.feature-glass-icon i { font-size: 1.35rem; color: var(--fc-accent); }
.feature-glass-card h3 { font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: 0.55rem; letter-spacing: -0.01em; }
.feature-glass-card p { font-size: 0.9rem; color: rgba(255,255,255,0.68); line-height: 1.6; margin: 0; }

@media (max-width: 1024px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
    .features-section { padding: 4rem 0; }
    .features-header h2 { font-size: 1.75rem; }
    .features-grid { grid-template-columns: 1fr; gap: 1rem; }
    .feature-glass-card { padding: 1.5rem; }
}

/* Domain Section */
.domain-section { padding: 2rem 0 6rem; position: relative; }
.domain-header { text-align: center; margin-bottom: 3rem; position: relative; z-index: 1; }
.domain-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(255,255,255,0.1); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15); color: #fff;
    padding: 0.5rem 1.25rem; border-radius: 50px;
    font-size: 0.875rem; font-weight: 600; margin-bottom: 1rem;
}
.domain-badge i { color: #009CFF; }
.domain-header h2 { font-size: 2.25rem; font-weight: 800; color: #fff; margin-bottom: 0.75rem; }
.domain-header p { color: rgba(255,255,255,0.7); font-size: 1.0625rem; max-width: 500px; margin: 0 auto; }

.domain-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; position: relative; z-index: 1; }
.domain-card {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 1.4rem 0.5rem 1.2rem;
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative; overflow: hidden;
}
.domain-card::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(0,156,255,0.16) 0%, transparent 70%);
    opacity: 0; transition: opacity 0.3s ease;
    pointer-events: none;
}
.domain-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(0,156,255,0.42);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.28), 0 0 24px rgba(0,156,255,0.1);
}
.domain-card:hover::before { opacity: 1; }
.domain-tld {
    font-size: 1.55rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.4rem;
    position: relative; z-index: 1;
    letter-spacing: -0.01em;
}
.domain-tld::before {
    content: '';
    display: block;
    width: 24px; height: 2px;
    margin: 0 auto 0.75rem;
    background: linear-gradient(90deg, transparent, #009CFF, transparent);
    border-radius: 1px;
    opacity: 0.6;
    transition: width 0.3s ease, opacity 0.3s ease;
}
.domain-card:hover .domain-tld::before { width: 40px; opacity: 1; }
.domain-price { display: flex; align-items: baseline; justify-content: center; gap: 0.18rem; position: relative; z-index: 1; }
.domain-price .amount { font-size: 1.05rem; font-weight: 700; color: #009CFF; font-variant-numeric: tabular-nums; }
.domain-price .period { font-size: 0.7rem; color: rgba(255,255,255,0.45); }
.domain-popular {
    position: absolute; top: 0.5rem; right: 0.5rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff; font-size: 0.58rem; font-weight: 700;
    padding: 0.2rem 0.5rem; border-radius: 50px;
    text-transform: uppercase; letter-spacing: 0.06em;
    box-shadow: 0 2px 8px rgba(16,185,129,0.35);
}
.domain-cta { text-align: center; margin-top: 2.5rem; position: relative; z-index: 1; }
.domain-cta-btn {
    display: inline-flex; align-items: center; gap: 0.75rem;
    background: linear-gradient(135deg, #009CFF 0%, #006EC8 100%);
    color: #fff; padding: 0.875rem 2rem; border-radius: 50px;
    font-size: 0.9375rem; font-weight: 600; text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease, color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; box-shadow: 0 4px 20px rgba(0,156,255,0.3);
}
.domain-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,156,255,0.4); color: #fff; }

@media (max-width: 1200px) { .domain-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) {
    .domain-section { padding: 3rem 0; }
    .domain-header h2 { font-size: 1.75rem; }
    .domain-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .domain-card { padding: 1.25rem 0.75rem; }
    .domain-tld { font-size: 1.25rem; }
}

/* ===================================================
   TRUST / SOCIAL PROOF SECTION
   =================================================== */
.trust-section {
    padding: 6rem 0;
    background: #f8fafc;
    position: relative;
}
.trust-header { text-align: center; margin-bottom: 3rem; }
.trust-badge {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: var(--ph-color-primary-lt);
    border: 1px solid color-mix(in srgb, var(--ph-color-primary) 22%, transparent);
    color: var(--ph-color-primary);
    padding: 0.4rem 1rem;
    border-radius: var(--ph-radius-pill);
    font-size: 0.78rem; font-weight: 700;
    letter-spacing: 0.03em;
    margin-bottom: 1rem;
}
.trust-header h2 { font-size: 2.25rem; font-weight: 800; color: #182A39; margin-bottom: 0.65rem; }
.trust-header p { color: #64748b; font-size: 1rem; max-width: 580px; margin: 0 auto; }

/* Trust pillars — inline, no card chrome */
.trust-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.25rem 2rem;
    margin-bottom: 3.5rem;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
}
.trust-pillar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}
.trust-pillar-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    margin-bottom: 0.85rem;
    color: var(--ph-color-primary);
    background: transparent;
    border-radius: 0;
}
/* Legacy aliases — keep markup compatibility */
.trust-pillar-icon-blue,
.trust-pillar-icon-green,
.trust-pillar-icon-purple,
.trust-pillar-icon-orange { background: inherit; color: inherit; }

.trust-pillar-body h4 {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--ph-color-navy);
    margin-bottom: 0.45rem;
    letter-spacing: -0.005em;
}
.trust-pillar-body p {
    font-size: 0.875rem;
    color: var(--ph-color-muted);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) { .trust-pillars { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; } }
@media (max-width: 480px)  { .trust-pillars { grid-template-columns: 1fr; gap: 1.75rem; } }

/* Payment methods */
.trust-payment { text-align: center; }
.trust-payment-title { font-size: 0.8125rem; font-weight: 600; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 1.25rem; }
.trust-payment-icons {
    display: inline-flex; align-items: center; justify-content: center;
    flex-wrap: wrap; gap: 1.5rem;
}
.trust-payment-icons i {
    font-size: 34px;
    color: #b0bec5;
    transition: color 0.2s ease, transform 0.2s ease;
    cursor: default;
}
.trust-payment-icons i:hover {
    color: #334155;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .trust-section { padding: 3.5rem 0; }
    .trust-header h2 { font-size: 1.75rem; }
}

/* ===================================================
   REVIEWS SECTION
   =================================================== */
.hp-reviews-section { padding: 5rem 0; background: #fff; }
.hp-reviews-header { text-align: center; margin-bottom: 2.5rem; }
.hp-reviews-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(0,156,255,0.08); border: 1px solid rgba(0,156,255,0.2);
    color: #009CFF; padding: 0.4rem 1rem; border-radius: 50px;
    font-size: 0.8rem; font-weight: 600; margin-bottom: 0.85rem;
}
.hp-reviews-header h2 { font-size: 2.25rem; font-weight: 800; color: #182A39; margin-bottom: 0.5rem; }
.hp-reviews-header p { color: #64748b; font-size: 1rem; max-width: 560px; margin: 0 auto; }
.hp-reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.hp-review-card {
    background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 18px;
    padding: 1.75rem; display: flex; flex-direction: column;
    transition: transform 0.3s ease, opacity 0.3s ease, color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; position: relative; overflow: hidden;
}
.hp-review-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, #009CFF, #006EC8);
    transform: scaleX(0); transition: transform 0.3s ease;
}
.hp-review-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.09); border-color: #009CFF; }
.hp-review-card:hover::before { transform: scaleX(1); }
.hp-review-stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 1rem; display: flex; gap: 0.2rem; }
.hp-review-text { font-size: 0.9375rem; color: #374151; line-height: 1.7; flex: 1; margin-bottom: 1.25rem; font-style: italic; }
.hp-review-author { display: flex; align-items: center; gap: 0.75rem; padding-top: 1rem; border-top: 1px solid #e8edf2; }
.hp-review-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(135deg, #009CFF, #006EC8);
    color: #fff; font-weight: 700; font-size: 1rem;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hp-review-name { font-size: 0.875rem; font-weight: 700; color: #182A39; }
.hp-review-date { font-size: 0.75rem; color: #94a3b8; }
.hp-review-verified {
    margin-left: auto; display: inline-flex; align-items: center; gap: 0.3rem;
    font-size: 0.7rem; font-weight: 600; color: #00b67a;
    background: rgba(0,182,122,0.08); padding: 0.2rem 0.55rem; border-radius: 6px; flex-shrink: 0;
}
.hp-reviews-footer { text-align: center; margin-top: 2rem; }
.hp-reviews-footer a {
    display: inline-flex; align-items: center; gap: 0.4rem;
    color: #64748b; font-size: 0.82rem; text-decoration: none;
    transition: color 0.2s;
}
.hp-reviews-footer a:hover { color: #009CFF; }
@media (max-width: 768px) {
    .hp-reviews-section { padding: 3.5rem 0; }
    .hp-reviews-header h2 { font-size: 1.75rem; }
    .hp-reviews-grid { grid-template-columns: 1fr; gap: 1rem; }
}

/* ===================================================
   HOW IT WORKS SECTION
   =================================================== */
.how-it-works-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}
.how-header { text-align: center; margin-bottom: 4rem; }
.how-badge {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: var(--ph-color-primary-lt);
    border: 1px solid color-mix(in srgb, var(--ph-color-primary) 22%, transparent);
    color: var(--ph-color-primary);
    padding: 0.4rem 1rem;
    border-radius: var(--ph-radius-pill);
    font-size: 0.78rem; font-weight: 700;
    letter-spacing: 0.03em;
    margin-bottom: 1rem;
}
.how-header h2 { font-size: 2.25rem; font-weight: 800; color: #182A39; margin-bottom: 1rem; }
.how-header p { font-size: 1.125rem; color: #64748b; max-width: 600px; margin: 0 auto; }

/* Step grid */
.hiw-grid {
    display: grid;
    grid-template-columns: 1fr 100px 1fr 100px 1fr;
    align-items: flex-start;
    max-width: 1000px; margin: 0 auto;
}
.hiw-step { display: flex; flex-direction: column; align-items: center; text-align: center; }
.hiw-icon-wrap {
    width: 84px; height: 84px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ph-color-primary) 0%, var(--ph-color-primary-d) 100%);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    box-shadow: 0 8px 22px rgba(0, 156, 255, 0.22);
}
.hiw-icon-wrap i { font-size: 1.65rem; color: #fff; }
.hiw-num {
    position: absolute; top: -6px; right: -6px;
    width: 30px; height: 30px; border-radius: 50%;
    background: #fff; color: var(--ph-color-primary);
    font-weight: 800; font-size: 0.8125rem;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    border: 2px solid #e8edf2;
    z-index: 1;
}
.hiw-connector {
    display: flex; align-items: center; justify-content: center;
    padding-top: 46px;
}
.hiw-connector-line {
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--ph-color-primary), var(--ph-color-primary-d));
    border-radius: 2px; position: relative;
}
.hiw-connector-line::after {
    content: ''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%);
    width: 0; height: 0;
    border-left: 8px solid var(--ph-color-primary-d);
    border-top: 5px solid transparent; border-bottom: 5px solid transparent;
}
.hiw-step h3 { font-size: 1.15rem; font-weight: 700; color: var(--ph-color-navy); margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.hiw-step p { font-size: 0.88rem; color: var(--ph-color-muted); line-height: 1.6; max-width: 240px; margin: 0 auto; }

@media (max-width: 768px) {
    .how-it-works-section { padding: 4rem 0; }
    .how-header h2 { font-size: 1.75rem; }
    .hiw-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .hiw-connector { display: none; }
    .hiw-step p { max-width: 100%; }
}

/* ===================================================
   FAQ ACCORDION
   =================================================== */
.hp-faq-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}
.hp-faq-header { text-align: center; margin-bottom: 2.75rem; }
.hp-faq-badge {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: var(--ph-color-primary-lt);
    border: 1px solid color-mix(in srgb, var(--ph-color-primary) 22%, transparent);
    color: var(--ph-color-primary);
    padding: 0.4rem 1rem;
    border-radius: var(--ph-radius-pill);
    font-size: 0.8rem; font-weight: 700;
    letter-spacing: 0.03em;
    margin-bottom: 1rem;
}
.hp-faq-header h2 {
    font-size: 2.25rem; font-weight: 800;
    color: var(--ph-color-navy);
    letter-spacing: -0.018em;
    margin: 0 0 0.55rem;
}
.hp-faq-header p {
    color: var(--ph-color-muted);
    font-size: 1rem;
    max-width: 580px;
    margin: 0 auto;
}

.hp-faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex; flex-direction: column;
    gap: 0.65rem;
}
.hp-faq-item {
    background: #fff;
    border: 1px solid var(--ph-color-border);
    border-radius: var(--ph-radius-card);
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.hp-faq-item:hover { border-color: color-mix(in srgb, var(--ph-color-primary) 30%, transparent); }
.hp-faq-item[open] {
    border-color: var(--ph-color-primary);
    box-shadow: 0 6px 20px rgba(0, 156, 255, 0.08);
}
.hp-faq-q {
    list-style: none;
    cursor: pointer;
    padding: 1.1rem 1.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--ph-color-navy);
    user-select: none;
}
.hp-faq-q::-webkit-details-marker { display: none; }
.hp-faq-q::marker { content: ''; }
.hp-faq-q > span { flex: 1; }
.hp-faq-chevron {
    flex-shrink: 0;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--ph-color-primary-lt);
    color: var(--ph-color-primary);
    display: inline-flex;
    align-items: center; justify-content: center;
    font-size: 0.75rem;
    transition: transform 0.25s ease, background 0.25s ease;
}
.hp-faq-item[open] .hp-faq-chevron {
    transform: rotate(180deg);
    background: var(--ph-color-primary);
    color: #fff;
}
.hp-faq-a {
    padding: 0 1.4rem 1.2rem;
    color: var(--ph-color-text);
    font-size: 0.95rem;
    line-height: 1.65;
}

.hp-faq-footer {
    text-align: center;
    margin-top: 2.25rem;
}
.hp-faq-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--ph-color-primary);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: gap 0.2s ease;
}
.hp-faq-more:hover {
    color: var(--ph-color-primary-d);
    text-decoration: none;
    gap: 0.7rem;
}

@media (max-width: 768px) {
    .hp-faq-section { padding: 3.5rem 0; }
    .hp-faq-header h2 { font-size: 1.75rem; }
    .hp-faq-q { padding: 1rem 1.1rem; font-size: 0.95rem; }
    .hp-faq-a { padding: 0 1.1rem 1rem; font-size: 0.9rem; }
}

/* ===================================================
   SERVER PRICING SECTION
   =================================================== */
.server-pricing-section {
    padding: 6rem 0; background: #182A39;
    position: relative; overflow: hidden;
}
.server-pricing-section::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(0,156,255,0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0,110,200,0.08) 0%, transparent 40%);
    pointer-events: none;
}
.pricing-header { text-align: center; margin-bottom: 4rem; position: relative; z-index: 1; }
.pricing-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.5rem 1rem; background: rgba(0,156,255,0.15);
    border: 1px solid rgba(0,156,255,0.3); border-radius: 50px;
    color: #009CFF; font-size: 0.875rem; font-weight: 600; margin-bottom: 1rem;
}
.pricing-header h2 { font-size: 2.25rem; font-weight: 800; color: #ffffff; margin-bottom: 1rem; }
.pricing-header p { font-size: 1.125rem; color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto; }

.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }
.pricing-card {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 22px;
    padding: 2rem 1.85rem;
    position: relative;
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.pricing-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.06);
    border-color: rgba(0,156,255,0.35);
    box-shadow: 0 22px 44px rgba(0,0,0,0.32), 0 0 36px rgba(0,156,255,0.12);
}
.pricing-card.featured {
    background: linear-gradient(180deg, rgba(0,156,255,0.14) 0%, rgba(0,156,255,0.05) 100%);
    border-color: rgba(0,156,255,0.45);
    transform: scale(1.02);
    box-shadow: 0 0 0 1px rgba(0,156,255,0.2), 0 16px 40px rgba(0,0,0,0.28);
}
.pricing-card.featured:hover { transform: scale(1.02) translateY(-6px); }
.featured-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, var(--ph-color-primary) 0%, var(--ph-color-primary-d) 100%);
    color: #fff;
    font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
    padding: 0.45rem 1.1rem; border-radius: 50px;
    letter-spacing: 0.06em;
    box-shadow: 0 6px 20px rgba(0,156,255,0.4);
    white-space: nowrap;
}
.pricing-card-header { margin-bottom: 1.5rem; padding-top: 0.5rem; }
.pricing-card.featured .pricing-card-header { padding-top: 1rem; }
.pricing-card-header h3 { font-size: 1.45rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.pricing-card-header p { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin: 0; line-height: 1.5; }
.pricing-card-price { margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.price-from { font-size: 0.7rem; color: rgba(255,255,255,0.55); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.price-amount { display: flex; align-items: baseline; gap: 0.3rem; margin-top: 0.2rem; }
.price-amount .price {
    font-size: 2.4rem; font-weight: 800;
    color: var(--ph-color-primary);
    letter-spacing: -0.02em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.price-amount .price-period { font-size: 0.92rem; color: rgba(255,255,255,0.5); }
.pricing-features { list-style: none; padding: 0; margin: 0 0 1.75rem 0; }
.pricing-features li { display: flex; align-items: center; gap: 0.65rem; padding: 0.4rem 0; color: rgba(255,255,255,0.82); font-size: 0.9rem; }
.pricing-features li i { color: var(--ph-color-success); font-size: 0.78rem; }
.pricing-btn {
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    width: 100%; padding: 0.95rem 1.5rem;
    background: linear-gradient(135deg, var(--ph-color-primary) 0%, var(--ph-color-primary-d) 100%);
    color: #fff; font-weight: 700; font-size: 0.95rem;
    border-radius: var(--ph-radius);
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 18px rgba(0,156,255,0.3);
}
.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0,156,255,0.45);
    color: #fff;
}
.pricing-btn i { font-size: 0.8rem; transition: transform 0.25s ease; }
.pricing-btn:hover i { transform: translateX(4px); }

.pricing-footer { text-align: center; margin-top: 3rem; position: relative; z-index: 1; }
.pricing-info-card {
    display: inline-flex; align-items: center; gap: 1.25rem;
    padding: 1.25rem 2rem; background: rgba(0,156,255,0.1);
    border: 1px solid rgba(0,156,255,0.25); border-radius: 16px;
    text-decoration: none; transition: transform 0.3s ease, opacity 0.3s ease, color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; max-width: 600px;
}
.pricing-info-card:hover { background: rgba(0,156,255,0.15); border-color: rgba(0,156,255,0.4); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,156,255,0.2); }
.pricing-info-icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, #009CFF 0%, #006EC8 100%);
    border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.pricing-info-icon i { color: #fff; font-size: 1.25rem; }
.pricing-info-content { display: flex; flex-direction: column; text-align: left; }
.pricing-info-title { font-size: 1rem; font-weight: 600; color: #ffffff; margin-bottom: 0.25rem; }
.pricing-info-text { font-size: 0.875rem; color: rgba(255,255,255,0.6); }
.pricing-info-arrow {
    width: 36px; height: 36px; background: rgba(255,255,255,0.1);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; transition: transform 0.3s ease, opacity 0.3s ease, color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.pricing-info-arrow i { color: #009CFF; font-size: 0.875rem; transition: transform 0.3s ease; }
.pricing-info-card:hover .pricing-info-arrow { background: #009CFF; }
.pricing-info-card:hover .pricing-info-arrow i { color: #fff; transform: translateX(3px); }

@media (max-width: 768px) {
    .server-pricing-section { padding: 4rem 0; }
    .pricing-header h2 { font-size: 1.75rem; }
    .pricing-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .pricing-card.featured { transform: none; order: -1; }
    .pricing-card.featured:hover { transform: translateY(-5px); }
    .price-amount .price { font-size: 2rem; }
    .pricing-info-card { flex-direction: column; text-align: center; padding: 1.25rem; gap: 1rem; }
    .pricing-info-content { text-align: center; }
    .pricing-info-arrow { display: none; }
}

/* ===================================================
   FINAL CTA SECTION
   =================================================== */
.final-cta-section {
    padding: 5.5rem 0 6rem;
    background: linear-gradient(180deg, #f8fafc 0%, #eef4fb 100%);
    position: relative; overflow: hidden; text-align: center;
    border-top: 1px solid rgba(0,156,255,0.08);
}
.final-cta-section::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(circle at 15% 60%, rgba(0,156,255,0.07) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(0,156,255,0.05) 0%, transparent 45%);
    pointer-events: none;
}
.final-cta-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.final-cta-badge {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: var(--ph-color-primary-lt);
    border: 1px solid color-mix(in srgb, var(--ph-color-primary) 22%, transparent);
    color: var(--ph-color-primary);
    padding: 0.42rem 1rem; border-radius: var(--ph-radius-pill);
    font-size: 0.78rem; font-weight: 700;
    letter-spacing: 0.03em;
    margin-bottom: 1.25rem;
}
.final-cta-title {
    font-size: clamp(1.85rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--ph-color-navy);
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin-bottom: 0.85rem;
}
.final-cta-subtitle {
    font-size: 1.02rem;
    color: var(--ph-color-muted);
    max-width: 560px; margin: 0 auto 2.25rem;
    line-height: 1.6;
}
.final-cta-actions { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.final-cta-btn-primary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.85rem 1.85rem;
    background: linear-gradient(135deg, var(--ph-color-primary) 0%, var(--ph-color-primary-d) 100%);
    color: #fff;
    font-weight: 700; font-size: 0.93rem;
    border-radius: var(--ph-radius-pill);
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 6px 22px rgba(0,156,255,0.3);
}
.final-cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(0,156,255,0.45);
    color: #fff; text-decoration: none;
}
.final-cta-btn-outline {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.85rem 1.85rem;
    background: transparent;
    border: 1.5px solid var(--ph-color-border-strong);
    color: #334155;
    font-weight: 600; font-size: 0.93rem;
    border-radius: var(--ph-radius-pill);
    text-decoration: none;
    transition: border-color 0.25s ease, color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}
.final-cta-btn-outline:hover {
    border-color: var(--ph-color-primary);
    color: var(--ph-color-primary);
    background: var(--ph-color-primary-lt);
    text-decoration: none;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .final-cta-section { padding: 4rem 0; }
    .final-cta-actions { flex-direction: column; }
    .final-cta-btn-primary, .final-cta-btn-outline { width: 100%; justify-content: center; }
}
