/* ══════════════════════════════════════════
   SPARKY TECH SOLUTION — style.css
   Futuristic AI Dark Theme
══════════════════════════════════════════ */

:root {
    --spark: #FF6B1A;
    --spark2: #FF9F45;
    --spark3: #FFD166;
    --neon: #00F5D4;
    --neon2: #00C9FF;
    --violet: #9B5DE5;
    --deep: #04080F;
    --deep2: #080D1A;
    --deep3: #0C1424;
    --panel: rgba(255, 255, 255, .035);
    --panel-b: rgba(255, 255, 255, .07);
    --border: rgba(255, 255, 255, .07);
    --border-h: rgba(255, 107, 26, .35);
    --text-h: #F2F6FF;
    --text-b: #8BA3C4;
    --text-m: #4A6080;
    --highlight: #FF9F45;
    --font-d: 'Exo 2', sans-serif;
    --font-b: 'Space Grotesk', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --nav-h: 70px;
    --radius: 20px;
    --radius-sm: 12px;
    --shadow: 0 24px 64px rgba(0, 0, 0, .5);
    --glow: 0 0 40px rgba(255, 107, 26, .25);
}

/* ── RESET ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--deep);
    color: var(--text-b);
    font-family: var(--font-b);
    line-height: 1.75;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--deep);
}

::-webkit-scrollbar-thumb {
    background: var(--spark);
    border-radius: 2px;
}

::selection {
    background: rgba(255, 107, 26, .35);
    color: var(--text-h);
}

/* ── 3D BG CANVAS ── */
#bgCanvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: .95;
}

/* ── PAGE LOADER ── */
#loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--deep);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .6s ease, visibility .6s ease;
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-inner {
    text-align: center;
}

.loader-logo {
    font-size: 4rem;
    animation: loaderPulse 1s ease-in-out infinite;
    margin-bottom: 1.5rem;
    display: block;
}

.loader-bar {
    width: 220px;
    height: 3px;
    background: var(--panel-b);
    border-radius: 3px;
    margin: 0 auto 1rem;
    overflow: hidden;
}

.loader-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--spark), var(--spark2), var(--neon));
    border-radius: 3px;
    transition: width .3s ease;
}

.loader-text {
    font-family: var(--font-mono);
    font-size: .75rem;
    color: var(--text-m);
    letter-spacing: .1em;
}

/* ── CUSTOM CURSOR ── */
#cursor-dot {
    position: fixed;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--spark);
    pointer-events: none;
    z-index: 9990;
    transform: translate(-50%, -50%);
    transition: width .2s, height .2s, background .2s;
    mix-blend-mode: screen;
}

#cursor-ring {
    position: fixed;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 107, 26, .5);
    pointer-events: none;
    z-index: 9989;
    transform: translate(-50%, -50%);
    transition: all .12s ease;
}

body:hover #cursor-dot,
body:hover #cursor-ring {
    opacity: 1;
}

/* ── FLOATING ACTIONS ── */
.float-actions {
    position: fixed;
    bottom: 2rem;
    right: 1.5rem;
    z-index: 800;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    align-items: flex-end;
}

.float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s, box-shadow .3s;
    box-shadow: var(--shadow);
}

.float-btn svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.float-btn.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
}

.float-btn.call {
    background: linear-gradient(135deg, var(--spark), var(--spark2));
    color: #fff;
}

.float-btn:hover {
    transform: translateY(-4px) scale(1.08);
}

.float-btn.whatsapp:hover {
    box-shadow: 0 12px 32px rgba(37, 211, 102, .4);
}

.float-btn.call:hover {
    box-shadow: 0 12px 32px rgba(255, 107, 26, .5);
}

/* ── AI ASSISTANT ── */
.ai-assistant {
    position: fixed;
    bottom: 2rem;
    left: 1.5rem;
    z-index: 800;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .75rem;
}

.ai-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--spark);
    background: var(--deep2);
    cursor: pointer;
    position: relative;
    overflow: visible;
    transition: transform .3s, box-shadow .3s;
    box-shadow: 0 0 20px rgba(255, 107, 26, .3);
}

.ai-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 0 36px rgba(255, 107, 26, .5);
}

.ai-toggle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.ai-pulse {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid var(--spark);
    opacity: .4;
    animation: aiPulse 2s ease infinite;
}

.ai-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--spark);
    color: #fff;
    font-size: .6rem;
    font-weight: 700;
    font-family: var(--font-mono);
    padding: .15rem .4rem;
    border-radius: 6px;
    letter-spacing: .05em;
}

