/* ===================================
   GREENE SOLUTIONS - CYBERPUNK STYLES
   Blue + Cyan Neon + Retro-Futurist
=================================== */

/* CSS Variables */
:root {
    --primary-dark: #0a0a1a;
    --secondary-dark: #0d1628;
    --accent-blue: #0066ff;
    --accent-cyan: #00ff88;
    --accent-cyan-dim: rgba(0, 255, 136, 0.3);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    --gold: #ffd700;
    --green: #00ff88;
    --grid-color: rgba(0, 102, 255, 0.15);
    --glow-blue: 0 0 20px rgba(0, 102, 255, 0.5);
    --glow-cyan: 0 0 30px rgba(0, 255, 136, 0.5);
    --font-display: 'Orbitron', monospace;
    --font-body: 'Rajdhani', sans-serif;
    --font-mono: 'Space Mono', monospace;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--primary-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ===================================
   NAVIGATION
=================================== */

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.3));
}

.nav-links {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.nav-link {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.4rem 0.6rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-cyan);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-cyan);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-cta {
    background: var(--accent-blue);
    border: 1px solid var(--accent-cyan);
    border-radius: 2px;
    color: var(--text-primary) !important;
}

.nav-cta:hover {
    background: var(--accent-cyan);
    color: var(--primary-dark) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.toggle-line {
    width: 25px;
    height: 2px;
    background: var(--accent-cyan);
    transition: all 0.3s ease;
}

@media (max-width: 900px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 26, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-150%);
        opacity: 0;
        transition: all 0.3s ease;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-toggle {
        display: flex;
    }
}

/* Adjust body for nav spacing */
body {
    padding-top: 70px;
}

.hero {
    padding-top: 0;
}

/* ===================================
   ANIMATED BACKGROUND
=================================== */

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.55;
    filter: saturate(0.7) sepia(0.15) hue-rotate(95deg) brightness(1.1);
}

/* Service page video heroes - more dimmed for readability */
.lp-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.4;
    filter: saturate(0.6) brightness(0.9) contrast(1.1);
}

.lp-hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(10, 10, 20, 0.5) 0%, 
        rgba(0, 40, 80, 0.45) 40%,
        rgba(0, 30, 60, 0.55) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Mobile responsiveness for video heroes */
@media (max-width: 768px) {
    .hero-video,
    .lp-hero-video {
        opacity: 0.45;
        object-position: 70% 50%;
    }
    
    .lp-hero-video-overlay {
        background: linear-gradient(180deg, 
            rgba(10, 10, 20, 0.55) 0%, 
            rgba(0, 40, 80, 0.5) 50%,
            rgba(10, 10, 20, 0.65) 100%);
    }
}

@media (max-width: 480px) {
    .hero-video,
    .lp-hero-video {
        opacity: 0.35;
    }
    
    .lp-hero-video-overlay {
        background: linear-gradient(180deg, 
            rgba(10, 10, 20, 0.65) 0%, 
            rgba(0, 40, 80, 0.55) 50%,
            rgba(10, 10, 20, 0.75) 100%);
    }
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 0.2) 0%, 
        rgba(0, 0, 0, 0.4) 50%, 
        rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
    pointer-events: none;
}

.grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 102, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 102, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: -4;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
    100% { transform: perspective(500px) rotateX(60deg) translateY(50px); }
}

.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.1) 0px,
        rgba(0, 0, 0, 0.1) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
    z-index: 1000;
    opacity: 0.4;
}

.glitch-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 999;
    opacity: 0;
    background: rgba(0, 255, 136, 0.03);
}

/* ===================================
   HERO SECTION
=================================== */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at center top, rgba(0, 102, 255, 0.15) 0%, transparent 60%);
}

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

.logo-container {
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out;
}

.logo-img {
    width: 120px;
    height: 120px;
    filter: drop-shadow(var(--glow-cyan));
    animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.tagline {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--accent-cyan);
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.tagline .divider {
    color: var(--text-muted);
    margin: 0 0.5rem;
}

.glitch {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 6px;
    position: relative;
    text-shadow: var(--glow-blue);
    animation: fadeInUp 0.8s ease-out 0.2s both;
    color: var(--text-primary);
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    color: var(--accent-cyan);
    animation: glitch-1 2s infinite linear alternate-reverse;
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
}

.glitch::after {
    color: var(--accent-blue);
    animation: glitch-2 3s infinite linear alternate-reverse;
    clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
}

@keyframes glitch-1 {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-3px); }
    40% { transform: translateX(3px); }
    60% { transform: translateX(-1px); }
    80% { transform: translateX(1px); }
}

@keyframes glitch-2 {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(2px); }
    40% { transform: translateX(-2px); }
    60% { transform: translateX(1px); }
    80% { transform: translateX(-1px); }
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin: 1.5rem 0;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-subtitle .highlight {
    color: var(--accent-cyan);
    text-shadow: var(--glow-cyan);
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    color: white;
    box-shadow: var(--glow-blue);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.6);
}

.cta-button.secondary {
    background: transparent;
    color: var(--accent-cyan);
    border: 1px solid var(--accent-cyan);
}

.cta-button.secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    box-shadow: var(--glow-cyan);
}

.cta-button.large {
    padding: 1.2rem 3rem;
    font-size: 1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: bounce 2s infinite;
}

