/* ============================================================
   FUTURE TECH INNOVATIONS — Master Stylesheet
   Themes: dark | medium | light
   Aesthetic: Retro-Futuristic Luxury Corporate
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&family=Rajdhani:wght@300;400;500;600;700&family=Share+Tech+Mono&family=Cinzel:wght@400;600;900&display=swap');

/* ---- CSS Variables ---- */
:root {
    /* Dark Mode (default) */
    --bg-primary: #020408;
    --bg-secondary: #050d14;
    --bg-card: #0a1628;
    --bg-card-hover: #0f1e38;
    --bg-glass: rgba(10, 22, 40, 0.85);
    --text-primary: #e8f4fd;
    --text-secondary: #8ab4d4;
    --text-muted: #4a7a9b;
    --accent-1: #00d4ff;
    --accent-2: #0066ff;
    --accent-3: #7b2fff;
    --accent-gold: #c9a84c;
    --accent-gold-light: #f0d080;
    --border-color: rgba(0, 212, 255, 0.15);
    --border-glow: rgba(0, 212, 255, 0.4);
    --shadow-glow: 0 0 30px rgba(0, 212, 255, 0.15);
    --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.8);
    --grid-color: rgba(0, 212, 255, 0.04);
    --noise-opacity: 0.03;
    --scanline-opacity: 0.02;
}

[data-theme="light"] {
    --bg-primary: #f0f4f8;
    --bg-secondary: #e2eaf4;
    --bg-card: #ffffff;
    --bg-card-hover: #f8faff;
    --bg-glass: rgba(255, 255, 255, 0.9);
    --text-primary: #0a1628;
    --text-secondary: #2a4a6b;
    --text-muted: #5a7a9b;
    --accent-1: #0066cc;
    --accent-2: #0044aa;
    --accent-3: #5500cc;
    --accent-gold: #8a6020;
    --accent-gold-light: #b08030;
    --border-color: rgba(0, 102, 204, 0.15);
    --border-glow: rgba(0, 102, 204, 0.3);
    --shadow-glow: 0 0 30px rgba(0, 102, 204, 0.1);
    --shadow-strong: 0 10px 40px rgba(0, 0, 0, 0.15);
    --grid-color: rgba(0, 102, 204, 0.05);
    --noise-opacity: 0.02;
    --scanline-opacity: 0;
}

[data-theme="medium"] {
    --bg-primary: #0d1b2a;
    --bg-secondary: #162436;
    --bg-card: #1a2d42;
    --bg-card-hover: #1f3450;
    --bg-glass: rgba(20, 35, 55, 0.9);
    --text-primary: #d4e8f8;
    --text-secondary: #7aaccc;
    --text-muted: #4a7a9b;
    --accent-1: #40c8f0;
    --accent-2: #2080e0;
    --accent-3: #9060f0;
    --accent-gold: #d4a840;
    --accent-gold-light: #f0c860;
    --border-color: rgba(64, 200, 240, 0.2);
    --border-glow: rgba(64, 200, 240, 0.4);
    --shadow-glow: 0 0 30px rgba(64, 200, 240, 0.12);
    --shadow-strong: 0 15px 50px rgba(0, 0, 0, 0.5);
    --grid-color: rgba(64, 200, 240, 0.05);
    --noise-opacity: 0.025;
    --scanline-opacity: 0.015;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
    font-family: 'Rajdhani', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    transition: background-color 0.5s ease, color 0.5s ease;
    cursor: none;
}

/* ---- Custom Cursor ---- */
.cursor {
    width: 12px; height: 12px;
    background: var(--accent-1);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 99999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s, width 0.2s, height 0.2s, background 0.2s;
    mix-blend-mode: screen;
}
.cursor-ring {
    width: 36px; height: 36px;
    border: 1px solid var(--accent-1);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 99998;
    transform: translate(-50%, -50%);
    transition: transform 0.15s, width 0.3s, height 0.3s, border-color 0.3s;
    opacity: 0.6;
}
body:hover .cursor { opacity: 1; }

