/* Hero Section */

.hero {
    position: relative;
    background: url('/images/hero-bg.png') center / cover no-repeat;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--foreground-overlay);
}

.hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-6);
    padding-top: var(--space-20);
    padding-bottom: var(--space-20);
}

.hero__title {
    font-size: var(--text-hero);
    font-weight: 800;
    color: var(--text-on-dark);
    line-height: 1.1;
    max-width: 960px;
}

.hero__subtitle {
    font-size: var(--text-xl);
    font-weight: 400;
    color: var(--text-lighter);
    max-width: 560px;
    line-height: 1.6;
}

.hero__cta {
    margin-top: var(--space-4);
}

.hero__note {
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--text-light);
}

.hero__trust {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-top: var(--space-4);
}

.hero__trust-dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-pill);
    flex-shrink: 0;
}

.hero__trust-dot--iaai {
    background-color: var(--primary);
}

.hero__trust-dot--copart {
    background-color: var(--success-dark);
}

@media (max-width: 768px) {
    .hero__inner {
        padding-top: var(--space-12);
        padding-bottom: var(--space-12);
    }

    .hero__trust {
        flex-wrap: wrap;
        justify-content: center;
    }
}
