﻿:root {
    --page-width: 1440px;
    --content-width: 1120px;
    --bg: #edf1f7;
    --surface: #f8fafc;
    --ink: #0f172a;
    --ink-soft: #5c6880;
    --line: rgba(15, 23, 42, 0.08);
    --brand-blue: #2440ff;
    --brand-cyan: #18b7ff;
    --brand-magenta: #da00ff;
    --brand-deep: #07112c;
    --shadow: 0 20px 60px rgba(12, 22, 44, 0.08);
    --radius-xl: 36px;
    --radius-lg: 28px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    background: radial-gradient(circle at top left, rgba(36, 64, 255, 0.08), transparent 28%), radial-gradient(circle at top right, rgba(218, 0, 255, 0.08), transparent 24%), var(--bg);
    color: var(--ink)
}

body.is-mobile-menu-open {
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    overflow: hidden;
    overscroll-behavior: none;
    touch-action: none
}

body.is-mobile-menu-open .page {
    overflow: visible
}

a {
    color: inherit;
    text-decoration: none
}

.skip-link,
.visually-hidden {
    position: absolute
}

.skip-link {
    top: 16px;
    left: 16px;
    z-index: 30;
    padding: 12px 18px;
    border-radius: 999px;
    background: #233EDB;
    color: #F0F0F0;
    font-weight: 700;
    transform: translateY(-140%);
    transition: transform 0.2s ease
}

.skip-link:focus {
    transform: translateY(0)
}

.visually-hidden {
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap
}

img {
    display: block;
    max-width: 100%
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 3px solid rgba(35, 62, 219, 0.34);
    outline-offset: 3px
}

.page {
    width: 100%;
    max-width: none;
    margin: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.96)), var(--surface);
    box-shadow: 0 0 0 1px rgba(10, 20, 40, 0.03);
    overflow: clip;
    position: relative
}

.page::before,
.page::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    z-index: 0
}

.page::before {
    width: 520px;
    height: 520px;
    top: 240px;
    right: -220px;
    background: radial-gradient(circle, rgba(36, 64, 255, 0.15), transparent 68%)
}

.page::after {
    width: 440px;
    height: 440px;
    bottom: 680px;
    left: -180px;
    background: radial-gradient(circle, rgba(218, 0, 255, 0.12), transparent 68%)
}

.container {
    width: min(100% - 64px, var(--content-width));
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.section {
    padding: 110px 0;
    scroll-margin-top: 108px
}

.section-title {
    margin: 0;
    font-size: clamp(2.35rem, 3vw, 3.45rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
    font-weight: 800
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: var(--brand-blue);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase
}

.eyebrow::before {
    content: "";
    width: 52px;
    height: 2px;
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-magenta))
}

.body-copy,
.section-copy {
    margin: 0;
    color: var(--ink-soft);
    font-size: 1rem;
    line-height: 1.8
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 56px;
    padding: 0 28px;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease
}

.button:hover {
    transform: translateY(-2px)
}

.button--solid {
    color: #ffffff;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-cyan) 55%, var(--brand-magenta));
    box-shadow: 0 18px 40px rgba(36, 64, 255, 0.2)
}

.button--ghost {
    color: var(--ink);
    border-color: rgba(15, 23, 42, 0.1);
    background: rgba(255, 255, 255, 0.82)
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(240, 240, 240, 0.94);
    backdrop-filter: blur(2px);
    transition: box-shadow 1.82s cubic-bezier(0.22, 1, 0.36, 1), background-color 1.82s cubic-bezier(0.22, 1, 0.36, 1)
}

.site-header__inner {
    width: min(100%, var(--page-width));
    margin: 0 auto;
    min-height: 105px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 30px 164px;
    transition: min-height 1.82s cubic-bezier(0.22, 1, 0.36, 1), padding 1.82s cubic-bezier(0.22, 1, 0.36, 1), gap 1.82s cubic-bezier(0.22, 1, 0.36, 1)
}

.site-logo {
    width: 165px;
    height: 31px;
    flex: none;
    display: inline-flex;
    align-items: center;
    transform-origin: center;
    transition: transform 1.82s cubic-bezier(0.22, 1, 0.36, 1)
}

.site-logo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain
}

.header-toggle {
    display: none;
    width: 40px;
    height: 40px;
    padding: 10px 5px;
    border: 0;
    background: #FF00FF;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    cursor: pointer;
    flex: none
}

.header-toggle span {
    width: 30px;
    height: 0;
    border-top: 2px solid #FFFFFF;
    display: block;
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.22s ease;
    transform-origin: center
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
    justify-content: flex-end;
    transition: opacity 1.74s cubic-bezier(0.22, 1, 0.36, 1), transform 1.74s cubic-bezier(0.22, 1, 0.36, 1), max-width 1.74s cubic-bezier(0.22, 1, 0.36, 1);
    max-width: 640px;
    overflow: visible
}

.header-nav a,
.header-language-desktop-toggle,
.header-language-option {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #233EDB;
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s ease
}

.header-nav a:hover,
.header-nav a:focus-visible,
.header-language-desktop-toggle:hover,
.header-language-desktop-toggle:focus-visible,
.header-language-option:hover,
.header-language-option:focus-visible {
    background: transparent;
    color: #233EDB;
    opacity: 0.76
}

.header-language-menu {
    position: relative;
    display: inline-flex;
    align-items: flex-start;
    min-height: 46px
}

.header-language-menu::before {
    content: "";
    position: absolute;
    top: 0;
    left: 8px;
    z-index: 0;
    width: 56px;
    height: 84px;
    border: 1px solid rgba(35, 62, 219, 0.58);
    background: #F0F0F0;
    opacity: 0;
    transform: translateY(-4px);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.22, 1, 0.36, 1)
}

.header-language-menu:hover::before,
.header-language-menu:focus-within::before,
.header-language-menu.is-open::before {
    opacity: 1;
    transform: translateY(0)
}

