.about-page {
    --about-dark: #111318;
    --about-orange: var(--theme-color, #ff6b35);
    --about-ink: #17191d;
    --about-muted: #686c74;
    --about-line: #e2e3e6;
    background: #fff;
}

/* ---- Hero ---- */
.about-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 116px 0 108px;
    background:
        linear-gradient(118deg, rgba(255, 107, 53, 0.08), transparent 38%),
        var(--about-dark);
}

.about-hero::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    content: "";
    opacity: 0.2;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(90deg, transparent, #000 50%, #000);
}

.about-hero__glow {
    position: absolute;
    z-index: -1;
    right: -180px;
    bottom: -320px;
    width: 720px;
    height: 720px;
    border: 1px solid rgba(255, 107, 53, 0.25);
    border-radius: 50%;
    box-shadow:
        0 0 0 90px rgba(255, 107, 53, 0.035),
        0 0 0 180px rgba(255, 107, 53, 0.025);
}

.about-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: var(--about-orange);
    font: 700 12px/1.2 var(--secondary-font, "Inter", sans-serif);
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.about-eyebrow > span {
    width: 34px;
    height: 2px;
    background: currentColor;
}

.about-eyebrow--light {
    color: #ff8b60;
}

.about-hero h1 {
    max-width: 920px;
    color: #fff;
    font-size: clamp(44px, 5vw, 70px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.about-hero h1 em {
    color: var(--about-orange);
    font-style: normal;
}

.about-hero__lead {
    max-width: 660px;
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 18px;
    line-height: 1.75;
}

.about-principles {
    margin-left: auto;
    padding: 10px 30px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
}

.about-principle {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.about-principle:last-child {
    border-bottom: 0;
}

.about-principle span {
    color: var(--about-orange);
    font-size: 12px;
    font-weight: 700;
}

.about-principle strong {
    color: #fff;
    font: 500 16px/1.4 var(--secondary-font, "Inter", sans-serif);
}

/* ---- Profile / image section ---- */
.about-profile-section {
    padding: 120px 0 128px;
}

.about-profile-row {
    --bs-gutter-x: 88px;
}

.about-portrait-wrap {
    position: relative;
    max-width: 540px;
    margin: 0 auto;
}

.about-portrait-wrap::before {
    position: absolute;
    top: -18px;
    left: -18px;
    width: 47%;
    height: 47%;
    border-top: 2px solid var(--about-orange);
    border-left: 2px solid var(--about-orange);
    border-radius: 34px 0 0;
    content: "";
}

.about-portrait {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #f4f4f2;
    box-shadow: 0 34px 70px rgba(20, 22, 27, 0.12);
}

.about-portrait img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}

.about-portrait__caption {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
    color: var(--about-muted);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.about-portrait__caption span {
    width: 22px;
    height: 1px;
    background: var(--about-orange);
}

.about-profile-content h2 {
    color: var(--about-ink);
    font-size: clamp(36px, 3.6vw, 50px);
    font-weight: 600;
    line-height: 1.14;
    letter-spacing: -0.03em;
}

.about-profile-content__intro {
    margin-top: 22px;
    padding-left: 22px;
    border-left: 3px solid var(--about-orange);
    color: var(--about-ink);
    font: 500 19px/1.55 var(--primary-font, "Outfit", sans-serif);
}

.about-profile-content__body {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-info-block {
    display: flex;
    gap: 18px;
}

.about-info-icon {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(255, 107, 53, 0.08);
    color: var(--about-orange);
    font-size: 22px;
}

.about-info-content h5 {
    color: var(--about-ink);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
}

.about-info-content p {
    color: var(--about-muted);
    font-size: 14px;
    line-height: 1.75;
}

/* ---- Section heading (shared) ---- */
.about-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 56px;
}

.about-section-heading > div {
    max-width: 650px;
}

.about-section-heading h2 {
    color: var(--about-ink);
    font-size: clamp(34px, 3.4vw, 48px);
    font-weight: 600;
    line-height: 1.14;
    letter-spacing: -0.03em;
}

.about-section-heading > p {
    max-width: 460px;
    padding-bottom: 4px;
    color: var(--about-muted);
    font-size: 15px;
    line-height: 1.75;
}

/* ---- Feature cards ---- */
.about-features-section {
    padding: 120px 0 128px;
    background: #f4f4f2;
}

.about-feature-card {
    height: 100%;
    padding: 40px 32px;
    border: 1px solid #e1e1df;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(18, 20, 24, 0.05);
    transition: transform 250ms ease, box-shadow 250ms ease;
}

.about-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 58px rgba(18, 20, 24, 0.1);
}

.about-feature-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 22px;
    border-radius: 16px;
    background: rgba(255, 107, 53, 0.1);
    color: var(--about-orange);
    font-size: 22px;
}

.about-feature-card h3 {
    color: var(--about-ink);
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 12px;
}

.about-feature-card p {
    color: var(--about-muted);
    font-size: 14px;
    line-height: 1.75;
}

/* ---- Process / journey ---- */
.about-journey-section {
    padding: 120px 0;
}

.about-section-heading--journey {
    margin-bottom: 66px;
}

.about-journey {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin: 0;
    padding: 0;
}

.about-journey::before {
    position: absolute;
    top: 8px;
    right: 0;
    left: 0;
    height: 1px;
    content: "";
    background: var(--about-line);
}

.about-journey__step {
    position: relative;
    padding-top: 40px;
}

.about-journey__marker {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 17px;
    height: 17px;
    border: 4px solid #fff;
    border-radius: 50%;
    background: var(--about-orange);
    box-shadow: 0 0 0 1px var(--about-orange);
}

.about-journey__num {
    display: inline-block;
    margin-bottom: 13px;
    color: var(--about-orange);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.about-journey h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--about-ink);
    font-size: 19px;
    font-weight: 600;
    line-height: 1.3;
}

