/* ===========================
   BRIGHT AUTOMATIONS - FUTURISTIC TECH DESIGN
   New Brand Colors from Logo
   =========================== */

/* CSS Variables for Design System */
:root {
    /* Brand Colors - From Logo (Teal Blue) */
    --primary: #2E7D8A;
    --primary-dark: #1D5A64;
    --primary-light: #3A9AA8;
    --secondary: #1A4A52;
    --accent: #00E5FF;
    --accent-light: rgba(0, 229, 255, 0.1);
    --accent-glow: rgba(0, 229, 255, 0.3);

    /* Background Colors */
    --bg-dark: #0A1628;
    --bg-darker: #060F1D;
    --bg-card: rgba(14, 30, 50, 0.8);
    --bg-glass: rgba(14, 30, 50, 0.6);

    /* Supporting Colors */
    --success: #00E676;
    --warning: #FFAB00;
    --error: #FF5252;

    /* Neutrals */
    --white: #FFFFFF;
    --gray-50: #F0F4F8;
    --gray-100: #D9E2EC;
    --gray-200: #BCCCDC;
    --gray-300: #9FB3C8;
    --gray-400: #829AB1;
    --gray-500: #627D98;
    --gray-600: #486581;
    --gray-700: #334E68;
    --gray-800: #243B53;
    --gray-900: #102A43;

    /* Spacing - Reduced for compact layout */
    --space-xs: 0.375rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 2.5rem;
    --space-3xl: 3rem;
    --space-4xl: 4rem;

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Space Grotesk', sans-serif;

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows - Glowing effects */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 16px 40px rgba(0, 0, 0, 0.6);
    --shadow-2xl: 0 24px 60px rgba(0, 0, 0, 0.7);
    --shadow-glow: 0 0 30px rgba(0, 229, 255, 0.3);
    --shadow-glow-lg: 0 0 60px rgba(0, 229, 255, 0.4);

    /* Border Radius - Smoother curves */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-3xl: 3rem;
    --radius-full: 9999px;
}

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

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

body {
    font-family: var(--font-sans);
    line-height: 1.7;
    color: var(--gray-100);
    background: var(--bg-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Custom cursor disabled */
.cursor, .cursor-dot {
    display: none !important;
}

/* Animated Background Particles */
.particles-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 20s infinite;
    box-shadow: 0 0 10px var(--accent);
}

@keyframes float {
    0%, 100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Grid Lines Background */
.grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background-image:
        linear-gradient(rgba(0, 229, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 229, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridPulse 10s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

/* ===========================
   NAVIGATION - Glassmorphism
   =========================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 229, 255, 0.1);
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(6, 15, 29, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 229, 255, 0.1);
}

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

/* Nav Social Icons */
.nav-social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-social a {
    color: var(--gray-400);
    font-size: 1rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-social a:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    transition: all var(--transition-base);
}

.logo:hover {
    color: var(--accent);
    text-shadow: 0 0 20px var(--accent);
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    font-size: 1.25rem;
    transition: all var(--transition-base);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
}

.logo:hover .logo-icon {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow-lg);
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-img-large {
    height: 56px;
    width: auto;
    transition: all var(--transition-base);
    filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.3));
}

.logo:hover .logo-img-large {
    transform: scale(1.02);
    filter: drop-shadow(0 0 20px rgba(0, 229, 255, 0.5));
}

.logo-fallback {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: var(--gray-300);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all var(--transition-base);
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--primary-light));
    transition: width var(--transition-base);
    border-radius: var(--radius-full);
    box-shadow: 0 0 10px var(--accent);
}

.nav-menu a:hover {
    color: var(--accent);
    text-shadow: 0 0 10px var(--accent-glow);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a.active {
    color: var(--accent);
}

.nav-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%) !important;
    color: white !important;
    padding: 0.75rem 1.75rem !important;
    border-radius: var(--radius-full) !important;
    font-weight: 600 !important;
    transition: all var(--transition-base) !important;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
    border: 1px solid rgba(0, 229, 255, 0.3);
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-lg);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--accent);
    transition: all var(--transition-base);
    border-radius: var(--radius-full);
    box-shadow: 0 0 10px var(--accent);
}

/* ===========================
   HERO SECTION - Video Centered
   =========================== */

