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

:root {
    --primary-color: #00d4ff;
    --secondary-color: #8b5cf6;
    --accent-color: #10b981;
    --dark-bg: #0a0a1e;
    --darker-bg: #050510;
    --light-text: #ffffff;
    --gray-text: #a0a0a0;
    --gradient-1: linear-gradient(135deg, #00d4ff, #8b5cf6);
    --gradient-2: linear-gradient(135deg, #8b5cf6, #10b981);
    --gradient-3: linear-gradient(135deg, #10b981, #00d4ff);
    --shadow-glow: 0 4px 20px rgba(0, 212, 255, 0.3);
    --shadow-purple: 0 4px 20px rgba(139, 92, 246, 0.3);
    --shadow-green: 0 4px 20px rgba(16, 185, 129, 0.3);
    --mouse-x: 50%;
    --mouse-y: 50%;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 30, 0.8);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-brand > i {
    font-size: 1.8rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* MetaRep Logo Styles */
.metarep-logo {
    display: inline-block;
    position: relative;
    width: 36px;
    height: 36px;
    margin-right: 0.5rem;
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .btn {
        min-height: 48px;
        padding: 0.9rem 2rem;
    }
    
    .mobile-nav-menu a {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .talent-link a {
        min-height: 44px;
        padding: 0.7rem 1.2rem;
    }
    
    .contact-method {
        min-height: 48px;
    }
    
    /* Reduce motion for mobile users */
    .avatar,
    .digital-brain,
    .neural-network,
    .connection-lines {
        animation-duration: 8s;
    }
    
    .service-card:hover,
    .talent-card:hover {
        transform: none;
    }
    
    .btn:hover {
        transform: none;
    }
}

.logo-stack {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-stack i {
    position: absolute;
    font-size: 28px;
    transition: all 0.3s ease;
}

.logo-infinity {
    /* Infinity - Site theme colors */
    background: linear-gradient(135deg, #00d4ff, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.9;
    transform: scale(1.4);
    z-index: 1;
    font-weight: 900;
}

.logo-eye {
    /* Eye - Plain flat white, fully opaque */
    color: #ffffff;
    opacity: 1.0;
    transform: scale(1.0);
    z-index: 2;
    font-weight: 400;
}

.metarep-logo:hover .logo-stack {
    transform: scale(1.1);
}

.metarep-logo:hover .logo-infinity {
    opacity: 1;
    transform: scale(1.5) rotate(15deg);
}

.metarep-logo:hover .logo-eye {
    opacity: 1.0;
    transform: scale(1.1);
}

/* Hero Logo - Center positioned on connection circle */
.hero-logo-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    z-index: 5;
    animation: hero-pulse 4s ease-in-out infinite;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 12px rgba(0, 212, 255, 0.4));
}

.hero-logo-center .logo-stack i {
    font-size: 60px;
}

.hero-logo-center .logo-infinity {
    transform: scale(1.4);
}

.hero-logo-center .logo-eye {
    transform: scale(1.1);
}

.hero-logo-center:hover .logo-infinity {
    transform: scale(1.6) rotate(15deg);
}

.hero-logo-center:hover .logo-eye {
    transform: scale(1.3);
}

/* Standardized header/footer logo styling */
.nav-brand .metarep-logo,
.footer-brand .metarep-logo {
    width: 36px;
    height: 36px;
}

.nav-brand .logo-stack i,
.footer-brand .logo-stack i {
    font-size: 28px;
}

/* Header and footer logos both inherit from base classes and work correctly */

@keyframes hero-pulse {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.3));
    }
    50% { 
        transform: scale(1.05);
        filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.5));
    }
}

.brand-logo {
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 212, 255, 0.3));
}

.brand-logo:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0, 212, 255, 0.5));
}

.footer-brand .brand-logo {
    filter: drop-shadow(0 2px 4px rgba(0, 212, 255, 0.2));
}

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

.nav-menu a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

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

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--light-text);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    color: var(--primary-color);
}

.mobile-nav-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 30, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    padding: 2rem;
    z-index: 999;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.mobile-nav-menu.active {
    transform: translateY(0);
}

.mobile-nav-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
}

.mobile-nav-menu a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.2rem;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: block;
}

.mobile-nav-menu a:hover {
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary-color);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,212,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--light-text);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.full-width {
    width: 100%;
    justify-content: center;
}

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

.avatar-showcase {
    position: relative;
    width: 400px;
    height: 400px;
}

.avatar {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    background: var(--gradient-1);
    box-shadow: var(--shadow-glow);
    animation: float 6s ease-in-out infinite;
}