/* ---- Intro Splash ---- */
#intro-splash {
    position: fixed; inset: 0;
    background: #000;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    animation: splashFade 3.5s forwards;
}
#intro-splash .splash-logo {
    width: 160px; height: 160px;
    animation: splashLogoAnim 3.5s forwards;
    filter: drop-shadow(0 0 40px var(--accent-1));
}
#intro-splash .splash-brand {
    font-family: 'Orbitron', monospace;
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.3em;
    margin-top: 24px;
    opacity: 0;
    animation: splashTextIn 0.6s 0.8s forwards;
}
#intro-splash .splash-tagline {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    color: var(--accent-1);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-top: 8px;
    opacity: 0;
    animation: splashTextIn 0.6s 1.1s forwards;
}
#intro-splash .splash-line {
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-1), transparent);
    margin-top: 20px;
    animation: splashLine 0.8s 1.4s forwards;
}

@keyframes splashLogoAnim {
    0% { opacity: 0; transform: scale(0.5) rotate(-10deg); }
    20% { opacity: 1; transform: scale(1.05) rotate(2deg); }
    50% { transform: scale(1) rotate(0deg); }
    85% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(1.2); }
}
@keyframes splashTextIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes splashLine {
    to { width: 300px; }
}
@keyframes splashFade {
    0%, 75% { opacity: 1; pointer-events: all; }
    100% { opacity: 0; pointer-events: none; }
}

/* ---- Background Effects ---- */
.bg-grid {
    position: fixed; inset: 0; z-index: 0; pointer-events: none;
    background-image:
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 60px 60px;
}
.bg-scanlines {
    position: fixed; inset: 0; z-index: 0; pointer-events: none;
    background: repeating-linear-gradient(
        0deg,
        transparent, transparent 2px,
        rgba(0,0,0,var(--scanline-opacity)) 2px, rgba(0,0,0,var(--scanline-opacity)) 4px
    );
}
.bg-orbs {
    position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
}
.bg-orbs::before {
    content: '';
    position: absolute; top: -200px; left: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0,102,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: orbFloat1 20s infinite ease-in-out;
}
.bg-orbs::after {
    content: '';
    position: absolute; bottom: -200px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(123,47,255,0.07) 0%, transparent 70%);
    border-radius: 50%;
    animation: orbFloat2 25s infinite ease-in-out;
}
@keyframes orbFloat1 {
    0%, 100% { transform: translate(0,0); }
    50% { transform: translate(100px, 80px); }
}
@keyframes orbFloat2 {
    0%, 100% { transform: translate(0,0); }
    50% { transform: translate(-80px, -60px); }
}

/* ---- Navbar ---- */
.navbar {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 40px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.4s ease;
}
.navbar.scrolled {
    height: 64px;
    box-shadow: var(--shadow-glow);
}
.navbar-brand {
    display: flex; align-items: center; gap: 14px;
    text-decoration: none;
}
.navbar-brand img {
    height: 44px; width: auto;
    filter: drop-shadow(0 0 8px var(--accent-1));
    transition: filter 0.3s;
}
.navbar-brand:hover img { filter: drop-shadow(0 0 16px var(--accent-1)); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.12em;
}
.brand-sub {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.65rem;
    color: var(--accent-1);
    letter-spacing: 0.35em;
    text-transform: uppercase;
}
.nav-links {
    display: flex; align-items: center; gap: 8px;
    list-style: none;
}
.nav-links a {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 16px;
    border: 1px solid transparent;
    transition: all 0.3s;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute; bottom: 0; left: 50%; right: 50%;
    height: 1px;
    background: var(--accent-1);
    transition: left 0.3s, right 0.3s;
}
.nav-links a:hover { color: var(--accent-1); }
.nav-links a:hover::after { left: 16px; right: 16px; }
.nav-links a.active { color: var(--accent-1); }

