/* new root variables */

:root {
    --header-height: 70px;
    --header-height-mobile: 40px;
    --large-container-width: 1640px;

    --font-family: "Asap", sans-serif;
    --container-padding-desktop: 120px;
    --container-padding-tablet: 67px;
    --container-padding-mobile: 20px;
    --container-padding-foreword-mobile: 12px;

    /* colors */
    --c-white: #fff;
    --c-text: #383838;
    --c-header-muted: #97bbea;

    --c-blue-900: #003867;
    --c-blue-800: #002b89;
    --c-blue-700: #005eab;
    --c-blue-650: #0e4db3;
    --c-blue-500: #008bff;
    --c-indigo-900: #0c0067;

    --c-blue-dark: #1c3c70;
    --c-blue-dark-hover: #082960;

    --c-orange: #fe8836;
    --c-orange-2: #fe6000;
    --c-red: #f63d3d;

    --c-blue-100: #9eb0ff;

    /* gradients */
    --g-header: linear-gradient(52deg, var(--c-indigo-900) 0%, var(--c-blue-800) 32.24%, var(--c-blue-500) 100%);
    --g-talk-expert: linear-gradient(21deg, var(--c-indigo-900) 0%, var(--c-blue-500) 100%);
    --g-orange: linear-gradient(90deg, var(--c-orange) 0%, var(--c-red) 100%);
    --g-hero-title: linear-gradient(90deg, var(--c-indigo-900) 0%, var(--c-blue-800) 32.24%, var(--c-blue-500) 100%);
    --g-hero-subtitle: linear-gradient(238deg, #f63e3d 0%, var(--c-orange) 100%);
}

/* Block body scroll when popup is open */

body .header__block {
    height: var(--header-height);
}

@media screen and (max-width: 1280px) {
    body .app {
        padding-top: var(--header-height);
    }
}

@media screen and (max-width: 1024px) {
    body .app {
        padding-top: var(--header-height-mobile);
    }

    body .header__block {
        height: var(--header-height-mobile);
    }
}

body.popup-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    padding-right: 20px;
}

.c-section-title {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 48px;
    text-transform: uppercase;
    text-wrap-style: balance;
}

.c-section-title--center {
    text-align: center;
}

body .popup-text--bold {
    font-weight: 700;
}

.c-section-title--blue-900,
body .popup-text--blue-900 {
    color: var(--c-blue-900);
}

.c-section-title--blue-700 {
    color: var(--c-blue-700);
}

.c-section-subtitle {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 26px;
    line-height: 125%;
    text-wrap-style: balance;
}

@media screen and (max-width: 1024px) {
    .c-section-subtitle {
        font-size: 20px;
    }
}

.c-section-subtitle--center {
    text-align: center;
}

.c-section-subtitle--blue-700 {
    color: var(--c-blue-700);
}

.c-card-title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 26px;
    color: var(--c-blue-700);
    line-height: 125%;
}

.c-card-desc {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    color: var(--c-text);
}

.background-svg-2026 {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 0;
}

/* new container */
body .container.header__container,
body .container.large-container {
    max-width: var(--large-container-width);
    width: calc(100% - var(--container-padding-desktop) * 2);
}

.header__menu-item {
    display: flex;
    padding: 0 20px;
    text-decoration: none !important;
    height: 100%;
    align-items: center;
}

body .header__menu {
    height: 100%;
}

.header__menu-item:not(.active):last-child {
    margin-right: -25px;
}

.header__menu-item.active {
    padding: 0 45px;
}

.header__menu-item span {
    font-family: var(--font-family);
    line-height: 102%;
    font-weight: 700;
    font-size: 25px;
    text-align: center;
    color: var(--c-header-muted);
}

.header__menu-item:not(.active):hover span {
    color: var(--c-orange);
}

.header__menu-item.active span {
    color: var(--c-white);
    font-size: 28px;
}

.header__logo {
    width: 135px;
    aspect-ratio: 135/44;
    margin-left: 17px;
}

.header__burder-icon svg {
    width: 36px;
    height: 36px;
}

.header__burder-icon svg * {
    transition: all 0.3s;
    transform-origin: center;
}

body .header__burder-icon {
    display: none;
}

body.body--menu .header__burder-icon svg path:nth-child(1) {
    transform: translate(-4px, 5px) rotate(45deg);
}

body.body--menu .header__burder-icon svg path:nth-child(2) {
    transform: scaleX(0);
}

body.body--menu .header__burder-icon svg path:nth-child(3) {
    transform: translate(-4px, -4px) rotate(-45deg);
}

@media screen and (max-width: 1280px) {
    body .header__burder-icon {
        display: block;
    }
}

@media screen and (max-width: 1024px) {
    body .header__burder-icon svg {
        width: 25px;
        height: 25px;
    }
}

@media screen and (max-width: 1660px) {
    body .header__menu-item {
        padding: 0 15px;
    }

    body .header__menu-item.active {
        padding: 0 35px;
    }

    .header__menu-item.active span {
        font-size: 18px;
    }

    .header__menu-item span {
        font-size: 18px;
    }

    .header__menu-item:not(.active):last-child {
        margin-right: -15px;
    }
}

@media screen and (max-width: 1280px) {
    .header__logo {
        width: 105px;
        aspect-ratio: 105/35;
        margin: 0px;
    }

    body .header__menu {
        height: unset;
    }

    body .header__menu-item,
    body .header__menu-item.active {
        padding: 10px 15px;
    }

    .header__menu-item:not(.active):last-child {
        margin-right: 0px;
    }

    .header__menu {
        border-radius: 20px 0 0 20px;
    }
}

@media screen and (max-width: 1024px) {
    .header__logo {
        width: 60px;
        aspect-ratio: 60/20;
    }
}

@media screen and (min-width: 1281px) and (max-width: 1600px) {
    body .container.large-container,
    body .container.header__container {
        width: calc(100% - var(--container-padding-tablet) * 2);
    }
}

@media screen and (max-width: 1280px) {
    body .container.header__container,
    body .container.large-container {
        width: calc(100% - var(--container-padding-mobile) * 2);
    }
}

.header__menu-item:before {
    border-radius: 0;
    background: var(--g-header);
    -webkit-box-shadow: none;
    box-shadow: none;
}

@media screen and (max-width: 1280px) {
    .header:after {
        display: none;
    }

    .header__menu-item,
    .header__menu-item.active {
        padding: 10px 20px;
    }
}

/* new hero section */
.hero-section {
    position: relative;
    margin-bottom: 150px;
}

.hero-section__button {
    border-radius: 100px;
    padding: 16px 38px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--c-white);
    transition: all 0.3s;
    background: var(--c-orange-2);
    max-width: fit-content;
}

.hero-section__button:hover {
    background: var(--c-orange);
}

