/* ============================================================
   Hero About — 1276_hero_about
   Prefix: .ow-about-
   ============================================================ */

/* ========== LAYOUT HELPERS ========== */

.ow-about-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 48px);
}
.ow-about-wrap h1 {
    font-size: clamp(2.4rem, 4vw, 3.6rem);
}
.ow-about-wrap h1 em {
    font-style: normal;
    color: #E8193C;
}
.ow-about-section {
    padding: 88px 0;
    border-bottom: 1px solid #e5e7eb;
}
.ow-about-section.bg {
    background: #f9fafb;
}
.ow-about-eyebrow {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.ow-about-eyebrow::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #E8193C;
    flex-shrink: 0;
}
.ow-about-body-text {
    font-size: .97rem;
    color: #6b7280;
    line-height: 1.8;
}

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

.ow-about-hero-section {
    position: relative;
    overflow: hidden;
}
.ow-about-hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, #eaeced 0.8px, transparent 0.8px);
    background-size: 24px 24px;
    -webkit-mask-image: radial-gradient(ellipse 68% 68% at 50% 50%, rgba(0,0,0,.28) 0%, transparent 75%);
    mask-image: radial-gradient(ellipse 68% 68% at 50% 50%, rgba(0,0,0,.28) 0%, transparent 75%);
    pointer-events: none;
    z-index: 0;
}
.ow-about-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 56px;
    align-items: start;
    padding-top: 44px;
    padding-bottom: 48px;
}
.ow-about-hero-h1 {
    margin-bottom: 22px;
}
.ow-about-hero-sub {
    font-size: 1.05rem;
    color: #6b7280;
    line-height: 1.78;
    max-width: 480px;
    margin-bottom: 36px;
}
.ow-about-trust-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    row-gap: 8px;
}
.ow-about-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    font-weight: 600;
    color: #374151;
    padding-right: 18px;
}
.ow-about-trust-item svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    fill: none;
    stroke: #16a34a;
    stroke-width: 2.5;
    stroke-linecap: round;
}
.ow-about-trust-sep {
    width: 1px;
    height: 13px;
    background: #e5e7eb;
    margin-right: 18px;
    flex-shrink: 0;
}

/* ========== STATS ========== */

.ow-about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    min-width: 240px;
}
.ow-about-stat {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ow-about-stat-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #eef4fb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ow-about-stat-icon-wrap svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: #003a66;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.ow-about-stat-n {
    font-size: 1.55rem;
    font-weight: 800;
    color: #111827;
    line-height: 1;
    letter-spacing: -.03em;
}
.ow-about-stat-n sup {
    font-size: .8rem;
    color: #E8193C;
    font-weight: 700;
}
.ow-about-stat-label {
    font-size: .8rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1px;
    display: block;
}
.ow-about-stat-sub {
    font-size: .74rem;
    color: #6b7280;
    display: block;
    line-height: 1.4;
}

/* ========== RESPONSIVE ========== */

@media (max-width: 900px) {
    .ow-about-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .ow-about-stats {
        min-width: 0;
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 640px) {
    .ow-about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .ow-about-hero-sub {
        font-size: .97rem;
    }
}

@media (max-width: 400px) {
    .ow-about-trust-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .ow-about-trust-sep {
        display: none;
    }
}
