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

.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 90vh;
    background-color: var(--color-dark);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    margin-top: var(--header-height);
}

.hero--short {
    min-height: 50vh;
}

.hero--medium {
    min-height: 65vh;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,39,48,0.85) 0%, rgba(26,39,48,0.6) 100%);
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 60px 0;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero__title span {
    color: var(--color-gold);
}

.hero__subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: 32px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

/* Trust bar */
.hero__trust {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.hero__trust-item svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.hero__trust-value {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-gold);
    font-size: 1.25rem;
}

/* Scroll indicator */
.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: hero-bounce 2s infinite;
    cursor: pointer;
}

.hero__scroll svg {
    width: 28px;
    height: 28px;
}

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

/* Hero background picture */
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero__logo-mark {
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
    position: relative;
    top: -2px;
}
