/* ===== BRIGHT TECH DESIGN SYSTEM ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* Bright Tech Color Palette */
:root {
    /* Core Bright Tech Colors */
    --electric-blue: #0099ff;
    --bright-cyan: #00ccff;
    --tech-purple: #6366f1;
    --neon-green: #00ff66;
    --bright-orange: #ff6600;
    --hot-pink: #ff0099;
    
    /* Light Theme Base */
    --bright-bg: #f8fafc;
    --lighter-bg: #ffffff;
    --card-bg: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.9);
    --border-light: rgba(0, 153, 255, 0.2);
    --border-bright: rgba(0, 153, 255, 0.4);
    
    /* Typography Colors */
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --text-accent: var(--electric-blue);
    --text-bright: var(--bright-cyan);
    
    /* Bright Gradients */
    --gradient-primary: linear-gradient(135deg, var(--electric-blue) 0%, var(--tech-purple) 100%);
    --gradient-bright: linear-gradient(135deg, var(--bright-cyan) 0%, var(--electric-blue) 50%, var(--tech-purple) 100%);
    --gradient-neon: linear-gradient(135deg, var(--neon-green) 0%, var(--bright-cyan) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.6) 100%);
    --gradient-light: linear-gradient(180deg, var(--lighter-bg) 0%, var(--bright-bg) 100%);
    --gradient-hero: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0f4ff 100%);
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    
    /* Borders & Effects */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    /* Shadows & Glows */
    --shadow-bright: 0 4px 32px rgba(0, 153, 255, 0.15);
    --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.08);
    --shadow-strong: 0 16px 60px rgba(0, 153, 255, 0.2);
    --glow-bright: 0 0 20px currentColor;
    
    /* Transitions */
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bright-bg);
    overflow-x: hidden;
}

.wrapper {
    background: var(--gradient-light);
    width: 100%;
    min-height: 100vh;
    position: relative;
}

.wrapper::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 153, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(0, 204, 255, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    position: relative;
    z-index: 1;
}

/* ===== MODERN NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    z-index: 100;
    transition: all var(--transition-smooth);
    padding: var(--space-sm) 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border-bright);
    box-shadow: var(--shadow-card);
    padding: var(--space-xs) 0;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
}

.nav-logo {
    width: 40px;
    height: 40px;
    transition: all var(--transition-smooth);
}

.brand-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 1rem;
    transition: all var(--transition-smooth);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-smooth);
}

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

.nav-cta {
    background: var(--gradient-primary);
    color: white;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-bounce);
    border: none;
    font-size: 0.9rem;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-bright);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    width: 24px;
    height: 18px;
}

.nav-toggle span {
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-smooth);
}

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

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

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ===== BRIGHT TECH TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    background: var(--gradient-bright);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(0, 153, 255, 0.2));
}

h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--text-primary);
}

h3 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 600;
    color: var(--text-accent);
}

p {
    margin-bottom: var(--space-md);
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-weight: 400;
}

.text-large {
    font-size: 1.25rem;
    line-height: 1.8;
    font-weight: 500;
    color: var(--text-primary);
}

strong {
    color: var(--text-accent);
    font-weight: 700;
}

/* ===== BRIGHT HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    background: var(--gradient-hero);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 80px; /* Account for fixed navbar */
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.15;
    filter: hue-rotate(200deg) brightness(1.5) contrast(1.2);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(240, 249, 255, 0.95) 0%, rgba(224, 242, 254, 0.9) 100%),
        radial-gradient(circle at 70% 30%, rgba(0, 153, 255, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(0, 204, 255, 0.05) 50%, transparent 100%),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 98px,
            rgba(0, 153, 255, 0.02) 100px
        );
    z-index: 1;
    animation: brightScan 10s linear infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
}

.hero-logo {
    margin-bottom: var(--space-lg);
    animation: slideInUp 1s ease-out 0.2s both;
}

.hero-logo-img {
    width: 120px;
    height: auto;
    transition: all var(--transition-smooth);
    filter: drop-shadow(0 4px 20px rgba(0, 153, 255, 0.2));
}