/* Theme switcher */
.theme-switcher {
    display: flex; align-items: center; gap: 6px;
    margin-left: 20px;
    padding: 6px 8px;
    border: 1px solid var(--border-color);
    background: transparent;
}
.theme-btn {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px 8px;
    transition: all 0.2s;
    text-transform: uppercase;
}
.theme-btn.active, .theme-btn:hover {
    color: var(--accent-1);
    background: rgba(0, 212, 255, 0.08);
}

/* hamburger */
.hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 8px;
}
.hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--text-primary); transition: all 0.3s;
}

/* ---- Hero Section ---- */
.hero {
    min-height: 100vh;
    display: flex; align-items: center;
    position: relative; overflow: hidden;
    padding: 120px 40px 80px;
}
.hero-content {
    position: relative; z-index: 2;
    max-width: 720px;
}
.hero-eyebrow {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.75rem;
    color: var(--accent-1);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 0.8s 3.8s forwards;
}
.hero-eyebrow::before {
    content: '//';
    color: var(--accent-gold);
    margin-right: 8px;
}
.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s 4.0s forwards;
}
.hero-title .line1 { display: block; color: var(--text-primary); }
.hero-title .line2 {
    display: block;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2), var(--accent-3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-title .line3 {
    display: block;
    color: var(--accent-gold);
    font-size: 0.65em;
    font-weight: 400;
    letter-spacing: 0.3em;
    margin-top: 8px;
    -webkit-text-fill-color: var(--accent-gold);
}
.hero-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUp 0.8s 4.2s forwards;
    max-width: 580px;
}
.hero-cta {
    display: flex; gap: 16px; flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s 4.4s forwards;
}
.btn-primary {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--accent-2), var(--accent-1));
    color: #fff;
    border: none;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    transition: all 0.3s;
    cursor: pointer;
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-1), var(--accent-3));
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}
.btn-outline {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 13px 35px;
    background: transparent;
    color: var(--accent-1);
    border: 1px solid var(--accent-1);
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    transition: all 0.3s;
    cursor: pointer;
}
.btn-outline:hover {
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
    transform: translateY(-2px);
    color: var(--accent-1);
    text-decoration: none;
}

/* Hero stats */
.hero-stats {
    position: absolute; bottom: 60px; right: 40px;
    display: flex; gap: 40px; z-index: 2;
    opacity: 0;
    animation: fadeUp 0.8s 4.6s forwards;
}
.stat-item { text-align: center; }
.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-1);
    display: block;
    line-height: 1;
}
.stat-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.6rem;
    color: var(--text-muted);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 4px;
}

/* Hero decorative */
.hero-deco {
    position: absolute; right: 0; top: 50%; transform: translateY(-50%);
    width: 50%; height: 100%;
    z-index: 1; pointer-events: none;
    opacity: 0;
    animation: fadeIn 1.2s 4s forwards;
}
.hex-grid {
    position: absolute; right: 40px; top: 50%; transform: translateY(-50%);
}

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

/* ---- Section Common ---- */
.section {
    position: relative; z-index: 1;
    padding: 100px 40px;
}
.section-header {
    text-align: center;
    margin-bottom: 70px;
}
.section-eyebrow {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    color: var(--accent-gold);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}
.section-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(1.6rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.2;
}
.section-title span {
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}
.section-divider {
    width: 60px; height: 2px;
    background: linear-gradient(90deg, var(--accent-1), var(--accent-3));
    margin: 20px auto 0;
    position: relative;
}
.section-divider::before, .section-divider::after {
    content: '';
    position: absolute; top: -3px;
    width: 8px; height: 8px;
    border: 2px solid var(--accent-1);
    border-radius: 50%;
    background: var(--bg-primary);
}
.section-divider::before { left: -4px; }
.section-divider::after { right: -4px; }

