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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: #fff;
}

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

/* Typography */
.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1f2937;
    margin-bottom: 1rem;
    text-align: center;
}

.section-description {
    font-size: 1.125rem;
    color: #6b7280;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.gradient-text {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.italic {
    font-style: italic;
}

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

.btn-primary {
    background: #3b82f6;
    color: white;
    box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px 0 rgba(59, 130, 246, 0.4);
}

.btn-outline {
    background: transparent;
    color: #1f2937;
    border: 2px solid #1f2937;
}

.btn-outline:hover {
    background: #1f2937;
    color: white;
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.company-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}

.payoff {
    font-size: 0.75rem;
    font-weight: 500;
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { opacity: 0.8; }
    to { opacity: 1; text-shadow: 0 0 10px rgba(59, 130, 246, 0.3); }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #3b82f6;
}

.nav-btn {
    background: #3b82f6;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: #2563eb;
    transform: scale(1.05);
}

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

.bar {
    width: 25px;
    height: 3px;
    background: #1f2937;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding-top: 80px;
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 80vh;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

/* 3D Animation Styles */
.hero-animation {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.celestial-system {
    position: relative;
    width: 100%;
    height: 600px;
    perspective: 1000px;
}

.orbit-container {
    position: absolute;
    inset: 0;
}

.orbit {
    position: absolute;
    border-radius: 50%;
    border-style: solid;
    border-width: 2px;
}

.outer-orbit {
    inset: 0;
    border-color: rgba(59, 130, 246, 0.3);
    animation: spin-slow 20s linear infinite;
}

.middle-orbit {
    inset: 3rem;
    border-color: rgba(139, 92, 246, 0.4);
    border-width: 1px;
    animation: spin-reverse 15s linear infinite;
}

.inner-orbit {
    inset: 6rem;
    border-color: rgba(249, 115, 22, 0.5);
    border-width: 1px;
    animation: spin-fast 8s linear infinite;
}

.ultra-inner-orbit {
    inset: 8rem;
    border-color: rgba(6, 182, 212, 0.4);
    border-width: 1px;
    animation: spin-ultra-fast 5s linear infinite;
}

.planet {
    position: absolute;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.planet-1 {
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    animation: pulse 2s ease-in-out infinite;
}

.planet-2 {
    bottom: -6px;
    right: 50%;
    transform: translateX(50%);
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #06b6d4, #2563eb);
}

.planet-3 {
    top: 25%;
    right: -10px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.planet-4 {
    bottom: 33%;
    left: -6px;
    width: 12px;
    height: 24px;
    background: linear-gradient(180deg, #a855f7, #ec4899);
    border-radius: 50%;
}

.planet-5 {
    left: 25%;
    top: -8px;
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    border-radius: 50%;
}

.planet-6 {
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #f59e0b, #eab308);
    border-radius: 50%;
}

.planet-7 {
    bottom: 25%;
    right: 25%;
    width: 8px;
    height: 16px;
    background: linear-gradient(180deg, #eab308, #f59e0b);
    border-radius: 50%;
}

.planet-8 {
    top: 50%;
    right: -4px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #06b6d4, #14b8a6);
    border-radius: 50%;
}

.planet-9 {
    left: 50%;
    bottom: -4px;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #14b8a6, #06b6d4);
    border-radius: 50%;
}

/* Asteroids */
.asteroids {
    position: absolute;
    inset: 0;
}

.asteroid {
    position: absolute;
    border-radius: 50%;
}

.asteroid-1 {
    top: 4rem;
    left: 5rem;
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #94a3b8, #64748b);
    animation: float-asteroid 6s ease-in-out infinite;
    animation-delay: 0.5s;
}

.asteroid-2 {
    top: 6rem;
    right: 4rem;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    animation: float-asteroid-slow 8s ease-in-out infinite;
    animation-delay: 1.2s;
}

.asteroid-3 {
    bottom: 5rem;
    left: 3rem;
    width: 16px;
    height: 8px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 8px;
    transform: rotate(12deg);
    animation: float-asteroid 7s ease-in-out infinite;
    animation-delay: 2s;
}

.asteroid-4 {
    bottom: 8rem;
    right: 6rem;
    width: 8px;
    height: 12px;
    background: linear-gradient(180deg, #f43f5e, #dc2626);
    border-radius: 50%;
    animation: float-asteroid-slow 9s ease-in-out infinite;
    animation-delay: 0.8s;
}

/* Central Planet */
.central-planet {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.planet-glow {
    position: absolute;
    border-radius: 50%;
    animation: pulse-star 3s ease-in-out infinite;
}

.glow-1 {
    width: 288px;
    height: 288px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, rgba(249, 115, 22, 0.15) 50%, rgba(239, 68, 68, 0.1) 100%);
    filter: blur(32px);
}

.glow-2 {
    width: 256px;
    height: 256px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.15) 50%, rgba(236, 72, 153, 0.1) 100%);
    filter: blur(24px);
    animation-delay: 1s;
}

.earth-planet {
    position: relative;
    width: 192px;
    height: 192px;
    transform: preserve-3d;
    transition: transform 0.5s ease;
}

.earth-planet:hover {
    transform: scale(1.1);
}

.earth-base {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.3);
    border: 1px solid rgba(59, 130, 246, 0.5);
    overflow: hidden;
}

/* Continents */
.continent {
    position: absolute;
    opacity: 0.9;
}

.europe-africa {
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2rem;
    height: 3rem;
    background: linear-gradient(135deg, #10b981, #059669);
    clip-path: polygon(20% 0%, 80% 0%, 100% 40%, 90% 80%, 60% 100%, 30% 95%, 0% 60%, 10% 20%);
}

.north-america {
    top: 0.75rem;
    left: 0.5rem;
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #059669, #047857);
    opacity: 0.88;
    clip-path: polygon(0% 20%, 70% 0%, 100% 30%, 90% 70%, 60% 100%, 20% 90%, 0% 60%);
}

.south-america {
    top: 3rem;
    left: 1rem;
    width: 1.5rem;
    height: 3rem;
    background: linear-gradient(135deg, #10b981, #eab308);
    opacity: 0.85;
    clip-path: polygon(30% 0%, 70% 10%, 100% 40%, 80% 80%, 50% 100%, 20% 90%, 0% 50%, 10% 20%);
}

.asia {
    top: 0.5rem;
    right: 0.25rem;
    width: 3rem;
    height: 2rem;
    background: linear-gradient(135deg, #059669, #92400e);
    opacity: 0.87;
    clip-path: polygon(0% 40%, 40% 0%, 80% 10%, 100% 50%, 90% 100%, 60% 90%, 20% 100%, 0% 70%);
}

.australia {
    bottom: 1rem;
    right: 0.75rem;
    width: 1.5rem;
    height: 1rem;
    background: linear-gradient(135deg, #ea580c, #dc2626);
    opacity: 0.82;
    transform: rotate(12deg);
    clip-path: polygon(0% 30%, 60% 0%, 100% 40%, 80% 100%, 20% 90%);
}

.antarctica {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4rem;
    height: 1rem;
    background: linear-gradient(to top, #f3f4f6, #e5e7eb);
    border-radius: 2rem 2rem 0 0;
    opacity: 0.9;
}

.arctic {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3rem;
    height: 1rem;
    background: linear-gradient(to bottom, #f3f4f6, #dbeafe);
    border-radius: 0 0 1.5rem 1.5rem;
    opacity: 0.85;
}

/* Geographic Features */
.feature {
    position: absolute;
}

.sahara {
    top: 2rem;
    left: 50%;
    transform: translateX(-25%);
    width: 1.5rem;
    height: 0.75rem;
    background: linear-gradient(135deg, #eab308, #ea580c);
    opacity: 0.8;
    border-radius: 0.5rem;
}

.amazon {
    top: 3.5rem;
    left: 1.5rem;
    width: 1rem;
    height: 1rem;
    background: linear-gradient(135deg, #059669, #064e3b);
    opacity: 0.85;
    border-radius: 0.5rem;
}

.himalayas {
    top: 1.5rem;
    right: 1rem;
    width: 0.75rem;
    height: 0.5rem;
    background: linear-gradient(90deg, #4b5563, #374151);
    opacity: 0.75;
    border-radius: 50%;
}

/* Clouds */
.cloud {
    position: absolute;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.2));
    border-radius: 1rem;
    opacity: 0.55;
    filter: blur(1px);
}

.cloud-1 {
    top: 1.5rem;
    left: 2rem;
    width: 2rem;
    height: 0.5rem;
    animation: drift-clouds 12s ease-in-out infinite;
}

.cloud-2 {
    top: 3.5rem;
    right: 1.5rem;
    width: 1.5rem;
    height: 0.5rem;
    animation: drift-clouds-slow 15s ease-in-out infinite;
}

.cloud-3 {
    bottom: 2rem;
    left: 1.5rem;
    width: 1.75rem;
    height: 0.5rem;
    animation: drift-clouds-reverse 18s ease-in-out infinite;
}

/* Oceans */
.ocean {
    position: absolute;
    border-radius: 50%;
}

.ocean-1 {
    top: 2.5rem;
    right: 2rem;
    width: 1rem;
    height: 1.5rem;
    background: linear-gradient(135deg, #7dd3fc, #0369a1);
    opacity: 0.4;
}

.ocean-2 {
    bottom: 2.5rem;
    left: 2.5rem;
    width: 1.5rem;
    height: 1rem;
    background: linear-gradient(135deg, #22d3ee, #0369a1);
    opacity: 0.35;
}

/* Planet Logo */
.planet-logo {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.planet-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    drop-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Atmospheric Effects */
.atmosphere {
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.3), rgba(59, 130, 246, 0.2), transparent);
    border-radius: 50%;
    filter: blur(2px);
}

.day-night {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, transparent, rgba(0, 0, 0, 0.25));
    border-radius: 50%;
}

.sunlight {
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    width: 3rem;
    height: 2.5rem;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.15), transparent);
    border-radius: 50%;
    filter: blur(2px);
}

.reflection {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), transparent, transparent);
    border-radius: 50%;
    opacity: 0.5;
}

/* Star Rays */
.star-rays {
    position: absolute;
    inset: 0;
    animation: pulse-rays 4s ease-in-out infinite;
}

.ray {
    position: absolute;
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.3), transparent);
}

.ray-vertical-top {
    top: 0;
    left: 50%;
    width: 2px;
    height: 3rem;
    transform: translateX(-50%) translateY(-100%);
}

.ray-vertical-bottom {
    bottom: 0;
    left: 50%;
    width: 2px;
    height: 3rem;
    transform: translateX(-50%) translateY(100%);
}

.ray-horizontal-left {
    left: 0;
    top: 50%;
    height: 2px;
    width: 3rem;
    transform: translateY(-50%) translateX(-100%);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.3), transparent);
}

.ray-horizontal-right {
    right: 0;
    top: 50%;
    height: 2px;
    width: 3rem;
    transform: translateY(-50%) translateX(100%);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.3), transparent);
}

.ray-diagonal-1 {
    top: 0.5rem;
    right: 0.5rem;
    width: 2px;
    height: 2.5rem;
    transform: rotate(45deg) translateX(100%) translateY(-100%);
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.2), transparent);
}