.hero-logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 8px 30px rgba(0, 153, 255, 0.3));
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: var(--card-bg);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    margin-bottom: var(--space-lg);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    box-shadow: var(--shadow-card);
    animation: slideInUp 1s ease-out 0.2s both;
}

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

.hero-title {
    margin-bottom: var(--space-lg);
    animation: slideInUp 1s ease-out 0.4s both;
}

.hero-subtitle {
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    font-family: var(--font-primary);
    animation: slideInUp 1s ease-out 0.6s both;
    background: var(--card-bg);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--electric-blue);
    box-shadow: var(--shadow-card);
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
    animation: slideInUp 1s ease-out 0.8s both;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1.125rem;
    border: none;
    transition: all var(--transition-bounce);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.cta-button.primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-bright);
}

.cta-button.secondary {
    background: var(--card-bg);
    color: var(--text-primary);
    border: 2px solid var(--border-light);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-neon);
    transition: all var(--transition-smooth);
    z-index: -1;
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-strong);
}

.cta-button.primary:hover::before {
    left: 0;
}

.cta-button.secondary:hover {
    border-color: var(--border-bright);
    background: var(--gradient-hero);
}

.hero-metrics {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
    animation: slideInUp 1s ease-out 1s both;
}

.metric {
    text-align: center;
}

.metric-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-accent);
    font-family: var(--font-mono);
}

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

/* ===== STATISTICS SECTION ===== */
.stats-section {
    padding: var(--space-2xl) 0;
    background: var(--card-bg);
    border-bottom: 1px solid var(--border-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.stat-card {
    text-align: center;
    padding: var(--space-xl);
    background: var(--gradient-hero);
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-light);
    transition: all var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-bright);
    transform: scaleX(0);
    transition: all var(--transition-smooth);
    transform-origin: left;
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-bright);
    box-shadow: var(--shadow-strong);
}

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

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-md);
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-accent);
    font-family: var(--font-mono);
    margin-bottom: var(--space-sm);
}

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

/* ===== SECTION BADGES ===== */
.section-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===== BRIGHT TECH SECTIONS ===== */
.section {
    padding: var(--space-3xl) 0;
    position: relative;
    z-index: 1;
}

.section-alt {
    background: var(--card-bg);
    border-top: 2px solid var(--border-light);
    border-bottom: 2px solid var(--border-light);
    box-shadow: inset 0 2px 4px rgba(0, 153, 255, 0.05);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-title {
    position: relative;
    margin-bottom: var(--space-md);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 4px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 500;
}

/* ===== EXPERIENCE SECTION ===== */
.experience {
    background: var(--bright-bg);
    position: relative;
}

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

.experience-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    align-items: center;
    justify-items: center;
}

.experience-text {
    background: var(--card-bg);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-light);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    max-width: 800px;
    width: 100%;
}

.experience-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.experience-features {
    margin-top: var(--space-lg);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-primary);
    font-weight: 500;
}

.feature-item svg {
    color: var(--neon-green);
    flex-shrink: 0;
}

.experience-visual {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-light);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.visual-card {
    padding: var(--space-xl);
}

.card-header h4 {
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
    font-size: 1.25rem;
}

.metrics-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.metric-row {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 0.9rem;
    font-weight: 500;
}

.metric-row span:first-child {
    min-width: 100px;
    color: var(--text-secondary);
}

.metric-row span:last-child {
    min-width: 40px;
    color: var(--text-accent);
    font-weight: 600;
    text-align: right;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
    transition: width 2s ease-out;
}

/* ===== BRIGHT SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.service-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border: 2px solid var(--border-light);
    transition: all var(--transition-bounce);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.service-number {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-bright);
    transform: scaleX(0);
    transition: all var(--transition-smooth);
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--border-bright);
    box-shadow: var(--shadow-strong);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    border-radius: var(--radius-md);
    border: 3px solid var(--electric-blue);
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--electric-blue);
}

.service-card h3 {
    text-align: center;
    margin-bottom: var(--space-md);
    font-size: 1.5rem;
}

.service-card p {
    text-align: center;
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.service-features {
    display: flex;
    justify-content: center;
    gap: var(--space-xs);
    flex-wrap: wrap;
}

.feature-tag {
    background: var(--gradient-hero);
    color: var(--text-accent);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--border-light);
}

/* ===== PROCESS SECTION ===== */
.process {
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, transparent 0%, rgba(0, 153, 255, 0.05) 100%);
    z-index: 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
    position: relative;
    z-index: 1;
}

