/* NEXION – Premium Tech Website 2026 */

:root {
    --black:   #0B0B0F;
    --black2:  #111118;
    --blue:    #3B82F6;
    --violet:  #7C3AED;
    --white:   #FFFFFF;
    --muted:   rgba(255,255,255,0.45);
    --border:  rgba(255,255,255,0.07);
    --grad:    linear-gradient(135deg, #3B82F6, #7C3AED);
    --glow-b:  0 0 40px rgba(59,130,246,0.35);
    --glow-v:  0 0 40px rgba(124,58,237,0.35);
    --radius:  16px;
    --ease:    cubic-bezier(0.23,1,0.32,1);
}

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

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

body {
    background: var(--black);
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

::selection { background: rgba(59,130,246,0.3); color: #fff; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: rgba(59,130,246,0.4); border-radius: 3px; }

/* ─── CURSOR ─────────────────────────────────────── */
.cursor {
    width: 10px; height: 10px;
    background: var(--blue);
    border-radius: 50%;
    position: fixed; top:0; left:0;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%,-50%);
    transition: width .2s, height .2s, background .2s;
    mix-blend-mode: screen;
}
.cursor-trail {
    width: 36px; height: 36px;
    border: 1px solid rgba(59,130,246,0.4);
    border-radius: 50%;
    position: fixed; top:0; left:0;
    pointer-events: none; z-index: 9998;
    transform: translate(-50%,-50%);
    transition: all .12s ease;
}
a, button { cursor: none; }

/* ─── UTILITIES ──────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.text-grad {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-label {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Orbitron', monospace;
    font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--blue);
    padding: 5px 14px;
    border: 1px solid rgba(59,130,246,0.3);
    border-radius: 100px;
    background: rgba(59,130,246,0.07);
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Urbanist', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800; line-height: 1.1;
    margin-bottom: 18px;
}

.section-sub {
    font-size: 1.05rem; color: var(--muted);
    max-width: 580px; line-height: 1.75;
    margin-bottom: 56px;
}

/* Reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Buttons */
.btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 32px;
    background: var(--grad);
    color: #fff; text-decoration: none;
    border-radius: 100px;
    font-family: 'Urbanist', sans-serif; font-weight: 700; font-size: .95rem;
    position: relative; overflow: hidden;
    box-shadow: 0 0 40px rgba(59,130,246,0.3);
    transition: transform .3s var(--ease), box-shadow .3s;
}
.btn-primary::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--violet), var(--blue));
    opacity: 0; transition: opacity .3s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 60px rgba(59,130,246,0.5); }