.scroll-text {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent-cyan), transparent);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

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

/* ===================================
   STATS SECTION
=================================== */

.stats-section {
    background: var(--secondary-dark);
    border-top: 1px solid rgba(0, 102, 255, 0.2);
    border-bottom: 1px solid rgba(0, 102, 255, 0.2);
    padding: 3rem 2rem;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--accent-cyan);
    text-shadow: var(--glow-cyan);
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 900;
    color: var(--accent-blue);
}

.stat-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.5rem;
}

/* ===================================
   SECTIONS - GENERAL
=================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 5rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--accent-cyan);
    letter-spacing: 4px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.section-title .highlight {
    color: var(--accent-cyan);
    text-shadow: var(--glow-cyan);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 1rem auto 0;
}

/* ===================================
   MISSION SECTION
=================================== */

.mission-section {
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.mission-card {
    background: rgba(13, 22, 40, 0.8);
    border: 1px solid rgba(0, 102, 255, 0.2);
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-cyan), var(--accent-blue));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.mission-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 102, 255, 0.1);
}

.card-icon {
    margin-bottom: 1.5rem;
}

.card-icon .icon-svg {
    width: 20px !important;
    height: 20px !important;
    color: var(--accent-cyan);
}

.mission-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.mission-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

.mission-card em {
    color: var(--accent-cyan);
    font-style: normal;
}

.mission-card strong {
    color: var(--accent-cyan);
}

/* ===================================
   SERVICES SECTION
=================================== */

.services-section {
    background: var(--secondary-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-card {
    background: rgba(10, 10, 26, 0.9);
    border: 1px solid rgba(0, 102, 255, 0.15);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.5s ease;
    pointer-events: none;
}

.card-glow.cyan {
    background: radial-gradient(circle, rgba(0, 255, 136, 0.15) 0%, transparent 70%);
}

.card-glow.gold {
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
}

.card-glow.green {
    background: radial-gradient(circle, rgba(0, 255, 136, 0.15) 0%, transparent 70%);
}

.card-glow.purple {
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
}

.card-glow.amber {
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
}

.service-card:hover .card-glow {
    transform: scale(1.5);
}

.service-card:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.2);
    transform: translateY(-5px);
}

.service-icon {
    margin-bottom: 1.5rem;
}

.icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2), rgba(0, 212, 255, 0.1));
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
}

.icon-circle .icon-svg {
    width: 18px !important;
    height: 18px !important;
    color: var(--accent-cyan);
}

.icon-circle.cyan .icon-svg {
    color: #00ff88;
}

.icon-circle.gold .icon-svg {
    color: #ffd700;
}

.icon-circle.green .icon-svg {
    color: #00ff88;
}

.icon-circle.purple .icon-svg {
    color: #a855f7;
}

.icon-circle.amber .icon-svg {
    color: #f59e0b;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-card > p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.service-features li {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
}

.service-link {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-cyan);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--accent-cyan);
    transition: all 0.3s ease;
}

.service-link:hover {
    background: var(--accent-cyan);
    color: var(--primary-dark);
    box-shadow: var(--glow-cyan);
}

/* ===================================
   TRUST SECTION
=================================== */

.trust-section {
    background: var(--primary-dark);
    border-top: 1px solid rgba(0, 102, 255, 0.1);
    border-bottom: 1px solid rgba(0, 102, 255, 0.1);
    padding: 4rem 0;
}

.logos-carousel {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.logo-item {
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.logo-item:hover {
    opacity: 1;
}

.logo-placeholder {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* ===================================
   CASE STUDIES
=================================== */

.cases-section {
    background: var(--secondary-dark);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.case-card {
    background: rgba(10, 10, 26, 0.8);
    border: 1px solid rgba(0, 102, 255, 0.15);
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.case-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.case-card:hover::after {
    transform: scaleX(1);
}

.case-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-5px);
}

.case-tag {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--accent-cyan);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.case-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

.case-link {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--accent-cyan);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.case-link:hover {
    gap: 0.8rem;
}

/* ===================================
   CTA SECTION
=================================== */

.cta-section {
    background: linear-gradient(180deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
}

.cta-title .highlight {
    color: var(--accent-cyan);
    text-shadow: var(--glow-cyan);
}

.cta-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.contact-info {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-secondary);
    font-family: var(--font-mono);
    font-size: 0.9rem;
}

.contact-icon {
    font-size: 1.2rem;
}

.icon-svg-inline {
    width: 0.9rem !important;
    height: 0.9rem !important;
    vertical-align: middle;
}

.icon-svg-tiny {
    width: 0.75rem !important;
    height: 0.75rem !important;
    vertical-align: middle;
    margin-right: 0.25rem;
    display: inline-block;
}

.capability-icon .icon-svg {
    width: 18px !important;
    height: 18px !important;
    color: var(--accent-cyan);
}

/* ===================================
   FOOTER
=================================== */

.footer {
    background: var(--primary-dark);
    border-top: 1px solid rgba(0, 102, 255, 0.2);
    padding: 4rem 2rem 2rem;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    width: 80px;
    height: 80px;
    filter: drop-shadow(var(--glow-blue));
    margin-bottom: 1rem;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(0, 212, 255, 0.2);
    box-shadow: var(--glow-cyan);
}

.social-icon {
    color: var(--accent-cyan);
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
}

.footer-column h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent-cyan);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
}

.footer-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.3), transparent);
    margin-bottom: 2rem;
}