.process-step {
    background: var(--card-bg);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-light);
    transition: all var(--transition-bounce);
    position: relative;
    text-align: center;
    box-shadow: var(--shadow-card);
}

.process-step:hover {
    transform: translateY(-8px);
    border-color: var(--border-bright);
    box-shadow: var(--shadow-strong);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto var(--space-lg);
}

.step-content h3 {
    margin-bottom: var(--space-md);
    text-align: center;
}

.step-content p {
    text-align: center;
    color: var(--text-secondary);
}

.step-arrow {
    position: absolute;
    top: 50%;
    right: -12px;
    transform: translateY(-50%);
    color: var(--text-accent);
    display: none;
}

/* ===== BRIGHT MISSION SECTION ===== */
.mission {
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, transparent 0%, rgba(0, 153, 255, 0.05) 100%);
    z-index: 0;
}

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

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.mission-point {
    background: var(--card-bg);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-light);
    transition: all var(--transition-bounce);
    position: relative;
    box-shadow: var(--shadow-card);
}

.mission-point:hover {
    border-color: var(--border-bright);
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-strong);
}

.mission-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
}

.mission-point h3 {
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    text-align: left;
}

.mission-point p {
    color: var(--text-secondary);
    text-align: left;
}

/* ===== BRIGHT BENEFITS SECTION ===== */
.benefits {
    background: var(--bright-bg);
    position: relative;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    max-width: 900px;
    margin: var(--space-xl) auto 0;
    position: relative;
    z-index: 1;
}

.benefit-item {
    background: var(--card-bg);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-light);
    transition: all var(--transition-bounce);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
}

.benefit-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: var(--gradient-primary);
}

.benefit-item:hover {
    border-color: var(--border-bright);
    transform: translateX(12px) scale(1.01);
    box-shadow: var(--shadow-strong);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-content h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    text-align: left;
    margin-bottom: var(--space-md);
}

.benefit-content p {
    text-align: left;
}

/* ===== ENHANCED FOOTER ===== */
.footer {
    background: var(--gradient-primary);
    color: white;
    padding: var(--space-3xl) 0 var(--space-lg);
    position: relative;
    z-index: 1;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.footer-logo {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
}

.footer-brand h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.social-links {
    display: flex;
    gap: var(--space-md);
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all var(--transition-smooth);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.footer-column h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
    font-weight: 600;
}

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

.footer-column li {
    margin-bottom: var(--space-sm);
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all var(--transition-smooth);
}

.footer-column a:hover {
    color: white;
    text-decoration: underline;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.9);
}

.contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-family: var(--font-mono);
}

.footer-legal {
    display: flex;
    gap: var(--space-lg);
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all var(--transition-smooth);
}

.footer-legal a:hover {
    color: white;
    text-decoration: underline;
}

/* ===== BRIGHT TECH ANIMATIONS ===== */
@keyframes brightScan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100vw); }
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
        filter: blur(8px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .step-arrow {
        display: none;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: var(--space-lg);
        gap: var(--space-md);
        border-top: 1px solid var(--border-light);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-smooth);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .section {
        padding: var(--space-2xl) 0;
    }
    
    .hero {
        min-height: 80vh;
        text-align: center;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-metrics {
        gap: var(--space-lg);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-sm);
    }
    
    .section {
        padding: var(--space-xl) 0;
    }
    
    .hero {
        min-height: 70vh;
    }
    
    .cta-button {
        font-size: 1rem;
        padding: var(--space-sm) var(--space-lg);
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: var(--space-md);
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: var(--space-md);
    }
    
    h1 {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }
}