/* ============================================================
   UI Medical Marketing — About Us Page Styles
   All selectors scoped to their section class.
   ============================================================ */




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

.abt_hero {
    position: relative;
    padding-top: 80px;
    padding-bottom: 120px;
    overflow: hidden;
    isolation: isolate;
}

.abt_hero .abt_hero_bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(860px 580px at 92% -10%, rgba(0, 157, 220, .13), transparent 60%),
        radial-gradient(660px 500px at 6% 10%, rgba(0, 56, 208, .07), transparent 55%),
        #FFFFFF;
}

.abt_hero .abt_hero_dots {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: .45;
    background-image: radial-gradient(circle, rgba(10, 26, 58, .05) 1px, transparent 1px);
    background-size: 26px 26px;
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 75%);
    mask-image: linear-gradient(to bottom, #000 0%, transparent 75%);
}

.abt_hero .abt_hero_inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* ── Copy ─────────────────────────────────────────────────── */
.abt_hero .abt_hero_copy .eyebrow {
    margin-bottom: 20px;
}

.abt_hero .abt_hero_copy h1 {
    font-size: clamp(28px, 3.4vw, 46px);
    letter-spacing: -0.03em;
    margin-top: 4px;
}

.abt_grad {
    background: linear-gradient(110deg, var(--blue), var(--cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.abt_hero .abt_hero_lead {
    font-size: 17px;
    color: var(--gray-600);
    line-height: 1.72;
    margin-top: 22px;
    max-width: 600px;
}

/* ── Trust strip ──────────────────────────────────────────── */
.abt_hero .abt_hero_trust {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 0;
    margin-top: 32px;
}

.abt_hero .abt_trust_item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink);
    padding: 0 16px 0 0;
    margin-right: 16px;
    border-right: 1px solid var(--gray-200);
}

.abt_hero .abt_trust_item:last-child {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
}

.abt_hero .abt_trust_item .icon {
    width: 17px;
    height: 17px;
    color: var(--cyan);
    flex-shrink: 0;
}

/* ── Media / image ────────────────────────────────────────── */
.abt_hero .abt_hero_media {
    position: relative;
}

.abt_hero .abt_hero_img_wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 5 / 6;
    box-shadow: var(--sh-xl);
    background: var(--gray-100);
}

.abt_hero .abt_hero_img_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.abt_hero .abt_hero_img_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 55%, rgba(10, 26, 58, .28));
    pointer-events: none;
}

/* ── Floating badges ──────────────────────────────────────── */
.abt_hero .abt_hero_badge {
    position: absolute;
    background: #FFFFFF;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    box-shadow: var(--sh-xl);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 2;
    max-width: 220px;
}

.abt_hero .abt_hero_badge--a {
    left: -36px;
    top: 16%;
}

.abt_hero .abt_hero_badge--b {
    right: -28px;
    bottom: 18%;
}

.abt_hero .abt_badge_icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--navy);
    display: grid;
    place-items: center;
    color: #FFFFFF;
    flex-shrink: 0;
}

.abt_hero .abt_badge_icon--cyan {
    background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.abt_hero .abt_badge_icon .icon {
    width: 22px;
    height: 22px;
}

.abt_hero .abt_badge_val {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 15px;
    color: var(--navy);
}

.abt_hero .abt_badge_sub {
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 2px;
}

@media (max-width: 1040px) {
    .abt_hero .abt_hero_inner {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .abt_hero .abt_hero_img_wrap {
        aspect-ratio: 16 / 9;
        max-height: 480px;
    }

    .abt_hero .abt_hero_badge--a {
        left: 16px;
    }

    .abt_hero .abt_hero_badge--b {
        right: 16px;
    }
}

@media (max-width: 620px) {
    .abt_hero {
        padding-top: 56px;
        padding-bottom: 80px;
    }

    .abt_hero .abt_hero_trust {
        gap: 10px 0;
    }

    .abt_hero .abt_trust_item {
        padding-right: 12px;
        margin-right: 12px;
    }
}




/* ============================================================
   EXPERIENCE / STORY SECTION
   ============================================================ */

.abt_story .abt_story_grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 80px;
    align-items: center;
}

/* ── Copy ─────────────────────────────────────────────────── */
.abt_story .abt_story_copy .eyebrow {
    margin-bottom: 18px;
}

.abt_story .abt_story_copy h2 {
    font-size: clamp(26px, 3vw, 40px);
    margin-top: 4px;
}

.abt_story .abt_story_copy p {
    font-size: 17px;
    color: var(--gray-600);
    line-height: 1.75;
    margin-top: 20px;
}

/* ── Stats grid ───────────────────────────────────────────── */
.abt_story .abt_story_stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.abt_story .abt_stat {
    background: #FFFFFF;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--sh-sm);
    transition: transform .3s cubic-bezier(.2, .7, .3, 1), box-shadow .3s, border-color .3s;
    position: relative;
    overflow: hidden;
}

.abt_story .abt_stat::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, var(--blue), var(--cyan));
    transition: height .4s cubic-bezier(.2, .7, .3, 1);
}

