:root {
    --primary: #00A6FF;
    --primary-rgb: 0, 166, 255;
    --gradient: linear-gradient(135deg, #00A6FF 0%, #0056B3 100%);
    --secondary-gradient: linear-gradient(135deg, #2C3E50 0%, #3498DB 100%);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8rem;
    position: relative;
    overflow: hidden;
    background: #0A1628;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: 0 0, 25px 25px;
    opacity: 0.3;
    animation: patternFloat 20s linear infinite;
}

@keyframes patternFloat {
    0% { background-position: 0 0, 25px 25px; }
    100% { background-position: 50px 50px, 75px 75px; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, 
        rgba(10, 22, 40, 0.4) 0%, 
        rgba(10, 22, 40, 0.95) 100%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.6;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 5;
    position: relative;
    padding-right: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.hero-badge i {
    color: #FFD700;
    font-size: 1.2rem;
    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

.hero-badge span {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero h1 {
    font-size: 3.5rem;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

.typewriter-container {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    font-size: 2.5rem;
    color: white;
    margin-top: 0.5rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.primary-btn, .outline-btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.primary-btn {
    background: var(--gradient);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 166, 255, 0.3);
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 166, 255, 0.4);
}

.outline-btn {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.outline-btn:hover {
    background: rgba(0, 166, 255, 0.1);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.typewriter {
    color: var(--primary);
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-graphics {
    flex: 1;
    position: relative;
    z-index: 2;
}

.graphics-container {
    position: relative;
    width: 100%;
    height: 500px;
}

.tech-orbit {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: orbit 20s linear infinite;
}

@keyframes orbit {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.tech-item {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    transform: rotate(calc(var(--i) * (360deg / 6)));
    transform-origin: 50% 250px;
}

.tech-item:hover {
    transform: scale(1.1) rotate(calc(var(--i) * (360deg / 6)));
    background: rgba(255, 255, 255, 0.2);
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.8), transparent);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.float-item {
    position: absolute;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    animation: float 6s ease-in-out infinite;
}

.float-item.premium {
    top: 10%;
    left: 10%;
    color: #FFD700;
    animation-delay: 0s;
}

.float-item.enterprise {
    top: 60%;
    right: 10%;
    color: var(--primary);
    animation-delay: 2s;
}

.float-item.certified {
    bottom: 20%;
    left: 20%;
    color: #00FF9D;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@media (max-width: 1200px) {
    .hero {
        padding: 0 4rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .typewriter-container {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        padding: 6rem 2rem;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 4rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .graphics-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .typewriter-container {
        font-size: 1.8rem;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .stat-item {
        align-items: center;
    }
}

/* Animations */
.animate-text {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.animate-text-delay {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .hero {
        padding: 0 4rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 6rem 2rem;
        flex-direction: column;
        text-align: center;
        gap: 4rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-badge {
        margin: 0 auto 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .typewriter-container {
        font-size: 2rem;
        justify-content: center;
    }

    .hero p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4rem 1.5rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .typewriter-container {
        font-size: 1.5rem;
    }
}