.hero-video-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8rem 2.5rem 4rem;
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 50%, var(--secondary) 100%);
    position: relative;
    overflow: hidden;
}

/* Animated background gradient */
.hero-video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(0, 229, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(46, 125, 138, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(0, 229, 255, 0.05) 0%, transparent 60%);
    pointer-events: none;
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

/* Scan Lines Effect */
.hero-video-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.03) 2px,
        rgba(0, 0, 0, 0.03) 4px
    );
    pointer-events: none;
    animation: scanLines 10s linear infinite;
}

@keyframes scanLines {
    0% { background-position: 0 0; }
    100% { background-position: 0 100px; }
}

/* Video Wrapper - Centers the video */
.hero-video-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    z-index: 2;
}

/* Video Container */
.video-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), var(--shadow-glow-lg);
    background: var(--bg-darker);
    border: 1px solid rgba(0, 229, 255, 0.2);
}

.hero-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-2xl);
}

/* Video placeholder when no video is present */
.video-placeholder {
    width: 100%;
    aspect-ratio: 1/1;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    gap: 1rem;
    padding: 2rem;
    text-align: center;
}

.video-placeholder i {
    font-size: 5rem;
    opacity: 0.8;
    animation: techPulse 2s ease-in-out infinite;
    text-shadow: 0 0 30px var(--accent);
}

.video-placeholder span {
    font-size: 1.25rem;
    font-weight: 600;
    opacity: 0.9;
}

.video-placeholder p {
    font-size: 0.875rem;
    opacity: 0.6;
    max-width: 250px;
}

@keyframes techPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; filter: drop-shadow(0 0 20px var(--accent)); }
    50% { transform: scale(1.05); opacity: 1; filter: drop-shadow(0 0 40px var(--accent)); }
}

/* Hide placeholder when video loads */
.hero-video:not([src=""]) + .video-placeholder {
    display: none;
}

/* Glow effect behind video */
.video-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.3) 0%, transparent 60%);
    filter: blur(60px);
    z-index: -1;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

/* Content below video */
.hero-video-content {
    text-align: center;
    max-width: 800px;
    z-index: 2;
    animation: fadeInUp 0.8s ease 0.3s backwards;
}

.hero-video-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    color: var(--white);
    text-shadow: 0 0 40px rgba(0, 229, 255, 0.3);
}

.hero-video-content h1 .text-highlight {
    color: var(--accent);
    text-shadow: 0 0 30px var(--accent);
}

.hero-video-content p {
    font-size: 1.125rem;
    color: var(--gray-300);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-video-content .hero-buttons {
    justify-content: center;
}

.hero-video-content .btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(0, 229, 255, 0.3);
}

.hero-video-content .btn-secondary:hover {
    background: rgba(0, 229, 255, 0.1);
    border-color: var(--accent);
    box-shadow: var(--shadow-glow);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: bounce 2s ease-in-out infinite;
    z-index: 2;
    text-shadow: 0 0 10px var(--accent);
}

.scroll-indicator i {
    font-size: 1rem;
}

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

/* Hero buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

/* Feature Cards Row - Below Hero */
.feature-cards-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Feature Cards in Hero */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
    animation: fadeInUp 0.6s ease 0.5s backwards;
}

/* Hero Section - Standard Layout */
.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    padding: 7rem 2rem 3rem;
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(0, 229, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40%;
    height: 60%;
    background: radial-gradient(ellipse at bottom left, rgba(46, 125, 138, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 600px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 229, 255, 0.1);
    color: var(--accent);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 229, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
    animation: labelGlow 2s ease-in-out infinite alternate;
}

@keyframes labelGlow {
    0% { box-shadow: 0 0 10px rgba(0, 229, 255, 0.2); }
    100% { box-shadow: 0 0 25px rgba(0, 229, 255, 0.4); }
}

.hero-text h1 {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-text h1 .text-highlight {
    color: var(--accent);
    text-shadow: 0 0 30px var(--accent-glow);
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--gray-300);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-visual {
    position: relative;
}

.hero-image-container {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl), var(--shadow-glow);
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border: 1px solid rgba(0, 229, 255, 0.2);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.hero-video-container {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl), var(--shadow-glow);
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border: 1px solid rgba(0, 229, 255, 0.2);
    position: relative;
}

.hero-video-container::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--accent), var(--primary), var(--accent));
    border-radius: var(--radius-2xl);
    z-index: -1;
    opacity: 0.5;
    animation: borderGlow 3s linear infinite;
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.hero-video {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 229, 255, 0.1);
    color: var(--accent);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease;
    border: 1px solid rgba(0, 229, 255, 0.3);
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-content h1 .text-highlight {
    color: var(--accent);
    text-shadow: 0 0 30px var(--accent-glow);
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--gray-300);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    gap: 1rem;
}

