/* ============================================================
   HOMEPAGE STYLES
============================================================ */

/* ============================================================
   HERO
============================================================ */
.hero{
    position:relative;
    min-height:calc(100vh - var(--header-height));
    display:flex;
    align-items:center;
    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;
    color:#fff;
    overflow:hidden;
}

.hero .container{
    position:relative;
    z-index:2;
    width:100%;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.48) 45%, rgba(0,0,0,0.28) 100%);
}

.hero-content{
    max-width:760px;
    padding:56px 0;
}

.hero-eyebrow{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-bottom:18px;
    color:var(--gold);
    font-size:12px;
    font-weight:800;
    letter-spacing:0.12em;
    text-transform:uppercase;
}

.hero-title{
    margin-bottom:22px;
}

.hero-subtitle{
    max-width:640px;
    font-size:clamp(16px,2vw,20px);
    line-height:1.75;
    color:rgba(255,255,255,0.84);
    margin-bottom:28px;
}

.hero-actions{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-bottom:22px;
}

.hero-meta{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.hero-meta span{
    display:inline-flex;
    align-items:center;
    min-height:36px;
    padding:8px 14px;
    border-radius:999px;
    border:1px solid rgba(255,255,255,0.12);
    background:rgba(255,255,255,0.06);
    color:rgba(255,255,255,0.82);
    font-size:13px;
    font-weight:700;
}

@media (max-width:767px){
    .hero{
        min-height:auto;
    }

    .hero-content{
        padding:72px 0 56px;
    }

    .hero-actions{
        flex-direction:column;
        align-items:stretch;
    }

    .hero-actions .cta-btn{
        width:100%;
    }

    .hero-meta{
        gap:8px;
    }

    .hero-meta span{
        width:100%;
        justify-content:center;
        text-align:center;
    }
}

@media (min-width:768px){
    .hero{
        min-height:88vh;
    }
}

/* ============================================================
   TRUST STRIP
============================================================ */
.trust-strip{
    position:relative;
    margin-top:-28px;
    z-index:3;
}

.trust-strip-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:12px;
    padding:20px;
    border-radius:24px;
    background:rgba(17,24,39,0.95);
    border:1px solid rgba(255,255,255,0.07);
    box-shadow:var(--shadow-lg);
}

.trust-pill{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:52px;
    padding:12px 16px;
    border-radius:16px;
    background:rgba(255,255,255,0.03);
    border:1px solid rgba(255,255,255,0.06);
    text-align:center;
    font-size:14px;
    font-weight:800;
    color:var(--text-light);
}

@media (min-width:640px){
    .trust-strip-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }
}

@media (min-width:1024px){
    .trust-strip-grid{
        grid-template-columns:repeat(4, minmax(0, 1fr));
        gap:16px;
        padding:22px;
    }
}

/* ============================================================
   SECTION INTRO
============================================================ */
.eyebrow{
    margin-bottom:12px;
    color:var(--gold);
    font-size:12px;
    font-weight:800;
    letter-spacing:0.12em;
    text-transform:uppercase;
}

.section-title{
    margin-bottom:14px;
}

.section-lead{
    max-width:760px;
    margin:0 auto;
    font-size:16px;
    line-height:1.75;
}

.section-alt{
    background:linear-gradient(180deg, rgba(255,255,255,0.015) 0%, rgba(255,255,255,0.025) 100%);
}

/* ============================================================
   SHARED PAGE WIDTH HELPERS
============================================================ */
.service-narrow{
    max-width:820px;
    margin:0 auto;
    text-align:center;
}

/* ============================================================
   SERVICES / MEMBERSHIP GRID
============================================================ */
.services-grid,
.membership-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:20px;
    margin-top:40px;
}

@media (min-width:768px){
    .services-grid,
    .membership-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }
}

@media (min-width:1024px){
    .services-grid,
    .membership-grid{
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap:24px;
        margin-top:48px;
    }
}

.service-card{
    height:100%;
    padding:28px;
    border-radius:22px;
    background:linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
    border:1px solid rgba(255,255,255,0.07);
    box-shadow:var(--shadow-md);
    transition:transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover{
    transform:translateY(-6px);
    border-color:rgba(250,204,21,0.35);
    box-shadow:var(--shadow-lg);
}

.service-card h3{
    font-size:22px;
    margin-bottom:14px;
}

.service-card p{
    font-size:15px;
    line-height:1.75;
    color:var(--text-muted);
}

.text-link{
    display:inline-flex;
    align-items:center;
    margin-top:18px;
    color:var(--gold);
    font-size:13px;
    font-weight:800;
    letter-spacing:0.04em;
    text-transform:uppercase;
}

.text-link:hover{
    color:var(--gold-soft);
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials{
    position:relative;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:20px;
    margin-top:40px;
}

@media (min-width:768px){
    .testimonial-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }
}

@media (min-width:1024px){
    .testimonial-grid{
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap:24px;
        margin-top:48px;
    }
}

.test-card{
    height:100%;
    padding:28px;
    border-radius:22px;
    background:linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
    border:1px solid rgba(255,255,255,0.07);
    box-shadow:var(--shadow-md);
}

.test-card p{
    font-size:15px;
    line-height:1.8;
    margin-bottom:18px;
    color:var(--text-muted);
}

.test-card span{
    display:inline-block;
    font-size:12px;
    font-weight:800;
    color:var(--gold);
    text-transform:uppercase;
    letter-spacing:0.08em;
}

/* ============================================================
   CTA BANNER
============================================================ */
.cta-banner{
    max-width:980px;
    margin:0 auto;
    padding:44px 22px;
    border-radius:28px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.02)),
        linear-gradient(180deg, #111827 0%, #0f172a 100%);
    text-align:center;
    border:1px solid rgba(255,255,255,0.08);
    box-shadow:var(--shadow-lg);
}

.cta-heading{
    margin-bottom:14px;
}

.cta-subtext{
    max-width:720px;
    margin:0 auto 28px;
    font-size:16px;
    line-height:1.75;
    color:var(--text-muted);
}

.cta-actions{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:14px;
}

@media (max-width:767px){
    .cta-actions{
        flex-direction:column;
        align-items:stretch;
    }

    .cta-actions .cta-btn{
        width:100%;
    }
}

@media (min-width:768px){
    .cta-banner{
        padding:64px 40px;
    }
}

/* ============================================================
   ANIMATIONS
============================================================ */
.animate{
    opacity:0;
    transform:translateY(30px);
    transition:opacity 0.6s ease, transform 0.6s ease;
}

.animate.in-view{
    opacity:1;
    transform:translateY(0);
}

.delay-1{ transition-delay:0.1s; }
.delay-2{ transition-delay:0.2s; }
.delay-3{ transition-delay:0.3s; }

/* ============================================================
   ACCESSIBILITY
============================================================ */
@media(prefers-reduced-motion:reduce){
    .animate{
        opacity:1 !important;
        transform:none !important;
        transition:none !important;
    }
}