.copyright {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.footer-tagline .highlight {
    color: var(--accent-cyan);
}

/* ===================================
   RESPONSIVE
=================================== */

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero {
        padding: 1rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .logos-carousel {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .glitch {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .tagline {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }
}

/* ===================================
   UTILITIES
=================================== */

.highlight {
    color: var(--accent-cyan);
}

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===================================
   SERVICE PAGES
=================================== */

.service-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
}

.service-hero-content {
    max-width: 800px;
    z-index: 2;
}

.service-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.service-title .highlight {
    color: var(--accent-cyan);
    text-shadow: var(--glow-cyan);
}

.service-tagline {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.service-section {
    background: var(--primary-dark);
    padding: 5rem 0;
}

.service-section.dark {
    background: var(--secondary-dark);
}

.service-section .content-grid {
    max-width: 800px;
    margin: 0 auto;
}

.service-section .content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.service-section .content-text p {
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    margin: 1.5rem 0;
}

.feature-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-primary);
}

.feature-list li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-size: 1.2rem;
}

.feature-list.numbered {
    counter-reset: item;
}

.feature-list.numbered li::before {
    content: counter(item) '.';
    counter-increment: item;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--accent-blue);
}

/* Capabilities Grid */
.capabilities-section {
    background: var(--secondary-dark);
    padding: 5rem 0;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.capability-card {
    background: rgba(10, 10, 26, 0.8);
    border: 1px solid rgba(0, 102, 255, 0.2);
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.capability-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
}

.capability-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.capability-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* Inbound AI SDR Section */
.inbound-sdr-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.inbound-sdr-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.inbound-sdr-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.inbound-benefits h3,
.inbound-process h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.inbound-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.inbound-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 102, 255, 0.1);
}

.inbound-list li:last-child {
    border-bottom: none;
}

.benefit-stat {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(245, 158, 11, 0.2));
    border: 1px solid rgba(168, 85, 247, 0.3);
    padding: 0.5rem 1rem;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: #a855f7;
    white-space: nowrap;
}

.benefit-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.benefit-text strong {
    color: #f59e0b;
}

.inbound-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.inbound-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(10, 10, 26, 0.5);
    border: 1px solid rgba(168, 85, 247, 0.2);
    transition: all 0.3s ease;
}

.inbound-step:hover {
    border-color: rgba(168, 85, 247, 0.5);
    transform: translateX(5px);
}

.inbound-step .step-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    flex-shrink: 0;
}

.inbound-step .step-icon .icon-svg {
    width: 20px;
    height: 20px;
    color: #a855f7;
}

.inbound-step .step-content h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.inbound-step .step-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.inbound-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 102, 255, 0.2);
    position: relative;
    z-index: 1;
}

.inbound-cta-text {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.inbound-cta-text a {
    color: #a855f7;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.inbound-cta-text a:hover {
    color: #f59e0b;
}

/* Use Case Grid */
.use-case-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.use-case-card {
    background: rgba(10, 10, 26, 0.6);
    border: 1px solid rgba(0, 255, 136, 0.2);
    padding: 1.5rem 2rem;
}

.use-case-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--accent-cyan);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.use-case-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Comparison Grid */
.comparison-grid {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.comparison-box {
    padding: 2rem;
    max-width: 300px;
    text-align: center;
}

.comparison-box.old {
    background: rgba(255, 100, 100, 0.1);
    border: 1px solid rgba(255, 100, 100, 0.3);
}

.comparison-box.new {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.comparison-box h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.comparison-box.old h4 {
    color: #ff6464;
}

.comparison-box.new h4 {
    color: var(--accent-cyan);
}

.comparison-box p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.comparison-arrow {
    font-size: 2rem;
    color: var(--accent-blue);
}

/* Process Steps */
.process-section {
    background: var(--primary-dark);
    padding: 5rem 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2rem 1rem;
}

.step-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-blue);
    margin-bottom: 1rem;
    opacity: 0.8;
}

.process-step h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===================================
   AI CREATIVITY SHOWCASE
=================================== */
.creativity-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, rgba(0, 102, 255, 0.1) 50%, var(--primary-dark) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.creativity-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 255, 136, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.creativity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.creativity-content {
    padding-right: 2rem;
}

.creativity-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.creativity-stat {
    margin-top: 2rem;
    padding: 1rem 1.5rem;
    background: rgba(0, 255, 136, 0.1);
    border-left: 3px solid var(--accent-cyan);
    border-radius: 0 8px 8px 0;
}

.creativity-stat .stat-label {
    color: var(--accent-cyan);
    font-size: 0.9rem;
    font-weight: 500;
}

.creativity-video {
    position: relative;
}

.video-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.2), 0 0 100px rgba(0, 102, 255, 0.1);
}

.creativity-clip {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.video-container .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
    border-radius: 16px;
}

