/* ==========================================
   HERO SECTION STYLES
   ========================================== */

.hero {
    position: relative;
    height: 720px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background Image */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* Gradient Overlay */
.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.1) 0%,
        transparent 40%,
        transparent 60%,
        rgba(0, 0, 0, 0.05) 100%
    );
}

/* Floating Shapes */
.hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.hero-shape-1 {
    width: 256px;
    height: 256px;
    background: rgba(106, 13, 173, 0.1);
    top: 25%;
    left: 25%;
    animation: floatShape1 8s ease-in-out infinite;
}

.hero-shape-2 {
    width: 384px;
    height: 384px;
    background: rgba(2, 178, 178, 0.1);
    bottom: 25%;
    right: 25%;
    animation: floatShape2 10s ease-in-out infinite;
}

@keyframes floatShape1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(20px, 20px) scale(1.1);
    }
}

@keyframes floatShape2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-30px, -20px) scale(1.2);
    }
}

/* Content */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    text-align: center;
    padding: 0 24px;
}

/* Gradient Title */
.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--teal), var(--purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.1;
}

/* Subtitle */
.hero-subtitle {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.75rem;
    font-family: var(--font-body);
}

/* Description */
.hero-description {
    font-size: 1.125rem;
    color: var(--gray-700);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

/* CTA Buttons */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all var(--transition);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

/* Button Glow Effect */
.hero-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity var(--transition);
    z-index: -1;
    filter: blur(20px);
}

.hero-btn:hover::before {
    opacity: 0.5;
}

.hero-btn-primary {
    background: var(--teal);
    color: var(--text-light);
}

.hero-btn-primary::before {
    background: var(--purple);
}

.hero-btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 24px rgba(2, 178, 178, 0.35);
}

.hero-btn-secondary {
    background: var(--purple);
    color: var(--text-light);
}

.hero-btn-secondary::before {
    background: var(--teal);
}

.hero-btn-secondary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 24px rgba(106, 13, 173, 0.35);
}

/* Trial Note */
.hero-trial-note {
    font-style: italic;
    color: var(--gray-700);
    font-size: 1rem;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 100px 16px 60px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-btn {
        width: 100%;
    }

    .hero-shape-1 {
        width: 180px;
        height: 180px;
    }

    .hero-shape-2 {
        width: 240px;
        height: 240px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }
}
