/* ========================================
   About – Flat 2.0
   ======================================== */

.about {
    background: var(--color-white);
}

/* Geometric accents */
.about-geo {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.about-geo--circle {
    width: 260px;
    height: 260px;
    border: 2px solid rgba(27, 79, 149, 0.05);
    border-radius: 50%;
    bottom: -60px;
    left: -80px;
}

.about-geo--square {
    width: 60px;
    height: 60px;
    background: rgba(27, 79, 149, 0.04);
    border-radius: 6px;
    transform: rotate(12deg);
    top: 80px;
    right: 6%;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.about-description {
    font-size: var(--font-size-sm);
    color: var(--color-silver-600);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

/* Inline stats strip */
.about-stats {
    display: flex;
    gap: 0;
    background: var(--color-white);
    border: var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.about-stat {
    flex: 1;
    text-align: center;
    padding: 1rem 0.5rem;
    border-right: 1px solid var(--color-silver-100);
}

.about-stat:last-child {
    border-right: none;
}

.about-stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--font-size-xl);
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.2;
}

.about-stat-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--color-silver-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 2px;
}

/* Compact highlights */
.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.about-highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 0.75rem;
    background: var(--color-silver-50);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.about-highlight:hover {
    background: var(--color-silver-100);
}

.about-highlight i {
    color: var(--color-primary);
    flex-shrink: 0;
}

.about-highlight span {
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: var(--color-dark);
}

/* Visual */
.about-visual {
    position: sticky;
    top: 80px;
}

.about-image-card {
    border-radius: var(--radius-2xl);
    overflow: visible;
    position: relative;
}

.about-image-accent {
    position: absolute;
    top: 10px;
    right: -10px;
    bottom: -10px;
    left: 10px;
    background: rgba(27, 79, 149, 0.06);
    border-radius: var(--radius-2xl);
    z-index: 0;
    pointer-events: none;
}

.about-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: var(--radius-2xl);
    position: relative;
    z-index: 1;
}

.about-image-placeholder {
    width: 100%;
    height: 280px;
    border-radius: var(--radius-2xl);
    background: var(--color-silver-50);
    border: 2px dashed var(--color-silver-200);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--color-silver-400);
    position: relative;
    z-index: 1;
}

.about-image-placeholder span {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-silver-400);
}

.about-leadership {
    background: var(--color-white);
    border: var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    padding: 1.25rem;
    margin-top: 1.25rem;
}

.about-leadership h3 {
    font-size: var(--font-size-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-silver-500);
    margin-bottom: 0.75rem;
}

.about-leader {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 0.5rem;
}

.about-leader:last-child { margin-bottom: 0; }

.leader-avatar {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-md);
    background: var(--color-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}

.leader-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.leader-avatar-fallback {
    display: none;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
}

.leader-avatar.no-photo {
    background: rgba(27, 79, 149, 0.08);
}

.leader-avatar.no-photo .leader-avatar-fallback {
    display: flex;
    color: var(--color-primary);
}

.about-leader strong {
    display: block;
    font-size: var(--font-size-sm);
    color: var(--color-dark);
}

.about-leader span {
    font-size: var(--font-size-xs);
    color: var(--color-silver-600);
}

/* Responsive */
@media (max-width: 1024px) {
    .about-geo { display: none; }
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .about-visual { position: static; }
    .about-content .section-title { text-align: center !important; }
    .about-content { text-align: center; }
    .about-highlights { text-align: left; }
    .about-image { height: 260px; }
}

@media (max-width: 768px) {
    .about-stats { flex-wrap: wrap; }
    .about-stat { min-width: calc(50% - 1px); }
    .about-stat:nth-child(1),
    .about-stat:nth-child(2) { border-bottom: 1px solid var(--color-silver-100); }
    .about-highlights { grid-template-columns: 1fr 1fr; gap: 0.375rem; }
    .about-image { height: 220px; }
}

@media (max-width: 480px) {
    .about-highlights { grid-template-columns: 1fr; }
    .about-highlight { padding: 0.5rem 0.625rem; }
    .about-image { height: 180px; }
    .about-image-accent { display: none; }
}