.video-badge {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.video-badge span {
    color: var(--accent-cyan);
    font-size: 0.8rem;
    font-weight: 600;
}

/* Creativity responsive */
@media (max-width: 900px) {
    .creativity-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .creativity-content {
        padding-right: 0;
        text-align: center;
    }
    
    .creativity-stat {
        display: inline-block;
    }
}

/* Active nav link */
.nav-link.active {
    color: var(--accent-cyan) !important;
}

.nav-link.active::after {
    width: 80%;
}

/* Service card as link */
.service-card {
    text-decoration: none;
    display: block;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-cta {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--accent-cyan);
    transition: all 0.3s ease;
}

.service-card:hover .service-cta {
    background: var(--accent-cyan);
    color: var(--primary-dark);
}

@media (max-width: 900px) {
    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .use-case-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-grid {
        flex-direction: column;
    }
    
    .comparison-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 600px) {
    .capabilities-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   LANDING PAGE PATTERNS
   Based on Unbounce best practices
=================================== */

/* Landing Page Hero */
.lp-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.lp-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.lp-hero-content {
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 102, 255, 0.2);
    border: 1px solid var(--accent-blue);
    color: var(--accent-cyan);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.lp-headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.lp-headline .highlight {
    color: var(--accent-cyan);
    text-shadow: var(--glow-cyan);
}

.lp-subheadline {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.lp-hero-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cta-note, .cta-subtext {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Visual Card (Terminal/Code style) */
.lp-hero-visual {
    position: relative;
}

.visual-card {
    background: rgba(10, 10, 26, 0.9);
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.visual-header {
    background: rgba(0, 0, 0, 0.3);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.visual-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.visual-dot.red { background: #ff5f56; }
.visual-dot.yellow { background: #ffbd2e; }
.visual-dot.green { background: #27c93f; }

.visual-title {
    margin-left: 1rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 0.8rem;
}

.visual-code {
    padding: 1.5rem;
}

.visual-code pre {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.code-comment { color: #6a9955; }
.code-keyword { color: #c586c0; }
.code-func { color: #dcdcaa; }
.code-name { color: #9cdcfe; }
.code-string { color: #ce9178; }
.code-output { color: var(--accent-blue); display: block; margin: 0.25rem 0; }
.code-success { color: var(--accent-cyan); font-weight: bold; margin-top: 1rem; display: block; }

/* Proof Strip */
.proof-strip {
    background: var(--secondary-dark);
    border-top: 1px solid rgba(0, 102, 255, 0.2);
    border-bottom: 1px solid rgba(0, 102, 255, 0.2);
    padding: 2rem 0;
}

.proof-strip .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.proof-logos {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.proof-item {
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.proof-logo {
    color: var(--text-secondary);
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.proof-logo:hover {
    opacity: 1;
}

.proof-stats {
    display: flex;
    gap: 3rem;
}

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

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent-cyan);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Pain → Solution Section */
.pain-solution-section {
    background: var(--primary-dark);
    padding: 5rem 0;
}

.pain-solution-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: start;
}

.pain-column, .solution-column {
    padding: 2rem;
}

.pain-header, .solution-header {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pain-header {
    color: #ff6464;
}

.solution-header {
    color: var(--accent-cyan);
}

.pain-icon, .solution-icon {
}

.pain-icon .icon-svg,
.solution-icon .icon-svg {
    width: 14px !important;
    height: 14px !important;
    vertical-align: middle;
    color: var(--accent-cyan);
}

.pain-list, .solution-list {
    list-style: none;
}

.pain-list li, .solution-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
}

.solution-list li {
    color: var(--text-primary);
}

.arrow-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 3rem;
}

.arrow-icon {
    font-size: 2.5rem;
    color: var(--accent-blue);
}

/* Transformation Section */
.transformation-section {
    background: var(--secondary-dark);
    padding: 5rem 0;
}

.section-header.centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.transformation-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.transform-card {
    background: rgba(10, 10, 26, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
}

.transform-card.before {
    border-left: 3px solid #ff6464;
}

.transform-card.after {
    border-left: 3px solid var(--accent-cyan);
}

.transform-header {
    margin-bottom: 1.5rem;
}

.transform-label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 0.25rem;
}

.transform-label.before { color: #ff6464; }
.transform-label.after { color: var(--accent-cyan); }

.transform-time {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.transform-item {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.transform-item.success {
    color: var(--accent-cyan);
}

.transform-arrow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-blue);
}

.arrow-line {
    width: 30px;
    height: 2px;
    background: var(--accent-blue);
}

.arrow-head {
    font-size: 1.5rem;
}

/* Benefits Section */
.benefits-section {
    background: var(--primary-dark);
    padding: 5rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: rgba(10, 10, 26, 0.6);
    border: 1px solid rgba(0, 102, 255, 0.2);
    padding: 2rem;
    position: relative;
}

.benefit-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-blue);
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.benefit-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--accent-cyan);
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.benefit-metric {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent-cyan);
}

.metric-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Testimonial Section */
.testimonial-section {
    background: var(--secondary-dark);
    padding: 4rem 0;
}

.testimonial-card.large {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: rgba(0, 102, 255, 0.05);
    border: 1px solid rgba(0, 102, 255, 0.2);
}

.testimonial-quote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    color: white;
}

.author-info {
    text-align: left;
}

.author-name {
    display: block;
    font-family: var(--font-display);
    color: var(--text-primary);
}

.author-title {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Capability Result */
.capability-result {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--accent-cyan);
    font-weight: 600;
}

/* CTA Form Layout */
.cta-buttons.stacked {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .lp-hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .lp-hero-visual {
        order: -1;
    }
    
    .pain-solution-grid,
    .transformation-grid {
        grid-template-columns: 1fr;
    }
    
    .arrow-divider,
    .transform-arrow {
        justify-content: center;
        padding: 1rem 0;
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .proof-strip .container {
        flex-direction: column;
        text-align: center;
    }
    
    .proof-stats {
        gap: 2rem;
    }
}

/* ===================================
   CASE STUDIES PAGE
=================================== */

.case-studies-section {
    background: var(--primary-dark);
    padding: 5rem 0;
}

.case-study-card {
    background: rgba(10, 10, 26, 0.8);
    border: 1px solid rgba(0, 102, 255, 0.2);
    padding: 2.5rem;
    margin-bottom: 3rem;
}

.case-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.case-company {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.case-logo {
}

.case-logo .icon-svg {
    width: 28px;
    height: 28px;
    color: var(--accent-cyan);
}

.case-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
}

.case-industry {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.case-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.case-problem, .case-solution, .case-results {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
}

.case-problem h4 {
    color: #ff6b6b;
}

.case-solution h4 {
    color: var(--accent-blue);
}

.case-results h4 {
    color: var(--accent-cyan);
}

.case-content h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.case-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.result-item {
    text-align: center;
    padding: 0.75rem;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.result-metric {
    display: block;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-cyan);
}

.result-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.case-quote {
    border-left: 3px solid var(--accent-blue);
    padding-left: 1.5rem;
    font-style: italic;
}

.case-quote blockquote {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .case-content {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===================================
   CONTACT PAGE
=================================== */

.contact-section {
    background: var(--secondary-dark);
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.contact-card {
    background: rgba(10, 10, 26, 0.6);
    border: 1px solid rgba(0, 102, 255, 0.2);
    padding: 2.5rem;
}

.contact-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-icon {
    font-size: 2rem;
}

.contact-header h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-primary);
}

.contact-desc {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.calendly-placeholder {
    background: rgba(0, 0, 0, 0.3);
    border: 1px dashed rgba(0, 102, 255, 0.4);
    padding: 3rem;
    text-align: center;
    margin-bottom: 2rem;
}

.placeholder-text {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.placeholder-alt {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.direct-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.3);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(0, 102, 255, 0.2);
    border-color: var(--accent-cyan);
}

.method-icon {
    font-size: 1.5rem;
}

.method-label {
    font-family: var(--font-mono);
    color: var(--text-primary);
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background: rgba(10, 10, 26, 0.6);
    border: 1px solid rgba(0, 102, 255, 0.2);
    padding: 2rem;
}

.sidebar-card h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.sidebar-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-links {
    list-style: none;
}

.service-links li {
    margin-bottom: 0.75rem;
}

.service-links a {
    color: var(--accent-cyan);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.service-links a:hover {
    color: var(--accent-blue);
}

.sidebar-card.stats .stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.sidebar-card.stats .stat {
    text-align: center;
}

.sidebar-card.stats .stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-cyan);
}

.sidebar-card.stats .stat-text {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ===================================
   FAQ SECTION
=================================== */

.faq-section {
    background: var(--primary-dark);
    padding: 5rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(10, 10, 26, 0.6);
    border: 1px solid rgba(0, 102, 255, 0.2);
    padding: 1.5rem;
}

.faq-question {
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--accent-cyan);
    margin-bottom: 0.75rem;
}

.faq-answer {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .sidebar-card.stats .stat-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   CHAT WIDGET
=================================== */

#chat-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    font-family: var(--font-body);
}

.chat-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    border: none;
    border-radius: 50px;
    color: var(--primary-dark);
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: var(--glow-cyan);
    transition: all 0.3s ease;
}

.chat-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.6);
}

.chat-label {
    letter-spacing: 1px;
}

.chat-window {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 380px;
    max-height: 520px;
    background: rgba(13, 22, 40, 0.98);
    border: 1px solid var(--accent-blue);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), var(--glow-blue);
    display: none;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s ease;
}

#chat-widget.open .chat-window {
    display: flex;
    opacity: 1;
    transform: translateY(0) scale(1);
}

.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: rgba(0, 102, 255, 0.1);
    border-bottom: 1px solid rgba(0, 102, 255, 0.3);
}

.chat-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-cyan);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.chat-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
}

.chat-close:hover {
    color: var(--accent-cyan);
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 360px;
}

.chat-message {
    max-width: 85%;
    animation: fadeIn 0.3s ease;
}

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

.chat-message.user {
    align-self: flex-end;
}

.chat-message.assistant {
    align-self: flex-start;
}

.message-content {
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.chat-message.user .message-content {
    background: linear-gradient(135deg, var(--accent-blue), #0044cc);
    color: white;
    border-bottom-right-radius: 4px;
}

.chat-message.assistant .message-content {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 4px 0;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: var(--accent-cyan);
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-4px); }
}

.chat-input-container {
    display: flex;
    gap: 8px;
    padding: 16px;
    background: rgba(10, 10, 26, 0.8);
    border-top: 1px solid rgba(0, 102, 255, 0.2);
}

#chat-input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 24px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
}

#chat-input::placeholder {
    color: var(--text-muted);
}

#chat-input:focus {
    border-color: var(--accent-cyan);
}

#chat-send {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    border: none;
    border-radius: 50%;
    color: var(--primary-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

#chat-send:hover {
    transform: scale(1.05);
    box-shadow: var(--glow-cyan);
}

#chat-send:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Mobile adjustments */
@media (max-width: 480px) {
    #chat-widget {
        bottom: 16px;
        right: 16px;
    }
    
    .chat-window {
        width: calc(100vw - 32px);
        right: -8px;
    }
    
    .chat-toggle {
        padding: 10px 16px;
    }
    
    .chat-label {
        display: none;
    }
}

/* ===================================
   COMPREHENSIVE RESPONSIVE SYSTEM
   Auto-Detect + Fluid + Modern CSS
=================================== */

/* ----------------------------------
   FLUID TYPOGRAPHY (Auto-Scaling)
---------------------------------- */

/* Headlines scale automatically between breakpoints */
.glitch,
.hero-title,
.lp-headline,
.service-title {
    font-size: clamp(1.75rem, 5vw, 4rem) !important;
}

.section-title,
.case-name {
    font-size: clamp(1.5rem, 4vw, 3rem) !important;
}

.card-title,
.benefit-card h3,
.capability-card h3 {
    font-size: clamp(1rem, 2.5vw, 1.25rem) !important;
}

/* Body text fluid scaling */
.hero-subtitle,
.lp-subheadline,
.content-text {
    font-size: clamp(1rem, 2vw, 1.35rem) !important;
}

.hero-desc,
.card-desc,
.benefit-card p,
.capability-card p {
    font-size: clamp(0.9rem, 1.8vw, 1.1rem) !important;
}

/* Tagline small text */
.tagline,
.hero-badge {
    font-size: clamp(0.7rem, 1.5vw, 0.9rem) !important;
}

/* Stats numbers */
.stat-number,
.metric-value {
    font-size: clamp(1.5rem, 4vw, 3rem) !important;
}

/* ----------------------------------
   AUTO-FIT GRIDS (No Breakpoints)
---------------------------------- */

/* Team grid - automatic columns */
.team-grid,
.agents-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important;
    gap: clamp(1rem, 3vw, 2rem) !important;
}

/* Capabilities auto-fit */
.capabilities-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: clamp(1rem, 3vw, 2rem) !important;
}

/* Services grid */
.services-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: clamp(1.5rem, 4vw, 2.5rem) !important;
}