.abt_story .abt_stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--sh-lg);
    border-color: transparent;
}

.abt_story .abt_stat:hover::before {
    height: 100%;
}

.abt_story .abt_stat_icon {
    width: 50px;
    height: 50px;
    border-radius: 13px;
    background: var(--blue-light);
    color: var(--blue);
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    transition: background .3s, color .3s;
}

.abt_story .abt_stat:hover .abt_stat_icon {
    background: var(--blue);
    color: #FFFFFF;
}

.abt_story .abt_stat_icon .icon {
    width: 24px;
    height: 24px;
}

.abt_story .abt_stat_value {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 22px;
    color: var(--navy);
    letter-spacing: -0.02em;
}

.abt_story .abt_stat_label {
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 4px;
    line-height: 1.4;
}

@media (max-width: 960px) {
    .abt_story .abt_story_grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .abt_story .abt_story_stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 680px) {
    .abt_story .abt_story_stats {
        grid-template-columns: 1fr 1fr;
    }
}




/* ============================================================
   SERVICES SECTION — What We Actually Do
   ============================================================ */

.abt_services .sec-head p {
    font-size: 18px;
    color: var(--gray-600);
}

.abt_services .abt_svc_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 56px;
}

/* ── Service card ─────────────────────────────────────────── */
.abt_services .abt_svc_card {
    background: #FFFFFF;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform .3s cubic-bezier(.2, .7, .3, 1), box-shadow .3s, border-color .3s;
}

.abt_services .abt_svc_card::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    transition: width .35s;
}

.abt_services .abt_svc_card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-lg);
    border-color: transparent;
}

.abt_services .abt_svc_card:hover::after {
    width: 100%;
}

.abt_services .abt_svc_card--accent {
    background: var(--gray-50);
}

.abt_services .abt_svc_icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: var(--navy);
    color: #FFFFFF;
    margin-bottom: 22px;
    flex-shrink: 0;
    transition: transform .3s;
}

.abt_services .abt_svc_card:hover .abt_svc_icon {
    transform: rotate(-6deg) scale(1.06);
}

.abt_services .abt_svc_icon .icon {
    width: 26px;
    height: 26px;
}

.abt_services .abt_svc_card h3 {
    font-size: 19px;
    letter-spacing: -.01em;
}

.abt_services .abt_svc_card p {
    font-size: 14.5px;
    color: var(--gray-500);
    margin-top: 12px;
    line-height: 1.62;
    flex: 1;
}

/* ── Closing statement ────────────────────────────────────── */
.abt_services .abt_svc_statement {
    margin-top: 48px;
    background: linear-gradient(135deg, var(--blue-deep), var(--blue) 50%, rgba(0, 157, 220, .9));
    border-radius: var(--radius-lg);
    padding: 36px 48px;
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
    overflow: hidden;
}

.abt_services .abt_svc_statement::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .06) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.abt_services .abt_svc_statement_mark {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(6px);
    display: grid;
    place-items: center;
    color: #FFFFFF;
    flex-shrink: 0;
}

.abt_services .abt_svc_statement_mark .icon {
    width: 22px;
    height: 22px;
}

.abt_services .abt_svc_statement p {
    font-size: 18px;
    color: rgba(255, 255, 255, .95);
    line-height: 1.55;
    font-weight: 400;
    margin: 0;
}

.abt_services .abt_svc_statement strong {
    color: #FFFFFF;
    font-weight: 700;
}

@media (max-width: 960px) {
    .abt_services .abt_svc_grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 620px) {
    .abt_services .abt_svc_grid {
        grid-template-columns: 1fr;
    }

    .abt_services .abt_svc_statement {
        flex-direction: column;
        padding: 28px 24px;
        gap: 16px;
        text-align: center;
    }
}




/* ============================================================
   WHY CHOOSE US SECTION
   ============================================================ */

.abt_why .abt_why_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 56px;
}

.abt_why .abt_reason {
    background: #FFFFFF;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    transition: transform .3s cubic-bezier(.2, .7, .3, 1), box-shadow .3s, border-color .3s;
}

.abt_why .abt_reason:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-lg);
    border-color: transparent;
}

.abt_why .abt_reason_icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: var(--blue-light);
    color: var(--blue);
    margin-bottom: 22px;
    flex-shrink: 0;
    transition: background .3s, color .3s, transform .3s;
}

.abt_why .abt_reason:hover .abt_reason_icon {
    background: var(--blue);
    color: #FFFFFF;
    transform: rotate(-6deg) scale(1.06);
}

.abt_why .abt_reason_icon .icon {
    width: 26px;
    height: 26px;
}

.abt_why .abt_reason h3 {
    font-size: 19px;
    letter-spacing: -.01em;
}

.abt_why .abt_reason p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-top: 14px;
    flex: 1;
}

@media (max-width: 920px) {
    .abt_why .abt_why_grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}




/* ============================================================
   EXPERTISE SECTION — Dark Navy
   ============================================================ */

.abt_expertise {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: var(--navy);
}

