/* =============================================
   ABOUT PAGE - REFONTE STYLES
   ============================================= */

/* Hero */
.about-hero {

    +. .3+.3++3.........+3. display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 140px 48px 60px;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-hero .hero-tag {
    display: inline-block;
    padding: 8px 16px;
    border-radius: var(--Radius-radius-16, 16px);
    background: linear-gradient(180deg, rgba(101, 120, 49, 0.80) 0%, rgba(101, 120, 49, 0.20) 100%);
    backdrop-filter: blur(10px);
    font-size: 14px;
    font-weight: 400;
    color: #E6FFA3;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-hero h1 {
    font-size: 48px;
    font-weight: 500;
    line-height: 54px;
    color: #003329;
    margin: 0;
}

.about-hero h1 .highlight {
    color: #EC674E;
}

.about-hero p {
    font-size: 18px;
    line-height: 28px;
    color: #181D27;
    max-width: 600px;
    margin: 0;
}

/* =============================================
   STORY SECTION
   ============================================= */
.about-story {
    display: flex;
    align-items: center;
    gap: 64px;
    padding: 80px 80px;
    max-width: 1280px;
    margin: 0 auto;
}

.about-story-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-story-content h2 {
    font-size: 36px;
    font-weight: 500;
    color: #003329;
    margin: 0;
    line-height: 42px;
}

.about-story-content p {
    font-size: 16px;
    line-height: 26px;
    color: #3B3B3B;
    margin: 0;
}

.about-story-content p strong {
    color: #003329;
    font-weight: 500;
}

.about-story-image {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
}

.about-story-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

/* =============================================
   STATS SECTION
   ============================================= */
.about-stats {
    background: #EFF3F2;
    padding: 80px;
}

.about-stats-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.about-stats-inner h2 {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #003329;
    margin: 0;
}

.stats-grid {
    display: flex;
    gap: 32px;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-card {
    flex: 1 1 280px;
    max-width: 400px;
    background: white;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.stat-card .stat-number {
    font-size: 48px;
    font-weight: 600;
    color: #EC674E;
    line-height: 1;
}

.stat-card .stat-label {
    font-size: 16px;
    color: #3B3B3B;
    line-height: 24px;
}

/* =============================================
   TEAM SECTION
   ============================================= */
.about-team {
    padding: 80px;
    max-width: 1280px;
    margin: 0 auto;
}

.about-team-header {
    text-align: center;
    margin-bottom: 48px;
}

.about-team-header h2 {
    font-size: 36px;
    font-weight: 500;
    color: #003329;
    margin: 0;
}

.team-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.team-card {
    flex: 1 1 220px;
    max-width: 280px;
    background: white;
    border-radius: 16px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    border: 1px solid #EAECF0;
    transition: transform 0.2s, box-shadow 0.2s;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.team-card img.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.team-card img.team-school {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.team-card .team-name {
    font-size: 18px;
    font-weight: 500;
    color: #003329;
    text-align: center;
}

.team-card .team-role {
    font-size: 14px;
    color: #6B7280;
    text-align: center;
    line-height: 20px;
}

.team-card a {
    display: inline-flex;
}

.team-card a img {
    width: 32px;
    height: 32px;
    transition: transform 0.2s;
}

.team-card a img:hover {
    transform: scale(1.15);
}

/* =============================================
   VALUES SECTION
   ============================================= */
.about-values {
    background: #EFF3F2;
    padding: 80px;
}

.about-values-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.about-values-inner h2 {
    font-size: 36px;
    font-weight: 500;
    color: #003329;
    margin: 0;
}

.values-grid {
    display: flex;
    gap: 32px;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}

.value-card {
    flex: 1 1 300px;
    max-width: 400px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #EAECF0;
    transition: transform 0.2s;
}

.value-card:hover {
    transform: translateY(-4px);
}

.value-card .value-icon {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.value-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.value-card-content h3 {
    font-size: 20px;
    font-weight: 500;
    color: #003329;
    margin: 0;
}

.value-card-content p {
    font-size: 15px;
    line-height: 24px;
    color: #3B3B3B;
    margin: 0;
}

/* =============================================
   WHY ORKI - FEATURES SECTION
   ============================================= */
.why-features {
    padding: 80px;
    max-width: 1280px;
    margin: 0 auto;
}

.why-features-header {
    text-align: center;
    margin-bottom: 64px;
}

.why-features-header h2 {
    font-size: 36px;
    font-weight: 500;
    color: #003329;
    margin: 0;
}

.why-features-header h2 .highlight {
    color: #EC674E;
}

.features-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-card {
    flex: 1 1 300px;
    max-width: 400px;
    background: #EFF3F2;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-card .feature-icon-wrapper {
    width: 48px;
    height: 48px;
    background: #003329;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card .feature-icon-wrapper svg {
    width: 24px;
    height: 24px;
    fill: white;
    color: white;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 500;
    color: #003329;
    margin: 0;
}

.feature-card p {
    font-size: 15px;
    line-height: 24px;
    color: #3B3B3B;
    margin: 0;
}

/* =============================================
   CHECKLIST SECTION (WHY PAGE)
   ============================================= */
.about-checklist-section {
    padding: 80px;
    background: #EFF3F2;
}

.about-checklist-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 64px;
}

.about-checklist-inner.reverse {
    flex-direction: row-reverse;
}

.about-checklist-image {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
}

.about-checklist-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.about-checklist-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-checklist-content h2 {
    font-size: 32px;
    font-weight: 500;
    color: #003329;
    margin: 0;
    line-height: 38px;
}

.about-checklist {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-check-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    line-height: 26px;
    color: #3B3B3B;
}

.about-check-item .check-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: #003329;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.about-check-item .check-icon svg {
    width: 14px;
    height: 14px;
    fill: white;
    color: white;
}

.about-checklist-cta {
    margin-top: 16px;
}

.about-checklist-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #003329;
    color: #E6FFA3;
    border-radius: 100px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: background 0.2s, transform 0.2s;
}

.about-checklist-cta a:hover {
    background: #004d3d;
    transform: translateY(-1px);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .about-story {
        flex-direction: column;
        padding: 60px 40px;
        gap: 40px;
    }

    .about-checklist-inner,
    .about-checklist-inner.reverse {
        flex-direction: column;
    }

    .about-stats,
    .about-values,
    .about-checklist-section {
        padding: 60px 40px;
    }

    .about-team {
        padding: 60px 40px;
    }

    .why-features {
        padding: 60px 40px;
    }
}

@media (max-width: 640px) {
    .about-hero {
        padding: 60px 20px 40px;
    }

    .about-hero h1 {
        font-size: 32px;
        line-height: 38px;
    }

    .about-story {
        padding: 40px 20px;
        gap: 32px;
    }

    .about-story-content h2 {
        font-size: 28px;
        line-height: 34px;
    }

    .about-stats,
    .about-values,
    .about-checklist-section {
        padding: 40px 20px;
    }

    .about-team {
        padding: 40px 20px;
    }

    .why-features {
        padding: 40px 20px;
    }

    .stat-card .stat-number {
        font-size: 36px;
    }

    .team-card {
        flex: 1 1 140px;
        max-width: 100%;
    }

    .about-team-header h2,
    .about-values-inner h2,
    .why-features-header h2 {
        font-size: 28px;
    }

    .about-checklist-content h2 {
        font-size: 24px;
        line-height: 30px;
    }
}