.about-page,
.about-page * {
    box-sizing: border-box;
}

.about-page {
    --about-text: #151823;
    --about-muted: #626b7a;
    --about-line: #e5eaf1;
    --about-surface: #ffffff;
    --about-bg: #f7f9fc;
    --about-lime: #def37d;
    --about-purple: #7258df;
    --about-teal: #14a39a;
    --about-coral: #ee6f73;
    --about-ink: #17191d;
    max-width: 1180px;
    margin: 0 auto;
    padding: 18px 14px 58px;
    color: var(--about-text);
    font-family: Arial, sans-serif;
}

.about-page a {
    color: inherit;
}

.about-hero {
    position: relative;
    min-height: clamp(520px, 68vh, 680px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    border-radius: 26px;
    background: var(--about-ink);
    isolation: isolate;
}

.about-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(1.04) contrast(1.02);
    z-index: -2;
}

.about-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(16, 19, 31, 0.16) 0%, rgba(16, 19, 31, 0.82) 100%),
        linear-gradient(105deg, rgba(16, 19, 31, 0.86) 0%, rgba(16, 19, 31, 0.5) 48%, rgba(16, 19, 31, 0.16) 100%);
}

.about-hero__content {
    width: min(760px, 100%);
    padding: clamp(34px, 6vw, 70px);
    color: #fff;
}

.about-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    width: fit-content;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(222, 243, 125, 0.92);
    color: #202318;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0;
}

.about-eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--about-purple);
}

.about-hero h1,
.about-section h2,
.about-audience h2,
.about-platform h2,
.about-trust h2,
.about-bottom h2 {
    margin: 0;
    letter-spacing: 0;
    font-weight: 900;
    line-height: 1.08;
}

.about-hero h1 {
    max-width: 820px;
    margin-top: 20px;
    font-size: clamp(38px, 5vw, 68px);
}

.about-hero p {
    max-width: 700px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(18px, 2.1vw, 22px);
    line-height: 1.55;
}

.about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.about-btn {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    padding: 0 24px;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.2;
}

.about-btn--primary {
    background: linear-gradient(135deg, var(--about-lime), #bde948);
    color: #151823 !important;
    box-shadow: 0 18px 34px rgba(189, 233, 72, 0.28);
}

.about-btn--secondary {
    background: rgba(255, 255, 255, 0.12);
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.32);
    backdrop-filter: blur(6px);
}

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

.about-stats span {
    min-height: 132px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 22px;
    border: 1px solid var(--about-line);
    border-radius: 18px;
    background: var(--about-surface);
}

.about-stats strong {
    color: var(--about-purple);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1;
}

.about-stats small {
    margin-top: 8px;
    color: var(--about-muted);
    font-size: 15px;
    line-height: 1.35;
}

.about-section,
.about-platform,
.about-trust,
.about-bottom {
    margin-top: 16px;
    padding: clamp(28px, 4vw, 46px);
    border: 1px solid var(--about-line);
    border-radius: 22px;
    background: var(--about-surface);
}

.about-section--mission {
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(24px, 5vw, 70px);
    align-items: start;
}

.about-section__head h2,
.about-platform h2,
.about-trust h2,
.about-bottom h2 {
    max-width: 760px;
    margin-top: 16px;
    font-size: clamp(28px, 3.6vw, 46px);
}

.about-section__head--wide {
    max-width: 820px;
}

.about-mission-copy {
    display: grid;
    gap: 14px;
}

.about-mission-copy p,
.about-audience p,
.about-steps p,
.about-principles p,
.about-platform p,
.about-trust p,
.about-bottom p {
    margin: 0;
    color: var(--about-muted);
    font-size: 17px;
    line-height: 1.65;
}

.about-audience {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.about-audience article {
    min-height: 260px;
    padding: clamp(26px, 4vw, 42px);
    border-radius: 22px;
    color: #fff;
}

.about-audience article:first-child {
    background: linear-gradient(135deg, #1b7f78, var(--about-teal));
}

.about-audience article:last-child {
    background: linear-gradient(135deg, #5741bd, var(--about-purple));
}

.about-audience h2 {
    margin-top: 28px;
    font-size: clamp(28px, 3.4vw, 42px);
}

.about-audience p {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.86);
}

.about-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-weight: 900;
}

.about-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 26px;
}

.about-steps article,
.about-principles article {
    border: 1px solid var(--about-line);
    border-radius: 18px;
    background: #fbfcff;
    padding: 24px;
}

.about-steps span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--about-lime);
    color: #1f2315;
    font-weight: 900;
}

.about-steps h3,
.about-principles h3 {
    margin: 18px 0 10px;
    color: var(--about-text);
    font-size: 20px;
    line-height: 1.25;
    letter-spacing: 0;
}

.about-principles {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 26px;
}

.about-principles article:nth-child(2) {
    border-top-color: rgba(20, 163, 154, 0.55);
}

.about-principles article:nth-child(3) {
    border-top-color: rgba(238, 111, 115, 0.55);
}

.about-principles article:nth-child(4) {
    border-top-color: rgba(114, 88, 223, 0.55);
}

.about-platform {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
    gap: clamp(26px, 5vw, 70px);
    align-items: center;
    background:
        linear-gradient(135deg, rgba(222, 243, 125, 0.35), rgba(255, 255, 255, 0) 42%),
        #ffffff;
}

.about-platform p,
.about-trust p,
.about-bottom p {
    margin-top: 18px;
}

.about-platform ul {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.about-platform li {
    position: relative;
    min-height: 54px;
    display: flex;
    align-items: center;
    padding: 14px 16px 14px 48px;
    border: 1px solid var(--about-line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.78);
    color: #333b4a;
    font-size: 16px;
    line-height: 1.35;
}

.about-platform li::before {
    content: "";
    position: absolute;
    left: 18px;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: var(--about-teal);
}

.about-trust {
    background: #17191d;
    color: #fff;
}

.about-trust p {
    max-width: 820px;
    color: rgba(255, 255, 255, 0.76);
}

.about-bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    background: linear-gradient(135deg, #f0f6ff, #fff9f7);
}

.about-bottom .about-actions {
    flex-shrink: 0;
    margin-top: 0;
}

.about-bottom .about-btn--secondary {
    background: #fff;
    color: var(--about-text) !important;
    border-color: var(--about-line);
}

@media (max-width: 920px) {
    .about-section--mission,
    .about-platform,
    .about-bottom {
        grid-template-columns: 1fr;
    }

    .about-bottom {
        display: grid;
    }

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

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

@media (max-width: 680px) {
    .about-page {
        padding: 12px 10px 44px;
    }

    .about-hero {
        min-height: 570px;
        border-radius: 20px;
    }

    .about-hero__content {
        padding: 30px 20px;
    }

    .about-actions,
    .about-bottom .about-actions {
        display: grid;
        width: 100%;
    }

    .about-btn {
        width: 100%;
    }

    .about-stats,
    .about-audience,
    .about-principles {
        grid-template-columns: 1fr;
    }

    .about-stats span {
        min-height: 112px;
    }

    .about-section,
    .about-platform,
    .about-trust,
    .about-bottom,
    .about-audience article {
        border-radius: 18px;
        padding: 24px 18px;
    }
}
