/* ============================================================
   RapideKops 2026 — Glass Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Audiowide&family=Tilt+Neon&family=JetBrains+Mono:wght@400;500&display=swap');

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

:root {
    --bg:        #03040a;
    --c1:        #7c3aed;   /* violet */
    --c2:        #0ea5e9;   /* sky */
    --c3:        #10b981;   /* emerald */
    --c4:        #f59e0b;   /* amber */
    --c5:        #ec4899;   /* pink */
    --text:      #f0f2ff;
    --muted:     #7b8cb8;
    --glass-bg:  rgba(255,255,255,.04);
    --glass-border: rgba(255,255,255,.09);
    --glass-shine:  rgba(255,255,255,.12);
    --font-head: 'Audiowide', sans-serif;
    --font-body: 'Tilt Neon', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    /* Aliases for legacy view compatibility */
    --violet:  #7c3aed;
    --cyan:    #0ea5e9;
    --green:   #10b981;
    --amber:   #f59e0b;
    --pink:    #ec4899;
    --border:  rgba(255,255,255,.09);
    --bg2:     rgba(255,255,255,.02);
}

html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-size: 17px;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    overflow-x: clip;
    line-height: 1.65;
}
h1,h2 { font-family: var(--font-head); font-weight: 700; line-height: 1.12; }
h3,h4,h5,h6 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; }

/* ── Gradient Mesh Background ───────────────────────────────── */
.mesh-bg {
    position: fixed; inset: 0; z-index: 0; pointer-events: none;
    background:
        radial-gradient(ellipse 700px 600px at 10% 20%,  rgba(124,58,237,.18) 0%, transparent 60%),
        radial-gradient(ellipse 500px 500px at 85% 15%,  rgba(14,165,233,.15) 0%, transparent 60%),
        radial-gradient(ellipse 600px 500px at 60% 80%,  rgba(16,185,129,.10) 0%, transparent 60%),
        radial-gradient(ellipse 400px 400px at 5% 80%,   rgba(236,72,153,.08) 0%, transparent 60%),
        #03040a;
}
/* Subtle grid lines */
.mesh-bg::after {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
/* Noise texture */
.mesh-bg::before {
    content: '';
    position: absolute; inset: 0;
    opacity: .03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 256px 256px;
}

/* Canvas particle background */
#bg-canvas {
    position: fixed; inset: 0; width: 100%; height: 100%;
    z-index: 0; pointer-events: none; opacity: .35;
}
/* Ambient orb glows */
.orb {
    position: fixed; border-radius: 50%; pointer-events: none; z-index: 0;
    filter: blur(100px); animation: slow-spin 20s linear infinite;
}
.orb-1 {
    width: 600px; height: 600px; top: -100px; left: -100px;
    background: radial-gradient(circle, rgba(124,58,237,.18) 0%, transparent 70%);
}
.orb-2 {
    width: 500px; height: 500px; bottom: -80px; right: -80px;
    background: radial-gradient(circle, rgba(14,165,233,.14) 0%, transparent 70%);
    animation-direction: reverse;
}

.page-wrapper { position: relative; z-index: 1; }

/* ── Glass Utility ──────────────────────────────────────────── */
.glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
}
.glass-strong {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.13);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
}
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    transition: transform .35s cubic-bezier(.23,1,.32,1), border-color .3s, box-shadow .3s;
}
.glass-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-shine), transparent);
}
.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,.18);
    box-shadow: 0 30px 80px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.06) inset;
}

/* Gradient border glow on hover */
.glow-violet { --glow: rgba(124,58,237,.35); }
.glow-sky    { --glow: rgba(14,165,233,.35); }
.glow-emerald{ --glow: rgba(16,185,129,.35); }
.glow-amber  { --glow: rgba(245,158,11,.35); }
.glow-pink   { --glow: rgba(236,72,153,.35); }

.glass-card:hover {
    box-shadow: 0 30px 80px rgba(0,0,0,.4), 0 0 40px var(--glow, rgba(124,58,237,.2));
}

/* ── Navigation ──────────────────────────────────────────────── */
.navbar {
    position: fixed; top: 16px;
    left: max(5%, calc(50% - 740px));
    right: max(5%, calc(50% - 740px));
    z-index: 1000;
    padding: 0 28px;
    height: 62px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px;
    background: rgba(3,4,10,.6);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    transition: background .3s, border-color .3s, box-shadow .3s;
}
.nav-mobile { display: none; }
.navbar.scrolled {
    background: rgba(3,4,10,.85);
    border-color: rgba(255,255,255,.12);
    box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-img { height: 34px; width: auto; object-fit: contain; filter: brightness(1.05); }
.nav-logo-mark {
    width: 32px; height: 32px;
    background: linear-gradient(135deg, var(--c1), var(--c2));
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; flex-shrink: 0;
    box-shadow: 0 0 16px rgba(124,58,237,.4);
}
.nav-logo-text { font-family: var(--font-head); font-size: 16px; font-weight: 700; letter-spacing: -.02em; }
.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-links a {
    color: var(--muted); text-decoration: none; font-size: 16.5px; font-weight: 500;
    padding: 6px 14px; border-radius: 8px; transition: all .2s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--text); }
.nav-cta { display: flex; gap: 8px; }

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 9px 20px; border-radius: 10px;
    font-size: 14px; font-weight: 600; font-family: var(--font-body);
    cursor: pointer; text-decoration: none; border: none;
    transition: all .25s cubic-bezier(.23,1,.32,1);
    white-space: nowrap;
}
.btn svg, .btn i[data-lucide] { width: 15px; height: 15px; flex-shrink: 0; }
.btn-primary {
    background: linear-gradient(135deg, var(--c1) 0%, #6366f1 100%);
    color: #fff;
    box-shadow: 0 0 0 1px rgba(124,58,237,.3), 0 8px 24px rgba(124,58,237,.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(124,58,237,.5), 0 16px 40px rgba(124,58,237,.4); }
.btn-glass {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    color: var(--text);
    backdrop-filter: blur(12px);
}
.btn-glass:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.2); }
.btn-outline {
    background: transparent; border: 1px solid rgba(255,255,255,.12); color: var(--text);
}
.btn-outline:hover { border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.05); }
.btn-cyan {
    background: linear-gradient(135deg, var(--c2), #38bdf8);
    color: #fff; font-weight: 700;
    box-shadow: 0 8px 24px rgba(14,165,233,.3);
}
.btn-cyan:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(14,165,233,.45); }
.btn-lg { padding: 13px 28px; font-size: 15px; border-radius: 12px; }
.btn-sm { padding: 5px 12px; font-size: 12px; border-radius: 7px; }

