.about-hero-modern {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

.about-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-hero-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    color: #0a0a0a;
    margin-bottom: 28px;
    letter-spacing: -0.03em;
}

.highlight-text {
    color: #66B044;
}

.about-hero-description {
    font-size: 20px;
    line-height: 1.7;
    color: #525252;
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   MISSION SECTION
   ============================================ */
.about-mission-section {
    padding: 100px 0;
    background: white;
}

.mission-grid-modern {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.mission-title-modern {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    color: #0a0a0a;
    margin-bottom: 28px;
}

.mission-text-modern {
    font-size: 17px;
    line-height: 1.8;
    color: #525252;
    margin-bottom: 20px;
}

.mission-stats-modern {
    display: grid;
    gap: 24px;
}

.stat-box-modern {
    padding: 32px;
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-box-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: #66B044;
}

.stat-icon-circle {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #66B044 0%, #15803d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
}

.stat-value-modern {
    font-size: 48px;
    font-weight: 800;
    color: #0a0a0a;
    margin-bottom: 8px;
}

.stat-label-modern {
    font-size: 15px;
    color: #737373;
}

/* ============================================
   VALUES SECTION
   ============================================ */
.values-section-modern {
    padding: 100px 0;
    background: #fafafa;
}

.section-header-modern {
    text-align: center;
    margin-bottom: 64px;
}

.section-title-modern {
    font-size: 52px;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 16px;
}

.section-subtitle-modern {
    font-size: 18px;
    color: #737373;
}

.values-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.value-card-modern {
    padding: 40px 32px;
    background: white;
    border-radius: 24px;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.value-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: #66B044;
}

.value-icon-modern {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #66B044 0%, #15803d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: white;
}

.value-card-modern h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 16px;
}

.value-card-modern p {
    font-size: 15px;
    line-height: 1.7;
    color: #525252;
}

/* ============================================
   STORY SECTION
   ============================================ */
.story-section-modern {
    padding: 100px 0;
    background: white;
}

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

.story-title-modern {
    font-size: 52px;
    font-weight: 700;
    color: #0a0a0a;
    text-align: center;
    margin-bottom: 48px;
}

.story-content-modern p {
    font-size: 18px;
    line-height: 1.8;
    color: #525252;
    margin-bottom: 24px;
}

.story-highlight-box {
    margin-top: 48px;
    padding: 40px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 24px;
    border: 2px solid #66B044;
    display: flex;
    gap: 24px;
    align-items: center;
}

.highlight-icon-circle {
    width: 64px;
    height: 64px;
    background: #66B044;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.highlight-text-modern {
    font-size: 20px;
    font-weight: 600;
    color: #0a0a0a;
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   CTA SECTION
   ============================================ */
.about-cta-section {
    padding: 100px 0;
    background: #0a0a0a;
}

.cta-content-modern {
    text-align: center;
}

.cta-title-modern {
    font-size: 52px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.cta-subtitle-modern {
    font-size: 18px;
    color: #a3a3a3;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-btn-primary,
.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.cta-btn-primary:hover {
    background: #15803d;
    transform: translateX(4px);
}

.cta-btn-secondary {
    background: white;
    color: #0a0a0a;
}

.cta-btn-secondary:hover {
    background: #fafafa;
    transform: translateX(4px);
}

.btn-arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.cta-btn-primary:hover .btn-arrow,
.cta-btn-secondary:hover .btn-arrow {
    transform: translateX(4px);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .mission-grid-modern {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .values-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero-title {
        font-size: 48px;
    }

    .about-hero-description {
        font-size: 17px;
    }

    .mission-title-modern,
    .section-title-modern,
    .story-title-modern,
    .cta-title-modern {
        font-size: 36px;
    }

    .values-grid-modern {
        grid-template-columns: 1fr;
    }

    .story-highlight-box {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }

    .cta-buttons-modern {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}