/* =======================================================================
   HERO
======================================================================= */
.hero {
    position: relative;
    background: var(--color-primary);
    color: var(--color-white);
    overflow: hidden;
    padding-block: 4.5rem 5.5rem;
}
/* Faint ledger lines in the background — echoes the passbook motif
   from the header without competing with the foreground text. */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.05) 0,
        rgba(255, 255, 255, 0.05) 1px,
        transparent 1px,
        transparent 48px
    );
    pointer-events: none;
}
.hero__inner { position: relative; max-width: 720px; }
.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(200, 147, 44, 0.18);
    color: var(--color-accent);
    border: 1px solid rgba(200, 147, 44, 0.4);
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    margin-bottom: 1.2rem;
}
.hero h1 { color: var(--color-white); margin-bottom: 1rem; }
.hero h1 em { color: var(--color-accent); font-style: normal; }
.hero p { color: rgba(246, 247, 242, 0.88); font-size: 1.05rem; max-width: 560px; margin-bottom: 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.hero__actions .btn--outline { background: transparent; border-color: rgba(246, 247, 242, 0.4); color: var(--color-white); }
.hero__actions .btn--outline:hover { background: rgba(246, 247, 242, 0.1); border-color: var(--color-white); }

/* =======================================================================
   KEY FACTS STRIP
======================================================================= */
.stats {
    position: relative;
    margin-top: -2.75rem;
    z-index: 2;
}
.stats__grid {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.stats__item {
    padding: 1.6rem 1.25rem;
    text-align: center;
    border-bottom: 1px solid var(--color-line);
}
.stats__item:nth-child(odd) { border-right: 1px solid var(--color-line); }
.stats__value { display: block; font-size: 1.6rem; font-weight: 800; color: var(--color-primary); }
.stats__label { font-size: 0.8rem; color: #6b7468; font-weight: 600; }

/* =======================================================================
   SERVICES PREVIEW (heading area only — cards live in components.css)
======================================================================= */

/* =======================================================================
   WHY JOIN
======================================================================= */
.why-join { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
.why-join__item { display: flex; gap: 0.9rem; }
.why-join__icon {
    width: 38px; height: 38px; flex: none;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-accent);
    display: flex; align-items: center; justify-content: center;
}
.why-join__icon svg { width: 18px; height: 18px; }
.why-join__item h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.why-join__item p { font-size: 0.88rem; margin: 0; }

/* =======================================================================
   RESPONSIVE
======================================================================= */
@media (min-width: 640px) {
    .stats__grid { grid-template-columns: repeat(4, 1fr); }
    .stats__item { border-bottom: none; }
    .stats__item:not(:last-child) { border-right: 1px solid var(--color-line); }
    .why-join { grid-template-columns: repeat(2, 1fr); }
}