.btn-primary:hover::after { opacity: 1; }
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }
.btn-primary svg { width: 17px; height: 17px; transition: transform .3s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
    display: inline-flex; align-items: center;
    padding: 15px 32px;
    border: 1px solid var(--border);
    color: rgba(255,255,255,0.65); text-decoration: none;
    border-radius: 100px;
    font-family: 'Urbanist', sans-serif; font-weight: 600; font-size: .95rem;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.03);
    transition: all .3s var(--ease);
}
.btn-ghost:hover { border-color: rgba(59,130,246,0.5); color: #fff; background: rgba(59,130,246,0.1); }

/* ─── NAV ────────────────────────────────────────── */
.nav {
    position: fixed; top:0; left:0; right:0;
    z-index: 1000; padding: 20px 0;
    transition: all .4s var(--ease);
}
.nav.scrolled {
    background: rgba(11,11,15,0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}
.nav-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.logo-x {
    font-family: 'Orbitron', monospace; font-size: 1.4rem; font-weight: 900;
    background: var(--grad);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    filter: drop-shadow(0 0 8px rgba(59,130,246,0.7));
    animation: logoPulse 3s ease-in-out infinite;
}
@keyframes logoPulse {
    0%,100% { filter: drop-shadow(0 0 8px rgba(59,130,246,0.6)); }
    50%      { filter: drop-shadow(0 0 18px rgba(124,58,237,0.9)); }
}
.logo-text {
    font-family: 'Orbitron', monospace; font-size: 1rem; font-weight: 700;
    letter-spacing: 3px; color: #fff;
}
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
    color: rgba(255,255,255,0.55); text-decoration: none;
    font-size: .88rem; font-weight: 500;
    padding: 8px 15px; border-radius: 100px;
    transition: color .3s;
}
.nav-links a:hover { color: #fff; }
.nav-cta {
    background: var(--grad) !important;
    color: #fff !important;
    box-shadow: 0 0 20px rgba(59,130,246,0.3);
    transition: box-shadow .3s !important;
}
.nav-cta:hover { box-shadow: 0 0 35px rgba(59,130,246,0.55) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s; }

/* ─── MOBILE MENU ────────────────────────────────── */
.mobile-menu {
    position: fixed; top:0; right:-100%;
    width: 100%; height: 100vh;
    background: rgba(11,11,15,0.97);
    backdrop-filter: blur(24px);
    z-index: 999;
    display: flex; align-items: center; justify-content: center;
    transition: right .4s var(--ease);
}
.mobile-menu.open { right: 0; }
.mobile-menu ul { list-style: none; text-align: center; display: flex; flex-direction: column; gap: 28px; }
.mobile-menu a {
    color: #fff; text-decoration: none;
    font-family: 'Urbanist', sans-serif; font-size: 1.8rem; font-weight: 700;
    transition: color .3s;
}
.mobile-menu a:hover { color: var(--blue); }
.mobile-cta { display: inline-block; padding: 14px 40px; background: var(--grad); border-radius: 100px; font-size: 1rem !important; margin-top: 12px; }

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

#heroCanvas {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    pointer-events: none;
}

.hero-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(59,130,246,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59,130,246,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at 30% 50%, black 20%, transparent 70%);
    animation: gridDrift 25s linear infinite;
    pointer-events: none;
}
@keyframes gridDrift { 0% { background-position: 0 0; } 100% { background-position: 60px 60px; } }

.hero-content {
    position: relative; z-index: 10;
    max-width: 660px;
    margin-left: max(24px, calc((100vw - 1200px)/2 + 24px));
    padding-right: 24px;
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 7px 16px;
    border: 1px solid rgba(59,130,246,0.3);
    border-radius: 100px;
    font-size: .8rem; color: rgba(255,255,255,0.65);
    background: rgba(59,130,246,0.07); backdrop-filter: blur(10px);
    margin-bottom: 30px;
}
.badge-dot {
    width: 8px; height: 8px; background: #22c55e; border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
    box-shadow: 0 0 8px #22c55e;
}
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:.35; } }

.hero-headline {
    font-family: 'Urbanist', sans-serif;
    font-size: clamp(2.4rem, 5.5vw, 5rem);
    font-weight: 800; line-height: 1.12;
    letter-spacing: -1px;
    margin-bottom: 24px;
}
.headline-accent {
    background: var(--grad);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    display: block;
    padding-bottom: 4px;
}

.hero-sub {
    font-size: 1.1rem; color: rgba(255,255,255,0.55);
    line-height: 1.7; margin-bottom: 38px; max-width: 500px;
}
.br-desktop { display: none; }
@media(min-width:640px) { .br-desktop { display: block; } }

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

