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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Page Navigation */
.page-container {
    display: none;
}

.page-container.active {
    display: block;
}

.back-button {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1001;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 12px 16px;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-2px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 24px 48px;
    background: rgba(10, 10, 10, 0.60);
    backdrop-filter: blur(20px);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.handwrittenfont {
  font-family: 'Allura', cursive;
}

.SolutionFont {
  font-family: 'Bodoni Moda', serif;
}

.logo {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 0.5px;
    color: #ffffff;
}

.logo::before {
    display: none;
}

@keyframes statusPulse {
    0%, 100% { 
        transform: scale(1); 
        opacity: 1; 
        box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.7);
    }
    50% { 
        transform: scale(1.1); 
        opacity: 0.9;
        box-shadow: 0 0 0 8px rgba(255, 68, 68, 0);
    }
}

.nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav a {
    color: #888888;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav a:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(20px, 5vw, 48px);
    position: relative;
    gap: clamp(40px, 8vw, 80px);
}

.hero-content {
    flex: 1;
    max-width: 580px;
    z-index: 10;
    padding-right: 40px;
}

.hero h1 {
    font-size: clamp(36px, 8vw, 80px);
    font-weight: 800;
    line-height: 0.95;
    margin-bottom: 40px;
    letter-spacing: -3px;
    color: #ffffff;
}

.hero p {
    font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(16px, 4vw, 22px);
    color: #b0b0b0;
    margin-bottom: clamp(32px, 6vw, 56px);
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.2px;
    max-width: 100%;
}

.hero-buttons {
    display: flex;
    gap: 24px;
    margin-top: 8px;
}

.btn {
    padding: clamp(14px, 3vw, 18px) clamp(24px, 5vw, 36px);
    border-radius: 12px;
    text-decoration: none;
    font-size: clamp(14px, 3vw, 16px);
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    border: none;
    text-transform: none;
    letter-spacing: 0.5px;
    min-height: 44px;
    justify-content: center;
}

.btn-primary {
    background: #ffffff;
    color: #0a0a0a;
    border: 2px solid transparent;
}

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

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #333333;
}

.btn-secondary:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

/* Animation Container */
.animation-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: clamp(300px, 50vh, 600px);
    min-width: clamp(250px, 50vw, 500px);
    width: 100%;
}

.orbital-system {
    width: clamp(250px, 40vw, 500px);
    height: clamp(250px, 40vw, 500px);
    position: relative;
}

/* Orbital rings */
.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-style: dashed;
}

.orbit-1 { 
    width: 400px; 
    height: 400px; 
    margin-left: -200px;
    margin-top: -200px;
}
.orbit-2 { 
    width: 320px; 
    height: 320px; 
    margin-left: -160px;
    margin-top: -160px;
}
.orbit-3 { 
    width: 240px; 
    height: 240px; 
    margin-left: -120px;
    margin-top: -120px;
}

/* Central core */
.core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(60px, 12vw, 120px);
    height: clamp(60px, 12vw, 120px);
    z-index: 10;
}

.core-inner {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(14px, 4vw, 24px);
    font-weight: 700;
    color: #0a0a0a;
    box-shadow: 
        0 0 40px rgba(255, 255, 255, 0.3),
        inset 0 0 20px rgba(0, 0, 0, 0.1);
}

/* Product balls */
.product-ball {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform-origin: center;
    cursor: pointer;
    transition: transform 0.1s ease;
    z-index: 20;
}

.ball-content {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0a0a0a;
    transition: all 0.3s ease;
}