.header-language-menu::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 2px;
    height: 44px;
    background: #233EDB;
    pointer-events: none
}

.header-language-button {
    position: relative;
    z-index: 1;
    min-width: 0;
    min-height: 44px;
    margin-left: 22px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    outline: 0;
    transition: opacity 0.2s ease
}

.header-language-button__current {
    position: relative;
    display: inline-flex;
    color: #233EDB;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    line-height: 22px;
    font-weight: 700;
    text-transform: uppercase
}

.header-language-button__current::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1)
}

.header-language-menu:hover .header-language-button__current::after,
.header-language-menu:focus-within .header-language-button__current::after,
.header-language-menu.is-open .header-language-button__current::after {
    transform: scaleX(1)
}

.header-language-button__icon {
    display: none;
    width: 26px;
    flex-direction: column;
    justify-content: center;
    gap: 6px
}

.header-language-button__line {
    display: block;
    width: 26px;
    border-top: 2px solid #233EDB;
    transition: transform 0.24s ease, opacity 0.24s ease
}

.header-language-button:hover,
.header-language-button:focus-visible {
    opacity: 0.76
}

.header-language-button:focus-visible {
    outline: 0;
    opacity: 1
}

.header-language-menu__list {
    position: absolute;
    top: 42px;
    left: 8px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    min-width: 56px;
    padding: 0 12px 8px 14px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 0;
    transform: translateY(-4px);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.22, 1, 0.36, 1)
}

.header-language-menu:hover .header-language-menu__list,
.header-language-menu:focus-within .header-language-menu__list,
.header-language-menu.is-open .header-language-menu__list {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto
}

.header-language-menu__list[hidden] {
    display: none
}

.header-language-option {
    font-size: 18px;
    line-height: 34px;
    font-weight: 700;
    text-align: left;
    text-transform: uppercase;
    min-height: 34px;
    width: 100%
}

.header-language-desktop-toggle {
    display: none
}

.header-language-option[hidden],
.header-language-mobile-option[hidden] {
    display: none !important
}

.header-language-mobile-trigger,
.header-language-mobile-panel {
    display: none
}

@media (min-width:1121px) {
    .site-header.is-condensed {
        box-shadow: 0 10px 24px rgba(12, 22, 44, 0.08)
    }

    .site-header.is-condensed:not(.is-peek) .site-header__inner {
        min-height: 60px;
        padding: 10px 164px;
        justify-content: center;
        gap: 0
    }

    .site-header.is-condensed:not(.is-peek) .site-logo {
        transform: scale(0.88)
    }

    .site-header.is-condensed:not(.is-peek):not(.is-desktop-menu-open) .header-nav {
        max-width: 0;
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none
    }

}

.hero {
    min-height: 645px;
    position: relative;
    background: #1B2C8D;
    overflow: hidden
}

.hero__background-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    z-index: 0
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none
}

.hero::before {
    background: linear-gradient(90deg, rgba(27, 44, 141, 0.3) 0%, rgba(27, 44, 141, 0.18) 36%, rgba(27, 44, 141, 0.12) 100%)
}

.hero::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
    opacity: 0.7
}

.hero-grid {
    position: relative;
    z-index: 1;
    min-height: 645px;
    display: block
}

.hero-copy {
    max-width: 827px;
    position: relative;
    z-index: 1;
    padding-top: 135px;
    padding-left: 3px
}

.hero-title {
    margin: 0;
    max-width: 544px;
    font-size: 64px;
    line-height: 78px;
    letter-spacing: 0;
    font-weight: 700;
    color: #F0F0F0
}

.hero-title span,
.intro-kicker span {
    display: block
}

.hero-copy p {
    margin: 17px 0 0;
    max-width: 754px;
    color: #F0F0F0;
    font-size: 20px;
    line-height: 1.1
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 20px
}

.hero-aside {
    display: none
}

.hero-aside::before {
    content: "";
    position: absolute;
    inset: 14% 12% auto auto;
    width: 160px;
    height: 160px;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(24, 183, 255, 0.18));
    transform: rotate(10deg);
    z-index: -1
}

.hero .button--solid {
    width: 228px;
    min-height: 54px;
    padding: 15px 35px;
    gap: 10px;
    border-radius: 30px;
    background: #FF00FF;
    box-shadow: none;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0;
    text-transform: none;
    color: #F0F0F0
}

.hero .button--solid:hover {
    background: #ff21ff
}

.hero-button__arrow {
    width: 29px;
    height: 16px;
    flex: none;
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.hero-button__arrow img,
.hero-button__arrow svg {
    width: 100%;
    height: 100%;
    display: block
}

.hero-button__arrow svg {
    color: #F0F0F0
}

.intro {
    padding: 40px 0;
    min-height: 284px;
    background: linear-gradient(270deg, #00DDFF 0%, #233EDB 100%)
}

.intro-grid {
    min-height: 204px;
    display: grid;
    grid-template-columns: 393px minmax(0, 1fr);
    gap: 45px;
    align-items: center;
    padding: 0 1px
}

.intro-kicker {
    margin: 0;
    max-width: 393px;
    font-size: 42px;
    line-height: 51px;
    letter-spacing: 0;
    font-weight: 700;
    color: #F0F0F0
}

.intro .body-copy {
    max-width: 827px
}

.intro .body-copy p {
    max-width: 798px;
    margin: 0;
    font-size: 20px;
    line-height: 1.1;
    color: #F0F0F0
}

.intro .body-copy p+p {
    margin-top: 14px
}

.clients-strip {
    min-height: 129px;
    padding: 40px 0;
    background: #1B2C8D;
    display: flex;
    align-items: center
}

.clients-carousel {
    width: min(100% - 64px, var(--content-width));
    margin: 0 auto;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%)
}

.clients-track {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 60px;
    will-change: transform;
    animation: clients-scroll 30s linear infinite
}

.clients-track:hover {
    animation-play-state: paused
}

.client-logo {
    flex: none;
    width: var(--logo-width);
    height: var(--logo-height);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #F0F0F0;
    opacity: 0.96
}

.client-logo img,
.client-logo svg {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain
}

@keyframes clients-scroll {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(calc(-50% - 30px))
    }
}

