/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #2196F3;
    --dark-blue: #0a0e27;
    --darker-blue: #050816;
    --deep-indigo: #0d1b2a;
    --light-blue: #64B5F6;
    --glow-blue: #00d4ff;
    --neon-cyan: #00eaff;
    --text-white: #ffffff;
    --text-gray: #b8c5d6;
    --card-bg: rgba(15, 23, 42, 0.4);
    --card-border: rgba(0, 234, 255, 0.3);
    --glass-bg: rgba(255, 255, 255, 0.05);
}

/* Custom Robot Hand Cursor */
body, html {
    cursor: url('data:image/svg+xml;utf8,<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 42L12 28C12 26 13 25 14 25L14 18C14 16 15 15 16 15L16 10C16 8 17 7 18 7C19 7 20 8 20 10L20 6C20 4 21 3 22 3C23 3 24 4 24 6L24 10L24 25L32 30C34 32 34 35 32 37L24 45C22 47 18 47 16 45L12 42Z" fill="%2300A3FF" fill-opacity="0.2" stroke="%2300EAFF" stroke-width="1.5"/><line x1="14" y1="22" x2="18" y2="22" stroke="%2300EAFF" stroke-width="1"/><line x1="16" y1="12" x2="20" y2="12" stroke="%2300EAFF" stroke-width="1"/><line x1="20" y1="8" x2="24" y2="8" stroke="%2300EAFF" stroke-width="1"/><circle cx="14" cy="25" r="1" fill="%2300EAFF"/><circle cx="16" cy="15" r="1" fill="%2300EAFF"/><circle cx="20" cy="7" r="1" fill="%2300EAFF"/><path d="M18 38L20 36M22 40L24 38" stroke="%2300EAFF" stroke-width="1" stroke-linecap="round"/></svg>') 2 2, auto;
}

a, button, .btn-primary, .btn-secondary, .btn-cta, .nav-link, .expertise-card, .team-member, .why-item, .process-step, .contact-item, .service-item, .hardware-item, .industry-tag, .hero-buttons a {
    cursor: url('data:image/svg+xml;utf8,<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><defs><filter id="glow"><feGaussianBlur stdDeviation="1.5"/><feComposite in="SourceGraphic"/></filter></defs><g filter="url(%23glow)"><path d="M12 42L12 28C12 26 13 25 14 25L14 18C14 16 15 15 16 15L16 10C16 8 17 7 18 7C19 7 20 8 20 10L20 6C20 4 21 3 22 3C23 3 24 4 24 6L24 10L24 25L32 30C34 32 34 35 32 37L24 45C22 47 18 47 16 45L12 42Z" fill="%2300EAFF" fill-opacity="0.3" stroke="%2300EAFF" stroke-width="2"/><line x1="14" y1="22" x2="18" y2="22" stroke="%2300EAFF" stroke-width="1.5"/><line x1="16" y1="12" x2="20" y2="12" stroke="%2300EAFF" stroke-width="1.5"/><line x1="20" y1="8" x2="24" y2="8" stroke="%2300EAFF" stroke-width="1.5"/><circle cx="14" cy="25" r="1.5" fill="white"/><circle cx="16" cy="15" r="1.5" fill="white"/><circle cx="20" cy="7" r="1.5" fill="white"/><path d="M18 38L20 36M22 40L24 38" stroke="%2300EAFF" stroke-width="1.5" stroke-linecap="round"/></g></svg>') 2 2, pointer;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #000000;
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Neural Latent Space Background - Infinite Digital Void */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 20%, rgba(0, 100, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(0, 234, 255, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(33, 150, 243, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse at 30% 70%, rgba(138, 43, 226, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 30%, rgba(75, 0, 130, 0.04) 0%, transparent 50%);
    animation: latentShift 20s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

/* Holographic server room effect */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, rgba(0, 234, 255, 0.02) 1px, transparent 1px),
        linear-gradient(0deg, rgba(0, 234, 255, 0.02) 1px, transparent 1px),
        repeating-linear-gradient(45deg, transparent, transparent 100px, rgba(0, 234, 255, 0.01) 100px, rgba(0, 234, 255, 0.01) 101px);
    background-size: 100px 100px, 100px 100px, 200px 200px;
    animation: gridFlow 30s linear infinite;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

@keyframes latentShift {
    0% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: translate(10px, -10px) scale(1.05);
        opacity: 1;
    }
    100% { 
        transform: translate(-10px, 10px) scale(0.95);
        opacity: 0.8;
    }
}

@keyframes gridFlow {
    0% { 
        transform: translate(0, 0);
    }
    100% { 
        transform: translate(100px, 100px);
    }
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 39, 0.08);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(33, 150, 243, 0.2);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: bold;
}

.logo-img {
    height: 85px;
    width: auto;
    max-width: 600px;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 8px rgba(33, 150, 243, 0.4));
}

.logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 12px rgba(33, 150, 243, 0.6));
}

.brand-text {
    color: var(--text-white);
}

.brand-labs {
    color: var(--primary-blue);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-blue);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-blue);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    transition: 0.3s;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-cta {
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

/* Ripple effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--glow-blue));
    color: var(--text-white);
    box-shadow: 0 0 20px rgba(33, 150, 243, 0.5);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(33, 150, 243, 0.7);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    box-shadow: 0 0 15px rgba(33, 150, 243, 0.3);
}

.btn-secondary:hover {
    background: rgba(33, 150, 243, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(33, 150, 243, 0.6);
}

.btn-cta {
    background: linear-gradient(135deg, var(--primary-blue), var(--glow-blue));
    color: var(--text-white);
    font-size: 1.1rem;
    padding: 15px 40px;
    box-shadow: 0 0 30px rgba(33, 150, 243, 0.5);
    transition: all 0.3s ease;
    cursor: url('data:image/svg+xml;utf8,<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><defs><filter id="glow"><feGaussianBlur stdDeviation="1.5"/><feComposite in="SourceGraphic"/></filter></defs><g filter="url(%23glow)"><path d="M12 42L12 28C12 26 13 25 14 25L14 18C14 16 15 15 16 15L16 10C16 8 17 7 18 7C19 7 20 8 20 10L20 6C20 4 21 3 22 3C23 3 24 4 24 6L24 10L24 25L32 30C34 32 34 35 32 37L24 45C22 47 18 47 16 45L12 42Z" fill="%2300EAFF" fill-opacity="0.3" stroke="%2300EAFF" stroke-width="2"/><line x1="14" y1="22" x2="18" y2="22" stroke="%2300EAFF" stroke-width="1.5"/><line x1="16" y1="12" x2="20" y2="12" stroke="%2300EAFF" stroke-width="1.5"/><line x1="20" y1="8" x2="24" y2="8" stroke="%2300EAFF" stroke-width="1.5"/><circle cx="14" cy="25" r="1.5" fill="white"/><circle cx="16" cy="15" r="1.5" fill="white"/><circle cx="20" cy="7" r="1.5" fill="white"/><path d="M18 38L20 36M22 40L24 38" stroke="%2300EAFF" stroke-width="1.5" stroke-linecap="round"/></g></svg>') 2 2, pointer !important;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(33, 150, 243, 0.8);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero .container {
    position: relative;
    z-index: 1;
}

/* Page section styling for separate pages */
.page-section {
    position: relative;
    z-index: 2;
    min-height: calc(100vh - 80px);
    padding-top: 120px;
}

.page-section .container {
    position: relative;
    z-index: 2;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000;
    z-index: 0;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    opacity: 0;
    pointer-events: none;
}

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

.hex-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    opacity: 0;
    pointer-events: none;
}

.hex-pattern::before {
    display: none;
}

@keyframes hexFloat {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-white), var(--light-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.arc-reactor {
    width: 100%;
    max-width: 600px;
    height: 600px;
    filter: drop-shadow(0 0 80px rgba(0, 234, 255, 1)) drop-shadow(0 0 120px rgba(0, 234, 255, 0.8));
    animation: reactorGlow 4s ease-in-out infinite;
}

@keyframes reactorGlow {
    0%, 100% {
        filter: drop-shadow(0 0 80px rgba(0, 234, 255, 1)) drop-shadow(0 0 120px rgba(0, 234, 255, 0.8));
    }
    50% {
        filter: drop-shadow(0 0 100px rgba(0, 234, 255, 1)) drop-shadow(0 0 150px rgba(255, 255, 255, 0.9));
    }
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-white), var(--light-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Expertise Section */
.expertise {
    background: transparent;
}

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

.expertise-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 234, 255, 0.1);
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.expertise-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 234, 255, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.expertise-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--neon-cyan);
    box-shadow: 
        0 15px 60px rgba(0, 234, 255, 0.3),
        0 0 80px rgba(0, 234, 255, 0.2),
        inset 0 0 30px rgba(0, 234, 255, 0.05);
}

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

