/* ═══════════════════════════════════════════════════════════
   DEALIX.IN — DESIGN SYSTEM
   Ultra-Premium | Futuristic | Conversion-Engineered
   ═══════════════════════════════════════════════════════════ */

/* ─── RESET ─── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ─── CSS VARIABLES ─── */
:root {
    /* Greens */
    --neon: #00FF88;
    --neon-bright: #33FFAA;
    --neon-dim: #00CC6A;
    --neon-glow: rgba(0, 255, 136, 0.45);
    --neon-subtle: rgba(0, 255, 136, 0.06);
    --neon-border: rgba(0, 255, 136, 0.12);
    --neon-border-hover: rgba(0, 255, 136, 0.4);
    
    /* Cyans (accent) */
    --cyan: #00E5FF;
    --cyan-glow: rgba(0, 229, 255, 0.3);
    
    /* Surfaces */
    --void: #050505;
    --surface-1: #0A0A0A;
    --surface-2: #0F0F0F;
    --surface-3: #141414;
    --surface-4: #1A1A1A;
    --surface-glass: rgba(10, 10, 10, 0.7);
    
    /* Text */
    --white: #FFFFFF;
    --white-90: rgba(255, 255, 255, 0.9);
    --white-70: rgba(255, 255, 255, 0.7);
    --white-50: rgba(255, 255, 255, 0.5);
    --white-30: rgba(255, 255, 255, 0.3);
    --white-10: rgba(255, 255, 255, 0.1);
    --white-05: rgba(255, 255, 255, 0.05);
    
    /* Typography */
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    /* Spacing */
    --section-pad: clamp(80px, 12vw, 160px);
    --container-max: 1320px;
    
    /* Radius */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 100px;
    
    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration-fast: 0.2s;
    --duration-normal: 0.4s;
    --duration-slow: 0.8s;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--void);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: rgba(0, 255, 136, 0.25);
    color: var(--white);
}

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

img {
    max-width: 100%;
    display: block;
}

ul, ol {
    list-style: none;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--void);
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 255, 136, 0.15);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 255, 136, 0.35);
}

/* ═══════════════════════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════════════════════ */

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 48px);
}

.section {
    padding: var(--section-pad) 0;
    position: relative;
}

/* ─── SECTION HEADERS ─── */
.section-eyebrow {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--neon);
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.section-eyebrow::before {
    content: '//';
    opacity: 0.5;
}

.section-heading {
    font-family: var(--font-display);
    font-size: clamp(36px, 5.5vw, 64px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.section-desc {
    font-size: clamp(16px, 1.8vw, 19px);
    color: var(--white-50);
    max-width: 560px;
    line-height: 1.75;
    font-weight: 300;
}

.section-center {
    text-align: center;
}

.section-center .section-desc {
    margin-left: auto;
    margin-right: auto;
}

/* ─── GRADIENT TEXT ─── */
.glow-text {
    background: linear-gradient(135deg, var(--neon), var(--cyan), var(--neon));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGlow 5s ease infinite;
}

@keyframes textGlow {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.neon-text {
    color: var(--neon);
    text-shadow: 0 0 30px var(--neon-glow);
}

/* ═══════════════════════════════════════════════════════════
   GLASS CARD SYSTEM
   ═══════════════════════════════════════════════════════════ */

.glass {
    background: var(--surface-glass);
    backdrop-filter: blur(24px) saturate(1.2);
    -webkit-backdrop-filter: blur(24px) saturate(1.2);
    border: 1px solid var(--neon-border);
    border-radius: var(--radius-lg);
    transition: all var(--duration-normal) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    right: -100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon), transparent);
    opacity: 0;
    transition: opacity var(--duration-normal) ease;
}

.glass:hover {
    border-color: var(--neon-border-hover);
    transform: translateY(-6px);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(0, 255, 136, 0.06);
}

.glass:hover::before {
    opacity: 1;
}

/* Glow ring on hover */
.glass::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), transparent, rgba(0, 229, 255, 0.05));
    opacity: 0;
    transition: opacity var(--duration-normal) ease;
    z-index: -1;
}

.glass:hover::after {
    opacity: 1;
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3px;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.35s var(--ease-out);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-icon {
    transition: transform 0.3s var(--ease-spring);
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

/* Primary */
.btn-prime {
    padding: 18px 42px;
    background: var(--neon);
    color: #000;
}

.btn-prime::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255,255,255,0.25), transparent);
    transform: translateX(-100%);
    transition: transform 0.7s ease;
}