.about-journey h3 i {
    color: var(--about-orange);
    font-size: 22px;
}

/* ---- Mission / vision ---- */
.about-mission-section {
    padding: 0 0 120px;
    background: #f4f4f2;
}

.about-mission-card {
    height: 100%;
    padding: 48px 44px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid #e1e1df;
}

.about-mission-card--accent {
    background: var(--about-dark);
    border: none;
}

.about-mission-card__eyebrow {
    display: block;
    margin-bottom: 14px;
    color: var(--about-orange);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.about-mission-card--accent .about-mission-card__eyebrow {
    color: #ff8b60;
}

.about-mission-card h2 {
    color: var(--about-ink);
    font-size: clamp(26px, 2.4vw, 32px);
    font-weight: 600;
    margin-bottom: 18px;
}

.about-mission-card--accent h2 {
    color: #fff;
}

.about-mission-card p {
    color: var(--about-muted);
    font-size: 15px;
    line-height: 1.8;
}

.about-mission-card--accent p {
    color: rgba(255, 255, 255, 0.68);
}

.about-mission-card__list {
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-mission-card__list li {
    color: var(--about-ink);
    font-size: 14px;
    font-weight: 500;
}

.about-mission-card--accent .about-mission-card__list li {
    color: #fff;
}

.about-mission-card__list i {
    margin-right: 10px;
    color: var(--about-orange);
}

/* ---- Stats manifesto ---- */
.about-stats-section {
    padding: 0 0 120px;
}

.about-manifesto {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 58px 64px;
    border-radius: 28px;
    background: var(--about-dark);
}

.about-manifesto::after {
    position: absolute;
    z-index: -1;
    top: -180px;
    right: -120px;
    width: 420px;
    height: 420px;
    border: 75px solid rgba(255, 107, 53, 0.08);
    border-radius: 50%;
    content: "";
}

.about-manifesto__heading {
    margin-bottom: 44px;
}

.about-manifesto__heading span {
    display: block;
    margin-bottom: 12px;
    color: #ff8b60;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.about-manifesto__heading h2 {
    color: #fff;
    font-size: clamp(28px, 2.8vw, 40px);
    font-weight: 500;
    letter-spacing: -0.02em;
}

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

.about-stat {
    padding: 0 26px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.about-stat:first-child {
    padding-left: 0;
    border-left: none;
}

.about-stat i {
    color: var(--about-orange);
    font-size: 24px;
    margin-bottom: 16px;
    display: block;
}

.about-stat div {
    color: #fff;
    font: 600 34px/1.1 var(--primary-font, "Outfit", sans-serif);
    margin-bottom: 8px;
}

.about-stat p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ---- Responsive ---- */
@media (max-width: 1199px) {
    .about-hero {
        padding: 96px 0;
    }

    .about-profile-row {
        --bs-gutter-x: 58px;
    }

    .about-profile-section,
    .about-features-section,
    .about-journey-section {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .about-journey {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }

    .about-journey::before {
        display: none;
    }

    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .about-stat {
        border-left: none;
        padding-left: 0;
    }
}

@media (max-width: 991px) {
    .about-principles {
        margin-top: 48px;
        margin-left: 0;
    }

    .about-profile-content {
        margin-top: 72px;
    }

    .about-section-heading {
        display: block;
    }

    .about-section-heading > p {
        margin-top: 24px;
    }

    .about-manifesto {
        padding: 50px;
    }

    .about-mission-card {
        padding: 38px 32px;
    }
}

@media (max-width: 767px) {
    .about-hero {
        padding: 76px 0 82px;
    }

    .about-hero::before {
        background-size: 48px 48px;
    }

    .about-hero h1 {
        font-size: 40px;
    }

    .about-hero__lead {
        font-size: 16px;
    }

    .about-profile-section,
    .about-features-section,
    .about-journey-section {
        padding-top: 78px;
        padding-bottom: 78px;
    }

    .about-mission-section,
    .about-stats-section {
        padding-bottom: 78px;
    }

    .about-journey {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-manifesto {
        padding: 40px 32px;
    }

    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-feature-card {
        transition: none;
    }
}