.pillars {
    padding: 60px 0;
    min-height: 551px;
    background: #F0F0F0
}

.pillars-content {
    min-height: 431px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 60px
}

.pillars-highlight {
    width: 468px;
    min-height: 54px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    background: #FF00FF;
    box-shadow: 5px 5px 0 #233EDB
}

.pillars-highlight h2 {
    margin: 0;
    font-size: 28px;
    line-height: 34px;
    font-weight: 700;
    letter-spacing: 0;
    color: #F0F0F0
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 44px
}

.section-head--center {
    flex-direction: column;
    align-items: center;
    text-align: center
}

.pillars-row {
    width: 100%;
    min-height: 317px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px
}

.model-card,
.case-card,
.contact-card,
.info-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow)
}

.model-card,
.info-card,
.contact-card {
    padding: 30px
}

.service-copy h3,
.model-card h3,
.case-card h3,
.contact-card h3,
.info-card h3 {
    margin: 0;
    font-size: 1.6rem;
    line-height: 1.08;
    letter-spacing: -0.05em
}

.model-card p,
.case-card__body p {
    margin: 18px 0 0;
    color: var(--ink-soft);
    line-height: 1.8
}

.pillars .pillar-card {
    width: 357px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px
}

.pillars .pillar-card h3 {
    margin: 0;
    font-size: 28px;
    line-height: 34px;
    font-weight: 700;
    letter-spacing: 0;
    color: #233EDB
}

.pillars .pillar-card p {
    margin: 0;
    font-size: 20px;
    line-height: 1.1;
    color: #233EDB
}

.pillar-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #233EDB
}

.pillar-icon img,
.pillar-icon svg {
    width: 100%;
    height: 100%;
    display: block
}

.pillar-card--dev .pillar-icon {
    width: 70px;
    height: 70px
}

.pillar-card--ai .pillar-icon {
    width: 68px;
    height: 70px
}

.pillar-card--design .pillar-icon {
    width: 67px;
    height: 70px
}

.pillar-card--dev h3 {
    max-width: 258px
}

.pillar-card--ai h3 {
    max-width: 231px
}

.pillar-card--design h3 {
    max-width: 273px
}

.pillar-card--dev p,
.pillar-card--ai p {
    max-width: 352px
}

.pillar-card--design p {
    max-width: 309px
}

.service-band {
    padding: 54px 0
}

.service-band+.service-band {
    padding-top: 0
}

.what-we-do,
.service-feature,
.service-showcase {
    position: relative;
    overflow: hidden;
    background: #f8f9fb
}

.what-we-do,
.service-feature {
    max-height: 604px
}

.service-showcase {
    min-height: 604px
}

.what-we-do-copy,
.service-feature__copy,
.service-showcase__copy {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    z-index: 1
}

.what-we-do-copy {
    top: 98px;
    left: 158px;
    width: 551px
}

.service-feature__copy {
    top: 103px;
    left: 826px;
    width: 547px
}

.service-showcase__copy {
    top: 136px;
    left: 150px;
    width: 446px
}

.what-we-do-highlight,
.service-feature__highlight,
.service-showcase__highlight {
    min-height: 88px;
    padding: 10px 18px;
    display: flex;
    align-items: flex-start
}

.what-we-do-highlight {
    width: 380px;
    background: #233EDB;
    box-shadow: 5px 5px 0 #FF00FF
}

.service-feature__highlight {
    width: 338px;
    background: #FF00FF;
    box-shadow: 5px 5px 0 #233EDB
}

.service-showcase__highlight {
    width: 406px;
    background: #233EDB;
    box-shadow: 5px 5px 0 #FF00FF
}

.what-we-do-highlight h2,
.service-feature__highlight h2,
.service-showcase__highlight h2 {
    margin: 0;
    font-size: 28px;
    line-height: 34px;
    font-weight: 700;
    color: #F0F0F0
}

.what-we-do-highlight h2 {
    width: 344px
}

.service-feature__highlight h2 {
    width: 302px
}

.service-showcase__highlight h2 {
    width: 370px
}

.what-we-do-list,
.service-feature__list,
.service-showcase__list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px
}

.what-we-do-list {
    width: 551px
}

.service-feature__list {
    width: 547px
}

.service-showcase__list {
    width: 446px
}

.what-we-do-list p,
.service-feature__list p,
.service-showcase__list p {
    margin: 0;
    font-size: 20px;
    line-height: 1.1;
    color: #233EDB
}

.what-we-do-list p:nth-child(1) {
    max-width: 385px
}

.what-we-do-list p:nth-child(2) {
    max-width: 312px
}

.what-we-do-list p:nth-child(3) {
    max-width: 417px
}

.what-we-do-list p:nth-child(4) {
    max-width: 446px
}

.service-feature__list p:nth-child(1) {
    max-width: 434px
}

.service-feature__list p:nth-child(2) {
    max-width: 362px
}

.service-feature__list p:nth-child(3) {
    max-width: 444px
}

.service-feature__list p:nth-child(4) {
    max-width: 425px
}