.ai-bubble {
    width: 340px;
    background: var(--deep2);
    border: 1px solid var(--border-h);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transform: translateY(20px) scale(.95);
    opacity: 0;
    pointer-events: none;
    transition: all .35s cubic-bezier(.4, 0, .2, 1);
    max-height: 480px;
    display: flex;
    flex-direction: column;
}

.ai-bubble.open {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: all;
}

.ai-close {
    position: absolute;
    top: .8rem;
    right: .8rem;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--panel-b);
    border: 1px solid var(--border);
    color: var(--text-b);
    cursor: pointer;
    font-size: .85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background .2s, color .2s;
}

.ai-close:hover {
    background: rgba(255, 107, 26, .2);
    color: var(--text-h);
}

.ai-header {
    display: flex;
    align-items: center;
    gap: .8rem;
    padding: 1rem 1.2rem;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(90deg, rgba(255, 107, 26, .08), transparent);
}

.ai-avatar-wrap {
    position: relative;
    flex-shrink: 0;
}

.ai-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--spark);
}

.ai-status-dot {
    position: absolute;
    bottom: 1px;
    right: 1px;
    width: 10px;
    height: 10px;
    background: #00F5D4;
    border-radius: 50%;
    border: 2px solid var(--deep2);
    animation: statusBlink 2s ease infinite;
}

.ai-name {
    font-family: var(--font-d);
    font-weight: 700;
    color: var(--text-h);
    font-size: .95rem;
}

.ai-role {
    font-size: .73rem;
    color: var(--spark);
    font-family: var(--font-mono);
    letter-spacing: .05em;
}

.ai-chat {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    max-height: 240px;
}

.ai-chat::-webkit-scrollbar {
    width: 3px;
}

.ai-chat::-webkit-scrollbar-thumb {
    background: var(--spark);
}

.chat-msg {
    max-width: 85%;
    padding: .65rem 1rem;
    border-radius: 14px;
    font-size: .84rem;
    line-height: 1.6;
}

.chat-msg.aria {
    background: rgba(255, 107, 26, .12);
    border: 1px solid rgba(255, 107, 26, .2);
    color: var(--text-h);
    align-self: flex-start;
    border-top-left-radius: 4px;
}

.chat-msg.user {
    background: var(--panel-b);
    border: 1px solid var(--border);
    color: var(--text-b);
    align-self: flex-end;
    border-top-right-radius: 4px;
}

.chat-typing {
    display: flex;
    gap: 4px;
    padding: .5rem .8rem;
}

.chat-typing span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--spark);
    animation: typing .8s ease infinite;
}

.chat-typing span:nth-child(2) {
    animation-delay: .15s;
}

.chat-typing span:nth-child(3) {
    animation-delay: .3s;
}

.ai-input-wrap {
    display: flex;
    gap: .5rem;
    padding: .8rem;
    border-top: 1px solid var(--border);
}

.ai-input {
    flex: 1;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: .55rem 1rem;
    color: var(--text-h);
    font-family: var(--font-b);
    font-size: .84rem;
    outline: none;
    transition: border-color .2s;
}

.ai-input:focus {
    border-color: var(--spark);
}

.ai-input::placeholder {
    color: var(--text-m);
}

.ai-send {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--spark), var(--spark2));
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
    transition: transform .2s, box-shadow .2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-send:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(255, 107, 26, .4);
}

/* ── NAVBAR ── */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 700;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    background: rgba(4, 8, 15, .88);
    backdrop-filter: blur(24px) saturate(1.4);
    border-bottom: 1px solid var(--border);
    transition: border-color .3s, background .3s;
}

#navbar.scrolled {
    border-bottom-color: rgba(255, 107, 26, .2);
}

.logo {
    display: flex;
    align-items: center;
    gap: .6rem;
    flex-shrink: 0;
}

.logo-icon {
    /* width: 38px; */
    /* height: 38px; */
    border-radius: 10px;
    flex-shrink: 0;
    /* background: linear-gradient(135deg, var(--spark), var(--spark2)); */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 14px rgba(255, 107, 26, .4);
}

.logo-text {
    font-family: var(--font-d);
    font-weight: 800;
    font-size: 1rem;
    color: var(--text-h);
    letter-spacing: .02em;
}

.logo-spark {
    color: var(--spark);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.nav-link {
    font-size: .87rem;
    color: var(--text-b);
    font-weight: 500;
    letter-spacing: .02em;
    position: relative;
    transition: color .2s;
    padding: .2rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1.5px;
    background: var(--spark);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-h);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-cta {
    background: linear-gradient(135deg, var(--spark), var(--spark2));
    color: #fff;
    padding: .6rem 1.5rem;
    border-radius: 50px;
    font-size: .84rem;
    font-weight: 700;
    letter-spacing: .04em;
    transition: transform .2s, box-shadow .2s;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 26, .45);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    background: none;
    border: none;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-h);
    border-radius: 2px;
    display: block;
    transition: .3s;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    z-index: 699;
    display: none;
    backdrop-filter: blur(3px);
}