/* ── Gradient Text ───────────────────────────────────────────── */
.g-violet { background: linear-gradient(135deg, var(--c1), var(--c2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.g-sky    { background: linear-gradient(135deg, var(--c2), var(--c3)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.g-warm   { background: linear-gradient(135deg, var(--c4), var(--c5)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ── Section layout ──────────────────────────────────────────── */
section { padding: 100px max(5%, calc(50% - 660px)); }
.section-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    color: var(--c2); margin-bottom: 14px;
}
.section-eyebrow::before { content:''; width: 18px; height: 1px; background: var(--c2); flex-shrink: 0; }
.section-title { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -.03em; }
.section-sub { font-size: 17px; color: var(--muted); max-width: 540px; line-height: 1.75; margin-top: 12px; }

/* ══════════════════════════════════════════════════════════════
   HERO — Cyber AI 3D
══════════════════════════════════════════════════════════════ */
:root {
    --cyber:  #00e5ff;
    --neon:   #00ff88;
    --danger: #ff3355;
}

.hero {
    min-height: 100vh;
    padding: 115px max(5%, calc(50% - 700px)) 85px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
}
/* Scanline overlay */
.hero::after {
    content: '';
    position: absolute; inset: 0; pointer-events: none; z-index: 1;
    background: repeating-linear-gradient(
        0deg, transparent, transparent 3px,
        rgba(0,229,255,.008) 3px, rgba(0,229,255,.008) 4px
    );
}

/* ── Left ─────────────────────────────── */
.hero-content { position: relative; z-index: 3; }

/* Eyebrow row */
.hero-eyebrow-row {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 11px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
    color: rgba(123,140,184,.8); margin-bottom: 20px;
}
.eyebrow-live {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--neon); box-shadow: 0 0 10px var(--neon);
    animation: neon-pulse 1.4s ease-in-out infinite; flex-shrink: 0;
}

/* ── Headline ── */
.hero-title { margin-bottom: 20px; line-height: 1; }

/* "We Build & Secure" — larger, semi-prominent */
.ht-pre {
    display: block;
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    font-weight: 600;
    color: rgba(240,242,255,.55);
    letter-spacing: -.025em;
    margin-bottom: 2px;
}

/* "Digital" — big white anchor word */
.ht-main {
    display: block;
    font-size: clamp(3.2rem, 5.8vw, 6rem);
    font-weight: 800; letter-spacing: -.055em; line-height: .92;
    color: var(--text);
    text-shadow: 0 0 80px rgba(255,255,255,.06);
}

/* CSS word-rotation — no JS, no layout shift */
.ht-words {
    display: inline-grid; /* sizes to widest word; all children share one cell */
}
.hw {
    grid-area: 1 / 1; /* stack every word in the same grid cell */
    display: block;
    font-size: clamp(3.2rem, 5.8vw, 6rem);
    font-weight: 800; letter-spacing: -.055em; line-height: .98;
    background: linear-gradient(110deg, #00e5ff 0%, #c084fc 50%, #4ade80 100%);
    background-size: 200% auto;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    /* NO filter — filter+background-clip:text = invisible text in Chrome/Windows */
    opacity: 0;
}
/* Each word fades up in, holds, then fades up out — 16 s cycle, 4 s per word */
.hw:nth-child(1) { animation: hw0 16s cubic-bezier(.4,0,.2,1) infinite, cyber-gradient 5s ease infinite; }
.hw:nth-child(2) { animation: hw1 16s cubic-bezier(.4,0,.2,1) infinite, cyber-gradient 5s ease infinite; }
.hw:nth-child(3) { animation: hw2 16s cubic-bezier(.4,0,.2,1) infinite, cyber-gradient 5s ease infinite; }
.hw:nth-child(4) { animation: hw3 16s cubic-bezier(.4,0,.2,1) infinite, cyber-gradient 5s ease infinite; }
@keyframes hw0 {
    0%,100% { opacity:0; transform:translateY(10px); }
    3%      { opacity:1; transform:translateY(0); }
    21%     { opacity:1; transform:translateY(0); }
    25%     { opacity:0; transform:translateY(-10px); }
}
@keyframes hw1 {
    0%,24%  { opacity:0; transform:translateY(10px); }
    28%     { opacity:1; transform:translateY(0); }
    46%     { opacity:1; transform:translateY(0); }
    50%,100%{ opacity:0; transform:translateY(10px); }
}
@keyframes hw2 {
    0%,49%  { opacity:0; transform:translateY(10px); }
    53%     { opacity:1; transform:translateY(0); }
    71%     { opacity:1; transform:translateY(0); }
    75%,100%{ opacity:0; transform:translateY(10px); }
}
@keyframes hw3 {
    0%,74%  { opacity:0; transform:translateY(10px); }
    78%     { opacity:1; transform:translateY(0); }
    96%     { opacity:1; transform:translateY(0); }
    100%    { opacity:0; transform:translateY(-10px); }
}
/* Glow effect lives on a separate layer below the text */
.ht-glow {
    display: block; pointer-events: none;
    height: 20px; margin-top: -8px; margin-bottom: 4px;
    background: linear-gradient(90deg, rgba(0,229,255,.22), rgba(192,132,252,.15), rgba(74,222,128,.1));
    border-radius: 50%;
    filter: blur(18px);
    opacity: .8;
}

/* Description */
.hero-desc {
    font-size: 17px; color: rgba(123,140,184,.9); line-height: 1.8;
    max-width: 470px; margin-bottom: 20px;
}

/* Accent separator under description */
.hero-sep {
    width: 44px; height: 2px; border-radius: 2px;
    background: linear-gradient(90deg, var(--cyber), transparent);
    margin-bottom: 18px;
}

/* ── Feature tiles (3-col grid) ── */
.hero-features {
    display: grid; grid-template-columns: repeat(3,1fr); gap: 8px;
    margin-bottom: 28px;
}
.hf-item {
    position: relative; overflow: hidden;
    display: flex; flex-direction: column; gap: 6px;
    padding: 14px 14px 12px;
    background: rgba(0,0,0,.32);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 14px;
    transition: border-color .22s, background .22s, transform .22s;
}
/* Top accent bar */
.hf-item::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--cyber) 0%, transparent 100%);
}
.hf-item.hf-neon::before  { background: linear-gradient(90deg, var(--neon)  0%, transparent 100%); }
.hf-item.hf-violet::before { background: linear-gradient(90deg, #a78bfa     0%, transparent 100%); }
.hf-item:hover { transform: translateY(-2px); background: rgba(0,229,255,.04); border-color: rgba(0,229,255,.18); }
.hf-item.hf-neon:hover   { background: rgba(0,255,136,.04); border-color: rgba(0,255,136,.2); }
.hf-item.hf-violet:hover { background: rgba(167,139,250,.04); border-color: rgba(167,139,250,.2); }
.hf-icon {
    width: 30px; height: 30px; border-radius: 8px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,229,255,.1); color: var(--cyber);
}
.hf-neon  .hf-icon { background: rgba(0,255,136,.1);   color: var(--neon); }
.hf-violet .hf-icon { background: rgba(167,139,250,.1); color: #a78bfa; }
.hf-icon i[data-lucide], .hf-icon svg { width: 15px; height: 15px; }
.hf-item strong { font-size: 15px; font-weight: 700; color: var(--text); }
.hf-item > span { font-size: 17px; color: var(--muted); line-height: 1.5; }

/* ── CTAs ── */
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 26px; }

/* Primary: solid electric cyan — eye-catching and dominant */
.btn-cyber {
    background: var(--cyber);
    color: #03040a;
    border: 1px solid var(--cyber);
    font-weight: 700;
    box-shadow: 0 0 40px rgba(0,229,255,.35), 0 8px 28px rgba(0,0,0,.45);
    transition: all .25s cubic-bezier(.23,1,.32,1);
}
.btn-cyber:hover {
    background: #fff; border-color: #fff;
    box-shadow: 0 0 60px rgba(0,229,255,.55), 0 12px 40px rgba(0,0,0,.5);
    color: #03040a; transform: translateY(-2px);
}
.btn-cyber i[data-lucide], .btn-cyber svg { width: 15px; height: 15px; }

/* ── Stats grid ── */
.hero-stats {
    display: grid; grid-template-columns: repeat(4,1fr); gap: 8px;
}
.hero-stat {
    text-align: center; padding: 14px 8px;
    background: rgba(0,0,0,.3);
    border: 1px solid rgba(0,229,255,.08);
    border-radius: 12px;
    position: relative; overflow: hidden;
    transition: border-color .25s, background .25s;
}
.hero-stat::after {
    content: '';
    position: absolute; bottom: 0; left: 15%; right: 15%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyber), transparent);
    opacity: .55;
}
.hero-stat:hover { border-color: rgba(0,229,255,.2); background: rgba(0,229,255,.03); }
.hero-stat-num {
    font-family: var(--font-head); font-size: 22px; font-weight: 800;
    background: linear-gradient(135deg, var(--cyber), var(--c1));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-stat-lbl {
    font-size: 10px; color: var(--muted); margin-top: 3px;
    text-transform: uppercase; letter-spacing: .07em;
}

/* ── Right: 3D Cyber Scene ──────────────── */
.hero-visual {
    position: relative; height: 610px; z-index: 3;
    perspective: 1400px; perspective-origin: 50% 42%;
}

/* Orbital rings */
.hero-orbit {
    position: absolute; top: 50%; left: 50%; border-radius: 50%;
    pointer-events: none; transform-origin: center;
}
.hero-orbit-1 {
    width: 530px; height: 530px; transform: translate(-50%,-50%);
    border: 1px dashed rgba(0,229,255,.07);
    animation: orbit-spin 35s linear infinite;
}
.hero-orbit-2 {
    width: 410px; height: 410px; transform: translate(-50%,-50%);
    border: 1px solid rgba(124,58,237,.07);
    animation: orbit-spin 22s linear infinite reverse;
}
.orbit-dot {
    position: absolute; width: 5px; height: 5px; border-radius: 50%;
    top: 50%; left: 50%;
}
.od-1 { transform: translate(-50%,-50%) translateY(-265px); background: var(--cyber); box-shadow: 0 0 12px var(--cyber); animation: orbit-dot-pulse 2s ease-in-out infinite; }
.od-2 { transform: translate(-50%,-50%) translateX(265px); background: var(--neon); box-shadow: 0 0 12px var(--neon); animation: orbit-dot-pulse 2s ease-in-out infinite .6s; }
.od-3 { transform: translate(-50%,-50%) translateY(205px); background: var(--c1); box-shadow: 0 0 12px var(--c1); animation: orbit-dot-pulse 2s ease-in-out infinite 1.2s; }
.od-4 { transform: translate(-50%,-50%) translateX(-205px); background: var(--danger); box-shadow: 0 0 12px var(--danger); animation: orbit-dot-pulse 2s ease-in-out infinite 1.8s; }

/* ─ Main Command Panel ─ */
.hero-cmd {
    position: absolute; top: 50%; left: 50%;
    width: 360px;
    transform: translate(-50%, -52%) rotateX(14deg) rotateY(-18deg) rotateZ(-.5deg);
    background: rgba(0, 6, 18, 0.88);
    border: 1px solid rgba(0,229,255,.2);
    border-radius: 22px;
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    box-shadow:
        0 60px 140px rgba(0,0,0,.75),
        0 0 0 1px rgba(0,229,255,.07) inset,
        0 0 80px rgba(0,229,255,.07);
    padding: 20px 20px 16px;
    animation: cmd-float 9s ease-in-out infinite;
}
/* Top bar */
.cmd-bar {
    display: flex; align-items: center; justify-content: space-between;
    padding-bottom: 12px; margin-bottom: 14px;
    border-bottom: 1px solid rgba(0,229,255,.08);
}
.cmd-bar-title { font-family: var(--font-mono); font-size: 10px; color: var(--cyber); font-weight: 700; letter-spacing: .1em; }
.cmd-bar-dots { display: flex; gap: 5px; }
.cmd-bar-dot { width: 7px; height: 7px; border-radius: 50%; }

/* ─ Radar ─ */
.radar-wrap {
    width: 190px; height: 190px; border-radius: 50%;
    margin: 0 auto 14px;
    position: relative;
    background: radial-gradient(circle, rgba(0,229,255,.05) 0%, rgba(0,0,0,.6) 70%);
    border: 1px solid rgba(0,229,255,.18);
    overflow: hidden;
}
.radar-ring {
    position: absolute; top: 50%; left: 50%; border-radius: 50%;
    border: 1px solid rgba(0,229,255,.1); transform: translate(-50%,-50%);
}
.rr-1 { width: 140px; height: 140px; }
.rr-2 { width: 90px; height: 90px; }
.rr-3 { width: 44px; height: 44px; }
/* Cross-hairs */
.radar-h { position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: rgba(0,229,255,.08); transform: translateY(-50%); }
.radar-v { position: absolute; left: 50%; top: 0; bottom: 0; width: 1px; background: rgba(0,229,255,.08); transform: translateX(-50%); }
/* Sweep */
.radar-sweep {
    position: absolute; inset: 0; border-radius: 50%;
    background: conic-gradient(from 0deg, transparent 0deg, rgba(0,229,255,.25) 50deg, rgba(0,229,255,.06) 90deg, transparent 110deg);
    animation: radar-sweep 3.2s linear infinite;
}
.radar-sweep::after {
    content: ''; position: absolute; top: 50%; left: 50%;
    width: 50%; height: 1px;
    background: linear-gradient(90deg, rgba(0,229,255,.5), transparent);
    transform-origin: 0 50%;
    animation: radar-sweep 3.2s linear infinite;
}
/* Threat / safe dots */
.radar-dot {
    position: absolute; border-radius: 50%;
    transform: translate(-50%,-50%);
    animation: threat-blink 1.8s ease-in-out infinite;
}
.radar-dot.threat { width: 5px; height: 5px; background: var(--danger); box-shadow: 0 0 8px var(--danger); }
.radar-dot.safe   { width: 4px; height: 4px; background: var(--neon); box-shadow: 0 0 6px var(--neon); animation-duration: 2.8s; }
/* Center dot */
.radar-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 6px; height: 6px; border-radius: 50%; background: var(--cyber); box-shadow: 0 0 16px var(--cyber); }

/* Status row inside cmd */
.cmd-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 7px; margin-bottom: 12px; }
.cmd-stat {
    background: rgba(0,229,255,.04);
    border: 1px solid rgba(0,229,255,.07);
    border-radius: 10px; padding: 9px 7px; text-align: center;
}
.cmd-stat-val { font-family: var(--font-mono); font-size: 13px; font-weight: 700; }
.cmd-stat-lbl { font-size: 9px; color: var(--muted); margin-top: 3px; text-transform: uppercase; letter-spacing: .06em; }

/* Threat feed ticker */
.cmd-feed {
    background: rgba(0,0,0,.4); border: 1px solid rgba(0,229,255,.06);
    border-radius: 8px; padding: 7px 10px; overflow: hidden;
    display: flex; align-items: center; gap: 8px;
}
.cmd-feed-tag { font-size: 9px; font-weight: 700; padding: 2px 7px; border-radius: 4px; flex-shrink: 0; font-family: var(--font-mono); }
.cmd-feed-text { font-family: var(--font-mono); font-size: 10px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ─ Floating Panels ─ */
.fp {
    position: absolute;
    background: rgba(0, 6, 20, 0.84);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    border-radius: 14px; padding: 14px 16px;
}
/* Threat panel (top-right) */
.fp-threat {
    top: 0; right: -8%;
    border: 1px solid rgba(255,51,85,.25);
    box-shadow: 0 0 40px rgba(255,51,85,.1);
    min-width: 152px;
    transform: rotateX(8deg) rotateY(-22deg);
    animation: fp-float-a 6s ease-in-out infinite;
}
/* AI panel (bottom-right) */
.fp-ai {
    bottom: 6%; right: -8%;
    border: 1px solid rgba(0,255,136,.2);
    box-shadow: 0 0 40px rgba(0,255,136,.08);
    min-width: 162px;
    transform: rotateX(-8deg) rotateY(-20deg);
    animation: fp-float-b 7.5s ease-in-out infinite;
}
/* Status panel (mid-left) */
.fp-status {
    top: 22%; left: -10%;
    border: 1px solid rgba(124,58,237,.25);
    box-shadow: 0 0 40px rgba(124,58,237,.1);
    min-width: 148px;
    transform: rotateX(4deg) rotateY(18deg);
    animation: fp-float-c 5.5s ease-in-out infinite;
}
.fp-lbl { font-size: 9.5px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 7px; }
.fp-val { font-family: var(--font-head); font-size: 22px; font-weight: 800; line-height: 1; }
.fp-sub { font-size: 10.5px; color: var(--muted); margin-top: 4px; display: flex; align-items: center; gap: 5px; }
.fp-dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }

/* Progress bars for AI panel */
.fp-bars { display: flex; flex-direction: column; gap: 6px; margin-top: 10px; }
.fp-bar-row { display: flex; align-items: center; gap: 7px; font-size: 10px; color: var(--muted); }
.fp-bar-track { flex: 1; height: 3px; background: rgba(255,255,255,.06); border-radius: 3px; overflow: hidden; }
.fp-bar-fill { height: 100%; border-radius: 3px; animation: bar-grow .8s ease forwards; }

/* Neural network SVG overlay */
.hero-neural { position: absolute; inset: 0; pointer-events: none; opacity: .35; }

/* Hex grid bg */
.hero-hex {
    position: absolute; inset: 0; pointer-events: none; z-index: 0;
    opacity: .04;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpolygon points='28,2 54,16 54,44 28,58 2,44 2,16' fill='none' stroke='%2300e5ff' stroke-width='1'/%3E%3Cpolygon points='28,58 54,72 54,100 28,114 2,100 2,72' fill='none' stroke='%2300e5ff' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 56px 100px;
}

/* ══════════════════════════════════════════════════════════════
   MARQUEE
══════════════════════════════════════════════════════════════ */
.marquee-section {
    padding: 0;
    border-top: 1px solid rgba(255,255,255,.05);
    border-bottom: 1px solid rgba(255,255,255,.05);
    background: rgba(255,255,255,.02);
    overflow: hidden;
}
.marquee-track { display: flex; align-items: center; gap: 0; padding: 16px 0; }
.marquee-inner { display: flex; gap: 40px; animation: marquee 24s linear infinite; white-space: nowrap; }
.marquee-inner:hover { animation-play-state: paused; }
.marquee-item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: rgba(255,255,255,.45); flex-shrink: 0; transition: color .2s; }
.marquee-item:hover { color: rgba(255,255,255,.85); }
.tech-logo { width: 30px; height: 30px; object-fit: contain; flex-shrink: 0; opacity: .8; transition: opacity .2s; }
.tech-logo.inv { filter: brightness(0) invert(1); opacity: .6; }
.tech-logo.inv-green  { filter: brightness(0) saturate(100%) invert(55%) sepia(60%) saturate(400%) hue-rotate(120deg); opacity: .85; }
.tech-logo.inv-violet { filter: brightness(0) saturate(100%) invert(55%) sepia(40%) saturate(500%) hue-rotate(240deg); opacity: .85; }
.marquee-item:hover .tech-logo { opacity: 1; }

