:root {
    /* Exact Logo Color Palette */
    --cyan: #00f0ff;
    --cyan-light: #67e8f9;
    --cyan-dim: rgba(0, 240, 255, 0.15);
    --blue-core: #2563eb;
    --blue-electric: #3b82f6;
    --blue-dark: #1d4ed8;
    --purple-neural: #8b5cf6;
    --purple-vivid: #a855f7;
    --purple-deep: #6d28d9;
    --purple-dim: rgba(139, 92, 246, 0.15);
    --magenta: #ec4899;
    
    /* Dark Theme Surface Tokens */
    --ink: #f8fafc;
    --muted: #94a3b8;
    --muted-dark: #64748b;
    --paper: #030712;
    --paper-gradient: radial-gradient(circle at 50% 0%, #0c1538 0%, #060b24 45%, #030712 100%);
    --panel: #070d24;
    --panel-hover: #0c1538;
    --card-bg: rgba(7, 13, 36, 0.75);
    --line: #172347;
    --line-light: #243566;
    --line-glow: rgba(0, 240, 255, 0.3);
    
    /* Feedback Tokens */
    --danger: #ef4444;
    --success: #10b981;
    --warning: #f59e0b;
    
    /* Typography */
    --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Glowing Effects */
    --glow-cyan: 0 0 25px rgba(0, 240, 255, 0.35);
    --glow-purple: 0 0 25px rgba(139, 92, 246, 0.35);
    --glow-button: 0 4px 25px rgba(0, 240, 255, 0.3), 0 0 40px rgba(139, 92, 246, 0.2);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    background-image: 
        radial-gradient(circle at 20% 15%, rgba(0, 240, 255, 0.06) 0%, transparent 45%),
        radial-gradient(circle at 80% 30%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(37, 99, 235, 0.06) 0%, transparent 60%);
    background-attachment: fixed;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: all 0.25s ease; }
img { max-width: 100%; height: auto; display: block; }
.page-wrap { width: min(1240px, calc(100% - 48px)); margin: 0 auto; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.12;
    margin: 0 0 16px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ink);
}

h1 { font-size: clamp(38px, 5.5vw, 68px); }
h2 { font-size: clamp(28px, 3.8vw, 44px); }
h3 { font-size: clamp(20px, 2.4vw, 28px); }
h4 { font-size: 18px; }

h1 em, h2 em, .gradient-ai-text, .text-gradient-brand {
    font-style: normal;
    background: linear-gradient(135deg, #00f0ff 0%, #3b82f6 50%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 16px;
    color: var(--cyan);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.eyebrow-badge {
    padding: 6px 14px;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.25);
    border-radius: 999px;
    backdrop-filter: blur(8px);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.15);
}

.eyebrow-badge span.pulse-dot {
    width: 6px; height: 6px;
    background: var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--cyan);
    display: inline-block;
    animation: pulse-dot-anim 1.5s infinite;
}

@keyframes pulse-dot-anim {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.5; }
}

.eyebrow-light { color: var(--cyan); }
.text-cool { color: var(--cyan); }
.text-purple { color: var(--purple-vivid); }
.text-muted { color: var(--muted); }
.text-danger { color: var(--danger); }
.text-center { text-align: center; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
/* ==========================================================================
   Buttons & Links
   ========================================================================== */
.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #00d2ff 0%, #2563eb 50%, #7c3aed 100%);
    background-size: 200% auto;
    color: #ffffff;
    border: 1px solid rgba(0, 240, 255, 0.4);
    border-radius: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    box-shadow: var(--glow-button);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.button::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: 0.5s;
}

.button:hover::before { left: 100%; }

.button:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 240, 255, 0.4), 0 0 50px rgba(139, 92, 246, 0.35);
    color: #ffffff;
}

.button-outline {
    background: rgba(7, 13, 36, 0.7);
    color: var(--ink);
    border: 1px solid var(--line-light);
    box-shadow: none;
    backdrop-filter: blur(10px);
}

