/* ============================================================
   ABOUT US PAGE — assets/css/about.css
   ============================================================ */

.fgh-about-page {
    padding: 0 0 var(--space-12) 0;
}

/* ---- Hero Section ---- */
.about-hero {
    background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-subtle) 100%);
    border-bottom: 1px solid var(--border-light);
    padding: var(--space-16) 0 var(--space-12);
    text-align: center;
}

.about-hero-inner {
    max-width: 800px;
    margin: 0 auto;
}

.about-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: var(--space-8);
    letter-spacing: -0.02em;
}

.about-hero-title span {
    color: var(--color-primary);
}

.about-mission {
    background: var(--bg-base);
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--color-primary);
    border-radius: var(--radius-lg);
    padding: var(--space-6) var(--space-8);
    text-align: left;
    box-shadow: var(--shadow-sm);
}

.mission-lead {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: var(--space-3);
}

.about-mission p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-4);
}

.about-mission p:last-child {
    margin-bottom: 0;
}

/* ---- Ecosystem Section ---- */
.about-ecosystem {
    padding: var(--space-12) 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--space-3);
    text-align: center;
}

.section-subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-10);
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-6);
}

.eco-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    text-decoration: none;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
    display: flex;
    flex-direction: column;
}

.eco-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0,87,255,0.3);
    text-decoration: none;
}

.eco-icon {
    font-size: 2rem;
    margin-bottom: var(--space-4);
    background: rgba(0,87,255,0.06);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
}

.eco-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-3);
}

.eco-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ---- Trust / E-E-A-T Section ---- */
.about-trust {
    padding: var(--space-12) 0;
    background: var(--bg-surface);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.trust-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
    align-items: center;
}

.trust-content .section-title {
    text-align: left;
}

.trust-content > p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-6);
    line-height: 1.6;
}

.trust-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

.trust-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
}

.trust-list svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-success);
    flex-shrink: 0;
    margin-top: 2px;
}

.trust-list strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.trust-list span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.trust-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
}

.shield-icon {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, rgba(0,87,255,0.08) 0%, rgba(0,212,160,0.08) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.shield-icon svg {
    width: 120px;
    height: 120px;
}

/* ---- CTA Section ---- */
.about-cta {
    padding: var(--space-12) 0;
}

.cta-box {
    background: linear-gradient(135deg, #0a0a2e 0%, #1a1060 100%);
    border-radius: var(--radius-xl);
    padding: var(--space-10) var(--space-6);
    text-align: center;
    color: #fff;
    box-shadow: var(--shadow-lg);
}

.cta-box h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: var(--space-4);
}

.cta-box p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    max-width: 750px;
    margin: 0 auto var(--space-6);
    line-height: 1.7;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
    border-radius: var(--radius-full);
}

/* ---- Responsive Adjustments ---- */
@media (max-width: 768px) {
    .about-hero { padding: var(--space-10) 0; }
    .about-mission { padding: var(--space-5); }
    .trust-inner { grid-template-columns: 1fr; gap: var(--space-8); text-align: center; }
    .trust-content .section-title { text-align: center; }
    .trust-list li { text-align: left; }
    .trust-graphic { order: -1; }
    .shield-icon { width: 180px; height: 180px; }
    .shield-icon svg { width: 80px; height: 80px; }
    .cta-box { padding: var(--space-8) var(--space-5); }
    .cta-box h2 { font-size: 1.6rem; }
}