.avatar-1 {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.avatar-2 {
    bottom: 50px;
    left: 50px;
    background: var(--gradient-2);
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-purple);
    animation-delay: 2s;
}

.avatar-3 {
    bottom: 50px;
    right: 50px;
    background: var(--gradient-3);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-green);
    animation-delay: 4s;
}

.connection-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(10, 10, 30, 0.8) 0%, rgba(10, 10, 30, 0.4) 40%, transparent 70%);
    animation: rotate 20s linear infinite;
}

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

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.services {
    padding: 4rem 0;
    background: var(--darker-bg);
}

.services h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: white;
}

.service-card:nth-child(1) .service-icon {
    background: linear-gradient(135deg, #d97706, #fbbf24);
}

.service-card:nth-child(2) .service-icon {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, #047857, #34d399);
}

.service-card:nth-child(4) .service-icon {
    background: linear-gradient(135deg, #0369a1, #7dd3fc);
}

.service-card:nth-child(5) .service-icon {
    background: linear-gradient(135deg, #dc2626, #fca5a5);
}

.service-card:nth-child(6) .service-icon {
    background: linear-gradient(135deg, #0f766e, #5eead4);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light-text);
}

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

.ethics {
    padding: 4rem 0;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
}

.ethics-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: center;
    position: relative;
}

.ethics h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ethics-text {
    padding-right: 3rem;
    padding-left: 2rem;
    z-index: 4;
    position: relative;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.principle {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
    padding-left: 1rem;
    padding-right: 0.5rem;
}

.principle-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
    transition: all 0.3s ease;
}

.principle-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6);
}

.principle h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--light-text);
}

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

.ethics-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 400px;
}

.digital-brain {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 2rem auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brain-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: var(--gradient-2);
    border-radius: 50%;
    box-shadow: var(--shadow-purple), 
                0 0 30px rgba(139, 92, 246, 0.6),
                0 0 60px rgba(139, 92, 246, 0.3),
                inset 0 0 20px rgba(255, 255, 255, 0.1);
    animation: pulse-enhanced 3s ease-in-out infinite;
    z-index: 3;
}

.brain-core::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid rgba(139, 92, 246, 0.4);
    border-radius: 50%;
    animation: orbit-ring 8s linear infinite;
    z-index: 2;
}

.brain-core::after {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    border: 1px dashed rgba(139, 92, 246, 0.3);
    border-radius: 50%;
    animation: orbit-ring 12s linear infinite reverse;
    z-index: 2;
}

.neural-network {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: visible;
    z-index: 1;
    transition: all 0.3s ease;
}

.neural-network::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at var(--mouse-x, 30%) var(--mouse-y, 40%),
        rgba(139, 92, 246, 0.4) 0%,
        rgba(139, 92, 246, 0.25) 25%,
        rgba(139, 92, 246, 0.15) 50%,
        rgba(139, 92, 246, 0.08) 75%,
        transparent 100%
    );
    border-radius: 50%;
    border: 1px solid rgba(139, 92, 246, 0.2);
    animation: ripple-wave-1 8s ease-in-out infinite;
    transition: all 0.2s ease;
}

.neural-network::after {
    content: '';
    position: absolute;
    top: -25px;
    left: -25px;
    width: calc(100% + 50px);
    height: calc(100% + 50px);
    background: radial-gradient(
        circle at calc(100% - var(--mouse-x, 70%)) calc(100% - var(--mouse-y, 60%)),
        rgba(139, 92, 246, 0.3) 0%,
        rgba(139, 92, 246, 0.18) 30%,
        rgba(139, 92, 246, 0.1) 60%,
        rgba(139, 92, 246, 0.05) 80%,
        transparent 100%
    );
    border-radius: 50%;
    border: 1px dashed rgba(139, 92, 246, 0.15);
    animation: ripple-wave-2 12s ease-in-out infinite reverse;
    transition: all 0.2s ease;
}

.neural-network .ripple-layer {
    position: absolute;
    top: -50px;
    left: -50px;
    width: calc(100% + 100px);
    height: calc(100% + 100px);
    background: conic-gradient(
        from calc(var(--mouse-x, 50%) * 3.6deg),
        rgba(139, 92, 246, 0.18),
        rgba(139, 92, 246, 0.1),
        rgba(139, 92, 246, 0.05),
        rgba(139, 92, 246, 0.1),
        rgba(139, 92, 246, 0.18)
    );
    border-radius: 50%;
    border: 1px dotted rgba(139, 92, 246, 0.1);
    animation: ripple-spiral 15s linear infinite;
    transition: all 0.3s ease;
}