.hero-section__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-section__content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.hero-section__content {
    padding-top: 80px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.hero-section__content-left {
    display: flex;
    flex-direction: column;
    margin-top: 160px;
}

.hero-section__title,
.hero-section__subtitle {
    display: flex;
    position: relative;
    max-width: fit-content;
    box-sizing: border-box;
}

.hero-section__subtitle {
    gap: 16px;
    align-items: center;
    margin-left: -8px;
}

.hero-section__subtitle {
    margin-top: 25px;
    margin-bottom: 40px;
}

.hero-section__title span {
    position: relative;
    z-index: 1;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 100px;
    line-height: 96%;
    text-transform: uppercase;
    color: var(--c-white);
}

.hero-section__subtitle span {
    position: relative;
    z-index: 1;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 48px;
    line-height: 96%;
    text-transform: uppercase;
    color: var(--c-white);
}

.hero-section__subtitle svg {
    max-width: 43px;
    max-height: 46px;
    min-width: 43px;
    min-height: 46px;
}

@media screen and (max-width: 1024px) {
    .hero-section__subtitle svg {
        max-width: 24px;
        max-height: 26px;
        min-width: 24px;
        min-height: 26px;
    }

    .hero-section__subtitle {
        margin-left: -4px;
    }
}

.hero-section__content-right iframe {
    border-radius: 24px;
}

.hero-section__trends {
    border-radius: 32px;
    padding: 40px;
    backdrop-filter: blur(10.636539459228516px);
    background: linear-gradient(181.27deg, rgba(117, 177, 255, 0.2) 1.11%, rgba(153, 198, 255, 0.2) 98.94%);
    margin-bottom: -150px;
}

.hero-section__trends-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-section__trends-title {
    font-family: var(--font-family);
    font-weight: 800;
    font-size: 34px;
    line-height: 104%;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    text-wrap-style: balance;
}

.hero-section__trends-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: flex-start;
    gap: 30px;
    justify-content: space-between;
}

.hero-section__trend-item {
    border-radius: 24px;
    padding: 22px 34px 58px 34px;
    overflow: hidden;
    position: relative;
    display: flex;
    height: 100%;
}

.hero-section__trend-item::before,
.hero-section__trend-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.3s;
}

.hero-section__trend-item::before {
    background: center / cover no-repeat url("../images/outlook-2026/trend-item.webp");
    opacity: 1;
    z-index: -1;
}

.hero-section__trend-content {
    position: relative;
}

.hero-section__trend-text p.hero-section__trend-text-visible {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 28px;
    line-height: 120%;
    color: var(--c-blue-700);
    transition: opacity 0.3s ease;
    opacity: 1;
}

