@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;500;700;800&family=Inter:wght@300;400;500;600&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css");
/* CSS específico generado desde proxmox-soporte.html.
   Se excluyen reglas de clases del header/footer común porque se movieron a assets/header.css y assets/footer.css. */

/* Copiado desde style.css */
:root {
    --bg: #05080d;
    --bg-accent: #0a1118;
    --primary: #ff5e00;
    /* Naranja intenso */
    --primary-dark: #cc4a00;
    --accent: #ffd04d;
    /* Soft Amber / Yellow */
    --accent-dark: #cc993d;
    --text: #f1f5f9;
    --text-dim: #94a3b8;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
    --font-sans: 'Outfit', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --header-height: 80px;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Elements */
canvas#bgCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
}

.orb {
    position: fixed;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -2;
    opacity: 0.12;
    pointer-events: none;
    animation: floatOrb 25s infinite alternate;
}

.orb-1 {
    background: radial-gradient(circle, var(--primary), transparent 70%);
    top: -200px;
    left: -200px;
}

.orb-2 {
    background: radial-gradient(circle, var(--accent), transparent 70%);
    bottom: -200px;
    right: -200px;
    animation-delay: -7s;
}

@keyframes floatOrb {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(150px, 150px) scale(1.1);
    }
}

/* Typography */
h1,
h2,
h3,
h4 {
    letter-spacing: -0.02em;
}

.highlight {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 800;
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Hero Section */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding-top: calc(var(--header-height) + 30px);
    padding-bottom: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 94, 0, 0.1);
    border: 1px solid rgba(255, 94, 0, 0.2);
    padding: 8px 16px;
    border-radius: 100px;
    color: var(--primary);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-dim);
    max-width: 600px;
    margin-bottom: 35px;
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.img-container {
    width: 75%;
    position: relative;
}

.img-container img {
    width: 100%;
    border-radius: 24px;
    border: 1px solid var(--card-border);
    mask-image: linear-gradient(to bottom, black 80%, transparent);
}

/* Solutions Section (Image Style) */
.solutions-section {
    padding: 70px 30px;
    background: var(--bg);
    position: relative;
    z-index: 10;
}

.solutions-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.solutions-header h2 {
    font-size: 2.22rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.solutions-header p {
    color: var(--text-dim);
    font-size: 1rem;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.solution-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.solution-card .sol-icon {
    font-size: 2.8rem;
    color: var(--accent);
    margin-bottom: 15px;
    transition: var(--transition);
    z-index: 2;
}

.solution-card h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 700;
    z-index: 2;
}

.solution-card p {
    font-size: 0.95rem;
    color: var(--text-dim);
    margin-bottom: 35px;
    line-height: 1.6;
    flex-grow: 1;
    z-index: 2;
}

/* Watermark Icon (Top-Left Dynamic) */
.sol-watermark {
    position: absolute;
    top: -40px;
    left: -40px;
    font-size: 15rem;
    color: var(--primary);
    opacity: 0;
    /* Fully hidden until hover */
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: none;
    z-index: 0;
    transform: rotate(-15deg) scale(0.8);
}

/* Hover Effect (Image 2 Style) */
.solution-card:hover {
    background: rgba(13, 20, 33, 0.9);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 94, 0, 0.1);
    border-color: var(--accent);
}

.solution-card:hover .sol-watermark {
    opacity: 0.08;
    /* Subtle large icon watermark on the left */
    transform: rotate(-5deg) scale(1.1);
    left: -20px;
}

.solution-card:hover .sol-icon {
    transform: scale(1.1);
    color: var(--primary);
}

.solution-card:hover h3,
.solution-card:hover p {
    color: #fff;
}

/* Stats Bar Section */
.stats-bar-section {
    background: #05080d;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 5;
}

.stats-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
    padding: 0 30px;
}

.stat-item {
    text-align: center;
    flex: 1;
    position: relative;
    padding: 5px;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 4px;
    font-family: var(--font-sans);
    letter-spacing: -0.5px;
    position: relative;
}

