*::before,
*::after {
    content: none;
    box-sizing: inherit;
}

body {
    font-family: "JetBrains Mono", monospace;
    box-sizing: border-box;
    overflow-x: hidden;
}

.utility-bar {
    background: #1a2744;
    border-bottom: 1px solid rgba(39, 129, 190, 0.18);
}

.utility-bar-inner {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding: 8px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.utility-contacts {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.utility-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    line-height: 1.4;
    color: #E5E6ED;
    text-decoration: none;
    transition: color 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.utility-contact-item:hover {
    color: #2781BE;
}

.utility-contact-item:focus {
    outline: 2px solid #2781BE;
    outline-offset: 3px;
    border-radius: 5px;
}

.utility-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.utility-contact-icon svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: #2781BE;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.utility-badge {
    font-size: 16px;
    color: rgba(229, 230, 237, 0.5);
    letter-spacing: 0.04em;
    padding: 4px 12px;
    border: 1px solid rgba(39, 129, 190, 0.22);
    border-radius: 5px;
    white-space: nowrap;
}

.site-header-main {
    background: linear-gradient(135deg, #0f1c36 0%, #162040 60%, #1a2550 100%);
    border-bottom: 2px solid rgba(82, 97, 219, 0.30);
    box-shadow: 2px 4px 25px 0 rgba(39, 129, 190, 0.10);
}

.site-header-inner {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding: 24px 24px 0 24px;
    display: flex;
    align-items: flex-end;
    gap: 40px;
}

.brand-block {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 24px;
    flex-shrink: 0;
}

.logo-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 4px;
    border-radius: 5px;
    border: 1px solid rgba(39, 129, 190, 0.45);
    box-shadow: 2px 1px 6px 0 rgba(39, 129, 190, 0.05), 0 0 0 3px rgba(39, 129, 190, 0.08);
    background: rgba(255, 255, 255, 0.06);
}

.logo-frame img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    display: block;
}

.brand-name {
    font-size: 21px;
    font-weight: 700;
    line-height: 1.1;
    color: #E5E6ED;
    letter-spacing: -0.02em;
    text-decoration: none;
}

.brand-name:focus {
    outline: 2px solid #5261DB;
    outline-offset: 4px;
    border-radius: 5px;
}

.primary-nav {
    flex: 1;
    display: flex;
    align-items: flex-end;
}

.primary-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 4px;
}

.primary-nav-list li {
    display: flex;
}

.nav-link {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-family: "JetBrains Mono", monospace;
    font-weight: 400;
    line-height: 1.4;
    color: rgba(229, 230, 237, 0.72);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 5px 5px 0 0;
    border: 1px solid transparent;
    border-bottom: none;
    transition: color 0.42s cubic-bezier(0.16, 1, 0.3, 1), background 0.42s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.42s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    position: relative;
}

.nav-link:hover {
    color: #E5E6ED;
    background: rgba(39, 129, 190, 0.10);
    border-color: rgba(39, 129, 190, 0.18);
}

.nav-link:focus {
    outline: 2px solid #5261DB;
    outline-offset: 2px;
}

.nav-link.active {
    color: #ffffff;
    background: rgba(39, 129, 190, 0.18);
    border-color: rgba(82, 97, 219, 0.35);
    border-bottom: 2px solid #2781BE;
    font-weight: 700;
}

.nav-accent-dot {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 40px;
    background: #2781BE;
    margin-left: 8px;
    flex-shrink: 0;
}

.site-footer {
    background: #0d1628;
    border-top: 1px solid rgba(39, 129, 190, 0.20);
}

.footer-inner {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding: 40px 24px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 320px;
}

.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 4px;
    border-radius: 5px;
    border: 1px solid rgba(39, 129, 190, 0.35);
    box-shadow: 2px 1px 6px 0 rgba(39, 129, 190, 0.05);
    background: rgba(255, 255, 255, 0.05);
}

.footer-logo-frame img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block;
}

.footer-brand-name {
    font-size: 21px;
    font-weight: 700;
    line-height: 1.1;
    color: #E5E6ED;
    letter-spacing: -0.02em;
}

.footer-description {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(229, 230, 237, 0.55);
    margin: 0;
}

.footer-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-family: "JetBrains Mono", monospace;
    line-height: 1.4;
    color: #2781BE;
    text-decoration: none;
    border-bottom: 1px solid rgba(39, 129, 190, 0.30);
    padding-bottom: 4px;
    transition: color 0.38s ease-in-out, border-color 0.38s ease-in-out;
}

.footer-contact-link:hover {
    color: #E5E6ED;
    border-color: rgba(229, 230, 237, 0.40);
}

.footer-contact-link:focus {
    outline: 2px solid #2781BE;
    outline-offset: 3px;
    border-radius: 5px;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 24px;
}

.footer-legal-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.footer-legal-link {
    font-size: 16px;
    font-family: "JetBrains Mono", monospace;
    line-height: 1.4;
    color: rgba(229, 230, 237, 0.45);
    text-decoration: none;
    transition: color 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-legal-link:hover {
    color: rgba(229, 230, 237, 0.85);
}

.footer-legal-link:focus {
    outline: 2px solid #5261DB;
    outline-offset: 3px;
    border-radius: 5px;
}

.footer-copyright {
    font-size: 16px;
    line-height: 1.4;
    color: rgba(229, 230, 237, 0.28);
    text-align: right;
}

.footer-divider {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 24px 24px 24px;
    border-top: 1px solid rgba(39, 129, 190, 0.10);
}

.footer-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 24px;
}

.footer-address {
    font-size: 16px;
    line-height: 1.4;
    color: rgba(229, 230, 237, 0.30);
    font-style: normal;
}

.consent-strip {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 4000;
    background: #0d1628;
    border-bottom: 2px solid rgba(39, 129, 190, 0.35);
    box-shadow: 2px 4px 25px 0 rgba(39, 129, 190, 0.10);
}

.consent-strip-inner {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.consent-text-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 220px;
}

.consent-headline {
    font-size: 16px;
    font-family: "JetBrains Mono", monospace;
    font-weight: 700;
    line-height: 1.4;
    color: #E5E6ED;
}

.consent-body {
    font-size: 16px;
    font-family: "JetBrains Mono", monospace;
    line-height: 1.4;
    color: rgba(229, 230, 237, 0.60);
}

.consent-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.consent-accept-btn {
    font-size: 16px;
    font-family: "JetBrains Mono", monospace;
    font-weight: 700;
    line-height: 1.4;
    color: #E5E6ED;
    background: transparent;
    border: 1px solid rgba(39, 129, 190, 0.60);
    border-radius: 5px;
    padding: 8px 24px;
    cursor: pointer;
    transition: background 0.40s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.40s cubic-bezier(0.16, 1, 0.3, 1), color 0.40s cubic-bezier(0.16, 1, 0.3, 1);
    min-height: 44px;
}

.consent-accept-btn:hover {
    background: rgba(39, 129, 190, 0.18);
    border-color: #2781BE;
    color: #ffffff;
}

.consent-accept-btn:focus {
    outline: 2px solid #2781BE;
    outline-offset: 3px;
}