.mobile-overlay.open {
    display: block;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 82vw);
    height: 100dvh;
    background: rgba(4, 8, 15, .98);
    backdrop-filter: blur(24px);
    z-index: 700;
    padding: calc(var(--nav-h) + 2rem) 2rem 2rem;
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--border);
    transition: right .35s cubic-bezier(.4, 0, .2, 1);
    overflow-y: auto;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu a {
    color: var(--text-h);
    font-size: 1.2rem;
    font-family: var(--font-d);
    font-weight: 700;
    padding: .9rem 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color .2s;
}

.mobile-menu a:hover {
    color: var(--spark);
}

.mobile-menu a::after {
    content: '→';
    color: var(--spark);
    font-size: .9rem;
}

.mob-cta {
    margin-top: 2rem;
    background: linear-gradient(135deg, var(--spark), var(--spark2)) !important;
    color: #fff !important;
    border-radius: 50px;
    justify-content: center !important;
    padding: 1rem !important;
    border-bottom: none !important;
}

.mob-cta::after {
    display: none !important;
}

/* ── HERO ── */
#hero {
    min-height: 100dvh;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: calc(var(--nav-h) + 4rem) 5% 4rem;
    gap: 4rem;
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    flex: 1;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-family: var(--font-mono);
    font-size: .75rem;
    letter-spacing: .12em;
    color: var(--spark2);
    text-transform: uppercase;
    margin-bottom: 1.8rem;
    background: rgba(255, 107, 26, .08);
    border: 1px solid rgba(255, 107, 26, .2);
    padding: .4rem 1rem;
    border-radius: 50px;
}

.eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--neon);
    animation: statusBlink 2s ease infinite;
    flex-shrink: 0;
}

.hero-title {
    font-family: var(--font-d);
    font-weight: 900;
    font-size: clamp(2.4rem, 6vw, 5rem);
    line-height: 1.05;
    letter-spacing: -.02em;
    color: var(--text-h);
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(90deg, var(--spark), var(--spark2), var(--spark3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.gradient-text2 {
    background: linear-gradient(90deg, var(--neon2), var(--neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.gradient-text3 {
    background: linear-gradient(90deg, var(--violet), var(--spark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.highlight {
    color: var(--highlight);
}

.hero-sub {
    font-size: 1.08rem;
    color: var(--text-b);
    max-width: 560px;
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.9;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-n {
    font-family: var(--font-d);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--spark2);
    display: block;
    line-height: 1;
}

.stat-l {
    font-size: .72rem;
    color: var(--text-m);
    letter-spacing: .06em;
    text-transform: uppercase;
}

.stat-sep {
    width: 1px;
    height: 36px;
    background: var(--border);
    flex-shrink: 0;
}

.scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
    margin-top: 3rem;
    color: var(--text-m);
    font-family: var(--font-mono);
    font-size: .7rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--spark), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* HERO GIRL */
.hero-girl {
    position: relative;
    flex-shrink: 0;
    width: min(420px, 40vw);
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-girl-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 80%, rgba(255, 107, 26, .25), transparent);
    border-radius: 50%;
    filter: blur(30px);
}

.hero-girl-img {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: 32px;
    object-fit: cover;
    aspect-ratio: 3/4;
    max-height: 65vh;
    border: 1px solid rgba(255, 107, 26, .15);
    box-shadow: 0 40px 80px rgba(0, 0, 0, .5), 0 0 0 1px rgba(255, 107, 26, .08);
    filter: saturate(1.1);
}

.hero-girl-badge {
    position: absolute;
    z-index: 3;
    background: rgba(4, 8, 15, .85);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-h);
    border-radius: 50px;
    padding: .45rem 1rem;
    font-size: .78rem;
    font-weight: 600;
    color: var(--text-h);
    white-space: nowrap;
    animation: badgeFloat ease-in-out infinite;
}

.badge-1 {
    top: 10%;
    left: -5%;
    animation-duration: 3.5s;
    animation-delay: 0s;
}

.badge-2 {
    top: 35%;
    right: -8%;
    animation-duration: 4s;
    animation-delay: .7s;
}

.badge-3 {
    bottom: 12%;
    left: -5%;
    animation-duration: 3.8s;
    animation-delay: .4s;
}

/* ── TECH STRIP ── */
.tech-strip {
    position: relative;
    z-index: 1;
    background: var(--deep3);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 2.5rem 0;
}

.tech-label {
    text-align: center;
    font-family: var(--font-mono);
    font-size: .7rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--text-m);
    margin-bottom: 1.5rem;
}

.marquee-wrap {
    overflow: hidden;
    position: relative;
}

.marquee-wrap::before,
.marquee-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--deep3), transparent);
}

.marquee-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--deep3), transparent);
}

