/* Base Styles & Premium Dark Theme */
:root {
    --bg-deep: #050b14;
    --bg-dark: #0a1120;
    --text-main: #f8f9fa;
    --text-muted: #a0aec0;
    --accent-blue: #3b82f6;
    --accent-glow: rgba(59, 130, 246, 0.6);
    --border-light: rgba(255, 255, 255, 0.05);
    --font-logo: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-deep);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

code {
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    background: rgba(59, 130, 246, 0.1);
    color: #93c5fd;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.9em;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 6%;
    background: rgba(5, 11, 20, 0.85);
    backdrop-filter: blur(16px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
}

.nav-brand {
    font-family: var(--font-logo);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.nav-brand span {
    background: linear-gradient(135deg, #cbd5e1, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-systems {
    font-style: normal;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    -webkit-text-fill-color: var(--text-muted);
}

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

.nav-links a {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #fff;
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding: 120px 20px 80px;
    overflow: hidden;
    background-image: url('bg_chip.png');
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(10, 17, 32, 0.4), rgba(5, 11, 20, 0.95)),
        radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.3), transparent 70%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        linear-gradient(rgba(59, 130, 246, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    transform: rotateX(60deg) translateZ(-100px);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
    opacity: 0.3;
    z-index: 1;
    border-radius: 50%;
    filter: blur(80px);
    animation: pulse-glow 8s infinite alternate;
}

@keyframes pulse-glow {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.2; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.4; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
}

.hero-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-blue);
    margin-bottom: 20px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    display: inline-block;
    padding: 6px 18px;
    border-radius: 20px;
}

.glitch {
    font-family: var(--font-logo);
    font-size: 5.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    color: #fff;
    position: relative;
}

.tagline {
    font-size: 1.35rem;
    color: #cbd5e1;
    font-weight: 400;
    margin-bottom: 16px;
    opacity: 0.95;
}

.hero-sub {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 660px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.btn-primary {
    display: inline-block;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 14px 36px;
    border-radius: 30px;
    font-weight: 500;
    letter-spacing: 0.05em;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

.btn-demo {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
}

.btn-demo:hover {
    background: #2563eb;
    border-color: #2563eb;
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.5);
}

.btn-secondary {
    display: inline-block;
    color: #cbd5e1;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 14px 36px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-trust {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-trust span {
    font-size: 0.82rem;
    color: var(--text-muted);
    letter-spacing: 0.03em;
}

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem-section {
    padding: 100px 8%;
    background: var(--bg-dark);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.problem-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.problem-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ef4444;
    margin-bottom: 20px;
}

.problem-section h2 {
    font-family: var(--font-logo);
    font-size: 2.6rem;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.problem-sub {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 720px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

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

.problem-card {
    background: rgba(239, 68, 68, 0.04);
    border: 1px solid rgba(239, 68, 68, 0.15);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: left;
    transition: all 0.3s ease;
}

.problem-card:hover {
    background: rgba(239, 68, 68, 0.07);
    border-color: rgba(239, 68, 68, 0.3);
    transform: translateY(-4px);
}

.problem-icon {
    font-size: 2.2rem;
    margin-bottom: 18px;
}

.problem-card h3 {
    font-family: var(--font-logo);
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 12px;
}

.problem-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 80px 20px;
    background: var(--bg-deep);
    border-bottom: 1px solid var(--border-light);
    border-top: 1px solid var(--border-light);
}

.stat-item {
    text-align: center;
}

.stat-item h2 {
    font-family: var(--font-logo);
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    display: inline-block;
    margin-bottom: 8px;
}

.stat-item span {
    font-family: var(--font-logo);
    font-size: 2rem;
    color: var(--accent-blue);
}

.stat-item p {
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    font-weight: 500;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
    padding: 100px 8%;
    background: var(--bg-deep);
    display: flex;
    justify-content: center;
}

.about-content {
    max-width: 900px;
    text-align: center;
}

.about-content h2 {
    font-family: var(--font-logo);
    font-size: 2.8rem;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #93c5fd, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.85;
    margin-bottom: 24px;
}

.about-content p strong {
    color: #fff;
}

.about-content p span {
    color: #60a5fa;
    font-weight: 600;
}

.about-content em {
    color: #f8f9fa;
    font-style: normal;
    border-bottom: 1px dotted #3b82f6;
}

/* ============================================================
   FOUNDER SECTION
   ============================================================ */
.founder-section {
    padding: 80px 8%;
    background: var(--bg-dark);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.founder-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-blue);
    text-align: center;
    margin-bottom: 40px;
}

.founder-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 60px;
    align-items: start;
    max-width: 900px;
    margin: 0 auto 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 50px;
}

.founder-avatar {
    display: flex;
    justify-content: center;
}

.founder-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 2px solid rgba(59, 130, 246, 0.5);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.25);
}

.avatar-placeholder {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e3a5f, #3b82f6);
    border: 2px solid rgba(59, 130, 246, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-logo);
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.2);
}