.what-we-do-button,
.service-feature__button,
.service-showcase__button {
    width: 228px;
    min-height: 54px;
    padding: 15px 35px;
    gap: 10px;
    border-radius: 30px;
    background: linear-gradient(270deg, #00DDFF 0%, #233EDB 100%);
    box-shadow: none;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0;
    text-transform: none;
    color: #F0F0F0
}

.what-we-do-visual,
.service-feature__visual,
.service-showcase__visual {
    position: absolute;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible
}

.what-we-do-visual {
    top: -76px;
    left: 721px;
    width: 720px;
    height: 771px
}

.service-feature__visual {
    top: -43px;
    left: 3px;
    width: 718px;
    height: 752px
}

.service-showcase__visual {
    top: 2px;
    left: 721px;
    width: 899px;
    height: 602px
}

.what-we-do-visual::before,
.what-we-do-visual::after,
.service-feature__visual::before,
.service-feature__visual::after,
.service-showcase__visual::before,
.service-showcase__visual::after {
    display: none
}

.what-we-do-visual img,
.service-feature__visual img,
.service-showcase__visual img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.service-showcase__visual img {
    object-position: center right
}

.what-we-do-visual .asset-slot__copy,
.service-feature__visual .asset-slot__copy,
.service-showcase__visual .asset-slot__copy {
    padding: 28px 60px;
    background: radial-gradient(circle at 50% 50%, rgba(35, 62, 219, 0.06), rgba(35, 62, 219, 0))
}

.what-we-do-visual .asset-slot__label,
.service-feature__visual .asset-slot__label,
.service-showcase__visual .asset-slot__label {
    background: rgba(35, 62, 219, 0.08);
    border-color: rgba(35, 62, 219, 0.14);
    color: #233EDB
}

.what-we-do-visual .asset-slot__hint,
.service-feature__visual .asset-slot__hint,
.service-showcase__visual .asset-slot__hint {
    color: rgba(35, 62, 219, 0.78);
    max-width: 300px
}

.service-showcase__list p:nth-child(1) {
    max-width: 294px
}

.service-showcase__list p:nth-child(2) {
    max-width: 419px
}

.service-showcase__list p:nth-child(3) {
    max-width: 245px
}

.service-showcase__list p:nth-child(4) {
    max-width: 350px
}

.models-section {
    min-height: 496.69px;
    padding: 100px 162px;
    background: linear-gradient(270deg, #17A0B5 0%, #233EDB 100%)
}

.models-section__inner {
    width: min(100%, 1116px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px
}

.models-section__title {
    width: 597px;
    margin: 0;
    font-size: 28px;
    line-height: 34px;
    font-weight: 700;
    color: #F0F0F0;
    text-align: center
}

.models-section__columns {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 537.35px));
    justify-content: space-between;
    gap: 40px
}

.models-section__column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px
}

.models-section__column h3 {
    margin: 0;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
    color: #F0F0F0
}

.models-section__column p {
    margin: 0;
    font-size: 20px;
    line-height: 1.1;
    color: #F0F0F0
}

.models-section__column:first-child h3 {
    max-width: 222px
}

.models-section__column:first-child p {
    max-width: 443px
}

.models-section__column:last-child h3 {
    max-width: 213px
}

.models-section__column:last-child p {
    max-width: 514px
}

.models-section__button {
    width: 228px;
    min-height: 54px;
    padding: 15px 35px;
    gap: 10px;
    justify-content: center;
    border-radius: 30px;
    background: linear-gradient(270deg, #00DDFF 0%, #233EDB 100%);
    box-shadow: none;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0;
    text-transform: none;
    color: #F0F0F0
}

.featured-case {
    height: 604px;
    max-height: 604px;
    position: relative;
    overflow: hidden;
    background: #233EDB
}

.models-section+.featured-case {
    margin-top: -1px
}

.featured-case+.featured-case {
    margin-top: -1px
}

.featured-case__copy {
    position: absolute;
    top: 60px;
    left: 160px;
    width: 482px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    z-index: 1
}

.feat-novo-assist {
    top: 60px;
}

.featured-case__copy2 {
    top: 204.31px;
}

.featured-case__title {
    margin: 0;
    font-size: 28px;
    line-height: 34px;
    font-weight: 700;
    color: #F0F0F0
}

.featured-case__body {
    margin: 0;
    max-width: 430px;
    font-size: 20px;
    line-height: 1.1;
    color: #F0F0F0
}

.featured-case__body--formatted {
    white-space: pre-line
}

.featured-case__tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    max-width: 448px
}

.featured-case__tags span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 27px;
    padding: 7px 15px;
    border: 1px solid #F0F0F0;
    border-radius: 30px;
    color: #F0F0F0;
    font-size: 12px;
    line-height: 1.1;
    font-weight: 400;
    white-space: nowrap
}

.featured-case__visual {
    position: absolute;
    top: 0;
    left: 720px;
    width: 721px;
    height: 604px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: hidden
}

.featured-case__visual::before,
.featured-case__visual::after {
    display: none
}

.featured-case__visual img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
    object-position: center
}

.featured-case__visual .asset-slot__copy {
    padding: 28px 60px;
    background: linear-gradient(180deg, rgba(35, 62, 219, 0.12), rgba(35, 62, 219, 0))
}

.featured-case__visual .asset-slot__label {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.18);
    color: #F0F0F0
}

.featured-case__visual .asset-slot__hint {
    color: rgba(240, 240, 240, 0.82);
    max-width: 300px
}

.featured-case--reverse .featured-case__copy {
    top: 132px;
    left: 823px;
    width: 549px
}

.featured-case--reverse .featured-case__title {
    max-width: 203px
}

.featured-case--reverse .featured-case__body {
    max-width: 444px;
    min-height: 218px
}

.featured-case--reverse .featured-case__tags {
    max-width: 448px
}

.featured-case--reverse .featured-case__tags span:nth-child(1) {
    width: 120px
}

.featured-case--reverse .featured-case__tags span:nth-child(2) {
    width: 99px
}

.featured-case--reverse .featured-case__tags span:nth-child(3) {
    width: 106px
}

.featured-case--reverse .featured-case__tags span:nth-child(4) {
    width: 143px
}