/* ---- Cards ---- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.fti-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}
.fti-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-1), var(--accent-3), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}
.fti-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-glow);
    transform: translateY(-4px);
}
.fti-card:hover::before { opacity: 1; }
.card-icon {
    font-size: 2.4rem;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 0 8px var(--accent-1));
}
.card-title {
    font-family: 'Orbitron', monospace;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}
.card-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}
.card-corner {
    position: absolute; top: 0; right: 0;
    width: 20px; height: 20px;
    background: var(--accent-1);
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    opacity: 0.3;
}

/* ---- About ---- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-badge {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 20px;
    border: 1px solid var(--accent-gold);
    margin-bottom: 24px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    color: var(--accent-gold);
    letter-spacing: 0.3em;
    text-transform: uppercase;
}
.about-text p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}
.about-highlights {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 16px; margin-top: 32px;
}
.highlight-item {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 16px;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    transition: border-color 0.3s;
}
.highlight-item:hover { border-color: var(--border-glow); }
.highlight-icon { color: var(--accent-1); font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.highlight-text { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.5; }
.highlight-text strong { color: var(--text-primary); display: block; font-family: 'Orbitron', monospace; font-size: 0.75rem; margin-bottom: 4px; }

.about-visual {
    position: relative; display: flex; align-items: center; justify-content: center;
}
.about-logo-wrap {
    position: relative; width: 280px; height: 280px;
    display: flex; align-items: center; justify-content: center;
}
.about-logo-wrap img {
    width: 180px;
    position: relative; z-index: 2;
    filter: drop-shadow(0 0 30px var(--accent-1));
    animation: logoFloat 6s ease-in-out infinite;
}
.orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--border-color);
}
.orbit-ring:nth-child(1) { width: 220px; height: 220px; animation: spin 20s linear infinite; border-color: rgba(0,212,255,0.2); }
.orbit-ring:nth-child(2) { width: 280px; height: 280px; animation: spin 30s linear infinite reverse; border-color: rgba(123,47,255,0.15); }
.orbit-dot {
    position: absolute; width: 8px; height: 8px;
    background: var(--accent-1); border-radius: 50%;
    top: -4px; left: 50%; transform: translateX(-50%);
    box-shadow: 0 0 10px var(--accent-1);
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ---- Solutions ---- */
.solutions-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}
.solution-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
}
.solution-card::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-2), var(--accent-1));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}
.solution-card:hover { border-color: var(--border-glow); transform: translateY(-4px); }
.solution-card:hover::after { transform: scaleX(1); }
.solution-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    color: var(--accent-gold);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.solution-title {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 14px;
}
.solution-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}
.solution-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    padding: 4px 10px;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: transparent;
    transition: all 0.2s;
}
.solution-card:hover .tag { border-color: rgba(0,212,255,0.3); color: var(--accent-1); }

/* ---- Clients Table ---- */
.clients-section { background: var(--bg-secondary); }
.clients-table-wrap { overflow-x: auto; }
.clients-table {
    width: 100%; border-collapse: collapse;
    font-family: 'Rajdhani', sans-serif;
}
.clients-table th {
    font-family: 'Orbitron', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-1);
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
    white-space: nowrap;
}
.clients-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.95rem;
}
.clients-table tr:hover td { background: var(--bg-card); color: var(--text-primary); }
.clients-table .no { color: var(--text-muted); font-family: 'Share Tech Mono', monospace; font-size: 0.85rem; }
.clients-table .client-name { color: var(--text-primary); font-weight: 600; }
.clients-table .value { color: var(--accent-gold); font-family: 'Orbitron', monospace; font-size: 0.9rem; }