@keyframes pulse-enhanced {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        box-shadow: var(--shadow-purple), 
                    0 0 30px rgba(139, 92, 246, 0.6),
                    0 0 60px rgba(139, 92, 246, 0.3),
                    inset 0 0 20px rgba(255, 255, 255, 0.1);
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: var(--shadow-purple), 
                    0 0 40px rgba(139, 92, 246, 0.8),
                    0 0 80px rgba(139, 92, 246, 0.5),
                    inset 0 0 30px rgba(255, 255, 255, 0.2);
    }
}

@keyframes orbit-ring {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes ripple-wave-1 {
    0%, 100% {
        transform: rotate(0deg) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: rotate(90deg) scale(1.1);
        opacity: 0.6;
    }
    50% {
        transform: rotate(180deg) scale(0.9);
        opacity: 0.3;
    }
    75% {
        transform: rotate(270deg) scale(1.05);
        opacity: 0.5;
    }
}

@keyframes ripple-wave-2 {
    0%, 100% {
        transform: rotate(180deg) scale(1.1);
        opacity: 0.3;
    }
    33% {
        transform: rotate(60deg) scale(0.95);
        opacity: 0.5;
    }
    66% {
        transform: rotate(300deg) scale(1.15);
        opacity: 0.2;
    }
}

@keyframes ripple-spiral {
    from {
        transform: rotate(0deg) scale(1);
        opacity: 0.2;
    }
    to {
        transform: rotate(360deg) scale(1.05);
        opacity: 0.2;
    }
}

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

.consciousness-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, #ffffff, rgba(139, 92, 246, 0.8));
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}



.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-text);
}

.talent {
    padding: 4rem 0;
    background: var(--darker-bg);
}

.talent h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 2rem;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.talent-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.talent-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-green);
    border-color: var(--accent-color);
}

.talent-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.talent-avatar:hover {
    transform: scale(1.05);
}

.talent-card:hover .talent-avatar {
    animation: pulse-glow 1.5s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { 
        box-shadow: inherit;
        transform: scale(1.05);
    }
    50% { 
        transform: scale(1.08);
    }
}

.talent-card:hover .neon-red {
    box-shadow: 0 4px 30px rgba(255, 0, 64, 0.6), 0 0 60px rgba(255, 0, 64, 0.3);
}

.talent-card:hover .neon-purple {
    box-shadow: 0 4px 30px rgba(139, 92, 246, 0.6), 0 0 60px rgba(139, 92, 246, 0.3);
}

.talent-card:hover .neon-gold {
    box-shadow: 0 4px 30px rgba(255, 215, 0, 0.6), 0 0 60px rgba(255, 215, 0, 0.3);
}

.talent-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.neon-blue {
    background: var(--gradient-1);
    box-shadow: var(--shadow-glow);
    border: 3px solid var(--primary-color);
}

.neon-purple {
    background: var(--gradient-2);
    box-shadow: var(--shadow-purple);
    border: 3px solid var(--secondary-color);
}

.neon-green {
    background: var(--gradient-3);
    box-shadow: var(--shadow-green);
    border: 3px solid var(--accent-color);
}

.neon-red {
    background: linear-gradient(135deg, #ff0040, #ff4080);
    box-shadow: 0 4px 20px rgba(255, 0, 64, 0.4);
    border: 3px solid #ff0040;
}

.neon-gold {
    background: linear-gradient(135deg, #5F9EA0, #4682B4);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
    border: 3px solid #ffd700;
}

.talent-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--light-text);
}

.talent-card p {
    color: var(--gray-text);
    margin-bottom: 1.5rem;
}

.talent-stats {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray-text);
    justify-content: center;
}

.stat-item i {
    color: var(--accent-color);
}

.talent-link {
    margin-top: 1rem;
    text-align: center;
}

.talent-link a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    transition: all 0.3s ease;
    background: rgba(0, 212, 255, 0.1);
}

.talent-link a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
}

.clientele-note {
    text-align: center;
    margin-top: 4rem;
    margin-bottom: 3rem;
}

.clientele-note p {
    color: var(--gray-text);
    font-size: 1.1rem;
    font-style: italic;
}

.partnership-ticker {
    margin-top: 2rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.ticker-track {
    display: flex;
    align-items: center;
    animation: ping-pong-ticker 20s ease-in-out infinite alternate;
    width: calc(200%);
}

.logo-image {
    flex-shrink: 0;
    width: 120px;
    height: 60px;
    margin: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.logo-image a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: translateY(-2px) scale(1.05);
}

.logo-image:hover a {
    transform: scale(1.02);
}

.logo-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    filter: brightness(0.8) contrast(1.1);
    transition: all 0.3s ease;
}