.button-outline:hover {
    background: rgba(12, 21, 56, 0.9);
    border-color: var(--cyan);
    color: var(--cyan);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
    transform: translateY(-2px);
}

.button-small { padding: 10px 18px; font-size: 13.5px; border-radius: 8px; }
.button-full { width: 100%; }
.button-danger { background: linear-gradient(135deg, #ef4444, #b91c1c); border-color: #ef4444; }
.button-micro { padding: 6px 12px; font-size: 12px; border-radius: 6px; font-weight: 500; }

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--cyan);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
}

.text-link:hover {
    color: #fff;
    text-shadow: 0 0 10px var(--cyan);
    transform: translateX(4px);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(3, 7, 18, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(23, 35, 71, 0.8);
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    color: #ffffff;
}

.brand-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(0, 240, 255, 0.3));
    transition: filter 0.3s ease;
}

.brand:hover .brand-logo {
    filter: drop-shadow(0 0 18px rgba(0, 240, 255, 0.6)) drop-shadow(0 0 25px rgba(139, 92, 246, 0.4));
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.site-nav a {
    color: var(--muted);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 14.5px;
    position: relative;
    padding: 6px 0;
}

.site-nav a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 0; height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--purple-neural));
    transition: width 0.25s ease;
    box-shadow: 0 0 8px var(--cyan);
}

.site-nav a:hover, .site-nav a.active { color: #ffffff; }
.site-nav a:hover::after, .site-nav a.active::after { width: 100%; }

.header-cta-wrap { display: flex; align-items: center; gap: 16px; }

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px; height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--line);
    border-radius: 8px;
    cursor: pointer;
    align-items: center;
}

.mobile-nav-toggle span {
    display: block;
    width: 20px; height: 2px;
    background: var(--ink);
}