.hero-stats { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat-row { display: flex; align-items: baseline; gap: 2px; }
.stat-num {
    font-family: 'Orbitron', monospace; font-size: 2rem; font-weight: 700; color: #fff; line-height: 1;
}
.stat-unit {
    font-family: 'Orbitron', monospace; font-size: 1.4rem; font-weight: 700;
    background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: .75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.stat-divider { width: 1px; height: 36px; background: var(--border); }

/* X Symbol */
.hero-x-wrap {
    position: absolute;
    right: 220px;
    top: 38%; transform: translateY(-50%);
    width: 560px; height: 560px;
    display: flex; align-items: center; justify-content: center;
    pointer-events: none; z-index: 5;
}
.x-ring {
    position: absolute; border-radius: 50%; border: 1px solid;
    animation: ringPulse 4s ease-in-out infinite;
}
.x-ring-1 { width: 280px; height: 280px; border-color: rgba(59,130,246,0.3); animation-delay: 0s; }
.x-ring-2 { width: 400px; height: 400px; border-color: rgba(124,58,237,0.18); animation-delay: -1.3s; }
.x-ring-3 { width: 520px; height: 520px; border-color: rgba(59,130,246,0.08); animation-delay: -2.6s; }
@keyframes ringPulse {
    0%,100% { transform: scale(.95); opacity:.6; }
    50%      { transform: scale(1.04); opacity:1; }
}

.hero-x-svg {
    width: 260px; height: 260px;
    filter: drop-shadow(0 0 40px rgba(59,130,246,0.65)) drop-shadow(0 0 80px rgba(124,58,237,0.3));
    animation: xFloat 7s ease-in-out infinite, xGlow 3s ease-in-out infinite;
}
@keyframes xFloat {
    0%,100% { transform: translateY(0) rotate(0deg); }
    33%      { transform: translateY(-14px) rotate(1deg); }
    66%      { transform: translateY(8px) rotate(-.5deg); }
}
@keyframes xGlow {
    0%,100% { filter: drop-shadow(0 0 40px rgba(59,130,246,0.65)) drop-shadow(0 0 80px rgba(124,58,237,0.3)); }
    50%      { filter: drop-shadow(0 0 60px rgba(59,130,246,1)) drop-shadow(0 0 120px rgba(124,58,237,0.5)); }
}

.x-sparks { position: absolute; inset: 0; pointer-events: none; }

/* Scroll hint */
.scroll-hint {
    position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: var(--muted); font-size: .72rem; letter-spacing: 2px; text-transform: uppercase;
    z-index: 10;
}
.scroll-bar {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, transparent, var(--blue));
    animation: scrollBar 2s ease-in-out infinite;
}
@keyframes scrollBar {
    0%   { transform: scaleY(0); transform-origin: top; opacity:1; }
    49%  { transform: scaleY(1); transform-origin: top; opacity:1; }
    50%  { transform: scaleY(1); transform-origin: bottom; opacity:1; }
    100% { transform: scaleY(0); transform-origin: bottom; opacity:0; }
}

/* ─── PROBLEM ────────────────────────────────────── */
.problem {
    padding: 120px 0;
    position: relative;
}
.problem::before {
    content: ''; position: absolute; top:0; left:0; right:0; height:1px;
    background: linear-gradient(90deg, transparent, rgba(59,130,246,0.4), transparent);
}

.problem-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }

.problem-card {
    background: rgba(255,255,255,0.025);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    position: relative; overflow: hidden;
    transition: transform .4s var(--ease), border-color .3s, box-shadow .3s;
}
.problem-card::before {
    content: ''; position: absolute; inset:0;
    background: linear-gradient(135deg, rgba(59,130,246,0.06), transparent);
    opacity:0; transition: opacity .3s;
}
.problem-card:hover { transform: translateY(-5px); border-color: rgba(59,130,246,0.3); box-shadow: 0 20px 50px rgba(0,0,0,.4), 0 0 24px rgba(59,130,246,.1); }
.problem-card:hover::before { opacity:1; }

.pcard-icon {
    width: 46px; height: 46px;
    border: 1px solid rgba(59,130,246,0.25); border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(59,130,246,0.08); color: var(--blue);
    margin-bottom: 18px;
    transition: all .3s;
}
.problem-card:hover .pcard-icon { background: rgba(59,130,246,0.18); box-shadow: 0 0 18px rgba(59,130,246,0.3); }
.pcard-icon svg { width: 22px; height: 22px; }