.image-placeholder i {
    font-size: 4rem;
    opacity: 0.8;
    text-shadow: 0 0 30px var(--accent);
}

.image-placeholder span {
    font-size: 0.875rem;
    opacity: 0.7;
    font-weight: 500;
}

.feature-card {
    background: var(--bg-card);
    padding: 1.75rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 229, 255, 0.1);
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border-color: rgba(0, 229, 255, 0.3);
}

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

.feature-card .icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 229, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--accent);
    transition: all var(--transition-base);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
}

.feature-card:hover .icon {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-glow);
    transform: scale(1.1);
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.feature-card p {
    color: var(--gray-400);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ===========================
   BUTTONS - Futuristic Design
   =========================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
    border: none;
    cursor: none;
    font-size: 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    box-shadow: var(--shadow-md), 0 0 20px rgba(0, 229, 255, 0.2);
    border: 1px solid rgba(0, 229, 255, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--accent);
    border: 2px solid rgba(0, 229, 255, 0.3);
}

.btn-secondary:hover {
    border-color: var(--accent);
    background: rgba(0, 229, 255, 0.1);
    box-shadow: var(--shadow-glow);
}

.btn-outline {
    background: transparent;
    color: var(--gray-300);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(0, 229, 255, 0.1);
    box-shadow: var(--shadow-glow);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    background: var(--gray-50);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

/* ===========================
   SECTIONS - Dark Theme Layout
   =========================== */

.section {
    padding: var(--space-3xl) 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-full {
    padding: var(--space-3xl) 2rem;
    max-width: none;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 229, 255, 0.1);
    color: var(--accent);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(0, 229, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.15);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--white);
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-400);
    line-height: 1.7;
}

/* Background Variations */
.bg-white { background: var(--bg-dark); }
.bg-light {
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}
.bg-primary { background: var(--primary); }
.bg-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 1.5rem;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }

/* ===========================
   CARDS - Glassmorphism Design
   =========================== */

.card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid rgba(0, 229, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.5), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border-color: rgba(0, 229, 255, 0.3);
}

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

.card-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 229, 255, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.75rem;
    color: var(--accent);
    transition: all var(--transition-base);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.2);
}

.card:hover .card-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    transform: scale(1.05) rotate(5deg);
    box-shadow: var(--shadow-glow);
}

.card h3 {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.card p {
    color: var(--gray-400);
    line-height: 1.7;
}

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

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

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

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(0, 229, 255, 0.3), transparent);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
    line-height: 1;
    text-shadow: 0 0 30px var(--accent-glow);
    animation: numberGlow 2s ease-in-out infinite alternate;
}

@keyframes numberGlow {
    0% { text-shadow: 0 0 20px var(--accent-glow); }
    100% { text-shadow: 0 0 40px var(--accent-glow); }
}

.stat-label {
    color: var(--gray-400);
    font-weight: 500;
    font-size: 1rem;
}

/* ===========================
   IMAGE SECTIONS
   =========================== */

.image-text-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.image-text-section.reverse {
    direction: rtl;
}

.image-text-section.reverse > * {
    direction: ltr;
}

.section-image {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border: 1px solid rgba(0, 229, 255, 0.2);
    position: relative;
}

.section-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(0, 229, 255, 0.1), transparent);
    pointer-events: none;
    z-index: 1;
}

.section-image img,
.section-image .image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

/* ===========================
   PROCESS / HOW IT WORKS
   =========================== */

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--accent), transparent);
    z-index: 0;
    box-shadow: 0 0 20px var(--accent-glow);
}

.process-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--bg-card);
    border: 3px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent);
    transition: all var(--transition-base);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.3);
}

.process-item:hover .process-number {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: var(--shadow-glow-lg);
    border-color: transparent;
}

