/* ═══════════════════════════════════════════════════════════
   About - Clinical Variant  |  ac-page
   ════════════════════════════════════════════════════════════ */

.ac-page *, .ac-page *::before, .ac-page *::after { box-sizing: border-box; margin: 0; padding: 0; }
.ac-page { font-family: 'Inter', sans-serif; color: #1a2b3c; background: #ffffff; }
.ac-page a { text-decoration: none; }
.ac-page ul { list-style: none; }
.ac-page img { display: block; max-width: 100%; }

:root {
    --ac-teal:    #2c9aa0;
    --ac-dark:    #1a2b3c;
    --ac-text:    #4a5568;
    --ac-gray:    #718096;
    --ac-bg:      #f5f3f3;
    --ac-white:   #ffffff;
    --ac-border:  #e2e8f0;
    --ac-navy:    #0061A4;
    --ac-font-head: 'Plus Jakarta Sans', sans-serif;
}

.ac-teal { color: var(--ac-teal); }

/* ── Container ──────────────────────────────────────────── */
.ac-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ── Buttons ────────────────────────────────────────────── */
.ac-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ac-font-head);
    font-weight: 600;
    font-size: 15px;
    border-radius: 6px;
    cursor: pointer;
    border: none;
    padding: 13px 28px;
    transition: opacity 0.2s, transform 0.2s;
    white-space: nowrap;
}
.ac-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.ac-btn--teal { background: var(--ac-teal); color: var(--ac-white); }
.ac-btn--outline-dark {
    background: transparent;
    color: var(--ac-dark);
    border: 2px solid var(--ac-dark);
    border-radius: 6px;
}
.ac-btn--outline-dark:hover { background: var(--ac-dark); color: var(--ac-white); opacity: 1; }

/* ════════════════════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════════════════════ */
.ac-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: var(--ac-white);
    transition: box-shadow 0.2s;
}
.ac-header--scrolled { box-shadow: 0 2px 16px rgba(27,28,28,0.08); }
.ac-nav {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    height: 68px;
    gap: 40px;
}
.ac-nav__logo {
    font-family: var(--ac-font-head);
    font-weight: 700;
    font-size: 22px;
    color: var(--ac-teal);
    flex-shrink: 0;
}
.ac-nav__links {
    display: flex;
    gap: 40px;
    flex: 1;
    justify-content: center;
}
.ac-nav__links a {
    font-family: var(--ac-font-head);
    font-weight: 500;
    font-size: 15px;
    color: var(--ac-dark);
    transition: color 0.2s;
}
.ac-nav__links a:hover { color: var(--ac-teal); }
.ac-nav__active {
    font-weight: 700 !important;
    color: var(--ac-teal) !important;
    border-bottom: 2px solid var(--ac-teal);
    padding-bottom: 2px;
}
.ac-nav__cta { font-size: 15px; flex-shrink: 0; }
.ac-nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.ac-nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ac-dark);
    border-radius: 2px;
    transition: all 0.25s;
}

/* ════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════ */
.ac-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding-top: 68px;
    overflow: hidden;
    background: var(--ac-bg);
}
.ac-hero__bg {
    position: absolute;
    inset: 0;
}
.ac-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ac-hero__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(245,243,243,0.95) 0%, rgba(245,243,243,0.6) 55%, rgba(245,243,243,0.05) 100%);
}
.ac-hero .ac-container {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-top: 100px;
    padding-bottom: 100px;
}
.ac-hero__content {
    max-width: 540px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.ac-hero__badge {
    font-family: var(--ac-font-head);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ac-teal);
}
.ac-hero__heading {
    font-family: var(--ac-font-head);
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--ac-dark);
}
.ac-hero__sub {
    font-size: 15px;
    line-height: 1.7;
    color: var(--ac-text);
}

/* ════════════════════════════════════════════════════════════
   STORY / TIMELINE
   ════════════════════════════════════════════════════════════ */
.ac-story {
    background: var(--ac-white);
    padding: 80px 0;
}
.ac-story__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}
.ac-story__heading {
    font-family: var(--ac-font-head);
    font-size: 28px;
    font-weight: 800;
    color: var(--ac-dark);
    margin-bottom: 40px;
}
.ac-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.ac-timeline__item {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 16px;
    padding: 24px 0;
    border-bottom: 1px solid var(--ac-border);
}
.ac-timeline__item:first-child { padding-top: 0; }
.ac-timeline__year {
    font-family: var(--ac-font-head);
    font-size: 13px;
    font-weight: 700;
    color: var(--ac-dark);
    padding-top: 3px;
}
.ac-timeline__title {
    font-family: var(--ac-font-head);
    font-size: 15px;
    font-weight: 700;
    color: var(--ac-dark);
    margin-bottom: 8px;
}
.ac-timeline__body {
    font-size: 14px;
    line-height: 1.65;
    color: var(--ac-text);
}
.ac-story__media { position: relative; }
.ac-story__media img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 10px;
}
.ac-story__quote-card {
    position: absolute;
    bottom: 24px;
    left: 24px;
    max-width: 260px;
    background: var(--ac-white);
    border-radius: 8px;
    padding: 20px 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.14);
}
.ac-story__quote-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--ac-teal);
    font-weight: 500;
    font-style: italic;
}