.problem-card h3 { font-family: 'Urbanist', sans-serif; font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.problem-card p { color: var(--muted); font-size: .92rem; line-height: 1.65; margin-bottom: 18px; }

.pcard-tag { display: flex; align-items: center; gap: 8px; font-size: .78rem; color: #ef4444; }
.tag-dot {
    width: 7px; height: 7px; background: #ef4444; border-radius: 50%;
    animation: blink 2s ease-in-out infinite; box-shadow: 0 0 7px #ef4444;
}

.problem-bridge { text-align: center; margin-top: 60px; }
.problem-bridge p { font-size: 1.05rem; color: var(--muted); margin-bottom: 16px; }
.problem-bridge strong { color: #fff; }
.bridge-arrow { display: flex; justify-content: center; color: var(--blue); animation: bounceY 2s ease-in-out infinite; }
.bridge-arrow svg { width: 24px; height: 24px; }
@keyframes bounceY { 0%,100% { transform:translateY(0); } 50% { transform:translateY(8px); } }

/* ─── SOLUTION ───────────────────────────────────── */
.solution {
    padding: 120px 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(59,130,246,0.05) 0%, transparent 65%);
}

.system-list { display: flex; flex-direction: column; }

.sys-step {
    display: grid;
    grid-template-columns: 56px 64px 1fr;
    gap: 24px; align-items: start;
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
    transition: background .3s;
}
.sys-step:last-child { border-bottom: none; }
.sys-step:hover { background: rgba(59,130,246,0.02); border-radius: 12px; }

.sys-num {
    font-family: 'Orbitron', monospace; font-size: .72rem;
    color: var(--blue); letter-spacing: 2px; padding-top: 8px;
}
.sys-icon {
    width: 56px; height: 56px;
    border: 1px solid rgba(59,130,246,0.3); border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(59,130,246,0.09); color: var(--blue);
    transition: all .35s var(--ease);
}
.sys-icon svg { width: 24px; height: 24px; }
.sys-step:hover .sys-icon { background: rgba(59,130,246,0.2); box-shadow: var(--glow-b); transform: scale(1.05); }

.sys-body h3 { font-family: 'Urbanist', sans-serif; font-size: 1.35rem; font-weight: 700; margin-bottom: 10px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.coming-soon-badge {
    font-family: 'Orbitron', monospace;
    font-size: .6rem; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--violet);
    border: 1px solid rgba(124,58,237,0.4);
    background: rgba(124,58,237,0.08);
    padding: 3px 10px; border-radius: 100px;
    animation: csBlink 3s ease-in-out infinite;
}
@keyframes csBlink {
    0%, 100% { opacity: 1; border-color: rgba(124,58,237,0.4); }
    50%       { opacity: .6; border-color: rgba(124,58,237,0.2); }
}
.sys-body p { color: var(--muted); line-height: 1.65; margin-bottom: 14px; }
.sys-body ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.sys-body li { font-size: .85rem; color: rgba(255,255,255,.45); display: flex; align-items: center; gap: 8px; }
.sys-body li::before { content: '→'; color: var(--blue); font-size: .8rem; }

.sys-glow {
    position: absolute; inset:0;
    background: radial-gradient(ellipse at left center, rgba(59,130,246,0.05), transparent 55%);
    opacity:0; transition: opacity .4s; pointer-events: none;
}
.sys-step:hover .sys-glow { opacity:1; }

/* ─── BENEFITS ───────────────────────────────────── */
.benefits { padding: 120px 0; }

.benefits-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }

.benefit-card {
    background: rgba(255,255,255,0.025);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 22px;
    transition: transform .4s var(--ease), border-color .3s, box-shadow .3s;
    position: relative; overflow: hidden;
}
.benefit-card.featured {
    border-color: rgba(59,130,246,0.3);
    background: rgba(59,130,246,0.05);
    box-shadow: 0 0 40px rgba(59,130,246,0.1);
}
.benefit-card:hover { transform: translateY(-6px); border-color: rgba(59,130,246,0.4); box-shadow: 0 20px 50px rgba(0,0,0,.4), 0 0 28px rgba(59,130,246,.14); }

.ben-icon { width: 38px; height: 38px; color: var(--blue); margin-bottom: 18px; }
.ben-icon svg { width:100%; height:100%; }

.ben-metric {
    font-family: 'Orbitron', monospace; font-size: 2.8rem; font-weight: 900;
    line-height: 1; margin-bottom: 10px;
    background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    display: flex; align-items: baseline; gap: 2px;
}
.ben-metric span:last-child { font-size: 2rem; }
.metric-num { font-size: 2.8rem; }

.benefit-card h3 { font-family: 'Urbanist', sans-serif; font-size: .95rem; font-weight: 700; margin-bottom: 8px; }
.benefit-card p { color: var(--muted); font-size: .83rem; line-height: 1.55; }

/* ─── CASE STUDY ─────────────────────────────────── */
.case-study {
    padding: 120px 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(124,58,237,0.05) 0%, transparent 65%);
}