/* Process steps auto-fit */
.process-steps {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)) !important;
    gap: clamp(1.5rem, 4vw, 2rem) !important;
}

/* Stats container - smaller min on mobile */
.stats-container {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)) !important;
    gap: clamp(1rem, 3vw, 2rem) !important;
}

/* Mission grid */
.mission-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: clamp(1.5rem, 4vw, 3rem) !important;
}

/* Results grid */
.results-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)) !important;
    gap: 1rem !important;
}

/* Use case grid */
.use-case-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 2rem !important;
}

/* ----------------------------------
   TOUCH TARGETS (44px minimum)
---------------------------------- */

/* Mobile nav links */
@media (max-width: 900px) {
    .nav-link {
        min-height: 44px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0.75rem 1rem !important;
    }
    
    .nav-toggle {
        min-width: 44px !important;
        min-height: 44px !important;
    }
}

/* Buttons - touch friendly */
.cta-button,
.hero-cta,
.service-cta {
    min-height: 44px !important;
    min-width: 44px !important;
}

/* Chat toggle button */
.chat-toggle {
    min-width: 44px !important;
    min-height: 44px !important;
    padding: 12px 20px !important;
}

/* Contact methods */
.contact-method {
    min-height: 56px !important;
}

/* ----------------------------------
   REDUCED MOTION (Accessibility)
---------------------------------- */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .glitch {
        animation: none !important;
    }
    
    .hero-video,
    .lp-hero-video {
        display: none !important;
    }
    
    .scanlines,
    .glitch-overlay {
        display: none !important;
    }
    
    .hero-video-overlay,
    .lp-hero-video-overlay {
        background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark)) !important;
    }
}

