/* ─── Hero Section ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--bg-hero);
    background-image:
        linear-gradient(rgba(26, 58, 92, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26, 58, 92, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(238, 243, 248, 0.9) 0%,
        rgba(238, 243, 248, 0.4) 50%,
        rgba(232, 106, 42, 0.05) 100%
    );
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-px);
    padding-top: 5rem;
}

.hero__badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--color-orange);
    background: var(--color-orange-light);
    border: 1px solid rgba(232, 106, 42, 0.2);
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.hero__title {
    font-size: var(--fs-hero);
    color: var(--color-navy);
    margin-bottom: 1.25rem;
    max-width: 700px;
}

.hero__title-accent {
    color: var(--color-orange);
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 560px;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    color: var(--text-muted);
    animation: bounce 2s ease infinite;
}

.hero__scroll-indicator svg {
    width: 100%;
    height: 100%;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-8px);
    }
    60% {
        transform: translateX(-50%) translateY(-4px);
    }
}