.process-item h3 {
    font-family: var(--font-display);
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.process-item p {
    color: var(--gray-400);
    font-size: 0.9375rem;
}

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

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: var(--space-3xl) 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.2) 0%, transparent 60%);
    pointer-events: none;
    animation: ctaGlow 6s ease-in-out infinite alternate;
}

@keyframes ctaGlow {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-20px, 20px); }
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 40px rgba(0, 229, 255, 0.3);
}

.cta-section p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

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

/* ===========================
   FOOTER - Dark Modern
   =========================== */

.footer {
    background: var(--bg-darker);
    color: var(--gray-400);
    padding: var(--space-3xl) 2rem var(--space-lg);
    position: relative;
    border-top: 1px solid rgba(0, 229, 255, 0.1);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.footer-brand p {
    margin-top: 1.5rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-col h3 {
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

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

.footer-col ul li {
    margin-bottom: 0.875rem;
}

.footer-col a {
    color: var(--gray-400);
    text-decoration: none;
    transition: all var(--transition-base);
    font-size: 0.9375rem;
}

.footer-col a:hover {
    color: var(--accent);
    text-shadow: 0 0 10px var(--accent-glow);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(0, 229, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    transition: all var(--transition-base);
    border: 1px solid rgba(0, 229, 255, 0.2);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 229, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gray-500);
    font-size: 0.875rem;
}

.footer-bottom a {
    color: var(--gray-500);
    text-decoration: none;
}

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

/* ===========================
   FORMS - Modern Dark Inputs
   =========================== */

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--gray-300);
    font-size: 0.9375rem;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(0, 229, 255, 0.2);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-family: var(--font-sans);
    transition: all var(--transition-base);
    background: var(--bg-card);
    color: var(--white);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(0, 229, 255, 0.1), var(--shadow-glow);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--gray-500);
}

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

/* ===========================
   HORIZONTAL SCROLL CONTAINERS
   =========================== */

.scroll-container {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 2rem;
    padding: 1rem 0 2rem;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.scroll-container::-webkit-scrollbar {
    height: 6px;
}

.scroll-container::-webkit-scrollbar-track {
    background: var(--bg-darker);
    border-radius: var(--radius-full);
}

.scroll-container::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: var(--radius-full);
    box-shadow: 0 0 10px var(--accent);
}

.scroll-container::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

.scroll-container .card {
    flex: 0 0 360px;
    scroll-snap-align: start;
}

.scroll-hint {
    text-align: center;
    color: var(--gray-500);
    font-size: 0.875rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.scroll-hint i {
    font-size: 0.75rem;
    color: var(--accent);
}

/* ===========================
   PAGE HEADER
   =========================== */

.page-header {
    padding: 7rem 2rem 2.5rem;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--secondary) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 40px rgba(0, 229, 255, 0.3);
}

.page-header p {
    font-size: 1.25rem;
    color: var(--gray-300);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ===========================
   PRICING CARDS
   =========================== */

.pricing-category {
    margin-bottom: 5rem;
}

.pricing-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-glow);
}

.pricing-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    text-align: center;
    border: 2px solid rgba(0, 229, 255, 0.1);
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
}

.pricing-card:hover {
    border-color: rgba(0, 229, 255, 0.3);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-color: var(--accent);
    position: relative;
    box-shadow: var(--shadow-glow);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-glow);
}

.pricing-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
    text-shadow: 0 0 30px var(--accent-glow);
}

.pricing-price {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin: 1rem 0;
    text-shadow: 0 0 20px var(--accent-glow);
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 229, 255, 0.1);
    font-size: 0.9375rem;
    color: var(--gray-300);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--success);
    margin-right: 0.5rem;
    text-shadow: 0 0 10px rgba(0, 230, 118, 0.5);
}

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

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-white { color: var(--white); }
.text-primary { color: var(--accent); }
.text-gray { color: var(--gray-400); }

.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }
.mt-5 { margin-top: var(--space-xl); }

.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }
.mb-5 { margin-bottom: var(--space-xl); }

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

/* ===========================
   ANIMATIONS
   =========================== */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animations */
.animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.4s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.5s; }