/* ════════════════════════════════════════════════════════════
   MISSION / VISION
   ════════════════════════════════════════════════════════════ */
.ac-mv {
    background: var(--ac-bg);
    padding: 80px 0;
}
.ac-mv__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
}
.ac-mission {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.ac-mission__icon {
    font-size: 28px;
    color: var(--ac-teal);
}
.ac-mission__heading {
    font-family: var(--ac-font-head);
    font-size: 22px;
    font-weight: 800;
    color: var(--ac-dark);
    line-height: 1.3;
}
.ac-mission__body {
    font-size: 14px;
    line-height: 1.75;
    color: var(--ac-text);
}
.ac-checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}
.ac-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--ac-text);
}
.ac-checklist li i { color: var(--ac-teal); font-size: 16px; flex-shrink: 0; }

.ac-vision-card {
    background: var(--ac-navy);
    border-radius: 12px;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
}
.ac-vision-card__icon {
    font-size: 24px;
    color: rgba(255,255,255,0.7);
}
.ac-vision-card__heading {
    font-family: var(--ac-font-head);
    font-size: 22px;
    font-weight: 800;
    color: var(--ac-white);
}
.ac-vision-card__body {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255,255,255,0.85);
}

/* ════════════════════════════════════════════════════════════
   LEADERSHIP
   ════════════════════════════════════════════════════════════ */
.ac-lead {
    background: var(--ac-white);
    padding: 80px 0;
}
.ac-lead__inner {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 64px;
    align-items: center;
}
.ac-lead__photo img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    border-radius: 12px;
}
.ac-lead__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.ac-lead__badge {
    font-family: var(--ac-font-head);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ac-teal);
}
.ac-lead__name {
    font-family: var(--ac-font-head);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    color: var(--ac-dark);
    line-height: 1.1;
}
.ac-lead__role {
    font-family: var(--ac-font-head);
    font-size: 16px;
    font-weight: 600;
    color: var(--ac-teal);
}
.ac-lead__bio {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ac-lead__bio p {
    font-size: 14px;
    line-height: 1.75;
    color: var(--ac-text);
}
.ac-lead__links {
    display: flex;
    gap: 24px;
    margin-top: 4px;
}
.ac-lead__link {
    font-family: var(--ac-font-head);
    font-size: 14px;
    font-weight: 600;
    color: var(--ac-teal);
    transition: opacity 0.2s;
}
.ac-lead__link:hover { opacity: 0.75; }

/* ════════════════════════════════════════════════════════════
   CTA
   ════════════════════════════════════════════════════════════ */
.ac-cta {
    background: var(--ac-white);
    padding: 80px 0;
    text-align: center;
}
.ac-cta__heading {
    font-family: var(--ac-font-head);
    font-size: clamp(24px, 2.5vw, 36px);
    font-weight: 800;
    color: var(--ac-dark);
    margin-bottom: 16px;
}
.ac-cta__sub {
    font-size: 15px;
    line-height: 1.65;
    color: var(--ac-text);
    max-width: 480px;
    margin: 0 auto 32px;
}
.ac-cta__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.ac-footer {
    background: var(--ac-bg);
    padding: 48px 0;
}
.ac-footer__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.ac-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.ac-footer__logo {
    font-family: var(--ac-font-head);
    font-weight: 700;
    font-size: 20px;
    color: var(--ac-teal);
}
.ac-footer__brand p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--ac-text);
}
.ac-footer__social {
    display: flex;
    gap: 14px;
}
.ac-footer__social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--ac-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ac-dark);
    font-size: 14px;
    transition: background 0.2s, color 0.2s;
}
.ac-footer__social a:hover { background: var(--ac-teal); color: var(--ac-white); }
.ac-footer__col h4 {
    font-family: var(--ac-font-head);
    font-size: 16px;
    font-weight: 700;
    color: var(--ac-teal);
    margin-bottom: 16px;
}
.ac-footer__col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ac-footer__col ul a {
    font-size: 16px;
    color: var(--ac-dark);
    transition: color 0.2s;
}
.ac-footer__col ul a:hover { color: var(--ac-teal); }
.ac-footer__copy {
    font-size: 14px;
    color: var(--ac-gray);
    margin-top: 24px;
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
.ac-story__inner  { gap: 48px; }
    .ac-lead__inner   { gap: 48px; }
}
@media (max-width: 768px) {
    .ac-nav__links, .ac-nav__cta { display: none; }
    .ac-nav__toggle { display: flex; }
    .ac-nav__links.ac-nav--open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 68px; left: 0; right: 0;
        background: var(--ac-white);
        padding: 24px 40px;
        gap: 20px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }
    .ac-hero__grid   { grid-template-columns: 1fr; }
    .ac-hero__photo  { height: 320px; }
    .ac-hero__text   { padding: 48px 24px; }
    .ac-hero__text-inner { margin: 0; }
    .ac-story__inner { grid-template-columns: 1fr; }
    .ac-mv__inner    { grid-template-columns: 1fr; }
    .ac-lead__inner  { grid-template-columns: 1fr; }
    .ac-lead__photo img { height: 320px; }
    .ac-footer__grid { grid-template-columns: 1fr 1fr; }
    .ac-container    { padding: 0 24px; }
}
@media (max-width: 480px) {
    .ac-footer__grid { grid-template-columns: 1fr; }
}