.marquee-track {
    display: flex;
    gap: 1rem;
    align-items: center;
    width: max-content;
    animation: marqueeRTL 30s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.tech-chip {
    display: flex;
    align-items: center;
    gap: .5rem;
    white-space: nowrap;
    padding: .45rem 1.1rem;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: .84rem;
    font-weight: 500;
    color: var(--text-m);
    cursor: pointer;
    transition: all .25s;
    user-select: none;
}

.tech-chip:hover {
    color: var(--text-h);
    background: rgba(255, 107, 26, .1);
    border-color: var(--border-h);
    transform: translateY(-2px);
}

/* ── SECTIONS SHARED ── */
section {
    position: relative;
    z-index: 1;
}

.section-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 6rem 5%;
}

.section-header {
    margin-bottom: 3.5rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-mono);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--spark);
    margin-bottom: .7rem;
}

.section-label::before {
    content: '';
    width: 20px;
    height: 1.5px;
    background: var(--spark);
    display: inline-block;
}

.section-title {
    font-family: var(--font-d);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--text-h);
    line-height: 1.15;
    margin-bottom: .8rem;
}

.section-sub {
    color: var(--text-b);
    font-size: 1rem;
    font-weight: 300;
    max-width: 520px;
}

/* ── SERVICES ── */
#services {
    background: var(--deep2);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 1.4rem;
}

.service-card {
    position: relative;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    overflow: hidden;
    cursor: pointer;
    transition: transform .35s, border-color .35s, box-shadow .35s;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-h);
    box-shadow: var(--glow), var(--shadow);
}

.service-card:focus-visible {
    outline: 2px solid var(--spark);
    outline-offset: 3px;
}

.sc-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 80% at 50% -20%, rgba(255, 107, 26, .1), transparent);
    opacity: 0;
    transition: opacity .35s;
}

.service-card:hover .sc-glow {
    opacity: 1;
}

.sc-icon {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    display: block;
}

.service-card h3 {
    font-family: var(--font-d);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-h);
    margin-bottom: .7rem;
    line-height: 1.3;
}

.service-card p {
    font-size: .87rem;
    color: var(--text-b);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.sc-tags {
    display: flex;
    gap: .4rem;
    flex-wrap: wrap;
}

.sc-tags span {
    padding: .18rem .7rem;
    border-radius: 50px;
    font-size: .7rem;
    font-weight: 600;
    background: rgba(0, 245, 212, .08);
    color: var(--neon);
    border: 1px solid rgba(0, 245, 212, .15);
}

.sc-arrow {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 107, 26, .12);
    border: 1px solid rgba(255, 107, 26, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--spark);
    font-size: .9rem;
    transition: all .3s;
}

.service-card:hover .sc-arrow {
    background: var(--spark);
    color: #fff;
    transform: rotate(45deg);
}

/* ── SERVICE MODAL ── */
.sd-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}

.sd-modal.open {
    opacity: 1;
    pointer-events: all;
}

.sd-modal-bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .75);
    backdrop-filter: blur(8px);
}

.sd-modal-box {
    position: relative;
    z-index: 1;
    background: var(--deep2);
    border: 1px solid var(--border-h);
    border-radius: 28px;
    padding: 3rem;
    max-width: 700px;
    width: 100%;
    max-height: 88vh;
    overflow-y: auto;
    box-shadow: 0 60px 120px rgba(0, 0, 0, .7), 0 0 0 1px rgba(255, 107, 26, .1);
    transform: scale(.92);
    transition: transform .3s;
}

.sd-modal.open .sd-modal-box {
    transform: scale(1);
}

.sd-modal-box::-webkit-scrollbar {
    width: 3px;
}

.sd-modal-box::-webkit-scrollbar-thumb {
    background: var(--spark);
}

.sd-close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--panel-b);
    border: 1px solid var(--border);
    color: var(--text-b);
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
}

.sd-close:hover {
    background: rgba(255, 107, 26, .2);
    color: var(--text-h);
}

.sd-modal-icon {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 1rem;
    display: block;
}