.consent-reject-link {
    font-size: 16px;
    font-family: "JetBrains Mono", monospace;
    line-height: 1.4;
    color: rgba(229, 230, 237, 0.50);
    background: transparent;
    border: 1px solid rgba(229, 230, 237, 0.20);
    border-radius: 5px;
    padding: 8px 24px;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.50s ease-in-out, border-color 0.50s ease-in-out;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.consent-reject-link:hover {
    color: #E5E6ED;
    border-color: rgba(229, 230, 237, 0.45);
}

.consent-reject-link:focus {
    outline: 2px solid #5261DB;
    outline-offset: 3px;
}

.consent-manage-trigger {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 3900;
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 40px;
    background: #0d1628;
    border: 1px solid rgba(39, 129, 190, 0.45);
    box-shadow: 2px 4px 25px 0 rgba(39, 129, 190, 0.10);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: background 0.42s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.42s cubic-bezier(0.16, 1, 0.3, 1);
}

.consent-manage-trigger:hover {
    background: rgba(39, 129, 190, 0.15);
    border-color: #2781BE;
}

.consent-manage-trigger:focus {
    outline: 2px solid #2781BE;
    outline-offset: 3px;
}

.consent-manage-trigger svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #2781BE;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 768px) {
    .utility-bar-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 8px 12px;
    }

    .utility-badge {
        display: none;
    }

    .site-header-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 24px 12px 0 12px;
    }

    .brand-block {
        padding-bottom: 0;
    }

    .primary-nav {
        width: 100%;
    }

    .primary-nav-list {
        gap: 4px;
    }

    .nav-link {
        padding: 8px 12px;
        font-size: 16px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 24px;
        padding: 40px 12px;
    }

    .footer-right {
        align-items: flex-start;
        width: 100%;
    }

    .footer-legal-nav {
        align-items: flex-start;
    }

    .footer-copyright {
        text-align: left;
    }

    .footer-divider {
        padding: 0 12px 24px 12px;
    }

    .footer-bottom-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .consent-strip-inner {
        padding: 12px;
    }
}

@media (max-width: 320px) {
    .utility-contacts {
        gap: 8px;
    }

    .nav-link {
        padding: 8px;
        font-size: 16px;
    }
}

@media (min-width: 1440px) {

    .utility-bar-inner,
    .site-header-inner,
    .footer-inner,
    .footer-divider {
        padding-left: 40px;
        padding-right: 40px;
    }
}

.doc-info {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 40px;
    color: #2c2c2c;
    line-height: 1.7;
    font-size: 16px;
}

.doc-info ul,
.doc-info ol {
    padding-left: 24px;
    margin-top: 12px;
    margin-bottom: 24px;
}

.doc-info ul {
    list-style-type: disc;
}

.doc-info ol {
    list-style-type: decimal;
}

.doc-info ul ul,
.doc-info ol ol,
.doc-info ul ol,
.doc-info ol ul {
    margin-top: 8px;
    margin-bottom: 8px;
}

.doc-info li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 8px;
    color: #2c2c2c;
}

.doc-info li:last-child {
    margin-bottom: 0;
}

.doc-info strong,
.doc-info b {
    font-weight: 700;
    color: #1e1e2e;
}

.doc-info em,
.doc-info i {
    font-style: italic;
    color: #3a3a4a;
}

.doc-info a {
    color: #2781BE;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    transition: color 0.45s cubic-bezier(0.16, 1, 0.3, 1), text-decoration-color 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.doc-info a:hover {
    color: #5261DB;
    text-decoration-color: #5261DB;
}

.doc-info a:visited {
    color: #5261DB;
}

.doc-info table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 24px;
    margin-bottom: 40px;
    font-size: 16px;
    box-shadow: 2px 4px 25px 0 rgba(39, 129, 190, 0.10);
    border-radius: 5px;
    overflow: hidden;
}

.doc-info thead {
    background-color: #E5E6ED;
}

.doc-info thead tr {
    border-bottom: 2px solid #2781BE;
}

.doc-info tbody tr {
    border-bottom: 1px solid #E5E6ED;
    transition: background-color 0.38s ease-in-out;
}

.doc-info tbody tr:last-child {
    border-bottom: none;
}

.doc-info tbody tr:hover {
    background-color: #f4f5f9;
}

.doc-info th {
    padding: 12px 24px;
    text-align: left;
    font-size: 16px;
    font-weight: 700;
    color: #2781BE;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.doc-info td {
    padding: 12px 24px;
    font-size: 16px;
    line-height: 1.7;
    color: #2c2c2c;
    vertical-align: top;
}

.doc-info div {
    margin-bottom: 24px;
}

.doc-info div:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {
    .doc-info {
        padding: 40px 24px;
    }

    .doc-info table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 5px;
    }

    .doc-info th,
    .doc-info td {
        padding: 12px 12px;
        font-size: 16px;
    }

    .doc-info ul,
    .doc-info ol {
        padding-left: 24px;
    }
}

@media screen and (max-width: 320px) {
    .doc-info {
        padding: 24px 12px;
    }

    .doc-info th,
    .doc-info td {
        padding: 8px;
    }
}

.contact-us {
    background: #ffffff;
    overflow-x: clip;
}

.contact-us .reach-panel {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 24px 80px 24px;
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: stretch;
}

