body.about-page {
    margin: 0;
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    color: #0f172a;
    background: #f8fafc;
}

a {
    color: inherit;
}

a.btn {
    text-decoration: none;
}

.about-hero {
    position: relative;
    min-height: 90vh;
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    padding: 32px clamp(16px, 6vw, 64px);
}

.about-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.35) 60%, rgba(15, 23, 42, 0.85) 100%);
    backdrop-filter: blur(2px);
}

.about-hero > * {
    position: relative;
    z-index: 1;
}

.about-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.about-logo {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.04em;
}

.about-nav__links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.about-nav__links a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    text-decoration: none;
}

.about-nav__links a:hover {
    color: #fff;
}

.about-nav__cta {
    display: flex;
    gap: 12px;
}

.about-hero__content {
    margin-top: clamp(40px, 10vh, 100px);
    max-width: 580px;
}

.about-hero__content h1 {
    font-size: clamp(2.5rem, 6vw, 3.75rem);
    margin: 12px 0;
}

.about-hero__content p {
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
}

.about-hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn.primary {
    background: linear-gradient(120deg, #f97316, #ef4444, #8b5cf6);
    color: #fff;
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.25);
}

.btn.secondary {
    background: var(--text);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn.ghost {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 0.95rem;
    padding: 10px 20px;
}

.btn.primary:hover,
.btn.secondary:hover,
.btn.ghost:hover {
    transform: translateY(-2px);
}

.about-section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px auto;
    padding: 0 16px;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
    color: #ec4899;
    margin: 0 0 8px;
    font-weight: 600;
}

.about-section-header h2 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 4vw, 2.8rem);
}

.about-section-header p {
    color: #475569;
    line-height: 1.6;
}

.about-pillars {
    padding: clamp(48px, 9vw, 96px) clamp(16px, 10vw, 100px);
}

.about-features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.feature-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 35px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-card__media img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.feature-card__body {
    padding: 24px;
}

.feature-card__body h3 {
    margin: 0 0 8px;
    font-size: 1.2rem;
}

.feature-card__body p {
    margin: 0;
    color: #475569;
    line-height: 1.5;
}

.about-story {
    padding: clamp(32px, 8vw, 96px) clamp(16px, 10vw, 100px);
    background: #0f172a;
    color: #f8fafc;
}

.story-row {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: center;
    margin-bottom: 48px;
}

.story-row:last-of-type {
    margin-bottom: 0;
}

.story-row--reverse {
    flex-direction: row-reverse;
}

.story-row__media,
.story-row__body {
    flex: 1 1 320px;
}

.story-row__media img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.35);
}

.story-row__body h3 {
    margin: 8px 0 12px;
    font-size: 2rem;
}

.story-row__body p {
    color: rgba(248, 250, 252, 0.9);
    line-height: 1.6;
}

.about-cta {
    padding: clamp(48px, 10vw, 120px) clamp(16px, 12vw, 140px);
    background: radial-gradient(circle at top, #ffe4e6, #fdf4ff, #eff6ff);
}

.about-cta__card {
    background: #fff;
    border-radius: 32px;
    padding: clamp(32px, 6vw, 72px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
    text-align: center;
}

.about-cta__card h2 {
    margin: 12px 0 16px;
    font-size: clamp(2rem, 5vw, 3rem);
}

.about-cta__card p {
    color: #475569;
    margin: 0 auto 24px;
    max-width: 640px;
    line-height: 1.6;
}

.about-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.about-partners {
    padding: clamp(48px, 9vw, 100px) clamp(16px, 10vw, 100px);
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.partner-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.08);
}

.partner-card h3 {
    margin: 0 0 12px;
    font-size: 1.1rem;
}

.partner-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.partner-card li {
    color: #475569;
}

.about-footer {
    background: #0f172a;
    color: #cbd5f5;
    padding: 24px clamp(16px, 8vw, 80px);
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
}

.about-footer a {
    color: #94a3b8;
    text-decoration: none;
}

.about-footer__links {
    display: flex;
    gap: 16px;
}

@media (max-width: 640px) {
    .about-nav__links {
        width: 100%;
        justify-content: center;
    }

    .about-nav__cta {
        width: 100%;
        justify-content: center;
    }

    .btn.primary,
    .btn.secondary,
    .btn.ghost {
        width: 100%;
    }

    .story-row,
    .story-row--reverse {
        flex-direction: column;
    }
}