.logo-image:hover img {
    filter: brightness(1) contrast(1.2);
    transform: scale(1.05);
}

@keyframes ping-pong-ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partnership-ticker:hover .ticker-track {
    animation-play-state: paused;
}

.partners-note {
    text-align: center;
    margin-top: 1rem;
    opacity: 0.6;
}

.partners-note p {
    color: var(--gray-text);
    font-size: 0.9rem;
    font-style: italic;
    letter-spacing: 0.5px;
}

.legal-page {
    padding: 8rem 2rem 4rem;
    background: var(--dark-bg);
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.legal-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.legal-intro {
    font-size: 1.2rem;
    color: var(--gray-text);
    margin-bottom: 3rem;
    text-align: center;
    font-style: italic;
}

.legal-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.legal-section h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid rgba(0, 212, 255, 0.3);
    padding-bottom: 0.5rem;
}

.legal-section ul, .legal-section ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-section li {
    margin-bottom: 0.8rem;
    color: var(--light-text);
}

.legal-section strong {
    color: var(--primary-color);
}

.contact-info {
    background: rgba(0, 212, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: var(--light-text);
}

.legal-footer {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-text);
    font-style: italic;
}

@media (max-width: 768px) {
    .legal-page {
        padding: 6rem 1rem 2rem;
    }
    
    .legal-content h1 {
        font-size: 2.5rem;
    }
    
    .legal-section {
        padding: 1.5rem;
    }
}

.contact {
    padding: 4rem 0;
    background: radial-gradient(ellipse at center, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info p {
    color: var(--gray-text);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.contact-methods {
    margin-top: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.contact-label {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 500;
    min-width: 80px;
}

.contact-value {
    font-size: 0.9rem;
    color: var(--light-text);
    text-decoration: none;
}

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

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.contact-method i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    backdrop-filter: blur(10px);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

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

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300d4ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    cursor: pointer;
}

.form-group select option {
    background: #1a1a2e;
    color: #ffffff;
    border: none;
    padding: 0.75rem;
}

.footer {
    background: var(--darker-bg);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}



.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--gray-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

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

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--gray-text);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-text);
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav {
        padding: 1rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .mobile-nav-menu {
        display: block;
    }
    
    .hero {
        padding-top: 80px;
        min-height: 90vh;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .hero-text p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .services h2,
    .ethics h2,
    .talent h2,
    .contact h2 {
        font-size: 2.2rem;
    }
    
    .services,
    .ethics,
    .talent,
    .contact {
        padding: 3rem 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .talent-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .ethics-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .ethics-text {
        padding: 0;
        order: 2;
    }
    
    .ethics-visual {
        order: 1;
        margin-bottom: 1rem;
    }
    
    .digital-brain {
        width: 250px;
        height: 250px;
    }
    
    .brain-core {
        width: 120px;
        height: 120px;
    }
    
    .principle {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.02);
        border-radius: 15px;
        border: 1px solid rgba(139, 92, 246, 0.1);
    }
    
    .principle-icon {
        align-self: center;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .btn {
        min-width: 200px;
        justify-content: center;
    }
    
    .avatar-showcase {
        width: 280px;
        height: 280px;
    }
    
    .avatar {
        width: 70px;
        height: 70px;
    }
    
    .connection-lines {
        width: 220px;
        height: 220px;
    }
    
    .hero-logo-center {
        width: 60px;
        height: 60px;
    }
    
    .hero-logo-center .logo-stack i {
        font-size: 40px;
    }
    
    .contact-form {
        order: 1;
        margin-bottom: 2rem;
    }
    
    .contact-info {
        order: 2;
    }
    
    .partnership-ticker {
        padding: 1.5rem 0;
    }
    
    .logo-image {
        width: 100px;
        height: 50px;
        margin: 0 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.4;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .services h2,
    .ethics h2,
    .talent h2,
    .contact h2 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        min-width: 180px;
    }
    
    .service-card,
    .talent-card,
    .contact-form {
        padding: 1.2rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .principle-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .talent-avatar {
        width: 100px;
        height: 100px;
    }
    
    .mobile-nav-menu {
        padding: 1.5rem;
    }
    
    .mobile-nav-menu a {
        font-size: 1.1rem;
        padding: 0.8rem;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .contact-label {
        min-width: auto;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .avatar-showcase {
        width: 240px;
        height: 240px;
    }
    
    .digital-brain {
        width: 200px;
        height: 200px;
    }
    
    .brain-core {
        width: 100px;
        height: 100px;
    }
}