.featured-case--reverse .featured-case__visual {
    top: 0;
    left: 0;
    width: 719px;
    height: 604px
}

.service-panel {
    padding: 28px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow)
}

.service-band--dark .service-panel {
    background: linear-gradient(180deg, rgba(9, 17, 44, 0.96), rgba(13, 27, 61, 0.98)), var(--brand-deep);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.08)
}

.service-band--dark .service-copy p,
.service-band--dark .service-list li {
    color: rgba(255, 255, 255, 0.78)
}

.service-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(340px, 0.92fr);
    gap: 36px;
    align-items: center
}

.service-band--reverse .service-grid {
    grid-template-columns: minmax(340px, 0.92fr) minmax(0, 0.88fr)
}

.service-copy {
    padding: 10px 4px
}

.service-copy p {
    margin: 18px 0 0
}

.service-list {
    list-style: none;
    margin: 26px 0 0;
    padding: 0;
    display: grid;
    gap: 16px
}

.service-list li {
    position: relative;
    padding-left: 24px;
    color: var(--ink-soft);
    line-height: 1.65
}

.service-list li::before {
    content: "";
    position: absolute;
    top: 0.78em;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-magenta));
    transform: translateY(-50%)
}

.service-link {
    margin-top: 28px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: inherit
}

.service-link::after {
    content: "->";
    font-size: 0.95rem
}

.service-link--icon::after {
    content: none
}

.asset-slot {
    position: relative;
    min-height: 100px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(36, 64, 255, 0.08), rgba(255, 255, 255, 0.9) 40%, rgba(218, 0, 255, 0.08)), rgba(255, 255, 255, 0.86);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55)
}

.asset-slot::before,
.asset-slot::after {
    content: "";
    position: absolute;
    pointer-events: none
}

.asset-slot::before {
    inset: 18px;
    border-radius: inherit;
    border: 1px solid rgba(15, 23, 42, 0.05)
}

.asset-slot::after {
    inset: auto -30px -32px auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(36, 64, 255, 0.22), transparent 65%)
}

.asset-slot img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.25s ease
}

.asset-slot.is-loaded img {
    opacity: 1
}

.asset-slot__copy {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    gap: 10px;
    text-align: center;
    padding: 28px;
    z-index: 1;
    transition: opacity 0.25s ease, transform 0.25s ease
}

.asset-slot.is-loaded .asset-slot__copy {
    opacity: 0;
    transform: scale(0.98);
    pointer-events: none
}

.asset-slot__label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: var(--ink);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase
}

.asset-slot__hint {
    margin: 0;
    max-width: 280px;
    color: var(--ink-soft);
    font-size: 0.9rem;
    line-height: 1.65
}

.asset-slot--logo {
    width: 188px;
    aspect-ratio: 338 / 83;
    min-height: auto;
    border-radius: 999px
}

.asset-slot--logo img {
    object-fit: contain;
    padding: 12px 18px
}

.asset-slot--hero {
    aspect-ratio: 0.9;
    min-height: 520px;
    border-radius: 40px
}

.hero .asset-slot--hero {
    border-color: rgba(255, 255, 255, 0.22);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04) 48%, rgba(24, 183, 255, 0.14)), rgba(255, 255, 255, 0.04);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 28px 70px rgba(2, 8, 30, 0.32);
    backdrop-filter: blur(10px)
}

.hero .asset-slot--hero::before {
    border-color: rgba(255, 255, 255, 0.14)
}

.hero .asset-slot--hero .asset-slot__label {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.18);
    color: #ffffff
}

.hero .asset-slot--hero .asset-slot__hint {
    color: rgba(255, 255, 255, 0.76)
}

.asset-slot--service {
    aspect-ratio: 0.98;
    min-height: 440px
}

.asset-slot--case {
    aspect-ratio: 1.32;
    min-height: 250px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.asset-slot--badge {
    width: 120px;
    aspect-ratio: 0.76;
    min-height: auto
}

.models-grid,
.cases-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px
}

.case-card {
    overflow: hidden
}

.case-card__body {
    padding: 26px
}

.case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px
}

.case-tags span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(36, 64, 255, 0.08);
    color: var(--brand-blue);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase
}

.contact-wrap {
    display: grid;
    grid-template-columns: minmax(0, 0.84fr) minmax(380px, 0.96fr);
    gap: 28px;
    align-items: start
}

.info-stack {
    display: grid;
    gap: 26px;
    margin-top: 34px
}

.info-block span {
    display: block;
    margin-bottom: 8px;
    color: var(--ink-soft);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase
}

.info-block strong,
.info-block a {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.03em
}

.contact-section {
    min-height: 641px;
    position: relative;
    overflow: hidden;
    background: #F0F0F0
}

.contact-section__highlight {
    position: absolute;
    top: 98px;
    left: 50%;
    transform: translateX(-50%);
    width: 293px;
    min-height: 54px;
    padding: 10px 18px;
    display: flex;
    align-items: flex-start;
    background: #233EDB;
    box-shadow: 5px 5px 0 #FF00FF
}

.contact-section__highlight h2 {
    margin: 0;
    font-size: 28px;
    line-height: 34px;
    font-weight: 700;
    color: #F0F0F0
}

.contact-section__details {
    position: absolute;
    top: 272px;
    left: 269px;
    width: 331px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px
}

.contact-section__phone,
.contact-section__email {
    margin: 0;
    font-size: 28px;
    line-height: 34px;
    font-weight: 700;
    color: #233EDB;
    text-decoration: none
}

.contact-section__phone {
    align-self: center;
    text-align: center
}

.contact-section__email {
    width: 100%;
    text-align: center
}

.contact-section__socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 23px;
    width: 190px;
    align-self: center;
    margin-top: 14px
}

.contact-section__social-link {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease
}

.contact-section__social-link:hover {
    transform: translateY(-2px)
}