.case-card {
    display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: stretch;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border); border-radius: 24px; padding: 44px;
    position: relative; overflow: hidden;
}
.case-card::before {
    content: ''; position: absolute; top:-50%; left:-50%; width:200%; height:200%;
    background: radial-gradient(circle at center, rgba(59,130,246,0.03), transparent 55%);
    pointer-events: none;
}

.case-tag {
    display: inline-block; font-family: 'Orbitron', monospace;
    font-size: .68rem; letter-spacing: 3px;
    padding: 4px 12px; border-radius: 100px; margin-bottom: 20px;
}
.before-tag { background: rgba(239,68,68,.1); border: 1px solid rgba(239,68,68,.3); color: #ef4444; }
.after-tag  { background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.3); color: #22c55e; }

.case-biz { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.biz-icon { width: 52px; height: 52px; background: rgba(255,255,255,0.05); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; }
.case-biz h4 { font-family: 'Urbanist', sans-serif; font-weight: 700; font-size: 1rem; }
.case-biz p { color: var(--muted); font-size: .82rem; }

.case-stats { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.c-stat { display: flex; justify-content: space-between; align-items: center; padding: 9px 14px; background: rgba(255,255,255,0.03); border-radius: 8px; }
.c-num { font-family: 'Orbitron', monospace; font-size: 1rem; font-weight: 700; }
.c-num.bad  { color: #ef4444; }
.c-num.good { color: #22c55e; }
.c-label { font-size: .82rem; color: var(--muted); }

blockquote {
    font-style: italic; color: var(--muted); font-size: .9rem; line-height: 1.65;
    padding: 14px 16px;
    border-left: 2px solid rgba(59,130,246,0.4);
    background: rgba(255,255,255,0.03); border-radius: 0 8px 8px 0;
}
.after-col blockquote { border-color: rgba(34,197,94,0.4); }
blockquote cite { display: block; margin-top: 8px; font-style: normal; font-size: .78rem; color: var(--blue); }

.case-divider {
    display: flex; align-items: center; justify-content: center;
    width: 60px;
}
.divider-x {
    font-family: 'Orbitron', monospace; font-size: 1.8rem; font-weight: 900;
    background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    filter: drop-shadow(0 0 12px rgba(59,130,246,0.6));
    animation: xGlow 2s ease-in-out infinite;
}

/* ─── PROCESS ────────────────────────────────────── */
.process { padding: 120px 0; }

.proc-list {
    display: flex; flex-direction: column;
    border-left: 2px solid rgba(59,130,246,0.15);
    margin-left: 32px;
    padding-left: 40px;
    gap: 0;
}

.proc-step {
    display: grid; grid-template-columns: 1fr auto; gap: 32px;
    align-items: center; padding: 40px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
    transition: background .3s;
}
.proc-step:last-child { border-bottom: none; }
.proc-step:hover { background: rgba(59,130,246,0.02); border-radius: 12px; }

.proc-num {
    position: absolute;
    left: calc(-40px - 32px - 18px);
    top: 50%; transform: translateY(-50%);
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--grad);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Orbitron', monospace; font-size: 1rem; font-weight: 900;
    box-shadow: 0 0 20px rgba(59,130,246,0.4);
    flex-shrink: 0;
}

.proc-tag {
    font-family: 'Orbitron', monospace; font-size: .68rem;
    letter-spacing: 2px; color: var(--blue); text-transform: uppercase;
    display: block; margin-bottom: 8px;
}
.proc-body h3 { font-family: 'Urbanist', sans-serif; font-size: 1.4rem; font-weight: 700; margin-bottom: 10px; }
.proc-body p { color: var(--muted); line-height: 1.65; margin-bottom: 14px; }

.proc-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.proc-badges span {
    font-size: .78rem; color: var(--blue);
    padding: 4px 11px;
    background: rgba(59,130,246,0.09); border: 1px solid rgba(59,130,246,0.2);
    border-radius: 100px;
}

.proc-icon {
    width: 76px; height: 76px;
    border: 1px solid rgba(59,130,246,0.2); border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    color: var(--blue); background: rgba(59,130,246,0.05);
    flex-shrink: 0;
    transition: all .35s var(--ease);
}
.proc-icon svg { width: 32px; height: 32px; }
.proc-step:hover .proc-icon { background: rgba(59,130,246,0.1); box-shadow: var(--glow-b); transform: scale(1.05) rotate(5deg); }

/* ─── TRUST ──────────────────────────────────────── */
.trust {
    padding: 120px 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(124,58,237,0.05) 0%, transparent 65%);
}

.trust-metrics {
    display: flex; gap: 56px; margin-bottom: 72px; flex-wrap: wrap;
}
.tm { display: flex; flex-direction: row; flex-wrap: wrap; align-items: baseline; gap: 0 3px; }
.tm-val {
    font-family: 'Orbitron', monospace; font-size: 3.2rem; font-weight: 900;
    background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    line-height: 1;
}
.tm-unit { font-family: 'Orbitron', monospace; font-size: 2rem; font-weight: 900; color: rgba(255,255,255,0.35); }
.tm-label { width: 100%; font-size: .82rem; color: var(--muted); margin-top: 5px; }

.testimonials { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }

.testi {
    background: rgba(255,255,255,0.025);
    border: 1px solid var(--border); border-radius: var(--radius); padding: 30px;
    position: relative;
    transition: transform .4s var(--ease), border-color .3s, box-shadow .3s;
}
.testi:hover { transform: translateY(-4px); border-color: rgba(59,130,246,0.3); box-shadow: 0 20px 40px rgba(0,0,0,.4); }
.testi-featured { border-color: rgba(59,130,246,0.3); background: rgba(59,130,246,0.05); box-shadow: 0 0 40px rgba(59,130,246,0.1); }

.testi-badge {
    position: absolute; top: 18px; right: 18px;
    font-size: .68rem; letter-spacing: 1px; text-transform: uppercase;
    color: var(--blue); background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.3);
    padding: 3px 10px; border-radius: 100px;
}
.testi-stars { color: #f59e0b; font-size: .88rem; letter-spacing: 2px; margin-bottom: 14px; }
.testi p { color: rgba(255,255,255,0.72); font-size: .92rem; line-height: 1.7; margin-bottom: 22px; font-style: italic; }

.testi-author { display: flex; align-items: center; gap: 11px; }
.testi-av {
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--grad);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Orbitron', monospace; font-size: .72rem; font-weight: 700;
    flex-shrink: 0;
}
.testi-author strong { display: block; font-size: .92rem; }
.testi-author span { font-size: .78rem; color: var(--muted); }

/* ─── FINAL CTA ──────────────────────────────────── */
.final-cta {
    padding: 160px 0;
    position: relative; overflow: hidden; text-align: center;
}
.cta-bg-x {
    position: absolute; inset:0;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Orbitron', monospace; font-size: 40vw; font-weight: 900;
    color: rgba(59,130,246,0.025); user-select: none; line-height: 1;
    animation: ctaXFloat 12s ease-in-out infinite;
    pointer-events: none;
}
@keyframes ctaXFloat {
    0%,100% { transform: scale(1) rotate(0deg); }
    50%      { transform: scale(1.06) rotate(2deg); }
}

.cta-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }

.cta-title {
    font-family: 'Urbanist', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800; line-height: 1.1;
    margin-bottom: 18px;
}
.cta-sub {
    color: var(--muted); font-size: 1.05rem; line-height: 1.7;
    max-width: 500px; margin: 0 auto 28px;
}

.cta-urgency {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 9px 18px;
    background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3);
    border-radius: 100px; color: #ef4444; font-size: .88rem;
    margin-bottom: 36px;
}
.urgency-dot {
    width: 8px; height: 8px; background: #ef4444; border-radius: 50%;
    animation: blink 1s ease-in-out infinite; box-shadow: 0 0 8px #ef4444;
}

