/* ===== ABOUT PAGE ===== */

/* Hero */
.about-hero {
    padding: 80px 40px 60px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fc 0%, #eef1f8 100%);
    border-bottom: 1px solid #e8ecf4;
}

.about-hero-inner {
    max-width: 720px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #2b2d42;
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-accent {
    color: #ef8354;
}

.about-lead {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.75;
    max-width: 620px;
    margin: 0 auto;
}

/* Sections */
.about-section {
    padding: 70px 40px;
}

.about-section-alt {
    background: #f8f9fc;
    border-top: 1px solid #e8ecf4;
    border-bottom: 1px solid #e8ecf4;
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
}

.about-section h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2b2d42;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-section h2 i,
.about-section h2 svg {
    color: #ef8354;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Problem cards */
.problem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.problem-card {
    background: white;
    border: 1px solid #e8ecf4;
    border-radius: 14px;
    padding: 28px 32px;
}

.problem-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2b2d42;
    margin-bottom: 10px;
}

.problem-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.75;
}

/* Approach cards */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.approach-card {
    background: white;
    border: 1px solid #e8ecf4;
    border-radius: 14px;
    padding: 28px 30px;
}

.approach-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #fff3ee;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.approach-icon i,
.approach-icon svg {
    color: #ef8354;
    width: 22px;
    height: 22px;
}

.approach-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #2b2d42;
    margin-bottom: 10px;
}

.approach-card p {
    font-size: 0.93rem;
    color: #555;
    line-height: 1.7;
}

/* Vision */
.about-vision p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
}

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

/* CTA */
.about-cta {
    padding: 70px 40px;
    text-align: center;
    background: linear-gradient(135deg, #2b2d42 0%, #3a3d56 100%);
    color: white;
}

.about-cta h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-cta p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 28px;
}

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

.btn-cta-primary,
.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: transform 0.15s, box-shadow 0.15s;
}

.btn-cta-primary {
    background: #ef8354;
    color: white;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 131, 84, 0.35);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-cta-primary i,
.btn-cta-primary svg,
.btn-cta-secondary i,
.btn-cta-secondary svg {
    width: 18px;
    height: 18px;
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero {
        padding: 60px 20px 40px;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .about-lead {
        font-size: 1rem;
    }

    .about-section {
        padding: 50px 20px;
    }

    .approach-grid {
        grid-template-columns: 1fr;
    }

    .about-cta {
        padding: 50px 20px;
    }

    .about-cta h2 {
        font-size: 1.4rem;
    }
}