.contact-us .reach-left {
    width: 30%;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 40px 24px;
    background: linear-gradient(173deg, #2781BE 0%, #3a6fd4 45%, #5261DB 100%);
    background-size: 120% 120%;
    animation: bg-breathe 10s ease-in-out infinite;
    border-radius: 5px;
    box-shadow: 2px 10px 52px 0 rgba(39, 129, 190, 0.11);
    position: relative;
}

@keyframes bg-breathe {
    0% {
        background-size: 120% 120%;
    }

    50% {
        background-size: 140% 140%;
    }

    100% {
        background-size: 120% 120%;
    }
}

.contact-us .reach-left::before {
    content: "";
    position: absolute;
    inset: 6px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 5px;
    pointer-events: none;
}

.contact-us .reach-left::after {
    content: "";
    position: absolute;
    inset: 2px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 5px;
    pointer-events: none;
}

.contact-us .reach-label {
    font-size: 16px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.72);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.contact-us .reach-heading {
    font-size: 52px;
    line-height: 1.1;
    color: #ffffff;
    letter-spacing: -0.03em;
    font-weight: 900;
    margin: 0;
}

.contact-us .reach-desc {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
}

.contact-us .reach-detail-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.contact-us .reach-detail-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-us .reach-detail-label {
    font-size: 16px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 16px;
}

.contact-us .reach-detail-value {
    font-size: 16px;
    line-height: 1.4;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-us .reach-detail-value:hover {
    color: #E5E6ED;
}

.contact-us .reach-detail-value.address {
    font-style: normal;
}

.contact-us .reach-right {
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-us .form-card {
    background: #ffffff;
    border-radius: 5px;
    border: 1px solid #E5E6ED;
    box-shadow: 2px 4px 25px 0 rgba(82, 97, 219, 0.10);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-us .form-top {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 24px;
    border-bottom: 1px solid #E5E6ED;
}

.contact-us .form-eyebrow {
    font-size: 16px;
    line-height: 1.4;
    color: #5261DB;
    font-style: italic;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.contact-us .form-heading {
    font-size: 21px;
    line-height: 1.4;
    color: #1a2540;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0;
}

.contact-us .form-subtext {
    font-size: 16px;
    line-height: 1.7;
    color: #3d4a5c;
    margin: 0;
}

.contact-us .field-row {
    display: flex;
    flex-direction: row;
    gap: 24px;
}

.contact-us .field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.contact-us .field-group.full {
    flex: 1 1 100%;
}

.contact-us .field-label {
    font-size: 16px;
    line-height: 1.4;
    color: #2a3347;
    font-weight: 600;
}

.contact-us .field-input {
    border: 1px solid #c8cdd8;
    border-radius: 5px;
    padding: 12px 16px;
    font-size: 16px;
    line-height: 1.4;
    color: #1e2a3a;
    background: #ffffff;
    transition: border-color 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: inset 0 2px 4px 0 rgba(39, 129, 190, 0.04);
    outline: none;
    width: 100%;
    box-sizing: border-box;
}

.contact-us .field-input::placeholder {
    color: #8a95a8;
}

.contact-us .field-input:focus {
    border-color: #2781BE;
    box-shadow: inset 0 2px 4px 0 rgba(39, 129, 190, 0.06), 0 0 0 3px rgba(39, 129, 190, 0.12);
}

.contact-us .size-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-us .size-label-main {
    font-size: 16px;
    line-height: 1.4;
    color: #2a3347;
    font-weight: 600;
}

.contact-us .size-options {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
}

.contact-us .size-option {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.contact-us .size-option input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: #2781BE;
    cursor: pointer;
    flex-shrink: 0;
}

.contact-us .size-option-label {
    font-size: 16px;
    line-height: 1.4;
    color: #2a3347;
    cursor: pointer;
    padding: 8px 16px;
    border: 1px solid #c8cdd8;
    border-radius: 40px;
    transition: border-color 0.4s ease-in-out, background 0.4s ease-in-out, color 0.4s ease-in-out;
    user-select: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.contact-us .size-option input[type="radio"]:checked+.size-option-label {
    border-color: #2781BE;
    background: rgba(39, 129, 190, 0.07) !important;
    color: #2781BE;
    font-weight: 700;
}

.contact-us .size-option input[type="radio"] {
    display: none;
}

.contact-us .privacy-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: #f4f6fb;
    border-radius: 5px;
}

.contact-us .privacy-checkbox {
    width: 18px;
    height: 18px;
    accent-color: #2781BE;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-us .privacy-text {
    font-size: 16px;
    line-height: 1.7;
    color: #3d4a5c;
    margin: 0;
}

.contact-us .privacy-link {
    color: #2781BE;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-us .privacy-link:hover {
    color: #5261DB;
}

.contact-us .submit-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
}

.contact-us .submit-button {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    background: #2781BE;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    padding: 12px 40px;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.02em;
    transition: background 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 2px 4px 25px 0 rgba(39, 129, 190, 0.10);
    position: relative;
    overflow: hidden;
}

.contact-us .submit-button:hover {
    background: #5261DB;
    box-shadow: 2px 10px 52px 0 rgba(82, 97, 219, 0.11);
}

.contact-us .submit-button:focus {
    outline: 3px solid rgba(39, 129, 190, 0.4);
    outline-offset: 2px;
}

.contact-us .submit-button:active {
    background: #1f6aa0;
}

.contact-us .submit-arrow {
    display: inline-block;
    width: 18px;
    height: 18px;
    position: relative;
    flex-shrink: 0;
}

.contact-us .submit-arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 14px;
    height: 2px;
    background: #ffffff;
    transform: translateY(-50%);
}

.contact-us .submit-arrow::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 7px;
    height: 7px;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    transform: translateY(-50%) rotate(45deg);
}

.contact-us .submit-note {
    font-size: 16px;
    line-height: 1.4;
    color: #6a7589;
}

.contact-us .info-strip {
    background: #f0f3f9;
    border-top: 1px solid #E5E6ED;
    padding: 80px 24px;
}

.contact-us .info-strip-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 0;
    align-items: stretch;
}

.contact-us .info-left-block {
    width: 30%;
    padding-right: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
}

.contact-us .info-left-heading {
    font-size: 52px;
    line-height: 1.1;
    color: #2781BE;
    font-weight: 900;
    letter-spacing: -0.03em;
    margin: 0;
}

.contact-us .info-left-body {
    font-size: 16px;
    line-height: 1.7;
    color: #3d4a5c;
    margin: 0;
}

.contact-us .info-right-block {
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-us .checklist-card {
    background: #ffffff;
    border-radius: 5px;
    border: 1px solid #E5E6ED;
    box-shadow: 2px 1px 6px 0 rgba(39, 129, 190, 0.05);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
}

.contact-us .checklist-card::before {
    content: "";
    position: absolute;
    inset: 4px;
    border: 1px solid rgba(39, 129, 190, 0.08);
    border-radius: 5px;
    pointer-events: none;
}

.contact-us .checklist-progress-bar {
    height: 6px;
    background: #E5E6ED;
    border-radius: 40px;
    overflow: hidden;
}

.contact-us .checklist-progress-fill {
    height: 100%;
    width: 71.4%;
    background: linear-gradient(173deg, #2781BE 0%, #4070d4 50%, #5261DB 100%);
    border-radius: 40px;
    transition: width 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-us .checklist-progress-label {
    font-size: 16px;
    line-height: 1.4;
    color: #5261DB;
    font-weight: 700;
}

.contact-us .checklist-heading {
    font-size: 21px;
    line-height: 1.4;
    color: #1e2a3a;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0;
}

.contact-us .checklist-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-us .checklist-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    line-height: 1.7;
    color: #2a3347;
}

.contact-us .check-icon {
    width: 20px;
    height: 20px;
    border-radius: 40px;
    flex-shrink: 0;
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.contact-us .check-icon.done {
    background: #2781BE;
}

.contact-us .check-icon.done::before {
    content: "";
    width: 5px;
    height: 9px;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: rotate(45deg) translate(-1px, -1px);
    display: block;
}

.contact-us .check-icon.pending {
    background: #E5E6ED;
    border: 2px solid #c8cdd8;
}

.contact-us .checklist-item.item-done {
    color: #2a3347;
}

.contact-us .checklist-item.item-pending {
    color: #6a7589;
}

.contact-us .image-strip {
    display: flex;
    flex-direction: row;
    gap: 24px;
}

.contact-us .image-frame {
    flex: 1;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 2px 4px 25px 0 rgba(39, 129, 190, 0.10);
    position: relative;
}

.contact-us .image-frame img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), filter 0.55s cubic-bezier(0.16, 1, 0.3, 1);
    filter: saturate(0.7) brightness(0.95);
}

.contact-us .image-frame:hover img {
    transform: scale(1.04);
    filter: saturate(0.85) brightness(1.0);
}

.contact-us .image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(39, 129, 190, 0.82) 0%, rgba(82, 97, 219, 0.0) 100%);
    padding: 24px 16px 12px 16px;
    font-size: 16px;
    line-height: 1.4;
    color: #ffffff;
    font-weight: 600;
    pointer-events: none;
}