.expertise-card:hover::after {
    opacity: 1;
}

.card-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(circle, rgba(0, 234, 255, 0.1), transparent 70%);
    border: 2px solid rgba(0, 234, 255, 0.3);
    overflow: visible;
    box-shadow: 
        0 0 30px rgba(0, 234, 255, 0.2),
        inset 0 0 20px rgba(0, 234, 255, 0.1);
}

.expertise-icon {
    width: 70px;
    height: 70px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 20px rgba(0, 234, 255, 0.6));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.expertise-card:hover .expertise-icon {
    transform: scale(1.2);
    filter: drop-shadow(0 0 30px rgba(0, 234, 255, 1));
}

.expertise-card:hover .card-icon {
    background: radial-gradient(circle, rgba(0, 234, 255, 0.2), transparent 70%);
    border-color: var(--neon-cyan);
    box-shadow: 
        0 0 50px rgba(0, 234, 255, 0.4),
        inset 0 0 30px rgba(0, 234, 255, 0.2);
}

.expertise-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.expertise-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

/* About Section */
.about {
    background: transparent;
}

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

.lead {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

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

.mission,
.vision {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 15px;
    padding: 2rem;
}

.mission h3,
.vision h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.mission ul {
    list-style: none;
    padding-left: 0;
}

.mission li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 0.8rem;
    color: var(--text-gray);
}

.mission li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
}

.vision p {
    color: var(--text-gray);
}

/* Services Section */
.services {
    position: relative;
    z-index: 2;
    background: transparent;
}

.service-item {
    max-width: 900px;
    margin: 0 auto 3rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 15px;
    padding: 2.5rem;
}

.service-item h3 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.service-item h4 {
    color: var(--light-blue);
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
}

.service-item p,
.service-item li {
    color: var(--text-gray);
    margin-bottom: 0.8rem;
}

.service-item ul {
    padding-left: 2rem;
}

.features {
    margin-top: 1.5rem;
}

.feature-note {
    font-style: italic;
    margin-top: 1rem;
    color: var(--light-blue);
}

.industries {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
}

.industry-tag {
    background: rgba(33, 150, 243, 0.2);
    border: 1px solid var(--primary-blue);
    padding: 8px 16px;
    border-radius: 20px;
    color: var(--light-blue);
    font-size: 0.9rem;
}

/* Why Us Section */
.why-us {
    position: relative;
    z-index: 2;
    background: transparent;
}

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

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s;
}

.why-item:hover {
    transform: translateX(10px);
    border-color: var(--primary-blue);
}

.why-icon {
    color: var(--primary-blue);
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.why-item p {
    color: var(--text-gray);
    margin: 0;
}

/* Robotics Hardware Section */
.robotics-hardware {
    position: relative;
    z-index: 2;
    background: transparent;
}

.robotics-hardware .container {
    max-width: 800px;
    text-align: center;
}

.hardware-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.hardware-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    padding: 2rem;
}

.hardware-item h4 {
    color: var(--primary-blue);
    font-size: 1.2rem;
}

/* Team Section */
.team {
    position: relative;
    z-index: 2;
    background: transparent;
}

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

.team-member {
    text-align: center;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s;
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.3);
}

.member-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--glow-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    border: 3px solid var(--card-border);
}

.team-member h3 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.member-role {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.team-note {
    text-align: center;
    color: var(--text-gray);
    font-style: italic;
    margin-top: 2rem;
}

/* How We Work Section */
.how-we-work {
    position: relative;
    z-index: 2;
    background: transparent;
}

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

@media (max-width: 1024px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

.process-step {
    text-align: center;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--glow-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.process-step p {
    color: var(--text-gray);
}

/* Contact Section */
.contact {
    background: var(--darker-blue);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 3rem auto 0;
}

.contact-item {
    text-align: center;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 15px;
    padding: 2rem;
}

.contact-item h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.contact-item p {
    color: var(--text-gray);
}

.contact-item a {
    color: var(--light-blue);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--glow-blue);
}

/* Footer */
.footer {
    background: var(--darker-blue);
    border-top: 1px solid var(--card-border);
    padding: 2rem 0;
    text-align: center;
}

.footer p {
    color: var(--text-gray);
    margin: 0;
}

.footer .love-emoji {
    color: #ff0000;
    display: inline-block;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.1); }
    50% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 14, 39, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 1rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .navbar .btn-primary {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .expertise-grid,
    .team-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}
