/* Hero section + Trust numbers */

/* ===================== HERO — cinematic full-width ===================== */
.hero {
    margin-top: 76px;
    position: relative;
    min-height: 92vh;
    display: flex; align-items: flex-end;
    overflow: hidden;
    background: var(--dark);
}
.hero-img-wrap {
    position: absolute; inset: 0;
}
.hero-img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    transform: scale(1.05);
    filter: brightness(0.55);
}
.hero-gradient {
    position: absolute; inset: 0;
    background: linear-gradient(0deg, var(--dark) 0%, rgba(52,96,139,0.4) 40%, transparent 70%);
}
.hero-content {
    position: relative; z-index: 2;
    max-width: 1400px; width: 100%; margin: 0 auto;
    padding: 0 2.5rem 6rem;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--red); border: 1px solid var(--red-dark);
    color: #FFFFFF; padding: 0.5rem 1.25rem; border-radius: 50px;
    font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em;
    margin-bottom: 1.5rem;
}
.hero h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
    color: #FFFFFF;
    max-width: 750px;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}
.hero h1 em {
    font-style: normal; color: var(--red);
    font-family: 'DM Serif Display', serif;
}
.hero-sub {
    font-size: 1.15rem; color: var(--text-on-dark-soft);
    max-width: 520px; margin-bottom: 2.5rem; line-height: 1.7;
}
.hero-actions { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }
.btn-hero {
    background: var(--red); color: #fff; border: none;
    padding: 1rem 2.2rem; border-radius: 8px;
    font-weight: 700; font-size: 1rem; cursor: pointer;
    transition: all 0.3s;
    display: inline-flex; align-items: center; gap: 0.6rem;
}
.btn-hero:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(196,30,42,0.35);
}
.btn-ghost {
    color: var(--text-on-dark-soft); background: none; border: 1.5px solid rgba(255,255,255,0.55);
    padding: 0.9rem 1.8rem; border-radius: 8px; font-weight: 600; font-size: 0.95rem;
    cursor: pointer; transition: all 0.3s;
}
.btn-ghost:hover {
    border-color: var(--text-on-dark-soft); color: #fff;
    background: rgba(255,255,255,0.06);
}

/* Hero voice button */
.btn-voice-hero {
    color: #fff; background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.2);
    padding: 0.9rem 1.8rem; border-radius: 8px; font-weight: 600; font-size: 0.95rem;
    cursor: pointer; transition: all 0.3s;
    display: inline-flex; align-items: center; gap: 0.65rem;
    position: relative;
}
.btn-voice-hero:hover {
    border-color: var(--red); background: rgba(196,30,42,0.12);
    box-shadow: 0 8px 28px rgba(196,30,42,0.25);
}
.hero-subtitle-phone {
    font-size: 0.92rem; color: var(--text-on-dark-soft);
    margin-top: 1.1rem; font-weight: 500; letter-spacing: 0.03em;
    width: 100%; flex-basis: 100%;
}
.bvh-live {
    width: 8px; height: 8px; border-radius: 50%;
    background: #22C55E; display: inline-block;
    animation: live-blink 2s infinite;
}

/* ===================== TRUST NUMBERS ===================== */
.trust-strip {
    background: var(--dark); border-top: 1px solid rgba(255,255,255,0.06);
    padding: 3.5rem 2.5rem;
}
.trust-inner {
    max-width: 1100px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
    gap: 2rem; flex-wrap: wrap;
}
.trust-item { text-align: center; flex: 1; min-width: 140px; }
.trust-num {
    font-family: 'DM Serif Display', serif;
    font-size: 2.8rem; color: #FFFFFF;
    line-height: 1;
}
.trust-label { font-size: 0.85rem; color: var(--text-on-dark-soft); margin-top: 0.5rem; font-weight: 500; }