.ray-diagonal-2 {
    bottom: 0.5rem;
    left: 0.5rem;
    width: 2px;
    height: 2.5rem;
    transform: rotate(45deg) translateX(-100%) translateY(100%);
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.2), transparent);
}

.ray-diagonal-3 {
    top: 0.5rem;
    left: 0.5rem;
    width: 2px;
    height: 2.5rem;
    transform: rotate(-45deg) translateX(-100%) translateY(-100%);
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.2), transparent);
}

.ray-diagonal-4 {
    bottom: 0.5rem;
    right: 0.5rem;
    width: 2px;
    height: 2.5rem;
    transform: rotate(-45deg) translateX(100%) translateY(100%);
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.2), transparent);
}

/* Space Dust */
.space-dust {
    position: absolute;
    inset: 0;
}

.dust-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: twinkle 3s ease-in-out infinite;
}

/* Animation Keyframes */
@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

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

@keyframes spin-ultra-fast {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes float-asteroid {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(180deg); }
}

@keyframes float-asteroid-slow {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(90deg); }
}

@keyframes pulse-star {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

@keyframes pulse-rays {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

@keyframes drift-clouds {
    0%, 100% { transform: translateX(0px); }
    50% { transform: translateX(10px); }
}

@keyframes drift-clouds-slow {
    0%, 100% { transform: translateX(0px); }
    50% { transform: translateX(-8px); }
}

@keyframes drift-clouds-reverse {
    0%, 100% { transform: translateX(0px); }
    50% { transform: translateX(12px); }
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

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

/* Stats Section */
.stats {
    padding: 4rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.stats-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0f172a, #1e3a8a, #581c87);
}

.stats-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2), rgba(249, 115, 22, 0.2));
    animation: pulse 4s ease-in-out infinite;
}