/* ---- Why Choose ---- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border-color);
}
.why-item {
    background: var(--bg-card);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}
.why-item:hover { background: var(--bg-card-hover); }
.why-check {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    color: var(--accent-1);
    margin-bottom: 16px;
    display: block;
}
.why-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.why-desc { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; }

/* ---- Process ---- */
.process-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    position: relative;
    overflow-x: auto;
    padding-bottom: 10px;
}
.process-step {
    flex: 1; min-width: 160px;
    text-align: center;
    padding: 0 20px;
    position: relative;
}
.process-step::after {
    content: '';
    position: absolute; top: 24px; left: 60%;
    width: 80%; height: 1px;
    background: linear-gradient(90deg, var(--accent-1), transparent);
}
.process-step:last-child::after { display: none; }
.step-num {
    width: 48px; height: 48px;
    border: 2px solid var(--accent-1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-1);
    position: relative; z-index: 1;
    background: var(--bg-primary);
    box-shadow: 0 0 20px rgba(0,212,255,0.2);
}
.step-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.step-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

/* ---- Contact ---- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}
.contact-info-item {
    display: flex; gap: 16px; align-items: flex-start;
    margin-bottom: 28px;
    padding: 20px;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    transition: border-color 0.3s;
}
.contact-info-item:hover { border-color: var(--border-glow); }
.info-icon {
    font-size: 1.4rem; flex-shrink: 0; margin-top: 2px;
    color: var(--accent-1);
}
.info-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    color: var(--accent-gold);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 6px;
    display: block;
}
.info-value { color: var(--text-secondary); font-size: 0.95rem; }
.info-value a { color: var(--accent-1); text-decoration: none; }
.info-value a:hover { text-decoration: underline; }

/* ---- Form ---- */
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    color: var(--accent-1);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
.form-control {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    padding: 12px 16px;
    outline: none;
    transition: all 0.3s;
    width: 100%;
}
.form-control:focus {
    border-color: var(--accent-1);
    box-shadow: 0 0 0 2px rgba(0,212,255,0.1);
}
.form-control::placeholder { color: var(--text-muted); font-size: 0.85rem; }
textarea.form-control { resize: vertical; min-height: 130px; }

.alert-success {
    padding: 14px 20px;
    border: 1px solid var(--accent-1);
    background: rgba(0,212,255,0.05);
    color: var(--accent-1);
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    margin-bottom: 20px;
    display: flex; align-items: center; gap: 10px;
}

/* ---- Footer ---- */
footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 60px 40px 30px;
    position: relative; z-index: 1;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}
.footer-brand img { height: 50px; margin-bottom: 16px; filter: drop-shadow(0 0 8px var(--accent-1)); }
.footer-brand p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }
.footer-col h4 {
    font-family: 'Orbitron', monospace;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
    display: flex; align-items: center; gap: 6px;
}
.footer-col ul li a::before { content: '›'; color: var(--accent-1); }
.footer-col ul li a:hover { color: var(--accent-1); }
.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
    display: flex; justify-content: space-between; align-items: center;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    flex-wrap: wrap; gap: 10px;
}
.footer-reg { color: var(--accent-gold); }

/* ---- Scroll Reveal ---- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .navbar { padding: 0 20px; }
    .nav-links { display: none; position: fixed; top: 80px; left: 0; right: 0; background: var(--bg-glass); backdrop-filter: blur(20px); flex-direction: column; padding: 20px; border-bottom: 1px solid var(--border-color); }
    .nav-links.open { display: flex; }
    .hamburger { display: flex; }
    .section { padding: 70px 20px; }
    .hero { padding: 120px 20px 60px; }
    .hero-stats { position: static; margin-top: 40px; justify-content: flex-start; gap: 30px; }
    .form-row { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .process-steps { flex-direction: column; gap: 30px; }
    .process-step::after { display: none; }
    .theme-switcher { display: none; }
    body { cursor: auto; }
    .cursor, .cursor-ring { display: none; }
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--accent-2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-1); }

/* ---- Selection ---- */
::selection { background: rgba(0, 212, 255, 0.2); color: var(--text-primary); }
