/* About Page Specific Styles */
.about-main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Typography-Focused Hero */
.about-hero {
    padding: 40px 20px 80px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.about-hero .container {
    max-width: 900px;
}
.brand-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--bg-accent);
    color: var(--primary);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid var(--border-color);
}
.about-hero h1 {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
    color: var(--text-main);
}
.about-hero p {
    font-size: 22px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 40px auto;
}
.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
}
.hero-ctas .btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-color);
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.hero-ctas .btn-secondary:hover {
    background: var(--bg-accent);
}

/* Our Story */
.about-story {
    padding: 80px 20px;
    background: white;
}
.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.story-content h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--text-main);
}
.story-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Mission & Vision */
.about-mission-vision {
    padding: 100px 20px;
    background: var(--bg-accent);
}
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}
.mv-card {
    background: white;
    padding: 48px;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    box-shadow: 0 12px 24px rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}
.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}
.mission-card::before { background: var(--primary); }
.vision-card::before { background: var(--secondary); }
.mv-icon {
    font-size: 40px;
    margin-bottom: 24px;
}
.mv-card h2 {
    font-size: 28px;
    margin-bottom: 16px;
}
.mv-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Section Header (Shared) */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px auto;
}
.section-header h2 {
    font-size: 40px;
    letter-spacing: -1px;
    margin-bottom: 16px;
    color: var(--text-main);
}
.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Core Values & What We Build Grid */
.about-values, .about-features, .about-why {
    padding: 100px 20px;
}
.about-features { background: var(--bg-accent); }
.values-grid, .features-grid, .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.value-card, .feature-item, .why-card {
    background: white;
    padding: 40px 32px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 16px rgba(0,0,0,0.02);
    transition: transform 0.3s ease;
}
.about-values .value-card { background: var(--bg-accent); border: none; }
.value-card:hover, .feature-item:hover, .why-card:hover {
    transform: translateY(-4px);
}
.icon-wrapper, .f-icon {
    font-size: 40px;
    margin-bottom: 20px;
}
.value-card h3, .feature-item h3, .why-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-main);
}
.value-card p, .feature-item p, .why-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Journey Timeline */
.about-timeline {
    padding: 100px 20px;
    background: var(--bg-accent);
}
.timeline-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    padding-left: 32px;
    border-left: 2px solid var(--border-color);
}
.timeline-item {
    position: relative;
    margin-bottom: 48px;
}
.timeline-item:last-child {
    margin-bottom: 0;
}
.timeline-dot {
    position: absolute;
    left: -41px;
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: white;
    border: 4px solid var(--primary);
}
.timeline-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-main);
}
.timeline-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* FAQ Accordion */
.about-faq {
    padding: 100px 20px;
    background: white;
}
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--border-color);
}
.faq-item:first-child {
    border-top: 1px solid var(--border-color);
}
.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 24px 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
}
.faq-icon {
    font-size: 24px;
    font-weight: 400;
    color: var(--primary);
    transition: transform 0.3s ease;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-answer p {
    padding: 0 0 24px 0;
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}
.faq-item.active .faq-answer {
    max-height: 500px; /* arbitrary large value */
}

/* Final CTA */
.about-final-cta {
    padding: 80px 20px 120px;
    background: white;
}
.about-final-cta .cta-box {
    background: var(--bg-accent);
    border-radius: 32px;
    padding: 80px 40px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    border: 1px solid var(--border-color);
}
.about-final-cta h2 {
    font-size: 48px;
    letter-spacing: -2px;
    margin-bottom: 16px;
}
.about-final-cta p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .values-grid, .features-grid, .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .about-hero {
        padding: 32px 20px 60px;
    }
    .about-hero h1 {
        font-size: 44px;
    }
    .about-hero p {
        font-size: 18px;
    }
    .hero-ctas {
        flex-direction: column;
    }
    .mv-grid {
        grid-template-columns: 1fr;
    }
    .values-grid, .features-grid, .why-grid {
        grid-template-columns: 1fr;
    }
    .about-final-cta .cta-box {
        padding: 60px 24px;
    }
    .about-final-cta h2 {
        font-size: 36px;
    }
}