.abt_expertise .abt_expertise_bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(700px 500px at 90% -20%, rgba(0, 157, 220, .18), transparent 55%),
        radial-gradient(500px 400px at 5% 80%, rgba(0, 56, 208, .2), transparent 55%);
}

.abt_expertise .abt_expertise_glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    right: -5%;
    top: -30%;
    background: radial-gradient(circle, rgba(255, 255, 255, .06), transparent 60%);
    z-index: -1;
}

.abt_expertise .sec-head h2 {
    color: #FFFFFF;
}

.abt_expertise .eyebrow {
    color: rgba(255, 255, 255, .5);
}

.abt_expertise .eyebrow::before {
    background: rgba(255, 255, 255, .25);
}

.abt_expertise .abt_expertise_lead {
    font-size: 18px;
    color: rgba(255, 255, 255, .72);
    line-height: 1.72;
}

/* ── Team pillars ─────────────────────────────────────────── */
.abt_expertise .abt_pillars {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 56px;
}

.abt_expertise .abt_pillar {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius);
    padding: 18px 24px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: background .25s, border-color .25s, transform .25s;
    cursor: default;
}

.abt_expertise .abt_pillar:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .2);
    transform: translateY(-4px);
}

.abt_expertise .abt_pillar_icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    background: rgba(0, 157, 220, .2);
    display: grid;
    place-items: center;
    color: var(--cyan);
    flex-shrink: 0;
    transition: background .25s, color .25s;
}

.abt_expertise .abt_pillar:hover .abt_pillar_icon {
    background: var(--cyan);
    color: #FFFFFF;
}

.abt_expertise .abt_pillar_icon .icon {
    width: 22px;
    height: 22px;
}

.abt_expertise .abt_pillar_label {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 15px;
    color: rgba(255, 255, 255, .9);
    white-space: nowrap;
}

/* ── Sub-text ─────────────────────────────────────────────── */
.abt_expertise .abt_expertise_sub {
    font-size: 16px;
    color: rgba(255, 255, 255, .6);
    line-height: 1.72;
    max-width: 760px;
    margin: 36px auto 0;
    text-align: center;
}

/* ── Quote ────────────────────────────────────────────────── */
.abt_expertise .abt_expertise_quote {
    margin: 56px auto 0;
    max-width: 780px;
    text-align: center;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.abt_expertise .abt_quote_mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    opacity: .65;
}

.abt_expertise .abt_quote_mark .icon {
    width: 28px;
    height: 28px;
}

.abt_expertise .abt_expertise_quote p {
    font-family: var(--font-head);
    font-size: clamp(20px, 2.4vw, 28px);
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.35;
    letter-spacing: -0.02em;
    margin: 0;
}

@media (max-width: 760px) {
    .abt_expertise .abt_pillars {
        flex-direction: column;
        align-items: stretch;
    }

    .abt_expertise .abt_pillar_label {
        white-space: normal;
    }

    .abt_expertise .abt_expertise_quote {
        padding: 0 8px;
    }
}




/* ============================================================
   FINAL CTA SECTION
   ============================================================ */

.abt_cta {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.abt_cta .abt_cta_bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(135deg, var(--blue-deep), var(--blue) 45%, var(--cyan));
}

.abt_cta .abt_cta_rings {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: .45;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .07) 1px, transparent 1px);
    background-size: 30px 30px;
}

.abt_cta .abt_cta_glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    right: -10%;
    top: -40%;
    background: radial-gradient(circle, rgba(255, 255, 255, .16), transparent 65%);
    z-index: -1;
}

.abt_cta .abt_cta_inner {
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
    padding: 24px 0;
}

.abt_cta .abt_cta_inner h2 {
    color: #FFFFFF;
    font-size: clamp(28px, 3.2vw, 42px);
    letter-spacing: -0.025em;
}

.abt_cta .abt_cta_lead {
    color: rgba(255, 255, 255, .88);
    font-size: 18px;
    line-height: 1.68;
    margin-top: 22px;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.abt_cta .abt_cta_buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 38px;
}

/* ── Meta info row ────────────────────────────────────────── */
.abt_cta .abt_cta_meta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.abt_cta .abt_cta_meta_item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, .75);
}

.abt_cta .abt_cta_meta_item a {
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
    transition: color .2s;
}

.abt_cta .abt_cta_meta_item a:hover {
    color: #FFFFFF;
}

.abt_cta .abt_cta_meta_item .icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.abt_cta .abt_cta_meta_sep {
    color: rgba(255, 255, 255, .35);
    font-size: 16px;
}

/* ── Tagline ──────────────────────────────────────────────── */
.abt_cta .abt_cta_tagline {
    margin-top: 20px;
    font-family: var(--font-mono);
    font-size: 12.5px;
    letter-spacing: .05em;
    color: rgba(255, 255, 255, .65);
}

@media (max-width: 620px) {
    .abt_cta .abt_cta_meta {
        flex-direction: column;
        gap: 8px;
    }

    .abt_cta .abt_cta_meta_sep {
        display: none;
    }
}