/* ----------------------------------
   TABLET OPTIMIZATION (768px-1024px)
---------------------------------- */

@media (min-width: 768px) and (max-width: 1024px) {
    /* Hero sections */
    .hero {
        min-height: 80vh !important;
    }
    
    .lp-hero {
        min-height: 70vh !important;
    }
    
    /* Landing page hero stacked on tablet */
    .lp-hero-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center !important;
    }
    
    .lp-hero-visual {
        order: -1 !important;
        max-width: 500px !important;
        margin: 0 auto !important;
    }
    
    /* Benefits grid 2 columns */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    /* Contact grid stacked */
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    /* Case study content */
    .case-content {
        grid-template-columns: 1fr !important;
    }
    
    /* Transformation grid stacked */
    .transformation-grid,
    .pain-solution-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .arrow-divider,
    .transform-arrow {
        padding: 0.5rem 0 !important;
    }
    
    /* Video opacity more dim for readability */
    .hero-video {
        opacity: 0.4 !important;
    }
    
    .lp-hero-video {
        opacity: 0.35 !important;
    }
    
    /* Service section padding */
    section,
    .service-section,
    .capabilities-section,
    .benefits-section,
    .transformation-section,
    .testimonial-section {
        padding: 3rem 1.5rem !important;
    }
}

/* ----------------------------------
   MOBILE OPTIMIZATION(<768px)
---------------------------------- */

