/* ============================================================
   ABOUT PAGE — about.css
   Extends home.css design tokens; always load home.css first.
============================================================ */

/* ============================================================
   HERO — SIMPLE LIGHT (matches site theme)
============================================================ */
#about-hero {
    padding: 140px 0 80px;
    background: var(--bg-1);
    position: relative;
    overflow: hidden;
}

.ah-dots {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(rgba(103, 58, 183, .11) 1.5px, transparent 1.5px);
    background-size: 32px 32px;
    mask-image: radial-gradient(ellipse at 60% 40%, black 30%, transparent 72%);
}

.ah-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .40;
    pointer-events: none;
    animation: floatAnim 9s ease-in-out infinite;
}

.ah-blob-1 {
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(103, 58, 183, .22), transparent 70%);
    top: -160px;
    right: -80px;
}

.ah-blob-2 {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(33, 150, 243, .18), transparent 70%);
    bottom: -100px;
    left: -60px;
    animation-delay: -4s;
}

.ah-blob-3 {
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(255, 31, 142, .12), transparent 70%);
    top: 35%;
    left: 42%;
    animation-delay: -2s;
}

@keyframes floatAnim {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-26px) scale(1.04);
    }
}

.ah-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .75);
    border: 1px solid rgba(103, 58, 183, .18);
    border-radius: 50px;
    padding: 7px 18px;
    font-size: .75rem;
    font-weight: 600;
    color: var(--text-2);
    letter-spacing: .06em;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(6px);
    box-shadow: var(--shadow-sm);
}

.ah-breadcrumb a {
    color: var(--purple);
}

.ah-breadcrumb i {
    font-size: .55rem;
    opacity: .55;
}

.ah-headline {
    font-size: clamp(1rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--text);
    line-height: 1.08;
    margin-bottom: 1.2rem;
}

.ah-sub {
    font-size: 1.05rem;
    color: var(--text-2);
    max-width: 540px;
    line-height: 1.78;
    margin-bottom: 2.2rem;
}

.ah-stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 3rem;
    background: rgba(255, 255, 255, .82);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 24px 32px;
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow-sm);
    width: fit-content;
}

.ah-stat {
    padding: 0 36px 0 0;
    border-right: 1px solid var(--border);
    margin-right: 36px;
}

.ah-stat:last-child {
    padding-right: 0;
    border-right: none;
    margin-right: 0;
}

.ah-stat-num {
    font-family: var(--ff-display);
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--btn-action);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: .2rem;
}

.ah-stat-label {
    font-size: .76rem;
    color: var(--muted);
    letter-spacing: .05em;
    text-transform: uppercase;
}

/* Right image */
.ah-img-wrap {
    position: relative;
}

.ah-img-main {
    border-radius: var(--r-lg);
    width: 100%;
    aspect-ratio: 5/4;
    object-fit: cover;
    border: 1px solid rgba(103, 58, 183, .12);
    box-shadow: var(--shadow-lg);
}

.ah-img-badge {
    position: absolute;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(103, 58, 183, .15);
    border-radius: var(--r);
    padding: 12px 18px;
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
}

.ah-img-badge.top-right {
    top: -18px;
    right: -14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ah-img-badge.bottom-left {
    bottom: -18px;
    left: -14px;
}

.ah-badge-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--btn-action);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    flex-shrink: 0;
}

.ah-badge-num {
    font-family: var(--ff-display);
    font-size: 1.3rem;
    font-weight: 800;
    background: var(--btn-action);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.ah-badge-lbl {
    font-size: .7rem;
    color: var(--muted);
}

/* ============================================================
   INTRO — WHO WE ARE
============================================================ */
#about-intro {
    padding: 60px 0;
    background: var(--bg-2);
    position: relative;
    overflow: hidden;
}

.intro-blob-1 {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(90px);
    opacity: .3;
    background: radial-gradient(circle, rgba(103, 58, 183, .22), transparent 70%);
    top: -100px;
    right: -80px;
    pointer-events: none;
}