.hero-section__trend-text p.hero-section__trend-text-hidden {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 24px;
    line-height: 120%;
    background: linear-gradient(90deg, #fe8836 0%, #f63d3d 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-section__trend-item::after {
    background: center / cover no-repeat url("../images/outlook-2026/trend-item-hover.webp");
    opacity: 1;
    z-index: -2;
}

.hero-section__bg--mobile {
    display: none;
}

.hero-section__trend-arrow {
    position: absolute;
    bottom: 30px;
    right: 30px;
    max-width: 25px;
    max-height: 25px;
}

.hero-section__trend-arrow * {
    transition: all 0.3s;
}

@media screen and (min-width: 1280px) and (max-width: 1600px) {
    body .container.hero-section__container {
        width: calc(100% - var(--container-padding-desktop) * 2);
    }

    .hero-section__trends {
        margin-left: -53px;
        margin-right: -53px;
    }
}

@media screen and (min-width: 1201px) {
    .hero-section__trend-item:hover::before {
        opacity: 0;
    }

    .hero-section__trend-item:hover .hero-section__trend-text-hidden {
        opacity: 1;
    }
    .hero-section__trend-item:hover .hero-section__trend-text-visible {
        opacity: 0;
    }

    .hero-section__trend-item:hover .hero-section__trend-arrow path {
        stroke: var(--c-orange);
    }
}

@media screen and (max-width: 1200px) {
    .hero-section__trend-item.active::before {
        opacity: 0;
    }

    .hero-section__trend-item.active .hero-section__trend-text-hidden {
        opacity: 1;
    }
    .hero-section__trend-item.active .hero-section__trend-text-visible {
        opacity: 0;
    }

    .hero-section__trend-item.active .hero-section__trend-arrow path {
        stroke: var(--c-orange);
    }
}

/* new talk with a demand expert button */
.hero-section__fixed-buttons {
    max-width: 132px;
    position: fixed;
    right: 0;
    bottom: 10%;
    z-index: 10;
    border-radius: 24px 0 0 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.takl-expert-button {
    background: linear-gradient(55.71deg, #f04523 2.64%, #faaa23 96.14%);
    padding: 30px 8px 20px 30px;
    box-sizing: border-box;
}

.build-outlook-button {
    background: linear-gradient(52deg, #0c0067 0%, #002b89 32.24%, #008bff 100%);
    padding: 20px 8px 30px 30px;
    box-sizing: border-box;
}

.takl-expert-button a span,
.build-outlook-button a span {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 16px;
    line-height: 110%;
    color: var(--c-white);
}

.takl-expert-button a svg,
.build-outlook-button a svg {
    display: none;
}

@media screen and (min-width: 1441px) and (max-width: 1660px) {
    .hero-section__content-right {
        margin-right: 56px;
    }
}

@media screen and (max-width: 1600px) {
    .hero-section__title span {
        font-size: 72px;
    }

    .hero-section__subtitle span {
        font-size: 40px;
    }

    .hero-section__trend-text p.hero-section__trend-text-visible {
        font-size: 26px;
    }

    .hero-section__trend-text p.hero-section__trend-text-hidden {
        font-size: 22px;
    }

    .hero-section__trends {
        padding: 32px 28px;
    }

    .hero-section__trend-item {
        padding: 24px 24px 57px 24px;
    }

    .hero-section__trend-arrow {
        bottom: 20px;
        right: 20px;
    }

    .hero-section__subtitle {
        margin-top: 18px;
    }

    .hero-section__trends-list {
        gap: 24px;
    }

    .hero-section__fixed-buttons {
        max-width: 108px;
    }

    .takl-expert-button a span,
    .build-outlook-button a span {
        font-size: 14px;
    }

    .takl-expert-button,
    .build-outlook-button {
        padding: 20px 8px 20px 20px;
    }

    .hero-section__content {
        padding-top: 36px;
    }

    .hero-section__content-wrapper {
        gap: 30px;
    }

    .hero-section__content-right iframe {
        height: 454px;
        width: 500px;
    }
}

@media screen and (max-width: 1400px) {
    .hero-section__content {
        gap: 142px;
        flex-direction: column;
    }

    .hero-section__content-right {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-section__content-left {
        margin-top: 0;
    }
}

@media screen and (max-width: 1280px) {
    .hero-section__trends-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .hero-section,
    .hero-section__trends {
        margin-bottom: 0;
    }

    .hero-section__fixed-buttons {
        max-width: 48px;
        border-radius: 12px 0 0 12px;
        bottom: 50%;
        transform: translateY(-50%);
    }

    .takl-expert-button,
    .build-outlook-button {
        padding: 8px;
    }

    .takl-expert-button a span,
    .build-outlook-button a span {
        display: none;
    }

    .takl-expert-button a svg,
    .build-outlook-button a svg {
        display: flex;
        max-width: 32px;
        max-height: 32px;
        min-width: 32px;
        min-height: 32px;
    }
}

@media screen and (max-width: 1024px) {
    .hero-section__title span {
        font-size: 56px;
    }

    .hero-section__subtitle span {
        font-size: 32px;
    }

    .hero-section__trend-text p.hero-section__trend-text-visible {
        font-size: 20px;
    }

    .hero-section__trend-text p.hero-section__trend-text-hidden {
        font-size: 16px;
    }
}

@media screen and (max-width: 768px) {
    .hero-section__trends {
        padding: 32px 20px;
        margin-left: -20px;
        margin-right: -20px;
    }

    .hero-section__bg--mobile {
        display: block;
    }

    .hero-section__bg--mobile img {
        width: 100%;
        height: 996px;
    }

    .hero-section {
        background: linear-gradient(180deg, rgba(34, 71, 110, 0) 0%, #22466c 3.75%, #033463 100%);
    }

    .hero-section__bg--desktop {
        display: none;
    }

    .hero-section__title span {
        font-size: 40px;
    }

    .hero-section__content-right {
        border-radius: 8px;
    }

    .hero-section__subtitle span {
        font-size: 24px;
    }

    .hero-section__subtitle {
        margin-top: 12px;
        margin-bottom: 12px;
    }

    .hero-section__trend-text p.hero-section__trend-text-visible {
        font-size: 16px;
    }

    .hero-section__trend-text p.hero-section__trend-text-hidden {
        font-size: 12px;
    }

    .hero-section__trend-item {
        padding: 16px 16px 52px 16px;
    }

    .hero-section__trend-arrow {
        bottom: 16px;
        right: 16px;
    }

    .hero-section__trends-title {
        font-size: 28px;
    }
}

@media screen and (max-width: 680px) {
    .hero-section__content-right {
        width: 100%;
    }

    .hero-section__content-right iframe {
        width: 100%;
    }
}

/* new foreword cta */
section.foreword-cta {
    padding-top: 60px;
    padding-bottom: 50px;
}

.foreword-cta__content {
    overflow: hidden;
    padding-top: 54px;
    position: relative;
}

.foreword-cta__content-wrapper {
    display: flex;
    justify-content: space-between;
    padding: 32px;
    box-sizing: border-box;
    border-radius: 24px;
    min-height: 300px;
}

.foreword-cta__content-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.foreword-cta__title {
    margin-bottom: 24px;
}

.foreword-cta__author {
    max-width: 338px;
}

.foreword-cta__author p {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 28px;
    line-height: 120%;
    color: var(--c-blue-900);
}

.foreword-cta__content-right {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.foreword-cta__button {
    border-radius: 100px;
    padding: 15px 40px;
    transition: all 0.3s;
    max-width: fit-content;
    max-height: fit-content;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.foreword-cta__button span {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 28px;
    line-height: 120%;
    color: var(--c-white);
    z-index: 2;
    position: relative;
}

.foreword-cta__button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--c-blue-dark);
    z-index: 0;
}

.foreword-cta__button::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 256px;
    background: var(--c-blue-dark-hover);
    z-index: 1;
    transition: all 0.6s;
    pointer-events: none;
    border-radius: 1000px;
}

.foreword-cta__button:hover::after {
    top: -50%;
}

.foreword-cta__content-center {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.foreword-cta__content-center img {
    width: auto;
    height: 100%;
    max-height: 353px;
}

@media screen and (max-width: 1024px) {
    section.foreword-cta {
        padding-top: 50px;
        padding-bottom: 40px;
    }

    .foreword-cta__content-center img {
        max-height: 241px;
    }

    .foreword-cta__content-wrapper {
        flex-direction: column;
        padding: 48px 32px 0px;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .foreword-cta__content {
        padding-top: 0;
    }

    .foreword-cta__content-left {
        order: 1;
    }

    .foreword-cta__content-right {
        order: 2;
    }

    .foreword-cta__content-center {
        order: 3;
        position: relative;
        top: unset;
        left: unset;
        transform: unset;
        margin-top: 32px;
    }

    .foreword-cta__content-center img {
        margin-left: -32px;
        margin-right: -32px;
    }

    .foreword-cta__title,
    .foreword-cta__author p {
        text-align: center;
    }

    .foreword-cta__title {
        font-size: 32px;
    }

    .foreword-cta__author p {
        font-size: 24px;
        text-wrap-style: balance;
    }

    .foreword-cta__button {
        margin-top: 32px;
        padding: 12px 32px;
        font-size: 20px;
    }
}

@media screen and (max-width: 768px) {
    body .foreword-cta__container {
        width: calc(100% - var(--container-padding-foreword-mobile) * 2) !important;
    }
}

/* new strategic insights */
section.strategic-insights {
    padding-top: 50px;
    padding-bottom: 50px;
}

.strategic-insights__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.strategic-insights__list {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.strategic-insights__item {
    flex: 1 1 calc(100% / 3 - 40px);
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    overflow: hidden;
}

.strategic-insights__item-title {
    margin-bottom: 16px;
    transition: all 0.3s;
}

.strategic-insights__item:hover .strategic-insights__item-title {
    color: var(--c-orange);
}

.strategic-insights__item-image {
    min-height: 208px;
}

.strategic-insights__item-content {
    display: flex;
    flex-direction: column;
    padding: 24px;
    background: var(--c-white);
    height: 100%;
}

.strategic-insights__item-description {
    margin-bottom: auto;
}

.strategic-insights__item-content svg {
    max-width: 25px;
    max-height: 25px;
    min-width: 25px;
    min-height: 25px;
    margin-left: auto;
    margin-top: 8px;
}

.strategic-insights__item svg path {
    transition: all 0.3s;
}

.strategic-insights__item:hover svg path {
    stroke: var(--c-orange);
}

.strategic-insights__bottom {
    display: flex;
    justify-content: center;
    align-items: center;
}

.strategic-insights__button {
    border-radius: 100px;
    padding: 16px 38px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--c-white);
    transition: all 0.3s;
    background: var(--c-orange-2);
    max-width: fit-content;
}

.strategic-insights__button:hover {
    background: var(--c-orange);
}

.strategic-insights__title {
    margin-bottom: 20px;
}

@media screen and (max-width: 1600px) {
    .strategic-insights__list {
        gap: 24px;
    }
}

@media screen and (max-width: 1024px) {
    section.strategic-insights {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .strategic-insights__list {
        flex-direction: column;
    }
}

@media screen and (max-width: 768px) {
    .strategic-insights__item-image {
        min-height: 130px;
    }

    .strategic-insights__content {
        gap: 32px;
    }
}

@media screen and (max-width: 576px) {
    .strategic-insights__head {
        max-width: 280px;
        margin: 0 auto;
    }
}

/* new exclusive market research */
section.exclusive-market-research {
    padding-top: 50px;
    padding-bottom: 50px;
}

.exclusive-market-research__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.exclusive-market-research__title {
    margin-bottom: 20px;
}

.exclusive-market-research__list {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.exclusive-market-research__item {
    display: flex;
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    background: var(--c-white);
    min-height: 242px;
    flex: 1 1 calc(100% / 2 - 40px);
}

.exclusive-market-research__item-title {
    margin-bottom: 16px;
    transition: all 0.3s;
}

.exclusive-market-research__item:hover .exclusive-market-research__item-title {
    color: var(--c-orange);
}

.exclusive-market-research__item-content {
    display: flex;
    flex-direction: column;
    padding: 32px 24px 24px 32px;
    position: relative;
    flex: 1 1 calc(100% - 292px);
    box-sizing: border-box;
}

.exclusive-market-research__item-content svg {
    position: absolute;
    right: 30px;
    bottom: 12px;
    max-width: 25px;
    max-height: 25px;
    min-width: 25px;
    min-height: 25px;
}

.exclusive-market-research__item-content svg path {
    transition: all 0.3s;
}

.exclusive-market-research__item:hover svg path {
    stroke: var(--c-orange);
}

.exclusive-market-research__item-image {
    display: flex;
    flex-basis: 292px;
}

.exclusive-market-research__button {
    border-radius: 100px;
    padding: 16px 38px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--c-white);
    transition: all 0.3s;
    background: var(--c-orange-2);
    max-width: fit-content;
}

.exclusive-market-research__button:hover {
    background: var(--c-orange);
}

.exclusive-market-research__bottom {
    display: flex;
    justify-content: center;
    align-items: center;
}

.exclusive-market-research__item-image--mobile {
    display: none;
}

@media screen and (max-width: 1600px) {
    .exclusive-market-research__item-content {
        padding: 24px 24px 30px 24px;
    }

    .exclusive-market-research__list {
        gap: 24px;
    }

    .exclusive-market-research__item {
        flex: 1 1 calc(100% / 2 - 24px);
        min-height: 273px;
    }

    .exclusive-market-research__item-image {
        flex-basis: 215px;
    }

    .exclusive-market-research__item-content {
        flex: 1 1 calc(100% - 215px);
    }
}

@media screen and (max-width: 1024px) {
    section.exclusive-market-research {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .exclusive-market-research__list {
        flex-direction: column;
    }

    .exclusive-market-research__item {
        flex-direction: column-reverse;
        flex: 1 1 100%;
        min-height: unset;
    }

    .exclusive-market-research__item-image {
        flex-basis: unset;
        min-height: 172px;
        background-size: contain !important;
    }

    .exclusive-market-research__item-image--mobile {
        display: block;
    }

    .exclusive-market-research__item-image--desktop {
        display: none;
    }

    .exclusive-market-research__item-content svg {
        position: unset;
        margin-top: 16px;
    }

    .exclusive-market-research__item-content {
        padding-bottom: 0;
    }

    .exclusive-market-research__content {
        gap: 32px;
    }
}

@media screen and (max-width: 576px) {
    .exclusive-market-research__head {
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* new expert voices */
section.expert-voices-2026 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.expert-voices-2026__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

#expert-voices-2026-swiper.swiper {
    overflow: hidden !important;
}

.expert-voices-2026__slide-inner {
    display: flex;
    gap: 30px;
    border-radius: 24px;
    padding: 38px;
    box-sizing: border-box;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: var(--c-white);
    border: 1px solid var(--c-blue-100);
}

.expert-voices-2026__slide-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.expert-voices-2026__slide-inner svg {
    position: absolute;
    top: 40px;
    right: 40px;
    max-width: 59px;
    max-height: 47px;
}

.expert-voices-2026__slide-author {
    font-weight: 700;
    font-size: 28px;
    line-height: 120%;
    margin-bottom: 10px;
    color: #005eab;
}

.expert-voices-2026__slide-position {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    color: #8d8d8d;
}

.expert-voices-2026__slide-text {
    max-width: calc(100% - 120px);
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    color: var(--c-text);
    margin-left: auto;
}

.expert-voices-2026__swiper-nav {
    display: flex;
    position: relative;
    align-items: center;
    gap: 40px;
    justify-content: center;
}

.expert-voices-2026__swiper-button-next:after,
.expert-voices-2026__swiper-button-prev:after {
    display: none;
}

.expert-voices-2026__swiper-button-next,
.expert-voices-2026__swiper-button-prev {
    display: flex;
    position: unset !important;
    top: unset !important;
    bottom: unset !important;
    left: unset !important;
    right: unset !important;
    width: fit-content;
    height: fit-content;
    min-width: fit-content;
    min-height: fit-content;
    max-width: fit-content;
    max-height: fit-content;
    margin-top: 0 !important;
}

.expert-voices-2026__swiper-button-next svg *,
.expert-voices-2026__swiper-button-prev svg * {
    transition: all 0.3s;
}

.expert-voices-2026__swiper-button-next:not(.swiper-button-disabled) svg rect,
.expert-voices-2026__swiper-button-prev:not(.swiper-button-disabled) svg rect {
    fill: transparent;
}

.expert-voices-2026__swiper-button-next:not(.swiper-button-disabled):hover svg rect,
.expert-voices-2026__swiper-button-prev:not(.swiper-button-disabled):hover svg rect {
    fill: var(--c-blue-700);
}

.expert-voices-2026__swiper-button-next:not(.swiper-button-disabled):hover svg path,
.expert-voices-2026__swiper-button-prev:not(.swiper-button-disabled):hover svg path {
    fill: var(--c-white);
}

.expert-voices-2026__swiper-pagination {
    position: relative;
    overflow: hidden;
    display: flex;
    width: 80px;
    height: 10px;
}

.expert-voices-2026__swiper-pagination .expert-voices-2026__swiper-pagination-inner {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate3d(0, -50%, 0);
    bottom: unset;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    transition: transform 0.35s ease;
    will-change: transform;
}

.expert-voices-2026__swiper-pagination-inner.swiper-pagination-bullets {
    width: max-content;
}

.expert-voices-2026__swiper-pagination .swiper-pagination-bullet {
    width: 5px !important;
    min-width: 5px !important;
    height: 5px !important;
    background: #d9d9d9;
    margin-left: 10px !important;
    margin-right: 10px !important;
    opacity: 1 !important;
}

.expert-voices-2026__swiper-pagination .swiper-pagination-bullet:first-child {
    margin-left: 0 !important;
}

.expert-voices-2026__swiper-pagination .swiper-pagination-bullet:last-child {
    margin-right: 0 !important;
}

.expert-voices-2026__swiper-pagination .swiper-pagination-bullet-active {
    background: var(--c-blue-700);
}

.expert-voices-2026__slide-author-wrapper {
    display: flex;
    gap: 30px;
    max-width: calc(100% - 60px);
}

.expert-voices-2026__slide-image {
    display: flex;
    position: relative;
}

.expert-voices-2026__slide-image-inner {
    display: flex;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    max-height: fit-content;
}

.expert-voices-2026__slide-image-inner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 90px;
    height: 90px;
    background: #b5daf9;
}

.expert-voices-2026__slide-image img {
    display: flex;
    position: relative;
    z-index: 1;
    height: auto;
    max-width: 90px;
    min-width: 90px;
    max-height: 90px;
    min-height: 90px;
}

#expert-voices-2026-swiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

#expert-voices-2026-swiper .swiper-slide {
    height: auto;
    display: flex;
}

@media screen and (min-width: 1025px) {
    .expert-voices-2026__swiper-pagination .swiper-pagination-bullet-next {
        background: var(--c-blue-700);
    }
}

@media screen and (max-width: 1024px) {
    section.expert-voices-2026 {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .expert-voices-2026__slide-text {
        max-width: 100%;
    }

    .expert-voices-2026__slide-author {
        margin-bottom: 8px;
        font-size: 18px;
    }

    .expert-voices-2026__slide-inner svg {
        max-width: 31px;
        max-height: 25px;
        top: 20px;
        right: 22px;
    }

    .expert-voices-2026__content {
        gap: 32px;
    }

    .expert-voices-2026__slide-author-wrapper {
        gap: 20px;
        max-width: 100%;
    }

    .expert-voices-2026__slide-content {
        gap: 20px;
    }

    .expert-voices-2026__slide-image img {
        max-width: 68px;
        min-width: 68px;
        max-height: 68px;
        min-height: 68px;
    }

    .expert-voices-2026__slide-image-inner {
        border-radius: 12px;
    }

    .expert-voices-2026__slide-position {
        font-size: 16px;
    }

    .expert-voices-2026__slide-inner {
        padding: 19px 19px 23px 19px;
    }
}

/* new outlook 2026 contributors */
section.outlook-2026-contributors {
    padding-top: 50px;
    padding-bottom: 50px;
}

.outlook-2026-contributors__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.outlook-2026-contributors__marquee-item-name {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 28px;
    line-height: 104%;
    text-align: center;
    color: var(--c-blue-900);
    margin-bottom: 12px;
}

.outlook-2026-contributors__marquee-item-position {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 104%;
    text-align: center;
    color: #2869d1;
}

.outlook-2026-contributors__marquee {
    width: 100%;
    display: flex;
    overflow: hidden;
    flex-wrap: nowrap;
    box-sizing: border-box;
}

.outlook-2026-contributors__marquee-content {
    display: flex;
}

.outlook-2026-contributors__marquee-item {
    align-items: center;
    display: flex;
    gap: 9px;
    justify-content: space-between;
    margin-right: 40px;
    flex-direction: column;
    padding: 24px 14px 0 14px;
    backdrop-filter: blur(10px);
    background: #d8edff;
    border-radius: 24px;
    box-sizing: border-box;
    min-width: 248px;
    max-height: 390px;
    overflow: hidden;
}

.outlook-2026-contributors__marquee-item-image {
    margin-left: -24px;
    margin-right: -24px;
}

.outlook-2026-contributors__marquee-item-image img {
    max-height: 249px;
}

@media screen and (max-width: 1024px) {
    section.outlook-2026-contributors {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .outlook-2026-contributors__content {
        gap: 32px;
    }

    .outlook-2026-contributors__marquee-item {
        margin-right: 16px;
        padding: 16px 14px 0 14px;
        min-width: 152px;
        max-height: 239px;
    }

    .outlook-2026-contributors__marquee-item-image {
        margin-left: -16px;
        margin-right: -16px;
    }

    .outlook-2026-contributors__marquee-item-image img {
        max-height: 152px;
    }

    .outlook-2026-contributors__marquee-item-name {
        font-size: 17px;
    }

    .outlook-2026-contributors__marquee-item-position {
        font-size: 10px;
    }
}

@media screen and (max-width: 576px) {
    .outlook-2026-contributors__head {
        max-width: 280px;
        margin: 0 auto;
    }
}

/* new further resources */

section.further-resources-2026 {
    padding-top: 55px;
    padding-bottom: 110px;
}

.further-resources-2026__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.further-resources-2026__buttons {
    display: flex;
    gap: 24px;
    align-items: center;
    margin: 0 auto;
    max-width: 1104px;
    width: 100%;
}

.further-resources-2026__btn {
    display: flex;
    align-items: center;
    border-radius: 20px;
    box-sizing: border-box;
    padding: 23px 50px;
    overflow: hidden;
    position: relative;
    width: 100%;
    gap: 14px;
    justify-content: space-between;
    text-wrap-mode: nowrap;
    max-width: calc(50% - 12px);
}

.further-resources-2026__btn span.further-resources-2026__btn-text {
    display: flex;
    gap: 10px;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 28px;
    line-height: 120%;
    color: #fff;
    z-index: 2;
}

.further-resources-2026__btn span.further-resources-2026__btn-text br {
    display: none;
}

.further-resources-2026__btn span.further-resources-2026__btn-text svg {
    max-width: 34px;
    max-height: 34px;
    min-width: 34px;
    min-height: 34px;
}

.further-resources-2026__btn-text-inner {
    white-space: normal;
    word-wrap: break-word;
    line-height: 120%;
}

.further-resources-2026__btn-icon-arrow {
    display: flex;
    max-width: 54px;
    max-height: 54px;
    min-width: 54px;
    min-height: 54px;
}

.further-resources-2026__btn-icon-arrow svg * {
    transition: all 0.3s;
}

.further-resources-2026__btn:hover .further-resources-2026__btn-icon-arrow svg g path {
    stroke: var(--c-blue-900);
}

.further-resources-2026__btn .further-resources-2026__btn-icon-arrow svg rect {
    fill: transparent;
}

.further-resources-2026__btn:hover .further-resources-2026__btn-icon-arrow svg rect {
    fill: var(--c-white);
}

.further-resources-2026__btn--blue {
    background: linear-gradient(1deg, #05187a 0%, #0147ab 100%);
}

.further-resources-2026__btn--orange {
    background: linear-gradient(177deg, #fd9521 28.56%, #fc520b 78.95%);
}

@media screen and (max-width: 1024px) {
    section.further-resources-2026 {
        padding-top: 40px;
        padding-bottom: 80px;
    }

    .further-resources-2026__content {
        gap: 32px;
    }

    .further-resources-2026__buttons {
        flex-direction: column;
    }

    .further-resources-2026__btn {
        max-width: 100%;
        padding: 17px 20px;
    }

    .further-resources-2026__btn span.further-resources-2026__btn-text {
        align-items: flex-start;
        font-size: 26px;
    }
}

@media screen and (max-width: 768px) {
    .further-resources-2026__buttons {
        flex-direction: column;
    }
}

@media screen and (max-width: 576px) {
    .further-resources-2026__head {
        max-width: 280px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 480px) {
    .further-resources-2026__btn span.further-resources-2026__btn-text br {
        display: block;
    }
}

/* new outlook accolades */
section.outlook-accolades {
    padding-top: 50px;
    padding-bottom: 25px;
}

.outlook-accolades__container {
    width: 100%;
}

.outlook-accolades__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.outlook-accolades__body {
    display: flex;
    width: 100%;
    padding: 0;
    margin: 0;
    max-width: 1710px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-top: 30px;
    padding-bottom: 30px;
}

.outlook-accolades__body::-webkit-scrollbar {
    display: none;
}

.outlook-accolades__list {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
    min-height: 230px;
}

.outlook-accolades__item {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow:
        0 1px 4px 0 rgba(8, 0, 67, 0.03),
        0 5px 22px 0 rgba(8, 0, 67, 0.05);
    background: #fff;
    transition: all 0.3s;
    transform: scale(1);
    width: var(--acc-w, 230px);
    height: var(--acc-h, 230px);
    flex: 0 0 var(--acc-w, 160px);
    transform-origin: center center;
    transition:
        width 220ms ease,
        height 220ms ease,
        flex-basis 220ms ease,
        transform 220ms ease;

    will-change: width, height, flex-basis;
}
.outlook-accolades__item:hover {
    transform: scale(1.05);
}

.outlook-accolades__item-image {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.outlook-accolades__item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 1024px) {
    section.outlook-accolades {
        padding-top: 40px;
        padding-bottom: 25px;
    }

    .outlook-accolades__item {
        width: 165px;
        height: 171px;
    }

    .outlook-accolades__list {
        min-height: unset;
    }
}

@media screen and (max-width: 576px) {
    .outlook-accolades__head {
        max-width: 280px;
        margin: 0 auto;
    }
}

/* new foreword popup */
.foreword-cta__popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(28, 60, 112, 0.9);
    mix-blend-mode: multiply;
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.foreword-cta__popup-overlay.active {
    display: block;
    opacity: 1;
}

.foreword-cta__popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 1175px;
    width: min(1175px, calc(100vw - 40px));
    z-index: 1001;
    background: var(--c-white);
    border-radius: 20px;
    padding: 32px 60px 38px 60px;
    overflow: hidden;
    max-height: calc(100dvh - 40px);
    box-sizing: border-box;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.foreword-cta__popup.active {
    display: flex;
    flex-direction: column;
    opacity: 1;
}

.foreword-cta__popup-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.foreword-cta__popup-close {
    display: flex;
    max-width: 44px;
    max-height: 44px;
    min-width: 44px;
    min-height: 44px;
    cursor: pointer;
    z-index: 10;
}

.foreword-cta__popup-close * {
    transition: all 0.3s;
}

.foreword-cta__popup-close rect {
    fill: transparent;
}

.foreword-cta__popup-close:hover rect {
    fill: #0e4db3;
}

.foreword-cta__popup-close:hover path {
    stroke: var(--c-white);
}

.foreword-cta__popup-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px;
    position: relative;
    z-index: 3;
    min-height: 0;
    height: 100%;
}

.foreword-cta__popup-title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 54px;
    line-height: 110%;
    color: var(--c-blue-900);
}

.foreword-cta__popup-body {
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.foreword-cta__popup-subtitle {
    display: flex;
    flex-direction: column;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 42px;
    line-height: 115%;
    color: var(--c-blue-900);
    margin-bottom: 34px;
}

.foreword-cta__popup-subtitle span:not(:first-child) {
    color: var(--c-orange);
    font-size: 22px;
}

.foreword-cta__popup-text {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    color: #585858;
    text-wrap-style: pretty;
}

.foreword-cta__popup-text:not(:last-child) {
    margin-bottom: 19px;
}

.foreword-cta__popup-author-name {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 34px;
    line-height: 104%;
    color: var(--c-blue-900);
    margin-bottom: 8px;
}

.foreword-cta__popup-author-position {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 104%;
    color: var(--c-blue-900);
}

.foreword-cta__popup-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 22px;
    border-bottom: 3px solid #dfebff;
}

@media screen and (max-width: 1024px) {
    .foreword-cta__popup {
        padding: 26px 24px 27px 24px;
    }

    .foreword-cta__popup-close {
        top: 32px;
        right: 20px;
        max-width: 24px;
        max-height: 24px;
        min-width: 24px;
        min-height: 24px;
    }

    .foreword-cta__popup-top {
        padding-bottom: 18px;
    }

    .foreword-cta__popup-content {
        gap: 24px;
    }

    .foreword-cta__popup-subtitle {
        font-size: 28px;
    }

    .foreword-cta__popup-subtitle span:not(:first-child) {
        font-size: 18px;
    }

    .foreword-cta__popup-text {
        font-size: 16px;
    }

    .foreword-cta__popup-author-name {
        font-size: 24px;
    }

    .foreword-cta__popup-author-position {
        font-size: 18px;
    }
}

@media screen and (max-width: 768px) {
    .foreword-cta__popup-title {
        font-size: 32px;
    }

    .foreword-cta__popup {
        top: 20px;
        bottom: 20px;
        transform: translateX(-50%);
        height: auto;
        max-height: none;
        padding-left: 20px;
        padding-right: 20px;
    }

    .foreword-cta__popup-author {
        max-width: 130px;
    }

    .foreword-cta__popup-author-position {
        font-size: 16px;
    }
}

/* new footer */

footer {
    background-color: #0c2145;
    overflow: hidden;
    position: relative;
}

footer * {
    box-sizing: border-box;
}

footer ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

body footer .footer-block__container {
    max-width: 1440px !important;
}

.footer-section__wrapper {
    display: flex;
    flex-direction: column;
}

.footer-block__top--desktop {
    display: flex;
    justify-content: space-between;
}

.footer-right {
    display: flex;
    width: 100%;
    flex-basis: calc(100% - 414px);
    justify-content: space-between;
    margin-top: 30px;
    gap: 30px;
}

.footer-logo-logotype a {
    display: flex;
    max-width: fit-content;
}

.footer-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-right__form {
    display: flex;
    max-width: 320px;
    width: 100%;
    flex-direction: column;
    gap: 10px;
}

.footer-left {
    width: 100%;
    flex-basis: 414px;
}

.footer-logo {
    position: relative;
}

footer .container {
    padding: 0;
}

.footer-logo .skewed-element {
    background: #fff;
    border-radius: 0 0 20px;
    bottom: 0;
    position: absolute;
    top: -1px;
    transform: skewX(-37deg);
    width: 100vw;
    z-index: 0;
}

.footer-logo-logotype {
    position: relative;
    z-index: 1;
}

.footer-center {
    padding: 30px 6px 40px 6px;
    width: 100%;
}

.footer-badges {
    justify-content: flex-start;
    max-width: 989px;
    padding-left: 6px;
    align-items: center;
    display: flex;
    width: 100%;
}

.footer-badge {
    align-items: center;
    display: flex;
    font-size: 0;
    opacity: 1;
    text-decoration: none;
    transition: all 0.3s;
}

.form__wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.footer-block__form-title {
    font-family: var(--font-family);
    font-weight: 600;
    line-height: 125%;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
}

.form__inputs-inner {
    display: flex;
    flex-direction: column;
}

/* Input styles are now handled by .form-input class above */

.form-button-submit {
    background: rgba(254, 96, 0, 1);
    border: none;
    border-radius: 100px;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: block;
    font-family: var(--font-family);
    font-weight: 600;
    outline: none;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
    position: relative;
    transition: all 0.3s;
}

/* Form input styles */
.footer-right__form .form-input {
    width: 100%;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.3s ease;
    position: relative;
    font-family: var(--font-family);
    font-weight: 400;
    line-height: 130%;
    color: #fff;
}

.footer-right__form .form-input::placeholder {
    font-family: var(--font-family);
    font-weight: 400;
    line-height: 130%;
    color: #fff;
}

.footer-right__form .form-input.error,
.footer-right__form .form-input.invalid {
    border-color: #f30606;
    border-width: 1px;
    border-style: solid;
}

/* Form response output */
.footer-right__form .form-response-output {
    display: none;
    border: none;
    border-left: 1px solid #46b450;
    font-family: var(--font-family);
    color: #fff;
    transition: all 0.3s;
    font-weight: 400;
    line-height: 130%;
    margin-bottom: 24px;
    padding-left: 10px;
}

.footer-right__form .form-response-output.show {
    display: block;
}

.footer-right__form .form-response-output.error {
    border-left-color: #f30606;
}

@media screen and (min-width: 1280px) {
    .footer-right__form .form-response-output {
        font-size: 14px;
    }
}

@media screen and (max-width: 1279px) {
    .footer-right__form .form-response-output {
        font-size: 12px;
    }
}

.footer-block__menus {
    column-gap: 60px;
    display: flex;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
    width: 100%;
}

.footer-block__menus > .footer-block__menu-item ul {
    display: flex;
    flex-direction: column;
}

.footer-block__menus > .footer-block__menu-item a,
.footer-block__menu-title {
    font-family: var(--font-family);
    color: #fff;
    transition: all 0.3s;
}

.footer-block__menu-title {
    margin-bottom: 20px;
}

.footer-block__menus > .footer-block__menu-item:first-child ul {
    gap: 20px;
}

.footer-block__menus > .footer-block__menu-item:first-child a,
.footer-block__menu-title {
    font-weight: 600;
    line-height: 125%;
    text-transform: uppercase;
}

.footer-block__menus > .footer-block__menu-item:not(:first-child) ul {
    gap: 10px;
}

.footer-block__menus > .footer-block__menu-item:not(:first-child) a {
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
}

.footer-info {
    display: flex;
    flex-direction: column;
    margin-top: 40px;
    gap: 14px;
}

.footer-block__bottom {
    display: flex;
    justify-content: space-between;
    gap: 17px;
}

.footer-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 19px;
}

.footer-info-wrapper p a {
    font-family: var(--font-family);
    color: #fff;
    transition: all 0.3s;
}

.footer-info-wrapper p:nth-of-type(1) a {
    font-weight: 700;
    line-height: 125%;
}

.footer-info-wrapper p:nth-of-type(2) a,
.footer-info-wrapper p:nth-of-type(3) a {
    font-weight: 400;
    line-height: 130%;
}

.footer-info-wrapper p:nth-of-type(3) {
    max-width: 215px;
}

.footer-block__social-menu {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-block__copy p,
.footer-menu a {
    font-family: var(--font-family);
    font-weight: 400;
    line-height: 130%;
    position: relative;
}

.footer-menu {
    display: flex;
    align-items: center;
}

.footer-block__copy p {
    color: #fff;
}

.footer-menu a {
    color: #bfbfbf;
    transition: all 0.3s;
}

@media screen and (min-width: 1536px) {
    .footer-logo-logotype {
        padding: 36px 0 37px;
    }

    .footer-logo-logotype img {
        max-width: 185px;
    }
}

@media screen and (min-width: 1280px) and (max-width: 1535px) {
    .footer-logo-logotype {
        padding: 44px 0;
    }

    .footer-logo-logotype img {
        max-width: 141px;
    }

    .footer-left {
        flex-basis: 280px;
    }

    .footer-right {
        flex-basis: calc(100% - 280px);
    }

    .footer-logo .skewed-element {
        right: 35% !important;
    }
}

@media screen and (min-width: 1280px) {
    .footer-menu a:hover {
        color: #fff;
    }

    .footer-block__menus > .footer-block__menu-item a:hover,
    .footer-info-wrapper p a:hover {
        color: #bfbfbf;
    }

    .form-button-submit:hover {
        background: rgba(254, 136, 54, 1);
    }

    .footer-logo .skewed-element {
        height: 133px;
        right: 40%;
    }

    .footer-badge:not(:last-child) {
        margin-right: 10px;
    }

    .footer-badge img {
        max-height: 70px;
    }

    .footer-block__top--mobile {
        display: none !important;
    }

    .footer-info-wrapper p:nth-of-type(1) a {
        font-size: 16px;
    }

    .footer-info-wrapper p:nth-of-type(2) a,
    .footer-info-wrapper p:nth-of-type(3) a {
        font-size: 14px;
    }

    .footer-block__menus > .footer-block__menu-item:first-child a,
    .footer-block__menu-title {
        font-size: 20px;
    }

    .footer-right__form,
    .form__wrapper {
        gap: 20px;
    }

    .footer-block__form-title {
        font-size: 26px;
    }

    .form__inputs-inner {
        gap: 10px;
    }

    .footer-right__form .form-input {
        border-radius: 14px;
        padding: 14px 19px;
    }

    .footer-right__form .form-input,
    .footer-right__form .form-input::placeholder {
        font-size: 14px;
    }

    .form-button-submit {
        font-size: 16px;
        padding: 16px 38px;
    }

    .footer-block__bottom {
        align-items: center;
        padding-top: 20px;
        margin-top: 40px;
        border-top: 1px solid rgba(255, 255, 255, 0.17);
        padding-bottom: 30px;
    }

    .footer-block__copy p,
    .footer-menu a {
        font-size: 14px;
    }

    .footer-menu {
        gap: 28px;
    }
}

@media screen and (max-width: 1279px) {
    .footer-block__top--desktop {
        display: none !important;
    }

    .footer-right__form {
        max-width: 100%;
    }

    .footer-block__top--mobile {
        display: flex;
        flex-direction: column;
    }

    .footer-second {
        display: flex;
        flex-direction: column;
    }

    .footer-block__menu-list {
        display: flex;
        flex-direction: column;
    }

    .footer-block__menu-list a {
        font-family: var(--font-family);
        font-weight: 400;
        line-height: 130%;
        color: #fff;
    }

    .footer-block__bottom {
        flex-direction: column;
        padding-top: 26px;
        margin-top: 26px;
        border-top: 0.86px solid rgba(255, 255, 255, 0.17);
        padding-bottom: 20px;
    }

    .footer-right__form,
    .form__wrapper {
        gap: 17px;
    }

    .footer-block__form-title {
        font-size: 17px;
    }

    .form__inputs-inner {
        gap: 8px;
    }

    .footer-right__form .form-input {
        border-radius: 12px;
        padding: 11px 16px;
    }

    .footer-right__form .form-input,
    .footer-right__form .form-input::placeholder {
        font-size: 12px;
    }

    .form-button-submit {
        font-size: 13px;
        padding: 13px 38px;
    }

    .footer-fifth {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        align-items: center;
        margin-top: 26px;
    }

    .footer-badge img {
        max-height: 50px;
    }

    .footer-block__copy p,
    .footer-menu a {
        font-size: 12px;
    }

    .footer-menu {
        gap: 18px;
        flex-wrap: wrap;
    }

    .heading {
        cursor: pointer;
    }

    .contents {
        display: none;
    }

    .c-accordion__item {
        position: relative;
    }

    .footer-block__accordion-wrapper .c-accordion__title {
        padding-right: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-family: var(--font-family);
        font-weight: 600;
        font-size: 17px;
        line-height: 125%;
        text-transform: uppercase;
        color: #fff;
        padding-top: 10px;
        padding-bottom: 10px;
        border-bottom: 0.86px solid rgba(255, 255, 255, 0.17);
    }

    .footer-block__accordion-wrapper .c-accordion__title svg {
        width: 100%;
        height: auto;
        min-width: 21px;
        max-width: 21px;
        transition: all 0.5s ease;
        transform-origin: center;
    }

    .footer-block__accordion-wrapper .c-accordion__title.active svg {
        transform: rotate(180deg);
    }

    .c-accordion__content {
        padding-top: 20px;
    }

    .c-accordion__item {
        cursor: pointer;
    }

    .footer-second {
        margin-top: 30px;
    }

    .footer-second .footer-block__menus > .footer-block__menu-item:first-child a,
    .footer-second .footer-block__menu-title {
        font-size: 17px !important;
    }

    .footer-second .footer-block__menus > .footer-block__menu-item li {
        width: 100%;
        padding-bottom: 10px;
        border-bottom: 0.86px solid rgba(255, 255, 255, 0.17);
    }

    .footer-second .footer-block__menus > .footer-block__menu-item li:not(:last-child) {
        margin-bottom: 10px;
    }

    .footer-second .footer-block__menus > .footer-block__menu-item:first-child ul {
        gap: 0 !important;
    }

    .footer-block__menu-item {
        width: 100%;
    }

    .footer-third {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 26px;
        margin-bottom: 26px;
    }

    .footer-block__social-menu li a img {
        max-width: 25px;
        height: auto;
        width: 100%;
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
    .footer-block__menu-list a {
        font-size: 14px;
    }

    .footer-block__menu-list {
        gap: 12px;
    }

    .footer-info-wrapper p:nth-of-type(1) a {
        font-size: 14px;
    }

    .footer-info-wrapper p:nth-of-type(2) a,
    .footer-info-wrapper p:nth-of-type(3) a {
        font-size: 12px;
    }

    .footer-logo-logotype {
        padding: 24px 0;
    }

    .footer-logo-logotype img {
        max-width: 110px;
    }

    .footer-logo .skewed-element {
        height: 84px;
        right: 75%;
    }
}

@media screen and (max-width: 767px) {
    body .footer-block__menu-list a {
        font-size: 12px !important;
    }

    body .footer-block__menu-list {
        gap: 9px !important;
    }

    body .footer-info-wrapper p:nth-of-type(1) a {
        font-size: 13px !important;
    }

    body .footer-info-wrapper p:nth-of-type(2) a,
    body .footer-info-wrapper p:nth-of-type(3) a {
        font-size: 12px !important;
    }

    .footer-logo-logotype {
        padding: 26px 0;
    }

    .footer-logo-logotype img {
        max-width: 95px;
    }

    .footer-logo .skewed-element {
        height: 83px;
        right: 60%;
    }
}

/* pseudo item last section */

.section-tabs-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* strategic insights popup */

.strategic-insights__popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 926px;
    width: min(926px, calc(100vw - 40px));
    z-index: 1001;
    border-radius: 24px;
    padding: 42px 50px;
    overflow: hidden;
    max-height: calc(100dvh - 40px);
    box-sizing: border-box;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow:
        0 0px 2px 0 rgba(0, 0, 0, 0.02),
        0 1px 5px 0 rgba(0, 0, 0, 0.03),
        0 2px 10px 0 rgba(0, 0, 0, 0.04),
        0 3px 18px 0 rgba(0, 0, 0, 0.04),
        0 5px 33px 0 rgba(0, 0, 0, 0.05),
        0 12px 80px 0 rgba(0, 0, 0, 0.07);
    background: #fff;
}

.strategic-insights__popup.active {
    display: flex;
    flex-direction: column;
    opacity: 1;
}

.strategic-insights__popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    max-width: 44px;
    max-height: 44px;
    min-width: 44px;
    min-height: 44px;
    cursor: pointer;
    z-index: 10;
}

.strategic-insights__popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(28, 60, 112, 0.9);
    mix-blend-mode: multiply;
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.strategic-insights__popup-overlay.active {
    display: block;
    opacity: 1;
}

.strategic-insights__popup-close * {
    transition: all 0.3s;
}

.strategic-insights__popup-content {
    display: flex;
    justify-content: space-between;
    gap: 72px;
    position: relative;
    z-index: 3;
    min-height: 0;
    height: 100%;
    overflow-y: auto;
}

.strategic-insights__popup-content::-webkit-scrollbar {
    display: none;
}

.strategic-insights__popup-content::-webkit-scrollbar-track {
    background: transparent;
}

.strategic-insights__popup-content::-webkit-scrollbar-thumb {
    background: transparent;
}

.strategic-insights__popup-title {
    font-family: var(--font-family);
    font-weight: 800;
    font-size: 38px;
    line-height: 120%;
    text-transform: uppercase;
    color: var(--c-blue-900);
    text-wrap-style: balance;
}

.strategic-insights__popup-top {
    position: relative;
    z-index: 3;
    margin-bottom: 24px;
}

.strategic-insights__popup-right-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex-basis: calc(100% - 346px - 72px);
    width: 100%;
    box-sizing: border-box;
}

.strategic-insights__popup-image img {
    width: 100%;
    height: auto;
    max-width: 220px;
    margin-left: auto;
    margin-right: auto;
}

.strategic-insights__popup-form {
    display: flex;
    flex-basis: 346px;
    padding: 24px;
    box-sizing: border-box;
    border-radius: 18px;
    background: #f1f4f9;
}

.strategic-insights__popup-thankyou {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: none;
    align-items: center;
    justify-content: center;
    background: #d8edff;
    border-radius: inherit;
    padding: 10px;
}

.strategic-insights__popup-thankyou.is-visible {
    display: flex;
}

.strategic-insights__popup-thankyou .ty-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.strategic-insights__popup-thankyou .ty-wrap-image {
    width: 110px;
    height: 110px;
}

.strategic-insights__popup-thankyou .ty-wrap-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.strategic-insights__popup-thankyou .ty-wrap-content h4 {
    font-family: Asap;
    font-weight: 800;
    font-size: 38px;
    line-height: 120%;
    text-align: center;
    text-transform: uppercase;
    color: #003867;
}

.strategic-insights__popup-thankyou .ty-wrap-content p {
    font-family: Asap;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: 1%;
    text-align: center;
    color: #003867;
}

.strategic-insights__popup-thankyou .ty-wrap-content p span {
    font-family: Asap;
    font-weight: 600;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: 1%;
    text-align: center;
    text-transform: none;
}

.strategic-insights__popup-content-benefits {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.strategic-insights__popup-content-benefits-item {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    padding: 15px 12px;
    box-sizing: border-box;
    background: #f1f4f9;
}

.strategic-insights__popup-content-benefits-item-title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 130%;
    color: #005eab;
}

.strategic-insights__popup-content-benefits-item svg {
    max-width: 24px;
    max-height: 24px;
    min-width: 24px;
    min-height: 24px;
}

.strategic-insights__popup-image-mobile {
    display: none;
}

@media screen and (max-width: 1024px) {
    .strategic-insights__popup-title {
        font-size: 24px;
    }

    .strategic-insights__popup {
        padding: 42px 30px;
    }

    .strategic-insights__popup-close {
        max-width: 30px;
        max-height: 30px;
        min-width: 30px;
        min-height: 30px;
    }

    .strategic-insights__popup-top {
        margin-bottom: 20px;
    }

    .strategic-insights__popup-content {
        gap: 28px;
    }

    .strategic-insights__popup-right-content {
        flex-basis: calc(100% - 346px - 28px);
    }
}

@media screen and (max-width: 768px) {
    .strategic-insights__popup-right-content {
        width: 100%;
        flex-basis: 100%;
    }

    .strategic-insights__popup-content {
        flex-direction: column;
    }

    .strategic-insights__popup-title {
        text-align: center;
    }

    .strategic-insights__popup-image img {
        margin-top: unset;
        max-width: 120px;
        max-height: 120px;
    }

    .strategic-insights__popup-content-benefits-item {
        padding: 8px 12px;
    }

    .strategic-insights__popup-form {
        flex-basis: 100%;
    }

    .strategic-insights__popup-image-desktop {
        display: none;
    }

    .strategic-insights__popup-image-mobile {
        display: block;
    }

    .strategic-insights__popup-right-content {
        gap: 0;
    }
}

/* strategic insights form */
#strategic-insights-form {
    width: 100%;
}
#strategic-insights-form .form__inputs-inner {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#strategic-insights-form .form__wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

#strategic-insights-form input {
    width: 100%;
    font-family: Asap;
    font-weight: 400;
    font-size: 15px;
    line-height: 120%;
    background: #fff;
    transition: all 0.3s;
    outline: none !important;
    border-radius: 5px;
    border: 1px solid #d9e0ed;
    box-sizing: border-box;
    padding: 12px 14px 13px 14px;
}

#strategic-insights-form input:focus {
    border-color: #fe6000;
}

#strategic-insights-form input.error,
#strategic-insights-form.validate input.error {
    border-color: #f30606;
}

#strategic-insights-form input::placeholder {
    font-family: Asap;
    font-weight: 400;
    font-size: 15px;
    line-height: 120%;
    color: #a0b1d1;
}

#strategic-insights-form .form-button-submit {
    background: rgba(254, 96, 0, 1);
    border: none;
    border-radius: 100px;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: block;
    outline: none;
    width: 100%;
    position: relative;
    transition: all 0.3s;

    font-family: var(--font-family);
    text-align: center;
    font-weight: 800;
    font-size: 22px;
    line-height: 120%;
    letter-spacing: 2%;
    text-transform: uppercase;
    padding: 17px 22px 18px 22px;
}

#strategic-insights-form .form-button-submit:hover {
    background: rgba(254, 136, 54, 1);
}

#strategic-insights-form .form-response-output {
    font-family: var(--font-family);
    font-size: 14px;
    line-height: 120%;
    border-left: 1px solid #46b450;
    padding-left: 10px;
    color: var(--c-blue-900);
}

#strategic-insights-form .form-response-output.error,
#strategic-insights-form .form-response-output.show {
    margin-top: 20px;
}

#strategic-insights-form .form-response-output.error {
    border-left-color: #f30606;
    color: #f30606;
}
