:root {
    --about-navy: #071a33;
    --about-blue: #1688b9;
    --about-aqua: #35bdc7;
    --about-coral: #ff676d;
    --about-text: #52677a;
    --about-line: #d6e8f2;
    --about-surface: #ffffff;
    --about-soft: #edf7fa;
    --about-warm: #fff7ef;
    --about-shadow: 0 18px 46px rgba(17, 74, 102, 0.1);
}

.about-page {
    background: #f6fbfc;
}

.about-main,
.about-main * {
    box-sizing: border-box;
    letter-spacing: 0;
}

.about-main {
    padding-top: 112px;
    color: var(--about-navy);
    font-family: var(--font-main), 'Manrope', Arial, sans-serif;
}

.about-shell {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

.about-hero__frame {
    position: relative;
    display: flex;
    min-height: 480px;
    align-items: stretch;
    overflow: hidden;
    border: 1px solid rgba(22, 136, 185, 0.14);
    border-radius: 20px;
    background: #e8f5f8;
    box-shadow: var(--about-shadow);
}

.about-hero__media,
.about-hero__media picture,
.about-hero__media img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.about-hero__media {
    inset: 0 0 0 48%;
    width: auto;
    margin: 0;
    background: transparent;
}

.about-hero__media img {
    object-fit: cover;
    object-position: center top;
    background: transparent;
}

.about-hero__scrim {
    position: absolute;
    z-index: 1;
    inset: 0 auto 0 0;
    width: 48%;
    background: rgba(247, 252, 253, 0.93);
}

.about-hero__copy {
    position: relative;
    z-index: 2;
    display: flex;
    width: 48%;
    flex-direction: column;
    justify-content: center;
    padding: 48px 50px;
}

.about-hero h1 {
    max-width: 620px;
    margin: 0;
    color: var(--about-navy);
    font-family: 'Manrope', Arial, sans-serif;
    font-size: clamp(44px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.08;
    text-wrap: balance;
}

.about-hero h1 span {
    display: block;
    color: var(--about-blue);
}

.about-hero__lead {
    max-width: 590px;
    margin: 20px 0 0;
    color: var(--about-text);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.58;
}

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

.about-primary-btn,
.about-secondary-btn {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.about-primary-btn {
    color: #fff;
    background: var(--about-coral);
    box-shadow: 0 14px 30px rgba(255, 103, 109, 0.28);
}

.about-secondary-btn {
    color: var(--about-navy);
    border-color: rgba(22, 136, 185, 0.28);
    background: rgba(255, 255, 255, 0.88);
}

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

.about-primary-btn:focus-visible,
.about-secondary-btn:focus-visible,
.about-text-link:focus-visible {
    outline: 3px solid rgba(22, 136, 185, 0.34);
    outline-offset: 3px;
}

.about-hero__note {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    max-width: 590px;
    margin: 22px 0 0;
    color: #496277;
    font-size: 14px;
    line-height: 1.45;
}

.about-hero__note i {
    flex: 0 0 auto;
    margin-top: 3px;
    color: var(--about-blue);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 16px;
    overflow: hidden;
    border: 1px solid var(--about-line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 34px rgba(17, 74, 102, 0.07);
}

.about-stats div {
    min-height: 108px;
    padding: 20px 22px;
}

.about-stats div + div {
    border-left: 1px solid var(--about-line);
}

.about-stats strong {
    display: block;
    color: var(--about-blue);
    font-size: 34px;
    font-weight: 800;
    line-height: 1;
}

.about-stats span {
    display: block;
    margin-top: 8px;
    color: var(--about-text);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
}

.about-section {
    padding: 68px 0;
}

.about-section--surface {
    border-top: 1px solid rgba(22, 136, 185, 0.08);
    border-bottom: 1px solid rgba(22, 136, 185, 0.08);
    background: rgba(255, 255, 255, 0.7);
}

.about-section--soft {
    background: rgba(232, 246, 249, 0.74);
}

.about-section__header {
    max-width: 820px;
    margin: 0 auto 30px;
    text-align: center;
}

.about-section__header h2,
.about-split__copy h2,
.about-final h2 {
    margin: 0;
    color: var(--about-navy);
    font-family: 'Manrope', Arial, sans-serif;
    font-size: clamp(34px, 3.4vw, 44px);
    font-weight: 800;
    line-height: 1.14;
    text-wrap: balance;
}

#about-journey-title {
    scroll-margin-top: 96px;
}

.about-section__header p,
.about-split__copy > p,
.about-final p {
    margin: 16px 0 0;
    color: var(--about-text);
    font-size: 17px;
    line-height: 1.62;
}

.about-section__header h2,
.about-section__header p {
    text-align: center;
}

.about-split__copy h2,
.about-split__copy > p,
.about-final h2,
.about-final p {
    text-align: left;
}

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

.about-benefit {
    min-height: 218px;
    padding: 24px 22px;
    border: 1px solid var(--about-line);
    border-radius: 8px;
    background: #fff;
}

.about-benefit__icon,
.about-journey__number {
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--about-blue);
    background: #e9f6fa;
}

.about-benefit h3,
.about-infrastructure__item h3,
.about-journey__item h3 {
    margin: 18px 0 0;
    color: var(--about-navy);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.28;
}

.about-benefit p,
.about-infrastructure__item p,
.about-journey__item p {
    margin: 10px 0 0;
    color: var(--about-text);
    font-size: 15px;
    line-height: 1.58;
}

.about-split {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 44px;
    align-items: center;
}

.about-split--reverse {
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
}

.about-split__copy {
    max-width: 560px;
}

.about-split__copy--right {
    justify-self: end;
}

.about-checks {
    display: grid;
    gap: 11px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.about-checks li {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 10px;
    color: #365268;
    font-size: 16px;
    line-height: 1.5;
}

.about-checks i {
    margin-top: 4px;
    color: var(--about-aqua);
}

.about-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    color: #0877a8;
    font-weight: 800;
    text-decoration: underline;
    text-decoration-color: rgba(8, 119, 168, 0.32);
    text-underline-offset: 5px;
}

.about-studio-gallery {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-rows: repeat(2, 182px);
    gap: 10px;
}

.about-studio-gallery figure,
.about-technology-media {
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #e9f4f7;
    box-shadow: var(--about-shadow);
}

.about-studio-gallery figure:first-child {
    grid-row: 1 / 3;
}

.about-studio-gallery img,
.about-technology-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-studio-gallery figure:first-child img {
    object-position: 58% top;
}

.about-technology-media {
    height: 500px;
}

.about-technology-media img {
    object-position: center top;
}

.about-infrastructure {
    position: relative;
}

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

.about-infrastructure__item {
    overflow: hidden;
    border: 1px solid var(--about-line);
    border-radius: 8px;
    background: #fff;
}

.about-infrastructure__item figure {
    height: 210px;
    margin: 0;
    overflow: hidden;
    background: #e9f4f7;
}

.about-infrastructure__item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-infrastructure__body {
    padding: 22px 22px 24px;
}

.about-infrastructure__item h3 {
    margin-top: 0;
}

.about-infrastructure__action {
    display: flex;
    justify-content: center;
    margin-top: 26px;
}

.about-journey {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--about-line);
    border-radius: 8px;
    background: #fff;
}

.about-journey__item {
    min-height: 220px;
    padding: 24px 22px;
}

.about-journey__item + .about-journey__item {
    border-left: 1px solid var(--about-line);
}

.about-journey__number {
    color: #fff;
    font-weight: 800;
    background: var(--about-blue);
}

.about-final {
    padding: 0 0 28px;
}

.about-final__inner {
    display: flex;
    min-height: 250px;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    padding: 42px 46px;
    border: 1px solid #c9e3ed;
    border-radius: 12px;
    background: #e9f6f9;
}

.about-final__copy {
    max-width: 700px;
}

.about-final__actions {
    flex: 0 0 auto;
    margin-top: 0;
}

@media (max-width: 1020px) {
    .about-hero__media {
        left: 52%;
    }

    .about-hero__media img {
        object-fit: cover;
        object-position: center;
    }

    .about-hero__scrim,
    .about-hero__copy {
        width: 52%;
    }

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

    .about-benefit {
        min-height: 0;
    }

    .about-journey__item:nth-child(3) {
        border-left: 0;
    }

    .about-journey__item:nth-child(n + 3) {
        border-top: 1px solid var(--about-line);
    }
}

@media (max-width: 900px) {
    .about-hero__frame {
        display: block;
        min-height: 0;
    }

    .about-hero__media {
        position: relative;
        inset: auto;
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .about-hero__media img {
        object-fit: cover;
        object-position: center;
        background: transparent;
    }

    .about-hero__scrim {
        display: none;
    }

    .about-hero__copy {
        width: 100%;
        padding: 40px 46px 36px;
        background: #f9fdfe;
    }
}

@media (max-width: 760px) {
    .about-main {
        padding-top: 92px;
    }

    .about-shell {
        width: calc(100% - 24px);
    }

    .about-hero__frame {
        display: block;
        min-height: 0;
        border-radius: 14px;
    }

    .about-hero__media {
        position: relative;
        inset: auto;
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .about-hero__media img {
        object-fit: cover;
        object-position: center;
        background: transparent;
    }

    .about-hero__scrim {
        display: none;
    }

    .about-hero__copy {
        width: 100%;
        padding: 24px 20px 22px;
        background: #f9fdfe;
    }

    .about-hero h1 {
        font-size: 36px;
        font-weight: 700;
        line-height: 1.1;
    }

    .about-hero__lead {
        margin-top: 14px;
        font-size: 16px;
        line-height: 1.52;
    }

    .about-hero__actions {
        display: grid;
        grid-template-columns: 1.05fr 0.95fr;
        gap: 9px;
        margin-top: 18px;
    }

    .about-primary-btn,
    .about-secondary-btn {
        min-height: 48px;
        padding: 11px 13px;
        font-size: 14px;
        white-space: nowrap;
    }

    .about-hero__note {
        margin-top: 15px;
        font-size: 13px;
    }

    .about-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 10px;
        border-radius: 10px;
    }

    .about-stats div {
        min-height: 82px;
        padding: 14px 16px;
    }

    .about-stats div:nth-child(3) {
        border-left: 0;
    }

    .about-stats div:nth-child(n + 3) {
        border-top: 1px solid var(--about-line);
    }

    .about-stats strong {
        font-size: 28px;
    }

    .about-stats span {
        margin-top: 6px;
        font-size: 13px;
    }

    .about-section {
        padding: 46px 0;
    }

    .about-section__header {
        margin-bottom: 22px;
        text-align: left;
    }

    .about-section__header h2,
    .about-section__header p {
        text-align: left;
    }

    .about-section__header h2,
    .about-split__copy h2,
    .about-final h2 {
        font-size: 30px;
        line-height: 1.18;
    }

    .about-section__header p,
    .about-split__copy > p,
    .about-final p {
        margin-top: 12px;
        font-size: 16px;
        line-height: 1.55;
    }

    .about-benefits,
    .about-infrastructure__grid,
    .about-split,
    .about-split--reverse {
        grid-template-columns: 1fr;
    }

    .about-benefits {
        gap: 10px;
    }

    .about-benefit {
        display: grid;
        grid-template-columns: 48px minmax(0, 1fr);
        column-gap: 13px;
        padding: 18px 16px;
    }

    .about-benefit__icon {
        grid-row: 1 / 3;
    }

    .about-benefit h3 {
        margin-top: 0;
        font-size: 19px;
    }

    .about-benefit p {
        margin-top: 6px;
    }

    .about-split {
        gap: 24px;
    }

    .about-split__copy,
    .about-split__copy--right {
        max-width: none;
        justify-self: stretch;
    }

    .about-split--reverse .about-technology-media {
        order: 2;
    }

    .about-studio-gallery {
        grid-template-rows: repeat(2, 130px);
        gap: 7px;
    }

    .about-technology-media {
        height: 360px;
    }

    .about-infrastructure__grid {
        gap: 12px;
    }

    .about-infrastructure__item {
        display: grid;
        grid-template-columns: 132px minmax(0, 1fr);
    }

    .about-infrastructure__item figure {
        height: 100%;
        min-height: 176px;
    }

    .about-infrastructure__body {
        padding: 17px 16px;
    }

    .about-infrastructure__item h3 {
        font-size: 18px;
    }

    .about-infrastructure__item p {
        font-size: 14px;
    }

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

    .about-journey__item {
        display: grid;
        grid-template-columns: 46px minmax(0, 1fr);
        column-gap: 13px;
        min-height: 0;
        padding: 18px 16px;
    }

    .about-journey__item + .about-journey__item,
    .about-journey__item:nth-child(3) {
        border-top: 1px solid var(--about-line);
        border-left: 0;
    }

    .about-journey__number {
        grid-row: 1 / 3;
    }

    .about-journey__item h3 {
        margin-top: 0;
        font-size: 19px;
    }

    .about-journey__item p {
        margin-top: 6px;
    }

    .about-final {
        padding-bottom: 18px;
    }

    .about-final__inner {
        min-height: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
        padding: 26px 20px;
        border-radius: 10px;
    }

    .about-final__actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 9px;
    }
}

@media (max-width: 390px) {
    .about-hero h1 {
        font-size: 33px;
    }

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

    .about-infrastructure__item {
        grid-template-columns: 110px minmax(0, 1fr);
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-primary-btn,
    .about-secondary-btn {
        transition: none;
    }
}