.stat-text {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--text-dim);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: var(--font-mono);
}

@media (max-width: 991px) {
.stats-bar-container {
        flex-wrap: wrap;
        gap: 50px;
    }

.stat-item {
        flex: 1 1 40%;
    }

.stat-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
.stat-item {
        flex: 1 1 100%;
    }
}

/* Flashy Ticker Section */
.ticker-section {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    padding: 20px 0;
    overflow: hidden;
    position: relative;
    z-index: 5;
    box-shadow: 0 10px 30px rgba(255, 94, 0, 0.2);
    margin: 40px 0;
}

.ticker-wrapper {
    display: flex;
    white-space: nowrap;
}

.ticker-track {
    display: flex;
    align-items: center;
    gap: 100px; /* Space between items */
    animation: scrollTicker 40s linear infinite;
}

.ticker-item {
    display: flex;
    flex-direction: row; /* Icon beside text */
    align-items: center;
    gap: 15px; /* Small space between icon and word */
}

.ticker-item i {
    font-size: 1.8rem; 
    color: #fff;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.ticker-item span {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.ticker-track .dot {
    display: none; /* Removed as we use gaps now */
}

@keyframes scrollTicker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Pause on hover */
.ticker-section:hover .ticker-track {
    animation-play-state: paused;
}

/* Products and Services List Section */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 170px;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 0;
}

.value-added-section {
    padding: 60px 30px;
}

.bento-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    padding: 22px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
}

.bento-item:hover {
    background: rgba(255, 94, 0, 0.08);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-medium {
    grid-column: span 2;
    grid-row: span 1;
}

.bento-small {
    grid-column: span 1;
    grid-row: span 1;
}

.bento-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.bento-icon {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 12px;
}

.bento-item h3 {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 10px;
}

.bento-item p {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.6;
}

.bento-list {
    margin-top: auto;
    list-style: none;
}

.bento-list li {
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bento-badge {
    margin-top: auto;
    align-self: flex-start;
    background: rgba(255, 208, 131, 0.1);
    color: var(--accent);
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid rgba(241, 212, 131, 0.2);
}

.bento-bg-icon {
    position: absolute;
    bottom: -30px;
    right: -30px;
    font-size: 12rem;
    color: var(--primary);
    opacity: 0.03;
    transition: var(--transition);
}

.bento-item:hover .bento-bg-icon {
    opacity: 0.1;
    transform: scale(1.1) rotate(-5deg);
}

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

.bento-large,
    .bento-medium,
    .bento-small {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
.bento-grid {
        grid-template-columns: 1fr;
    }

.bento-item {
        grid-column: span 1;
    }
}

/* Data Sovereignty Section */
.data-sovereignty-section {
    padding: 80px 30px;
    background: linear-gradient(135deg, rgba(10, 17, 24, 0.8), rgba(5, 8, 13, 0.9));
    position: relative;
    z-index: 10;
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
    margin-bottom: 40px;
}

.sovereignty-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

.sovereignty-content {
    flex: 1;
}

.sovereignty-content h2 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 10px;
}

.sovereignty-content h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.sovereignty-info p {
    color: var(--text-dim);
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.sovereignty-list {
    list-style: none;
    margin-bottom: 30px;
}

.sovereignty-list li {
    margin-bottom: 15px;
    color: var(--text-dim);
    font-size: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.sovereignty-list li i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 3px;
}

.sovereignty-list li strong {
    color: var(--text);
}

.sovereignty-alert {
    background: rgba(255, 94, 0, 0.1);
    border-left: 4px solid var(--primary);
    padding: 15px 20px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 30px;
}

.sovereignty-alert p {
    color: #ffcc80;
    font-weight: 600;
    font-size: 1.05rem;
    margin: 0;
}

.sovereignty-message-container {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0;
}

.sovereignty-message {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.sovereignty-message p {
    color: var(--text);
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.6;
}

.sovereignty-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.sovereignty-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 94, 0, 0.2);
    border: 1px solid rgba(255, 94, 0, 0.3);
    transition: var(--transition);
}

.sovereignty-image img:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 94, 0, 0.4);
}