@media (max-width: 767px) {
    /* Navigation */
    .main-nav {
        padding: 0.5rem 0 !important;
    }
    
    .nav-container {
        padding: 0 1rem !important;
    }
    
    .nav-logo img {
        height: 40px !important;
    }
    
    /* Body spacing */
    body {
        padding-top: 60px !important;
    }
    
    /* Hero mobile */
    .hero {
        min-height: 90vh !important;
        padding: 1rem !important;
    }
    
    .hero-content {
        padding: 1rem !important;
    }
    
    .logo-img {
        max-width: 120px !important;
    }
    
    /* Hero video mobile */
    .hero-video {
        opacity: 0.35 !important;
    }
    
    .lp-hero-video {
        opacity: 0.3 !important;
    }
    
    .hero-video-overlay,
    .lp-hero-video-overlay {
        background: linear-gradient(
            180deg,
            rgba(10, 10, 26, 0.7) 0%,
            rgba(10, 10, 26, 0.85) 100%
        ) !important;
    }
    
    /* CTA buttons stacked */
    .cta-group,
    .cta-buttons,
    .lp-hero-cta {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 1rem !important;
    }
    
    .cta-button,
    .hero-cta {
        width: 100% !important;
        text-align: center !important;
    }
    
    /* LP Hero stacked */
    .lp-hero {
        min-height: auto !important;
        padding: 5rem 1rem 3rem !important;
    }
    
    .lp-hero-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .lp-hero-visual {
        order: -1 !important;
    }
    
    .visual-card {
        font-size: 0.8rem !important;
    }
    
    /* Section padding mobile */
    section,
    .service-section,
    .capabilities-section,
    .benefits-section,
    .transformation-section,
    .testimonial-section,
    .case-studies-section,
    .contact-section,
    .about-section,
    .inbound-sdr-section {
        padding: 2.5rem 1rem !important;
    }
    
    /* Inbound SDR mobile */
    .inbound-sdr-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .inbound-list li {
        flex-direction: column;
        gap: 0.5rem !important;
    }
    
    .benefit-stat {
        font-size: 0.75rem !important;
    }
    
    .inbound-step {
        padding: 0.75rem !important;
    }
    
    /* Cards padding */
    .service-card,
    .mission-card,
    .capability-card,
    .benefit-card,
    .case-study-card,
    .team-card,
    .contact-card,
    .sidebar-card {
        padding: 1.5rem !important;
    }
    
    /* Cards full width */
    .card-grid,
    .benefits-grid,
    .use-case-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Contact grid */
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    /* Footer mobile */
    .footer-content {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 2rem !important;
    }
    
    .footer-column {
        text-align: center !important;
    }
    
    .footer-links {
        justify-content: center !important;
    }
    
    .social-links {
        justify-content: center !important;
    }
    
    /* Proof strip mobile */
    .proof-strip .container {
        flex-direction: column !important;
        gap: 1.5rem !important;
    }
    
    .proof-stats {
        gap: 1.5rem !important;
    }
    
    /* Transformation stacked */
    .transformation-grid,
    .pain-solution-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .transform-card {
        padding: 1.5rem !important;
    }
    
    /* Case study */
    .case-content {
        grid-template-columns: 1fr !important;
    }
    
    .case-header {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    
    /* Stats numbers */
    .stat-number {
        font-size: clamp(1.5rem, 2.5rem) !important;
    }
    
    /* Scroll indicator hide on mobile */
    .scroll-indicator {
        display: none !important;
    }
    
    /* Decorative elements simplified */
    .scanlines,
    .grid-bg,
    .glitch-overlay {
        pointer-events: none !important;
    }
    
    /* FAQ grid */
    .faq-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ----------------------------------
   SMALL MOBILE (<480px)
---------------------------------- */

@media (max-width: 479px) {
    /* Minimal padding */
    body {
        padding-top: 55px !important;
    }
    
    section,
    .service-section,
    .capabilities-section,
    .benefits-section,
    .transformation-section,
    .about-section {
        padding: 2rem 0.75rem !important;
    }
    
    /* Hero minimal */
    .hero {
        min-height: 85vh !important;
        padding: 0.5rem !important;
    }
    
    .logo-img {
        max-width: 100px !important;
    }
    
    .glitch {
        font-size: clamp(1.25rem, 6vw, 1.75rem) !important;
        letter-spacing: 1px !important;
    }
    
    .tagline {
        font-size: 0.65rem !important;
        letter-spacing: 1px !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
    }
    
    .hero-desc {
        font-size: 0.85rem !important;
    }
    
    /* Cards compact */
    .team-card,
    .capability-card,
    .benefit-card {
        padding: 1rem !important;
    }
    
    /* Team card image smaller */
    .team-img {
        width: 120px !important;
        height: 120px !important;
    }
    
    /* Visual card compact */
    .visual-card {
        font-size: 0.75rem !important;
    }
    
    .visual-code pre {
        font-size: 0.7rem !important;
    }
    
    /* Testimonial */
    .testimonial-card.large {
        padding: 1.5rem !important;
    }
    
    .testimonial-quote {
        font-size: 1.1rem !important;
    }
    
    /* Chat widget minimal */
    #chat-widget {
        bottom: 12px !important;
        right: 12px !important;
    }
    
    .chat-window {
        width: calc(100vw - 24px) !important;
        height: 70vh !important;
        right: -6px !important;
    }
    
    /* Process steps single column */
    .process-steps {
        grid-template-columns: 1fr !important;
    }
    
    .step-number {
        font-size: 2rem !important;
    }
    
    /* Decorative elements off */
    .scanlines,
    .grid-bg {
        display: none !important;
    }
}

/* ----------------------------------
   LARGE DESKTOP (1400px+)
---------------------------------- */

@media (min-width: 1400px) {
    .nav-container,
    .container,
    .hero-content,
    .lp-hero-grid {
        max-width: 1400px !important;
    }
    
    /* Wider containers */
    .stats-container,
    .capabilities-grid,
    .benefits-grid,
    .services-grid {
        max-width: 1400px !important;
        margin: 0 auto !important;
    }
    
    /* Larger headlines */
    .glitch,
    .lp-headline {
        font-size: clamp(2.5rem, 5vw, 4.5rem) !important;
    }
}

/* ----------------------------------
   LANDSCAPE MOBILE
---------------------------------- */

@media (max-width: 900px) and (orientation: landscape) {
    .hero {
        min-height: 100vh !important;
    }
    
    .hero-content {
        padding-top: 3rem !important;
    }
    
    /* Glitch smaller in landscape */
    .glitch {
        font-size: clamp(1.5rem, 4vh, 2.5rem) !important;
    }
    
    /* Hide scroll indicator */
    .scroll-indicator {
        display: none !important;
    }
}

/* ----------------------------------
   PRINT STYLES
---------------------------------- */

@media print {
    /* Hide non-essential */
    .main-nav,
    .hero-video,
    .lp-hero-video,
    .scanlines,
    .grid-bg,
    .glitch-overlay,
    .scroll-indicator,
    #chat-widget,
    .chat-window {
        display: none !important;
    }
    
    /* White background */
    body {
        background: white !important;
        color: black !important;
        padding-top: 0 !important;
    }
    
    /* Reset colors */
    .section-title,
    .card-title,
    h1, h2, h3, h4 {
        color: black !important;
    }
    
    .text-secondary,
    .text-muted,
    p, li {
        color: #333 !important;
    }
    
    /* Remove shadows and borders */
    .service-card,
    .mission-card,
    .team-card,
    .capability-card,
    .benefit-card {
        box-shadow: none !important;
        border: 1px solid #ccc !important;
        page-break-inside: avoid !important;
    }
    
    /* Print links */
    a {
        color: blue !important;
        text-decoration: underline !important;
    }
    
    a[href]::after {
        content: " (" attr(href) ")" !important;
        font-size: 0.8em !important;
    }
}

/* ----------------------------------
   SAFE AREA INSETS (Notch phones)
---------------------------------- */

@supports (padding: env(safe-area-inset-bottom)) {
    .footer {
        padding-bottom: calc(2rem + env(safe-area-inset-bottom)) !important;
    }
    
    #chat-widget {
        bottom: calc(16px + env(safe-area-inset-bottom)) !important;
    }
    
    .chat-window {
        max-height: calc(100vh - 100px - env(safe-area-inset-bottom)) !important;
    }
}