/* ══════════════════════════════════════════════════════════════
   3D GLASS SERVICE BENTO
══════════════════════════════════════════════════════════════ */
.svc-bento {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: auto;
    gap: 16px;
}
/* Grid placement */
.sb-ai  { grid-column: span 4; grid-row: span 2; }
.sb-sec { grid-column: span 2; }
.sb-mob { grid-column: span 2; }
.sb-web { grid-column: span 2; }
.sb-sft { grid-column: span 4; }

/* Card base */
.sb-card {
    position: relative;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.07);
    background: rgba(255,255,255,.03);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    overflow: hidden;
    transition: transform .4s cubic-bezier(.23,1,.32,1), border-color .3s, box-shadow .3s;
    transform: perspective(900px) rotateX(0) rotateY(0) translateZ(0);
    will-change: transform;
}
.sb-card:hover {
    transform: perspective(900px) rotateX(-5deg) rotateY(4deg) translateZ(24px);
    border-color: rgba(255,255,255,.16);
    box-shadow: 0 40px 100px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.05), inset 0 1px 0 rgba(255,255,255,.1);
}
.sb-ai:hover {
    transform: perspective(900px) rotateX(-3deg) rotateY(2deg) translateZ(16px);
    border-color: rgba(124,58,237,.35);
    box-shadow: 0 40px 100px rgba(0,0,0,.55), 0 0 80px rgba(124,58,237,.12);
}
/* Ambient orb */
.sb-orb {
    position: absolute; width: 280px; height: 280px;
    top: -60px; right: -60px; border-radius: 50%;
    pointer-events: none; z-index: 0;
    animation: orb-drift 8s ease-in-out infinite alternate;
}
@keyframes orb-drift { from { transform: translate(0,0); } to { transform: translate(-20px, 20px); } }
/* Content */
.sb-inner {
    position: relative; z-index: 2;
    padding: 30px;
    height: 100%;
    display: flex; flex-direction: column;
}
/* Icon */
.sb-icon {
    width: 56px; height: 56px; border-radius: 16px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid; margin-bottom: 18px;
    transition: transform .3s, box-shadow .3s;
}
.sb-card:hover .sb-icon { transform: translateY(-3px) scale(1.06); }
.sb-icon i[data-lucide], .sb-icon svg { width: 24px; height: 24px; }
.sb-ai .sb-icon { width: 64px; height: 64px; border-radius: 20px; }
.sb-ai .sb-icon i[data-lucide], .sb-ai .sb-icon svg { width: 28px; height: 28px; }
/* Tag pill */
.sb-tag {
    display: inline-block; font-size: 10px; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
    padding: 4px 12px; border-radius: 20px; border: 1px solid;
    margin-bottom: 14px; width: fit-content;
}
/* Heading & body */
.sb-card h3 { font-size: 20px; margin-bottom: 10px; line-height: 1.25; }
.sb-ai h3   { font-size: 26px; }
.sb-sft h3  { font-size: 22px; }
.sb-card p  { font-size: 17px; color: var(--muted); line-height: 1.7; }
/* Tech chips */
.sb-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: 22px; }
.sb-chip {
    font-size: 11px; font-weight: 600; padding: 5px 13px; border-radius: 20px;
    border: 1px solid; cursor: default;
    transition: opacity .2s;
}
.sb-chip:hover { opacity: .75; }
/* Watermark */
.sb-wm {
    position: absolute; bottom: -14px; right: 18px;
    font-family: var(--font-head); font-size: 96px; font-weight: 800;
    opacity: .05; line-height: 1; pointer-events: none; user-select: none; color: #fff;
}
/* HUD corner brackets on AI card */
.sb-hud {
    position: absolute; width: 16px; height: 16px; z-index: 3;
    border-color: rgba(124,58,237,.5); border-style: solid;
}
.sb-tl { top: 14px; left: 14px;  border-width: 2px 0 0 2px; }
.sb-tr { top: 14px; right: 14px; border-width: 2px 2px 0 0; }