.founder-bio h2 {
    font-family: var(--font-logo);
    font-size: 2rem;
    color: #fff;
    margin-bottom: 6px;
}

.founder-title {
    color: var(--accent-blue);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.founder-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.founder-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.founder-skills span {
    background: rgba(59, 130, 246, 0.08);
    color: #93c5fd;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.founder-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #cbd5e1;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-linkedin:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.recruiter-note {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 12px;
    padding: 16px 24px;
}

.recruiter-note strong {
    color: #93c5fd;
}

/* ============================================================
   SERVICES / FLEET
   ============================================================ */
.services {
    padding: 120px 8%;
    background: var(--bg-deep);
}

.section-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-family: var(--font-logo);
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #fff;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.fleet-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 36px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.fleet-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-blue), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.fleet-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(59, 130, 246, 0.1);
}

.fleet-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.fleet-card h3 {
    font-family: var(--font-logo);
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #fff;
}

.fleet-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 20px;
    line-height: 1.65;
}

.tech-stack {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tech-stack span {
    background: rgba(59, 130, 246, 0.1);
    color: #93c5fd;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.73rem;
    font-weight: 500;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.center-btn {
    margin-top: 50px;
    text-align: center;
}

/* ============================================================
   CAPABILITIES (detail rows)
   ============================================================ */
.capabilities {
    padding: 100px 8%;
    background: var(--bg-deep);
}

.capability-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
    margin-bottom: 100px;
}

.capability-row.reverse .cap-image { order: 2; }
.capability-row.reverse .cap-text { order: 1; }

.cap-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    transition: transform 0.4s ease;
}

.cap-image img:hover {
    transform: scale(1.02);
}

.cap-text h2 {
    font-family: var(--font-logo);
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 14px;
}

.cap-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.cap-text strong {
    color: var(--accent-blue);
    font-weight: 500;
    font-size: 1.1rem;
}

.features-list {
    list-style: none;
}

.features-list li {
    color: #e2e8f0;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 0.95rem;
}

.features-list li span {
    color: #60a5fa;
    background: rgba(59, 130, 246, 0.15);
    padding: 3px 8px;
    border-radius: 50%;
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* ============================================================
   TECH LOGOS
   ============================================================ */
.tech-logos {
    padding: 70px 8%;
    background: var(--bg-dark);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    text-align: center;
}

.logos-label,
.logos-target-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.logos-target-label {
    margin-top: 40px;
}

.logos-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.logo-badge {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #cbd5e1;
    transition: all 0.2s ease;
}

.logo-badge:hover {
    border-color: rgba(59, 130, 246, 0.3);
    color: #fff;
    background: rgba(59, 130, 246, 0.07);
}

.logo-target {
    background: rgba(16, 185, 129, 0.05);
    border-color: rgba(16, 185, 129, 0.15);
    color: #6ee7b7;
}

.logo-target:hover {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
}

/* ============================================================
   CASE STUDY
   ============================================================ */
.case-study {
    padding: 100px 8%;
    background: var(--bg-deep);
}

.cs-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.cs-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #10b981;
    margin-bottom: 20px;
}

