/* ==========================================================================
   PRIMA FINANCE — ABOUT PAGE
   Premium fintech design · Same design language as homepage v2
   Uses design tokens from homepage.css
   ========================================================================== */

/* ─── HERO ──────────────────────────────────────────────────────────────── */
.pf-about-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    color: #fff;
    padding: 120px 0 80px;
}

.pf-about-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -3;
    background: var(--pf-grad-primary, linear-gradient(135deg, #051c66 0%, #072890 50%, #0a3ab8 100%));
}

.pf-about-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(227,6,19,0.06) 0%, transparent 40%);
}

.pf-about-hero-dots {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(to right, transparent 0%, black 25%, black 75%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 25%, black 75%, transparent 100%);
}

.pf-about-hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.pf-about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 10px 22px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,.2);
    box-shadow: 0 4px 16px rgba(0,0,0,.12);
    letter-spacing: 0.04em;
    animation: pf-pop-in 0.8s cubic-bezier(0.22,1,0.36,1) both;
    animation-delay: 0.15s;
}

.pf-about-hero-badge i { color: #fbbf24; }

.pf-about-hero h1 {
    font-size: clamp(30px, 4.5vw, 50px);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 auto 18px;
    max-width: 700px;
    letter-spacing: -0.025em;
    text-shadow: 0 2px 24px rgba(0,0,0,.22);
    animation: pf-pop-in 0.8s cubic-bezier(0.22,1,0.36,1) both;
    animation-delay: 0.3s;
}

.pf-about-hero-subtitle {
    font-size: clamp(15px, 2vw, 18px);
    opacity: .85;
    max-width: 600px;
    margin: 0 auto 28px;
    line-height: 1.7;
    font-weight: 400;
    animation: pf-pop-in 0.8s cubic-bezier(0.22,1,0.36,1) both;
    animation-delay: 0.45s;
}

.pf-about-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,.55);
    animation: pf-pop-in 0.8s cubic-bezier(0.22,1,0.36,1) both;
    animation-delay: 0.55s;
}

.pf-about-breadcrumb a {
    color: rgba(255,255,255,.7);
    text-decoration: none;
    transition: color 0.2s;
}

.pf-about-breadcrumb a:hover { color: #fff; }
.pf-about-breadcrumb .sep { font-size: 10px; }

/* Wave bottom */
.pf-about-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 2;
}

.pf-about-hero-wave svg {
    display: block;
    width: 100%;
    height: 60px;
}

/* ─── SECTION SHARED ───────────────────────────────────────────────────── */
.pf-about-section {
    padding: 96px 0;
    position: relative;
    background: var(--pf-surface, #fff);
}

.pf-about-section--alt {
    background: var(--pf-surface-alt, #f4f6fc);
}

/* ─── WHO WE ARE ───────────────────────────────────────────────────────── */
.pf-who-img-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--pf-shadow-lg, 0 12px 40px rgba(7,40,144,.12));
}

.pf-who-img-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}

.pf-who-img-wrap:hover img {
    transform: scale(1.03);
}

.pf-who-placeholder {
    width: 100%;
    height: 420px;
    background: var(--pf-grad-primary, linear-gradient(135deg, #072890, #0a3ab8));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: rgba(255,255,255,.5);
    font-size: 18px;
}

.pf-who-placeholder i { font-size: 56px; }

.pf-who-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--app-them, #072890);
    color: #fff;
    padding: 18px 26px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(7,40,144,.45);
}

.pf-who-badge-year {
    display: block;
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
}

.pf-who-badge-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: .8;
    margin-top: 4px;
}

.pf-who-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--app-them, #072890);
    background: rgba(7,40,144,.07);
    padding: 6px 16px;
    border-radius: 9999px;
    margin-bottom: 16px;
    border: 1px solid rgba(7,40,144,.12);
}