.contact-section__social-link img {
    width: 48px;
    height: 48px;
    display: block
}

.contact-section__form {
    position: absolute;
    top: 211px;
    left: 733px;
    width: 547px;
    display: grid;
    gap: 18px
}

.contact-section__input {
    width: 100%;
    height: 42px;
    border: 1px solid #233EDB;
    border-radius: 5px;
    padding: 10px 20px;
    font: inherit;
    font-size: 20px;
    line-height: 1.1;
    color: #000000;
    background: #FFFFFF
}

.contact-section__input:focus {
    outline: none;
    border-color: #233EDB;
    box-shadow: 0 0 0 3px rgba(35, 62, 219, 0.12)
}

.contact-section__submit {
    justify-self: end;
    width: 175px;
    min-height: 54px;
    padding: 15px 35px;
    gap: 10px;
    justify-content: center;
    border: 0;
    border-radius: 30px;
    background: linear-gradient(270deg, #00DDFF 0%, #233EDB 100%);
    box-shadow: none;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0;
    text-transform: none;
    color: #F0F0F0;
    cursor: pointer
}

.contact-section__submit:disabled {
    opacity: 0.78;
    cursor: wait
}

.contact-section__feedback {
    width: 100%;
    min-height: 20px;
    margin: -2px 0 0;
    font-size: 14px;
    line-height: 1.4;
    text-align: right;
    color: #233EDB
}

.contact-section__feedback[data-state="success"] {
    color: #14824B
}

.contact-section__feedback[data-state="error"] {
    color: #C62828
}

.footer {
    min-height: 141px;
    position: relative;
    overflow: hidden;
    background: #233EDB;
    color: #F0F0F0
}

.footer__copyright {
    position: absolute;
    left: 162px;
    top: 64.31px;
    margin: 0;
    font-size: 20px;
    line-height: 1.1;
    font-weight: 400;
    color: #F0F0F0
}

.footer__brand {
    position: absolute;
    top: 40.31px;
    left: 50%;
    transform: translateX(-50%);
    width: 216px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px
}

.footer__brand img {
    width: 212px;
    height: 40px;
    object-fit: contain;
    display: block
}

.footer__brand p {
    margin: 0;
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    color: #F0F0F0;
    text-align: center
}

.footer__partners {
    position: absolute;
    top: 51.31px;
    right: 162px;
    width: 302px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px
}

.footer__partners-label {
    margin: 0;
    font-size: 12px;
    line-height: 1.1;
    font-weight: 400;
    color: #F0F0F0
}

.footer__partners-logos {
    width: 302px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px
}

.footer__partners-logos img {
    display: block;
    object-fit: contain
}

.footer__partners-logos img[alt="Amcham"] {
    width: 91px;
    height: 25px
}

.footer__partners-logos img[alt="Caldeira"] {
    width: 47px;
    height: 45px
}

.footer__partners-logos img[alt="Softex"] {
    width: 49px;
    height: 41px
}

.footer__partners-logos img[alt="BrasilIT"] {
    width: 85px;
    height: 25px
}

@media (min-width:1441px) {
    .what-we-do-copy {
        left: calc(50vw - 562px)
    }

    .what-we-do-visual {
        left: calc(50vw + 1px)
    }

    .service-feature__copy {
        left: calc(50vw + 106px)
    }

    .service-feature__visual {
        left: calc(50vw - 717px)
    }

    .service-showcase__copy {
        left: calc(50vw - 570px)
    }

    .service-showcase__visual {
        left: calc(50vw + 1px);
        right: 0;
        width: 720px;
    }

    .featured-case__copy {
        left: calc(50vw - 560px)
    }

    .featured-case__visual {
        left: 50vw
    }

    .featured-case--reverse .featured-case__copy {
        left: calc(50vw + 103px)
    }

    .featured-case--reverse .featured-case__visual {
        left: calc(50vw - 720px)
    }

    .contact-section__details {
        left: calc(50vw - 451px)
    }

    .contact-section__form {
        left: calc(50vw + 13px)
    }

    .footer__copyright {
        left: calc(50vw - 558px)
    }

    .footer__partners {
        right: calc(50vw - 558px)
    }
}

@media (max-width:1120px) {

    .hero-grid,
    .intro-grid,
    .service-grid,
    .service-band--reverse .service-grid,
    .contact-wrap,
    .footer__inner,
    .pillars-row,
    .models-grid,
    .cases-grid {
        grid-template-columns: 1fr
    }

    .section-head {
        flex-direction: column;
        align-items: start
    }

    .site-header__inner {
        min-height: auto;
        padding: 24px 32px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px
    }

    .header-nav {
        flex-wrap: wrap;
        justify-content: flex-start
    }

    .intro {
        min-height: auto
    }

    .intro-grid {
        min-height: auto;
        gap: 28px;
        padding: 0
    }

    .intro-kicker,
    .intro .body-copy,
    .intro .body-copy p {
        max-width: none
    }

    .what-we-do,
    .service-feature,
    .service-showcase,
    .featured-case {
        height: auto;
        min-height: auto;
        max-height: none;
        padding: 72px 32px
    }

    .what-we-do-copy,
    .service-feature__copy,
    .service-showcase__copy,
    .featured-case__copy,
    .featured-case--reverse .featured-case__copy {
        position: relative;
        top: auto;
        left: auto;
        width: 100%
    }

    .what-we-do-list,
    .what-we-do-list p,
    .service-feature__list,
    .service-feature__list p,
    .service-showcase__list,
    .service-showcase__list p {
        width: 100%;
        max-width: none
    }

    .what-we-do-visual,
    .service-feature__visual,
    .service-showcase__visual,
    .featured-case__visual,
    .featured-case--reverse .featured-case__visual {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        height: 480px;
        margin-top: 32px
    }

    .featured-case__visual,
    .featured-case--reverse .featured-case__visual {
        height: 420px
    }

    .models-section {
        min-height: auto;
        padding: 72px 32px
    }

    .models-section__inner {
        width: 100%
    }

    .models-section__title {
        width: 100%;
        max-width: 597px
    }

    .models-section__columns {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .models-section__column,
    .models-section__column h3,
    .models-section__column p {
        max-width: none
    }

    .featured-case__body,
    .featured-case__tags,
    .featured-case--reverse .featured-case__body,
    .featured-case--reverse .featured-case__tags {
        max-width: none
    }

    .featured-case--reverse .featured-case__tags span {
        width: auto
    }

    .pillars {
        min-height: auto
    }

    .pillars-content {
        min-height: auto;
        align-items: flex-start;
        gap: 40px
    }

    .pillars-highlight {
        width: auto;
        max-width: 100%
    }

    .pillars-row {
        min-height: auto;
        display: grid;
        gap: 40px
    }

    .pillars .pillar-card {
        width: 100%
    }

    .pillar-card--dev h3,
    .pillar-card--ai h3,
    .pillar-card--design h3,
    .pillar-card--dev p,
    .pillar-card--ai p,
    .pillar-card--design p {
        max-width: none
    }

    .footer {
        min-height: auto;
        padding: 56px 32px
    }

    .footer__copyright,
    .footer__brand,
    .footer__partners {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        transform: none;
        width: 100%;
        max-width: 302px;
        margin: 0 auto
    }

    .footer__copyright {
        text-align: center;
        max-width: none
    }

    .footer__brand {
        margin: 24px auto
    }

    .footer__partners {
        align-items: center
    }

    .footer__partners-logos {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap
    }
}

@media (max-width:780px) {
    .site-header {
        background: #F0F0F0;
        z-index: 20
    }

    .site-header__inner {
        min-height: 100px;
        padding: 30px 20px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        position: relative;
        z-index: 14;
        background: #F0F0F0
    }

    .site-logo {
        width: 165px;
        height: 31px
    }

    .header-toggle {
        display: inline-flex
    }

    .header-nav {
        position: fixed;
        top: 100px;
        left: 0;
        right: 0;
        z-index: 19;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 20px;
        height: calc(100dvh - 100px);
        max-height: calc(100dvh - 100px);
        padding: 59px 57px 40px;
        background: linear-gradient(180deg, #233EDB 0%, #00DDFF 100%);
        box-sizing: border-box;
        border-top: 1px solid #F0F0F0;
        opacity: 0;
        transform: translateY(-12px);
        pointer-events: none;
        max-width: none;
        overflow-y: hidden;
        overflow-x: hidden;
        overscroll-behavior: contain
    }

    .site-header.is-mobile-menu-open .header-nav {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto
    }

    .container {
        width: min(100% - 32px, var(--content-width))
    }

    .header-nav a,
    .header-language-option,
    .header-language-mobile-trigger,
    .header-language-mobile-option {
        display: inline-flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
        align-content: flex-start;
        padding: 0;
        gap: 10px;
        width: auto;
        min-height: 51px;
        font-size: 42px;
        line-height: 51px;
        color: #F0F0F0;
        font-weight: 700;
        position: relative;
        z-index: 1
    }

    .header-nav a:hover,
    .header-nav a:focus-visible,
    .header-language-option:hover,
    .header-language-option:focus-visible,
    .header-language-mobile-trigger:hover,
    .header-language-mobile-trigger:focus-visible,
    .header-language-mobile-option:hover,
    .header-language-mobile-option:focus-visible {
        color: #F0F0F0;
        opacity: 0.82
    }

    .header-nav a:focus-visible,
    .header-language-option:focus-visible,
    .header-language-mobile-trigger:focus-visible,
    .header-language-mobile-option:focus-visible {
        outline-color: rgba(240, 240, 240, 0.7)
    }

    .header-language-menu {
        position: static;
        align-items: flex-start;
        width: 100%
    }

    .header-language-desktop-toggle {
        display: none
    }

    .header-language-button {
        display: none
    }

    .header-language-menu__list {
        display: none !important
    }

    .header-nav .header-language-mobile-trigger {
        display: none
    }

    .header-nav .header-language-mobile-panel {
        position: static;
        display: inline-grid;
        grid-template-columns: repeat(2, max-content);
        align-items: flex-start;
        column-gap: 24px;
        row-gap: 8px;
        margin-top: -6px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto
    }

    .header-nav .header-language-mobile-panel::before {
        content: "";
        display: block;
        grid-column: 1 / -1;
        width: 40px;
        max-width: 40px;
        border-top: 2px solid rgba(240, 240, 240, 0.86);
        margin-bottom: 10px;
    }

    .header-nav.is-language-submenu-open .header-language-mobile-panel {
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto
    }

    .header-nav .header-language-mobile-back {
        display: none
    }

    .header-nav .header-language-mobile-option {
        min-height: 26px;
        font-size: 26px;
        line-height: 32px;
        text-transform: uppercase;
        text-decoration: none
    }

    .header-nav .header-language-mobile-option[aria-current] {
        text-decoration: underline;
        text-underline-offset: 4px;
        text-decoration-thickness: 2px
    }

    .header-nav>a,
    .header-language-mobile-trigger {
        transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.22s ease
    }

    .header-nav.is-language-submenu-open>a,
    .header-nav.is-language-submenu-open .header-language-mobile-trigger {
        transform: translateX(-118%);
        opacity: 0;
        pointer-events: none
    }

    .site-header.is-mobile-menu-open .header-toggle span:nth-child(1) {
        transform: translateY(10px) rotate(45deg)
    }

    .site-header.is-mobile-menu-open .header-toggle span:nth-child(2) {
        opacity: 0
    }

    .site-header.is-mobile-menu-open .header-toggle span:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg)
    }

    .section {
        padding: 84px 0
    }

    .hero {
        min-height: auto
    }

    .hero-grid {
        min-height: auto
    }

    .hero-copy {
        max-width: 100%;
        padding-top: 84px;
        padding-left: 0;
        padding-bottom: 84px
    }

    .hero-title {
        max-width: 340px;
        font-size: 48px;
        line-height: 58px
    }

    .hero-copy p {
        max-width: 100%;
        font-size: 18px
    }

    .hero .button--solid {
        width: auto;
        min-width: 221px
    }

    .intro-kicker {
        font-size: 36px;
        line-height: 1.08
    }

    .intro {
        padding: 56px 0
    }

    .intro .body-copy p {
        font-size: 18px
    }

    .what-we-do,
    .service-feature,
    .service-showcase,
    .featured-case {
        padding: 0 24px 56px;
        display: flex;
        flex-direction: column
    }

    .what-we-do,
    .service-feature,
    .featured-case {
        max-height: none
    }

    .what-we-do-highlight,
    .service-feature__highlight,
    .service-showcase__highlight {
        width: 100%
    }

    .service-feature__highlight {
        max-width: 338px
    }

    .service-showcase__highlight {
        max-width: 406px
    }

    .what-we-do-highlight h2,
    .service-feature__highlight h2,
    .service-showcase__highlight h2 {
        width: auto;
        font-size: 24px;
        line-height: 1.2
    }

    .what-we-do-list p,
    .service-feature__list p,
    .service-showcase__list p {
        font-size: 18px
    }

    .what-we-do-button,
    .service-feature__button,
    .service-showcase__button {
        width: auto;
        min-width: 221px
    }

    .what-we-do-copy,
    .service-feature__copy,
    .service-showcase__copy,
    .featured-case__copy,
    .featured-case--reverse .featured-case__copy {
        order: 2
    }

    .what-we-do-visual,
    .service-feature__visual,
    .service-showcase__visual,
    .featured-case__visual,
    .featured-case--reverse .featured-case__visual {
        order: 1;
        width: 100vw;
        max-width: 100vw;
        height: 340px;
        align-self: center;
        margin: 0 calc(50% - 50vw) 32px
    }

    .featured-case__visual,
    .featured-case--reverse .featured-case__visual {
        height: 280px
    }

    .what-we-do-visual img,
    .service-feature__visual img,
    .service-showcase__visual img {
        width: 100%;
        height: 340px;
        display: block;
        object-fit: cover;
        object-position: center
    }

    .models-section {
        padding: 56px 24px
    }

    .models-section__title {
        font-size: 24px;
        line-height: 1.2
    }

    .models-section__column p {
        font-size: 18px
    }

    .models-section__button {
        width: auto;
        min-width: 220px
    }

    .featured-case__title {
        font-size: 24px;
        line-height: 1.2
    }

    .featured-case__body {
        font-size: 18px
    }

    .featured-case--reverse .featured-case__body {
        height: auto;
        min-height: 0
    }

    .contact-section {
        min-height: auto;
        padding: 72px 32px
    }

    .contact-section__highlight h2 {
        font-size: 24px;
        line-height: 1.2
    }

    .contact-section__phone,
    .contact-section__email {
        font-size: 22px;
        line-height: 1.2
    }

    .contact-section__input {
        font-size: 18px
    }

    .contact-section__feedback {
        text-align: left
    }

    .contact-section__highlight {
        position: relative;
        top: auto;
        left: auto;
        width: auto;
        max-width: 100%;
        transform: none;
        margin: 0 auto 40px
    }

    .contact-section__details,
    .contact-section__form {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        max-width: 547px;
        margin: 0 auto
    }

    .contact-section__details {
        margin-bottom: 40px
    }

    .pillars {
        padding: 56px 0
    }

    .pillars-highlight h2 {
        font-size: 24px;
        line-height: 1.2
    }

    .pillars .pillar-card {
        text-align: center;
        align-items: center
    }

    .pillars .pillar-card h3 {
        font-size: 24px;
        line-height: 1.2
    }

    .pillars .pillar-card p {
        font-size: 18px
    }

    .clients-track {
        gap: 40px
    }

    .clients-carousel {
        width: min(100% - 32px, var(--content-width))
    }

    .client-logo {
        width: calc(var(--logo-width) * 0.82);
        height: calc(var(--logo-height) * 0.82)
    }

    .asset-slot--hero,
    .asset-slot--service {
        min-height: 320px
    }

    .button {
        width: 100%
    }

    .hero-actions {
        width: 100%
    }

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

@media (min-width:781px) and (max-width:1120px) {
    .site-header__inner {
        position: relative;
        min-height: 100px;
        padding: 30px clamp(32px, 11.4vw, 164px);
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 20px
    }

    .header-toggle {
        display: inline-flex
    }

    .header-nav {
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        z-index: 19;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 18px;
        width: min(420px, calc(100vw - 64px));
        max-width: none;
        padding: 24px 26px;
        border: 1px solid rgba(35, 62, 219, 0.2);
        border-radius: 14px;
        background: #F0F0F0;
        box-shadow: 0 18px 36px rgba(12, 22, 44, 0.18);
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
        overflow: hidden
    }

    .site-header.is-desktop-menu-open .header-nav,
    .site-header.is-condensed.is-desktop-menu-open .header-nav {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto
    }

    .header-nav a,
    .header-language-desktop-toggle {
        display: inline-flex;
        width: auto;
        min-height: 32px;
        font-size: 28px;
        line-height: 34px;
        color: #233EDB
    }

    .header-nav a:hover,
    .header-nav a:focus-visible,
    .header-language-desktop-toggle:hover,
    .header-language-desktop-toggle:focus-visible {
        color: #233EDB;
        opacity: 0.82
    }

    .header-language-desktop-toggle {
        display: inline-flex
    }

    .header-language-menu {
        display: none
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important
    }

    .clients-track {
        animation: none !important
    }
}