/* Responsive */
@media (max-width: 1100px) {
    .svc-bento { grid-template-columns: repeat(2,1fr); }
    .sb-ai,.sb-sft { grid-column: span 2; grid-row: span 1; }
    .sb-sec,.sb-mob,.sb-web { grid-column: span 1; }
}
@media (max-width: 600px) {
    .svc-bento { grid-template-columns: 1fr; }
    .sb-ai,.sb-sec,.sb-mob,.sb-web,.sb-sft { grid-column: span 1; }
}

/* ══════════════════════════════════════════════════════════════
   WHY US — VERTICAL TABS
══════════════════════════════════════════════════════════════ */
.why-section { border-top: 1px solid rgba(255,255,255,.05); border-bottom: 1px solid rgba(255,255,255,.05); }

.why3-wrap {
    display: grid; grid-template-columns: 300px 1fr;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 24px; overflow: hidden; min-height: 380px;
}

/* Tab sidebar */
.why3-tabs {
    display: flex; flex-direction: column;
    border-right: 1px solid rgba(255,255,255,.07);
    background: rgba(0,0,0,.25);
}
.why3-tab {
    display: flex; align-items: center; gap: 14px;
    padding: 22px 22px;
    background: none; border: none; border-bottom: 1px solid rgba(255,255,255,.05);
    cursor: pointer; color: var(--muted); text-align: left;
    position: relative; transition: color .25s, background .25s;
}
.why3-tab:last-child { border-bottom: none; }
.why3-tab::before {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
    background: var(--wc); border-radius: 0 2px 2px 0;
    transform: scaleY(0); transform-origin: 50%;
    transition: transform .35s cubic-bezier(.23,1,.32,1);
}
.why3-tab:hover { background: rgba(255,255,255,.03); color: var(--text); }
.why3-tab.active { background: rgba(255,255,255,.04); color: var(--text); }
.why3-tab.active::before { transform: scaleY(1); }
.why3-tab-num {
    font-family: var(--font-head); font-size: 10px; font-weight: 700;
    letter-spacing: .2em; color: rgba(255,255,255,.2); flex-shrink: 0; min-width: 22px;
    transition: color .25s;
}
.why3-tab.active .why3-tab-num { color: var(--wc); }
.why3-tab-name { font-family: var(--font-head); font-size: 13px; font-weight: 700; flex: 1; }
.why3-tab-arrow {
    width: 14px; height: 14px; flex-shrink: 0; opacity: 0;
    transition: opacity .25s, transform .25s; color: var(--wc);
}
.why3-tab.active .why3-tab-arrow { opacity: 1; transform: translateX(3px); }

/* Panel area */
.why3-panels { position: relative; background: rgba(0,0,0,.1); }
.why3-panel {
    position: absolute; inset: 0; padding: 52px 52px;
    display: flex; flex-direction: column;
    opacity: 0; pointer-events: none;
    transition: opacity .4s ease, transform .4s cubic-bezier(.23,1,.32,1);
    transform: translateX(12px);
}
.why3-panel.active {
    opacity: 1; pointer-events: auto;
    position: relative; transform: translateX(0);
}

/* Ghost number */
.why3-ghost {
    position: absolute; top: -10px; right: 28px;
    font-family: var(--font-head); font-size: 130px; font-weight: 800; line-height: 1;
    color: var(--wc); opacity: .055; pointer-events: none; user-select: none;
}

/* Icon */
.why3-icon {
    width: 60px; height: 60px; border-radius: 18px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: color-mix(in srgb, var(--wc) 12%, transparent);
    border: 1px solid color-mix(in srgb, var(--wc) 28%, transparent);
    color: var(--wc); box-shadow: 0 0 32px color-mix(in srgb, var(--wc) 18%, transparent);
    margin-bottom: 24px;
}
.why3-icon i[data-lucide], .why3-icon svg { width: 26px; height: 26px; }

/* Badge */
.why3-badge {
    font-family: var(--font-head); font-size: 9px; font-weight: 700;
    letter-spacing: .18em; color: var(--wc);
    background: color-mix(in srgb, var(--wc) 10%, transparent);
    border: 1px solid color-mix(in srgb, var(--wc) 28%, transparent);
    padding: 4px 14px; border-radius: 20px; align-self: flex-start; margin-bottom: 18px;
}
.why3-panel h3 { font-size: 26px; font-weight: 700; margin-bottom: 14px; }
.why3-panel p  { font-size: 17px; color: var(--muted); line-height: 1.8; max-width: 420px; }

@media (max-width: 768px) {
    .why3-wrap { grid-template-columns: 1fr; }
    .why3-tabs { flex-direction: row; overflow-x: auto; border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); scrollbar-width: none; }
    .why3-tabs::-webkit-scrollbar { display: none; }
    .why3-tab { padding: 14px 18px; white-space: nowrap; border-bottom: none; border-right: 1px solid rgba(255,255,255,.05); }
    .why3-tab::before { top: auto; bottom: 0; left: 0; right: 0; width: auto; height: 3px; transform: scaleX(0); }
    .why3-tab.active::before { transform: scaleX(1); }
    .why3-panel { padding: 32px 28px; }
    .why3-ghost { font-size: 80px; }
}

/* ══════════════════════════════════════════════════════════════
   BENTO GRID (Services + Why Us)
══════════════════════════════════════════════════════════════ */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}
.bento { border-radius: 20px; padding: 28px; overflow: hidden; position: relative; }
.bento-1  { grid-column: span 4; grid-row: span 1; }
.bento-2  { grid-column: span 2; grid-row: span 1; }
.bento-3  { grid-column: span 2; grid-row: span 1; }
.bento-4  { grid-column: span 2; grid-row: span 1; }
.bento-5  { grid-column: span 2; grid-row: span 1; }
.bento-6  { grid-column: span 6; grid-row: span 1; }
.bento-wide { grid-column: span 3; }
.bento-third { grid-column: span 2; }

.bento-icon {
    width: 44px; height: 44px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px; flex-shrink: 0;
}
.bento-icon svg, .bento-icon i[data-lucide] { width: 20px; height: 20px; }
.bento h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; letter-spacing: -.02em; }
.bento p { font-size: 17px; color: var(--muted); line-height: 1.7; }
.bento-tag {
    display: inline-block; font-size: 10px; font-weight: 700; padding: 3px 10px;
    border-radius: 20px; letter-spacing: .06em; text-transform: uppercase;
    margin-bottom: 14px;
}
/* Big number decoration */
.bento-num {
    position: absolute; bottom: -10px; right: 16px;
    font-family: var(--font-head); font-size: 100px; font-weight: 800;
    opacity: .06; line-height: 1; pointer-events: none; user-select: none;
}

/* ══════════════════════════════════════════════════════════════
   SERVICES — EXPANDABLE ROW LIST
══════════════════════════════════════════════════════════════ */
.svc-list {
    display: flex; flex-direction: column;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 24px; overflow: hidden;
}

.svc-row {
    position: relative;
    display: flex; align-items: center; gap: 24px;
    padding: 30px 36px;
    text-decoration: none; color: inherit;
    border-bottom: 1px solid rgba(255,255,255,.06);
    background: rgba(0,0,0,.18);
    transition: background .35s, padding-left .35s cubic-bezier(.23,1,.32,1);
    overflow: hidden;
}
.svc-row:last-child { border-bottom: none; }
.svc-row:hover {
    background: color-mix(in srgb, var(--sc) 5%, rgba(0,0,0,.28));
    padding-left: 44px;
}

