.home-hero {
    position: relative;
    display: grid;
    min-height: clamp(720px, 88vh, 940px);
    aspect-ratio: auto;
    place-items: center;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    isolation: isolate;
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: .13;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.3'/%3E%3C/svg%3E");
    mix-blend-mode: soft-light;
    pointer-events: none;
}

.home-hero .hero-overlay {
    z-index: 0;
    background:
        linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.64) 45%, rgba(0,0,0,.18) 78%),
        linear-gradient(0deg, rgba(0,0,0,.64), transparent 52%);
}

.hero-light {
    position: absolute;
    top: -20%;
    right: 8%;
    z-index: 1;
    width: 540px;
    height: 540px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    filter: blur(110px);
    pointer-events: none;
}

.hero-shell {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-block: 100px 170px;
}

.home-hero .hero-content {
    max-width: 890px;
    margin: 0;
    padding: 0;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 23px;
    padding: 8px 14px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 999px;
    color: #f7ca3e;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(12px);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hero-kicker svg { width: 15px; }

.home-hero .hero-content h1 {
    margin-bottom: 24px;
    color: #fff;
    font-size: clamp(4rem, 7.2vw, 8rem);
    line-height: .93;
    letter-spacing: -.065em;
    text-shadow: 0 8px 32px rgba(0,0,0,.64);
}

.home-hero .hero-content h1 em {
    color: #f7ca3e;
    font-family: Georgia, serif;
    font-weight: 400;
}

.home-hero .hero-content p {
    max-width: 700px;
    margin-bottom: 32px;
    color: rgba(255,255,255,.76);
    font-size: clamp(1rem, 1.25vw, 1.16rem);
    line-height: 1.75;
}

.hero-btn-primary {
    color: #101010;
    border: 2px solid #f7ca3e;
    background: #f7ca3e;
}

.hero-btn-primary:hover { color: #101010; background: #ffda64; border-color: #ffda64; transform: translateY(-3px); box-shadow: 0 14px 30px rgba(0,0,0,.28); }
.hero-btn-ghost { color: #fff; border: 2px solid rgba(255,255,255,.44); background: rgba(255,255,255,.07); backdrop-filter: blur(10px); }
.hero-btn-ghost:hover { color: #fff; border-color: rgba(255,255,255,.75); background: rgba(255,255,255,.15); transform: translateY(-3px); }
.hero-buttons svg { width: 17px; }

.hero-side-note {
    position: absolute;
    top: 50%;
    right: -105px;
    display: flex;
    align-items: center;
    gap: 13px;
    color: rgba(255,255,255,.58);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    transform: rotate(90deg);
}

.hero-side-note i { width: 24px; height: 1px; background: #f7ca3e; }

.hero-trust {
    position: absolute;
    right: 20px;
    bottom: 28px;
    left: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr) 1.18fr;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 18px;
    background: rgba(4,48,25,.64);
    box-shadow: 0 22px 60px rgba(0,0,0,.18);
    backdrop-filter: blur(18px);
}

.hero-trust > div,
.hero-trust > a {
    min-height: 92px;
    padding: 20px 23px;
    border-right: 1px solid rgba(255,255,255,.14);
}

.hero-trust strong,
.hero-trust span { display: block; }
.hero-trust strong { margin-bottom: 3px; color: #f7ca3e; font: 600 1.35rem var(--font-heading); }
.hero-trust span { color: rgba(255,255,255,.7); font-size: .72rem; }
.hero-trust > a { display: flex; align-items: center; gap: 10px; color: #173824; background: #f7ca3e; font-weight: 700; }
.hero-trust > a span { flex: 1; color: #173824; font-size: .86rem; }
.hero-trust > a svg { width: 19px; }

.hero-scroll {
    position: absolute;
    bottom: 140px;
    left: 24px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255,255,255,.55);
    font-size: .68rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    transform: rotate(-90deg);
    transform-origin: left center;
}

.hero-scroll span { position: relative; width: 40px; height: 1px; overflow: hidden; background: rgba(255,255,255,.25); }
.hero-scroll span::after { content: ""; position: absolute; inset: 0; background: #f7ca3e; animation: scrollLine 2s ease-in-out infinite; }

@keyframes scrollLine {
    0% { transform: translateX(-100%); }
    50%, 100% { transform: translateX(100%); }
}

@media (max-width: 900px) {
    .hero-trust { grid-template-columns: repeat(2, 1fr); }
    .hero-trust > :nth-child(2) { border-right: 0; }
    .hero-trust > div, .hero-trust > a { min-height: 78px; padding: 14px 18px; border-bottom: 1px solid rgba(255,255,255,.14); }
    .hero-shell { padding-bottom: 215px; }
    .hero-side-note, .hero-scroll { display: none; }
}

@media (max-width: 576px) {
    .home-hero { min-height: 860px; background-attachment: scroll; }
    .hero-shell { padding-block: 80px 245px; }
    .home-hero .hero-content h1 { font-size: 3.7rem; }
    .hero-buttons { align-items: stretch; flex-direction: column; }
    .hero-buttons .btn { justify-content: center; }
    .hero-trust { bottom: 18px; grid-template-columns: 1fr 1fr; }
    .hero-trust > div, .hero-trust > a { min-height: 86px; padding: 13px; }
    .hero-trust > a span { font-size: .75rem; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-scroll span::after { animation: none; }
}