/* Glitch Effect for Hero Text */
.glitch {
    position: relative;
}

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

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--accent);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 var(--primary);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(31px, 9999px, 94px, 0); }
    5% { clip: rect(70px, 9999px, 71px, 0); }
    10% { clip: rect(29px, 9999px, 24px, 0); }
    15% { clip: rect(69px, 9999px, 63px, 0); }
    20% { clip: rect(32px, 9999px, 95px, 0); }
    25% { clip: rect(75px, 9999px, 10px, 0); }
    30% { clip: rect(87px, 9999px, 80px, 0); }
    35% { clip: rect(63px, 9999px, 19px, 0); }
    40% { clip: rect(48px, 9999px, 35px, 0); }
    45% { clip: rect(12px, 9999px, 91px, 0); }
    50% { clip: rect(34px, 9999px, 56px, 0); }
    55% { clip: rect(14px, 9999px, 79px, 0); }
    60% { clip: rect(17px, 9999px, 28px, 0); }
    65% { clip: rect(99px, 9999px, 4px, 0); }
    70% { clip: rect(62px, 9999px, 84px, 0); }
    75% { clip: rect(23px, 9999px, 16px, 0); }
    80% { clip: rect(57px, 9999px, 97px, 0); }
    85% { clip: rect(4px, 9999px, 72px, 0); }
    90% { clip: rect(81px, 9999px, 37px, 0); }
    95% { clip: rect(39px, 9999px, 52px, 0); }
    100% { clip: rect(25px, 9999px, 67px, 0); }
}

@keyframes glitch-anim2 {
    0% { clip: rect(65px, 9999px, 100px, 0); }
    5% { clip: rect(52px, 9999px, 74px, 0); }
    10% { clip: rect(79px, 9999px, 85px, 0); }
    15% { clip: rect(75px, 9999px, 5px, 0); }
    20% { clip: rect(67px, 9999px, 61px, 0); }
    25% { clip: rect(14px, 9999px, 79px, 0); }
    30% { clip: rect(1px, 9999px, 66px, 0); }
    35% { clip: rect(86px, 9999px, 30px, 0); }
    40% { clip: rect(23px, 9999px, 98px, 0); }
    45% { clip: rect(85px, 9999px, 72px, 0); }
    50% { clip: rect(71px, 9999px, 75px, 0); }
    55% { clip: rect(2px, 9999px, 48px, 0); }
    60% { clip: rect(30px, 9999px, 16px, 0); }
    65% { clip: rect(59px, 9999px, 50px, 0); }
    70% { clip: rect(41px, 9999px, 62px, 0); }
    75% { clip: rect(2px, 9999px, 82px, 0); }
    80% { clip: rect(47px, 9999px, 73px, 0); }
    85% { clip: rect(3px, 9999px, 27px, 0); }
    90% { clip: rect(26px, 9999px, 55px, 0); }
    95% { clip: rect(42px, 9999px, 97px, 0); }
    100% { clip: rect(38px, 9999px, 49px, 0); }
}

/* Typing Animation */
.typing-text {
    border-right: 2px solid var(--accent);
    animation: blink-caret 0.75s step-end infinite;
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: var(--accent); }
}

/* Floating Animation */
.float {
    animation: floatUpDown 6s ease-in-out infinite;
}

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

/* Pulse Ring Animation */
.pulse-ring {
    position: relative;
}