.sd-modal-title {
    font-family: var(--font-d);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-h);
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.sd-modal-desc {
    color: var(--text-b);
    line-height: 1.85;
    text-align: center;
    margin-bottom: 2rem;
    font-size: .95rem;
}

.sd-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.sd-feat {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.2rem;
    transition: border-color .2s;
}

.sd-feat:hover {
    border-color: rgba(255, 107, 26, .2);
}

.sd-feat span {
    font-size: 1.6rem;
    display: block;
    margin-bottom: .6rem;
}

.sd-feat h4 {
    font-family: var(--font-d);
    font-size: .9rem;
    font-weight: 700;
    color: var(--text-h);
    margin-bottom: .3rem;
}

.sd-feat p {
    font-size: .8rem;
    color: var(--text-b);
}

/* ── ABOUT ── */
#about {
    background: var(--deep);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text p {
    color: var(--text-b);
    margin-bottom: 1rem;
}

.about-points {
    display: flex;
    flex-direction: column;
    gap: .9rem;
    margin-top: 1.8rem;
}

.about-point {
    display: flex;
    gap: .9rem;
    align-items: flex-start;
    padding: .9rem;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: border-color .2s;
}

.about-point:hover {
    border-color: rgba(255, 107, 26, .2);
}

.about-point span {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.about-point h4 {
    font-family: var(--font-d);
    font-size: .92rem;
    font-weight: 700;
    color: var(--text-h);
    margin-bottom: .2rem;
}

.about-point p {
    font-size: .83rem;
    color: var(--text-b);
}

.about-visual {
    position: relative;
}

.about-img-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/5;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.1) brightness(.9);
}

.about-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(4, 8, 15, .7) 0%, transparent 50%);
}

.about-float-card {
    position: absolute;
    background: rgba(4, 8, 15, .9);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-h);
    border-radius: 16px;
    padding: .8rem 1.2rem;
    display: flex;
    align-items: center;
    gap: .8rem;
    z-index: 2;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .4);
    animation: badgeFloat ease-in-out infinite;
}

.about-float-card span {
    font-size: 1.6rem;
}

.about-float-card strong {
    display: block;
    color: var(--text-h);
    font-size: .92rem;
    font-family: var(--font-d);
}

.about-float-card p {
    font-size: .74rem;
    color: var(--text-m);
}

.card-a {
    top: 10%;
    left: -5%;
    animation-duration: 4s;
}

.card-b {
    bottom: 12%;
    right: -5%;
    animation-duration: 4.8s;
    animation-delay: .6s;
}

/* ── COMPANIES ── */
#companies {
    background: var(--deep2);
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.company-card {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform .35s, box-shadow .35s;
}

.company-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.company-card.oil {
    border-color: rgba(99, 153, 34, .2);
}

.company-card.auto {
    border-color: rgba(55, 138, 221, .2);
}

.company-card.home {
    border-color: rgba(255, 107, 26, .2);
}

.company-card.oil:hover {
    box-shadow: 0 32px 64px rgba(40, 120, 20, .18);
}

.company-card.auto:hover {
    box-shadow: 0 32px 64px rgba(30, 80, 180, .18);
}

.company-card.home:hover {
    box-shadow: 0 32px 64px rgba(255, 107, 26, .15);
}

.cc-img-wrap {
    height: 380px;
    overflow: hidden;
    position: relative;
}

.cc-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.company-card:hover .cc-img-wrap img {
    transform: scale(1.05);
}

.cc-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(4, 8, 15, .9));
}

.cc-body {
    padding: 1.8rem;
    background: var(--panel);
}

.cc-logo {
    font-size: 2.2rem;
    margin-bottom: .6rem;
    display: block;
}

.cc-tag {
    display: inline-block;
    padding: .22rem .8rem;
    border-radius: 50px;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .07em;
    margin-bottom: .7rem;
}

.oil .cc-tag {
    background: rgba(99, 153, 34, .15);
    color: #85C428;
    border: 1px solid rgba(99, 153, 34, .25);
}

.auto .cc-tag {
    background: rgba(55, 138, 221, .15);
    color: #5EB3FF;
    border: 1px solid rgba(55, 138, 221, .25);
}

.home .cc-tag {
    background: rgba(255, 107, 26, .12);
    color: var(--spark2);
    border: 1px solid rgba(255, 107, 26, .2);
}

.company-card h3 {
    font-family: var(--font-d);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-h);
    margin-bottom: .6rem;
}

