.page-about .main-content {
    background: linear-gradient(180deg, #FFF7ED 0%, #fff 320px, #fff 100%);
}

.about-page {
    padding: 28px 0 64px;
}

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

.about-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    padding: 4px 12px;
    border-radius: 999px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.about-hero h1 {
    margin-bottom: 12px;
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: 0;
}

.about-hero-lead {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.65;
}

.about-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    padding: 0;
    list-style: none;
}

.about-stats li {
    min-width: 120px;
    padding: 14px 18px;
    border: 1px solid rgba(254, 215, 170, 0.55);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    text-align: center;
}

.about-stats strong {
    display: block;
    color: var(--primary);
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1.1;
}

.about-stats span {
    display: block;
    margin-top: 4px;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.about-story {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 28px;
    align-items: center;
    max-width: 980px;
    margin: 0 auto 44px;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--surface);
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.06);
}

.about-story-copy h2 {
    margin-bottom: 14px;
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1.25;
}

.about-story-copy p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.65;
}

.about-story-copy p + p {
    margin-top: 12px;
}

.about-story-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.about-story-actions .btn {
    min-height: 44px;
    border-radius: 12px;
    font-weight: 800;
}

.about-story-visual {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(180deg, #FFF7ED, #fff);
}

.about-story-visual img {
    display: block;
    width: 100%;
    height: auto;
}

.about-steps,
.about-values,
.about-formats {
    max-width: 980px;
    margin: 0 auto 40px;
}

.about-steps h2,
.about-values h2,
.about-formats h2 {
    margin-bottom: 16px;
    font-size: 1.25rem;
    font-weight: 900;
    text-align: center;
}

.about-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.about-step-card {
    position: relative;
    padding: 18px 16px 16px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--surface);
}

.about-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin-bottom: 10px;
    border-radius: 999px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 13px;
    font-weight: 900;
}

.about-step-card h3 {
    font-size: 14px;
    font-weight: 900;
    line-height: 1.35;
}

.about-step-card p {
    margin-top: 6px;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.5;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.about-value-card {
    padding: 20px 18px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--surface);
    text-align: center;
}

.about-value-icon {
    display: block;
    margin-bottom: 10px;
    font-size: 1.6rem;
    line-height: 1;
}

.about-value-card h3 {
    font-size: 14px;
    font-weight: 900;
    line-height: 1.35;
}

.about-value-card p {
    margin-top: 8px;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.55;
}

.about-formats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.about-format-card {
    padding: 18px 16px;
    border: 1px solid rgba(249, 115, 22, 0.25);
    border-radius: 14px;
    background:
        radial-gradient(circle at 100% 0%, rgba(249, 115, 22, 0.08), transparent 55%),
        var(--surface);
    text-align: center;
}

.about-format-icon {
    display: block;
    margin-bottom: 8px;
    font-size: 1.5rem;
    line-height: 1;
}

.about-format-card h3 {
    font-size: 14px;
    font-weight: 900;
}

.about-format-card p {
    margin-top: 6px;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.45;
}

.about-bottom-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    max-width: 980px;
    margin: 0 auto;
    padding: 28px;
    border: 1px solid rgba(254, 215, 170, 0.45);
    border-radius: 20px;
    background: linear-gradient(135deg, #FFF7ED 0%, #fff 60%);
}

.about-bottom-copy h2 {
    font-size: 1.25rem;
    font-weight: 900;
    line-height: 1.25;
}

.about-bottom-copy p {
    margin-top: 6px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.55;
}

.about-bottom-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.about-bottom-actions .btn {
    min-height: 48px;
    border-radius: 12px;
    font-weight: 800;
}

:root[data-theme="dark"] .page-about .main-content {
    background: linear-gradient(180deg, #121A2B 0%, var(--bg) 320px, var(--bg) 100%);
}

:root[data-theme="dark"] .about-stats li,
:root[data-theme="dark"] .about-story,
:root[data-theme="dark"] .about-step-card,
:root[data-theme="dark"] .about-value-card,
:root[data-theme="dark"] .about-format-card {
    background: rgba(255, 255, 255, 0.04);
}

:root[data-theme="dark"] .about-story-visual {
    background: rgba(255, 255, 255, 0.03);
}

@media (max-width: 900px) {
    .about-story {
        grid-template-columns: 1fr;
    }

    .about-story-visual {
        order: -1;
    }

    .about-steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 640px) {
    .about-page {
        padding-top: 16px;
    }

    .about-story {
        padding: 20px 16px;
    }

    .about-steps-grid {
        grid-template-columns: 1fr;
    }

    .about-bottom-cta {
        padding: 22px 18px;
        text-align: center;
    }

    .about-bottom-actions,
    .about-story-actions {
        width: 100%;
        flex-direction: column;
    }

    .about-bottom-actions .btn,
    .about-story-actions .btn {
        width: 100%;
    }
}