.btn-cta {
    display: inline-flex; align-items: center; gap: 14px;
    padding: 20px 48px;
    background: var(--grad); color: #fff;
    border: none; border-radius: 100px;
    font-family: 'Urbanist', sans-serif; font-weight: 700; font-size: 1.1rem;
    position: relative; overflow: hidden;
    box-shadow: 0 0 60px rgba(59,130,246,0.35);
    transition: transform .3s var(--ease), box-shadow .3s;
    margin-bottom: 20px;
}
.btn-cta::after {
    content: ''; position: absolute; inset:-100%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.12) 0%, transparent 70%);
    animation: ctaShine 3s linear infinite;
}
@keyframes ctaShine { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.btn-cta:hover { transform: translateY(-3px); box-shadow: 0 0 100px rgba(59,130,246,0.55), 0 0 40px rgba(124,58,237,0.35); }
.btn-cta span { position: relative; z-index: 1; }
.btn-cta svg { width: 20px; height: 20px; position: relative; z-index: 1; transition: transform .3s; }
.btn-cta:hover svg { transform: translateX(6px); }

.cta-trust-badges { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; }
.cta-trust-badges span { font-size: .85rem; color: var(--muted); }

/* ─── CTA ALT LINK ──────────────────────────────────*/
.cta-contact-alt {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    margin-bottom: 24px; flex-wrap: wrap;
    font-size: .88rem; color: var(--muted);
}
.cta-wa-link {
    display: inline-flex; align-items: center; gap: 7px;
    color: #25d366; text-decoration: none; font-weight: 600; font-size: .88rem;
    transition: opacity .2s;
}
.cta-wa-link:hover { opacity: .8; }
.cta-wa-link svg { width: 18px; height: 18px; }

/* ─── MODAL ──────────────────────────────────────── */
.modal-overlay {
    position: fixed; inset: 0; z-index: 2000;
    background: rgba(5,5,10,0.85); backdrop-filter: blur(12px);
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    opacity: 0; pointer-events: none;
    transition: opacity .35s var(--ease);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal {
    background: #12121a;
    border: 1px solid rgba(59,130,246,0.2);
    border-radius: 24px; padding: 40px;
    width: 100%; max-width: 520px;
    position: relative;
    transform: translateY(24px) scale(0.97);
    transition: transform .4s var(--ease);
    max-height: 90vh; overflow-y: auto;
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }

.modal-close {
    position: absolute; top: 16px; right: 16px;
    background: rgba(255,255,255,0.06); border: 1px solid var(--border);
    border-radius: 50%; width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    color: var(--muted); transition: all .2s;
}
.modal-close:hover { background: rgba(255,255,255,0.1); color: #fff; }
.modal-close svg { width: 16px; height: 16px; }

.modal-head { text-align: center; margin-bottom: 28px; }
.modal-x {
    font-family: 'Orbitron', monospace; font-size: 1.8rem; font-weight: 900;
    background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    filter: drop-shadow(0 0 10px rgba(59,130,246,0.5));
    margin-bottom: 12px;
}
.modal-head h3 { font-family: 'Urbanist', sans-serif; font-size: 1.4rem; font-weight: 800; margin-bottom: 6px; }
.modal-head p { font-size: .9rem; color: var(--muted); }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .82rem; color: rgba(255,255,255,0.6); font-weight: 500; }
.optional { color: var(--muted); font-weight: 400; }

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border); border-radius: 10px;
    padding: 12px 14px; color: #fff; font-family: 'Outfit', sans-serif; font-size: .9rem;
    outline: none; transition: border-color .2s, box-shadow .2s;
    width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-group select option { background: #1a1a2a; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(59,130,246,0.5);
    box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}
.form-group textarea { resize: vertical; min-height: 80px; }

.form-submit {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 15px 32px;
    background: var(--grad); color: #fff; border: none; border-radius: 100px;
    font-family: 'Urbanist', sans-serif; font-weight: 700; font-size: 1rem;
    box-shadow: 0 0 40px rgba(59,130,246,0.3);
    transition: transform .3s var(--ease), box-shadow .3s;
    margin-top: 4px;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 0 60px rgba(59,130,246,0.5); }
.form-submit svg { width: 18px; height: 18px; transition: transform .3s; }
.form-submit:hover svg { transform: translateX(4px); }

.form-hint { font-size: .76rem; color: var(--muted); text-align: center; margin-top: 4px; }

/* Success state */
.form-success { display: none; text-align: center; padding: 20px 0; }
.form-success.show { display: block; }
.contact-form.hide { display: none; }
.success-icon {
    width: 56px; height: 56px; border-radius: 50%;
    background: rgba(34,197,94,0.15); border: 1px solid rgba(34,197,94,0.4);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: #22c55e;
    margin: 0 auto 16px;
}
.form-success h4 { font-family: 'Urbanist', sans-serif; font-size: 1.3rem; font-weight: 800; margin-bottom: 8px; }
.form-success p { color: var(--muted); font-size: .9rem; line-height: 1.6; }

/* ─── WHATSAPP FLOAT ─────────────────────────────── */
.wa-float {
    position: fixed; bottom: 28px; right: 28px; z-index: 900;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25d366;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: transform .3s var(--ease), box-shadow .3s;
    text-decoration: none; color: #fff;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.6); }
.wa-float svg { width: 28px; height: 28px; }
.wa-tooltip {
    position: absolute; right: 68px; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.1); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff; font-size: .78rem; font-weight: 600; white-space: nowrap;
    padding: 6px 12px; border-radius: 100px;
    opacity: 0; pointer-events: none;
    transition: opacity .2s; font-family: 'Outfit', sans-serif;
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ─── MOBILE STICKY CTA ──────────────────────────── */
.sticky-cta {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 800;
    padding: 12px 16px 16px;
    background: linear-gradient(to top, var(--black) 70%, transparent);
    display: none;
    transform: translateY(100%);
    transition: transform .4s var(--ease);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-btn {
    width: 100%;
    padding: 15px;
    background: var(--grad); color: #fff; border: none; border-radius: 100px;
    font-family: 'Urbanist', sans-serif; font-weight: 700; font-size: 1rem;
    box-shadow: 0 0 30px rgba(59,130,246,0.4);
    transition: box-shadow .3s;
}
.sticky-cta-btn:hover { box-shadow: 0 0 50px rgba(59,130,246,0.6); }

/* ─── FOOTER ─────────────────────────────────────── */
.footer { border-top: 1px solid var(--border); padding: 60px 0 28px; }

.footer-top { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; margin-bottom: 48px; }
.footer-brand .logo { display: inline-flex; margin-bottom: 14px; }
.footer-brand p { color: var(--muted); font-size: .88rem; }

.footer-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.fcol h5 { font-family: 'Orbitron', monospace; font-size: .68rem; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.fcol a { display: block; color: rgba(255,255,255,0.45); text-decoration: none; font-size: .88rem; margin-bottom: 9px; transition: color .3s; }
.fcol a:hover { color: #fff; }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid var(--border); }
.footer-bottom p { font-size: .82rem; color: var(--muted); }
.footer-credit {
    font-size: .82rem; color: var(--muted); text-decoration: none;
    transition: color .2s;
}
.footer-credit:hover { color: #fff; }
.footer-credit span {
    font-family: 'Orbitron', monospace; font-size: .75rem; font-weight: 700;
    background: var(--grad);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1024px) {
    .benefits-grid { grid-template-columns: repeat(2,1fr); }
    .hero-x-wrap { right: 40px; width: 440px; height: 440px; }
    .hero-x-svg { width: 200px; height: 200px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .sticky-cta { display: block; }
    .wa-float { bottom: 84px; }
    .hero-content { margin-left: 24px; padding-right: 24px; max-width: 100%; }
    .hero-x-wrap { opacity: 0.2; right: -120px; }
    .problem-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr 1fr; }
    .sys-step { grid-template-columns: 40px 52px 1fr; gap: 14px; }
    .case-card { grid-template-columns: 1fr; padding: 28px; }
    .case-divider { display: none; }
    .testimonials { grid-template-columns: 1fr; }
    .proc-list { margin-left: 16px; padding-left: 28px; }
    .proc-step { grid-template-columns: 1fr; gap: 20px; }
    .proc-icon { display: none; }
    .proc-num { left: calc(-28px - 24px); width: 40px; height: 40px; }
    .trust-metrics { gap: 28px; }
    .footer-top { grid-template-columns: 1fr; gap: 28px; }
    .footer-links { grid-template-columns: repeat(2,1fr); }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    .cta-trust-badges { gap: 12px; }
    .hero-stats { gap: 16px; }
}

@media (max-width: 480px) {
    .benefits-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .stat-divider { display: none; }
    .hero-stats { flex-direction: column; gap: 12px; }
    .footer-links { grid-template-columns: 1fr; }
    .testimonials { grid-template-columns: 1fr; }
}