.company-card>.cc-body>p {
    font-size: .88rem;
    color: var(--text-b);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.cc-features {
    margin-bottom: 1.4rem;
    display: flex;
    flex-direction: column;
    gap: .45rem;
}

.cc-features li {
    font-size: .84rem;
    color: var(--text-b);
    display: flex;
    align-items: center;
    gap: .5rem;
}

.cc-features li::before {
    content: '→';
    color: var(--spark);
    font-weight: 700;
    flex-shrink: 0;
}

.cc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 1.2rem;
    border-top: 1px solid var(--border);
}

.cc-link {
    font-size: .82rem;
    color: var(--text-m);
    transition: color .2s;
}

.cc-link:hover {
    color: var(--spark);
}

/* ── WHY ── */
#why {
    background: var(--deep);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.4rem;
}

.why-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: transform .3s, border-color .3s;
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 245, 212, .2);
}

.why-n {
    font-family: var(--font-d);
    font-size: 2.4rem;
    font-weight: 900;
    background: linear-gradient(90deg, var(--spark), var(--spark3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: .4rem;
}

.why-card h3 {
    font-family: var(--font-d);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-h);
    margin-bottom: .5rem;
}

.why-card p {
    font-size: .86rem;
    color: var(--text-b);
}

/* ── PROCESS ── */
#process {
    background: var(--deep2);
}

.process-track {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    position: relative;
    margin-top: 4rem;
}

.process-line {
    position: absolute;
    top: 2.5rem;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--spark), transparent);
    z-index: 0;
}

.process-step {
    text-align: center;
    padding: 0 .6rem 2rem;
    position: relative;
    z-index: 1;
}

.ps-num {
    font-family: var(--font-mono);
    font-size: .65rem;
    color: var(--spark);
    letter-spacing: .1em;
    margin-bottom: .4rem;
}

.ps-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--spark), var(--spark2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 1rem;
    box-shadow: 0 0 28px rgba(255, 107, 26, .4);
    transition: transform .3s, box-shadow .3s;
}

.process-step:hover .ps-icon {
    transform: scale(1.12);
    box-shadow: 0 0 48px rgba(255, 107, 26, .6);
}

.process-step h3 {
    font-family: var(--font-d);
    font-size: .95rem;
    font-weight: 700;
    color: var(--text-h);
    margin-bottom: .35rem;
}

.process-step p {
    font-size: .8rem;
    color: var(--text-b);
}

/* ── CTA BANNER ── */
.cta-banner {
    position: relative;
    z-index: 1;
    padding: 6rem 5%;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 107, 26, .1), rgba(155, 93, 229, .07));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(255, 107, 26, .12), transparent);
}

.cta-banner h2 {
    font-family: var(--font-d);
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--text-h);
    margin-bottom: 1rem;
    position: relative;
}

.cta-banner p {
    color: var(--text-b);
    margin-bottom: 2.5rem;
    position: relative;
    font-size: 1.05rem;
}

.cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* ── CAREERS ── */
#careers {
    background: var(--deep);
}

.careers-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.careers-layout p {
    color: var(--text-b);
    margin-bottom: .5rem;
}

.culture-perks {
    display: flex;
    flex-direction: column;
    gap: .8rem;
    margin-top: 1.5rem;
}

.perk {
    display: flex;
    gap: .9rem;
    align-items: flex-start;
    padding: .85rem;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.perk span {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.perk h4 {
    font-family: var(--font-d);
    font-size: .9rem;
    font-weight: 700;
    color: var(--text-h);
    margin-bottom: .15rem;
}

.perk p {
    font-size: .82rem;
    color: var(--text-b);
}

.jobs-list {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.job-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: border-color .3s, transform .3s;
}

.job-card:hover {
    border-color: var(--border-h);
    transform: translateX(4px);
}

.job-role {
    font-family: var(--font-d);
    font-size: .97rem;
    font-weight: 700;
    color: var(--text-h);
    margin-bottom: .25rem;
}

.job-dept {
    font-size: .77rem;
    color: var(--text-m);
    margin-bottom: .5rem;
}

.job-tags {
    display: flex;
    gap: .35rem;
    flex-wrap: wrap;
}

.job-tags span {
    padding: .15rem .6rem;
    border-radius: 50px;
    font-size: .68rem;
    font-weight: 600;
    background: rgba(255, 107, 26, .1);
    color: var(--spark2);
    border: 1px solid rgba(255, 107, 26, .2);
}

/* ── CONTACT ── */
#contact {
    background: linear-gradient(to bottom, var(--deep2), var(--deep));
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 5rem;
    align-items: start;
    margin-top: 3.5rem;
}

.contact-ai-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: linear-gradient(135deg, rgba(255, 107, 26, .1), rgba(155, 93, 229, .06));
    border: 1px solid rgba(255, 107, 26, .2);
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
}