.stats-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(48px);
    animation: float 6s ease-in-out infinite;
}

.blob-1 {
    top: 0;
    left: 25%;
    width: 24rem;
    height: 24rem;
    background: rgba(59, 130, 246, 0.1);
}

.blob-2 {
    bottom: 0;
    right: 25%;
    width: 24rem;
    height: 24rem;
    background: rgba(139, 92, 246, 0.1);
    animation-delay: 2s;
}

.stats-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 10;
}

.stats-title {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
}

.stats-description {
    font-size: 1.125rem;
    color: #d1d5db;
    max-width: 32rem;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 10;
}

.stat-card {
    text-align: center;
    group: true;
}

.stat-content {
    position: relative;
    backdrop-filter: blur(4px);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.5s ease;
    overflow: hidden;
}

.stat-card:hover .stat-content {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.stat-floating {
    position: absolute;
    border-radius: 0.5rem;
    animation: float 4s ease-in-out infinite;
}

.stat-float-1 {
    top: 1rem;
    right: 1rem;
    width: 2rem;
    height: 2rem;
    background: rgba(59, 130, 246, 0.2);
    transform: rotate(12deg);
}

.stat-float-2 {
    bottom: 1rem;
    left: 1rem;
    width: 1.5rem;
    height: 1.5rem;
    background: rgba(6, 182, 212, 0.2);
    border-radius: 50%;
    animation-delay: 1s;
}

.stat-float-3 {
    top: 1rem;
    left: 1rem;
    width: 2.5rem;
    height: 1.5rem;
    background: rgba(249, 115, 22, 0.2);
    transform: rotate(45deg);
}

.stat-float-4 {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 1rem;
    height: 1rem;
    background: rgba(251, 191, 36, 0.3);
    border-radius: 0.25rem;
    animation-delay: 1.5s;
}

.stat-float-5 {
    top: 1.5rem;
    right: 1.5rem;
    width: 1.5rem;
    height: 2rem;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 50%;
}

.stat-float-6 {
    bottom: 1rem;
    left: 1.5rem;
    width: 2rem;
    height: 1rem;
    background: rgba(236, 72, 153, 0.2);
    transform: rotate(12deg);
    animation-delay: 0.5s;
}

.stat-overlay {
    position: absolute;
    inset: 0;
    border-radius: 1.5rem;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.stat-card:hover .stat-overlay {
    opacity: 1;
}

.stat-inner {
    position: relative;
    z-index: 10;
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1;
    background: linear-gradient(135deg, #3b82f6, #06b6d4, #2563eb);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-card:nth-child(2) .stat-number {
    background: linear-gradient(135deg, #f59e0b, #eab308, #f59e0b);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-card:nth-child(3) .stat-number {
    background: linear-gradient(135deg, #a855f7, #ec4899, #8b5cf6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.stat-subtitle {
    color: #d1d5db;
    font-size: 0.875rem;
}

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

/* About Section */
.about {
    padding: 5rem 0;
    background: #f8fafc;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-description {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: white;
}

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

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

.service-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.service-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.service-features li {
    padding: 0.5rem 0;
    color: #4b5563;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Technologies Section */
.technologies {
    padding: 5rem 0;
    background: #f8fafc;
}

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

.tech-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.tech-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.tech-icon {
    font-size: 3rem;
    color: #3b82f6;
    margin-bottom: 1rem;
}

.tech-name {
    font-weight: 600;
    color: #1f2937;
    font-size: 1.125rem;
}

/* Portfolio Section */
.portfolio {
    padding: 5rem 0;
    background: white;
}

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

.portfolio-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.portfolio-image {
    height: 200px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-placeholder {
    color: white;
    font-size: 3rem;
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-category {
    color: #3b82f6;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.portfolio-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.portfolio-description {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.portfolio-tech {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.portfolio-tech span {
    background: #f3f4f6;
    color: #374151;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: #f8fafc;
}

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

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

.contact-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.contact-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: #6b7280;
    margin-bottom: 1rem;
}

.contact-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #2563eb;
}

/* Forms */
.contact-form-container,
.careers-content {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.contact-form,
.careers-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-custom {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #d1d5db;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: #3b82f6;
    border-color: #3b82f6;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: "✓";
    color: white;
    font-size: 0.875rem;
    font-weight: bold;
}

.form-submit {
    align-self: flex-start;
    margin-top: 1rem;
}

.form-message {
    padding: 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    display: none;
}

.form-message.success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.form-message.error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

/* Careers Section */
.careers {
    padding: 5rem 0;
    background: white;
}

.careers-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-section h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    filter: invert(1);
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-company-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer-payoff {
    font-size: 0.75rem;
    font-weight: 500;
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-description {
    color: #d1d5db;
    margin-bottom: 1rem;
    line-height: 1.6;
    max-width: 300px;
}

.footer-contact {
    color: #9ca3af;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.footer-title {
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3b82f6;
}

.footer-contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #d1d5db;
}

.footer-contact-info i {
    color: #3b82f6;
    margin-top: 0.25rem;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
}

.footer-copyright {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .celestial-system {
        height: 400px;
    }
    
    .earth-planet {
        width: 128px;
        height: 128px;
    }
    
    .glow-1 {
        width: 192px;
        height: 192px;
    }
    
    .glow-2 {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(12px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem;
        transition: right 0.3s ease;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .services-grid,
    .tech-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .celestial-system {
        height: 300px;
    }
    
    .earth-planet {
        width: 96px;
        height: 96px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stats-title {
        font-size: 2rem;
    }
    
    .stat-content {
        padding: 2rem 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}