/* About Us — navy / red / white theme (scoped) */
.about-page {
    --ab-navy: #13294b;
    --ab-navy-soft: #1a3560;
    --ab-navy-dark: #0b1b33;
    --ab-red: #dc3545;
    --ab-red-soft: #e84555;
    --ab-white: #ffffff;
    --ab-bg: #f4f7fb;
    --ab-border: rgba(19, 41, 75, 0.1);
    --ab-muted: #5c6b82;
    --ab-shadow: 0 12px 40px rgba(19, 41, 75, 0.08);
    --ab-shadow-lg: 0 20px 50px rgba(19, 41, 75, 0.12);
    --ab-radius: 16px;
    --ab-radius-lg: 24px;
}

.about-page .page-banner::after {
    display: none;
}

.about-page .page-banner .banner-content {
    position: relative;
    z-index: 1;
}

.about-page .page-banner h2 {
    font-weight: 700;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

/* —— Overview —— */
.about-page__overview {
    background: var(--ab-bg);
    position: relative;
    overflow: hidden;
}

.about-page__overview::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(220, 53, 69, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.about-page__overview-inner {
    padding: clamp(3rem, 6vw, 5rem) 0;
}

.about-page__section-title {
    color: var(--ab-navy);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.about-page__lead {
    color: var(--ab-muted);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 54ch;
}

.about-page__features {
    margin-top: 1.75rem;
}

.about-page__feature {
    background: var(--ab-white);
    border: 1px solid var(--ab-border);
    border-radius: var(--ab-radius);
    padding: 1.25rem 1.35rem;
    height: 100%;
    box-shadow: var(--ab-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    border-left: 4px solid var(--ab-red);
}

.about-page__feature:hover {
    transform: translateY(-3px);
    box-shadow: var(--ab-shadow-lg);
    border-left-color: var(--ab-navy);
}

.about-page__feature-head {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.65rem;
}

.about-page__feature-head i,
.about-page__feature-head .sp-icon-btn i {
    color: var(--ab-red);
    font-size: 1.35rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.about-page__feature-head h5 {
    color: var(--ab-navy);
    font-weight: 700;
    font-size: 1rem;
    margin: 0;
    line-height: 1.35;
}

.about-page__feature p {
    color: var(--ab-muted);
    font-size: 0.925rem;
    line-height: 1.65;
    margin: 0;
}

.about-page__visual {
    position: relative;
}

.about-page__visual-frame {
    border-radius: var(--ab-radius-lg);
    overflow: hidden;
    box-shadow: var(--ab-shadow-lg);
    border: 4px solid var(--ab-white);
}

.about-page__visual-frame img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-page__experience {
    position: absolute;
    bottom: 1.25rem;
    right: 1.25rem;
    background: var(--ab-white);
    border-radius: var(--ab-radius);
    padding: 1rem 1.25rem;
    box-shadow: var(--ab-shadow-lg);
    border: 1px solid var(--ab-border);
    min-width: 140px;
    text-align: center;
}

.about-page__experience-num {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.1rem;
    color: var(--ab-navy);
    font-weight: 800;
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 0.35rem;
}

.about-page__experience-num span:first-child {
    color: var(--ab-red);
}

.about-page__experience-label {
    color: var(--ab-muted);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0;
}

/* —— Mission & Vision —— */
.about-page__mission {
    background: var(--ab-white);
    padding: clamp(3rem, 6vw, 5rem) 0;
}

.about-page__mission-title {
    color: var(--ab-navy);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-page__mission-block + .about-page__mission-block {
    margin-top: 1.5rem;
}

.about-page__subtitle {
    color: var(--ab-red);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.about-page__mission-block p {
    color: var(--ab-muted);
    line-height: 1.75;
    margin: 0;
}

.about-page__values-list {
    margin-top: 1.25rem;
}

.about-page__value-item {
    background: var(--ab-bg);
    border-radius: 12px;
    padding: 0.85rem 1rem;
    border: 1px solid var(--ab-border);
}

.about-page__value-item i {
    color: var(--ab-red);
    font-size: 1.1rem;
    margin-top: 0.15rem;
}

.about-page__value-item strong {
    color: var(--ab-navy);
}

.about-page__mission-image {
    border-radius: var(--ab-radius-lg);
    overflow: hidden;
    box-shadow: var(--ab-shadow-lg);
    position: relative;
}

.about-page__mission-image::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 3px solid rgba(255, 255, 255, 0.85);
    border-radius: inherit;
    pointer-events: none;
}

.about-page__mission-image img {
    width: 100%;
    display: block;
    object-fit: cover;
    min-height: 280px;
}

/* —— Project support —— */
.about-page__project-support {
    background: var(--ab-bg);
    padding: clamp(3rem, 5vw, 4rem) 0;
}

.about-page__project-support-title {
    color: var(--ab-navy);
    font-weight: 700;
    font-size: clamp(1.35rem, 2.8vw, 1.85rem);
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.about-page__support-card {
    background: var(--ab-white);
    border: 1px solid var(--ab-border);
    border-radius: var(--ab-radius);
    padding: 1.5rem 1.25rem;
    height: 100%;
    text-align: center;
    box-shadow: var(--ab-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.about-page__support-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--ab-shadow-lg);
    border-color: rgba(19, 41, 75, 0.18);
}

.about-page__support-icon {
    margin-bottom: 1rem;
    line-height: 1;
}

.about-page__support-icon i,
.about-page__support-icon .sp-icon-btn i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    color: var(--ab-red);
}

.about-page__support-icon .sp-icon-btn {
    padding: 0;
    border: 0;
    background: transparent;
    line-height: 1;
}

.about-page__support-card h5 {
    color: var(--ab-navy);
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.35;
    margin-bottom: 0.65rem;
}

.about-page__support-card p {
    color: var(--ab-muted);
    font-size: 0.875rem;
    line-height: 1.55;
    margin: 0;
}

.about-page .sp-card-toolbar--stat {
    top: 0.35rem;
    right: 0.35rem;
}

body.sp-edit-mode .about-page__support-card {
    padding-top: 2rem;
}

/* —— Stats band (legacy) —— */
.about-page__stats {
    background: linear-gradient(135deg, var(--ab-navy-dark) 0%, var(--ab-navy) 50%, var(--ab-navy-soft) 100%);
    padding: clamp(2.5rem, 5vw, 3.5rem) 0;
    position: relative;
    overflow: hidden;
}

.about-page__stats::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.about-page__stats-title {
    color: var(--ab-white);
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.about-page__stat-card {
    text-align: center;
    padding: 1rem 0.5rem;
    position: relative;
    z-index: 1;
}

.about-page__stat-num {
    color: var(--ab-white);
    font-weight: 800;
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.about-page__stat-num span:first-child {
    color: var(--ab-red-soft);
}

.about-page__stat-label {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.45;
}

/* —— Team —— */
.about-page__team {
    background: var(--ab-bg);
    padding: clamp(3rem, 6vw, 4rem) 0;
}

.about-page__team-title {
    color: var(--ab-navy);
    font-weight: 700;
    margin-bottom: 2rem;
}

.about-page__team-card {
    background: var(--ab-white);
    border: 1px solid var(--ab-border);
    border-radius: var(--ab-radius);
    padding: 1.75rem 1.25rem;
    height: 100%;
    box-shadow: var(--ab-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-page__team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ab-shadow-lg);
}

.about-page__team-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 3px solid var(--ab-red);
    box-shadow: 0 4px 16px rgba(220, 53, 69, 0.2);
}

.about-page__team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-page__team-card h5 {
    color: var(--ab-navy);
    font-weight: 700;
}

.about-page__team-role {
    color: var(--ab-red) !important;
    font-weight: 600;
}

/* —— Info cards (corporate + financial) —— */
.about-page__info-section {
    background: var(--ab-white);
    padding: clamp(3rem, 6vw, 5rem) 0;
}

.about-page__info-card {
    background: var(--ab-white);
    border: 1px solid var(--ab-border);
    border-radius: var(--ab-radius-lg);
    overflow: hidden;
    height: 100%;
    box-shadow: var(--ab-shadow);
    display: flex;
    flex-direction: column;
}

.about-page__info-card-head {
    position: relative;
    overflow: hidden;
    max-height: 220px;
}

.about-page__info-card-head img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.about-page__info-card-head::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(19, 41, 75, 0.75) 0%, transparent 55%);
    pointer-events: none;
}

.about-page__info-card-body {
    padding: 1.5rem 1.5rem 1.75rem;
    flex: 1;
}

.about-page__info-card-title {
    color: var(--ab-navy);
    font-weight: 700;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--ab-red);
    display: inline-block;
}

.about-page__info-row {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--ab-border);
}

.about-page__info-row:last-child {
    border-bottom: none;
}

.about-page__info-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(19, 41, 75, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-page__info-icon i {
    color: var(--ab-red);
    font-size: 1.1rem;
}

.about-page__info-icon .sp-icon-btn {
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    border-radius: inherit;
}

.about-page__info-icon .sp-icon-btn i {
    margin: 0;
}

.about-page__info-label {
    color: var(--ab-navy);
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
}

.about-page__info-value {
    color: var(--ab-muted);
    font-size: 0.875rem;
    line-height: 1.5;
}

/* —— Responsive —— */
@media (max-width: 991.98px) {
    .about-page__visual {
        margin-top: 2rem;
    }

    .about-page__experience {
        position: static;
        margin: 1rem auto 0;
        max-width: 200px;
    }

    .about-page__mission-image {
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    .about-page__stat-card {
        padding: 0.75rem;
    }

    .about-page__info-card-head img {
        height: 180px;
    }

    .about-page__feature {
        padding: 1rem;
    }
}

@media (max-width: 575.98px) {
    .about-page__experience-num {
        font-size: 1.65rem;
    }
}

/* Edit mode: preserve controls */
.about-page .sp-item-hide,
.about-page .sp-item-delete,
.about-page .sp-section-hide {
    z-index: 10;
}