@media (max-width: 991px) {
.sovereignty-container {
        flex-direction: column;
        text-align: center;
    }

.sovereignty-list li {
        text-align: left;
    }

.sovereignty-alert {
        text-align: left;
    }

.sovereignty-message {
        text-align: left;
    }
}

/* Holding / Cloud Perú Section */
.holding-section {
    padding: 80px 30px;
    background: #05080d;
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(255, 94, 0, 0.2);
    border-bottom: 1px solid var(--card-border);
}

.holding-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--card-border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(255, 94, 0, 0.05);
}

.holding-content {
    flex: 1;
}

.holding-content h2 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}

.holding-content p {
    color: var(--text-dim);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.holding-content p:last-child {
    margin-bottom: 0;
}

.holding-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.holding-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    /* Destello naranja por defecto + sombra oscura */
    box-shadow: 0 0 30px rgba(255, 94, 0, 0.3), 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.holding-image img:hover {
    transform: scale(1.02);
    /* Destello naranja intensificado al pasar el mouse */
    box-shadow: 0 0 50px rgba(255, 94, 0, 0.6), 0 15px 40px rgba(0, 0, 0, 0.6);
}

@media (max-width: 991px) {
.holding-container {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
}

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 94, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 102, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 102, 0, 0);
    }
}

@media (max-width: 1024px) {
.hero h1 {
        font-size: 3rem;
    }

.bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

.span-4,
    .span-6,
    .span-8 {
        grid-column: span 12;
    }
}

/* Estilos inline bloque 1 */
:root {
            --prx-bg-main: #050a15;
            /* Deeper tech blue-black */
            --prx-bg-card: #080d1a;
            /* Elevated tech card */
            --prx-bg-hover: #160a03;
            /* Dark brown warm touch */
            --prx-accent: #e67300;
            --prx-accent-bright: #ffc107;
            /* Neon Yellow accent */
            --prx-accent-soft: rgba(230, 115, 0, 0.15);
            --prx-text-main: #f0f6ff;
            --prx-text-sec: rgba(200, 220, 255, 0.7);
            --prx-text-muted: rgba(160, 195, 255, 0.45);
            --prx-border: 1px solid rgba(230, 115, 0, 0.1);
            --prx-radius: 6px;
        }

body {
            font-family: 'Inter', sans-serif;
            background-color: var(--prx-bg-main);
            color: var(--prx-text-main);
            font-weight: 300;
            line-height: 1.7;
            margin: 0;
            background-image:
                radial-gradient(circle at 10% 20%, rgba(230, 115, 0, 0.03), transparent 25%),
                radial-gradient(circle at 90% 80%, rgba(255, 193, 7, 0.02), transparent 25%);
        }

#bgCanvas {
            display: none;
        }

.orb {
            display: none;
        }

/* Typography Utilities */
        h1,
        h2,
        h3,
        h4 {
            font-family: 'Outfit', sans-serif;
        }

.sp-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--prx-accent-bright);
            font-weight: 600;
            margin-bottom: 20px;
        }

.sp-eyebrow i {
            font-size: 8px;
            text-shadow: 0 0 8px var(--prx-accent-bright);
        }

.sp-eyebrow-container {
            background: rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 193, 7, 0.3);
            box-shadow: 0 0 15px rgba(230, 115, 0, 0.15);
            padding: 6px 16px;
            border-radius: 20px;
            display: inline-block;
            margin-bottom: 25px;
            position: relative;
            overflow: hidden;
        }

.sp-eyebrow-container .sp-eyebrow {
            margin-bottom: 0;
        }

/* Hero Section */
        .sp-hero {
            padding: 160px 20px 80px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            background-color: var(--prx-bg-main);
            position: relative;
            overflow: hidden;
        }

