/* ── About Image Block ─────────────────────── */
.py-80 { padding: 80px 0; }
.about-img-wrap {
    position: relative;
    padding-bottom: 50px;
    padding-right: 50px;
}
.about-img-main {
    border-radius: 16px;
    overflow: hidden;
    background: var(--primary-light);
    border: 2px solid var(--border);
}
.about-img-placeholder {
    height: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.about-founder-img {
    width: 100%;
    aspect-ratio: 815 / 1224;
    object-fit: cover;
    display: block;
}
.about-img-placeholder .bi  { font-size: 4rem; color: var(--primary); opacity: .35; }
.about-img-placeholder span { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.3rem; color: var(--primary); }
.about-img-placeholder small{ font-size: .78rem; color: var(--text-light); }

.about-exp-badge {
    position: absolute;
    bottom: 10px; right: 0;
    background: var(--primary);
    color: var(--white);
    border-radius: 14px;
    padding: 16px 22px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(13,79,92,.3);
    min-width: 120px;
}
.exp-num {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
}
.exp-num sup { font-size: 1rem; color: var(--accent); }
.exp-label {
    font-size: .7rem;
    color: rgba(255,255,255,.7);
    margin-top: 4px;
    display: block;
    line-height: 1.4;
}
.about-trust-card {
    position: absolute;
    top: 20px; right: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: .78rem;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
    display: flex;
    align-items: center;
    white-space: nowrap;
}

/* ── About Points ──────────────────────────── */
.about-points { display: flex; flex-direction: column; gap: 10px; }
.about-point {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .88rem;
    color: var(--text-mid);
}
.about-point-icon {
    width: 26px; height: 26px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: .8rem;
    flex-shrink: 0;
    font-weight: 700;
}

/* ── Stats Strip ───────────────────────────── */
.about-stats-strip { background: var(--primary); padding: 48px 0; }
.astat-item { text-align: center; padding: 20px 10px; }
.border-end-divider { border-right: 1px solid rgba(255,255,255,.12); }
.astat-icon  { font-size: 1.6rem; color: var(--accent); margin-bottom: 10px; }
.astat-num   { font-family: 'Poppins', sans-serif; font-size: 2.4rem; font-weight: 700; color: var(--white); line-height: 1; }
.astat-label { font-size: .78rem; color: rgba(255,255,255,.6); margin-top: 4px; }

/* ── Supply Cards ──────────────────────────── */
.supply-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    height: 100%;
    transition: transform .2s, box-shadow .2s, border-color .2s;
    text-align: center;
}
.supply-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    border-color: var(--primary);
}
.supply-icon {
    width: 48px; height: 48px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    margin: 0 auto 12px;
}
.supply-name  { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: .95rem; color: var(--text-dark); margin-bottom: 4px; }
.supply-items { font-size: .75rem; color: var(--text-light); line-height: 1.5; }

/* ── Reason Cards ──────────────────────────── */
.reason-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px;
    height: 100%;
    transition: transform .2s, box-shadow .2s;
}
.reason-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,.08);
}
.reason-icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 1.3rem;
    margin-bottom: 16px;
}
.reason-title { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.05rem; margin-bottom: 8px; color: var(--text-dark); }
.reason-text  { font-size: .83rem; color: var(--text-mid); line-height: 1.7; margin: 0; }

/* ── Repair List ───────────────────────────── */
.repair-list  { display: flex; flex-direction: column; gap: 14px; }
.repair-item  { display: flex; gap: 14px; align-items: flex-start; }
.repair-item .bi {
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.repair-item strong { display: block; font-size: .9rem; color: var(--text-dark); margin-bottom: 2px; }
.repair-item span   { font-size: .8rem; color: var(--text-mid); }

/* ── Repair Highlight Box ──────────────────── */
.repair-highlight-box {
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}
.rhb-header {
    background: var(--primary);
    color: var(--white);
    padding: 14px 24px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
}
.rhb-body { padding: 24px; background: var(--white); }
.rhb-stat-row {
    display: flex;
    gap: 0;
    background: var(--off-white);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}
.rhb-stat {
    flex: 1;
    text-align: center;
    padding: 14px 8px;
    border-right: 1px solid var(--border);
}
.rhb-stat:last-child { border-right: none; }
.rhb-stat-num   { display: block; font-family: 'Poppins', sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--primary); }
.rhb-stat-label { display: block; font-size: .7rem; color: var(--text-light); margin-top: 2px; }
.rhb-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: .95rem;
    padding: 12px;
    border-radius: 8px;
    transition: background .2s;
}
.rhb-call-btn:hover { background: var(--primary-dark); color: var(--white); }

/* ── Client Cards ──────────────────────────── */
.client-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px 12px;
    text-align: center;
    transition: transform .2s, box-shadow .2s, border-color .2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    height: 100%;
}
.client-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,.07);
    border-color: var(--primary);
}
.client-card .bi   { font-size: 1.7rem; color: var(--primary); }
.client-card span  { font-size: .78rem; font-weight: 600; color: var(--text-mid); line-height: 1.3; }

/* ── Contact Info Box ──────────────────────── */
.contact-info-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
}
.cinfo-item  { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.cinfo-icon  { width: 40px; height: 40px; background: var(--primary-light); color: var(--primary); border-radius: 10px; display: grid; place-items: center; font-size: 1rem; flex-shrink: 0; }
.cinfo-label { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-light); margin-bottom: 2px; }
.cinfo-value { font-size: .88rem; color: var(--text-dark); line-height: 1.6; }
.cinfo-value a { color: var(--primary); font-weight: 600; transition: color .2s; }
.cinfo-value a:hover { color: var(--primary-dark); }

/* ── Map ───────────────────────────────────── */
.map-wrap { border-radius: 14px; overflow: hidden; border: 1px solid var(--border); }

/* ── Bottom CTA ────────────────────────────── */
.about-cta-strip {
    background: var(--primary-dark);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}
.about-cta-strip::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 280px; height: 280px;
    background: rgba(255,255,255,.03);
    border-radius: 50%;
}
.about-cta-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    color: var(--white);
    margin-bottom: 8px;
}
.about-cta-sub { font-size: .95rem; color: #d6ecfa; margin: 0; }

/* ── Responsive ────────────────────────────── */
@media (max-width: 767px) {
    .about-img-wrap   { padding-right: 20px; padding-bottom: 60px; }
    .about-trust-card { display: none; }
    .astat-item       { padding: 14px 6px; }
    .astat-num        { font-size: 1.8rem; }
    .border-end-divider:nth-child(2) { border-right: none; }
}