.contact-us .image-frame-reveal {
    clip-path: inset(0 0 0 0);
    transition: clip-path 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-us .image-frame:hover .image-frame-reveal {
    clip-path: inset(0 0 0 0 round 5px);
}

@media (max-width: 768px) {
    .contact-us .reach-panel {
        flex-direction: column;
        padding: 40px 16px;
        gap: 24px;
    }

    .contact-us .reach-left {
        width: 100%;
        min-width: unset;
        box-sizing: border-box;
    }

    .contact-us .reach-right {
        width: 100%;
    }

    .contact-us .reach-heading {
        font-size: 52px;
    }

    .contact-us .form-card {
        padding: 24px 16px;
    }

    .contact-us .field-row {
        flex-direction: column;
        gap: 16px;
    }

    .contact-us .info-strip {
        padding: 40px 16px;
    }

    .contact-us .info-strip-inner {
        flex-direction: column;
        gap: 24px;
    }

    .contact-us .info-left-block {
        width: 100%;
        padding-right: 0;
    }

    .contact-us .info-right-block {
        width: 100%;
    }

    .contact-us .info-left-heading {
        font-size: 52px;
    }

    .contact-us .image-strip {
        flex-direction: column;
    }

    .contact-us .size-options {
        flex-direction: column;
    }

    .contact-us .submit-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

@media (max-width: 320px) {
    .contact-us .reach-heading {
        font-size: 52px;
    }

    .contact-us .form-card {
        padding: 16px 12px;
    }
}

@media (min-width: 1024px) {
    .contact-us .reach-left {
        padding: 40px 32px;
    }
}

.partners-page {
    background: #ffffff;
    overflow-x: clip;
}

.partners-page *,
.partners-page *::before,
.partners-page *::after {
    box-sizing: border-box;
}

.partners-page .page-collection {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.partners-page .double-divider {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0;
    padding: 0;
    border: none;
}

.partners-page .double-divider .line-top {
    height: 2px;
    background: #2781BE;
    display: block;
}

.partners-page .double-divider .line-gap {
    height: 4px;
    background: #E5E6ED;
    display: block;
}

.partners-page .double-divider .line-bottom {
    height: 1px;
    background: #5261DB;
    display: block;
}

.partners-page .page-lead {
    position: relative;
    padding: 80px 0 80px;
    background: linear-gradient(173deg, transparent 0%, transparent 30%, #E5E6ED 68%, #2781BE 100%);
    overflow: hidden;
}

.partners-page .page-lead .lead-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.partners-page .page-lead .shape-diagonal {
    position: absolute;
    top: -40px;
    right: 120px;
    width: 1px;
    height: 140%;
    background: linear-gradient(173deg, transparent 0%, #2781BE 40%, #5261DB 70%, transparent 100%);
    opacity: 0.18;
    transform: rotate(14deg);
    transform-origin: top center;
}

.partners-page .page-lead .shape-circle {
    position: absolute;
    bottom: -60px;
    right: -30px;
    width: 220px;
    height: 220px;
    border-radius: 40px;
    border: 2px solid #5261DB;
    opacity: 0.10;
}

.partners-page .page-lead .shape-square {
    position: absolute;
    top: 40px;
    right: 60px;
    width: 80px;
    height: 80px;
    border-radius: 5px;
    border: 1px solid #2781BE;
    opacity: 0.13;
    transform: rotate(22deg);
}

.partners-page .lead-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.partners-page .lead-text {
    max-width: 520px;
}

.partners-page .lead-label {
    display: inline-block;
    font-size: 16px;
    line-height: 1.4;
    color: #5261DB;
    font-style: italic;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.04em;
}

.partners-page .lead-heading {
    font-size: 52px;
    line-height: 1.1;
    color: #1a2340;
    font-weight: 900;
    letter-spacing: -0.03em;
    margin: 0 0 24px;
}

.partners-page .lead-heading .marked-word {
    color: #2781BE;
    font-style: italic;
    text-decoration: underline;
    text-decoration-color: #5261DB;
    text-underline-offset: 4px;
}

.partners-page .lead-body {
    font-size: 16px;
    line-height: 1.7;
    color: #2c3345;
    margin: 0 0 24px;
}

.partners-page .lead-body .paragraph-number {
    font-weight: 700;
    color: #2781BE;
    margin-right: 8px;
}

.partners-page .lead-stat-group {
    display: flex;
    flex-direction: row;
    gap: 24px;
    margin-top: 40px;
}

.partners-page .stat-shape {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 96px;
    border-radius: 5px;
    border: 2.5px solid #2781BE;
    background: #ffffff;
    box-shadow: 2px 4px 25px 0 rgba(39, 129, 190, 0.10);
    position: relative;
}

.partners-page .stat-shape .stat-number {
    font-size: 21px;
    line-height: 1.1;
    font-weight: 900;
    color: #2781BE;
    letter-spacing: -0.02em;
}

.partners-page .stat-shape .stat-label {
    font-size: 16px;
    line-height: 1.4;
    color: #2c3345;
    text-align: center;
    padding: 0 4px;
}

.partners-page .lead-image-area {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 2px 10px 52px 0 rgba(39, 129, 190, 0.11);
}

.partners-page .lead-image-area img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 5px;
}

.partners-page .lead-image-area .image-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(90deg, rgba(39, 129, 190, 0.55) 0%, rgba(82, 97, 219, 0.18) 60%, transparent 100%);
    border-radius: 5px 0 0 5px;
    pointer-events: none;
}

.partners-page .partner-list-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
}

.partners-page .partner-list-section .section-diagonal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.partners-page .partner-list-section .section-diagonal::after {
    content: '';
    position: absolute;
    top: -80px;
    left: -40px;
    width: 2px;
    height: 120%;
    background: linear-gradient(173deg, transparent, #E5E6ED 40%, transparent);
    transform: rotate(8deg);
    opacity: 0.7;
}

.partners-page .section-header-row {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 40px;
}

.partners-page .section-heading-block {
    flex: 1;
}

.partners-page .section-heading {
    font-size: 52px;
    line-height: 1.1;
    color: #1a2340;
    font-weight: 900;
    letter-spacing: -0.03em;
    margin: 0 0 12px;
}

.partners-page .section-heading .accent-italic {
    color: #5261DB;
    font-style: italic;
}

.partners-page .section-subtext {
    font-size: 16px;
    line-height: 1.7;
    color: #2c3345;
    max-width: 480px;
    margin: 0;
}

.partners-page .section-subtext .paragraph-number {
    font-weight: 700;
    color: #5261DB;
    margin-right: 8px;
}

.partners-page .partner-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.partners-page .partner-card {
    background: #ffffff;
    border-radius: 5px;
    border: 1.5px solid #E5E6ED;
    padding: 40px 24px 24px;
    box-shadow: 2px 1px 6px 0 rgba(39, 129, 190, 0.05);
    transition: box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.partners-page .partner-card:hover {
    box-shadow: 2px 10px 52px 0 rgba(82, 97, 219, 0.11);
    border-color: #2781BE;
    transform: translateY(-4px);
}

.partners-page .partner-card .card-accent-line {
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 3px;
    background: linear-gradient(90deg, #2781BE 0%, #5261DB 100%);
    border-radius: 0 0 5px 5px;
    opacity: 0;
    transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.partners-page .partner-card:hover .card-accent-line {
    opacity: 1;
}

.partners-page .partner-card .card-type {
    font-size: 16px;
    line-height: 1.4;
    color: #5261DB;
    font-weight: 700;
    font-style: italic;
    letter-spacing: 0.03em;
}

.partners-page .partner-card .card-name {
    font-size: 21px;
    line-height: 1.1;
    color: #1a2340;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin: 0;
}

.partners-page .partner-card .card-description {
    font-size: 16px;
    line-height: 1.7;
    color: #2c3345;
    margin: 0;
    flex: 1;
}

.partners-page .partner-card .card-detail {
    font-size: 16px;
    line-height: 1.4;
    color: #2781BE;
    font-weight: 600;
    margin-top: 8px;
}

.partners-page .cooperation-section {
    padding: 80px 0;
    position: relative;
    background: #E5E6ED;
}

@keyframes brightness-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.93;
    }
}

.partners-page .cooperation-section .bg-pulse {
    position: absolute;
    inset: 0;
    background: #E5E6ED;
    animation: brightness-pulse 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.partners-page .cooperation-section .section-diagonal-line {
    position: absolute;
    top: 0;
    right: 200px;
    width: 1px;
    height: 100%;
    background: linear-gradient(173deg, transparent 0%, #2781BE 50%, transparent 100%);
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
}

.partners-page .cooperation-inner {
    position: relative;
    z-index: 1;
}

.partners-page .cooperation-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

.partners-page .cooperation-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.partners-page .cooperation-heading {
    font-size: 52px;
    line-height: 1.1;
    color: #1a2340;
    font-weight: 900;
    letter-spacing: -0.03em;
    margin: 0 0 12px;
}

.partners-page .cooperation-heading .accent-italic {
    color: #2781BE;
    font-style: italic;
}

.partners-page .cooperation-intro {
    font-size: 16px;
    line-height: 1.7;
    color: #2c3345;
    margin: 0;
}

.partners-page .cooperation-intro .paragraph-number {
    font-weight: 700;
    color: #2781BE;
    margin-right: 8px;
}

.partners-page .step-tracker {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.partners-page .step-tracker-row {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0;
}

.partners-page .step-number-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40px;
    flex-shrink: 0;
}

.partners-page .step-circle {
    width: 40px;
    height: 40px;
    border-radius: 40px;
    background: linear-gradient(173deg, #2781BE 0%, #5261DB 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 900;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 2px 4px 25px 0 rgba(39, 129, 190, 0.10);
    position: relative;
    z-index: 1;
}

.partners-page .step-connector {
    width: 2px;
    flex: 1;
    background: linear-gradient(180deg, #2781BE 0%, #E5E6ED 100%);
    margin: 0 auto;
    min-height: 24px;
}

.partners-page .step-tracker-row:last-child .step-connector {
    display: none;
}

.partners-page .step-content {
    padding: 0 0 24px 24px;
    flex: 1;
}

.partners-page .step-title {
    font-size: 21px;
    line-height: 1.1;
    font-weight: 900;
    color: #1a2340;
    letter-spacing: -0.02em;
    margin: 8px 0 8px;
}

.partners-page .step-text {
    font-size: 16px;
    line-height: 1.7;
    color: #2c3345;
    margin: 0;
}

.partners-page .cooperation-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.partners-page .right-image-block {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 2px 10px 52px 0 rgba(82, 97, 219, 0.11);
}

.partners-page .right-image-block img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    border-radius: 5px;
}

.partners-page .right-image-block .photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(173deg, rgba(82, 97, 219, 0.22) 0%, rgba(39, 129, 190, 0.12) 50%, transparent 100%);
    border-radius: 5px;
    pointer-events: none;
}

.partners-page .contact-prompt {
    background: #ffffff;
    border-radius: 5px;
    padding: 24px;
    box-shadow: 2px 4px 25px 0 rgba(39, 129, 190, 0.10);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.partners-page .contact-prompt .prompt-heading {
    font-size: 21px;
    line-height: 1.1;
    font-weight: 900;
    color: #1a2340;
    letter-spacing: -0.02em;
    margin: 0;
}

.partners-page .contact-prompt .prompt-text {
    font-size: 16px;
    line-height: 1.7;
    color: #2c3345;
    margin: 0;
}

.partners-page .contact-prompt .prompt-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
    color: #2781BE;
    text-decoration: none;
    transition: color 0.45s cubic-bezier(0.16, 1, 0.3, 1), gap 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.partners-page .contact-prompt .prompt-link:hover {
    color: #5261DB;
    gap: 12px;
}

.partners-page .contact-prompt .prompt-link .link-arrow {
    display: inline-block;
    width: 20px;
    height: 20px;
    position: relative;
}

.partners-page .contact-prompt .prompt-link .link-arrow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 14px;
    height: 2px;
    background: currentColor;
    transform: translateY(-50%);
}

.partners-page .contact-prompt .prompt-link .link-arrow::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 6px;
    height: 6px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: translateY(-50%) rotate(45deg);
}

@keyframes gradient-angle-cycle {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.partners-page .animated-gradient-bg {
    background: linear-gradient(173deg, #2781BE, #5261DB, #E5E6ED, #2781BE);
    background-size: 300% 300%;
    animation: gradient-angle-cycle 8s ease-in-out infinite;
}

.partners-page .gradient-badge {
    display: inline-block;
    border-radius: 5px;
    padding: 4px 12px;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.03em;
    margin-bottom: 12px;
}

@media (max-width: 1024px) {
    .partners-page .lead-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .partners-page .lead-text {
        max-width: 100%;
    }

    .partners-page .lead-heading {
        font-size: 52px;
    }

    .partners-page .partner-cards {
        grid-template-columns: 1fr 1fr;
    }

    .partners-page .cooperation-layout {
        grid-template-columns: 1fr;
    }

    .partners-page .cooperation-right {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .partners-page .lead-heading {
        font-size: 52px;
    }

    .partners-page .section-heading {
        font-size: 52px;
    }

    .partners-page .cooperation-heading {
        font-size: 52px;
    }

    .partners-page .partner-cards {
        grid-template-columns: 1fr;
    }

    .partners-page .section-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .partners-page .lead-stat-group {
        gap: 12px;
    }

    .partners-page .cooperation-right {
        grid-template-columns: 1fr;
    }

    .partners-page .page-lead {
        padding: 40px 0;
    }

    .partners-page .partner-list-section {
        padding: 40px 0;
    }

    .partners-page .cooperation-section {
        padding: 40px 0;
    }
}

@media (max-width: 320px) {
    .partners-page .lead-heading {
        font-size: 21px;
    }

    .partners-page .section-heading {
        font-size: 21px;
    }

    .partners-page .cooperation-heading {
        font-size: 21px;
    }

    .partners-page .stat-shape {
        width: 80px;
        height: 80px;
    }

    .partners-page .lead-stat-group {
        flex-wrap: wrap;
    }
}

.about-us-page {
    max-width: 100%;
    overflow-x: hidden;
}

.about-us-page .page-limiter {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

@keyframes dropIn {
    from {
        opacity: 0;
        transform: translateY(-28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-us-page .drop-item-1 {
    animation: dropIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.08s both;
}

.about-us-page .drop-item-2 {
    animation: dropIn 0.48s cubic-bezier(0.16, 1, 0.3, 1) 0.18s both;
}

.about-us-page .drop-item-3 {
    animation: dropIn 0.52s cubic-bezier(0.16, 1, 0.3, 1) 0.28s both;
}

.about-us-page .drop-item-4 {
    animation: dropIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.38s both;
}

.about-us-page .title-row {
    padding-top: 80px;
    padding-bottom: 40px;
    background-color: #f4f5f8;
    position: relative;
}

.about-us-page .title-row-bg-stripe {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.about-us-page .title-row-bg-stripe::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -80px;
    width: 520px;
    height: 520px;
    background: repeating-linear-gradient(173deg,
            transparent,
            transparent 18px,
            rgba(39, 129, 190, 0.045) 18px,
            rgba(39, 129, 190, 0.045) 19px);
}

.about-us-page .title-row-inner {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 40px;
}

.about-us-page .title-text-area {
    flex: 1 1 0;
    min-width: 0;
    padding-bottom: 40px;
}

.about-us-page .title-label {
    font-size: 16px;
    line-height: 1.4;
    color: #2781BE;
    font-style: italic;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 12px;
}

.about-us-page .title-heading {
    font-size: 68px;
    line-height: 1.1;
    letter-spacing: -0.025em;
    font-weight: 900;
    color: #1b2340;
    margin-bottom: 24px;
}

.about-us-page .title-heading .accent-word {
    color: #2781BE;
    font-style: italic;
}

.about-us-page .title-counter-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}

.about-us-page .counter-badge {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 12px 24px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 2px 4px 25px 0 rgba(39, 129, 190, 0.10);
}

.about-us-page .counter-number {
    font-size: 52px;
    line-height: 1.1;
    font-weight: 900;
    color: #5261DB;
    letter-spacing: -0.02em;
}

.about-us-page .counter-label {
    font-size: 16px;
    line-height: 1.4;
    color: #3a3f5c;
}

.about-us-page .title-desc {
    font-size: 21px;
    line-height: 1.7;
    color: #3a3f5c;
    max-width: 540px;
}

.about-us-page .title-image-strip {
    width: 220px;
    flex-shrink: 0;
    align-self: stretch;
    display: flex;
    align-items: flex-end;
}

.about-us-page .title-image-clip {
    width: 220px;
    height: 340px;
    overflow: hidden;
    border-radius: 40px 5px 40px 5px;
    clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
    box-shadow: 2px 10px 52px 0 rgba(39, 129, 190, 0.11);
}

.about-us-page .title-image-clip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-us-page .title-image-clip:hover img {
    transform: scale(1.04);
}

.about-us-page .divider-line {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 0 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.about-us-page .divider-rule {
    flex: 1 1 0;
    height: 1px;
    background: linear-gradient(173deg, #E5E6ED 0%, #2781BE 60%, #E5E6ED 100%);
}

.about-us-page .divider-diamond {
    width: 10px;
    height: 10px;
    background: #2781BE;
    transform: rotate(45deg);
    border-radius: 2px;
    flex-shrink: 0;
}

.about-us-page .story-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background: #fff;
}

.about-us-page .story-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 80px;
    align-items: start;
}

.about-us-page .story-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-us-page .story-sidebar-label {
    font-size: 16px;
    line-height: 1.4;
    color: #5261DB;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.about-us-page .story-sidebar-heading {
    font-size: 52px;
    line-height: 1.1;
    font-weight: 900;
    color: #1b2340;
    letter-spacing: -0.02em;
}

.about-us-page .story-sidebar-img {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 2px 4px 25px 0 rgba(82, 97, 219, 0.10);
}

.about-us-page .story-sidebar-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.48s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-us-page .story-sidebar-img:hover img {
    transform: scale(1.03);
}

.about-us-page .story-paragraphs {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 8px;
}

.about-us-page .story-para {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: baseline;
}

.about-us-page .para-num {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
    color: #2781BE;
    flex-shrink: 0;
    width: 24px;
}

.about-us-page .para-text {
    font-size: 16px;
    line-height: 1.7;
    color: #3a3f5c;
}

.about-us-page .para-text .accent-italic {
    color: #5261DB;
    font-style: italic;
    font-weight: 600;
}

.about-us-page .noise-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #1b2340;
    position: relative;
}

.about-us-page .noise-section .noise-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.about-us-page .noise-section .noise-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    background-repeat: repeat;
    opacity: 0.55;
}

.about-us-page .noise-section .noise-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(173deg, rgba(39, 129, 190, 0.18) 0%, rgba(27, 35, 64, 0) 55%, rgba(82, 97, 219, 0.12) 100%);
    pointer-events: none;
}

.about-us-page .team-heading-row {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 24px;
}

.about-us-page .team-heading {
    font-size: 52px;
    line-height: 1.1;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.02em;
}

.about-us-page .team-heading .accent-blue {
    color: #2781BE;
    font-style: italic;
}

.about-us-page .team-sub {
    font-size: 16px;
    line-height: 1.7;
    color: #a8b0cc;
    max-width: 320px;
    text-align: right;
}

.about-us-page .team-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.about-us-page .team-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 5px;
    padding: 24px;
    box-shadow: 2px 1px 6px 0 rgba(39, 129, 190, 0.05);
    transition: background 0.42s ease-in-out, box-shadow 0.42s ease-in-out;
}

.about-us-page .team-card:hover {
    background: rgba(39, 129, 190, 0.13);
    box-shadow: 2px 4px 25px 0 rgba(39, 129, 190, 0.10);
}

.about-us-page .team-card-role {
    font-size: 16px;
    line-height: 1.4;
    color: #2781BE;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.about-us-page .team-card-name {
    font-size: 21px;
    line-height: 1.4;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.about-us-page .team-card-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #a8b0cc;
}

.about-us-page .approach-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background: #E5E6ED;
}

.about-us-page .approach-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
    gap: 12px;
}

.about-us-page .approach-eyebrow {
    font-size: 16px;
    line-height: 1.4;
    color: #5261DB;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.about-us-page .approach-heading {
    font-size: 52px;
    line-height: 1.1;
    font-weight: 900;
    color: #1b2340;
    letter-spacing: -0.02em;
}

.about-us-page .approach-heading .accent-italic {
    color: #5261DB;
    font-style: italic;
}

.about-us-page .approach-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 40px;
    align-items: start;
}

.about-us-page .approach-image-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-us-page .approach-img-wrap {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 40px 5px 5px 40px;
    box-shadow: 2px 10px 52px 0 rgba(82, 97, 219, 0.11);
}

.about-us-page .approach-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.52s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-us-page .approach-img-wrap:hover img {
    transform: scale(1.03);
}

.about-us-page .approach-stat-box {
    background: #fff;
    border-radius: 5px;
    padding: 24px;
    box-shadow: 2px 4px 25px 0 rgba(39, 129, 190, 0.10);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.about-us-page .approach-stat-num {
    font-size: 52px;
    line-height: 1.1;
    font-weight: 900;
    color: #2781BE;
    letter-spacing: -0.02em;
}

.about-us-page .approach-stat-label {
    font-size: 16px;
    line-height: 1.4;
    color: #3a3f5c;
}

.about-us-page .approach-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-us-page .approach-step {
    background: #fff;
    border-radius: 5px;
    padding: 24px;
    box-shadow: 2px 1px 6px 0 rgba(39, 129, 190, 0.05);
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: flex-start;
    transition: box-shadow 0.38s ease-in-out;
}

.about-us-page .approach-step:hover {
    box-shadow: 2px 4px 25px 0 rgba(82, 97, 219, 0.10);
}

.about-us-page .step-num-circle {
    width: 40px;
    height: 40px;
    border-radius: 40px;
    background: linear-gradient(173deg, #2781BE 0%, #5261DB 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-us-page .step-num-text {
    font-size: 16px;
    line-height: 1.1;
    font-weight: 900;
    color: #fff;
}

.about-us-page .step-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.about-us-page .step-title {
    font-size: 21px;
    line-height: 1.4;
    font-weight: 800;
    color: #1b2340;
    letter-spacing: -0.01em;
}

.about-us-page .step-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #3a3f5c;
}

@media (max-width: 1024px) {
    .about-us-page .title-heading {
        font-size: 52px;
    }

    .about-us-page .story-grid {
        grid-template-columns: 1fr 300px;
        gap: 40px;
    }

    .about-us-page .team-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-us-page .approach-layout {
        grid-template-columns: 260px 1fr;
    }
}

@media (max-width: 768px) {
    .about-us-page .title-row {
        padding-top: 40px;
        padding-bottom: 24px;
    }

    .about-us-page .title-row-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .about-us-page .title-heading {
        font-size: 52px;
    }

    .about-us-page .title-image-strip {
        width: 100%;
        align-self: auto;
    }

    .about-us-page .title-image-clip {
        width: 100%;
        height: 220px;
    }

    .about-us-page .title-text-area {
        padding-bottom: 0;
    }

    .about-us-page .story-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-us-page .story-sidebar-heading {
        font-size: 21px;
    }

    .about-us-page .team-cards {
        grid-template-columns: 1fr;
    }

    .about-us-page .team-heading-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-us-page .team-sub {
        text-align: left;
    }

    .about-us-page .team-heading {
        font-size: 21px;
    }

    .about-us-page .approach-layout {
        grid-template-columns: 1fr;
    }

    .about-us-page .approach-img-wrap {
        aspect-ratio: 16/9;
        border-radius: 5px;
    }

    .about-us-page .approach-heading {
        font-size: 21px;
    }

    .about-us-page .story-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .about-us-page .noise-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .about-us-page .approach-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

@media (max-width: 320px) {
    .about-us-page .title-heading {
        font-size: 21px;
    }

    .about-us-page .counter-number {
        font-size: 21px;
    }

    .about-us-page .title-counter-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

.launch {
    max-width: 100%;
    overflow-x: hidden;
}

.launch .centered-column {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
}

.launch .centered-column.narrow {
    max-width: 720px;
}

.launch .text-massive {
    font-size: 68px;
    line-height: 1.1;
    letter-spacing: -0.03em;
    font-weight: 900;
}

.launch .text-large {
    font-size: 52px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 900;
}

.launch .text-medium {
    font-size: 21px;
    line-height: 1.4;
}

.launch .text-body {
    font-size: 16px;
    line-height: 1.7;
    color: #2a2a35;
}

.launch .text-accent {
    color: #2781BE;
    font-style: italic;
}

.launch .text-secondary-accent {
    color: #5261DB;
    font-style: italic;
}

.launch .numbered-para {
    display: flex;
    flex-direction: row;
    gap: 24px;
    margin-bottom: 24px;
}

.launch .para-number {
    font-size: 16px;
    color: #2781BE;
    font-weight: 700;
    min-width: 24px;
    padding-top: 4px;
}

.launch .btn-arrow {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #2781BE;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: color 0.45s cubic-bezier(0.16, 1, 0.3, 1), gap 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.launch .btn-arrow:hover {
    color: #5261DB;
    gap: 12px;
}

.launch .btn-arrow .arrow-indicator {
    display: inline-block;
    width: 20px;
    height: 20px;
    position: relative;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.launch .btn-arrow:hover .arrow-indicator {
    transform: translateX(4px);
}

.launch .btn-arrow .arrow-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 16px;
    height: 2px;
    background: currentColor;
    transform: translateY(-50%);
}

.launch .btn-arrow .arrow-indicator::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 7px;
    height: 7px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: translateY(-50%) rotate(45deg);
}

.launch .title-block {
    background: #ffffff;
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
}

.launch .title-block .centered-column {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 40px;
}

.launch .title-image-strip {
    width: 120px;
    flex-shrink: 0;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

.launch .title-image-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
    display: block;
    animation: imgSlowZoom 7s ease-in-out infinite alternate;
}

@keyframes imgSlowZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.07);
    }
}

.launch .title-text-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    position: relative;
}

.launch .title-faded-number {
    position: absolute;
    top: -24px;
    right: 0;
    font-size: 200px;
    font-weight: 900;
    color: #E5E6ED;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    letter-spacing: -0.05em;
}

.launch .title-text-area .title-heading {
    position: relative;
    z-index: 1;
}

.launch .title-text-area .title-desc {
    position: relative;
    z-index: 1;
    max-width: 580px;
}

.launch .title-notch {
    position: relative;
    padding-left: 24px;
}

.launch .title-notch::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    background: linear-gradient(173deg, #2781BE 0%, #5261DB 60%, #E5E6ED 100%);
    border-radius: 40px;
}

.launch .elastic-enter {
    animation: elasticEntrance 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes elasticEntrance {
    0% {
        opacity: 0;
        transform: translateY(32px) scale(0.97);
    }

    60% {
        opacity: 1;
        transform: translateY(-6px) scale(1.01);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.launch .elastic-enter.delay-1 {
    animation-delay: 0.1s;
}

.launch .elastic-enter.delay-2 {
    animation-delay: 0.22s;
}

.launch .elastic-enter.delay-3 {
    animation-delay: 0.35s;
}

.launch .concentric-decor {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.launch .concentric-decor .circle {
    position: absolute;
    border-radius: 40px;
    border: 1px solid #2781BE;
    opacity: 0.07;
}

.launch .concentric-decor .circle-1 {
    width: 80px;
    height: 80px;
    top: 60px;
    left: 60px;
}

.launch .concentric-decor .circle-2 {
    width: 130px;
    height: 130px;
    top: 35px;
    left: 35px;
}

.launch .concentric-decor .circle-3 {
    width: 180px;
    height: 180px;
    top: 10px;
    left: 10px;
}

.launch .divider-triangle {
    display: block;
    width: 100%;
    line-height: 0;
}

.launch .professional-context {
    background: linear-gradient(173deg, #f4f7fb 0%, #eef0f8 55%, #E5E6ED 100%);
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
}

.launch .context-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 40px;
    align-items: start;
}

.launch .context-image-wrap {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 2px 4px 25px 0 rgba(39, 129, 190, 0.10);
    position: relative;
}

.launch .context-image-wrap img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.launch .context-image-wrap:hover img {
    transform: scale(1.04);
}

.launch .context-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.launch .context-heading {
    color: #2a2a35;
}

.launch .metrics-row {
    display: flex;
    flex-direction: row;
    gap: 24px;
    flex-wrap: wrap;
}

.launch .metric-item {
    background: #ffffff;
    border-radius: 5px;
    padding: 24px;
    flex: 1;
    min-width: 120px;
    box-shadow: 2px 1px 6px 0 rgba(39, 129, 190, 0.05);
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.launch .metric-item:hover {
    box-shadow: 2px 10px 52px 0 rgba(39, 129, 190, 0.11);
    transform: translateY(-3px);
}

.launch .metric-value {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    color: #2781BE;
    letter-spacing: -0.02em;
}

.launch .metric-label {
    font-size: 16px;
    line-height: 1.4;
    color: #2a2a35;
}

.launch .client-patterns {
    background: #ffffff;
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
}

.launch .client-patterns .centered-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.launch .patterns-heading-row {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 40px;
}

.launch .patterns-heading-text {
    flex: 1;
}

.launch .patterns-image-aside {
    width: 280px;
    flex-shrink: 0;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 2px 4px 25px 0 rgba(82, 97, 219, 0.10);
}

.launch .patterns-image-aside img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease-in-out;
}

.launch .patterns-image-aside:hover img {
    transform: scale(1.05);
}

.launch .pattern-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}

.launch .pattern-card {
    border-radius: 5px;
    padding: 24px;
    background: #f4f7fb;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 2px 1px 6px 0 rgba(39, 129, 190, 0.05);
    transition: box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), background 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.launch .pattern-card:hover {
    background: #eef0f8;
    box-shadow: 2px 4px 25px 0 rgba(82, 97, 219, 0.10);
}

.launch .pattern-card-number {
    font-size: 52px;
    font-weight: 900;
    line-height: 1;
    color: #E5E6ED;
    letter-spacing: -0.02em;
}

.launch .pattern-card-label {
    font-size: 21px;
    font-weight: 700;
    line-height: 1.4;
    color: #2a2a35;
}

.launch .pattern-card-text {
    font-size: 16px;
    line-height: 1.7;
    color: #2a2a35;
}

.launch .working-relationship {
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
    overflow: hidden;
}

.launch .diagonal-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.launch .diagonal-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(173deg, #2781BE 0%, #5261DB 55%, #E5E6ED 100%);
    clip-path: polygon(0 0, 58% 0, 100% 100%, 0 100%);
}

.launch .diagonal-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #f4f7fb;
    clip-path: polygon(58% 0, 100% 0, 100% 100%);
}

.launch .working-relationship .centered-column {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: center;
}

.launch .relationship-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.launch .relationship-heading {
    color: #ffffff;
}

.launch .relationship-text {
    color: rgba(255, 255, 255, 0.92);
}

.launch .relationship-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.launch .relationship-step {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 5px;
    padding: 12px;
    box-shadow: inset 0 2px 6px 0 rgba(39, 129, 190, 0.08);
    transition: background 0.4s ease-in-out;
}

.launch .relationship-step:hover {
    background: rgba(255, 255, 255, 0.2);
}

.launch .step-index {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    min-width: 24px;
    padding-top: 2px;
}

.launch .step-text {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
}

.launch .relationship-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.launch .details-card {
    background: #ffffff;
    border-radius: 5px;
    padding: 24px;
    box-shadow: 2px 10px 52px 0 rgba(82, 97, 219, 0.11);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.launch .details-card-heading {
    font-size: 21px;
    font-weight: 700;
    line-height: 1.4;
    color: #2a2a35;
}

.launch .details-card-text {
    font-size: 16px;
    line-height: 1.7;
    color: #2a2a35;
}

.launch .adaptive-approach {
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
}

.launch .adaptive-approach .bg-texture {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.launch .adaptive-approach .bg-texture::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg,
            transparent,
            transparent 6px,
            rgba(39, 129, 190, 0.025) 6px,
            rgba(39, 129, 190, 0.025) 7px,
            transparent 7px,
            transparent 14px,
            rgba(39, 129, 190, 0.04) 14px,
            rgba(39, 129, 190, 0.04) 16px);
}

.launch .adaptive-approach .centered-column {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.launch .adaptive-heading-area {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.launch .adaptive-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 40px;
    align-items: start;
}

.launch .adaptive-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.launch .adaptive-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.launch .scenario-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.launch .scenario-item {
    background: #ffffff;
    border-radius: 5px;
    padding: 24px;
    box-shadow: 2px 1px 6px 0 rgba(39, 129, 190, 0.05);
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.launch .scenario-item:hover {
    box-shadow: 2px 4px 25px 0 rgba(82, 97, 219, 0.10);
}

.launch .scenario-title {
    font-size: 16px;
    font-weight: 700;
    color: #2a2a35;
}

.launch .scenario-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #2a2a35;
}

.launch .adaptive-summary {
    background: linear-gradient(173deg, #2781BE 0%, #5261DB 70%, #E5E6ED 100%);
    border-radius: 5px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 2px 10px 52px 0 rgba(82, 97, 219, 0.11);
}

.launch .adaptive-summary-heading {
    font-size: 21px;
    font-weight: 700;
    line-height: 1.4;
    color: #ffffff;
}

.launch .adaptive-summary-text {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
}

.launch .contact-nudge {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    background: #ffffff;
    border-radius: 5px;
    padding: 24px;
    box-shadow: 2px 4px 25px 0 rgba(39, 129, 190, 0.10);
}

.launch .contact-nudge-text {
    flex: 1;
    font-size: 16px;
    line-height: 1.7;
    color: #2a2a35;
}

@media (max-width: 1024px) {
    .launch .text-massive {
        font-size: 52px;
    }

    .launch .title-faded-number {
        font-size: 140px;
    }

    .launch .context-grid {
        grid-template-columns: 1fr;
    }

    .launch .pattern-cards {
        grid-template-columns: 1fr 1fr;
    }

    .launch .working-relationship .centered-column {
        grid-template-columns: 1fr;
    }

    .launch .diagonal-bg::before {
        clip-path: polygon(0 0, 100% 0, 100% 48%, 0 60%);
    }

    .launch .diagonal-bg::after {
        clip-path: polygon(0 60%, 100% 48%, 100% 100%, 0 100%);
    }

    .launch .relationship-heading,
    .launch .relationship-text,
    .launch .relationship-step .step-text {
        color: #ffffff;
    }

    .launch .adaptive-grid {
        grid-template-columns: 1fr;
    }

    .launch .patterns-heading-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .launch .patterns-image-aside {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .launch .centered-column {
        padding-left: 24px;
        padding-right: 24px;
    }

    .launch .title-block .centered-column {
        flex-direction: column;
    }

    .launch .title-image-strip {
        width: 100%;
        height: 160px;
    }

    .launch .title-faded-number {
        font-size: 100px;
        top: -12px;
    }

    .launch .text-massive {
        font-size: 52px;
    }

    .launch .text-large {
        font-size: 52px;
    }

    .launch .pattern-cards {
        grid-template-columns: 1fr;
    }

    .launch .metrics-row {
        flex-direction: column;
    }

    .launch .contact-nudge {
        flex-direction: column;
        align-items: flex-start;
    }

    .launch .title-block,
    .launch .professional-context,
    .launch .client-patterns,
    .launch .working-relationship,
    .launch .adaptive-approach {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

@media (max-width: 320px) {
    .launch .text-massive {
        font-size: 40px;
    }

    .launch .metric-value {
        font-size: 40px;
    }
}

.success-page {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    background: linear-gradient(173deg, #f4f6fb 0%, #e8edf7 45%, #eef3f9 100%);
}

.success-page .success-card {
    max-width: 540px;
    width: 100%;
    background: #ffffff;
    border-radius: 5px;
    padding: 80px 40px;
    box-shadow: 2px 10px 52px 0 rgba(39, 129, 190, 0.11);
    text-align: center;
}

.success-page .icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 40px;
    background: linear-gradient(173deg, #2781BE 0%, #5261DB 100%);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px auto;
    box-shadow: 2px 4px 25px 0 rgba(82, 97, 219, 0.10);
}

.success-page .icon-wrap svg {
    display: block;
}

.success-page .success-heading {
    font-size: 52px;
    line-height: 1.1;
    letter-spacing: -0.03em;
    font-weight: 900;
    color: #2781BE;
    margin: 0 0 24px 0;
}

.success-page .success-message {
    font-size: 16px;
    line-height: 1.7;
    color: #2c3142;
    margin: 0 0 40px 0;
}

.success-page .success-message em {
    color: #5261DB;
    font-style: italic;
}

.success-page .info-strip {
    background: #E5E6ED;
    border-radius: 5px;
    padding: 24px;
    margin: 0 0 40px 0;
    text-align: left;
}

.success-page .info-strip .info-label {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
    color: #2c3142;
    margin: 0 0 8px 0;
}

.success-page .info-strip .info-text {
    font-size: 16px;
    line-height: 1.7;
    color: #3a4055;
    margin: 0;
}

.success-page .back-link {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
    color: #2781BE;
    text-decoration: none;
    transition: color 0.45s cubic-bezier(0.16, 1, 0.3, 1), gap 0.38s ease-in-out;
    border-radius: 5px;
    padding: 8px 12px;
    outline-offset: 4px;
}

.success-page .back-link:hover {
    color: #5261DB;
    gap: 12px;
}

.success-page .back-link:focus-visible {
    outline: 2px solid #2781BE;
}

.success-page .arrow-icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.success-page .company-note {
    margin: 40px 0 0 0;
    font-size: 16px;
    line-height: 1.4;
    color: #5a6180;
    padding-top: 24px;
    border-top: 1px solid #E5E6ED;
}

@media (max-width: 768px) {
    .success-page {
        padding: 40px 24px;
    }

    .success-page .success-card {
        padding: 40px 24px;
    }

    .success-page .success-heading {
        font-size: 52px;
    }
}

@media (max-width: 320px) {
    .success-page .success-heading {
        font-size: 21px;
    }

    .success-page .success-card {
        padding: 24px 12px;
    }
}