/* Left accent bar — draws in on hover */
.svc-row-bar {
    position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
    background: var(--sc);
    border-radius: 0 2px 2px 0;
    box-shadow: 2px 0 18px color-mix(in srgb, var(--sc) 50%, transparent);
    transform: scaleY(0); transform-origin: 50% 50%;
    transition: transform .38s cubic-bezier(.23,1,.32,1);
}
.svc-row:hover .svc-row-bar { transform: scaleY(1); }

/* Step number */
.svc-row-num {
    font-family: var(--font-head); font-size: 11px; font-weight: 700;
    letter-spacing: .2em; color: rgba(255,255,255,.15);
    flex-shrink: 0; min-width: 28px;
    transition: color .3s;
}
.svc-row:hover .svc-row-num { color: var(--sc); }

/* Icon box */
.svc-row-icon {
    width: 54px; height: 54px; border-radius: 14px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: color-mix(in srgb, var(--sc) 12%, transparent);
    border: 1px solid color-mix(in srgb, var(--sc) 24%, transparent);
    color: var(--sc);
    transition: transform .38s cubic-bezier(.34,1.56,.64,1), box-shadow .3s, background .3s;
}
.svc-row:hover .svc-row-icon {
    transform: scale(1.12) rotate(-6deg);
    box-shadow: 0 0 32px color-mix(in srgb, var(--sc) 35%, transparent);
    background: color-mix(in srgb, var(--sc) 20%, transparent);
}
.svc-row-icon i[data-lucide], .svc-row-icon svg { width: 22px; height: 22px; }

/* Info */
.svc-row-info { flex: 1; min-width: 0; }
.svc-row-name {
    font-size: 21px; font-weight: 700; line-height: 1.2; margin: 0;
    transition: color .3s;
}
.svc-row:hover .svc-row-name { color: var(--sc); }

/* Expandable description + tags */
.svc-row-body {
    display: grid; grid-template-rows: 0fr;
    opacity: 0; margin-top: 0;
    transition: grid-template-rows .4s cubic-bezier(.23,1,.32,1),
                opacity .3s ease,
                margin-top .35s;
}
.svc-row-body > * { overflow: hidden; }
.svc-row:hover .svc-row-body {
    grid-template-rows: 1fr;
    opacity: 1; margin-top: 12px;
}
.svc-row-body p {
    font-size: 17px; color: var(--muted); line-height: 1.7; margin-bottom: 12px;
}
.svc-row-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.svc-row-tag {
    font-size: 10.5px; font-weight: 600; padding: 3px 12px; border-radius: 20px;
    background: color-mix(in srgb, var(--sc) 10%, transparent);
    border: 1px solid color-mix(in srgb, var(--sc) 24%, transparent);
    color: var(--sc);
}

/* Explore CTA */
.svc-row-cta {
    display: inline-flex; align-items: center; gap: 6px; flex-shrink: 0;
    font-family: var(--font-head); font-size: 12px; font-weight: 700;
    letter-spacing: .06em; color: rgba(255,255,255,.25);
    white-space: nowrap;
    transition: color .3s, gap .25s;
}
.svc-row:hover .svc-row-cta { color: var(--sc); gap: 10px; }
.svc-row-cta i[data-lucide], .svc-row-cta svg {
    width: 15px; height: 15px; transition: transform .25s;
}
.svc-row:hover .svc-row-cta i[data-lucide],
.svc-row:hover .svc-row-cta svg { transform: translate(3px,-3px); }

@media (max-width: 640px) {
    .svc-row { padding: 22px 20px; gap: 14px; }
    .svc-row:hover { padding-left: 28px; }
    .svc-row-cta { display: none; }
    .svc-row-name { font-size: 17px; }
}

/* ── Service Category Cards ── */
.service-section { margin-bottom: 70px; }
.service-section-header {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 20px;
}
.service-section-icon {
    width: 48px; height: 48px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.service-section-icon svg, .service-section-icon i[data-lucide] { width: 22px; height: 22px; }
.service-section-title { font-size: 22px; font-weight: 700; letter-spacing: -.02em; }
.service-section-desc { font-size: 17px; color: var(--muted); }

.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 12px; }

.svc-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 22px;
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    transition: all .3s cubic-bezier(.23,1,.32,1);
}
.svc-card::after {
    content: '';
    position: absolute; inset: 0; border-radius: 16px; opacity: 0;
    background: radial-gradient(ellipse at 60% 0%, var(--accent-glow, rgba(124,58,237,.12)), transparent 70%);
    transition: opacity .3s;
}
.svc-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.16); }
.svc-card:hover::after { opacity: 1; }
.svc-card-icon {
    width: 38px; height: 38px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 12px;
}
.svc-card-icon svg, .svc-card-icon i[data-lucide] { width: 18px; height: 18px; }
.svc-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 4px; }
.svc-card p { font-size: 17px; color: var(--muted); line-height: 1.6; }
.svc-card-arrow {
    position: absolute; top: 18px; right: 18px;
    width: 26px; height: 26px; border-radius: 50%;
    background: rgba(255,255,255,.06);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity .3s;
}
.svc-card-arrow svg, .svc-card-arrow i[data-lucide] { width: 12px; height: 12px; }
.svc-card:hover .svc-card-arrow { opacity: 1; }

/* ══════════════════════════════════════════════════════════════
   STATS — ACCENT CARDS
══════════════════════════════════════════════════════════════ */
.stat-blocks {
    display: grid; grid-template-columns: repeat(4,1fr); gap: 16px;
}
.stat-block {
    position: relative; overflow: hidden;
    padding: 36px 28px 28px;
    background: rgba(0,0,0,.32);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 22px;
    display: flex; flex-direction: column;
    opacity: 0; transform: translateY(32px);
    transition: opacity .6s ease, transform .6s cubic-bezier(.23,1,.32,1),
                border-color .3s, box-shadow .3s;
    transition-delay: var(--di, 0ms);
}
.stat-block.active {
    opacity: 1; transform: translateY(0);
}
.stat-block:hover {
    border-color: var(--sc);
    box-shadow: 0 0 48px color-mix(in srgb, var(--sc) 12%, transparent),
                0 20px 60px rgba(0,0,0,.45);
    transform: translateY(-6px);
}
/* Gradient top border */
.stat-block-accent {
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--sc), transparent);
}
/* Icon */
.stat-block-icon {
    width: 42px; height: 42px; border-radius: 12px; margin-bottom: 22px;
    display: flex; align-items: center; justify-content: center;
    background: color-mix(in srgb, var(--sc) 12%, transparent);
    border: 1px solid color-mix(in srgb, var(--sc) 28%, transparent);
    color: var(--sc);
}
.stat-block-icon i[data-lucide], .stat-block-icon svg { width: 18px; height: 18px; }
/* Number */
.stat-block-val {
    font-family: var(--font-head); font-size: 52px; font-weight: 800;
    line-height: 1; letter-spacing: -.04em;
    color: var(--sc);
    text-shadow: 0 0 48px color-mix(in srgb, var(--sc) 40%, transparent);
    margin-bottom: 8px;
}
/* Labels */
.stat-block-lbl { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.stat-block-sub { font-size: 12.5px; color: var(--muted); line-height: 1.5; flex: 1; }
/* Progress bar */
.stat-block-bar {
    height: 3px; background: rgba(255,255,255,.07);
    border-radius: 3px; overflow: hidden; margin-top: 20px;
}
.stat-block-fill {
    height: 100%; width: 0; border-radius: 3px;
    background: linear-gradient(90deg, var(--sc), color-mix(in srgb, var(--sc) 40%, transparent));
    transition: width 1.4s cubic-bezier(.4,0,.2,1) .3s;
}
.stat-block.active .stat-block-fill { width: var(--pct); }
/* Watermark */
.stat-block-wm {
    position: absolute; bottom: -12px; right: 12px;
    font-family: var(--font-head); font-size: 90px; font-weight: 800;
    color: var(--sc); opacity: .04; line-height: 1;
    pointer-events: none; user-select: none;
}
@media (max-width: 768px) { .stat-blocks { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .stat-blocks { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════════════════
   PORTFOLIO
══════════════════════════════════════════════════════════════ */
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 16px; }
.port-card {
    border-radius: 18px; overflow: hidden;
    display: block; text-decoration: none; color: inherit;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all .35s cubic-bezier(.23,1,.32,1);
}
.port-card:hover { transform: translateY(-6px); border-color: rgba(255,255,255,.16); box-shadow: 0 40px 80px rgba(0,0,0,.4); }
.port-img { aspect-ratio: 16/9; overflow: hidden; background: rgba(255,255,255,.03); position: relative; }
.port-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.23,1,.32,1); }
.port-card:hover .port-img img { transform: scale(1.06); }
.port-img-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, rgba(124,58,237,.15), rgba(14,165,233,.08)); }
.port-img-ph svg, .port-img-ph i[data-lucide] { width: 40px; height: 40px; color: rgba(255,255,255,.12); }
.port-badge { position: absolute; top: 12px; left: 12px; font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 20px; background: rgba(3,4,10,.75); border: 1px solid rgba(255,255,255,.08); color: var(--muted); letter-spacing: .05em; text-transform: uppercase; backdrop-filter: blur(8px); }
.port-body { padding: 22px; }
.port-body h3 { font-size: 20px; font-weight: 700; margin-bottom: 7px; letter-spacing: -.02em; }
.port-body p { font-size: 17px; color: var(--muted); margin-bottom: 14px; line-height: 1.65; }
.port-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.port-tag { font-size: 10px; font-weight: 600; padding: 3px 9px; border-radius: 20px; }