.pf-who-heading {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: var(--pf-text, #0d1226);
    margin-bottom: 18px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.pf-who-text {
    font-size: 16px;
    line-height: 1.75;
    color: var(--pf-text-secondary, #505878);
    margin-bottom: 14px;
}

.pf-who-highlights {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.pf-who-hl {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--pf-text, #0d1226);
}

.pf-who-hl i {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(7,40,144,.07);
    color: var(--app-them, #072890);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}

/* ─── MISSION & VISION ─────────────────────────────────────────────────── */
.pf-mv-card {
    background: var(--pf-surface-card, #fff);
    border-radius: 20px;
    padding: 40px 32px;
    height: 100%;
    box-shadow: var(--pf-shadow-sm, 0 2px 6px rgba(7,40,144,.06));
    border: 1px solid var(--pf-border-light, #edf0f7);
    transition: transform var(--pf-t2, 0.38s), box-shadow var(--pf-t2, 0.38s);
}

.pf-mv-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--pf-shadow-lg, 0 12px 40px rgba(7,40,144,.12));
}

.pf-mv-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.pf-mv-mission .pf-mv-icon {
    background: rgba(7,40,144,.08);
    color: var(--app-them, #072890);
}

.pf-mv-vision .pf-mv-icon {
    background: rgba(227,6,19,.08);
    color: var(--app-second-them, #e30613);
}

.pf-mv-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--pf-text, #0d1226);
}

.pf-mv-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--pf-text-secondary, #505878);
    margin: 0;
}

/* ─── VALUES ───────────────────────────────────────────────────────────── */
.pf-value-card {
    background: var(--pf-surface-card, #fff);
    border-radius: 16px;
    padding: 30px 24px;
    height: 100%;
    border: 1px solid var(--pf-border-light, #edf0f7);
    box-shadow: var(--pf-shadow-xs, 0 1px 2px rgba(7,40,144,.04));
    transition: transform var(--pf-t2, 0.38s), box-shadow var(--pf-t2, 0.38s);
    position: relative;
    overflow: hidden;
}

.pf-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    border-radius: 0 0 4px 0;
    transition: height 0.35s ease;
}

.pf-value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--pf-shadow-md, 0 4px 16px rgba(7,40,144,.08));
}

.pf-value-card:hover::before { height: 100%; }

.pf-value-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
    background: rgba(7,40,144,.06);
    color: var(--app-them, #072890);
    transition: all 0.3s ease;
}

.pf-value-card:hover .pf-value-icon {
    color: #fff;
}

.pf-value-card h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--pf-text, #0d1226);
}

.pf-value-card p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--pf-text-secondary, #505878);
    margin: 0;
}

/* Value accent colors */
.pf-value-card[data-accent="#072890"]::before { background: #072890; }
.pf-value-card[data-accent="#0a3ab8"]::before { background: #0a3ab8; }
.pf-value-card[data-accent="#28a745"]::before { background: #28a745; }
.pf-value-card[data-accent="#6f42c1"]::before { background: #6f42c1; }
.pf-value-card[data-accent="#fd7e14"]::before { background: #fd7e14; }
.pf-value-card[data-accent="#e30613"]::before { background: #e30613; }

.pf-value-card[data-accent="#072890"]:hover .pf-value-icon { background: #072890; }
.pf-value-card[data-accent="#0a3ab8"]:hover .pf-value-icon { background: #0a3ab8; }
.pf-value-card[data-accent="#28a745"]:hover .pf-value-icon { background: #28a745; }
.pf-value-card[data-accent="#6f42c1"]:hover .pf-value-icon { background: #6f42c1; }
.pf-value-card[data-accent="#fd7e14"]:hover .pf-value-icon { background: #fd7e14; }
.pf-value-card[data-accent="#e30613"]:hover .pf-value-icon { background: #e30613; }

/* ─── ACCREDITATION ────────────────────────────────────────────────────── */
.pf-accred-details {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
}

.pf-accred-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
}

.pf-accred-item i {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(7,40,144,.07);
    color: var(--app-them, #072890);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.pf-accred-item strong {
    display: block;
    font-size: 12px;
    color: var(--pf-text-muted, #8b93b0);
    font-weight: 500;
}

.pf-accred-item span {
    font-weight: 600;
    color: var(--pf-text, #0d1226);
}

.pf-accred-visual {
    background: var(--pf-grad-primary, linear-gradient(135deg, #051c66, #072890));
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(7,40,144,.3);
}

.pf-accred-visual::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,.05) 0%, transparent 60%);
}

.pf-accred-shield { font-size: 48px; margin-bottom: 14px; opacity: .9; }

.pf-accred-ministry {
    display: block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: .65;
    margin-bottom: 8px;
}

.pf-accred-type {
    display: block;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
}

.pf-accred-num {
    display: block;
    font-size: 13px;
    opacity: .55;
    font-weight: 500;
}

.pf-accred-seal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 8px 20px;
    border: 2px solid rgba(255,255,255,.28);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}

.pf-accred-seal i { font-size: 18px; color: #fbbf24; }

/* ─── IMPACT STATS ─────────────────────────────────────────────────────── */
.pf-impact-stats {
    position: relative;
    color: #fff;
    padding: 80px 0;
    overflow: hidden;
}

.pf-impact-stats-bg {
    position: absolute;
    inset: 0;
    background: var(--pf-grad-primary, linear-gradient(135deg, #051c66, #072890, #0a3ab8));
    background-size: 200% 200%;
    animation: pf-counter-bg 12s ease-in-out infinite;
}

.pf-impact-stats .pf-stat-item {
    text-align: center;
    padding: 20px 10px;
}

.pf-impact-stats .pf-stat-value {
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 6px;
}

.pf-impact-stats .pf-stat-label {
    font-size: 13px;
    font-weight: 500;
    opacity: .7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pf-impact-wave-top,
.pf-impact-wave-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 2;
}

.pf-impact-wave-top { top: -1px; }
.pf-impact-wave-bottom { bottom: -1px; }

.pf-impact-wave-top svg,
.pf-impact-wave-bottom svg {
    display: block;
    width: 100%;
    height: 60px;
}

/* ─── TEAM ─────────────────────────────────────────────────────────────── */
.pf-team-cat-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--app-them, #072890);
    background: rgba(7,40,144,.06);
    padding: 6px 16px;
    border-radius: 9999px;
    margin-bottom: 28px;
    border: 1px solid rgba(7,40,144,.1);
}

.pf-team-cat-label i { font-size: 11px; }

.pf-team-block {
    margin-bottom: 48px;
}

/* Loading placeholder */
.pf-team-ph-wrap {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.pf-team-ph {
    width: 220px;
    height: 320px;
    border-radius: 20px;
    background: rgba(7,40,144,.04);
    animation: pf-team-pulse 1.5s ease-in-out infinite;
}

@keyframes pf-team-pulse {
    0%, 100% { opacity: .35; }
    50% { opacity: .8; }
}

/* Slider container */
.pf-team-slider {
    margin: 0 -12px;
    position: relative;
}

.pf-team-slider .slick-list {
    overflow: hidden;
    padding: 10px 0 20px;
}

.pf-team-slider .slick-track {
    display: flex;
}

/* Each slide */
.pf-team-slide {
    padding: 0 12px;
    outline: none;
}

.pf-team-slide:focus { outline: none; }

/* Team card */
.pf-team-card {
    background: var(--pf-surface-card, #fff);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--pf-border-light, #edf0f7);
    box-shadow: var(--pf-shadow-sm, 0 2px 6px rgba(7,40,144,.06));
    transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s cubic-bezier(0.22,1,0.36,1);
    height: 100%;
    display: flex;
    flex-direction: column;
    max-width: 280px;
    margin: 0 auto;
}

.pf-team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(7,40,144,.14);
}

/* Photo */
.pf-team-photo {
    width: 100%;
    height: 220px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #072890 0%, #0a3ab8 50%, #051c66 100%);
    flex-shrink: 0;
}

.pf-team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}

.pf-team-card:hover .pf-team-photo img {
    transform: scale(1.05);
}

.pf-team-initials {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    font-weight: 800;
    color: rgba(255,255,255,.18);
    letter-spacing: 4px;
    user-select: none;
}

/* Subtle gradient on photo bottom */
.pf-team-photo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(0,0,0,.12) 0%, transparent 100%);
    pointer-events: none;
}

/* Info */
.pf-team-info {
    padding: 16px 18px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.pf-team-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--pf-text, #0d1226);
    margin: 0 0 3px;
    line-height: 1.3;
}

.pf-team-title {
    font-size: 11px;
    font-weight: 600;
    color: var(--app-them, #072890);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.pf-team-bio {
    font-size: 13px;
    line-height: 1.55;
    color: var(--pf-text-secondary, #505878);
    margin: 0 0 auto;
    padding-bottom: 10px;
}

.pf-team-socials {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: auto;
}

.pf-team-socials a {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(7,40,144,.06);
    color: var(--app-them, #072890);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.pf-team-socials a:hover {
    background: var(--app-them, #072890);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(7,40,144,.3);
}

/* Slider arrows */
.pf-team-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: var(--app-them, #072890);
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(7,40,144,.15);
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pf-team-arrow:hover {
    background: var(--app-them, #072890);
    color: #fff;
    box-shadow: 0 6px 24px rgba(7,40,144,.3);
    transform: translateY(-50%) scale(1.08);
}

.pf-team-arrow--prev { left: -22px; }
.pf-team-arrow--next { right: -22px; }

/* Slider dots */
.pf-team-slider .slick-dots {
    display: flex !important;
    justify-content: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
}

.pf-team-slider .slick-dots li {
    margin: 0;
}

.pf-team-slider .slick-dots li button {
    font-size: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(7,40,144,.15);
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.pf-team-slider .slick-dots li.slick-active button {
    background: var(--app-them, #072890);
    width: 28px;
    border-radius: 5px;
}

/* ─── PARTNERS ─────────────────────────────────────────────────────────── */
.pf-about-partners-grid {
    margin-top: 10px;
}

.pf-partner-ph-wrap {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.pf-partner-ph {
    width: 120px;
    height: 60px;
    background: rgba(7,40,144,.05);
    border-radius: 12px;
    animation: pf-team-pulse 1.5s ease-in-out infinite;
}

.pf-partners-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.pf-partner-item { flex: 0 0 auto; }

.pf-partner-logo {
    max-height: 60px;
    max-width: 150px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.55);
    transition: all 0.3s ease;
}

.pf-partner-logo:hover {
    filter: grayscale(0%) opacity(1);
}

.pf-partner-name-badge {
    padding: 12px 24px;
    background: rgba(7,40,144,.05);
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    color: var(--pf-text-secondary, #505878);
}

/* ─── CTA ──────────────────────────────────────────────────────────────── */
.pf-about-cta {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    color: #fff;
}

.pf-about-cta-bg {
    position: absolute;
    inset: 0;
    background: var(--pf-grad-primary, linear-gradient(135deg, #051c66, #072890, #0a3ab8));
    z-index: 0;
}

.pf-about-cta-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 80%, rgba(227,6,19,.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 20%, rgba(255,255,255,.05) 0%, transparent 40%);
}

.pf-about-cta .container { position: relative; z-index: 1; }

.pf-about-cta h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    margin-bottom: 14px;
    text-align: center;
}

.pf-about-cta .pf-cta-text {
    font-size: 17px;
    color: rgba(255,255,255,.8);
    max-width: 550px;
    margin: 0 auto 30px;
    line-height: 1.65;
    text-align: center;
}

.pf-about-cta-btns {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.pf-about-cta-wave-top {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    z-index: 2;
}

.pf-about-cta-wave-top svg {
    display: block;
    width: 100%;
    height: 60px;
}

/* ─── DARK MODE ────────────────────────────────────────────────────────── */
.sa-dark .pf-about-section { background: #0c0d1a; }
.sa-dark .pf-about-section--alt { background: #101120; }
.sa-dark .pf-who-heading,
.sa-dark .pf-mv-card h3,
.sa-dark .pf-value-card h4,
.sa-dark .pf-team-name { color: #e2e8f0; }
.sa-dark .pf-who-text,
.sa-dark .pf-mv-card p,
.sa-dark .pf-value-card p,
.sa-dark .pf-team-bio { color: #94a3b8; }
.sa-dark .pf-mv-card,
.sa-dark .pf-value-card,
.sa-dark .pf-team-card { background: #181930; border-color: rgba(255,255,255,.06); }
.sa-dark .pf-who-hl { color: #e2e8f0; }
.sa-dark .pf-who-hl i { background: rgba(7,40,144,.15); }
.sa-dark .pf-accred-item strong { color: #64748b; }
.sa-dark .pf-accred-item span { color: #e2e8f0; }
.sa-dark .pf-partner-logo { filter: grayscale(100%) opacity(.5) brightness(1.5); }
.sa-dark .pf-partner-logo:hover { filter: grayscale(0%) opacity(1) brightness(1); }
.sa-dark .pf-partner-name-badge { background: rgba(255,255,255,.06); color: #94a3b8; }
.sa-dark .pf-team-socials a { background: rgba(7,40,144,.15); }
.sa-dark .pf-value-icon { background: rgba(7,40,144,.12); }
.sa-dark .pf-team-title { color: #60a5fa; }
.sa-dark .pf-team-arrow { background: #1e1f3a; color: #e2e8f0; box-shadow: 0 4px 20px rgba(0,0,0,.3); }
.sa-dark .pf-team-arrow:hover { background: var(--app-them, #072890); color: #fff; }
.sa-dark .pf-team-slider .slick-dots li button { background: rgba(255,255,255,.12); }
.sa-dark .pf-team-slider .slick-dots li.slick-active button { background: var(--app-them, #072890); }

/* ─── RESPONSIVE ───────────────────────────────────────────────────────── */
@media (max-width: 992px) {
    .pf-about-hero { padding: 100px 0 70px; min-height: auto; }
    .pf-about-section { padding: 72px 0; }
    .pf-who-img-wrap img { height: 320px; }
    .pf-team-photo { height: 200px; }
    .pf-team-arrow--prev { left: -6px; }
    .pf-team-arrow--next { right: -6px; }
}

@media (max-width: 768px) {
    .pf-about-hero { padding: 90px 0 60px; }
    .pf-about-section { padding: 56px 0; }
    .pf-mv-card { padding: 28px 22px; }
    .pf-who-img-wrap img { height: 260px; }
    .pf-who-placeholder { height: 260px; }
    .pf-team-photo { height: 200px; }
    .pf-team-info { padding: 14px 16px 18px; }
    .pf-team-card { max-width: 260px; }
    .pf-impact-stats .pf-stat-value { font-size: 28px; }
    .pf-about-cta-btns { flex-direction: column; align-items: center; }
    .pf-team-slider { margin: 0 -8px; }
    .pf-team-slide { padding: 0 8px; }
}

@media (max-width: 576px) {
    .pf-about-hero { padding: 80px 0 50px; }
    .pf-about-section { padding: 48px 0; }
    .pf-value-card { padding: 22px 18px; }
    .pf-who-badge { bottom: 10px; right: 10px; padding: 12px 16px; }
    .pf-who-badge-year { font-size: 22px; }
    .pf-accred-visual { padding: 28px 20px; }
    .pf-accred-type { font-size: 16px; }
    .pf-team-photo { height: 220px; }
    .pf-team-card { max-width: none; }
}