.btn-prime:hover {
    transform: translateY(-3px);
    box-shadow:
        0 16px 48px rgba(0, 255, 136, 0.35),
        0 0 0 1px rgba(0, 255, 136, 0.5);
}

.btn-prime:hover::before {
    transform: translateX(100%);
}

/* Ghost */
.btn-ghost {
    padding: 18px 42px;
    background: transparent;
    color: var(--white-90);
    border: 1px solid var(--white-10);
}

.btn-ghost:hover {
    border-color: var(--neon);
    color: var(--neon);
    background: var(--neon-subtle);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 255, 136, 0.1);
}

/* Small */
.btn-sm {
    padding: 12px 28px;
    font-size: 13px;
}

/* Full Width */
.btn-full {
    width: 100%;
}

/* Arrow SVG */
.arrow-right {
    width: 18px;
    height: 18px;
}

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 0;
    transition: all 0.5s var(--ease-out);
}

.nav.pinned {
    padding: 14px 0;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-bottom: 1px solid var(--white-05);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo-dot {
    color: var(--neon);
    font-size: 34px;
    line-height: 1;
    margin-left: 1px;
}

/* Nav Links */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 44px;
}

.nav-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--white-50);
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--neon);
    transition: width 0.4s var(--ease-out);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta-wrap {
    margin-left: 16px;
}

/* Mobile Toggle */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    z-index: 1002;
}

.hamburger-line {
    width: 28px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.4s var(--ease-out);
    transform-origin: center;
}

.hamburger.open .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5.5px, 5.5px);
}

.hamburger.open .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5.5px, -5.5px);
}

/* Mobile Overlay */
.mobile-nav {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(40px);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s var(--ease-out);
}

.mobile-nav.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-link {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--white-30);
    transition: all 0.3s ease;
    letter-spacing: -1px;
}

.mobile-nav-link:hover {
    color: var(--neon);
    transform: translateX(8px);
}

/* ═══════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

/* Grid Background */
.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 255, 136, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.025) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%);
}

/* Noise Texture Overlay */
.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    opacity: 0.035;
    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;
}

/* Orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.12), transparent 70%);
    top: -15%;
    right: -10%;
    animation: orbDrift 12s ease-in-out infinite;
}

.orb-2 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.06), transparent 70%);
    bottom: -10%;
    left: -8%;
    animation: orbDrift 10s ease-in-out infinite reverse;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.08), transparent 70%);
    top: 40%;
    left: 40%;
    animation: orbDrift 14s ease-in-out infinite;
    animation-delay: -4s;
}

@keyframes orbDrift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(40px, -30px) scale(1.08); }
    50% { transform: translate(-20px, 40px) scale(0.95); }
    75% { transform: translate(30px, 20px) scale(1.03); }
}

/* Particles */
.particles-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: var(--neon);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(100vh) translateX(0) scale(0);
    }
    5% { opacity: 0.7; }
    50% {
        transform: translateY(50vh) translateX(var(--drift)) scale(1);
    }
    95% { opacity: 0.4; }
    100% {
        opacity: 0;
        transform: translateY(-10vh) translateX(calc(var(--drift) * -1)) scale(0.5);
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 850px;
}

.hero-availability {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    background: rgba(0, 255, 136, 0.04);
    border: 1px solid var(--neon-border);
    border-radius: var(--radius-full);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    color: var(--neon);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.pulse-indicator {
    width: 8px;
    height: 8px;
    background: var(--neon);
    border-radius: 50%;
    position: relative;
}

.pulse-indicator::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid var(--neon);
    animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2.5); opacity: 0; }
}

.hero-h1 {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 92px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -3px;
    margin-bottom: 32px;
}

.hero-h1 .line {
    display: block;
    overflow: hidden;
}

.hero-h1 .line-inner {
    display: block;
    transform: translateY(100%);
    animation: lineReveal 1s var(--ease-out) forwards;
}

.hero-h1 .line:nth-child(2) .line-inner { animation-delay: 0.12s; }
.hero-h1 .line:nth-child(3) .line-inner { animation-delay: 0.24s; }

@keyframes lineReveal {
    to { transform: translateY(0); }
}

.hero-sub {
    font-size: clamp(17px, 2vw, 21px);
    color: var(--white-50);
    line-height: 1.75;
    max-width: 580px;
    margin-bottom: 48px;
    font-weight: 300;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 0.5s forwards;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 0.65s forwards;
}