/* ----------------------------------
   DARK MODE PREFERENCE
---------------------------------- */

/* Already dark theme, but ensure contrast */
@media (prefers-color-scheme: light) {
    /* User prefers light but site is dark - keep dark theme */
    /* Optional: could add light mode toggle in future */
}

/* ----------------------------------
   SHOWCASE VIDEO GALLERY
---------------------------------- */

.showcase-gallery {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
}

/* Rook Creatives Gallery */
.rook-gallery {
    padding: 6rem 0;
    background: var(--primary-dark);
    border-top: 1px solid rgba(0, 255, 136, 0.1);
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
}

.rook-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-top: 3rem;
}

.rook-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: var(--secondary-dark);
    border: 1px solid rgba(0, 102, 255, 0.2);
    transition: all 0.3s ease;
    aspect-ratio: 16/9;
    cursor: pointer;
}

.rook-item:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
    transform: scale(1.02);
}

.rook-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rook-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.75rem;
    background: linear-gradient(transparent, rgba(10, 10, 26, 0.95));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.rook-item:hover .rook-overlay {
    opacity: 1;
}

.rook-overlay h3 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--accent-cyan);
    margin-bottom: 0.15rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.rook-overlay p {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Rook Gallery Responsive */
@media (max-width: 1400px) {
    .rook-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1000px) {
    .rook-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .rook-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .rook-overlay {
        opacity: 1;
    }
    
    .rook-overlay h3 {
        font-size: 0.75rem;
    }
    
    .rook-overlay p {
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .rook-grid {
        grid-template-columns: 1fr;
    }
}


.showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.showcase-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: var(--secondary-dark);
    border: 1px solid rgba(0, 255, 136, 0.1);
    transition: all 0.3s ease;
    aspect-ratio: 16/9;
}

.showcase-item:hover {
    border-color: var(--accent-cyan);
    box-shadow: var(--glow-cyan);
    transform: translateY(-4px);
}

.showcase-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(10, 10, 26, 0.95));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.showcase-item:hover .showcase-info {
    opacity: 1;
}

.showcase-info h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--accent-cyan);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.showcase-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 1200px) {
    .showcase-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .showcase-info {
        opacity: 1;
    }
}

@media (max-width: 480px) {
    .showcase-grid {
        grid-template-columns: 1fr;
    }
}