.case-study h2 {
    font-family: var(--font-logo);
    font-size: 2.4rem;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.cs-sub {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 50px;
    max-width: 780px;
    line-height: 1.75;
}

.cs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.cs-challenge,
.cs-result {
    border-radius: 16px;
    padding: 36px;
}

.cs-challenge {
    background: rgba(239, 68, 68, 0.04);
    border: 1px solid rgba(239, 68, 68, 0.15);
}

.cs-result {
    background: rgba(16, 185, 129, 0.04);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.cs-challenge h3,
.cs-result h3 {
    font-family: var(--font-logo);
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 14px;
}

.cs-challenge p,
.cs-result p {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.75;
    margin-bottom: 28px;
}

.cs-challenge p strong,
.cs-result p strong {
    color: #fff;
}

.cs-before,
.cs-after {
    display: flex;
    gap: 16px;
}

.cs-metric-before,
.cs-metric-after {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
    padding: 16px 10px;
    border-radius: 10px;
}

.cs-metric-before {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.cs-metric-after {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.cs-num-before {
    font-family: var(--font-logo);
    font-size: 1.6rem;
    font-weight: 700;
    color: #fca5a5;
}

.cs-num-after {
    font-family: var(--font-logo);
    font-size: 1.6rem;
    font-weight: 700;
    color: #6ee7b7;
}

.cs-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

/* Case Study — extra impact cards */
.cs-extras {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.cs-extra-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 28px 24px;
    transition: all 0.3s ease;
}

.cs-extra-card:hover {
    border-color: rgba(59, 130, 246, 0.25);
    background: rgba(59, 130, 246, 0.03);
    transform: translateY(-4px);
}

.cs-extra-icon {
    font-size: 1.8rem;
    margin-bottom: 14px;
}

.cs-extra-card h3 {
    font-family: var(--font-logo);
    font-size: 1rem;
    color: #fff;
    margin-bottom: 10px;
}

.cs-extra-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 18px;
}

.cs-extra-card p strong {
    color: #93c5fd;
}

.cs-extra-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 14px;
    border-top: 1px solid var(--border-light);
}

.cs-extra-num {
    font-family: var(--font-logo);
    font-size: 1.5rem;
    font-weight: 700;
    color: #6ee7b7;
}

.cs-extra-label {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.cs-quote {
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid var(--accent-blue);
    border-radius: 0 12px 12px 0;
    padding: 28px 32px;
}

.cs-quote blockquote {
    font-size: 1.1rem;
    font-style: italic;
    color: #e2e8f0;
    line-height: 1.7;
    margin-bottom: 12px;
}

.cs-quote cite {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-section {
    padding: 100px 8%;
    background: var(--bg-dark);
    border-top: 1px solid var(--border-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: rgba(59, 130, 246, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.pricing-featured {
    border-color: rgba(59, 130, 246, 0.4);
    background: rgba(59, 130, 246, 0.05);
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.1);
}

.pricing-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-blue);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 20px;
}

.pricing-tier {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-blue);
    margin-bottom: 16px;
}

.pricing-price {
    font-family: var(--font-logo);
    font-size: 2.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.pricing-period {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.pricing-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border-light);
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
    flex: 1;
}

.pricing-features li {
    color: #cbd5e1;
    font-size: 0.9rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.btn-pricing {
    text-align: center;
    width: 100%;
    display: block;
    padding: 14px 20px;
}

.btn-outline-light {
    display: block;
    text-align: center;
    color: #cbd5e1;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 14px 20px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
    padding: 100px 8%;
    background: var(--bg-deep);
    border-top: 1px solid var(--border-light);
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-light);
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    color: #e2e8f0;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 500;
    text-align: left;
    padding: 24px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color 0.2s;
}

.faq-q:hover {
    color: #fff;
}

.faq-arrow {
    font-size: 1.1rem;
    color: var(--accent-blue);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-q.open .faq-arrow {
    transform: rotate(180deg);
}

.faq-a {
    display: none;
    padding: 0 0 24px;
}

.faq-a.open {
    display: block;
}

.faq-a p {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.8;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    text-align: center;
    padding: 80px 8% 40px;
    position: relative;
    overflow: hidden;
    background: var(--bg-dark);
    border-top: 1px solid var(--border-light);
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
}

.footer-content h2 {
    font-family: var(--font-logo);
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #fff;
}

.footer-content > p {
    color: var(--text-muted);
    margin-bottom: 50px;
    font-size: 1.05rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.footer-dual-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 50px;
}

.footer-cta-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 32px;
    text-align: left;
}

.footer-cta-card h3 {
    font-family: var(--font-logo);
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 10px;
}

.footer-cta-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 30px 40px;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.contact-card h3 {
    font-family: var(--font-logo);
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 4px;
}

.title-role {
    color: var(--accent-blue) !important;
    font-weight: 500;
    font-size: 0.9rem !important;
    margin-bottom: 20px !important;
    letter-spacing: 0.03em;
}

.mail-btn {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    font-size: 0.9rem;
    padding: 12px 28px;
}

.mail-btn:hover {
    background: #2563eb;
    border-color: #2563eb;
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.5);
}

.contact-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 4px;
}

.btn-linkedin-footer {
    padding: 12px 24px;
    border-radius: 30px;
}

.footer-bottom {
    border-top: 1px solid var(--border-light);
    margin-top: 50px;
    padding-top: 24px;
    color: #4a5568;
    font-size: 0.82rem;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulse-green {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

@keyframes pulse-blue {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .cs-grid {
        grid-template-columns: 1fr;
    }

    .cs-before,
    .cs-after {
        flex-direction: column;
    }

    .footer-dual-cta {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    section {
        padding: 60px 5%;
    }

    .capabilities {
        padding: 60px 5%;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .glitch {
        font-size: 3.2rem;
    }

    .hero-content {
        padding: 0 10px;
    }

    .hero-overlay {
        width: 300px;
        height: 300px;
    }

    .navbar {
        flex-direction: column;
        gap: 14px;
        padding: 16px 5%;
        position: static;
        background: var(--bg-deep);
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .stats {
        flex-direction: column;
        gap: 36px;
        padding: 50px 20px;
    }

    .fleet-grid {
        grid-template-columns: 1fr;
    }

    .capability-row {
        grid-template-columns: 1fr !important;
        gap: 36px;
        text-align: center;
    }

    .capability-row.reverse .cap-image {
        order: -1;
    }

    .features-list {
        display: inline-block;
        text-align: left;
        margin: 0 auto;
    }

    .problem-grid {
        grid-template-columns: 1fr;
    }

    .cs-extras {
        grid-template-columns: 1fr;
    }

    .founder-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
        padding: 36px 24px;
    }

    .founder-skills {
        justify-content: center;
    }

    .founder-ctas {
        justify-content: center;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .footer-dual-cta {
        grid-template-columns: 1fr;
    }
}
