/* ===== Home hero ===== */
.hero {
    background-color: var(--bg-soft);
    background-image: url('../../imgs/hero/hero-mobile.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--text);
    font-family: var(--font-body);
    padding-top: calc(var(--nav-height) + var(--space-lg));
    padding-bottom: var(--space-xl);
}

.hero-text {
    max-width: 44rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.hero-eyebrow {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: var(--text-sm);
    color: var(--primary);
    margin-bottom: var(--space-md);
}

.hero-headline {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--text-4xl);
    line-height: 1.04;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: var(--space-md);
}

.hero-headline em {
    font-style: normal;
    color: var(--primary);
}
.hero-sub {
    font-size: var(--text-lg);
    line-height: 1.75;
    color: var(--text-muted);
    max-width: 46ch;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--space-lg);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.hero-stars {
    color: var(--primary);
    letter-spacing: 0.05em;
}

@media (min-width: 768px) {
    .hero {
        background-image: url('../../imgs/hero/hero-desktop.webp');
        padding-top: calc(var(--nav-height) + var(--space-xl));
        padding-bottom: var(--space-xl);
    }
}