.cai-img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--spark);
    flex-shrink: 0;
}

.cai-name {
    font-family: var(--font-d);
    font-weight: 700;
    color: var(--text-h);
    margin-bottom: .15rem;
}

.cai-sub {
    font-size: .8rem;
    color: var(--text-b);
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: .8rem;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .9rem 1rem;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.contact-item span {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    color: var(--text-h);
    font-size: .88rem;
    margin-bottom: .1rem;
}

.contact-item p {
    font-size: .83rem;
    color: var(--text-b);
}

.free-consult {
    padding: 1.3rem;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.fc-title {
    font-family: var(--font-d);
    font-weight: 700;
    color: var(--text-h);
    margin-bottom: .4rem;
}

.free-consult p {
    font-size: .85rem;
    color: var(--text-b);
}

.contact-form {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.fg {
    margin-bottom: 1.1rem;
}

.fg label {
    display: block;
    font-family: var(--font-mono);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    color: var(--text-m);
    margin-bottom: .4rem;
    text-transform: uppercase;
}

.fg input,
.fg textarea,
.fg select {
    width: 100%;
    padding: .78rem 1rem;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-h);
    font-family: var(--font-b);
    font-size: .88rem;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    appearance: none;
}

.fg input:focus,
.fg textarea:focus,
.fg select:focus {
    border-color: rgba(255, 107, 26, .5);
    box-shadow: 0 0 0 3px rgba(255, 107, 26, .1);
}

.fg textarea {
    resize: vertical;
    min-height: 110px;
}

.fg select option {
    background: var(--deep2);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, var(--spark), var(--spark2));
    color: #fff;
    font-family: var(--font-d);
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    letter-spacing: .04em;
    transition: transform .2s, box-shadow .2s;
    margin-top: .5rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(255, 107, 26, .4);
}

.form-success {
    display: none;
    text-align: center;
    padding: 3rem 2rem;
}

.fs-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.form-success h3 {
    font-family: var(--font-d);
    font-size: 1.4rem;
    color: var(--text-h);
    margin-bottom: .5rem;
}

.form-success p {
    color: var(--text-b);
}

/* ── BUTTONS ── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .85rem 2rem;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--spark), var(--spark2));
    color: #fff;
    font-weight: 700;
    font-size: .95rem;
    font-family: var(--font-d);
    letter-spacing: .04em;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 24px rgba(255, 107, 26, .35);
    cursor: pointer;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(255, 107, 26, .5);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    padding: .85rem 2rem;
    border-radius: 50px;
    background: transparent;
    color: var(--text-h);
    border: 1px solid var(--border);
    font-weight: 500;
    font-size: .95rem;
    transition: background .2s, border-color .2s;
}

.btn-ghost:hover {
    background: var(--panel-b);
    border-color: rgba(255, 255, 255, .15);
}

.btn-sm {
    display: inline-flex;
    align-items: center;
    padding: .5rem 1.1rem;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--spark), var(--spark2));
    color: #fff;
    font-size: .79rem;
    font-weight: 700;
    white-space: nowrap;
    transition: box-shadow .2s;
    flex-shrink: 0;
}

.btn-sm:hover {
    box-shadow: 0 6px 20px rgba(255, 107, 26, .4);
}

/* ── FOOTER ── */
footer {
    background: var(--deep);
    border-top: 1px solid var(--border);
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 5% 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    font-size: .86rem;
    color: var(--text-b);
    margin-top: .8rem;
    line-height: 1.8;
    max-width: 280px;
}

.footer-live {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-top: 1.2rem;
}

.live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--neon);
    animation: statusBlink 2s ease infinite;
}

.footer-live span {
    font-size: .77rem;
    color: var(--neon);
}

.footer-col h4 {
    font-family: var(--font-d);
    font-size: .87rem;
    font-weight: 700;
    color: var(--text-h);
    margin-bottom: 1rem;
    letter-spacing: .04em;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.footer-col ul li a {
    font-size: .83rem;
    color: var(--text-m);
    transition: color .2s;
}

.footer-col ul li a:hover {
    color: var(--spark);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: .79rem;
    color: var(--text-m);
}

.footer-socials {
    display: flex;
    gap: .6rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--panel);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .82rem;
    transition: background .2s, border-color .2s, transform .2s;
    color: var(--text-b);
}

.social-icon:hover {
    background: rgba(255, 107, 26, .15);
    border-color: rgba(255, 107, 26, .3);
    transform: translateY(-2px);
}

/* ── TECH POPUP ── */
.tech-popup {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s;
}

