/* Hero Section */
.hero {
    position: relative;
    padding: 5rem 0 6rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #E0F7F8 0%, #B3FBFD 50%, #E0F7F8 100%);
    z-index: -1;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(52, 184, 193, 0.03) 30px, rgba(52, 184, 193, 0.03) 60px);
}

.hero-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(109, 214, 220, 0.3) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero {
        padding: 4rem 0 5rem;
        width: 100%;
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        word-wrap: break-word;
    }

    .hero-description {
        font-size: 1.1rem;
        line-height: 1.6;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 3.5rem 0 4.5rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
        line-height: 1.2;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .hero-description {
        font-size: 1.05rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 0 4rem;
        width: 100%;
        max-width: 100%;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        word-wrap: break-word;
        hyphens: auto;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.5;
    }
}

