/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, #F5F3FF 0%, #EDE9FE 100%);
    border-bottom: 1px solid var(--border);
    padding: 5rem 0 4rem;
}

.page-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 1rem 0;
    line-height: 1.2;
}

.page-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== ABOUT SECTION ===== */
.about-section { padding: 5rem 0; }

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== STORY BLOCK ===== */
.story-block {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: start;
    margin-bottom: 5rem;
}

.story-text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.9;
    margin-top: 1.5rem;
}

.story-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 100px;
}

.mission-card,
.vision-card {
    padding: 1.8rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.mission-card:hover,
.vision-card:hover {
    border-color: var(--primary-soft);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.mission-icon,
.vision-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.mission-card h3,
.vision-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.7rem;
}

.mission-card p,
.vision-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ===== STATS ===== */
.about-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 3rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 5rem;
    box-shadow: var(--shadow-sm);
}

.stat-item { text-align: center; padding: 0 1rem; }

.stat-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: var(--border);
}

/* ===== CORE VALUES ===== */
.values-section { margin-bottom: 5rem; }

.section-header { margin-bottom: 3rem; }
.text-center { text-align: center; }

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}

.value-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
    text-align: center;
}

.value-card:hover {
    border-color: var(--primary-soft);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin: 0 auto 1.2rem;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
}

.value-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.7rem;
}

.value-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ===== FOUNDER ===== */
.founder-section { margin-bottom: 5rem; }

.founder-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4rem;
    padding: 3rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.founder-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-main);
}

.founder-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.founder-photo {
    width: 200px;
    height: 200px;
    border-radius: 20px;
    object-fit: cover;
    border: 3px solid var(--border);
    box-shadow: var(--shadow-md);
}

.founder-avatar {
    width: 200px;
    height: 200px;
    border-radius: 20px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary);
    border: 3px solid var(--border);
}

.founder-social {
    display: flex;
    gap: 0.8rem;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--bg);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1rem;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.founder-name {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0.5rem 0;
}

.founder-title-text {
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.founder-bio {
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.9;
}

/* ===== TIMELINE ===== */
.timeline-section { margin-bottom: 5rem; }

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0; bottom: 0;
    width: 2px;
    background: var(--border);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: calc(50% + 2rem);
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item.right {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: calc(50% + 2rem);
}

.timeline-content {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    max-width: 400px;
    transition: var(--transition);
}

.timeline-content:hover {
    border-color: var(--primary-soft);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 1.5rem;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gradient-main);
    border: 3px solid var(--bg);
    box-shadow: 0 0 0 3px var(--primary-soft);
    z-index: 1;
}

.timeline-date {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    display: block;
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.timeline-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== CTA ===== */
.about-cta { padding: 0 0 6rem; }

.cta-card {
    background: var(--text-primary);
    border-radius: 24px;
    padding: 5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle,
        rgba(108, 49, 214, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin: 1rem 0;
    line-height: 1.3;
}

.cta-subtitle {
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.8rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    transition: var(--transition);
    text-decoration: none;
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
    color: white;
    transform: translateY(-3px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .story-block {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .story-right { position: static; }
}

@media (max-width: 768px) {
    .page-title { font-size: 2rem; }

    .founder-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .founder-left { align-items: center; }

    .timeline::before { left: 20px; }

    .timeline-item {
        padding-right: 0;
        padding-left: 3.5rem;
        justify-content: flex-start;
    }

    .timeline-item.right {
        padding-left: 3.5rem;
    }

    .timeline-dot { left: 20px; }

    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-divider { width: 60px; height: 1px; }

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

    .cta-title { font-size: 1.8rem; }
    .cta-card { padding: 3rem 1.5rem; }
}

@media (max-width: 480px) {
    .values-grid { grid-template-columns: 1fr; }
}