/* Hero Section Styles - Solutions Page */
.hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../images/hero-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero-overlay);
    z-index: 1;
}

.hero-wrapper {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 900px;
    padding: 40px 20px;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-title {
    font-size: clamp(32px, 5vw, 50px);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--color-text-white);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.title-line {
    display: block;
    opacity: 0.95;
}

.hero-title .highlight {
    display: block;
    font-weight: 600;
    position: relative;
}

.gradient-text {
    background: var(--gradient-primary-full);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease-in-out infinite;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 30px var(--color-primary-10);
    filter: drop-shadow(0 0 20px var(--color-primary-light-05));
}

.gradient-text::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 3px;
    background: var(--gradient-underline);
    border-radius: 2px;
    opacity: 0.6;
    animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes glow-pulse {
    0%, 100% {
        opacity: 0.4;
        transform: scaleX(1);
    }
    50% {
        opacity: 0.9;
        transform: scaleX(1.05);
    }
}

.hero-description {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.6;
    color: var(--color-text-light);
    margin-bottom: 40px;
    max-width: 800px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

/* Hero Responsive */
@media (max-width: 768px) {
    .hero {
        min-height: 500px;
        height: 70vh;
    }

    .hero-content {
        padding: 30px 20px;
    }

    .hero-description {
        margin-bottom: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero-buttons a,
    .hero-buttons button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 60vh;
    }

    .hero-content {
        padding: 20px 15px;
    }

    .hero-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .hero-description {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .hero-buttons {
        gap: 12px;
    }

    .hero-buttons a,
    .hero-buttons button {
        max-width: 100%;
        padding: 12px 24px;
        font-size: 14px;
    }
}