.intro-lead {
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    font-weight: 800;
    color: var(--text);
    line-height: 1.28;
    margin-bottom: 1.4rem;
}

.intro-body {
    font-size: .97rem;
    color: var(--text-2);
    line-height: 1.85;
    margin-bottom: 1rem;
}

.intro-highlight {
    display: block;
    background: linear-gradient(to right, rgba(103, 58, 183, .07), rgba(33, 150, 243, .07));
    border-left: 3px solid var(--purple);
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
    padding: 16px 22px;
    font-size: .95rem;
    font-style: italic;
    color: var(--text);
    line-height: 1.75;
    margin: 1.6rem 0;
}

.intro-value-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.intro-value-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: .93rem;
    color: var(--text-2);
}

.intro-value-list li:last-child {
    border-bottom: none;
}

.intro-value-list li strong {
    color: var(--text);
}

.intro-v-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(103, 58, 183, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    color: var(--purple);
    flex-shrink: 0;
    margin-top: 1px;
}

.intro-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 180px;
    gap: 12px;
}

.intro-img-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--r);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: transform .5s ease;
}

.intro-img-grid img:hover {
    transform: scale(1.02);
}

.intro-img-grid img:first-child {
    grid-row: 1 / 3;
}

/* ============================================================
   OWNER / FOUNDER
============================================================ */
#about-owner {
    padding: 60px 0;
    background: var(--bg-3);
}

.owner-card {
    background: rgba(255, 255, 255, .92);
    border: 1.5px solid var(--border);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
}

@media(min-width:768px) {
    .owner-card {
        flex-direction: row;
    }
}

.owner-img-col {
    flex: 0 0 320px;
    position: relative;
    min-height: 400px;
    overflow: hidden;
}

.owner-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform .7s ease;
}

.owner-card:hover .owner-img-col img {
    transform: scale(1.04);
}

.owner-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 45%;
    background: linear-gradient(to top, rgba(103, 58, 183, .82), transparent);
    display: flex;
    align-items: flex-end;
    padding: 22px;
}

.owner-img-badge {
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: var(--r-sm);
    padding: 8px 14px;
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.owner-content {
    flex: 1;
    padding: 46px 42px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.owner-role-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(103, 58, 183, .08);
    border: 1px solid rgba(103, 58, 183, .2);
    color: var(--purple);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 6px 16px;
    margin-bottom: 1.1rem;
    width: fit-content;
}

.owner-name {
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: .5rem;
    color: var(--text);
}

.owner-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--purple);
    margin-bottom: 1.4rem;
}

.owner-bio {
    font-size: .93rem;
    color: var(--text-2);
    line-height: 1.82;
    margin-bottom: 1.1rem;
}

.owner-quote {
    background: linear-gradient(135deg, rgba(103, 58, 183, .07), rgba(33, 150, 243, .07));
    border-left: 3px solid var(--purple);
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
    padding: 14px 20px;
    font-size: .92rem;
    font-style: italic;
    color: var(--text);
    margin-bottom: 1.8rem;
    line-height: 1.72;
}

.owner-trait-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 1.8rem;
}

.owner-trait {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .9);
    border: 1.5px solid var(--border);
    border-radius: 50px;
    padding: 7px 16px;
    font-size: .82rem;
    font-weight: 600;
    color: var(--text-2);
    box-shadow: var(--shadow-sm);
}

.owner-trait i {
    color: var(--purple);
}

.owner-social {
    display: flex;
    gap: 10px;
}

.owner-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .9);
    border: 1.5px solid var(--border-2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
    font-size: .95rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.owner-social a:hover {
    background: var(--btn-action);
    border-color: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* ============================================================
   JOURNEY / TIMELINE — with images
============================================================ */
#about-journey {
    padding: 60px 0;
    background: var(--bg-1);
    position: relative;
    overflow: hidden;
}

.timeline {
    position: relative;
    margin-top: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(to bottom, transparent, var(--border-2) 10%, var(--border-2) 90%, transparent);
}

.tl-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 52px;
    position: relative;
}

