/* =========================================
   ABOUT US PAGE
========================================= */

/* --- GLOBALS & TYPOGRAPHY --- */
.leadiary-about-hero, .leadiary-story, .leadiary-values, .leadiary-about-cta {
    font-family: 'Inter', sans-serif;
}
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.text-orange { color: var(--brand-orange); }

/* --- HERO SECTION --- */
.leadiary-about-hero {
    background-color: #fafafa;
    padding: 100px 0 80px;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}
.about-badge {
    display: inline-block;
    background-color: rgba(255, 107, 0, 0.1);
    color: var(--brand-orange);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
}
.about-title {
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 800;
    color: #111827;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.about-subtitle {
    font-size: 20px;
    color: #4b5563;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* --- THE STORY SECTION --- */
.leadiary-story {
    padding: 100px 0;
    background-color: #ffffff;
}
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.story-content h2 {
    font-size: 32px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.story-content p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Story Graphic/Abstract element */
.story-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.story-image-box {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #f9fafb;
    border-radius: 24px;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.abstract-shape {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,107,0,0.1) 0%, rgba(255,255,255,0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.stat-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
    max-width: 300px;
    border: 1px solid #f3f4f6;
}
.stat-card i {
    font-size: 24px;
    margin-bottom: 16px;
}
.stat-card h4 {
    font-size: 18px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 8px;
}
.stat-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

/* --- VALUES SECTION --- */
.leadiary-values {
    padding: 100px 0;
    background-color: #fafafa;
    border-top: 1px solid #e5e7eb;
}
.values-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 60px;
    letter-spacing: -0.02em;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.value-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease;
}
.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.05);
}
.value-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 107, 0, 0.1);
    color: var(--brand-orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 24px;
}
.value-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 12px;
}
.value-card p {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

/* --- CTA SECTION --- */
.leadiary-about-cta {
    padding: 60px 0 100px;
    background-color: #fafafa;
}
.about-cta-banner {
    background-color: #111827;
    border-radius: 20px;
    padding: 40px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 4px solid var(--brand-orange);
}
.cta-text h3 {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
}
.cta-text p {
    font-size: 16px;
    color: #9ca3af;
    max-width: 500px;
    margin: 0;
}
.cta-btn {
    background-color: var(--brand-orange);
    color: #ffffff;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s ease;
    flex-shrink: 0;
}
.cta-btn:hover {
    background-color: var(--brand-orange-hover);
    transform: translateY(-2px);
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 991px) {
    .story-grid { grid-template-columns: 1fr; gap: 40px; }
    .story-image-wrapper { max-width: 500px; margin: 0 auto; }
    .values-grid { grid-template-columns: 1fr; }
    .about-cta-banner { flex-direction: column; text-align: center; gap: 24px; padding: 40px 24px; }
    .cta-text p { margin: 0 auto; }
}