.tech-popup.show {
    opacity: 1;
    pointer-events: all;
}

.tp-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .65);
    backdrop-filter: blur(6px);
}

.tp-box {
    position: relative;
    z-index: 1;
    background: var(--deep2);
    border: 1px solid var(--border-h);
    border-radius: 24px;
    padding: 2.5rem;
    max-width: 460px;
    width: 100%;
    box-shadow: var(--shadow);
    transform: scale(.92);
    transition: transform .25s;
}

.tech-popup.show .tp-box {
    transform: scale(1);
}

.tp-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--panel-b);
    border: 1px solid var(--border);
    color: var(--text-m);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    transition: all .2s;
}

.tp-close:hover {
    background: rgba(255, 107, 26, .2);
    color: var(--text-h);
}

.tp-icon {
    font-size: 3rem;
    text-align: center;
    display: block;
    margin-bottom: .8rem;
}

.tp-title {
    font-family: var(--font-d);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-h);
    text-align: center;
    margin-bottom: .4rem;
}

.tp-badge {
    display: block;
    text-align: center;
    margin: 0 auto .8rem;
    width: fit-content;
    background: rgba(0, 245, 212, .1);
    border: 1px solid rgba(0, 245, 212, .2);
    color: var(--neon);
    padding: .22rem .8rem;
    border-radius: 50px;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .07em;
}

.tp-desc {
    color: var(--text-b);
    font-size: .9rem;
    line-height: 1.75;
    text-align: center;
    margin-bottom: 1.2rem;
}

.tp-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.tp-tags span {
    padding: .25rem .8rem;
    border-radius: 50px;
    font-size: .73rem;
    font-weight: 600;
    background: rgba(255, 107, 26, .1);
    color: var(--spark2);
    border: 1px solid rgba(255, 107, 26, .2);
}

.tp-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .7rem;
}

.tp-fact {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: .8rem;
    text-align: center;
}

.tp-fact strong {
    display: block;
    font-family: var(--font-d);
    font-size: 1.1rem;
    color: var(--spark2);
    margin-bottom: .2rem;
}

.tp-fact span {
    font-size: .73rem;
    color: var(--text-m);
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-28px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: none;
}

.reveal-right {
    opacity: 0;
    transform: translateX(28px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: none;
}

/* ── KEYFRAMES ── */
@keyframes loaderPulse {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.15)
    }
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 1;
        transform: scaleY(1)
    }

    50% {
        opacity: .2;
        transform: scaleY(.5)
    }
}

@keyframes marqueeRTL {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

@keyframes badgeFloat {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

@keyframes aiPulse {
    0% {
        transform: scale(1);
        opacity: .4
    }

    50% {
        transform: scale(1.3);
        opacity: 0
    }

    100% {
        transform: scale(1);
        opacity: .4
    }
}

@keyframes statusBlink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

@keyframes typing {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-5px)
    }
}

/* ══ RESPONSIVE ══ */
@media (max-width:1200px) {
    .process-track {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-line {
        display: none;
    }
}

@media (max-width:1024px) {
    #hero {
        flex-direction: column;
        text-align: center;
        padding: calc(var(--nav-h) + 3rem) 5% 4rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .scroll-hint {
        align-items: center;
    }

    .hero-girl {
        width: min(380px, 85vw);
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-visual {
        order: -1;
        max-height: 400px;
        overflow: hidden;
    }

    .about-img-wrap {
        aspect-ratio: 16/9;
    }

    .careers-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:900px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width:768px) {
    .section-inner {
        padding: 4rem 4%;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .companies-grid {
        grid-template-columns: 1fr;
    }

    .sd-modal-box {
        padding: 2rem 1.5rem;
    }

    .sd-modal-title {
        font-size: 1.4rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 1.8rem;
    }
}

@media (max-width:600px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .process-track {
        grid-template-columns: 1fr 1fr;
    }

    .hero-stats {
        gap: .7rem;
    }

    .stat-sep {
        display: none;
    }

    .float-actions {
        bottom: 1.5rem;
        right: 1rem;
    }

    .ai-assistant {
        bottom: 1.5rem;
        left: 1rem;
    }

    .ai-bubble {
        width: min(310px, 90vw);
    }

    .hero-girl {
        width: min(300px, 90vw);
    }

    .cta-banner {
        padding: 4rem 4%;
    }

    .careers-layout,
    .contact-layout {
        gap: 2rem;
    }
}

@media (max-width:400px) {
    .hero-title {
        font-size: 1.9rem;
    }

    .process-track {
        grid-template-columns: 1fr;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    #cursor-dot,
    #cursor-ring {
        display: none;
    }
}