.tl-item:last-child {
    margin-bottom: 0;
}

.tl-item:nth-child(odd) {
    flex-direction: row;
}

.tl-item:nth-child(even) {
    flex-direction: row-reverse;
}

.tl-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-right: 50px;
}

.tl-item:nth-child(even) .tl-side {
    align-items: flex-start;
    padding-right: 0;
    padding-left: 50px;
}

.tl-card {
    background: rgba(255, 255, 255, .92);
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    max-width: 440px;
    width: 100%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.tl-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: rgba(103, 58, 183, .22);
}

.tl-card-img {
    width: 100%;
    height: 185px;
    object-fit: cover;
    display: block;
    transition: transform .6s cubic-bezier(.4, 0, .2, 1);
}

.tl-card:hover .tl-card-img {
    transform: scale(1.06);
}

.tl-card-body {
    padding: 20px 22px;
}

.tl-year-badge {
    display: inline-flex;
    align-items: center;
    background: var(--btn-action);
    color: #fff;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .1em;
    border-radius: 50px;
    padding: 4px 13px;
    margin-bottom: 8px;
}

.tl-card-body h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .4rem;
}

.tl-card-body p {
    font-size: .86rem;
    color: var(--text-2);
    line-height: 1.72;
    margin: 0;
}

.tl-node {
    flex: 0 0 auto;
    width: 50px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 18px;
}

.tl-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--btn-action);
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px rgba(103, 58, 183, .22);
    flex-shrink: 0;
    z-index: 1;
    position: relative;
}

.tl-mirror {
    flex: 1;
    padding-left: 50px;
}

.tl-item:nth-child(even) .tl-mirror {
    padding-left: 0;
    padding-right: 50px;
}

@media(max-width:767.98px) {
    .timeline::before {
        left: 22px;
    }

    .tl-item,
    .tl-item:nth-child(even) {
        flex-direction: row !important;
    }

    .tl-side,
    .tl-item:nth-child(even) .tl-side {
        align-items: flex-start;
        padding-left: 26px;
        padding-right: 0;
    }

    .tl-node {
        width: 46px;
    }

    .tl-mirror,
    .tl-item:nth-child(even) .tl-mirror {
        display: none;
    }

    .tl-card {
        max-width: 100%;
    }
}

/* ============================================================
   GOALS — with images (same pattern as srv-card / why-card)
============================================================ */
#about-goals {
    padding: 60px 0;
    background: var(--bg-2);
}

.goal-card {
    background: rgba(255, 255, 255, .9);
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.goal-card::before {
    content: '';
    display: block;
    height: 3px;
    background: var(--btn-action);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.goal-card:hover::before {
    transform: scaleX(1);
}

.goal-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(103, 58, 183, .2);
}

.goal-img-wrap {
    overflow: hidden;
    aspect-ratio: 16/9;
}

.goal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.4, 0, .2, 1);
}

.goal-card:hover .goal-img {
    transform: scale(1.07);
}

.goal-body {
    padding: 24px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.goal-icon-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: .9rem;
}

.goal-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.goal-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 .6rem;
}

.goal-desc {
    font-size: .87rem;
    color: var(--text-2);
    line-height: 1.75;
    flex: 1;
    margin: 0;
}

/* ============================================================
   VISION & MISSION
============================================================ */
#about-vision {
    padding: 60px 0;
    background: var(--bg-3);
}

.vm-card {
    border-radius: var(--r-lg);
    padding: 48px 42px;
    height: 100%;
    transition: var(--transition);
}

.vm-card:hover {
    transform: translateY(-5px);
}

