.page-about .main-content {
    max-width: none;
    padding: 0;
}

/* ── Hero ── */
.about-hero {
    background: var(--light-gray);
    overflow: hidden;
}

.about-hero-inner {
    display: grid;
    grid-template-columns: 1fr 480px;
    align-items: stretch;
    width: min(1320px, 100%);
    margin: 0 auto;
}

.about-hero-copy {
    padding: 72px 48px 72px 28px;
    max-width: 640px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-hero h1 {
    font-size: clamp(1.8rem, 2.8vw, 2.4rem);
    line-height: 1.15;
    color: var(--dark);
    margin: 0 0 20px;
}

.about-hero-rule {
    width: 48px;
    height: 3px;
    background: var(--brand-blue);
    margin-bottom: 28px;
    border-radius: 2px;
}

.about-hero-lead {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark);
    font-weight: 500;
    margin-bottom: 18px;
}

.about-hero p {
    font-size: 1.03rem;
    line-height: 1.85;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.about-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-height: 48px;
    margin-top: 28px;
    padding: 0 22px;
    border-radius: 8px;
    background: var(--brand-blue);
    color: var(--white);
    font-size: 0.98rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 14px 28px rgba(26, 167, 255, 0.2);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.about-hero-btn:hover {
    background: #1495e6;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(26, 167, 255, 0.26);
}

/* Image column */
.about-hero-media {
    position: relative;
    min-height: 420px;
    margin: 32px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 48px rgba(28, 28, 28, 0.13);
}

.about-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

/* ── Who We Are ── */
.about-who {
    padding: 66px 28px 74px;
    background: var(--white);
}

.about-who-inner {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 72px;
    align-items: start;
    width: min(1320px, 100%);
    margin: 0 auto;
}

.about-who-heading h2 {
    font-size: clamp(1.4rem, 2vw, 1.75rem);
    line-height: 1.2;
    color: var(--dark);
    margin: 0;
    position: sticky;
    top: 100px;
}

.about-who-lead {
    font-size: 1.15rem;
    line-height: 1.82;
    color: var(--dark);
    font-weight: 500;
    margin: 0 0 24px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border-light);
}

.about-who-body p {
    font-size: 1.03rem;
    line-height: 1.85;
    color: var(--text-secondary);
    margin: 0 0 20px;
}

.about-who-body p:last-child {
    margin-bottom: 0;
}

.about-who-callout {
    margin-top: 4px;
    padding: 26px 28px;
    background: var(--light-gray);
    border-left: 3px solid var(--brand-blue);
    border-radius: 0 8px 8px 0;
}

.about-who-callout p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.about-who-callout p:last-child {
    margin-bottom: 0;
}

/* ── Why We Built This ── */
.about-why {
    padding: 66px 28px 74px;
    background: var(--white);
}

.about-why-inner {
    width: min(860px, 100%);
    margin: 0 auto;
}

.about-why-title {
    font-size: clamp(1.4rem, 2vw, 1.75rem);
    line-height: 1.2;
    color: var(--dark);
    margin: 0 0 48px;
}

/* Timeline container */
.about-why-timeline {
    position: relative;
    padding-left: 40px;
}

.about-why-timeline::before {
    content: '';
    position: absolute;
    left: 9px;
    top: 12px;
    bottom: 12px;
    width: 2px;
    background: var(--border-light);
}

/* Timeline node */
.about-why-node {
    position: relative;
    padding-bottom: 44px;
}

.about-why-node:last-child {
    padding-bottom: 0;
}

/* Dot */
.about-why-dot {
    position: absolute;
    left: -40px;
    top: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--border-light);
    background: var(--white);
}

/* Final node — blue dot, stronger text */
.about-why-node--final .about-why-dot {
    border-color: var(--brand-blue);
    background: var(--brand-blue);
}

.about-why-node-lead {
    font-size: 1.12rem;
    line-height: 1.75;
    color: var(--dark);
    font-weight: 600;
    margin: 0;
}

.about-why-node p {
    font-size: 1.03rem;
    line-height: 1.88;
    color: var(--text-secondary);
    margin: 0 0 16px;
}

.about-why-node p:last-child {
    margin-bottom: 0;
}

.about-why-node--final p {
    font-size: 1.08rem;
    color: var(--dark);
    font-weight: 500;
}

.about-why-node--final p:last-child {
    color: var(--text-secondary);
    font-weight: 400;
}