.sp-hero>* {
            position: relative;
            z-index: 10;
        }

.parallax-bg {
            position: absolute;
            top: -20%;
            left: -20%;
            width: 140%;
            height: 140%;
            z-index: 1;
            pointer-events: none;
            transition: transform 0.8s cubic-bezier(0.1, 0.8, 0.3, 1);
        }

.parallax-layer-1 {
            background-image:
                radial-gradient(ellipse at 40% 60%, rgba(230, 115, 0, 0.45) 0%, transparent 55%),
                radial-gradient(ellipse at 70% 30%, rgba(13, 71, 161, 0.45) 0%, transparent 60%);
        }

.parallax-layer-2 {
            background-image:
                radial-gradient(circle at 15% 25%, rgba(0, 255, 255, 0.3) 0%, transparent 35%),
                radial-gradient(circle at 85% 80%, rgba(255, 193, 7, 0.25) 0%, transparent 35%),
                radial-gradient(circle at 60% 70%, rgba(255, 0, 128, 0.2) 0%, transparent 25%);
        }

.parallax-layer-3 {
            /* Futuristic glowing hexagon grid / dots effect */
            background-image:
                radial-gradient(rgba(255, 255, 255, 0.8) 1px, transparent 2px),
                radial-gradient(rgba(0, 255, 255, 0.6) 1px, transparent 2px);
            background-size: 60px 60px, 40px 40px;
            background-position: 0 0, 20px 20px;
            opacity: 0.7;
        }

/* Overlay for text protection */
        .parallax-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(5, 10, 21, 0.1) 0%, rgba(5, 10, 21, 0.7) 100%);
            z-index: 2;
            pointer-events: none;
        }

.sp-hero h1 {
            font-size: 3.8rem;
            font-weight: 700;
            max-width: 900px;
            margin: 0 0 20px;
            line-height: 1.15;
            letter-spacing: -1px;
            text-shadow: 0 8px 30px rgba(0, 0, 0, 0.9), 0 2px 10px rgba(0, 0, 0, 0.6);
        }

.sp-hero h1 span {
            color: transparent;
            background: linear-gradient(90deg, var(--prx-accent), var(--prx-accent-bright));
            -webkit-background-clip: text;
            background-clip: text;
            filter: drop-shadow(0 0 10px rgba(230, 115, 0, 0.4));
        }

.sp-hero p {
            font-size: 1.15rem;
            color: var(--prx-text-sec);
            max-width: 700px;
            margin: 0 auto 40px;
            text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9);
            font-weight: 400;
        }

.sp-btn-group {
            display: flex;
            gap: 15px;
            justify-content: center;
        }

.sp-btn {
            padding: 14px 34px;
            font-size: 14px;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

.sp-btn-primary {
            background-color: var(--prx-accent);
            color: #fff;
            border: 1px solid var(--prx-accent);
            box-shadow: 0 0 20px rgba(230, 115, 0, 0.3);
        }

.sp-btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: all 0.5s ease;
            z-index: -1;
        }

.sp-btn-primary:hover {
            box-shadow: 0 0 30px rgba(255, 193, 7, 0.4);
            transform: translateY(-2px);
            border-color: var(--prx-accent-bright);
        }

.sp-btn-primary:hover::before {
            left: 100%;
        }

/* Stats Strip */
        .sp-stats-strip {
            display: flex;
            justify-content: center;
            border-top: 1px solid rgba(255, 193, 7, 0.05);
            border-bottom: 1px solid rgba(255, 193, 7, 0.05);
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(5px);
        }

.sp-stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            max-width: 1000px;
            width: 100%;
        }

.sp-stat-box {
            padding: 35px;
            text-align: center;
            border-right: 1px solid rgba(255, 255, 255, 0.02);
            transition: all 0.3s ease;
        }

.sp-stat-box:hover {
            background: rgba(230, 115, 0, 0.02);
        }

.sp-stat-box:last-child {
            border-right: none;
        }