.hero-proof {
    display: flex;
    gap: 56px;
    margin-top: 80px;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 0.8s forwards;
}

.proof-item {
    position: relative;
}

.proof-item::after {
    content: '';
    position: absolute;
    right: -28px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 36px;
    background: var(--white-10);
}

.proof-item:last-child::after {
    display: none;
}

.proof-number {
    font-family: var(--font-mono);
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 700;
    color: var(--neon);
    line-height: 1.2;
}

.proof-label {
    font-size: 12px;
    color: var(--white-30);
    margin-top: 4px;
    letter-spacing: 0.5px;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero Ring Visual */
.hero-rings {
    position: absolute;
    right: -3%;
    top: 50%;
    transform: translateY(-50%);
    width: 520px;
    height: 520px;
    z-index: 1;
}

.ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
}

.ring-1 {
    inset: 0;
    border-color: rgba(0, 255, 136, 0.08);
    animation: ringSpin 25s linear infinite;
}

.ring-2 {
    inset: 15%;
    border-color: rgba(0, 255, 136, 0.12);
    animation: ringSpinReverse 18s linear infinite;
}

.ring-3 {
    inset: 30%;
    border-color: rgba(0, 255, 136, 0.18);
    animation: ringSpin 14s linear infinite;
}

.ring-4 {
    inset: 44%;
    border-color: rgba(0, 255, 136, 0.3);
    animation: ringSpinReverse 10s linear infinite;
}

.ring-node {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--neon);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--neon-glow), 0 0 60px rgba(0, 255, 136, 0.15);
}

.ring-1 .ring-node { top: -5px; left: 50%; transform: translateX(-50%); }
.ring-2 .ring-node { bottom: -5px; right: 20%; }
.ring-3 .ring-node { top: 50%; right: -5px; transform: translateY(-50%); }
.ring-4 .ring-node { bottom: 10%; left: -5px; }

.ring-center-glow {
    position: absolute;
    inset: 40%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.15), transparent 70%);
    border-radius: 50%;
    animation: centerPulse 3s ease-in-out infinite;
}

@keyframes ringSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes ringSpinReverse {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

@keyframes centerPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 1; }
}

/* ═══════════════════════════════════════════════════════════
   MARQUEE
   ═══════════════════════════════════════════════════════════ */

.marquee {
    padding: 32px 0;
    border-top: 1px solid var(--white-05);
    border-bottom: 1px solid var(--white-05);
    overflow: hidden;
    position: relative;
}

.marquee::before,
.marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 200px;
    z-index: 2;
    pointer-events: none;
}

.marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--void), transparent);
}

.marquee::after {
    right: 0;
    background: linear-gradient(-90deg, var(--void), transparent);
}

.marquee-track {
    display: flex;
    gap: 48px;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}

.marquee-item {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 500;
    color: var(--white-30);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 48px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.marquee-dot {
    width: 4px;
    height: 4px;
    background: var(--neon);
    border-radius: 50%;
    flex-shrink: 0;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════
   SERVICES SECTION
   ═══════════════════════════════════════════════════════════ */

.services-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 72px;
}

.service-card {
    padding: clamp(32px, 4vw, 52px);
}

.service-number {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    color: var(--neon);
    letter-spacing: 2px;
    margin-bottom: 24px;
    opacity: 0.6;
}

.service-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: var(--neon-subtle);
    border: 1px solid var(--neon-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    font-size: 26px;
    transition: all var(--duration-normal) var(--ease-out);
}

.glass:hover .service-icon-wrap {
    background: rgba(0, 255, 136, 0.12);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.12);
    border-color: var(--neon-border-hover);
}

.service-name {
    font-family: var(--font-display);
    font-size: clamp(20px, 2vw, 24px);
    font-weight: 600;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.service-text {
    font-size: 15px;
    color: var(--white-50);
    line-height: 1.8;
}

.service-metric {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 24px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    color: var(--neon);
    padding: 8px 16px;
    background: var(--neon-subtle);
    border-radius: var(--radius-full);
    letter-spacing: 0.5px;
}

.service-metric::before {
    content: '↗';
    font-size: 14px;
}

/* ═══════════════════════════════════════════════════════════
   USP / WHY US SECTION
   ═══════════════════════════════════════════════════════════ */

.usp-bg {
    background: linear-gradient(
        180deg,
        var(--void) 0%,
        rgba(0, 255, 136, 0.02) 30%,
        rgba(0, 255, 136, 0.04) 50%,
        rgba(0, 255, 136, 0.02) 70%,
        var(--void) 100%
    );
}

.usp-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 72px;
}