.pulse-ring::before {
    content: '';
    position: absolute;
    inset: -10px;
    border: 2px solid var(--accent);
    border-radius: inherit;
    animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.3); opacity: 0; }
}

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

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

    .footer-brand {
        grid-column: span 3;
    }
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .hero-visual {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .feature-cards {
        justify-content: center;
    }

    .feature-cards-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .image-text-section {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .image-text-section.reverse {
        direction: ltr;
    }

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

    .process-grid::before {
        display: none;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item::after {
        display: none;
    }

    .video-container {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-darker);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-xl);
        gap: 1.5rem;
        border-top: 1px solid rgba(0, 229, 255, 0.1);
        backdrop-filter: blur(20px);
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero {
        padding: 8rem 1.5rem 4rem;
    }

    .hero-video-section {
        padding: 7rem 1.5rem 3rem;
    }

    .video-container {
        max-width: 320px;
    }

    .hero-video-content h1 {
        font-size: 1.75rem;
    }

    .hero-video-content p {
        font-size: 1rem;
    }

    .feature-cards-row {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .section,
    .section-full {
        padding: var(--space-3xl) 1.5rem;
    }

    .feature-cards {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

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

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .scroll-container .card {
        flex: 0 0 300px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .scroll-indicator {
        display: none;
    }

    /* Hero mobile - hide video, text only */
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }

    .hero-text {
        text-align: center;
    }

    /* Image-text sections stack on mobile */
    .image-text-section {
        grid-template-columns: 1fr;
    }

    .image-text-section .section-image {
        order: 2;
    }

    /* Hide nav social on mobile */
    .nav-social {
        display: none;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem 1.25rem;
    }

    .logo span {
        display: none;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .card {
        padding: 1.75rem;
    }

    .scroll-container .card {
        flex: 0 0 280px;
    }
}

/* ===========================
   CHECK MARK LIST STYLING
   =========================== */

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 229, 255, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--gray-300);
}

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

.check-list i {
    color: var(--success);
    margin-top: 0.125rem;
    text-shadow: 0 0 10px rgba(0, 230, 118, 0.5);
}

/* ===========================
   SERVICE BLOCKS
   =========================== */

.service-block {
    padding: var(--space-4xl) 0;
}

.service-content {
    max-width: 540px;
}

.service-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-glow);
}

.service-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.service-content p {
    font-size: 1.125rem;
    color: var(--gray-400);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-features {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-xl);
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 229, 255, 0.1);
}

.service-features h3 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

/* Mini feature grid */
.mini-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.mini-feature {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    border: 1px solid rgba(0, 229, 255, 0.1);
}

.mini-feature:hover {
    background: var(--bg-glass);
    box-shadow: var(--shadow-md), var(--shadow-glow);
    border-color: rgba(0, 229, 255, 0.3);
    transform: translateY(-3px);
}

.mini-feature i {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 0.75rem;
    display: block;
    text-shadow: 0 0 20px var(--accent-glow);
}

.mini-feature h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-size: 1rem;
}

.mini-feature p {
    color: var(--gray-400);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

/* ===========================
   PORTFOLIO PAGE STYLES
   =========================== */

.portfolio-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    position: relative;
}

.portfolio-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(0, 229, 255, 0.1), transparent);
    z-index: 1;
    pointer-events: none;
}

.portfolio-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.portfolio-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    padding: 0.25rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.portfolio-tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}

.portfolio-tags span {
    background: rgba(0, 229, 255, 0.1);
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-md);
    font-size: 0.8125rem;
    color: var(--accent);
    font-weight: 500;
    border: 1px solid rgba(0, 229, 255, 0.2);
}

.portfolio-stats {
    display: flex;
    justify-content: space-between;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 229, 255, 0.1);
}

.portfolio-stats .stat {
    text-align: center;
}

.portfolio-stats .stat-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    text-shadow: 0 0 20px var(--accent-glow);
}

.portfolio-stats .stat-label {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-top: 0.375rem;
}

/* ===========================
   TESTIMONIALS STYLES
   =========================== */

.testimonial-rating {
    color: #FFAB00;
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    display: flex;
    gap: 0.25rem;
}

.testimonial-rating i {
    text-shadow: 0 0 10px rgba(255, 171, 0, 0.5);
}

.testimonial-text {
    font-style: italic;
    color: var(--gray-300);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1rem;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    box-shadow: var(--shadow-glow);
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 700;
    color: var(--white);
}

.author-title {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* ===========================
   ABOUT PAGE STYLES
   =========================== */

.value-icon {
    width: 56px;
    height: 56px;
    background: rgba(0, 229, 255, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 1.25rem;
    transition: all var(--transition-base);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
}

.card:hover .value-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.team-card {
    text-align: center;
}

.team-card-featured {
    padding: 2.5rem 2rem;
}

.team-headshot {
    width: 250px;
    height: 250px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 4px solid var(--accent);
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.4), 0 0 80px rgba(0, 229, 255, 0.2);
    transition: var(--transition-base);
}

.team-headshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: var(--transition-base);
}

.team-card-featured:hover .team-headshot {
    transform: scale(1.03);
    box-shadow: 0 0 50px rgba(0, 229, 255, 0.5), 0 0 100px rgba(0, 229, 255, 0.3);
}

