/* ── About Page Styles ── */

/* Section divider (line + diamond ornament) */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 44px;
    max-width: 160px;
}
.section-divider span {
    flex: 1;
    height: 1px;
    background: #ddd;
}
.section-divider i {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #fc4c69;
    transform: rotate(45deg);
    margin: 0 10px;
    flex-shrink: 0;
}

/* 1. Hero */
.about-hero {
    background-color: #f5edde;
    color: black;
    text-align: center;
    padding: 100px 10% 80px;
}
.about-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.15;
}
.about-hero p {
    font-size: 1.15rem;
    max-width: 640px;
    margin: 0 auto;
    opacity: 0.92;
    line-height: 1.75;
}

/* 2. Mission */
.about-mission {
    background-color: white;
    padding: 80px 10%;
    text-align: center;
}
.about-mission h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #33010A;
    margin-bottom: 12px;
}
.about-mission .mission-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.about-mission .mission-text p {
    font-size: 1.02rem;
    color: #555;
    line-height: 1.85;
}
.about-mission .mission-text p + p {
    margin-top: 16px;
}

/* 3. Values */
.about-values {
    background-color: #f5edde;
    padding: 80px 10%;
    text-align: center;
}
.about-values h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #33010A;
    margin-bottom: 12px;
}
.about-values .values-row {
    display: flex;
    justify-content: center;
    gap: 48px;
    max-width: 960px;
    margin: 0 auto;
}
.about-values .values-row-bottom {
    margin-top: 48px;
}
.about-values .value-card {
    flex: 0 0 240px;
    max-width: 240px;
}
.about-values .value-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
}
.about-values .value-icon svg {
    width: 100%;
    height: 100%;
}
.about-values .value-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #33010A;
    margin-bottom: 10px;
}
.about-values .value-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
}

/* 4. Vision */
.about-vision {
    background-color: #fff;
    padding: 80px 10%;
    text-align: center;
    border-top: 1px solid #f0e8d8;
    border-bottom: 1px solid #f0e8d8;
}
.about-vision h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #33010A;
    margin-bottom: 12px;
}
.about-vision p {
    font-size: 1.05rem;
    color: #555;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.85;
}

/* 5. Team */
.about-team {
    background-color: white;
    padding: 80px 10%;
    text-align: center;
}
.about-team h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #33010A;
    margin-bottom: 12px;
}
.about-team .team-grid {
    display: flex;
    gap: 48px;
    justify-content: center;
    flex-wrap: nowrap;
    max-width: 900px;
    margin: 0 auto;
}
.about-team .team-card {
    background: white;
    border-radius: 4px;
    padding: 36px 28px 28px;
    width: 220px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.about-team .avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background-color: #ddd;
    margin: 0 auto 18px;
    overflow: hidden;
}
.about-team .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about-team .team-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #33010A;
    margin-bottom: 4px;
}
.about-team .team-card .team-title {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 16px;
}
.about-team .team-card .team-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fc4c69;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.about-team .team-card .team-link:hover {
    text-decoration: underline;
}

/* 6. Stats — .metrics class from landing.css handles this */

/* 7. Trusted By — .companies-section from landing.css */

/* 8. CTA */
.about-cta {
    background: linear-gradient(135deg, #33010A 0%, #5a0217 100%);
    color: white;
    text-align: center;
    padding: 100px 10%;
    position: relative;
    overflow: hidden;
}
.about-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(255,255,255,0.015) 0px,
        rgba(255,255,255,0.015) 1px,
        transparent 1px,
        transparent 12px
    );
}
.about-cta .cta-label {
    position: relative;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 18px;
}
.about-cta h2 {
    position: relative;
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}
.about-cta p {
    position: relative;
    font-size: 1rem;
    max-width: 580px;
    margin: 0 auto 36px;
    opacity: 0.78;
    line-height: 1.8;
}
.about-cta .btn-cta {
    position: relative;
    display: inline-block;
    background: #fc4c69;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    padding: 14px 36px;
    border-radius: 4px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.2s ease, transform 0.2s ease;
}
.about-cta .btn-cta:hover {
    background: #e03356;
    transform: translateY(-2px);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .about-team .team-grid {
        flex-wrap: wrap;
        gap: 32px;
    }
    .about-team .team-card {
        width: calc(50% - 16px);
    }
}

@media (max-width: 768px) {
    .about-hero { padding: 80px 6% 64px; }
    .about-hero h1 { font-size: 2.2rem; }
    .about-hero p { font-size: 1rem; }

    .about-mission { padding: 60px 6%; }

    .about-values { padding: 60px 6%; }
    .about-values .values-row {
        flex-wrap: wrap;
        gap: 32px;
    }
    .about-values .values-row-bottom { margin-top: 32px; }
    .about-values .value-card { flex: 1 1 180px; max-width: 260px; }

    .about-team { padding: 60px 6%; }

    .about-cta { padding: 80px 6%; }
    .about-cta h2 { font-size: 1.9rem; }
}

@media (max-width: 480px) {
    .about-hero h1 { font-size: 1.8rem; }

    .about-values .values-row {
        flex-direction: column;
        align-items: center;
    }
    .about-values .value-card { max-width: 100%; width: 100%; flex: unset; }

    .about-team .team-grid { gap: 24px; }
    .about-team .team-card { width: 100%; }

    .about-cta h2 { font-size: 1.5rem; }
}