.latmo-ball .ball-content {
    background: linear-gradient(135deg, #63bdf1, #5cf6ee);
    box-shadow: 0 0 20px rgba(99, 232, 241, 0.5);
}

.mai-ball .ball-content {
    background: linear-gradient(135deg, #10b981, #06d6a0);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}

.futured-ball .ball-content {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
}

.product-ball:hover .ball-content {
    transform: scale(1.2);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
}

/* Rotating Orb */
.rotating-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    box-shadow: 
        0 0 40px rgba(102, 126, 234, 0.6),
        0 0 80px rgba(118, 75, 162, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
    z-index: 5;
    animation: rotateOrb 8s linear infinite, pulseOrb 3s ease-in-out infinite;
    opacity: 0.8;
}

@keyframes rotateOrb {
    0% {
        transform: translate(-50%, -50%) rotateY(0deg) rotateX(0deg);
    }
    25% {
        transform: translate(-50%, -50%) rotateY(90deg) rotateX(20deg);
    }
    50% {
        transform: translate(-50%, -50%) rotateY(180deg) rotateX(0deg);
    }
    75% {
        transform: translate(-50%, -50%) rotateY(270deg) rotateX(-20deg);
    }
    100% {
        transform: translate(-50%, -50%) rotateY(360deg) rotateX(0deg);
    }
}

@keyframes pulseOrb {
    0%, 100% {
        box-shadow: 
            0 0 40px rgba(102, 126, 234, 0.6),
            0 0 80px rgba(118, 75, 162, 0.4),
            inset 0 0 20px rgba(255, 255, 255, 0.2);
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        box-shadow: 
            0 0 60px rgba(102, 126, 234, 0.8),
            0 0 120px rgba(118, 75, 162, 0.6),
            inset 0 0 30px rgba(255, 255, 255, 0.3);
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.ball-tooltip {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 12px 16px;
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
    z-index: 20;
    pointer-events: none;
}

.ball-tooltip h4 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 4px 0;
}

.ball-tooltip p {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #888888;
    margin: 0;
    max-width: 200px;
    white-space: normal;
}

.product-ball:hover .ball-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-10px);
}

.debris {
    position: absolute;
    top: 50%;
    left: 50%;
    background: #444444;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.5;
}

.debris-1 {
    width: 1px;
    height: 1px;
    border-radius: 50%;
}

.debris-2 {
    width: 1px;
    height: 2px;
    border-radius: 50% 50% 0 0;
}

.debris-3 {
    width: 2px;
    height: 1px;
    border-radius: 50%;
}

/* Connection lines */
.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.connection-line {
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 1;
    fill: none;
    stroke-dasharray: 4 4;
}



/* Products Section */
.products {
    padding: clamp(80px, 12vw, 140px) clamp(20px, 5vw, 48px);
    background: #080808;
}

.section-header {
    text-align: center;
    margin-bottom: 96px;
}

.title-container {
    position: relative;
    display: inline-block;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.section-header h2 {
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 800;
    margin: 0;
    letter-spacing: -2px;
    color: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    min-width: clamp(200px, 50vw, 400px);
    text-align: center;
}

.section-header p {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 20px;
    color: #888888;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.2px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(480px, 100%), 1fr));
    gap: clamp(24px, 4vw, 56px);
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-card {
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: clamp(12px, 3vw, 20px);
    padding: clamp(24px, 5vw, 56px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #ffffff;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.3);
}

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

.product-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
}

.product-icon {
    width: 64px;
    height: 64px;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.product-icon svg {
    width: 32px;
    height: 32px;
}

.product-card:hover .product-icon {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.3);
}

.product-title {
    flex: 1;
}

.product-card h3 {
    font-size: clamp(24px, 5vw, 36px);
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -1px;
    color: #ffffff;
    line-height: 1.2;
}

.product-version {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-card p {
    font-family: 'Source Sans 3', sans-serif;
    color: #a0a0a0;
    line-height: 1.7;
    margin-bottom: clamp(24px, 4vw, 36px);
    font-weight: 400;
    font-size: clamp(14px, 3vw, 17px);
    letter-spacing: 0.2px;
}

.product-features {
    list-style: none;
    margin-bottom: clamp(32px, 5vw, 48px);
    display: grid;
    gap: clamp(12px, 2vw, 16px);
}

.product-features li {
    font-family: 'Source Sans 3', sans-serif;
    color: #cccccc;
    display: flex;
    align-items: center;
    gap: clamp(12px, 2vw, 16px);
    font-weight: 500;
    font-size: clamp(13px, 2.5vw, 15px);
    line-height: 1.5;
}

.product-features li::before {
    content: '→';
    color: var(--arrow-color, #ffffff);
    font-weight: bold;
    width: 12px;
}

.product-status {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.status-indicator {
    width: 8px;
    height: 8px;
    background: #00ff00;
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite;
}

.status-text {
    font-family: 'SF Pro Display', sans-serif;
    font-size: 13px;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 500;
}

/* Product Detail Pages */
.product-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 40px 60px;
    position: relative;
}

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

.product-hero h1 {
    font-size: 80px;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -3px;
}

.product-hero .version {
    font-family: 'JetBrains Mono', monospace;
    font-size: 16px;
    color: #666666;
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.product-hero p {
    font-size: 24px;
    color: #888888;
    line-height: 1.6;
    margin-bottom: 48px;
}

.product-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Demo Video Section */
.demo-section {
    padding: 100px 40px;
    background: #0a0a0a;
    text-align: center;
}

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

.demo-container h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffffff;
}

.demo-container p {
    font-size: 20px;
    color: #888888;
    line-height: 1.6;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: #111111;
    aspect-ratio: 16/9;
}

.video-container {
    position: relative;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 12px;
    border: none;
    transition: transform 0.3s ease;
}

.video-container:hover iframe {
    transform: scale(1.02);
}

.video-container video {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 12px;
    transition: transform 0.3s ease;
    object-fit: cover;
}

.video-container:hover video {
    transform: scale(1.02);
}

/* Custom Video Controls */
.custom-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    opacity: 1;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.video-container:not(:hover) .custom-controls {
    opacity: 0.8;
}

.video-container:hover .custom-controls {
    opacity: 1;
}

.play-pause-btn, .volume-btn, .fullscreen-btn {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-pause-btn:hover, .volume-btn:hover, .fullscreen-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.play-pause-btn svg, .volume-btn svg, .fullscreen-btn svg {
    width: 20px;
    height: 20px;
}

.time-display {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    color: #ffffff;
    white-space: nowrap;
}

.progress-container {
    flex: 1;
    padding: 10px 0;
    cursor: pointer;
}

.progress-bar {
    position: relative;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.progress-fill {
    height: 100%;
    background: #ffffff;
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s ease;
}

.progress-handle {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s ease;
    left: 0%;
}

.progress-container:hover .progress-handle {
    opacity: 1;
}

.volume-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.volume-slider {
    width: 60px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    position: relative;
    cursor: pointer;
}

.volume-fill {
    height: 100%;
    background: #ffffff;
    border-radius: 2px;
    width: 100%;
}

.volume-handle {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.volume-slider:hover .volume-handle {
    opacity: 1;
}

.feature-section {
    padding: 100px 40px;
    background: #080808;
}

.feature-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 48px;
}

.feature-card {
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.feature-card p {
    color: #888888;
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    display: grid;
    gap: 8px;
}

.feature-list li {
    color: #cccccc;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.feature-list li::before {
    content: '→';
    color: #ffffff;
    font-weight: bold;
}

.specs-section {
    padding: 100px 40px;
    background: #0a0a0a;
}

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

.specs-container h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #ffffff;
}

.specs-container p {
    font-size: 18px;
    color: #666666;
    margin-bottom: 60px;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    text-align: left;
}

.spec-item {
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
}

.spec-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.spec-value {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

/* Footer */
.footer {
    padding: clamp(32px, 8vw, 64px) clamp(20px, 5vw, 48px);
    text-align: center;
    color: #444444;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: #050505;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: clamp(20px, 5vw, 40px);
    margin-bottom: clamp(20px, 4vw, 32px);
    flex-wrap: wrap;
}

.footer-links a {
    color: #666666;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

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

.footer p {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: #444444;
}

/* Tech pattern background */
.tech-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    pointer-events: none;
    background-image: 
        linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background: #ffffff;
    margin: 2px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

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

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

.mobile-menu-toggle.active span:third-child {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: clamp(60px, 10vh, 70px);
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 20px 0;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-link {
    display: block;
    padding: 15px 30px;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-link:hover,
.mobile-nav-link:focus {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding-left: 40px;
}

.mobile-nav-link:last-child {
    border-bottom: none;
}

/* Responsive Design */
/* Enhanced LATMO Page Design with Live Animations */

/* Floating Background Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.floating-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    animation: float 20s infinite linear;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.floating-dot::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: rgba(68, 250, 255, 0.1);
    border-radius: 50%;
    animation: glow 3s infinite ease-in-out;
}

.dot-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.dot-2 {
    top: 60%;
    left: 80%;
    animation-delay: -10s;
    animation-duration: 30s;
}

.dot-3 {
    top: 80%;
    left: 20%;
    animation-delay: -20s;
    animation-duration: 35s;
}

.floating-line {
    position: absolute;
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: floatVertical 15s infinite ease-in-out;
}

.line-1 {
    top: 30%;
    left: 70%;
    animation-delay: -5s;
}

.line-2 {
    top: 50%;
    left: 30%;
    animation-delay: -12s;
}

.dot-4 {
    top: 15%;
    left: 60%;
    animation-delay: -8s;
    animation-duration: 28s;
}

.dot-5 {
    top: 70%;
    left: 50%;
    animation-delay: -15s;
    animation-duration: 32s;
}

.line-3 {
    top: 25%;
    left: 85%;
    animation-delay: -18s;
    height: 40px;
}

.floating-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-bottom: 5px solid rgba(255, 255, 255, 0.1);
    animation: float 25s infinite linear;
}

.triangle-1 {
    top: 40%;
    left: 15%;
    animation-delay: -7s;
    animation-duration: 22s;
}

.triangle-2 {
    top: 65%;
    left: 75%;
    animation-delay: -14s;
    animation-duration: 26s;
    transform: rotate(180deg);
}

/* Hero Section Improvements */
.hero-badge {
    display: inline-block;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out;
}

.hero-badge .badge-text {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    text-transform: uppercase;
}


.feature-section .section-badge .badge-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: borderShine 3s infinite 1.5s;
}

.product-title {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 16px;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.title-main {
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 800;
    color: #ffffff;
    font-family: 'Space Grotesk', sans-serif;
}

.title-version {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 400;
    color: #ffffff;
    font-family: 'JetBrains Mono', monospace;
}

.version-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.version-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.version-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.version-status {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 500;
    color: #ffffff;
    background: rgba(68, 250, 255, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid rgba(68, 250, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: #ffffff;
    margin-bottom: 40px;
    max-width: 700px;
    text-align: left;
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

/* Enhanced Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 8px;
    font-family: 'Raleway', sans-serif;
    font-weight: 540;
    font-size: 16px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out 0.8s both;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    z-index: -1;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: translateX(3px) scale(1.1);
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background: #ffffff;
    color: #0a0a0a;
    border: 2px solid #ffffff;
}

.btn-primary:hover {
    background: #ffffff;
    color: #0a0a0a;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
}

/* Improved Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 64px;
    animation: fadeInUp 0.6s ease-out;
}

.section-badge {
    display: inline-block;
    margin-bottom: 16px;
}

.section-badge .badge-text {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.2px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    font-family: 'Space Grotesk', sans-serif;
}

.section-description {
    font-size: 18px;
    line-height: 1.6;
    color: #aaaaaa;
    max-width: 600px;
    margin: 0 auto;
}

/* Enhanced Feature Cards */
.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(68, 250, 255, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(68, 250, 255, 0.3);
    background: rgba(68, 250, 255, 0.02);
}

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

.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    animation: iconFloat 6s infinite ease-in-out;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(68, 250, 255, 0.2), transparent);
    animation: iconRotate 8s infinite linear;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.feature-icon svg {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    font-family: 'Space Grotesk', sans-serif;
}

.feature-description {
    font-size: 16px;
    line-height: 1.6;
    color: #aaaaaa;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 0;
    font-size: 15px;
    color: #cccccc;
    line-height: 1.5;
}

.list-bullet {
    color: #ffffff;
    font-weight: bold;
    font-size: 16px;
}

/* Enhanced Specs Section */
.spec-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
    position: relative;
}

.spec-item:hover {
    transform: translateY(-2px);
    border-color: rgba(68, 250, 255, 0.3);
    background: rgba(68, 250, 255, 0.02);
}

.spec-category {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.spec-label {
    font-size: 14px;
    color: #aaaaaa;
    margin-bottom: 8px;
    font-weight: 500;
}

.spec-value {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    font-family: 'Space Grotesk', sans-serif;
}

/* Section Animations */
.section-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.animated-grid {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: gridMove 20s infinite linear;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: pulse 4s infinite ease-in-out;
}

.ring-1 {
    width: 100px;
    height: 100px;
    animation-delay: 0s;
}

.ring-2 {
    width: 150px;
    height: 150px;
    animation-delay: 2s;
}

.ring-3 {
    width: 200px;
    height: 200px;
    animation-delay: 4s;
}

.floating-orb {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 50%;
    animation: float 30s infinite ease-in-out;
}

.orb-1 {
    top: 20%;
    left: 15%;
    animation-delay: -10s;
    animation-duration: 35s;
}

.orb-2 {
    top: 75%;
    left: 85%;
    animation-delay: -20s;
    animation-duration: 25s;
}

/* Live Animations */
.animate-pulse {
    animation: subtlePulse 2s infinite ease-in-out;
}

.animate-blink {
    animation: blink 4s infinite ease-in-out;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.2;
    }
    25% {
        transform: translateY(-15px) translateX(8px) rotate(90deg);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-25px) translateX(15px) rotate(180deg);
        opacity: 0.6;
    }
    75% {
        transform: translateY(-15px) translateX(5px) rotate(270deg);
        opacity: 0.4;
    }
    100% {
        transform: translateY(0px) translateX(0px) rotate(360deg);
        opacity: 0.2;
    }
}

@keyframes floatVertical {
    0%, 100% {
        transform: translateY(0px);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-30px);
        opacity: 0.3;
    }
}

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

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
}

@keyframes subtlePulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.02);
    }
}

@keyframes blink {
    0%, 50%, 100% {
        opacity: 1;
        color: #ffffff;
    }
    25%, 75% {
        opacity: 0.6;
        color: rgba(255, 255, 255, 0.8);
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes borderShine {
    0% {
        left: -100%;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

@keyframes logoSpin {
    0% {
        transform: rotateY(0deg) scale(1);
    }
    50% {
        transform: rotateY(180deg) scale(1.1);
    }
    100% {
        transform: rotateY(360deg) scale(1);
    }
}

@keyframes cardGlow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2), 0 0 30px rgba(68, 250, 255, 0.1);
    }
}


@keyframes statusShine {
    0% {
        transform: translateX(-100%) skewX(-20deg);
    }
    100% {
        transform: translateX(200%) skewX(-20deg);
    }
}

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

@keyframes iconRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Touch-friendly interactions */
@media (hover: none) and (pointer: coarse) {
    .product-card {
        transition: all 0.2s ease;
    }
    
    .product-card:active {
        transform: translateY(-4px);
        border-color: rgba(255, 255, 255, 0.2);
        box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
    }
    
    .btn:active {
        transform: scale(0.98);
    }
    
    .mobile-nav-link:active {
        background: rgba(255, 255, 255, 0.15);
    }
}


@media (max-width: 1200px) {
    .hero {
        padding: 0 30px;
    }
    
    .orbital-system {
        width: 450px;
        height: 450px;
    }
    
    .orbit-1 { 
        width: 360px; 
        height: 360px; 
        margin-left: -180px;
        margin-top: -180px;
    }
    .orbit-2 { 
        width: 288px; 
        height: 288px; 
        margin-left: -144px;
        margin-top: -144px;
    }
    .orbit-3 { 
        width: 216px; 
        height: 216px; 
        margin-left: -108px;
        margin-top: -108px;
    }
    
    
}

@media (max-width: 968px) {
    .header {
        padding: 15px 30px;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        flex-direction: column-reverse;
        text-align: center;
        gap: 60px;
        padding: 100px 30px 60px;
    }
    
    .hero h1 {
        font-size: 56px;
        letter-spacing: -2px;
    }
    
    .hero p {
        font-size: 18px;
        max-width: 400px;
        margin: 0 auto 40px;
    }
    
    .orbital-system {
        width: 375px;
        height: 375px;
    }
    
    .orbit-1 { 
        width: 300px; 
        height: 300px; 
        margin-left: -150px;
        margin-top: -150px;
    }
    .orbit-2 { 
        width: 240px; 
        height: 240px; 
        margin-left: -120px;
        margin-top: -120px;
    }
    .orbit-3 { 
        width: 180px; 
        height: 180px; 
        margin-left: -90px;
        margin-top: -90px;
    }
    
    
    
    .metric-display {
        padding: 10px 14px;
        font-size: 11px;
    }
    
    .metric-value {
        font-size: 16px;
    }
    
    .products {
        padding: 80px 30px;
    }
    
    .section-header h2 {
        font-size: 42px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .product-card {
        padding: 36px;
    }
}

@media (max-width: 640px) {
    .header {
        padding: 12px 20px;
    }
    
    .logo {
        font-size: 18px;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-nav {
        top: 60px;
    }
    
    .btn {
        padding: 10px 16px;
        font-size: 13px;
        min-height: 38px;
    }
    
    .hero {
        flex-direction: column-reverse;
        gap: 40px;
        padding: 80px 20px 40px;
    }
    
    .hero h1 {
        font-size: 42px;
        line-height: 1;
        margin-bottom: 24px;
    }
    
    .hero p {
        font-size: 16px;
        margin-bottom: 32px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    .btn {
        width: 200px;
        justify-content: center;
    }
    
    .animation-container {
        height: 320px;
    }
    
    .orbital-system {
        width: 300px;
        height: 300px;
    }
    
    .orbit-1 { 
        width: 240px; 
        height: 240px; 
        margin-left: -120px;
        margin-top: -120px;
    }
    .orbit-2 { 
        width: 192px; 
        height: 192px; 
        margin-left: -96px;
        margin-top: -96px;
    }
    .orbit-3 { 
        width: 144px; 
        height: 144px; 
        margin-left: -72px;
        margin-top: -72px;
    }
    
    
    
    .metric-display {
        padding: 8px 12px;
        font-size: 10px;
        min-width: 80px;
    }
    
    .metric-value {
        font-size: 14px;
    }
    
    .metric-1 { top: 40px; right: 20px; }
    .metric-2 { bottom: 60px; left: 20px; }
    .metric-3 { top: 120px; left: 10px; }
    
    .products {
        padding: 60px 20px;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .section-header h2 {
        font-size: 32px;
        margin-bottom: 16px;
    }
    
    .section-header p {
        font-size: 16px;
    }
    
    .product-card {
        padding: 28px;
        border-radius: 12px;
    }
    
    .product-header {
        gap: 16px;
        margin-bottom: 24px;
    }
    
    .product-icon {
        width: 48px;
        height: 48px;
    }
    
    .product-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .product-card h3 {
        font-size: 28px;
    }
    
    .product-version {
        font-size: 11px;
    }
    
    .product-card p {
        font-size: 15px;
        margin-bottom: 24px;
    }
    
    .product-features {
        margin-bottom: 28px;
        gap: 10px;
    }
    
    .product-features li {
        font-size: 13px;
    }
    
    .footer {
        padding: 32px 20px;
    }
    
    .footer-links {
        gap: 24px;
        margin-bottom: 16px;
    }
    
    .footer-links a {
        font-size: 13px;
    }
    
    /* Product page responsive */
    .product-hero {
        padding: 80px 20px 40px;
    }
    
    .product-hero h1 {
        font-size: 42px;
    }
    
    .product-hero p {
        font-size: 16px;
    }
    
    .product-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-section {
        padding: 60px 20px;
    }
    
    .demo-section {
        padding: 60px 20px;
    }
    
    .demo-container h2 {
        font-size: 32px;
    }
    
    .demo-container p {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .video-container {
        margin: 0 auto;
        border-radius: 8px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .feature-card {
        padding: 24px;
    }
    
    .specs-section {
        padding: 60px 20px;
    }
    
    .specs-container h2 {
        font-size: 32px;
    }
    
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .back-button {
        top: 15px;
        left: 15px;
        padding: 10px 14px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .hero {
        flex-direction: column-reverse;
        padding: 80px 15px 40px;
        gap: 30px;
    }
    
    .hero-content {
        padding-right: 0;
        max-width: 100%;
    }
    
    .hero h1 {
        font-size: clamp(32px, 9vw, 40px);
        margin-bottom: 20px;
        text-align: center;
    }
    
    .hero p {
        font-size: 15px;
        margin-bottom: 24px;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .btn {
        width: auto;
        max-width: 200px;
        padding: 12px 20px;
        font-size: 14px;
        min-height: 40px;
    }
    
    .animation-container {
        height: 250px;
        min-width: 250px;
    }
    
    .orbital-system {
        width: 250px;
        height: 250px;
    }
    
    .orbit-1 { 
        width: 200px; 
        height: 200px; 
        margin-left: -100px;
        margin-top: -100px;
    }
    .orbit-2 { 
        width: 160px; 
        height: 160px; 
        margin-left: -80px;
        margin-top: -80px;
    }
    .orbit-3 { 
        width: 120px; 
        height: 120px; 
        margin-left: -60px;
        margin-top: -60px;
    }
    
    
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .product-card h3 {
        font-size: 24px;
    }
}
