/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 70vh;
    padding: var(--space-12) 0;
    overflow: hidden;
    background-color: var(--color-primary-dark);
}

.hero--full {
    min-height: 85vh;
}

.hero--page {
    min-height: auto;
    padding: var(--space-10) 0 var(--space-8);
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 37, 47, 0.9) 0%,
        rgba(26, 82, 118, 0.75) 100%
    );
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.hero--center .hero__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-1) var(--space-3);
    background: rgba(var(--color-accent-rgb), 0.2);
    color: var(--color-accent);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-4);
}

.hero__title {
    font-size: var(--font-size-4xl);
    color: var(--color-text-inverse);
    margin-bottom: var(--space-4);
    letter-spacing: var(--letter-spacing-tight);
}

.hero__desc {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.85);
    line-height: var(--line-height-loose);
    margin-bottom: var(--space-6);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-bottom: var(--space-8);
}

.hero--center .hero__actions {
    justify-content: center;
}

.hero__trust {
    padding-top: var(--space-6);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* Page Hero (inner pages) */
.hero--page .hero__title {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--space-3);
}

.hero--page .hero__desc {
    font-size: var(--font-size-base);
    margin-bottom: 0;
}

.hero--page .breadcrumb {
    margin-bottom: var(--space-4);
}

.hero--page .breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

.hero--page .breadcrumb a:hover {
    color: var(--color-text-inverse);
}

.hero--page .breadcrumb .current {
    color: rgba(255, 255, 255, 0.9);
}

.hero--page .breadcrumb li + li::before {
    color: rgba(255, 255, 255, 0.4);
}