.vm-card-vision {
    background: linear-gradient(135deg, rgba(103, 58, 183, .1) 0%, rgba(33, 150, 243, .1) 100%);
    border: 1.5px solid rgba(103, 58, 183, .2);
    box-shadow: var(--shadow-sm);
}

.vm-card-mission {
    background: linear-gradient(135deg, rgba(255, 31, 142, .08) 0%, rgba(255, 189, 132, .1) 100%);
    border: 1.5px solid rgba(255, 31, 142, .18);
    box-shadow: var(--shadow-sm);
}

.vm-icon-wrap {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.vm-card-vision .vm-icon-wrap {
    background: rgba(103, 58, 183, .12);
    color: var(--purple);
}

.vm-card-mission .vm-icon-wrap {
    background: rgba(255, 31, 142, .1);
    color: var(--pink);
}

.vm-label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: .7rem;
}

.vm-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 1.1rem;
}

.vm-card-vision .vm-title {
    color: var(--purple);
}

.vm-card-mission .vm-title {
    color: var(--pink);
}

.vm-body {
    font-size: .92rem;
    color: var(--text-2);
    line-height: 1.85;
    margin-bottom: 1.8rem;
}

.vm-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vm-list li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    font-size: .9rem;
    color: var(--text-2);
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.vm-list li:last-child {
    border-bottom: none;
}

.vm-list-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 7px;
}

.vm-card-vision .vm-list-dot {
    background: var(--purple);
}

.vm-card-mission .vm-list-dot {
    background: var(--pink);
}

/* ============================================================
   CTA BANNER
============================================================ */
#about-cta {
    padding: 60px 0;
    background: var(--bg-1);
}

.cta-banner {
    background: var(--btn-action);
    border-radius: var(--r-xl);
    padding: 72px 60px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .06) 1.5px, transparent 1.5px);
    background-size: 26px 26px;
    pointer-events: none;
}

.cta-banner-blob {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, .12), transparent 65%);
    top: -200px;
    right: -120px;
    pointer-events: none;
}

.cta-banner-inner {
    position: relative;
    z-index: 1;
}

.cta-banner h2 {
    font-size: clamp(1.8rem, 3.8vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

.cta-banner p {
    font-size: 1rem;
    color: rgba(255, 255, 255, .78);
    max-width: 500px;
    margin: 0 auto 2.5rem;
    line-height: 1.72;
}

.cta-btn-white {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #fff;
    color: var(--purple);
    border: none;
    border-radius: 50px;
    padding: 15px 36px;
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
}

.cta-btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .22);
    color: var(--purple);
}

.cta-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255, 255, 255, .15);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .38);
    border-radius: 50px;
    padding: 14px 34px;
    font-family: var(--ff-display);
    font-weight: 600;
    font-size: .95rem;
    transition: var(--transition);
    cursor: pointer;
    backdrop-filter: blur(6px);
}

.cta-btn-ghost:hover {
    background: rgba(255, 255, 255, .26);
    color: #fff;
    transform: translateY(-3px);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media(max-width:991.98px) {
    #about-hero {
        padding: 120px 0 64px;
    }

    .owner-content {
        padding: 34px 26px;
    }

    .vm-card {
        padding: 38px 30px;
    }

    .cta-banner {
        padding: 50px 28px;
    }

    .ah-stats-row {
        width: 100%;
    }

    .ah-stat {
        padding: 0 22px 0 0;
        margin-right: 22px;
    }
}

@media(max-width:575.98px) {
    .ah-stats-row {
        flex-wrap: wrap;
        gap: 16px;
    }

    .ah-stat {
        border-right: none;
        margin-right: 0;
        padding-right: 0;
        width: 45%;
    }

    .intro-img-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .intro-img-grid img:first-child {
        grid-row: auto;
    }

    .owner-img-col {
        flex: 0 0 100%;
        min-height: 260px;
    }

    .ah-img-badge.top-right {
        top: 0;
        right: 0;
    }

    .ah-img-badge.bottom-left {
        bottom: 0;
        left: 0;
    }
}