.team-card-featured:hover .team-headshot img {
    transform: scale(1.05);
}

.team-avatar-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 4rem;
    font-weight: 700;
    font-family: var(--font-display);
}

.team-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-display);
    box-shadow: var(--shadow-glow);
}

.team-name {
    font-weight: 700;
    margin-bottom: 0.375rem;
    color: var(--white);
    font-size: 1.5rem;
}

.team-role {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.team-bio {
    color: var(--gray-400);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    transition: var(--transition-base);
}

.team-social a:hover {
    background: var(--accent);
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.5);
}

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

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

.contact-form-wrapper {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 229, 255, 0.1);
    backdrop-filter: blur(10px);
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 229, 255, 0.1);
    margin-bottom: 1.5rem;
    transition: all var(--transition-base);
}

.contact-info-card:hover {
    box-shadow: var(--shadow-md), var(--shadow-glow);
    border-color: rgba(0, 229, 255, 0.3);
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: var(--radius-lg);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--white);
    box-shadow: var(--shadow-glow);
}

.contact-info h4 {
    font-weight: 700;
    margin-bottom: 0.375rem;
    color: var(--white);
}

.contact-info p {
    color: var(--gray-500);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    transition: color var(--transition-base);
}

.contact-info a:hover {
    color: var(--primary-light);
    text-shadow: 0 0 10px var(--accent-glow);
}

.response-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 2rem;
    border-radius: var(--radius-xl);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.response-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.response-card h4 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.response-card p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.response-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 229, 255, 0.15);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 229, 255, 0.3);
    position: relative;
    z-index: 1;
}

.response-highlight i {
    font-size: 1.5rem;
    color: var(--accent);
}

.response-highlight-text strong {
    display: block;
    font-size: 1.125rem;
}

.response-highlight-text span {
    opacity: 0.8;
    font-size: 0.875rem;
}

/* FAQ Styles */
.faq-item {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 229, 255, 0.1);
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: rgba(0, 229, 255, 0.3);
    box-shadow: var(--shadow-md), 0 0 20px rgba(0, 229, 255, 0.1);
}

.faq-item h4 {
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.faq-item p {
    color: var(--gray-400);
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 2rem;
    }

    .portfolio-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .portfolio-stats .stat {
        flex: 1 1 80px;
    }
}

/* ===========================
   TECH LINE ANIMATION
   =========================== */

.tech-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    height: 1px;
    animation: techLine 8s linear infinite;
}

@keyframes techLine {
    0% { width: 0; left: 0; opacity: 0; }
    20% { width: 30%; opacity: 1; }
    80% { width: 30%; opacity: 1; }
    100% { width: 0; left: 100%; opacity: 0; }
}

/* ===========================
   CIRCUIT PATTERN OVERLAY
   =========================== */

.circuit-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0v20M30 40v20M0 30h20M40 30h20' stroke='%2300E5FF' fill='none' stroke-width='1'/%3E%3Ccircle cx='30' cy='30' r='4' fill='%2300E5FF'/%3E%3Ccircle cx='30' cy='10' r='2' fill='%2300E5FF'/%3E%3Ccircle cx='30' cy='50' r='2' fill='%2300E5FF'/%3E%3Ccircle cx='10' cy='30' r='2' fill='%2300E5FF'/%3E%3Ccircle cx='50' cy='30' r='2' fill='%2300E5FF'/%3E%3C/svg%3E");
}

/* ===========================
   COMPACT SERVICES GRID
   =========================== */

.services-compact-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.service-compact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 0.75rem;
    background: var(--bg-card);
    border: 1px solid rgba(0, 229, 255, 0.1);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all var(--transition-base);
    text-align: center;
}

.service-compact-card:hover {
    border-color: var(--accent);
    background: rgba(0, 229, 255, 0.05);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.service-compact-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 229, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--accent);
    transition: all var(--transition-base);
}

.service-compact-card:hover .service-compact-icon {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-glow);
}

.service-compact-card span {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
}

/* Tablet: 3 columns */
@media (max-width: 992px) {
    .services-compact-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile: 2 columns */
@media (max-width: 576px) {
    .services-compact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .service-compact-card {
        padding: 1rem 0.5rem;
    }

    .service-compact-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .service-compact-card span {
        font-size: 0.8rem;
    }
}