/* ══════════════════════════════════════════════════════════════
   TESTIMONIALS — DRAGGABLE CAROUSEL
══════════════════════════════════════════════════════════════ */

/* Arrow nav */
.testi-arrows { display: flex; gap: 8px; align-items: center; }
.testi-arrow {
    width: 42px; height: 42px; border-radius: 50%;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    color: var(--text); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all .25s; flex-shrink: 0;
}
.testi-arrow:hover:not(:disabled) {
    background: rgba(245,158,11,.12);
    border-color: rgba(245,158,11,.35);
    color: var(--c4);
    box-shadow: 0 0 20px rgba(245,158,11,.15);
}
.testi-arrow:disabled { opacity: .28; cursor: not-allowed; }
.testi-arrow i[data-lucide], .testi-arrow svg { width: 18px; height: 18px; }

/* Scroll container */
.testi-carousel {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    cursor: grab;
    user-select: none;
}
.testi-carousel::-webkit-scrollbar { display: none; }
.testi-carousel.is-dragging { cursor: grabbing; }

/* Track — equal height via align-items: stretch */
.testi-track {
    display: flex;
    gap: 20px;
    width: max-content;
    align-items: stretch;
}

/* Cards */
.testi2-card {
    flex: 0 0 400px; width: 400px;
    display: flex; flex-direction: column;
    position: relative; overflow: hidden;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 20px; padding: 28px 28px 24px;
    backdrop-filter: blur(20px);
    transition: border-color .3s, box-shadow .3s;
}
.testi2-card:hover {
    border-color: rgba(255,255,255,.14);
    box-shadow: 0 24px 60px rgba(0,0,0,.4);
}
/* Top accent line */
.testi2-card::before {
    content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245,158,11,.4), transparent);
    opacity: 0; transition: opacity .3s;
}
.testi2-card:hover::before { opacity: 1; }

/* Large quote mark */
.testi2-qmark {
    font-family: Georgia, serif; font-size: 72px; line-height: .75;
    color: rgba(245,158,11,.14); margin-bottom: 8px; display: block;
}
.testi2-stars { font-size: 13px; color: var(--c4); letter-spacing: 2px; margin-bottom: 14px; }

/* Text grows to fill card — pushes author to bottom */
.testi2-text {
    font-size: 17px; line-height: 1.8; color: var(--muted);
    margin-bottom: 22px; flex: 1;
}

.testi2-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testi2-ava {
    width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0; overflow: hidden;
    background: linear-gradient(135deg, var(--c1), var(--c2));
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 16px; border: 2px solid rgba(255,255,255,.1);
}
.testi2-ava img { width: 100%; height: 100%; object-fit: cover; }
.testi2-name { font-size: 14px; font-weight: 700; }
.testi2-role { font-size: 11px; color: var(--muted); margin-top: 2px; }

@media (max-width: 768px) {
    .testi2-card { flex: 0 0 300px; width: 300px; }
}
@media (max-width: 480px) {
    .testi2-card { flex: 0 0 260px; width: 260px; }
}

/* ══════════════════════════════════════════════════════════════
   BLOG — EDITORIAL MAGAZINE LAYOUT
══════════════════════════════════════════════════════════════ */

/* Old grid kept for /blog listing page */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 14px; }
.blog-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 18px; overflow: hidden;
    display: block; text-decoration: none; color: inherit;
    transition: all .3s;
}
.blog-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.14); }
.blog-img { aspect-ratio: 16/9; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-img-ph { height: 100%; background: linear-gradient(135deg, rgba(124,58,237,.15), rgba(14,165,233,.08)); display: flex; align-items: center; justify-content: center; }
.blog-body { padding: 20px; }
.blog-cat { font-size: 10px; font-weight: 700; color: var(--c2); text-transform: uppercase; letter-spacing: .08em; display: block; margin-bottom: 8px; }
.blog-title { font-size: 20px; font-weight: 700; letter-spacing: -.02em; margin-bottom: 8px; line-height: 1.35; }
.blog-excerpt { font-size: 17px; color: var(--muted); line-height: 1.65; margin-bottom: 14px; }
.blog-meta { font-size: 11px; color: var(--muted); display: flex; gap: 10px; }

/* Homepage editorial split */
.blog2-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 0;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
    overflow: hidden;
    min-height: 560px;
}

/* ── Featured post (left column) ── */
.blog2-feat {
    position: relative;
    display: block; text-decoration: none; color: inherit;
    overflow: hidden;
    background: #040208;
    min-height: 540px;
}
.blog2-feat-img { position: absolute; inset: 0; }
.blog2-feat-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .8s cubic-bezier(.23,1,.32,1);
}
.blog2-feat:hover .blog2-feat-img img { transform: scale(1.07); }

/* Rich placeholder when no image */
.blog2-feat-ph {
    width: 100%; height: 100%;
    background:
        radial-gradient(ellipse at 20% 70%, rgba(124,58,237,.55) 0%, transparent 52%),
        radial-gradient(ellipse at 80% 20%, rgba(0,229,255,.28) 0%, transparent 48%),
        radial-gradient(ellipse at 65% 85%, rgba(0,255,136,.15) 0%, transparent 38%),
        #04020c;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
}
/* Grid lines */
.blog2-feat-ph::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
    background-size: 46px 46px;
}
/* Ghost watermark text */
.blog2-feat-ph::after {
    content: '01';
    position: absolute; bottom: -10px; right: -8px;
    font-family: var(--font-head); font-size: 200px; font-weight: 800;
    color: rgba(124,58,237,.07); line-height: 1;
    letter-spacing: -.06em; user-select: none; pointer-events: none;
}
.blog2-feat-ph i[data-lucide], .blog2-feat-ph svg {
    width: 72px; height: 72px;
    color: rgba(124,58,237,.7);
    filter: drop-shadow(0 0 28px rgba(124,58,237,.55)) drop-shadow(0 0 56px rgba(124,58,237,.25));
    position: relative; z-index: 2;
}

/* Dark gradient overlay from bottom */
.blog2-feat::before {
    content: ''; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(
        to top,
        rgba(3,4,10,1) 0%,
        rgba(3,4,10,.75) 38%,
        rgba(3,4,10,.15) 68%,
        transparent 100%
    );
    transition: background .35s;
}
.blog2-feat:hover::before {
    background: linear-gradient(
        to top,
        rgba(3,4,10,1) 0%,
        rgba(3,4,10,.88) 48%,
        rgba(3,4,10,.2) 72%,
        transparent 100%
    );
}
/* Top scan-line accent */
.blog2-feat::after {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; z-index: 3;
    background: linear-gradient(90deg, transparent, rgba(124,58,237,.85), rgba(0,229,255,.85), transparent);
    opacity: 0; transition: opacity .35s;
}
.blog2-feat:hover::after { opacity: 1; }

.blog2-feat-num {
    position: absolute; top: 22px; right: 22px; z-index: 4;
    font-family: var(--font-mono); font-size: 10px; font-weight: 700;
    letter-spacing: .22em; color: rgba(255,255,255,.45);
    background: rgba(0,0,0,.55); border: 1px solid rgba(255,255,255,.12);
    padding: 5px 12px; border-radius: 20px;
    backdrop-filter: blur(8px);
}
.blog2-feat-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 40px 32px 30px; z-index: 2;
}
/* Category badge */
.blog2-cat {
    display: inline-block;
    font-family: var(--font-mono); font-size: 9px; font-weight: 700;
    letter-spacing: .15em; text-transform: uppercase;
    color: #00e5ff;
    background: rgba(0,229,255,.1);
    border: 1px solid rgba(0,229,255,.25);
    padding: 4px 12px; border-radius: 20px;
    margin-bottom: 14px;
}
.blog2-feat-title {
    font-family: var(--font-head);
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    font-weight: 700; letter-spacing: -.03em;
    color: #fff; margin-bottom: 12px; line-height: 1.18;
}
.blog2-feat-excerpt {
    font-size: 17px; color: rgba(255,255,255,.52);
    line-height: 1.75; margin-bottom: 18px;
}
.blog2-feat-meta {
    display: flex; align-items: center; gap: 8px;
    font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,.32);
}
.blog2-sep { opacity: .35; }

/* ── Side list (right column) ── */
.blog2-list {
    display: flex; flex-direction: column;
    background: rgba(2,2,10,.6);
    border-left: 1px solid rgba(255,255,255,.07);
}
.blog2-item {
    flex: 1;
    display: flex; align-items: center; gap: 0;
    text-decoration: none; color: inherit;
    border-bottom: 1px solid rgba(255,255,255,.06);
    position: relative; overflow: hidden;
    transition: background .28s;
}
.blog2-item:last-child { border-bottom: none; }
.blog2-item:hover { background: rgba(124,58,237,.06); }

/* Left accent bar */
.blog2-item::before {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
    background: linear-gradient(to bottom, var(--c1), var(--c2));
    transform: scaleY(0); transform-origin: bottom;
    transition: transform .32s cubic-bezier(.23,1,.32,1);
}
.blog2-item:hover::before { transform: scaleY(1); }