.sp-stat-value {
            font-family: 'Outfit', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1;
            margin-bottom: 8px;
            color: transparent;
            background: linear-gradient(135deg, var(--prx-accent-bright), var(--prx-accent));
            -webkit-background-clip: text;
            background-clip: text;
            text-shadow: 0 0 20px rgba(230, 115, 0, 0.2);
        }

.sp-stat-label {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--prx-text-sec);
            font-weight: 600;
        }

/* Shared Section Container */
        .sp-section {
            padding: 100px 20px;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

.sp-section-heading {
            margin-bottom: 60px;
        }

.sp-section-title {
            font-size: 2.5rem;
            margin: 0;
            font-weight: 600;
        }

/* Bento Services Grid */
        .sp-bento-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }

.sp-card {
            background-color: var(--prx-bg-c ard);
            border: 1px solid rgba(255, 255, 255, 0.03);
            border-radius: 16px;
            padding: 35px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            z-index: 1;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }

.sp-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(230, 115, 0, 0.08) 0%, transparent 50%, rgba(255, 193, 7, 0.03) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: -1;
        }

/* Neon Border Bottom Effect */
        .sp-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--prx-accent), var(--prx-accent-bright), transparent);
            opacity: 0;
            transition: opacity 0.4s ease, transform 0.4s ease;
            transform: scaleX(0);
        }

.sp-card:hover {
            transform: translateY(-8px) scale(1.02);
            border-color: rgba(230, 115, 0, 0.3);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(230, 115, 0, 0.1);
            background-color: var(--prx-bg-hover);
        }

.sp-card:hover::before {
            opacity: 1;
        }

.sp-card:hover::after {
            opacity: 1;
            transform: scaleX(1);
        }

.sp-card-icon {
            width: 55px;
            height: 55px;
            background: rgba(230, 115, 0, 0.08);
            border: 1px solid rgba(230, 115, 0, 0.2);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--prx-accent-bright);
            font-size: 24px;
            margin-bottom: 25px;
            box-shadow: 0 0 15px rgba(230, 115, 0, 0.1);
            transition: all 0.4s ease;
        }

.sp-card:hover .sp-card-icon {
            background: var(--prx-accent);
            color: #fff;
            border-color: var(--prx-accent-bright);
            box-shadow: 0 0 25px rgba(255, 193, 7, 0.4);
            transform: scale(1.1) rotate(5deg);
        }

.sp-card h4 {
            font-size: 1.2rem;
            margin: 0 0 12px 0;
            font-weight: 600;
            color: #fff;
            transition: color 0.3s ease;
        }

.sp-card:hover h4 {
            color: var(--prx-accent-bright);
        }

.sp-card p {
            font-size: 0.95rem;
            color: var(--prx-text-sec);
            margin: 0;
            line-height: 1.7;
        }

/* Features List */
        .sp-features-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