.mobile-drawer {
    display: none;
    position: absolute;
    top: 80px; left: 0; width: 100%;
    background: rgba(5, 10, 28, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    padding: 24px 0 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

.mobile-drawer.is-open { display: block; }
.mobile-drawer-nav { display: flex; flex-direction: column; gap: 16px; width: min(1200px, calc(100% - 48px)); margin: 0 auto; }
.mobile-drawer-nav a { color: var(--ink); font-size: 16px; font-weight: 500; padding: 10px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.mobile-drawer-cta { margin-top: 16px; display: flex; flex-direction: column; gap: 12px; }
/* ==========================================================================
   Hero Section & Interactive 'D' Neural Brain Canvas
   ========================================================================== */
.hero-section {
    min-height: calc(100vh - 80px);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 50px;
    padding: 60px 0 90px;
    position: relative;
}

.hero-content { position: relative; z-index: 2; }
.hero-headline { margin-bottom: 20px; letter-spacing: -0.03em; font-weight: 700; }
.hero-subhead { max-width: 580px; margin: 0 0 36px; color: var(--muted); font-size: 18px; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 36px; }

.hero-quick-metrics {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(23, 35, 71, 0.6);
}

.quick-metric-item { display: flex; align-items: center; gap: 10px; }

.quick-metric-icon {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--cyan);
}

.quick-metric-text strong { display: block; font-size: 13px; color: #fff; font-family: var(--font-heading); }
.quick-metric-text span { font-size: 11.5px; color: var(--muted); }

/* Hero Neural 'D' Visual Container */
.hero-visual {
    position: relative;
    min-height: 520px;
    border-radius: 24px;
    overflow: hidden;
    background: radial-gradient(circle at center, #0c163d 0%, #060b24 60%, #030712 100%);
    border: 1px solid rgba(0, 240, 255, 0.25);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.7), inset 0 0 60px rgba(0, 240, 255, 0.08), 0 0 35px rgba(139, 92, 246, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
}

#neuralBrainCanvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
    cursor: crosshair;
}

.visual-grid {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background-image: 
        linear-gradient(rgba(0, 240, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.08) 1px, transparent 1px);
    background-size: 36px 36px;
    pointer-events: none;
    z-index: 0;
}

.visual-orbit { position: absolute; border-radius: 50%; pointer-events: none; z-index: 1; }
.orbit-one { width: 380px; height: 380px; border: 1px dashed rgba(0, 240, 255, 0.25); animation: rotate-orbit 28s linear infinite; }
.orbit-two { width: 460px; height: 460px; border: 1px dashed rgba(139, 92, 246, 0.2); animation: rotate-orbit-reverse 36s linear infinite; }

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

/* Floating Cyber HUD Diagnostic Badges */
.hud-badge {
    position: absolute;
    z-index: 3;
    padding: 8px 14px;
    background: rgba(3, 7, 18, 0.85);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 8px;
    backdrop-filter: blur(12px);
    font-family: var(--font-heading);
    font-size: 11px;
    letter-spacing: 0.06em;
    color: var(--cyan);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

.hud-badge-top-left { top: 24px; left: 24px; border-color: rgba(0, 240, 255, 0.4); }
.hud-badge-top-right { top: 24px; right: 24px; border-color: rgba(139, 92, 246, 0.4); color: var(--purple-vivid); }
.hud-badge-bottom-left { bottom: 24px; left: 24px; border-color: rgba(0, 240, 255, 0.35); }
.hud-badge-bottom-right { bottom: 24px; right: 24px; border-color: rgba(59, 130, 246, 0.4); color: #60a5fa; }
/* ==========================================================================
   Stats / Proven Proof Bar
   ========================================================================== */
.stats-banner { padding: 20px 0 50px; position: relative; }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.stat-card {
    padding: 24px 20px;
    background: rgba(7, 13, 36, 0.7);
    border: 1px solid var(--line);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover {
    border-color: rgba(0, 240, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 240, 255, 0.1);
}

.stat-card:hover::before { opacity: 1; }

.stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff 30%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4px;
}

.stat-label { font-size: 13.5px; color: var(--muted); font-weight: 500; }

/* ==========================================================================
   Section Layouts & Headers
   ========================================================================== */
.section { padding: 70px 0; }

.dark-section {
    padding: 80px 0;
    background: radial-gradient(circle at 50% 50%, #0a1336 0%, #040818 70%, #030712 100%);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.section-heading {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-end;
    margin-bottom: 50px;
}

.section-heading-right { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.section-heading-right p { color: var(--muted); font-size: 16px; line-height: 1.7; margin: 0; }

/* ==========================================================================
   Services Grid & V2 Cards
   ========================================================================== */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.service-card-v2 {
    background: rgba(7, 13, 36, 0.8);
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.service-card-v2::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.4), transparent 40%, rgba(139, 92, 246, 0.4));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.service-card-v2:hover {
    transform: translateY(-6px);
    border-color: transparent;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 240, 255, 0.15), 0 0 45px rgba(139, 92, 246, 0.1);
}

.service-card-v2:hover::after { opacity: 1; }
.service-card-media { position: relative; height: 190px; overflow: hidden; background: #060b24; }
.service-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card-v2:hover .service-card-media img { transform: scale(1.06); }

.service-card-media-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: radial-gradient(circle at center, rgba(0, 240, 255, 0.12) 0%, rgba(7, 13, 36, 0.95) 70%);
}

.service-media-icon { font-size: 40px; filter: drop-shadow(0 0 16px rgba(0, 240, 255, 0.4)); }
.service-media-overlay { position: absolute; top: 14px; left: 14px; right: 14px; display: flex; justify-content: space-between; align-items: center; z-index: 2; }
.service-card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.service-card-body h3, .service-card-body h2 { font-size: 20px; margin-bottom: 8px; }
.service-card-body h3 a:hover { color: var(--cyan); }
.service-summary { color: var(--muted); font-size: 14.5px; line-height: 1.65; margin-bottom: 20px; flex: 1; }
.service-tags-wrap { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.service-tag-pill { font-size: 12px; padding: 4px 10px; background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 6px; color: var(--muted); }
.service-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--line); }
.service-card-link { font-family: var(--font-heading); font-size: 13.5px; font-weight: 600; color: var(--cyan); }
.service-card-link:hover { color: #fff; text-shadow: 0 0 10px var(--cyan); }

/* Category Filter Bar */
.service-filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.service-filter-btn { padding: 10px 20px; background: rgba(7, 13, 36, 0.7); border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-family: var(--font-heading); font-size: 14px; font-weight: 600; cursor: pointer; transition: all 0.25s ease; backdrop-filter: blur(8px); }
.service-filter-btn:hover { border-color: var(--cyan); color: #fff; }
.service-filter-btn.active { background: linear-gradient(135deg, rgba(0, 240, 255, 0.2), rgba(139, 92, 246, 0.2)); border-color: var(--cyan); color: #fff; box-shadow: 0 0 20px rgba(0, 240, 255, 0.25); }

/* Hero Stats Chips */
.service-hero-stats { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 24px; }
.service-stat-chip { display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px; background: rgba(7, 13, 36, 0.8); border: 1px solid rgba(0, 240, 255, 0.25); border-radius: 999px; font-size: 13px; color: var(--ink); backdrop-filter: blur(10px); }
.service-stat-chip .dot { width: 6px; height: 6px; background: var(--cyan); border-radius: 50%; box-shadow: 0 0 8px var(--cyan); }

/* 5-Step Process */
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.process-step { background: rgba(7, 13, 36, 0.7); border: 1px solid var(--line); border-radius: 16px; padding: 24px 20px; position: relative; backdrop-filter: blur(10px); transition: all 0.3s ease; }
.process-step:hover { border-color: rgba(0, 240, 255, 0.35); transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 240, 255, 0.1); }
.step-num { display: inline-block; font-family: var(--font-heading); font-size: 13px; font-weight: 700; color: var(--cyan); background: rgba(0, 240, 255, 0.1); border: 1px solid rgba(0, 240, 255, 0.25); padding: 4px 10px; border-radius: 6px; margin-bottom: 16px; }
.process-step h4 { margin: 0 0 8px; font-size: 17px; color: #fff; }
.process-step p { font-size: 13.5px; color: var(--muted); margin: 0; line-height: 1.55; }

/* Pricing Packages */
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.package-card { background: rgba(7, 13, 36, 0.8); border: 1px solid var(--line); border-radius: 20px; padding: 36px 30px; display: flex; flex-direction: column; position: relative; backdrop-filter: blur(16px); transition: all 0.3s ease; }
.package-card-featured { border-color: rgba(0, 240, 255, 0.4); box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6), 0 0 35px rgba(0, 240, 255, 0.15); }
.package-card-featured::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--cyan), var(--purple-neural)); border-radius: 20px 20px 0 0; }
.package-badge { position: absolute; top: 18px; right: 20px; padding: 4px 12px; background: linear-gradient(135deg, var(--cyan), var(--blue-core)); color: #030712; border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.package-header h3 { font-size: 22px; margin-bottom: 6px; }
.package-tagline { color: var(--muted); font-size: 13.5px; margin-bottom: 24px; }
.package-pricing { margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.price-amount { font-family: var(--font-heading); font-size: 36px; font-weight: 700; color: #fff; }
.price-period { font-size: 14px; color: var(--muted); }
.package-features-list { list-style: none; padding: 0; margin: 0 0 32px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.package-features-list li { font-size: 14px; color: var(--ink); display: flex; align-items: center; gap: 10px; }
.package-features-list li .check-icon { color: var(--cyan); font-weight: bold; }

/* Portfolio Projects */
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.project-card { background: rgba(7, 13, 36, 0.8); border: 1px solid var(--line); border-radius: 18px; padding: 24px; display: flex; flex-direction: column; transition: all 0.3s ease; }
.project-card:hover { border-color: rgba(0, 240, 255, 0.3); transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 240, 255, 0.1); }
.project-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.project-metric-badge { padding: 4px 10px; background: rgba(0, 240, 255, 0.1); border: 1px solid rgba(0, 240, 255, 0.3); border-radius: 6px; font-size: 12px; font-weight: 700; color: var(--cyan); }
.project-client { font-size: 13px; color: var(--muted); margin-bottom: 10px; }
.project-summary { font-size: 14.5px; color: var(--muted); line-height: 1.6; }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card { background: rgba(7, 13, 36, 0.7); border: 1px solid var(--line); border-radius: 18px; padding: 30px; backdrop-filter: blur(12px); display: flex; flex-direction: column; justify-content: space-between; }
.testimonial-rating { color: #fbbf24; font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-quote { color: var(--ink); font-size: 15px; line-height: 1.7; margin: 0 0 24px; font-style: italic; }
.testimonial-author strong { display: block; color: #fff; font-size: 15px; font-family: var(--font-heading); }
.testimonial-author span { font-size: 12.5px; color: var(--muted); }

/* FAQ */
.faq-accordion-wrap { display: flex; flex-direction: column; gap: 14px; max-width: 860px; margin: 0 auto; }
.faq-item { background: rgba(7, 13, 36, 0.75); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; transition: all 0.25s ease; }
.faq-item.is-open { border-color: rgba(0, 240, 255, 0.35); box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(0, 240, 255, 0.08); }
.faq-toggle { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 22px 24px; background: transparent; border: none; color: #fff; font-family: var(--font-heading); font-size: 16.5px; font-weight: 600; text-align: left; cursor: pointer; }
.faq-icon { font-size: 20px; color: var(--cyan); transition: transform 0.25s ease; }
.faq-item.is-open .faq-icon { transform: rotate(45deg); }
.faq-content { display: none; padding: 0 24px 22px; color: var(--muted); font-size: 15px; line-height: 1.7; }
.faq-item.is-open .faq-content { display: block; }

/* Contact Section */
.contact-section { padding: 80px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.contact-card { background: rgba(7, 13, 36, 0.85); border: 1px solid rgba(0, 240, 255, 0.25); border-radius: 20px; padding: 40px; backdrop-filter: blur(16px); box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 240, 255, 0.1); }
.contact-card p { color: var(--muted); font-size: 16px; line-height: 1.7; margin-bottom: 28px; }
.contact-card-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Footer */
.site-footer { background: #02040a; border-top: 1px solid var(--line); padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 50px; }
.footer-brand { margin-bottom: 16px; }
.footer-bio { color: var(--muted); font-size: 14px; line-height: 1.65; margin-bottom: 20px; }
.footer-social-links { display: flex; gap: 14px; }
.footer-social-links a { color: var(--muted); font-size: 13.5px; font-family: var(--font-heading); }
.footer-social-links a:hover { color: var(--cyan); }
.footer-heading { color: #fff; font-size: 16px; margin-bottom: 20px; }
.footer-menu { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-menu a { color: var(--muted); font-size: 14px; }
.footer-menu a:hover { color: var(--cyan); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; font-size: 14px; color: var(--muted); }
.footer-contact-item a:hover { color: var(--cyan); }
.footer-admin-link-wrap { margin-top: 20px; }
.admin-portal-link { font-size: 12.5px; color: var(--muted-dark); font-family: var(--font-heading); }
.admin-portal-link:hover { color: var(--cyan); }
.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.05); display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--muted-dark); }
.footer-legal-links { display: flex; gap: 20px; }
.footer-legal-links a:hover { color: var(--muted); }

/* Admin Badges & Table */
.admin-badge { display: inline-block; padding: 3px 8px; border-radius: 4px; font-size: 11px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; background: rgba(0, 240, 255, 0.1); color: var(--cyan); border: 1px solid rgba(0, 240, 255, 0.25); }
.badge-published { background: rgba(16, 185, 129, 0.1); color: #10b981; border: 1px solid rgba(16, 185, 129, 0.25); padding: 3px 8px; border-radius: 4px; font-size: 11px; font-weight: 700; }
.badge-draft { background: rgba(100, 116, 139, 0.15); color: #94a3b8; border: 1px solid rgba(100, 116, 139, 0.3); padding: 3px 8px; border-radius: 4px; font-size: 11px; font-weight: 700; }
.admin-page-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.admin-page-title { margin: 0; font-size: 26px; }
.admin-panel-box { background: var(--panel); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.admin-table-wrap { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; text-align: left; }
.admin-table th { background: rgba(0, 0, 0, 0.3); padding: 14px 18px; font-size: 12px; font-family: var(--font-heading); color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; border-bottom: 1px solid var(--line); }
.admin-table td { padding: 16px 18px; border-bottom: 1px solid rgba(255, 255, 255, 0.04); vertical-align: middle; font-size: 14px; }
.admin-table tr:hover td { background: rgba(255, 255, 255, 0.02); }
.admin-action-group { display: flex; gap: 8px; justify-content: flex-end; }
.admin-table-desc { font-size: 12px; color: var(--muted); margin: 2px 0 0; }

/* WhatsApp Floating Widget */
.whatsapp-float {
    position: fixed; width: 60px; height: 60px; bottom: 40px; right: 40px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #FFF; border-radius: 50px; text-align: center; font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 9999; display: flex; align-items: center; justify-content: center;
    transition: all 0.3s ease; animation: pulse-whatsapp 2.5s infinite;
}
.whatsapp-float svg { width: 32px; height: 32px; fill: currentColor; }
.whatsapp-float:hover { transform: scale(1.08) translateY(-4px); box-shadow: 0 10px 30px rgba(37, 211, 102, 0.65); color: #FFF; }

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-section { grid-template-columns: 1fr; gap: 40px; padding: 40px 0 60px; }
    .hero-visual { min-height: 440px; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .section-heading, .contact-section { grid-template-columns: 1fr; gap: 20px; }
    .service-grid, .packages-grid, .projects-grid, .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .process-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .site-nav, .site-header .button { display: none; }
    .mobile-nav-toggle { display: flex; }
    .hero-visual { min-height: 360px; }
    .stats-inner { grid-template-columns: 1fr; }
    .service-grid, .packages-grid, .projects-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
    .hero-quick-metrics { flex-direction: column; align-items: flex-start; gap: 14px; }
    .whatsapp-float { width: 50px; height: 50px; bottom: 20px; right: 20px; }
    .whatsapp-float svg { width: 26px; height: 26px; }
}
/* ==========================================================================
   Page Intro Headers
   ========================================================================== */
.page-intro {
    padding: 70px 0 50px;
    position: relative;
}

.page-intro h1 {
    max-width: 900px;
    margin-bottom: 20px;
}

.page-intro p {
    max-width: 680px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
    margin: 0;
}

/* ==========================================================================
   About Page Layout & Cards
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.about-lead-copy h2 {
    font-size: 30px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.about-lead-copy p {
    color: var(--muted);
    font-size: 16.5px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.about-stats-card {
    background: rgba(7, 13, 36, 0.85);
    border: 1px solid rgba(0, 240, 255, 0.25);
    border-radius: 20px;
    padding: 36px 30px;
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 240, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.about-stat-row strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #fff 20%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4px;
}

.about-stat-row span {
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.6;
}

.core-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.core-value-card {
    background: rgba(7, 13, 36, 0.7);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 28px 24px;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.core-value-card:hover {
    border-color: rgba(0, 240, 255, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 240, 255, 0.1);
}

.core-value-card h3 {
    font-size: 19px;
    margin: 12px 0 10px;
    color: #fff;
}

.core-value-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   Contact Page Layout & Modern Form
   ========================================================================== */
.contact-page-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: flex-start;
}

.contact-form-container {
    background: rgba(7, 13, 36, 0.85);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

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

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

.form-group label {
    font-family: var(--font-heading);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: 0.02em;
}

.form-input, .form-textarea, .form-select {
    width: 100%;
    padding: 14px 18px;
    background: rgba(3, 7, 18, 0.7);
    border: 1px solid var(--line);
    border-radius: 10px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
    transition: all 0.25s ease;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 18px rgba(0, 240, 255, 0.25);
    background: rgba(7, 13, 36, 0.9);
}

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

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

.contact-channel-card {
    background: rgba(7, 13, 36, 0.75);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(12px);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.contact-channel-card:hover {
    border-color: rgba(0, 240, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.channel-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--cyan);
    flex-shrink: 0;
}

.channel-info strong {
    display: block;
    font-size: 15px;
    color: #fff;
    font-family: var(--font-heading);
    margin-bottom: 4px;
}

.channel-info p {
    color: var(--muted);
    font-size: 13.5px;
    margin: 0;
    line-height: 1.5;
}

.channel-info a {
    color: var(--cyan);
    font-weight: 600;
}

.channel-info a:hover {
    color: #fff;
    text-shadow: 0 0 10px var(--cyan);
}

/* Alerts */
.admin-alert {
    padding: 16px 20px;
    border-radius: 10px;
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 14px;
    margin-bottom: 20px;
}

.admin-alert-success {
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.35);
    color: #34d399;
}

.admin-alert-error {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.35);
    color: #f87171;
}

.admin-alert-error ul {
    margin: 6px 0 0;
    padding-left: 18px;
}

/* ==========================================================================
   Case Study & Service Detail Layout
   ========================================================================== */
.case-study-layout {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 40px;
    align-items: flex-start;
}

.case-study-main {
    display: flex;
    flex-direction: column;
}

.case-study-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: rgba(7, 13, 36, 0.85);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 28px;
    backdrop-filter: blur(16px);
}

.sidebar-card h3 {
    font-size: 18px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}

/* ==========================================================================
   Legal Pages Layout
   ========================================================================== */
.legal-layout {
    max-width: 860px;
    margin: 0 auto;
    background: rgba(7, 13, 36, 0.7);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 50px 40px;
    backdrop-filter: blur(16px);
}

.legal-content h2 {
    font-size: 24px;
    margin: 36px 0 14px;
    color: #fff;
}

.legal-content h3 {
    font-size: 18px;
    margin: 24px 0 10px;
    color: var(--cyan);
}

.legal-content p, .legal-content li {
    color: var(--muted);
    font-size: 15.5px;
    line-height: 1.8;
}

.legal-content ul {
    padding-left: 24px;
    margin-bottom: 20px;
}

/* ==========================================================================
   404 Error Page
   ========================================================================== */
.error-404-wrap {
    min-height: calc(100vh - 200px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.error-code-glow {
    font-family: var(--font-heading);
    font-size: clamp(80px, 15vw, 160px);
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--blue-core) 50%, var(--purple-neural) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 60px rgba(0, 240, 255, 0.4);
    margin-bottom: 20px;
}

@media (max-width: 900px) {
    .about-grid, .contact-page-grid, .case-study-layout { grid-template-columns: 1fr; }
    .core-values-grid { grid-template-columns: 1fr 1fr; }
    .legal-layout { padding: 30px 20px; }
}

@media (max-width: 600px) {
    .core-values-grid { grid-template-columns: 1fr; }
    .contact-form-container { padding: 24px; }
}