/* ================================================================
   ACR — Homepage (index-home.css)
================================================================ */

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
    background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--maroon) 55%, #9B2942 100%);
    color: #fff;
    padding: 5rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 720px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201,168,76,0.18);
    border: 1px solid rgba(201,168,76,0.35);
    color: var(--gold-light);
    padding: 0.3rem 0.9rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.5);
    padding: 0.625rem 1.375rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all var(--transition);
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.8);
    color: #fff;
}

/* ─── Stats bar ──────────────────────────────────────────────── */
.stats-bar {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 1.25rem 0;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 2.5rem;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--maroon);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 0.25rem;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* ─── About section ──────────────────────────────────────────── */
.about-section {
    padding: var(--space-xl) 0;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 0.75rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h2 {
    margin-bottom: 1.25rem;
    color: var(--maroon-dark);
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.75;
}

/* ─── Scope cards ────────────────────────────────────────────── */
.scope-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.scope-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    transition: all var(--transition);
}

.scope-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.scope-icon {
    width: 40px;
    height: 40px;
    background: var(--maroon-faint);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.scope-icon i {
    color: var(--maroon);
    font-size: 1rem;
}

.scope-card h4 {
    font-size: 0.9rem;
    color: var(--maroon-dark);
    margin-bottom: 0.4rem;
}

.scope-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* ─── CTA banner ─────────────────────────────────────────────── */
.cta-banner {
    background: linear-gradient(135deg, var(--maroon-dark), var(--maroon));
    border-top: 3px solid var(--gold);
    padding: var(--space-lg) 0;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-inner h2 {
    color: #fff;
    margin-bottom: 0.35rem;
}

.cta-inner p {
    color: rgba(255,255,255,0.7);
    margin: 0;
}

.cta-btns {
    display: flex;
    gap: 0.875rem;
    flex-shrink: 0;
    flex-wrap: wrap;
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 3rem 0 4rem;
    }

    .stats-row {
        gap: 0;
    }

    .stat {
        padding: 0 1.25rem;
    }

    .stat-num {
        font-size: 1.5rem;
    }

    .scope-grid {
        grid-template-columns: 1fr;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-btns {
        justify-content: center;
    }
}