.sp-feature-row {
            display: flex;
            gap: 25px;
            align-items: flex-start;
            padding: 30px;
            border-radius: 16px;
            background: linear-gradient(90deg, rgba(230, 115, 0, 0.02) 0%, transparent 100%);
            border: 1px solid rgba(255, 255, 255, 0.02);
            border-left: 3px solid transparent;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

.sp-feature-row:hover {
            background: linear-gradient(90deg, rgba(230, 115, 0, 0.08) 0%, rgba(255, 193, 7, 0.02) 100%);
            border-left-color: var(--prx-accent-bright);
            border-top-color: rgba(230, 115, 0, 0.1);
            border-bottom-color: rgba(230, 115, 0, 0.1);
            transform: translateX(10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            background-color: var(--prx-bg-hover);
        }

.sp-feat-icon {
            background: var(--prx-bg-card);
            border: 1px solid rgba(230, 115, 0, 0.2);
            width: 60px;
            height: 60px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--prx-accent);
            font-size: 24px;
            flex-shrink: 0;
            transition: all 0.4s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

.sp-feature-row:hover .sp-feat-icon {
            color: #fff;
            background: var(--prx-accent);
            border-color: var(--prx-accent-bright);
            box-shadow: 0 0 20px rgba(255, 193, 7, 0.3);
            transform: scale(1.1);
        }

.sp-feat-text h4 {
            margin: 0 0 10px 0;
            font-size: 1.2rem;
            color: #fff;
            transition: color 0.3s ease;
        }

.sp-feature-row:hover .sp-feat-text h4 {
            color: var(--prx-accent-bright);
        }

.sp-feat-text p {
            margin: 0;
            font-size: 0.95rem;
            color: var(--prx-text-sec);
            line-height: 1.7;
        }

/* Accordion Specs */
        .sp-accordion {
            background: var(--prx-bg-card);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            margin-bottom: 15px;
            overflow: hidden;
        }

.sp-accordion summary {
            padding: 20px 25px;
            display: flex;
            align-items: center;
            cursor: pointer;
            list-style: none;
            /* Hide default arrow */
            font-family: 'Outfit', sans-serif;
            font-weight: 600;
            font-size: 1.05rem;
            color: var(--prx-accent);
            transition: background 0.2s ease;
        }

.sp-accordion summary::-webkit-details-marker {
            display: none;
        }

.sp-accordion summary:hover {
            background: rgba(255, 255, 255, 0.02);
        }

.sp-accordion summary i {
            margin-right: 15px;
            font-size: 16px;
            width: 24px;
            text-align: center;
        }

/* Custom Arrow via pseudo element instead of native for cross browser clean look */
        .sp-accordion summary::after {
            content: '\f107';
            /* fa-angle-down */
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            margin-left: auto;
            color: var(--prx-text-muted);
            transition: transform 0.3s ease;
        }

.sp-accordion[open] summary::after {
            transform: rotate(180deg);
        }

.sp-accordion[open] summary {
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

.sp-accordion-content {
            padding: 25px;
        }

.sp-accordion-content ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

.sp-accordion-content li {
            position: relative;
            padding-left: 20px;
            margin-bottom: 12px;
            font-size: 0.95rem;
            color: var(--prx-text-sec);
        }

.sp-accordion-content li:last-child {
            margin-bottom: 0;
        }

.sp-accordion-content li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 8px;
            width: 6px;
            height: 6px;
            background: var(--prx-text-muted);
            border-radius: 50%;
        }

/* CTA Footer */
        .sp-cta {
            margin: 80px 20px 100px;
            background: linear-gradient(135deg, rgba(20, 25, 40, 0.8) 0%, rgba(10, 15, 30, 0.8) 100%);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 50px 30px;
            text-align: center;
        }

.sp-cta h3 {
            font-size: 1.8rem;
            margin: 0 0 10px;
        }

.sp-cta p {
            color: var(--prx-text-sec);
            margin: 0 0 30px;
            font-size: 0.95rem;
        }

.sp-btn-white {
            background: #fff;
            color: #000;
            border: none;
            padding: 12px 28px;
            border-radius: 24px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: transform 0.2s ease;
        }

.sp-btn-white:hover {
            transform: translateY(-2px);
        }

.sp-btn-white i {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 8px;
            height: 8px;
            background: #000;
            border-radius: 50%;
            margin-right: -2px;
            /* Just a microdot mimic */
            color: transparent;
        }

.px-footer {
            background-color: var(--prx-bg-main);
            border-top: var(--prx-border);
            padding: 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

@media(max-width: 900px) {
.sp-hero h1 {
                font-size: 2.5rem;
            }

.sp-bento-grid {
                grid-template-columns: 1fr;
            }

.sp-stats-grid {
                grid-template-columns: 1fr;
            }

.sp-stat-box {
                border-right: none;
                border-bottom: var(--prx-border);
            }

.sp-stat-box:last-child {
                border-bottom: none;
            }

.sp-feature-row {
                flex-direction: column;
            }
}