/* Large editorial number as left stripe */
.blog2-item-num {
    font-family: var(--font-head); font-size: 48px; font-weight: 800;
    letter-spacing: -.05em; line-height: 1;
    color: rgba(255,255,255,.05);
    flex-shrink: 0; width: 86px;
    display: flex; align-items: center; justify-content: center;
    align-self: stretch;
    border-right: 1px solid rgba(255,255,255,.05);
    transition: color .25s, background .25s;
}
.blog2-item:hover .blog2-item-num {
    color: rgba(124,58,237,.3);
    background: rgba(124,58,237,.04);
}

.blog2-item-body { flex: 1; min-width: 0; padding: 24px 22px; }
.blog2-item .blog2-cat { margin-bottom: 10px; }
.blog2-item-title {
    font-family: var(--font-head);
    font-size: 18px; font-weight: 700; letter-spacing: -.02em;
    color: rgba(255,255,255,.82); line-height: 1.38; margin-bottom: 14px;
    transition: color .25s;
}
.blog2-item:hover .blog2-item-title { color: #fff; }
.blog2-item-meta {
    display: flex; align-items: center; justify-content: space-between;
    font-family: var(--font-mono); font-size: 10.5px; color: rgba(255,255,255,.28);
}
.blog2-item-arrow {
    width: 15px; height: 15px; color: rgba(255,255,255,.18);
    flex-shrink: 0;
    transition: transform .25s cubic-bezier(.23,1,.32,1), color .25s;
}
.blog2-item:hover .blog2-item-arrow {
    transform: translate(4px,-4px);
    color: var(--c1);
}

@media (max-width: 900px) {
    .blog2-grid { grid-template-columns: 1fr; }
    .blog2-feat { min-height: 400px; }
    .blog2-item-num { width: 64px; font-size: 36px; }
}

/* ══════════════════════════════════════════════════════════════
   PROCESS — CONNECTED NODES TIMELINE
══════════════════════════════════════════════════════════════ */
.proc-wrap {
    position: relative;
}

/* Horizontal rail — hidden (flex/scroll layout) */
.proc-line { display: none; }
.proc-line-fill { display: none; }

/* Scrollable wrapper */
.proc-scroll {
    overflow-x: auto;
    overflow-y: clip;
    padding-top: 60px;
    margin-top: -60px;
    padding-bottom: 20px;
    scrollbar-width: none;
    cursor: grab;
    user-select: none;
}
.proc-scroll::-webkit-scrollbar { display: none; }
.proc-scroll.is-dragging { cursor: grabbing; }

/* Steps row */
.proc-steps {
    display: flex; gap: 24px;
    width: max-content;
    position: relative; z-index: 1;
}

/* Single step */
.proc-step {
    display: flex; flex-direction: column; align-items: center;
    flex: 0 0 340px; width: 340px;
    opacity: 0; transform: translateY(28px);
    transition: opacity .55s ease, transform .55s cubic-bezier(.23,1,.32,1);
    transition-delay: calc(var(--pi) * 140ms + 400ms);
}
.proc-wrap.active .proc-step { opacity: 1; transform: translateY(0); }

/* Numbered node circle */
.proc-node {
    width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
    border: 2px solid var(--pc);
    background: #050810;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head); font-size: 13px; font-weight: 700;
    color: var(--pc);
    box-shadow: 0 0 0 6px rgba(0,0,0,.5), 0 0 24px color-mix(in srgb,var(--pc) 45%,transparent);
    transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s;
    position: relative; z-index: 2;
}
.proc-step:hover .proc-node {
    transform: scale(1.18);
    box-shadow: 0 0 0 8px rgba(0,0,0,.5), 0 0 40px color-mix(in srgb,var(--pc) 60%,transparent);
}

/* Vertical connector: node → card */
.proc-vert {
    width: 1px; height: 36px;
    background: linear-gradient(to bottom, var(--pc), transparent);
    flex-shrink: 0;
}

/* Content card */
.proc-card {
    background: rgba(0,0,0,.3);
    border: 1px solid rgba(255,255,255,.07);
    border-top: 2px solid var(--pc);
    border-radius: 16px;
    padding: 18px 16px 20px;
    text-align: center; width: 100%;
    flex: 1;
    transition: border-color .25s, background .25s, box-shadow .25s;
}
.proc-step:hover .proc-card {
    background: rgba(0,0,0,.5);
    border-color: var(--pc);
    box-shadow: 0 8px 32px rgba(0,0,0,.4), 0 0 20px color-mix(in srgb,var(--pc) 10%,transparent);
}
.proc-lbl {
    font-family: var(--font-head); font-size: 9px; font-weight: 700;
    letter-spacing: .18em; color: var(--pc); margin-bottom: 10px;
}
.proc-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.proc-card p  { font-size: 17px; color: var(--muted); line-height: 1.65; }

/* Arrow nav buttons */
.proc-arrows { display: flex; gap: 8px; align-items: center; }
.proc-arrow {
    width: 42px; height: 42px; border-radius: 50%;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    color: var(--text); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all .25s; flex-shrink: 0;
}
.proc-arrow:hover:not(:disabled) {
    background: rgba(124,58,237,.15);
    border-color: rgba(124,58,237,.4);
    color: var(--c1);
    box-shadow: 0 0 20px rgba(124,58,237,.2);
}
.proc-arrow:disabled { opacity: .28; cursor: not-allowed; }
.proc-arrow i[data-lucide], .proc-arrow svg { width: 18px; height: 18px; }

@media (max-width:900px) {
    .proc-step { flex: 0 0 280px; width: 280px; }
}
@media (max-width:480px) {
    .proc-step { flex: 0 0 220px; width: 220px; }
    .proc-card h3 { font-size: 18px; }
    .proc-card p  { font-size: 17px; }
}

/* ══════════════════════════════════════════════════════════════
   FAQ — TERMINAL STYLE
══════════════════════════════════════════════════════════════ */
.faq2-terminal {
    max-width: 760px; margin: 0 auto;
    background: rgba(0,0,0,.55);
    border: 1px solid rgba(0,229,255,.12);
    border-radius: 16px; overflow: hidden;
}
/* macOS-style title bar */
.faq2-terminal::before {
    content: '● ● ●';
    display: block; padding: 13px 20px;
    background: rgba(255,255,255,.04);
    border-bottom: 1px solid rgba(0,229,255,.08);
    font-size: 10px; color: rgba(255,255,255,.2);
    letter-spacing: 5px;
}
.faq2-item { border-bottom: 1px solid rgba(255,255,255,.05); }
.faq2-item:last-child { border-bottom: none; }
.faq2-item.open { background: rgba(0,229,255,.03); }

.faq2-q {
    display: flex; align-items: center; gap: 12px;
    padding: 16px 22px; cursor: pointer;
    font-family: var(--font-mono); font-size: 15px; font-weight: 600;
    color: rgba(255,255,255,.8); transition: background .2s, color .2s;
}
.faq2-q:hover { background: rgba(0,229,255,.04); color: #fff; }
.faq2-item.open .faq2-q { color: #00e5ff; }

.faq2-prompt {
    font-size: 20px; font-weight: 400; line-height: 1;
    color: #00e5ff; flex-shrink: 0; transition: transform .3s;
}
.faq2-item.open .faq2-prompt { transform: rotate(90deg); }

.faq2-qtext { flex: 1; }

.faq2-ico {
    width: 22px; height: 22px; border-radius: 50%;
    background: rgba(0,229,255,.08); border: 1px solid rgba(0,229,255,.2);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    transition: all .25s;
}
.faq2-ico svg, .faq2-ico i[data-lucide] { width: 11px; height: 11px; transition: transform .3s; }
.faq2-item.open .faq2-ico { background: rgba(0,229,255,.15); border-color: rgba(0,229,255,.4); }
.faq2-item.open .faq2-ico svg,
.faq2-item.open .faq2-ico i[data-lucide] { transform: rotate(45deg); color: #00e5ff; }

.faq2-a {
    display: none;
    padding: 0 22px 18px 54px;
    font-family: var(--font-mono); font-size: 14px;
    color: rgba(255,255,255,.5); line-height: 1.85;
}
.faq2-a::before { content: '// '; color: rgba(0,229,255,.45); }
.faq2-item.open .faq2-a { display: block; }

/* Keep old .faq-wrap intact for other pages */
.faq-wrap { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }

/* ══════════════════════════════════════════════════════════════
   CTA
══════════════════════════════════════════════════════════════ */
/* Animated glow border cycling violet → cyan → pink */
@keyframes cta-glow {
    0%,100% { box-shadow: 0 0 0 1px rgba(124,58,237,.55), 0 0 60px rgba(124,58,237,.12), 0 40px 100px rgba(0,0,0,.6); }
    40%      { box-shadow: 0 0 0 1px rgba(14,165,233,.55),  0 0 60px rgba(14,165,233,.12),  0 40px 100px rgba(0,0,0,.6); }
    70%      { box-shadow: 0 0 0 1px rgba(236,72,153,.55),  0 0 60px rgba(236,72,153,.12),  0 40px 100px rgba(0,0,0,.6); }
}

.cta-block {
    position: relative; text-align: center; overflow: hidden;
    background: rgba(5,8,16,.96);
    border-radius: 28px;
    padding: 88px 40px;
    margin: 80px max(5%, calc(50% - 660px)) 0;
    margin-bottom: 100px;
    animation: cta-glow 5s ease-in-out infinite;
}
.cta-block::before {
    content: ''; pointer-events: none;
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 70% 55% at 50% -5%, rgba(124,58,237,.2), transparent 60%),
        radial-gradient(ellipse 45% 35% at 5% 105%, rgba(14,165,233,.12), transparent 55%),
        radial-gradient(ellipse 45% 35% at 95% 105%, rgba(236,72,153,.1), transparent 55%);
}
/* Subtle dot grid pattern */
.cta-block::after {
    content: ''; pointer-events: none;
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 28px 28px;
}
.cta-block h2 { font-size: clamp(2rem, 4vw, 3.4rem); letter-spacing: -.03em; margin-bottom: 16px; position: relative; z-index: 1; }
.cta-block p { font-size: 17px; color: var(--muted); max-width: 440px; margin: 0 auto 40px; position: relative; z-index: 1; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ══════════════════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: start; }
.contact-form-wrap {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 22px; padding: 36px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-label { font-size: 12px; font-weight: 600; color: var(--muted); }
.form-control {
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
    border-radius: 10px; padding: 11px 14px; color: var(--text);
    font-family: var(--font-body); font-size: 14px; width: 100%;
    transition: border-color .2s, background .2s; outline: none;
}
.form-control:focus { border-color: rgba(124,58,237,.5); background: rgba(124,58,237,.05); }
.form-control::placeholder { color: var(--muted); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-success { background: rgba(16,185,129,.08); border: 1px solid rgba(16,185,129,.2); color: #10b981; padding: 14px 18px; border-radius: 10px; font-size: 14px; margin-bottom: 20px; }
.contact-detail-list { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.contact-detail { display: flex; align-items: center; gap: 14px; }
.contact-d-icon { width: 42px; height: 42px; border-radius: 12px; background: rgba(124,58,237,.1); border: 1px solid rgba(124,58,237,.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-d-icon svg, .contact-d-icon i[data-lucide] { width: 18px; height: 18px; color: var(--c1); }

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
footer {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 60px max(5%, calc(50% - 660px)) 32px;
    background: rgba(255,255,255,.01);
}
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3,1fr); gap: 48px; margin-bottom: 48px; }
.footer-brand .nav-logo-mark { width: 36px; height: 36px; font-size: 18px; }
.footer-about { font-size: 13px; color: var(--muted); margin-top: 14px; line-height: 1.75; max-width: 280px; }
.footer-socials { display: flex; gap: 8px; margin-top: 20px; }
.footer-social-btn {
    width: 36px; height: 36px; border-radius: 9px;
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
    display: flex; align-items: center; justify-content: center;
    color: var(--muted); transition: all .2s; text-decoration: none;
}
.footer-social-btn:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.18); color: var(--text); }
.footer-social-btn svg, .footer-social-btn i[data-lucide] { width: 15px; height: 15px; }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13px; color: var(--muted); text-decoration: none; transition: color .2s; }
.footer-col ul li a:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding-top: 24px; display: flex; align-items: center; justify-content: center; font-size: 12px; color: var(--muted); }
.footer-bottom a { color: var(--muted); text-decoration: none; }
.footer-bottom a:hover { color: var(--text); }

/* ══════════════════════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════════════════════ */
/* ── Hero Animations ── */
@keyframes cyber-gradient { 0%,100% { background-position:0% 50%; } 50% { background-position:100% 50%; } }
@keyframes badge-shine { 0% { left:-100%; } 100% { left:200%; } }
@keyframes neon-pulse { 0%,100% { opacity:1; box-shadow:0 0 8px var(--neon); } 50% { opacity:.35; box-shadow:0 0 18px var(--neon); } }
@keyframes term-blink { 0%,100% { opacity:1; } 50% { opacity:0; } }
@keyframes cmd-float  { 0%,100% { transform:translate(-50%,-52%) rotateX(14deg) rotateY(-18deg) rotateZ(-.5deg) translateY(0); } 50% { transform:translate(-50%,-52%) rotateX(12deg) rotateY(-15deg) rotateZ(-.3deg) translateY(-14px); } }
@keyframes radar-sweep { to { transform:rotate(360deg); } }
@keyframes threat-blink { 0%,100% { opacity:1; } 60% { opacity:.1; } }
@keyframes orbit-spin { to { transform:translate(-50%,-50%) rotate(360deg); } }
@keyframes orbit-dot-pulse { 0%,100% { transform:translate(-50%,-50%) translateY(-265px) scale(1); } 50% { transform:translate(-50%,-50%) translateY(-265px) scale(1.8); } }
@keyframes fp-float-a { 0%,100% { transform:rotateX(8deg) rotateY(-22deg) translateY(0); } 50% { transform:rotateX(6deg) rotateY(-19deg) translateY(-12px); } }
@keyframes fp-float-b { 0%,100% { transform:rotateX(-8deg) rotateY(20deg) translateY(0); } 50% { transform:rotateX(-6deg) rotateY(17deg) translateY(-10px); } }
@keyframes fp-float-c { 0%,100% { transform:rotateX(4deg) rotateY(18deg) translateY(0); } 50% { transform:rotateX(3deg) rotateY(15deg) translateY(-8px); } }
@keyframes bar-grow { from { width:0; } }
@keyframes slow-spin { to { transform: translate(-50%,-50%) rotate(360deg); } }
@keyframes marquee   { to { transform: translateX(-50%); } }
@keyframes pulse-dot { 0%,100% { opacity:1; } 50% { opacity:.4; } }
@keyframes grow-bar  { from { height: 4px; } }
@keyframes fade-up   { from { opacity:0; transform: translateY(28px); } to { opacity:1; transform: translateY(0); } }
@keyframes counter-in { from { opacity:0; } to { opacity:1; } }
@keyframes neural-pulse { 0%,100% { stroke-dashoffset:300; opacity:.6; } 50% { stroke-dashoffset:0; opacity:1; } }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════════════════════
   OTHER PAGES (services / portfolio / blog etc.)
══════════════════════════════════════════════════════════════ */
.page-hero {
    padding: 130px max(5%, calc(50% - 660px)) 70px;
    position: relative;
}
.page-hero::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);
}

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

/* ── Tablet landscape (≤1100px) ─────────────────────────── */
@media (max-width: 1100px) {
    .hero { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }

    .bento-grid { grid-template-columns: repeat(3,1fr); }
    .bento-1 { grid-column: span 3; }
    .bento-2,.bento-3 { grid-column: span 3; }
}

/* ── Tablet portrait (≤900px) ───────────────────────────── */
@media (max-width: 900px) {
    .hero { padding: 100px 5% 70px; }
    .hero-features { grid-template-columns: 1fr 1fr; gap: 8px; }
}

/* ── Phablet (≤768px) ──────────────────────────────────── */
@media (max-width: 768px) {
    section { padding: 60px 5%; }

    /* Navbar */
    .navbar { left: 12px; right: 12px; padding: 0 18px; }
    .nav-links { display: none; }
    .nav-cta  { display: none; }
    .nav-mobile { display: flex; align-items: center; justify-content: center; }

    /* Hero */
    .hero { padding: 88px 5% 56px; min-height: auto; gap: 36px; }
    .hero-features { grid-template-columns: 1fr 1fr; gap: 8px; }
    .hf-item strong { font-size: 13px; }
    .hero-actions { gap: 10px; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .hero-stat { padding: 12px 8px; }
    .hero-stat-num { font-size: 19px; }

    /* Layout */
    .stats-glass { grid-template-columns: repeat(2,1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }

    /* Bento */
    .bento-grid { grid-template-columns: 1fr 1fr; }
    .bento-1,.bento-2,.bento-3,.bento-4,.bento-5,.bento-6,.bento-wide,.bento-third { grid-column: span 2; }

    /* CTA */
    .cta-block { margin: 0 5% 60px; padding: 50px 24px; }
    .cta-block h2 { font-size: clamp(1.8rem, 6vw, 2.6rem); }
    .cta-actions { flex-direction: column; align-items: center; }
    .cta-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
}

/* ── Mobile (≤640px) ───────────────────────────────────── */
@media (max-width: 640px) {
    section { padding: 52px 5%; }

    .hero { padding: 84px 5% 48px; }
    .hero-features { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { justify-content: center; }

    /* Services bento */
    .svc-bento { grid-template-columns: 1fr; }
    .sb-ai,.sb-sec,.sb-mob,.sb-web,.sb-sft { grid-column: span 1; }
    .sb-inner { padding: 22px; }
    .sb-ai h3 { font-size: 20px; }
    .sb-card h3 { font-size: 17px; }
}

/* ── Small phone (≤480px) ──────────────────────────────── */
@media (max-width: 480px) {
    section { padding: 48px 4%; }

    .hero { padding: 80px 4% 44px; }
    .hero-stats { grid-template-columns: 1fr 1fr; gap: 6px; }
    .hero-stat-num { font-size: 17px; }
    .ht-pre { font-size: clamp(1rem, 4.5vw, 1.4rem); }

    .footer-grid { grid-template-columns: 1fr; }
    .bento-grid { grid-template-columns: 1fr; }
    .bento-1,.bento-2,.bento-3,.bento-4,.bento-5,.bento-6,.bento-wide,.bento-third { grid-column: span 1; }
    .cta-block { padding: 40px 18px; }
}
