/* ==============================================
   ABOUT HERO
   ============================================== */

.about-hero {
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
    background: var(--color-navy);
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.about-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: .12;
}

.about-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--color-navy), transparent);
    z-index: 1;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero-inner {
    display: flex;
    flex-direction: column;
    gap: var(--space-12);
}

.about-hero-content {
    max-width: 760px;
}

.about-hero-content .page-tag {
    background: rgba(255,255,255,.1);
    color: #93C5FD;
}

.about-hero-content h1 {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    color: var(--color-white);
    font-weight: var(--font-weight-extrabold);
    line-height: 1.09;
    margin-bottom: var(--space-6);
    letter-spacing: -0.03em;
}

.about-hero-content p {
    color: rgba(255,255,255,.75);
    font-size: var(--font-size-lg);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-9);
    max-width: 620px;
}

.about-hero-content .hero-buttons {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

/* Stats row */
.about-hero-stats {
    display: flex;
    gap: var(--space-6);
    flex-wrap: wrap;
    padding: 12px 12px;
}

.about-hero-stat {
    background: rgba(255,255,255,.07);
    border: none; /* Border removed */
    border-radius: var(--radius-xl);
    padding: var(--space-5) var(--space-7);
    text-align: center;
    min-width: 120px;
    backdrop-filter: blur(10px);
}

.about-hero-stat h3 {
    font-size: 2rem;
    font-weight: var(--font-weight-extrabold);
    color: var(--color-white);
    margin-bottom: var(--space-1);
    line-height: 1;
}

.about-hero-stat span {
    font-size: var(--font-size-xs);
    color: rgba(255,255,255,.55);
    font-weight: var(--font-weight-medium);
}

/* ── Responsive ── */
@media (max-width: 760px) {
    .about-hero { padding: 120px 0 70px; }
    .about-hero-stat { min-width: 100px; padding: var(--space-4) var(--space-5); }
}