/* ── What We Have Built ── */
.about-built {
    padding: 66px 28px 74px;
    background: var(--light-gray);
}

.about-built-inner {
    width: min(1320px, 100%);
    margin: 0 auto;
}

.about-built-header {
    max-width: 680px;
    margin: 0 0 52px;
}

.about-built-header h2 {
    font-size: clamp(1.4rem, 2vw, 1.75rem);
    line-height: 1.2;
    color: var(--dark);
    margin: 0 0 16px;
}

.about-built-header p {
    font-size: 1.03rem;
    line-height: 1.85;
    color: var(--text-secondary);
    margin: 0;
}

.about-built-content {
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
    gap: 28px;
    align-items: start;
    margin-bottom: 48px;
}

.about-built-media {
    padding: 18px;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    background: var(--white);
}

.about-built-image {
    display: block;
    width: 100%;
    border-radius: 8px;
}

.about-built-features {
    display: grid;
    gap: 18px;
}

.about-built-feature {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 28px 30px;
}

.about-built-num {
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--brand-blue);
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 20px;
    font-family: var(--heading-font);
}

.about-built-feature h3 {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--dark);
    margin: 0 0 14px;
}

.about-built-feature p {
    font-size: 0.98rem;
    line-height: 1.85;
    color: var(--text-secondary);
    margin: 0;
}

.about-built-footer {
    font-size: 1.03rem;
    line-height: 1.85;
    color: var(--text-secondary);
    max-width: 800px;
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
    margin: 0;
}

.about-built-actions,
.about-users-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.about-built-actions a,
.about-users-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 15px;
    border: 1px solid rgba(26, 167, 255, 0.22);
    border-radius: 8px;
    background: var(--white);
    color: var(--brand-blue);
    font-size: 0.94rem;
    font-weight: 700;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.about-built-actions a:hover,
.about-users-actions a:hover {
    border-color: var(--brand-blue);
    color: #1495e6;
    transform: translateY(-2px);
}

/* ── Who Uses ── */
.about-users {
    padding: 66px 28px 74px;
    background: var(--light-gray);
}

.about-users-inner {
    width: min(1320px, 100%);
    margin: 0 auto;
}

.about-users-header {
    max-width: 680px;
    margin: 0 0 48px;
}

.about-users-header h2 {
    font-size: clamp(1.4rem, 2vw, 1.75rem);
    line-height: 1.2;
    color: var(--dark);
    margin: 0 0 14px;
}

.about-users-header p {
    font-size: 1.03rem;
    line-height: 1.85;
    color: var(--text-secondary);
    margin: 0;
}

.about-users-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.about-users-item {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 28px 28px 32px;
}

.about-users-item--wide {
    grid-column: span 2;
}

.about-users-pill {
    display: inline-block;
    background: var(--brand-blue);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.about-users-item p {
    font-size: 1.03rem;
    line-height: 1.85;
    color: var(--text-secondary);
    margin: 0;
}

.about-users-footer {
    font-size: 1.03rem;
    line-height: 1.85;
    color: var(--text-secondary);
    max-width: 720px;
    border-left: 3px solid var(--brand-blue);
    padding-left: 20px;
    margin: 0;
}

/* ── Responsive ── */
.about-commitment {
    padding: 66px 28px 74px;
    background: var(--white);
}

.about-commitment-inner {
    position: relative;
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 46px;
    align-items: start;
    width: min(1120px, 100%);
    margin: 0 auto;
    overflow: hidden;
    padding: 44px 46px;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 52%, rgba(248, 251, 255, 0.76) 100%),
        url("../../images/about-commitment.webp") center right / cover no-repeat;
}

.about-commitment-heading {
    padding-top: 4px;
}

.about-commitment-heading h2 {
    margin: 0;
    color: var(--dark);
    font-size: clamp(1.4rem, 2vw, 1.75rem);
    line-height: 1.2;
}

.about-commitment-body {
    max-width: 720px;
}

.about-commitment-body p {
    margin: 0 0 20px;
    color: var(--text-secondary);
    font-size: 1.03rem;
    line-height: 1.85;
}

.about-commitment-body p:last-child {
    margin-bottom: 0;
}

.about-commitment-lead {
    color: var(--dark) !important;
    font-weight: 600;
}

.about-commitment-body a {
    color: var(--brand-blue);
    font-weight: 600;
    text-decoration: none;
}

.about-commitment-body a:hover {
    text-decoration: underline;
}

.about-contact {
    padding: 70px 28px 78px;
    background: var(--white);
}

