/* ══════════════════════════════════════════
   ABOUT US PAGE STYLES (sfv-theme-white)
   Theme: Authoritative, Proof-Heavy, Deep
══════════════════════════════════════════ */

/* ── Base Setup ── */
.premium-theme {
    background: #fff;
}

/* Premium Icon System — Localized for About */
.sfv-icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #ffffff;
    border-radius: 12px;
    color: var(--blue-mid, #2563eb);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border, #e5e7eb);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.sfv-icon-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(37, 99, 235, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sfv-icon-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--blue-light, #dbeafe);
}

.sfv-icon-box:hover::before {
    opacity: 1;
}

.sfv-icon-box i,
.sfv-icon-box svg {
    width: 22px;
    height: 22px;
    stroke-width: 2px;
    position: relative;
    z-index: 1;
}

.sfv-icon-box--sm {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.sfv-icon-box--sm i,
.sfv-icon-box--sm svg {
    width: 20px;
    height: 20px;
}

.sfv-icon-box--lg {
    width: 56px;
    height: 56px;
    border-radius: 16px;
}

.sfv-icon-box--lg i,
.sfv-icon-box--lg svg {
    width: 28px;
    height: 28px;
}

.icon-inline {
    display: inline-flex;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;

}

.sfv-icon-box--blue {
    color: var(--blue-mid, #2563eb);
}

.sfv-icon-box--green {
    color: var(--slate-green, #22c55e);
}

.sfv-icon-box--amber {
    color: #f59e0b;
}

.sfv-icon-box--indigo {
    color: #4f46e5;
}

.sfv-icon-box--red {
    color: #ef4444;
}

#main {
    opacity: 1;
    animation: abtFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}



@keyframes abtFadeIn {
    from {
        opacity: 0;
        filter: blur(10px);
    }

    to {
        opacity: 1;
        filter: blur(0);
    }
}

.abt-section {
    padding: 120px 6vw;
    position: relative;
}

.abt-bg-gray {
    background: #f8fafc;
}

.abt-bg-dark {
    background: #0f172a;
    color: #fff;
}

.abt-container {
    max-width: 1200px;
    margin: 0 auto;
}

.abt-container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.center {
    text-align: center;
}

.mb-lg {
    margin-bottom: 50px;
}

.mb-xl {
    margin-bottom: 80px;
}

.text-white {
    color: #fff !important;
}

.abt-title-md {
    font-size: clamp(2.2rem, 4vw, 3rem);
    letter-spacing: -1px;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-weight: 900;
}

.as-eyebrow {
    font-family: 'Outfit';
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: #94a3b8;
    display: block;
    margin-bottom: 16px;
}

/* ── HERO ── */
.abt-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 200px 6vw;
    background: #fff;
}

.abt-hero-bg-texture {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.4;
    z-index: 1;
}

.abt-hero-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.ah-content {
    width: 55%;
}

.ah-eyebrow {
    display: inline-block;
    padding: 6px 16px;
    background: #f1f5f9;
    color: #475569;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    border-left: 3px solid var(--blue-mid);
}

.ah-title {
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.ah-title span {
    color: var(--blue-mid);
}

.ah-subtitle {
    font-size: 1.25rem;
    color: #475569;
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 50px;
    text-align: left;
    /* margin-inline: auto; */
}

.ah-btns {
    display: flex;
    gap: 20px;
}

.btn-abt-primary {
    background: var(--blue-mid);
    color: #fff;
    padding: 18px 36px;
    border-radius: 22px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: background 0.3s, transform 0.3s;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.btn-abt-primary:hover {
    background: var(--blue-deep);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
}

.btn-abt-ghost {
    background: transparent;
    color: var(--text-dark);
    padding: 18px 36px;
    border: 2px solid #e2e8f0;
    border-radius: 22px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: border-color 0.3s;
}

.btn-abt-ghost:hover {
    border-color: var(--blue-mid);
    background: #e6f0f9;
}

.ah-visual-stack {
    width: 40%;
    position: relative;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ahv-card {
    position: absolute;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 20px;
    width: 340px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.ahv-card:hover {
    transform: translateY(-10px) scale(1.02) !important;
    z-index: 10 !important;
}

.ahv-1 {
    top: 0px;
    right: 0;
    z-index: 3;
}

.ahv-2 {
    top: 120px;
    right: 40px;
    z-index: 2;
}

.ahv-3 {
    top: 240px;
    right: 80px;
    z-index: 1;
}

.ahv-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.ahv-text strong {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.ahv-text span {
    color: #64748b;
    font-size: 0.95rem;
}

/* ── TRUST HIGHLIGHTS (Data driven) ── */
.at-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
}

.at-card {
    border-left: 1px solid #e2e8f0;
    padding-left: 30px;
    transition: border-color 0.3s, transform 0.3s;
}

.at-card:hover {
    border-color: var(--blue-mid);
    transform: translateX(10px);
}

.at-val {
    font-family: 'Outfit';
    font-size: 3.5rem;
    font-weight: 900;
    color: #042777;
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -2px;
}

.at-val span {
    color: #043bbc;

}

.at-heading {
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.at-desc {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ── OUR STORY (Manifesto) ── */
.abt-story-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    z-index: 1;
}

.story-block {
    position: relative;
    z-index: 2;
    border-left: 2px solid #334155;
    padding-left: 60px;
}

.as-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -1.5px;
    margin-bottom: 40px;
    color: #fff;
}

.as-content p {
    font-size: 1.35rem;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 24px;
    font-weight: 300;
}

.as-content p em {
    color: #94a3b8;
    font-style: normal;
    text-decoration: line-through;
}

.as-content p strong {
    color: #fff;
    font-weight: 600;
}

.abt-gradient-underline {
    background-image: linear-gradient(90deg, #2563eb 0%, #60a5fa 100%);
    background-size: 100% 3px;
    background-position: 0 100%;
    background-repeat: no-repeat;
    padding-bottom: 4px;
    color: #fff;
    display: inline;
}

.as-signature {
    margin-top: 60px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.as-line {
    width: 60px;
    height: 1px;
    background: var(--blue-mid);
}

.as-signature span {
    font-family: 'Outfit';
    color: #60a5fa;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
}

/* ── WHAT MAKES US DIFFERENT (Staggered Grid) ── */
.ad-stagger-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: stretch;
}

.ad-card {
    background: #fff;
    padding: 25px 24px 36px;
    border: 1px solid #d2d6db;
    border-top: 4px solid #001b3b;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: transform 0.4s, border-top-color 0.4s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ad-card:hover {
    transform: translateY(-10px);
    border-top-color: var(--blue-mid);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

/* Desktop stagger logic */
@media (min-width: 992px) {
    .ad-up {
        margin-top: 0;
    }

    .ad-down {
        margin-top: 60px;
    }
}

.ad-card-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.adc-icon {
    font-size: 2rem;
    width: 52px;
    height: 52px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.ad-card:hover .adc-icon {
    box-shadow: 0 0 25px rgba(37, 99, 235, 0.25);
    background: #fff;
    transform: scale(1.1);
}

.ad-card h4 {
    font-size: 1.25rem;
    margin: 0;
    font-weight: 700;
    color: var(--text-dark);
}

.ad-card p {
    color: #475569;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* ── INVESTMENT PHILOSOPHY (Scroll Path) ── */
.ap-scroll-area {
    position: relative;
    padding-left: 80px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.ap-line-bg {
    position: absolute;
    left: 16px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #e2e8f0;
    border-radius: 2px;
}

.ap-line-progress {
    position: absolute;
    left: 16px;
    top: 0;
    width: 4px;
    background: var(--blue-mid);
    border-radius: 2px;
    transition: height 0.1s;
}

.ap-item {
    position: relative;
    margin-bottom: 80px;
    opacity: 0.4;
    transition: opacity 0.5s;
}

.ap-item.is-active {
    opacity: 1;
}

.ap-item:last-child {
    margin-bottom: 0;
}

.ap-dot {
    position: absolute;
    left: -70.5px;
    top: 8px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    border: 4px solid #cbd5e1;
    transition: border-color 0.4s, background 0.4s;
    z-index: 2;
}

.ap-item.is-active .ap-dot {
    border-color: var(--blue-mid);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}

.ap-item h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.ap-item p {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.6;
    max-width: 600px;
}

/* ── RESEARCH DRIVEN (Data Visual) ── */
.abt-split-align {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.ar-left {
    width: 45%;
}

.ar-right {
    width: 50%;
}

.ar-desc {
    font-size: 1.2rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 40px;
}

.ar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ar-list li {
    margin-bottom: 24px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 16px;
    transform: translateX(-20px);
    opacity: 0;
    transition: all 0.6s ease;
}

.ar-list li.is-visible {
    transform: translateX(0);
    opacity: 1;
}

.arl-icon {
    font-size: 1.5rem;
    background: #f8fafc;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.ar-dashboard-mock {
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s;
}

.ar-dashboard-mock:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.ard-header {
    background: #f8fafc;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ard-dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    margin-right: 6px;
}

.ard-dots span:nth-child(1) {
    background: #fca5a5;
}

.ard-dots span:nth-child(2) {
    background: #fde047;
}

.ard-dots span:nth-child(3) {
    background: #86efac;
}

.ard-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ard-body {
    padding: 32px;
}

.ard-row {
    margin-bottom: 24px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #475569;
}

.ard-bar {
    width: 100%;
    height: 8px;
    background: #f1f5f9;
    border-radius: 4px;
    margin-top: 8px;
    overflow: hidden;
}

.ard-bar div {
    height: 100%;
    border-radius: 4px;
    transform-origin: left;
    animation: barGrow 2s ease-out forwards;
}

@keyframes barGrow {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

.ard-chart-mock {
    height: 120px;
    margin-top: 40px;
    border-top: 1px dashed #e2e8f0;
    position: relative;
    padding-top: 20px;
}

.ar-dash-line {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: drawLine 3s ease-out forwards 1s;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

/* ── LIFECYCLE SUPPORT (Horizontal Flow) ── */
.al-journey {
    position: relative;
    margin-top: 60px;
    padding-bottom: 20px;
    min-height: 0px;
}

.al-journey-svg {
    width: 100%;
    height: auto;
    overflow: visible;
    display: block;
}

.al-journey-svg.mobile-only {
    display: none;
}

.al-journey-svg.desktop-only {
    display: block;
}

.al-svg-bg {
    stroke: #dde3ec;
    stroke-width: 3.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.al-svg-fill {
    stroke: var(--blue-mid);
    stroke-width: 3.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    transition: stroke-dashoffset 0.08s linear;
}

.al-nodes-custom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.al-nodes-custom .al-node {
    position: absolute;
    transform: translateX(-50%);
    text-align: center;
    width: 140px;
    pointer-events: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Bottom node: flip label above circle, keep circle centered on line */
.al-node-bottom {
    flex-direction: column-reverse !important;
}

.al-node-bottom .aln-circle {
    margin-top: 20px;
    margin-bottom: -24px;
    /* Half of 48px circle height */
}

.al-node-bottom h4 {
    margin-bottom: 0;
}

/* Branch node: label below */
.al-nodes-custom .al-node.al-node-branch {
    width: 130px;
}

/* Side node: text on the right of the circle */
.al-node-side-right {
    flex-direction: row !important;
    width: auto !important;
    transform: translateX(-24px) !important;
    white-space: nowrap;
    align-items: center;
}

.al-node-side-right .aln-circle {
    margin: -24px 0 0 0 !important;
}

.al-node-side-right h4 {
    margin: -24px 0 0 15px !important;
    text-align: left;
}


.al-node {
    text-align: center;
    width: 18%;
    transition: transform 0.3s;
}

.aln-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: 4px solid #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-family: 'Outfit';
    color: #64748b;
    margin: -36px auto 20px;
    /* -28px centers the circle perfectly on the line, shifted 4px up */
    transition: border-color 0.4s, color 0.4s;
    flex-shrink: 0;
}

.al-node h4 {
    font-size: 1.05rem;
    letter-spacing: -0.2px;
    color: #475569;
    transition: color 0.4s;
}

.al-node.is-active .aln-circle {
    border-color: var(--blue-mid);
    color: var(--blue-mid);
    box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.1);
}

.al-node.is-active h4 {
    color: var(--text-dark);
    font-weight: 700;
    transform: translateY(-5px);
}

/* ── PRESENCE & SCALE (World Map) ── */
.abt-scale {
    background: #f2f4f8;
    overflow: hidden;
}

.asc-header {
    text-align: center;
    margin-bottom: 48px;
}

.asc-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -1.5px;
}

.asc-subtitle {
    font-size: 1.05rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Map Wrapper ── */
.asc-map-wrapper {
    position: relative;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 1030px) {
    .asc-map-wrapper {
        overflow-x: hidden;
        -webkit-overflow-scrolling: auto;
        pointer-events: none;
    }
}

/* ── amCharts Map Container ── */
#asc-ammap {
    width: 100%;
    height: 520px;
    border-radius: 24px;
    background: linear-gradient(160deg, #eef4ff 0%, #f0f9ff 60%, #e8f5f0 100%);
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 40px rgba(37, 99, 235, 0.07);
    overflow: hidden;
}

@media (max-width: 1030px) {
    #asc-ammap {
        min-width: 1000px;
        height: 480px;
        animation: mapPanorama12 25s ease-in-out infinite;
    }
}

@media (max-width: 768px) {
    #asc-ammap {
        min-width: 1000px;
        height: 440px;
        border-radius: 16px;
        animation: mapPanorama10 25s ease-in-out infinite;
    }
}

@media (max-width: 480px) {
    #asc-ammap {
        min-width: 1000px;
        height: 400px;
    }
}

/* Panorama Keyframe Animations */
@keyframes mapPanorama12 {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(calc(100vw - 12vw - 1000px));
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes mapPanorama10 {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(calc(100vw - 10vw - 1000px));
    }

    100% {
        transform: translateX(0);
    }
}

/* ── Pin Dots ── */
.asc-pin-dot {
    fill: #2563eb;
    filter: drop-shadow(0 0 4px rgba(37, 99, 235, 0.6));
}

.asc-pin-pulse {
    fill: rgba(37, 99, 235, 0.18);
    animation: pin-pulse 2s ease-out infinite;
    transform-origin: center;
    transform-box: fill-box;
}

.asc-map-pin:nth-child(2) .asc-pin-pulse {
    animation-delay: 0.3s;
}

.asc-map-pin:nth-child(3) .asc-pin-pulse {
    animation-delay: 0.6s;
}

.asc-map-pin:nth-child(4) .asc-pin-pulse {
    animation-delay: 0.9s;
}

.asc-map-pin:nth-child(5) .asc-pin-pulse {
    animation-delay: 1.2s;
}

.asc-map-pin:nth-child(6) .asc-pin-pulse {
    animation-delay: 1.5s;
}

.asc-map-pin:nth-child(7) .asc-pin-pulse {
    animation-delay: 1.8s;
}

.asc-map-pin:nth-child(8) .asc-pin-pulse {
    animation-delay: 0.2s;
}

.asc-map-pin:nth-child(9) .asc-pin-pulse {
    animation-delay: 0.5s;
}

.asc-map-pin:nth-child(10) .asc-pin-pulse {
    animation-delay: 0.8s;
}

.asc-map-pin:nth-child(11) .asc-pin-pulse {
    animation-delay: 1.1s;
}

.asc-map-pin:nth-child(12) .asc-pin-pulse {
    animation-delay: 1.4s;
}

@keyframes pin-pulse {
    0% {
        r: 7;
        opacity: 0.8;
    }

    70% {
        r: 18;
        opacity: 0;
    }

    100% {
        r: 7;
        opacity: 0;
    }
}

.asc-map-pin {
    cursor: pointer;
}

.asc-map-pin:hover .asc-pin-dot {
    fill: #1d4ed8;
    r: 7;
}

/* ── SVG Tooltip ── */
.asc-tooltip-bg {
    fill: rgba(15, 23, 42, 0.85);
}

.asc-tooltip-text {
    fill: #fff;
    font-size: 14px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

/* ── Stat Tiles Below Map ── */
.asc-stats-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.asc-stat-chip {
    flex: 1;
    max-width: 320px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 35px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    text-align: center;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.asc-stat-chip:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.1);
}

.asc-stat-chip--alt {
    background: #2563eb;
    border: none;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
    max-width: 105%;
}

.asc-stat-chip--alt .asc-chip-num {
    color: #fff;
}

.asc-stat-chip--alt .asc-chip-label {
    color: rgba(255, 255, 255, 0.8);
}

.asc-chip-num {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    letter-spacing: -1px;
    color: #1e3a8a;
    line-height: 1;
    margin-bottom: 10px;
}

.asc-chip-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748b;
}

@media (max-width: 900px) {
    .asc-stats-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .asc-stat-chip {
        width: 100%;
        max-width: 400px;
    }
}

/* ── City Legend Pills ── */
.asc-city-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 28px;
}

.asc-legend-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #334155;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.asc-legend-pill:hover {
    border-color: #93c5fd;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.12);
}


/* ── CORE VALUES (CSS FLIP) ── */
.av-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    perspective: 1000px;
}

.av-flip-card {
    background: transparent;
    height: 320px;
    perspective: 1000px;
}

.av-flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.av-flip-card:hover .av-flip-inner,
.av-flip-card.flipped .av-flip-inner {
    transform: rotateY(180deg);
}

.av-front,
.av-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px;
    border: 1px solid #334155;
}

.av-front {
    background: #1e293b;
    color: #fff;
}

.av-icon.sfv-icon-box {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: #fff !important;
    width: 50px !important;
    height: 50px !important
}

.av-icon.sfv-icon-box::before {
    display: none !important;
}

.av-icon {
    font-size: 3rem;
    margin-bottom: 24px;
}

.av-front h3,
.av-front h4 {
    font-size: 1.5rem;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
    color: #fff;
}

.av-hint {
    font-size: 0.85rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.av-hint .sfv-icon-box {
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

.av-hint .sfv-icon-box::before {
    display: none !important;
}

.av-back {
    background: linear-gradient(135deg, #142a5d, #164181);
    color: #fff;
    transform: rotateY(180deg);
    border: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.av-back p {
    font-size: 1.15rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

/* ── FINAL CTA (Premium Block) ── */
.af-premium-block {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    padding: 100px 40px;
    text-align: center;
    color: #fff;
    border: 1px solid #e2e8f0;
}

.af-gradient-shift {
    position: absolute;
    top: -100%;
    left: -100%;
    right: -100%;
    bottom: -100%;
    background: radial-gradient(circle at 50% 50%, #ffffff 0%, #b0c7e2 50%, transparent 100%);
    animation: rotateGrad 30s linear infinite;
    z-index: 1;
    filter: blur(80px);
    opacity: 0.8;
}

@keyframes rotateGrad {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.af-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin: 0 auto;
    color: var(--text-dark);
}

.af-title {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    letter-spacing: -2.5px;
    margin-bottom: 24px;
    line-height: 1.1;
}

@media (min-width: 1025px) {
    .af-title {
        line-height: 0.92;
    }
}

.af-journey-text {
    background: linear-gradient(90deg, #2563eb, #16a34a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.af-desc {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 40px;
    line-height: 1.7;
}

.btn-abt-solid {
    background: var(--text-dark);
    color: #fff;
    padding: 16px 20px 16px 36px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1.15rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-abt-solid::before {
    content: '';
    position: absolute;
    top: var(--cy, 50%);
    left: var(--cx, 50%);
    width: 0;
    height: 0;
    background: #0f172a;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
    pointer-events: none;
}

.btn-abt-solid:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.btn-abt-solid:hover::before {
    width: 500px;
    height: 500px;
}

.btn-circle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #fff;
    color: var(--text-dark);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.btn-abt-solid:hover .btn-circle-icon {
    transform: translateX(4px);
}

.af-micro {
    margin-top: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #94a3b8;
    letter-spacing: 2px;
}


/* ── Responsive Overrides ── */
@media (max-width: 1024px) {

    .at-grid,
    .ad-stagger-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ad-down {
        margin-top: 0;
    }
}

@media (max-width: 900px) {
    .abt-hero-split {
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
    }

    .ah-content,
    .ah-visual-stack {
        width: 100%;
    }

    .ah-btns {
        justify-content: center;
    }

    .ah-visual-stack {
        height: auto;
        position: relative;
        margin-top: 40px;
        gap: 20px;
    }

    .ahv-card {
        position: static;
        width: 100%;
    }

    .story-block {
        padding-left: 0;
        border-left: none;
        border-top: 2px solid #334155;
        padding-top: 40px;
        text-align: center;
    }

    .as-signature {
        justify-content: center;
    }

    .abt-split-align,
    .abt-scale-split {
        flex-direction: column;
    }

    .ar-left,
    .ar-right,
    .asc-left,
    .asc-right {
        width: 100%;
    }

    /* Lifecycle section — extra breathing room on mobile */
    .abt-life {
        padding-bottom: 80px !important;
    }

    .al-journey {
        position: relative !important;
        width: 100%;
        max-width: 420px;
        margin: 48px auto 0 auto;
        height: 620px !important;
        display: block !important;
    }

    .al-journey-svg.desktop-only {
        display: none !important;
    }

    .al-journey-svg.mobile-only {
        display: block !important;
        width: 320px !important;
        height: 620px !important;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        overflow: visible;
    }

    /* Style the mobile SVG paths to be more premium */
    .al-journey-svg.mobile-only .al-svg-bg {
        stroke: #e2e8f3;
        stroke-width: 3;
    }

    .al-journey-svg.mobile-only .al-svg-fill {
        stroke: var(--blue-mid);
        stroke-width: 3;
    }

    .al-nodes,
    .al-nodes-custom {
        display: block !important;
        position: absolute !important;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 100% !important;
        pointer-events: auto !important;
        z-index: 2;
    }

    .al-nodes-custom .al-node,
    .al-node {
        position: absolute !important;
        transform: translateY(-50%) !important;
        width: auto !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 14px !important;
        text-align: left !important;
        pointer-events: auto !important;
        transition: opacity 0.4s ease !important;
    }

    /* Node exact positions on mobile */
    .al-nodes-custom .al-node:nth-child(1) {
        left: 46px !important;
        top: 50px !important;
    }

    .al-nodes-custom .al-node:nth-child(2) {
        left: 46px !important;
        top: 150px !important;
    }

    .al-nodes-custom .al-node:nth-child(3) {
        left: 46px !important;
        top: 250px !important;
    }

    .al-nodes-custom .al-node:nth-child(4) {
        left: 46px !important;
        top: 350px !important;
    }

    .al-nodes-custom .al-node:nth-child(5) {
        left: 230px !important;
        top: 440px !important;
    }

    .al-nodes-custom .al-node:nth-child(6) {
        left: 46px !important;
        top: 530px !important;
    }

    /* Premium circle */
    .al-nodes-custom .aln-circle,
    .aln-circle {
        margin: 0 !important;
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        line-height: 38px !important;
        font-size: 0.85rem !important;
        font-weight: 800 !important;
        font-family: 'Outfit', sans-serif !important;
        background: #fff !important;
        border: 2.5px solid #cbd5e8 !important;
        border-radius: 50% !important;
        text-align: center !important;
        color: #94a3b8 !important;
        z-index: 5 !important;
        flex-shrink: 0 !important;
        box-shadow: 0 2px 8px rgba(37, 99, 235, 0.06) !important;
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    /* Active circle — gradient fill + glow */
    .al-nodes-custom .al-node.is-active .aln-circle,
    .al-node.is-active .aln-circle {
        border-color: transparent !important;
        background: linear-gradient(135deg, #3b82f6, #1d4ed8) !important;
        color: #fff !important;
        box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15), 0 4px 16px rgba(37, 99, 235, 0.35) !important;
        transform: scale(1.1) !important;
    }

    /* Label pill cards */
    .al-nodes-custom .al-node h4,
    .al-node h4 {
        font-size: 0.88rem !important;
        margin: 0 !important;
        text-align: left !important;
        transform: none !important;
        color: #64748b !important;
        font-weight: 600 !important;
        white-space: nowrap !important;
        background: #f0f4ff !important;
        border: 1px solid #e2eaff !important;
        padding: 6px 14px !important;
        border-radius: 100px !important;
        letter-spacing: -0.1px !important;
        transition: all 0.4s ease !important;
        line-height: 1.3 !important;
    }

    /* Active label pill — vivid blue */
    .al-nodes-custom .al-node.is-active h4,
    .al-node.is-active h4 {
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(29, 78, 216, 0.08)) !important;
        border-color: rgba(59, 130, 246, 0.3) !important;
        color: #1e3a8a !important;
        font-weight: 700 !important;
    }

    /* Hide complex horizontal flow on mobile */
    .av-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ══════════════════════════════════════════
   OUR TEAM SECTION
══════════════════════════════════════════ */

/* ══════════════════════════════════════════
   OUR TEAM SECTION
══════════════════════════════════════════ */

.abt-team {
    background: var(--off-white);
}

.team-header {
    text-align: center;
    margin-bottom: 56px;
}

.team-sub {
    font-size: 1.1rem;
    color: var(--text-mid);
    margin-top: 12px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-rows-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.team-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

@media (min-width: 1201px) {
    .team-row.row-5 {
        gap: 18px;
    }

    .team-row.row-5 .team-card {
        flex: 0 0 210px;
        width: 210px;
    }
}

/* ── Card Shell (Same size for all) ── */
.team-card {
    position: relative;
    flex: 0 0 224px;
    width: 224px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 3 / 3;
    background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    perspective: 1000px;
}

.team-card:not([onclick]) {
    cursor: default;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(30, 58, 138, 0.15);
}

/* Mobile responsive resets */
@media (max-width: 1200px) {
    .team-card {
        flex: 0 0 calc(33.33% - 24px);
        width: auto;
        max-width: 240px;
    }
}

@media (max-width: 992px) {
    .team-card {
        flex: 0 0 calc(50% - 24px);
        max-width: 225px;
    }
}

@media (max-width: 580px) {
    .team-card {
        flex: 0 0 100%;
    }
}

/* ── Photo fills the whole card ── */
.tm-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--photo-pos, center top);
    display: block;
    z-index: 1;
    transition: transform 0.4s ease;
    transform: scale(var(--photo-zoom, 1));
}

.team-card:hover .tm-photo {
    transform: scale(calc(var(--photo-zoom, 1) * 1.05));
}

/* Hide when src is empty */
.tm-photo[src=""] {
    display: none;
}

/* ── Initials fallback (centered, always visible when no photo) ── */
.tm-initials {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--blue-mid);
    z-index: 1;
}

.tm-photo:not([src=""])~.tm-initials {
    display: none;
}

/* ── Dark gradient at bottom, always visible ── */
.tm-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(10, 15, 30, 0.92) 0%, rgba(10, 15, 30, 0.5) 60%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

/* ── Name + Role always at bottom over gradient ── */
.tm-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px 16px;
    z-index: 3;
}

.tm-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 3px;
    line-height: 1.2;
    text-shadow: 8px 21px 28px rgba(0, 0, 0, 0.465);
}

.tm-role {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 350;
    letter-spacing: 0.27px;
    display: block;
}

.tm-role:empty::after {
    content: 'Role coming soon';
    opacity: 0.5;
    font-style: italic;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}


/* ══════════════════════════════════════════
   TEAM MODAL (flip-open overlay)
══════════════════════════════════════════ */



.team-modal {
    background: #ffffff;
    color: var(--text-dark, #0f172a);
    border-radius: 24px;
    max-width: 832px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform-origin: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.team-modal-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    z-index: 9998;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.team-modal-backdrop.is-open {
    display: flex;
}

.team-modal-backdrop.is-open .team-modal {
    animation: modalFlipIn 0.55s cubic-bezier(0.34, 1.26, 0.64, 1) both;
}

@keyframes modalFlipIn {
    from {
        opacity: 0;
        transform: rotateY(-90deg) scale(0.8);
    }

    to {
        opacity: 1;
        transform: rotateY(0deg) scale(1);
    }
}

.tm-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    color: #475569;
    font-size: 1.4rem;
    line-height: 1;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s, color 0.2s;
}

.tm-modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #0f172a;
}

/* Top band: photo + name block */
.tm-modal-top {
    display: flex;
    align-items: flex-end;
    gap: 0;
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
    border-bottom: 1px solid #e2e8f0;
}

.tm-modal-photo {
    width: 160px;
    height: 200px;
    object-fit: cover;
    object-position: center top;
    flex-shrink: 0;
    display: block;
}

.tm-modal-photo[src=""] {
    display: none;
}

.tm-modal-initials-lg {
    width: 160px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(37, 99, 235, 0.1);
    flex-shrink: 0;
    background: rgba(37, 99, 235, 0.05);
}

.tm-modal-nameblock {
    padding: 24px 60px 24px 28px;
    flex: 1;
    align-self: flex-end;
}

.tm-modal-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: #0f172a;
    margin: 0 0 6px;
    letter-spacing: -0.5px;
}

.tm-modal-role {
    font-size: 0.85rem;
    color: var(--blue-mid, #2563eb);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}

.tm-modal-dept {
    display: inline-block;
    background: #dcfce7;
    color: #16a34a;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    margin-top: 8px;
}

/* Body content */
.tm-modal-body {
    padding: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.tm-modal-bio {
    grid-column: 1 / -1;
    font-size: 1rem;
    color: #475569;
    line-height: 1.7;
    margin: 0;
    padding-bottom: 24px;
    border-bottom: 1px solid #f1f5f9;
}

.tm-modal-section h4 {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #94a3b8;
    margin: 0 0 12px;
    font-weight: 700;
}

.tm-modal-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tm-modal-section li {
    font-size: 0.9rem;
    color: #334155;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
}

.tm-modal-section li::before {
    content: '→';
    color: var(--blue-mid, #2563eb);
    flex-shrink: 0;
    margin-top: 1px;
}

.tm-modal-contact {
    grid-column: 1 / -1;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    padding-top: 8px;
    border-top: 1px solid #f1f5f9;
}

.tm-contact-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 30px;
    font-size: 0.85rem;
    color: #0f172a;
    text-decoration: none;
    transition: background 0.2s;
}

.tm-contact-chip:hover {
    background: #e2e8f0;
}

@media (max-width: 600px) {
    .tm-modal-body {
        grid-template-columns: 1fr;
        padding: 24px 20px;
    }

    .tm-modal-bio,
    .tm-modal-contact {
        grid-column: 1;
    }



    .tm-modal-photo,
    .tm-modal-initials-lg {
        width: 120px;
        height: 160px;
    }

    .tm-modal-top {
        height: 160px;
    }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .ah-subtitle {
        font-size: 1.05rem;
        margin-bottom: 32px;
        max-width: 100%;
        align-items: center;
        text-align: center;

    }
}



@media (max-width: 900px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* On mobile: always show the overlay since no hover */
    .tm-overlay {
        transform: translateY(0);
        background: linear-gradient(to top, rgba(15, 23, 42, 0.78) 0%, transparent 60%);
    }
}

/* ══════════════════════════════════════════════════════════════
   MOBILE OVERHAUL — About Page
   Cozy, Contained, Native Feel. Desktop unaffected.
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

    /* ── Global section padding ── */
    .abt-section {
        padding: 60px 5vw;
    }

    /* ── Hero ── */
    .abt-hero {
        min-height: auto;
        padding: 120px 5vw 60px;
        text-align: center;
    }

    .abt-hero-split {
        flex-direction: column;
        gap: 50px;
    }

    .ah-content {
        width: 100%;
    }

    .ah-title {
        font-size: clamp(2.2rem, 9vw, 3.2rem);
        letter-spacing: -1px;
        margin-bottom: 20px;
    }

    .ah-subtitle {
        font-size: 1.05rem;
        margin-bottom: 32px;
        max-width: 100%;
        align-items: center;
        text-align: center;

    }

    .ah-btns {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .btn-abt-primary,
    .btn-abt-ghost,
    .btn-abt-solid {
        width: 100%;
        text-align: center;
        padding: 16px 24px;
        font-size: 1rem;
        border-radius: 36px !important;
    }

    .ah-visual-stack {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .ahv-card {
        position: static !important;
        width: 100%;
        max-width: 320px;
        padding: 18px;
        transform: none !important;
    }

    .ahv-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }

    /* ── Trust highlights ── */
    .at-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .at-card {
        border-left: none;
        border-top: 1px solid #e2e8f0;
        padding-left: 0;
        padding-top: 24px;
        text-align: center;
    }

    .at-card:first-child {
        border-top: none;
        padding-top: 0;
    }

    .at-val {
        font-size: 3rem;
        margin-bottom: 12px;
    }

    /* ── Story (dark section) ── */
    .story-block {
        padding-left: 0;
        border-left: none;
        text-align: center;
    }

    .as-title {
        font-size: clamp(2rem, 7vw, 2.8rem);
        margin-bottom: 30px;
    }

    .as-content p {
        font-size: 1.15rem;
        line-height: 1.7;
    }

    .as-signature {
        justify-content: center;
        margin-top: 40px;
    }

    /* ── Differentiators ── */
    .ad-stagger-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ad-card {
        padding: 24px 20px;
        text-align: left;
        border-radius: 20px;
    }

    .ad-card-head {
        gap: 12px;
        margin-bottom: 16px;
    }

    .adc-icon {
        width: 44px;
        height: 44px;
        font-size: 1.6rem;
    }

    /* ── Philosophy scroll area ── */
    .ap-scroll-area {
        padding-left: 40px;
    }

    .ap-line-bg,
    .ap-line-progress {
        left: 8px;
    }

    .ap-dot {
        left: -40px;
        width: 16px;
        height: 16px;
        border-width: 3px;
    }

    .ap-item {
        margin-bottom: 50px;
    }

    .ap-item h3 {
        font-size: 1.45rem;
    }

    .ap-item p {
        font-size: 1.05rem;
    }

    /* ── Research section ── */
    .abt-split-align {
        flex-direction: column;
        gap: 40px;
    }

    .ar-left,
    .ar-right {
        width: 100%;
        text-align: center;
    }

    .ar-list {
        display: inline-block;
        text-align: left;
    }

    .ar-dashboard-mock {
        transform: none !important;
        max-width: 100%;
    }



    /* ── Scale / Presence ── */
    .asc-title {
        font-size: clamp(2rem, 7vw, 2.8rem);
        text-align: center;
    }

    .asc-stat-box {
        padding: 30px 24px;
        text-align: center;
    }

    .asc-locations {
        display: grid;
        grid-template-columns: 1fr;
        border-left: none;
        padding-left: 0;
        text-align: center;
        margin-top: 20px;
    }

    /* ── Core Values flip cards ── */
    .av-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .av-flip-card {
        height: 240px;
    }

    .av-flip-card:hover .av-flip-inner {
        transform: none;
        /* Disable hover flip on mobile */
    }

    .av-flip-card.flipped .av-flip-inner {
        transform: rotateY(180deg);
    }

    /* ── Final CTA ── */
    .af-premium-block {
        padding: 60px 24px;
        border-radius: 24px;
        text-align: center;
    }

    .af-title {
        font-size: clamp(2.2rem, 8vw, 3rem);
    }

    .af-desc {
        font-size: 1.1rem;
    }

    .btn-abt-solid {
        border-radius: 36px !important;
        padding: 18px 40px;
        justify-content: center;
        display: inline-flex;
        width: 100%;
    }

    /* ── Team Modal ── */
    .team-modal {
        width: 92%;
        max-height: 85vh;
        border-radius: 20px;
    }

    .tm-modal-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 20px;
    }

    .tm-modal-photo,
    .tm-modal-initials-lg {
        width: 120px;
        height: 120px;
        margin-bottom: 20px;
    }

    .tm-modal-name {
        font-size: 1.5rem;
    }
}

/* ── Extra-small phones ── */
@media (max-width: 400px) {
    .ah-title {
        font-size: 1.8rem;
    }

    .at-val {
        font-size: 2.2rem;
    }

    .av-flip-card {
        height: 240px;
    }

    .af-title {
        font-size: 1.6rem;
    }
}

/* ══════════════════════════════════════════
   ABOUT PAGE FAQ — PREMIUM CARD SYSTEM
   ══════════════════════════════════════════ */
.abt-faq-section {
    background: #f8fafc;
    padding: 80px 24px;
}

.abt-faq-container {
    max-width: 840px;
    margin: 0 auto;
}

.abt-faq-header-block {
    text-align: center;
    margin-bottom: 48px;
}

.abt-faq-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2563eb;
}

.abt-faq-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #0f172a;
    margin-top: 12px;
}

.faq-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.abt-faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.abt-faq-item.open {
    border-color: #2563eb;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.07);
}

.abt-faq-header {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 22px 28px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    transition: color 0.2s;
}

.abt-faq-header:hover {
    color: #2563eb;
}

.abt-faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f9fafb;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
    font-family: 'Inter', sans-serif;
    color: #9ca3af;
}

.abt-faq-item.open .abt-faq-icon {
    background: rgba(37, 99, 235, 0.08);
    border-color: rgba(37, 99, 235, 0.25);
    color: #2563eb;
    transform: rotate(45deg);
}

.abt-faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.abt-faq-body p {
    color: #475569;
    line-height: 1.7;
    margin: 0;
    padding: 0 28px 22px;
}