/* Terminal Code Block */
.terminal {
    border-radius: var(--radius-lg);
    border: 1px solid var(--neon-border);
    background: var(--surface-2);
    overflow: hidden;
}

.terminal-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--white-05);
}

.terminal-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.terminal-dot:nth-child(1) { background: #FF5F57; }
.terminal-dot:nth-child(2) { background: #FEBC2E; }
.terminal-dot:nth-child(3) { background: #28C840; }

.terminal-title {
    margin-left: auto;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--white-30);
}

.terminal-body {
    padding: 32px;
    font-family: var(--font-mono);
    font-size: 13px;
    line-height: 2.2;
    color: var(--white-30);
    overflow: hidden;
}

.code-green { color: var(--neon); }
.code-cyan { color: var(--cyan); }
.code-white { color: var(--white-90); }
.code-purple { color: #c084fc; }
.code-orange { color: #FB923C; }
.code-dim { color: var(--white-30); }

.terminal-cursor {
    display: inline-block;
    width: 8px;
    height: 16px;
    background: var(--neon);
    animation: blink 1s steps(1) infinite;
    vertical-align: text-bottom;
    margin-left: 4px;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* USP Points */
.usp-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.usp-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.usp-item-num {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: var(--radius-md);
    background: var(--neon-subtle);
    border: 1px solid var(--neon-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 700;
    color: var(--neon);
    transition: all 0.3s ease;
}

.usp-item:hover .usp-item-num {
    background: rgba(0, 255, 136, 0.12);
    border-color: var(--neon-border-hover);
    box-shadow: 0 0 24px rgba(0, 255, 136, 0.1);
}

.usp-item-title {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

.usp-item-desc {
    font-size: 14px;
    color: var(--white-50);
    line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════════
   PROCESS SECTION
   ═══════════════════════════════════════════════════════════ */

.process-flow {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin-top: 72px;
    position: relative;
}

/* Connecting line */
.process-flow::before {
    content: '';
    position: absolute;
    top: 42px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--neon-border),
        var(--neon),
        var(--neon-border),
        transparent
    );
}

.process-card {
    text-align: center;
    padding: 0 16px;
    position: relative;
}

.process-node {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--surface-2);
    border: 2px solid var(--neon-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    font-family: var(--font-mono);
    font-size: 15px;
    font-weight: 700;
    color: var(--neon);
    position: relative;
    z-index: 2;
    transition: all 0.4s var(--ease-out);
    cursor: default;
}

.process-card:hover .process-node {
    background: var(--neon);
    color: #000;
    border-color: var(--neon);
    box-shadow: 0 0 40px var(--neon-glow);
    transform: scale(1.1);
}

.process-name {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.process-detail {
    font-size: 13px;
    color: var(--white-50);
    line-height: 1.7;
    max-width: 200px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════
   PRICING SECTION
   ═══════════════════════════════════════════════════════════ */

.pricing-bg {
    background: linear-gradient(
        180deg,
        var(--void) 0%,
        rgba(0, 255, 136, 0.015) 20%,
        rgba(0, 255, 136, 0.03) 50%,
        rgba(0, 255, 136, 0.015) 80%,
        var(--void) 100%
    );
}

.pricing-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 72px;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

.price-card {
    padding: clamp(36px, 4vw, 52px);
    position: relative;
}

.price-card.highlight {
    border-color: var(--neon);
    background: rgba(0, 255, 136, 0.025);
}

.price-card.highlight::before {
    opacity: 1 !important;
}

.price-badge {
    position: absolute;
    top: -14px;
    right: 28px;
    padding: 7px 20px;
    background: var(--neon);
    color: #000;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    border-radius: var(--radius-full);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.price-tier {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    color: var(--neon);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.price-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.price-amount {
    font-family: var(--font-mono);
    font-size: clamp(28px, 3.5vw, 36px);
    font-weight: 700;
    color: var(--neon);
    margin-bottom: 4px;
}

.price-amount .range {
    font-size: 16px;
    color: var(--white-30);
    font-weight: 400;
}

.price-timeline {
    font-size: 13px;
    color: var(--white-30);
    margin-bottom: 36px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-timeline svg {
    width: 14px;
    height: 14px;
    stroke: var(--white-30);
}

.price-divider {
    width: 100%;
    height: 1px;
    background: var(--white-05);
    margin-bottom: 28px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.feature-item {
    font-size: 14px;
    color: var(--white-70);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.feature-check {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 50%;
    background: var(--neon-subtle);
    border: 1px solid var(--neon-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.feature-check svg {
    width: 10px;
    height: 10px;
    stroke: var(--neon);
    stroke-width: 3;
}

.pricing-footer {
    text-align: center;
    margin-top: 56px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-footer p {
    font-size: 14px;
    color: var(--white-30);
    line-height: 1.8;
}

.pricing-footer p + p {
    margin-top: 10px;
}

.pricing-footer strong {
    color: var(--white-50);
}

.pricing-footer a {
    color: var(--neon);
    border-bottom: 1px solid rgba(0, 255, 136, 0.3);
    transition: border-color 0.3s ease;
}

.pricing-footer a:hover {
    border-color: var(--neon);
}

/* ═══════════════════════════════════════════════════════════
   PORTFOLIO
   ═══════════════════════════════════════════════════════════ */

.portfolio-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 72px;
}

.folio-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--neon-border);
    background: var(--surface-2);
    cursor: pointer;
    transition: all 0.5s var(--ease-out);
}

.folio-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-border-hover);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(0, 255, 136, 0.06);
}

.folio-visual {
    height: 260px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.folio-visual-bg {
    position: absolute;
    inset: 0;
    transition: transform 0.6s var(--ease-out);
}

.folio-card:hover .folio-visual-bg {
    transform: scale(1.08);
}

.folio-gradient-1 { background: linear-gradient(135deg, #0a1f1a, #0f3d2f, #0a1f1a); }
.folio-gradient-2 { background: linear-gradient(135deg, #0a1628, #0f2940, #0a1628); }
.folio-gradient-3 { background: linear-gradient(135deg, #1a0a28, #2d0f40, #1a0a28); }

.folio-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, var(--surface-2));
    z-index: 1;
}

.folio-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--white-10);
    letter-spacing: 6px;
    text-transform: uppercase;
    z-index: 0;
}

.folio-details {
    padding: 28px 32px 32px;
}

.folio-tag {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    color: var(--neon);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.folio-name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.folio-result {
    font-size: 14px;
    color: var(--white-50);
    line-height: 1.7;
}

.folio-result strong {
    color: var(--neon);
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════ */

.testimonials-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 72px;
}

.test-card {
    padding: clamp(32px, 3vw, 44px);
}

.test-quote-mark {
    font-family: var(--font-display);
    font-size: 48px;
    line-height: 1;
    color: var(--neon);
    opacity: 0.3;
    margin-bottom: 8px;
}

.test-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 20px;
}

.test-star {
    width: 16px;
    height: 16px;
    fill: var(--neon);
}

.test-text {
    font-size: 15px;
    color: var(--white-50);
    line-height: 1.85;
    margin-bottom: 28px;
    font-style: italic;
}

.test-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.test-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon), var(--neon-dim));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    color: #000;
    flex-shrink: 0;
}

.test-name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
}

.test-role {
    font-size: 12px;
    color: var(--white-30);
    margin-top: 2px;
}

/* ═══════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════ */

.final-cta {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-orb {
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1), transparent 65%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 2;
}

.cta-h2 {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.06;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.cta-desc {
    font-size: 19px;
    color: var(--white-50);
    max-width: 520px;
    margin: 0 auto 48px;
    line-height: 1.7;
    font-weight: 300;
}

.cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.trust-signals {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-item {
    font-size: 13px;
    color: var(--white-30);
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-check {
    color: var(--neon);
    font-size: 14px;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE SPECIFICS
   ═══════════════════════════════════════════════════════════ */

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 72px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white-50);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 16px 20px;
    background: var(--surface-2);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-md);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    transition: all 0.3s ease;
    outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--white-30);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--neon);
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.08);
}

.form-textarea {
    min-height: 140px;
    resize: vertical;
}

.form-select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-select option {
    background: var(--surface-2);
    color: var(--white);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-info-card {
    padding: 32px;
}

.contact-info-label {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--neon);
    margin-bottom: 14px;
}

.contact-info-value {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
}

.contact-info-desc {
    font-size: 13px;
    color: var(--white-30);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */

.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--white-05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

.footer-about p {
    font-size: 14px;
    color: var(--white-30);
    line-height: 1.8;
    margin-top: 16px;
    max-width: 320px;
}

.footer-col-title {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-link {
    font-size: 14px;
    color: var(--white-30);
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--neon);
    transform: translateX(4px);
}

.footer-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid var(--white-05);
}

.footer-bar p {
    font-size: 12px;
    color: var(--white-30);
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--white-10);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-30);
    transition: all 0.3s ease;
}

.social-icon:hover {
    border-color: var(--neon);
    color: var(--neon);
    background: var(--neon-subtle);
    transform: translateY(-2px);
}

.social-icon svg {
    width: 16px;
    height: 16px;
}

/* ═══════════════════════════════════════════════════════════
   SCROLL REVEAL SYSTEM
   ═══════════════════════════════════════════════════════════ */

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all var(--duration-slow) var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.40s; }

/* Scale reveal */
.reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: all var(--duration-slow) var(--ease-out);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* ═══════════════════════════════════════════════════════════
   PAGE TRANSITION
   ═══════════════════════════════════════════════════════════ */

.page-transition {
    position: fixed;
    inset: 0;
    background: var(--void);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.6s ease 0.3s;
}

.page-transition.done {
    opacity: 0;
}

.page-transition .loader-text {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--neon);
    letter-spacing: 4px;
    text-transform: uppercase;
    animation: loaderPulse 1s ease infinite;
}

@keyframes loaderPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 1100px) {
    .hero-rings {
        display: none;
    }

    .usp-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .portfolio-layout {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-proof {
        gap: 32px;
        flex-wrap: wrap;
    }

    .proof-item::after {
        display: none;
    }

    .services-layout {
        grid-template-columns: 1fr;
    }

    .process-flow {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .process-flow::before {
        display: none;
    }

    .process-card {
        text-align: left;
        display: grid;
        grid-template-columns: 52px 1fr;
        gap: 20px;
        align-items: start;
    }

    .process-node {
        margin: 0;
    }

    .process-detail {
        max-width: none;
    }

    .pricing-layout {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .portfolio-layout {
        grid-template-columns: 1fr;
    }

    .testimonials-layout {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bar {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-btns {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-h1 {
                letter-spacing: -2px;
    }

    .glass {
        padding: 28px 22px;
    }

    .price-card {
        padding: 32px 24px;
    }

    .test-card {
        padding: 28px 22px;
    }

    .service-card {
        padding: 28px 22px;
    }

    .hero-availability {
        font-size: 10px;
        padding: 8px 16px;
    }

    .section-heading {
        letter-spacing: -1.5px;
    }

    .trust-signals {
        flex-direction: column;
        gap: 12px;
    }
}

/* ═══════════════════════════════════════════════════════════
   SPECIAL: PAGE HERO (for inner pages)
   ═══════════════════════════════════════════════════════════ */

.page-hero {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.page-hero .orb {
    opacity: 0.5;
}

.page-hero-eyebrow {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--neon);
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.page-hero-eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--neon);
}

.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(42px, 7vw, 76px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -3px;
    margin-bottom: 24px;
}

.page-hero-desc {
    font-size: clamp(17px, 2vw, 20px);
    color: var(--white-50);
    max-width: 600px;
    line-height: 1.75;
    font-weight: 300;
}

/* ═══════════════════════════════════════════════════════════
   FAQ SECTION (Pricing Page)
   ═══════════════════════════════════════════════════════════ */

.faq-layout {
    max-width: 760px;
    margin: 72px auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--white-05);
    border-radius: var(--radius-md);
    background: var(--surface-2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.open {
    border-color: var(--neon-border);
    background: rgba(0, 255, 136, 0.02);
}

.faq-trigger {
    width: 100%;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--white-90);
    letter-spacing: -0.3px;
    padding-right: 20px;
}

.faq-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: var(--neon-subtle);
    border: 1px solid var(--neon-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--ease-out);
}

.faq-icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--neon);
    transition: transform 0.4s var(--ease-out);
}

.faq-item.open .faq-icon {
    background: var(--neon);
    border-color: var(--neon);
}

.faq-item.open .faq-icon svg {
    stroke: #000;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease-out);
}

.faq-answer-inner {
    padding: 0 28px 28px;
    font-size: 14px;
    color: var(--white-50);
    line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════
   STATS ROW (Portfolio Page)
   ═══════════════════════════════════════════════════════════ */

.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 72px;
}

.stat-block {
    text-align: center;
    padding: 40px 20px;
}

.stat-number {
    font-family: var(--font-mono);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--neon);
    line-height: 1.1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: var(--white-30);
    letter-spacing: 0.5px;
}

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

@media (max-width: 480px) {
    .stats-bar {
        grid-template-columns: 1fr;
    }
}