.about-contact-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 34px;
    align-items: stretch;
    width: min(1120px, 100%);
    margin: 0 auto;
    padding: 38px;
    border: 1px solid rgba(26, 167, 255, 0.14);
    border-radius: 10px;
    background:
        linear-gradient(90deg, rgba(248, 251, 255, 0.98), rgba(255, 255, 255, 0.98)),
        var(--white);
    box-shadow: 0 18px 44px rgba(28, 28, 28, 0.06);
}

.about-contact-inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 38px;
    width: 120px;
    height: 4px;
    border-radius: 0 0 4px 4px;
    background: var(--brand-blue);
}

.about-contact-copy {
    max-width: 660px;
}

.about-contact-copy h2 {
    margin: 0;
    color: var(--dark);
    font-size: clamp(1.65rem, 2.6vw, 2.25rem);
    line-height: 1.2;
}

.about-contact-copy p {
    margin: 18px 0 0;
    color: var(--text-secondary);
    font-size: 1.03rem;
    line-height: 1.85;
}

.about-contact-lead {
    color: var(--dark) !important;
    font-weight: 600;
}

.about-contact-list {
    display: grid;
    gap: 14px;
    align-content: center;
}

.about-contact-card {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 18px;
    border: 1px solid rgba(26, 167, 255, 0.18);
    border-radius: 8px;
    background: var(--white);
    color: var(--dark);
    text-decoration: none;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.about-contact-card:hover {
    border-color: var(--brand-blue);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(26, 167, 255, 0.1);
}

.about-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 8px;
    background: rgba(26, 167, 255, 0.1);
    color: var(--brand-blue);
}

.about-contact-detail {
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.55;
    word-break: break-word;
}

.about-contact-detail strong {
    color: var(--dark);
}

.about-contact-copy a {
    color: var(--brand-blue);
    font-weight: 600;
    text-decoration: none;
    word-break: break-word;
}

.about-contact-copy a:hover {
    text-decoration: underline;
}

.about-start {
    padding: 68px 28px 84px;
    background: linear-gradient(180deg, var(--white) 0%, #f8fbff 100%);
}

.about-start-inner {
    width: min(860px, 100%);
    margin: 0 auto;
    padding-top: 34px;
    border-top: 1px solid var(--border-light);
    text-align: center;
}

.about-start h2 {
    margin: 0;
    color: var(--dark);
    font-size: clamp(1.65rem, 2.6vw, 2.25rem);
    line-height: 1.2;
}

.about-start p {
    max-width: 720px;
    margin: 16px auto 0;
    color: var(--text-secondary);
    font-size: 1.03rem;
    line-height: 1.85;
}

.about-start-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    margin-top: 28px;
    padding: 0 22px;
    border-radius: 8px;
    background: var(--brand-blue);
    color: var(--white);
    font-size: 0.98rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 14px 28px rgba(26, 167, 255, 0.2);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.about-start-btn:hover {
    background: #1495e6;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(26, 167, 255, 0.26);
}

@media (max-width: 991px) {
    .about-who-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-who-heading h2 {
        position: static;
    }

    .about-built-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .about-users-item--wide {
        grid-column: span 1;
    }

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

    .about-hero-copy {
        padding: 52px 28px 36px;
    }

    .about-hero-media {
        min-height: 280px;
        margin: 0 28px 36px;
    }

    .about-commitment-inner {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 34px 32px;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 100%),
            url("../../images/about-commitment.webp") center / cover no-repeat;
    }

    .about-contact-inner {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 34px 32px;
    }
}

@media (max-width: 767px) {
    .about-who,
    .about-why,
    .about-built,
    .about-users,
    .about-commitment,
    .about-contact,
    .about-start {
        padding: 48px 20px 52px;
    }

    .about-why-timeline {
        padding-left: 32px;
    }

    .about-why-dot {
        left: -32px;
        width: 16px;
        height: 16px;
    }

    .about-why-timeline::before {
        left: 7px;
    }

    .about-hero-copy {
        padding: 44px 20px 32px;
    }

    .about-hero h1 {
        font-size: 1.6rem;
    }

    .about-hero-lead {
        font-size: 1.03rem;
    }

    .about-hero-media {
        min-height: 220px;
        margin: 0 20px 32px;
    }

    .about-commitment-body {
        max-width: none;
    }

    .about-contact-inner {
        padding: 30px 22px 24px;
    }

    .about-start-inner {
        padding-top: 28px;
    }

}
