/*!
Theme Name: artilab-wp
Theme URI: https://artilab.pro/
Author: Mishchenko Vadym
Author URI: https://artilab.pro/
Description: Description
Version: 1.2.32
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: artilab
*/

/* =============================================
   HEADER
   ============================================= */

.header {
    display: block !important;
    padding: 0 !important;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 0 #E8E9EC;
}

/* Top bar */
.header__top {
    padding: 12px 0;
}

.header__top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.header__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.header__logo img {
    height: 40px;
    width: auto;
    display: block;
}

.header__top-right {
    display: flex;
    align-items: center;
    gap: 12px;
}
/* Nav bar */
.header__nav-bar {
    border-top: 1px solid #E8E9EC;
    padding: 0;
}

.header__nav-bar .container {
    display: flex;
    justify-content: center;
}

.header__menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
}

.header__menu li a {
    display: block;
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 500;
    color: #262A40;
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    transition: color 0.2s ease;
}

.header__menu li a::before {
    display: none !important;
}

.header__menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background: #C0392B;
    border-radius: 2px 2px 0 0;
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.header__menu li.current-menu-item > a,
.header__menu li.current-menu-ancestor > a {
    color: #C0392B;
    font-weight: 600;
}

.header__menu li.current-menu-item > a::after,
.header__menu li.current-menu-ancestor > a::after {
    transform: scaleX(1);
}

.header__menu li a:hover {
    color: #C0392B;
}

/* Buttons */
.header__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 60px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.header__btn:hover {
    opacity: 0.85;
}

.header__btn--red {
    background: #BB1D2C;
    color: #fff;
}

.header__btn--dark {
    background: #262A40;
    color: #fff;
}

/* Language switcher */
.header__lang {
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    order: 3;
}

.header__lang-dropdown {
    position: relative;
}

.header__lang-current {
    display: flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #262A40;
    padding: 4px 0;
}

.header__lang-list {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    list-style: none;
    margin: 0;
    padding: 6px;
    min-width: 80px;
    z-index: 100;
}

.header__lang-dropdown.is-open .header__lang-list {
    display: block;
}

.header__lang-list li a {
    display: block;
    padding: 8px 12px;
    font-size: 14px;
    color: #262A40;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
}

.header__lang-list li a:hover,
.header__lang-list li a.is-active {
    background: #F4F4F4;
    color: #C0392B;
}

/* Burger */
.header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    width: 32px;
}

.header__burger span {
    display: block;
    height: 2px;
    background: #262A40;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile right group */
.header__mobile-right {
    display: none;
    align-items: center;
    gap: 12px;
}

/* Mobile drawer */
.header__drawer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    overflow-y: auto;
}

.header__drawer.is-open {
    transform: translateX(0);
}

.header__drawer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #E8E9EC;
    flex-shrink: 0;
}

.header__drawer-top-right {
    display: flex;
    align-items: center;
    gap: 12px;
}
.header__drawer-top-right {
    flex-direction: row-reverse;
}
.header__close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__drawer-nav {
    padding: 16px 20px;
    flex: 1;
}

.header__drawer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.header__drawer-menu li {
    border-bottom: 1px solid #E8E9EC;
}

.header__drawer-menu li a {
    display: block;
    padding: 16px 0;
    font-size: 17px;
    font-weight: 500;
    color: #262A40;
    text-decoration: none;
    position: relative;
}

/* Reset pseudo-elements from old main.css */
.header__drawer-menu li a::before,
.header__drawer-menu li a::after {
    display: none !important;
}

.header__drawer-menu li.current-menu-item > a {
    color: #C0392B;
    font-weight: 700;
}

.header__drawer-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    flex-shrink: 0;
}

.header__drawer-btns .header__btn {
    width: 100%;
    padding: 14px;
    font-size: 15px;
}

/* Overlay */
.header__overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1050;
}

.header__overlay.is-open {
    display: block;
}

@media (max-width: 1024px) {
    .header__lang {
        order: 1;
    }
    .header__top-right {
        display: none;
    }

    .header__mobile-right {
        display: flex;
    }

    .header__burger {
        display: flex;
        order: 2;
    }

    .header__nav-bar {
        display: none;
    }
}

/* =============================================
   GLOBAL TYPOGRAPHY
   ============================================= */

*, *::before, *::after {
    font-family: 'DM Sans', sans-serif;
}

h1, h2, h3, h4, h5,
.h1, .h2, .h3, .h4, .h5 {
    font-family: 'Instrument Sans', sans-serif;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--Background, #F4F4F4);
}
.button.button--default {
    border-radius: 60px;
    padding: 12px 24px;
    color: var(--White, #FFF);
    font-family: "Instrument Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    min-height: auto;
}
.s-feedback-1 {
    padding-top: 40px;
    margin-bottom: 20px;
}
.s-feedback-1_wrap {
    border-radius: 24px;
    background: #262A40;
    padding: 0 20px 0 60px;
    display: flex;
    justify-content: space-between;
    position: relative;
    gap: 24px;
    flex-wrap: nowrap;
}
.s-feedback-1_wrap::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 800px;
    background: url(./build/img/form-stars.png) center center / cover no-repeat;
    z-index: 0;
}
.s-feedback-1_wrap .s-feedback-1_col {
    z-index: 1;
}
.s-feedback-1_wrap .s-feedback-1_col:nth-of-type(1) {
    display: flex;
    width: fit-content;
    flex-direction: column;
    padding-top: 60px;
}
.s-feedback-1_wrap .s-feedback-1_col .s-feedback-1-buttons {
    display: flex;
    align-items: center;
    margin-top: auto;
    padding-bottom: 60px;
    gap: 14px;
}
.s-feedback-1_wrap .s-feedback-1_col .s-feedback-1-buttons a {
    padding: 15px 32px;
    border-radius: 60px;
}
.s-feedback-1_wrap .s-feedback-1_col .s-feedback-1-buttons a:nth-of-type(2) {
    background: var(--White, #FFF);
    color: var(--Secondary, #262A40);

}
.s-feedback-1_wrap .s-feedback-1_col:nth-of-type(2) {
    max-width: 555px;
    padding: 30px;
    border-radius: 16px;
    transform: translateY(-20px);
    background: #fff;
    box-shadow: 0 12px 60px 0 rgba(0, 0, 0, 0.03), 0 4.622px 19.111px 0 rgba(0, 0, 0, 0.03), 0 0.978px 4.889px 0 rgba(0, 0, 0, 0.02);
    width: 100%;
}
@media screen and (min-width: 1024px) and (max-width: 1200px) {
    .s-feedback-1_wrap .s-feedback-1_col:nth-of-type(2) {
        max-width: 450px;
    }
}
.s-feedback-1_wrap .form-field,
.s-contact-block__right .form-field {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 16px;
}
.s-feedback-1 .cform__row ,
.s-contact-block__right .cform__row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    width: 100%;
}
.s-feedback-1 .form-input ,
.s-contact-block__right .form-input {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
    gap: 6px;
}
.s-feedback-1__x {
    position: absolute;
    right: 300px;
    top: 50%;
    transform: translate(0 , -50%);
    z-index: 0;
}
.s-feedback-1 .form-input label ,
.s-contact-block__right .form-input label {
    color: #262A40;
    /* font-family: "DM Sans"; */
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
}
.s-feedback-1 .form-input input ,
.s-feedback-1 .form-input textarea ,
.s-contact-block__right .form-input input ,
.s-contact-block__right .form-input textarea {
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #D7DADE;
    background: #FFF;
}
.s-feedback-1 .form-input textarea ,
.s-contact-block__right .form-input textarea {
    width: 100%;
    max-height: 108px;
    resize: none;
}
.s-feedback-1 .cform__row .form-input,
.s-contact-block__right  .cform__row .form-input{
    margin-bottom: 0;
    width: calc(50% - 12px);
}
.s-feedback-1 .cform__captcha ,
.s-contact-block__right  .cform__captcha{
    width: 100%;
}
.s-feedback-1 .form-field .button ,
.s-contact-block__right .form-field .button{
    width: fit-content;
    margin-top: 0;
    min-height: fit-content;
    border-radius: 60px;
    padding: 11px 24px;
}
.s-feedback-1_title {
    color: #FFF;
    /* font-family: "Instrument Sans"; */
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%;
    max-width: 400px;
    width: 100%;
}
.s-feedback-1-signature {
    display: flex;
    gap: 25px;
    max-width: 500px;
}
.s-feedback-1-signature img {
    max-width: 80px;
    max-height: 80px;
    border-radius: 50%;
}
.s-feedback-1-signature .s-feedback-1-signature__description ,
.s-promo-banner__desc {
    position: relative;
    border-radius: 0 24px 24px 24px;
    padding: 20px 16px;
    background: var(--White, #FFF);
    box-shadow: 0 8px 24px 0 rgba(122, 134, 163, 0.10), 0 16px 48px 0 rgba(122, 134, 163, 0.10);
}
.s-feedback-1-signature .s-feedback-1-signature__description::after ,
.s-promo-banner__desc::after {
    content: '';
    background: url(./build/img/triangle.svg) center center / cover no-repeat;
    width: 19px;
    height: 25px;
    position: absolute;
    right: calc(100% - 5px);
    top: 0;

}
.s-promo-banner__desc::after {
    right: calc(100% - 14px);
}
.s-feedback-1-signature p {
    color: #59687C;
    /* font-family: "DM Sans"; */
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 0.16px;
    margin-bottom: 0;
}
.wpcf7 form .wpcf7-response-output {
    color: #262A40;
}
@media screen and (max-width: 1024px) {
    .s-feedback-1_wrap {
        padding: 20px;
        flex-direction: column;
    }
    .s-feedback-1_wrap .s-feedback-1_col:nth-of-type(1) {
        gap: 24px 16px;
        padding: 0;
    }
    .s-feedback-1_wrap .s-feedback-1_col:nth-of-type(2) {
        padding: 16px;
        transform: translateY(0);
        max-width: 100%;
    }
    .s-feedback-1_wrap::after {
        top: 0;
        left: 0;
        transform: translate(0, 0);
        height: 450px;
        width: 100%;
    }
    .s-feedback-1_wrap .s-feedback-1_col .s-feedback-1-buttons {
        padding-bottom: 0;
    }
    .s-feedback-1 .cform__row .form-input {
        width: calc(50% - 12px) !important;
    }
    .s-feedback-1__x {
        display: none;
    }
    .s-feedback-1_title {
        max-width: 100%;
    }
}
@media screen and (max-width: 550px) {
    .s-feedback-1 .cform__row {
        gap: 12px;
    }
    .s-feedback-1 .cform__row .form-input {
        width: 100% !important;
    }
    .s-feedback-1_wrap .s-feedback-1_col .s-feedback-1-buttons {
        flex-direction: column;
        width: 100%;
    }
    .s-feedback-1_wrap .s-feedback-1_col .s-feedback-1-buttons a {
        width: 100%;
        max-width: 100%;
    }
    .s-feedback-1_wrap .s-feedback-1_col:nth-of-type(1) {
        width: 100%;
    }
    .s-feedback-1-signature img {
        width: 48px;
        height: 48px;
    }
    .s-feedback-1-signature p {
        font-size: 14px;
    }
}

/* =============================================
   S-CASE-SLIDER
   ============================================= */

.s-case-slider {
    padding: 64px 0;
}

.s-case-slider__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 32px;
    gap: 16px;
}

.s-case-slider__label {
   color: var(--Secondary, #262A40);
    /* text-align: center; */
    /* font-family: "DM Sans"; */
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%; /* 18.2px */
}

.s-case-slider__title {
   color: var(--Secondary, #262A40);
    /* font-family: "Instrument Sans"; */
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%; /* 47.5px */
}

.s-case-slider__nav {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.s-case-slider__btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border-radius: 130.435px;
    border: 1.304px solid var(--Secondary, #262A40);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #181C2E;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.s-case-slider__btn:hover svg path {
    fill: #fff;
}
.s-case-slider__btn:hover {
    border-color: #181C2E;
    background: #181C2E;
    color: #fff;
}

.s-case-slider__btn.swiper-button-disabled {
    opacity: 0.4;
    pointer-events: none;
}

/* Card */
.s-case-slider__card {
    overflow: hidden;
    display: flex;
    border-radius: 24px 24px 0 0;
    flex-direction: column;
    height: 100%;
}

.s-case-slider__card-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    margin-bottom: 14px;
}

.s-case-slider__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
    border-radius: 24px;
}

.s-case-slider__card:hover .s-case-slider__card-img img {
    transform: scale(1.04);
}

.s-case-slider__card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 12px;
}

.s-case-slider__tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 60px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 4px;
    background: rgba(187, 29, 44, 0.10);
    width: fit-content;
    color: var(--Primary, #BB1D2C);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    letter-spacing: -0.14px;
}

.s-case-slider__card-title {
   color: var(--Secondary, #262A40);
    /* font-family: "Instrument Sans"; */
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    margin: 0;
    flex: 1;
}

.s-case-slider__card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--Secondary, #262A40);
    text-align: center;
    /* font-family: "Instrument Sans"; */
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    text-decoration: none;
    padding: 10px 20px;
    width: fit-content;
    margin-top: 20px;
    transition: gap 0.2s;
    border-radius: 60px;
    border: 1px solid var(--Secondary, #262A40);
}

.s-case-slider__card-link:hover {
    gap: 10px;
}

/* Pagination */
.s-case-slider__pagination {
    margin-top: 28px;
    position: static;
}

.s-case-slider__pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #D7DADE;
    opacity: 1;
    border-radius: 50%;
    transition: background 0.2s, width 0.2s;
}

.s-case-slider__pagination .swiper-pagination-bullet-active {
    background: #BB1D2C;
    /* width: 24px; */
    border-radius: 4px;
}

.s-case-slider__swiper .swiper-slide {
    height: auto;
}

@media screen and (max-width: 1024px) {
    .s-case-slider__title {
        font-size: 32px;
    }
}

@media screen and (max-width: 768px) {
    .s-case-slider {
        padding: 48px 0;
    }
    .s-case-slider__title {
        font-size: 26px;
    }
    .s-case-slider__head {
        align-items: center;
        justify-content: center;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .s-case-slider__card-title {
        font-size: 16px;
    }
    .s-case-slider__nav {
        display: none;
    }
}

/* =============================================
   S-HERO
   ============================================= */

.s-hero {
    padding: 20px 0;
}

.s-hero__wrap {
    border-radius: 24px;
    background: #262A40;
    padding: 64px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    gap: 40px;
    min-height: 220px;
}
.s-hero__wrap.s-hero__wrap--bg {
    overflow: hidden;
}
/* Image as background modifier */
.s-hero__wrap--bg::after {
    content: '';
    position: absolute;
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    right: 0;
    top: 0;
    width: 580px;
    height: 100%;
}
@media screen and (max-width: 767px) {
    .s-hero__wrap--bg::after {
        width: 100%;
        bottom: 0;
        top: unset;
        height: 200px;
    }
    .s-hero__wrap--bg .s-hero__stars {
        display: none;
    }
    .s-hero__wrap.s-hero__wrap--bg {
        padding-bottom: 220px;
    }
}
/* Stars overlay — same as s-feedback-1_wrap::after */
.s-hero__stars {
    position: absolute;
    left: 0;
    top: 0;
    width: 600px;
    height: 100%;
    background: url(./build/img/form-stars.png) center center / cover no-repeat;
    z-index: 0;
    pointer-events: none;
}

/* Left content — above stars */
.s-hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
    min-width: 0;
    max-width: 600px;
}
@media screen and (max-width: 767px) {
    .s-hero__content {
        max-width: 100%;
    }
}
/* Breadcrumbs */
.s-hero__breadcrumbs-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    white-space: nowrap;
    overflow-x: auto;
}

.s-hero__breadcrumbs-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 1);
    line-height: normal;
}

.s-hero__breadcrumbs-item + .s-hero__breadcrumbs-item::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 10px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='10' viewBox='0 0 6 10' fill='none'%3E%3Cpath d='M0.833984 0.833374L4.83398 4.83337L0.833984 8.83337' stroke='%23B7BCC5' stroke-width='1.66667' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
    flex-shrink: 0;
}

.s-hero__breadcrumbs-link {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.2s;
}

.s-hero__breadcrumbs-link:hover {
    color: #fff;
}

.s-hero__breadcrumbs-item--active span {
    color: rgba(255, 255, 255, 1);
}

/* Title */
.s-hero__title {
    color: #fff;
    font-size: 52px;
    font-weight: 700;
    line-height: 120%;
    margin: 0;
}

/* Description */
.s-hero__description {
    color: rgba(255, 255, 255, 1);
    font-size: 18px;
    line-height: 130%;
    margin: 0;
    max-width: 600px;
}

/* Tags */
.s-hero__buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}
.button--red.button:before {
    display: none;
}
.button--red {
    background: #BB1D2C;
    color: #fff;
    border-radius: 60px;
    padding: 12px 24px;
    font-family: "Instrument Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 120%;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: opacity 0.2s;
}

.button--red:hover {
    opacity: 0.85;
}

.button--white {
    background: #fff;
    color: #262A40;
    border-radius: 60px;
    padding: 12px 24px;
    font-family: "Instrument Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 120%;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: opacity 0.2s;
}

.button--white:hover {
    opacity: 0.85;
}

.s-hero__tags {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.s-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px 4px 6px;
    border-radius: 500px;
    border: 1px solid var(--White, #FFF);
    background: #262A40;
    color: var(--White, #FFF);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    white-space: nowrap;
}

.s-hero__tag strong {
    color: #fff;
    font-weight: 600;
}

/* Thumbnail — right column */
.s-hero__thumbnail {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    width: 280px;
    height: 220px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.s-hero__thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 14px;
    display: block;
}

/* ---- Responsive ---- */
@media screen and (max-width: 1024px) {
    .s-hero__wrap {
        padding: 36px 40px;
    }
    .s-hero__title {
        font-size: 32px;
    }
    .s-hero__thumbnail {
        width: 220px;
        aspect-ratio: 1/1;

    }
    .s-hero__stars {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .s-hero__wrap {
        padding: 28px 24px;
        flex-direction: column;
        align-items: flex-start;
        min-height: unset;
        gap: 24px;
    }
    .s-hero__title {
        font-size: 32px;
    }
    .s-hero__thumbnail {
        width: 100%;
    }
    .s-hero__description {
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .s-hero__title {
        font-size: 32px;
    }
    .s-hero__tags {
        align-items: flex-start;
    }
    .s-hero__buttons a {
        width: 100%;
    }
}

/* =============================================
   S-CONTENT
   ============================================= */

.s-content {
    padding: 48px 0;
}

.s-content__title {
    font-size: 38px;
    font-weight: 700;
    line-height: 125%;
    color: #262A40;
    margin-bottom: 32px;
}

.s-content__body {
    font-size: 16px;
    line-height: 1.7;
    color: #3D4A5C;
    border-radius: 24px;
    background: #FFF;
    padding: 64px;
}

/* Clearfix — чтобы секция не схлопнулась при float */
.s-content__body::after {
    content: '';
    display: table;
    clear: both;
}

/* ---- Обтекание картинок ---- */

/* WordPress добавляет эти классы автоматически при выравнивании */
.s-content__body .alignleft,
.s-content__body img.alignleft,
.s-content__body figure.alignleft {
    float: left;
    margin: 6px 28px 20px 0;
    max-width: 50%;
}

.s-content__body .alignright,
.s-content__body img.alignright,
.s-content__body figure.alignright {
    float: right;
    margin: 6px 0 20px 28px;
    max-width: 50%;
}

.s-content__body .aligncenter,
.s-content__body img.aligncenter,
.s-content__body figure.aligncenter {
    display: block;
    float: none;
    margin: 24px auto;
    max-width: 100%;
}

.s-content__body .alignnone,
.s-content__body img.alignnone {
    float: none;
    margin: 24px 0;
    max-width: 100%;
}

/* ---- Картинка с подписью (wp-caption) ---- */
.s-content__body .wp-caption {
    max-width: 50%;
    background: transparent;
    border: none;
    padding: 0;
}

.s-content__body .wp-caption img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.s-content__body .wp-caption-text {
    font-size: 13px;
    color: #8492A6;
    margin-top: 6px;
    text-align: center;
    font-style: italic;
}

/* ---- Общие стили для картинок внутри контента ---- */
.s-content__body img {
    height: auto;
    max-width: 100%;
    border-radius: 8px;
}

/* ---- Типографика ---- */
.s-content__body h1 {
    font-size: 38px;
    font-weight: 700;
    color: #262A40;
    line-height: 1.25;
    margin-bottom: 16px;
}
.s-content__body h2 {
    font-size: 30px;
    font-weight: 700;
    color: #262A40;
    margin: 40px 0 16px;
    line-height: 1.25;
}

.s-content__body h3 {
    font-size: 22px;
    font-weight: 700;
    color: #262A40;
    margin: 32px 0 12px;
    line-height: 1.3;
}

.s-content__body h4 {
    font-size: 18px;
    font-weight: 600;
    color: #262A40;
    margin: 24px 0 10px;
}

.s-content__body p {
    margin-bottom: 18px;
    color: var(--Secondary, #262A40);
    font-family: "DM Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.s-content__body ul,
.s-content__body ol {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* UL — arrow marker */
.s-content__body ul li {
    position: relative;
    padding-left: 36px;
    font-size: 16px;
    line-height: 1.55;
    color: #262A40;
}

.s-content__body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M14.4297 6L20.4997 12L14.4297 18' stroke='%23262A40' stroke-width='2.5' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M3.5 12H20.33' stroke='%23262A40' stroke-width='2.5' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* OL — numbered dark badge */
.s-content__body ol {
    counter-reset: ol-counter;
    gap: 16px;
}

.s-content__body ol li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 16px;
    line-height: 1.55;
    color: #262A40;
    counter-increment: ol-counter;
    padding-top: 8px;
}

.s-content__body ol li::before {
    content: counter(ol-counter, decimal-leading-zero);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: #262A40;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 10px;
    margin-top: -8px;
}

.s-content__body a {
    color: #BB1D2C;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.s-content__body a:hover {
    text-decoration: none;
}

.s-content__body blockquote {
    margin: 28px 0;
    padding: 32px 48px;
    border-radius: 24px;
    border-left: 8px solid var(--Primary, #BB1D2C);
    background: var(--Background, #F4F4F4);
    color: var(--Secondary, #262A40);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    display: flex;
    flex-direction: column;
}
.s-content__body blockquote strong {
    color: #222;
    font-family: "Instrument Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%; 
}

/* ---- Responsive ---- */
@media screen and (max-width: 768px) {
    .s-content__body {
        padding: 24px;
    }
    .s-content__title {
        font-size: 28px;
    }

    .s-content__body .alignleft,
    .s-content__body img.alignleft,
    .s-content__body figure.alignleft,
    .s-content__body .alignright,
    .s-content__body img.alignright,
    .s-content__body figure.alignright {
        float: none;
        max-width: 100%;
        margin: 20px 0;
        display: block;
    }

    .s-content__body .wp-caption {
        max-width: 100%;
    }
    .s-content .container {
        padding: 0;
    }
}

/* =============================================
   404
   ============================================= */
.page-404 {
    padding: 80px 0;
}
.page-404 .container {
    min-height: fit-content;
}
.page-404_inner {
    background: url(./build/img/404.webp) center center / cover no-repeat;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    padding: 96px;
}
.page-404 .page-404_title {
    color: var(--White, #FFF);
    text-align: center;
    font-size: 54px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 12px;
}
.page-404 .page-404_descript {
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin-bottom: 48px;
}

@media screen and (max-width: 767px) {
    .page-404 {
        padding: 64px 0;
    }
    .page-404_inner {
        padding: 80px 20px;
    }  
    .page-404 .page-404_title {
        font-size: 32px;
    }
    .page-404 .page-404_descript {
        font-size: 16px;
        line-height: 150%;
        letter-spacing: 0.16px;
    }

}
@media screen and (max-width: 767px) {
    .page-404 .button.button--default {
        width: 100%;
    }
}

.s-country-employment_wrap {
}
.s-country-employment_wrap .s-country-employment_item:after {

}
.s-country-employment_wrap .s-country-employment_title {
    border-radius: 16px;
    font-family: Instrument Sans;
    font-weight: 700;
    font-size: 24px;
    line-height: 130%;
    letter-spacing: 0px;

}
.s-country-employment_wrap .s-country-employment_item {
    border-radius: 16px;
    overflow: hidden;
    background: rgba(35, 39, 59, 1)
}

@media screen and (max-width: 767px) {
    .s-country-employment_wrap .s-country-employment_title {
        font-size: 22px;
    }
    
}
.s-content .country-article_subCat {
    border-top: none;
    padding-top: 0;
    margin-bottom: 0;
}
.s-content .country-article_subCat__item  {
    flex-direction: column;
    width: calc(33% - 1rem);
    background: var(--Secondary, #262A40);
    border-radius: 16px;
    padding: 5px;
}
.s-content .country-article_subCat__item:before {
    display: none;
}
.s-content .country-article_subCat__item img {
    position: static;
    border-radius: 16px;
    max-height: 250px;
    
    height: 100%;
}
.s-content .country-article_subCat__title {
    font-weight: 800;
    font-size: 20px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #fff;
    margin: 0 0 12px 0;
    border-bottom: 1px solid #788089;
    padding-bottom: 12px;
}
.s-content .country-article_subCat__item {
    text-decoration: none;
    justify-content: flex-start;
}
.s-content .country-article_subCat__inner {
    padding: 16px 21px;
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.s-content .country-article_subCat__descript {
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 1%;
    color: #fff;

}
.country-article_subCat__item:hover .country-article_subCat__title,
.country-article_subCat__item:hover p  {
    transform: scale(1);
}

.country-article_subCat__item:hover img {
    transform: scale(1.05);
}
/* Cover image */
.s-content .country-article_subCat__cover {
    width: 100%;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    max-height: 200px;
    display: block;
}

/* Icons row */
.country-article_subCat__icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 12px 0 4px;
}

.country-article_subCat__icon {
    padding: 8px 5px;
    border-radius: 50%;
    background: #fff;
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
}
.s-content .country-article_subCat__icon img {
    width: 30px;
    height: 30px;
    border-radius: 0;
}
/* Info rows */
.country-article_subCat__row {
    display: flex;
    gap: 1px;
    font-size: 14px;
    color: rgba(255, 255, 255, 1);
    line-height: 1.5;
    align-items: center;
    flex-direction: column;
    margin-bottom: 16px;
}
.country-article_subCat__row > div {
    display: flex;
    align-items: center;
    gap: 6px;
}
.country-article_subCat__row svg {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.6);
}

.country-article_subCat__row strong {
    color: var(--White, #FFF);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.16px;
}
.country-article_subCat__row span {
    color: var(--Border, #D7DADE);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.16px;
}
/* Button */
.country-article_subCat__btn-wrap {
    margin-top: auto;
    text-align: center;
}

.country-article_subCat__btn-wrap .button--red {
    width: 100%;
    justify-content: center;
}

@media screen and (max-width: 767px) {
    .s-content .country-article_subCat__item {
        width: 100%;
    }
    .s-content .country-article_subCat__title {
        font-weight: 600;
    }
    .s-content .country-article_subCat__inner {
        padding: 20px 13px;
    }
}

/* =============================================
   S-COUNTRY-SLIDER
   ============================================= */

.s-country-slider {
    padding: 64px 0;
}
.home .s-country-slider {
    background-color: #fff;
}
.s-country-slider__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 32px;
    gap: 16px;
}

.s-country-slider__label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #262A40;
    margin-bottom: 8px;
    line-height: 130%;
}

.s-country-slider__title {
    font-size: 38px;
    font-weight: 700;
    line-height: 125%;
    color: #262A40;
    margin: 0;
}

.s-country-slider__nav {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.s-country-slider__btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1.3px solid #262A40;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #262A40;
    transition: background 0.2s, color 0.2s;
}

.s-country-slider__btn:hover {
    background: #262A40;
    color: #fff;
}
.s-country-slider__btn:hover svg path  {
    fill: #fff;
}
/* Card */
.s-country-slider__card {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4 / 3;
    background-color: rgba(35, 39, 59, 1);
    background-image: var(--country-bg);
    background-size: cover;
    background-position: center;
    text-decoration: none;
    transition: transform 0.35s ease;
}
.home .s-country-slider__card::after  {
    background: rgba(35, 39, 59, 0.60);
}
.s-country-slider__card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    transition: background 0.3s;
}

.s-country-slider__card:hover::after {
    background: rgba(0, 0, 0, 0.4);
}

.s-country-slider__card:hover {
    transform: scale(1.02);
}

.s-country-slider__card-title {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0;
    padding: 10px 24px;
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(2px);
    max-width: calc(100% - 40px);
    text-align: center;
}

/* Pagination */
.s-country-slider__pagination {
    margin-top: 24px;
    position: static;
}

.s-country-slider__pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #D7DADE;
    opacity: 1;
    border-radius: 50%;
    transition: background 0.2s, width 0.2s;
}

.s-country-slider__pagination .swiper-pagination-bullet-active {
    background: #BB1D2C;
}

.s-country-slider__swiper .swiper-slide {
    height: auto;
    overflow: hidden;
    border-radius: 16px;
}

/* Responsive */
@media screen and (max-width: 1024px) {
    .s-country-slider__title {
        font-size: 30px;
    }
}

@media screen and (max-width: 768px) {
    .s-country-slider {
        padding: 48px 0;
    }
    .s-country-slider__title {
        font-size: 24px;
    }
    .s-country-slider__head {
        align-items: center;
    }
}

@media screen and (max-width: 480px) {
    .s-country-slider__nav {
        display: none;
    }
}

/* =============================================
   S-LATEST-STORIES
   ============================================= */

.s-latest-stories {
    padding: 64px 0;
}

.s-latest-stories__head {
    text-align: center;
    margin-bottom: 40px;
}

.s-latest-stories__label {
  color: var(--Secondary, #262A40);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    margin-bottom: 8px;
}

.s-latest-stories__title {
  color: var(--Secondary, #262A40);
    text-align: center;
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%; 
    margin-bottom: 32px;
}

/* Grid: 2 columns — featured left, 3 small stacked right */
.s-latest-stories__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, auto);
    gap: 24px;
}

.s-latest-stories__card--featured {
    grid-row: 1 / 4;
    grid-column: 1;
}

.s-latest-stories__card--small {
    grid-column: 2;
}

/* Base card */
.s-latest-stories__card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border-radius: 16px;
    transition: opacity 0.2s;
}

.s-latest-stories__card:hover {
    opacity: 0.85;
}

/* Small card — horizontal layout */
.s-latest-stories__card--small {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    border-radius: 0;
    overflow: visible;
}

.s-latest-stories__card--small:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* Images */
.s-latest-stories__card-img {
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 12px;
}

.s-latest-stories__card--featured .s-latest-stories__card-img {
    width: 100%;
    aspect-ratio: 16 / 10;
    margin-bottom: 20px;
    border-radius: 16px;
}

.s-latest-stories__card--featured .s-latest-stories__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.s-latest-stories__card--small .s-latest-stories__card-img {
    max-width: 180px;
    max-height: 170px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.s-latest-stories__card--small .s-latest-stories__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Body */
.s-latest-stories__card-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

/* Title */
.s-latest-stories__card-title {
    font-size: 18px;
    font-weight: 700;
    color: #262A40;
    line-height: 1.35;
    margin: 0;
}

.s-latest-stories__card--featured .s-latest-stories__card-title {
    font-size: 22px;
}

.s-latest-stories__card--small .s-latest-stories__card-title {
    font-size: 15px;
}

/* Excerpt */
.s-latest-stories__card-excerpt {
    font-size: 14px;
    color: #59687C;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Meta */
.s-latest-stories__card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
    padding-top: 4px;
}

.s-latest-stories__card-date,
.s-latest-stories__card-read {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #8492A6;
}

/* Head — split variant (single post): label+title left, link right */
.s-latest-stories__head--split {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    text-align: left;
}

.s-latest-stories__head-left {
    display: flex;
    flex-direction: column;
}

.s-latest-stories__head-left .s-latest-stories__label,
.s-latest-stories__head-left .s-latest-stories__title {
    text-align: left;
    margin-bottom: 0;
}

.s-latest-stories__all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #262A40;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: opacity 0.2s;
    display: none;
}
.s-latest-stories__all.--mobile {
    display: flex;
    margin: 20px auto 0;
    justify-content: center;
}
.s-latest-stories__all:hover {
    opacity: 0.7;
}
@media screen and (min-width: 767px) {
    .s-latest-stories__all.--pc {
        display: flex;
    }
    .s-latest-stories__all.--mobile {
        display: none;
    }
}
/* 3-column flex grid (single post related) */
.s-latest-stories__grid--three {
    display: flex;
    gap: 24px;
}

.s-latest-stories__grid--three .s-latest-stories__card--small {
    flex: 1;
    flex-direction: column;
    border-bottom: none;
    padding-bottom: 0;
    width: 100%;
    height: fit-content;
}

.s-latest-stories__grid--three .s-latest-stories__card--small .s-latest-stories__card-img {
    width: 100%;
    aspect-ratio: 16 / 10;
    max-width: 100%;
    max-height: none;
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.s-latest-stories__grid--three .s-latest-stories__card--small .s-latest-stories__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .s-latest-stories__grid--three {
        flex-direction: column;
    }

    .s-latest-stories__head--split {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }
    .s-latest-stories__head-left .s-latest-stories__label, .s-latest-stories__head-left .s-latest-stories__title {
        text-align: center;
    }
}

/* =============================================
   S-POSTS-LIST
   ============================================= */

.s-posts-list {
    padding: 48px 0 64px;
}

.s-posts-list__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.s-posts-list__card {
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 32px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s;
    background: #fff;
    padding: 16px;
    border-radius: 16px;
}


.s-posts-list__card:hover {
    opacity: 0.8;
}

.s-posts-list__card-img {
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.s-posts-list__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.s-posts-list__card-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
}

.s-posts-list__card-title {
    font-size: 20px;
    font-weight: 700;
    color: #262A40;
    line-height: 1.35;
    margin: 0;
}

.s-posts-list__card-excerpt {
    font-size: 14px;
    color: #59687C;
    line-height: 1.65;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.s-posts-list__card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
}

.s-posts-list__card-date,
.s-posts-list__card-read {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #8492A6;
}

.s-posts-list__card-dot {
    color: #8492A6;
    font-size: 13px;
}

/* Pagination */
.s-posts-list__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.s-posts-list__pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 8px;
    border-radius: 8px;
    border: 1px solid #ECEEF1;
    font-size: 14px;
    font-weight: 500;
    color: #262A40;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.s-posts-list__pagination .page-numbers:hover {
    border-color: #262A40;
    background: #262A40;
    color: #fff;
}

.s-posts-list__pagination .page-numbers.current {
    background: #BB1D2C;
    border-color: #BB1D2C;
    color: #fff;
}

.s-posts-list__pagination .page-numbers.dots {
    border-color: transparent;
    background: transparent;
    pointer-events: none;
}

.s-posts-list__pagination .prev,
.s-posts-list__pagination .next {
    border-color: #ECEEF1;
}

@media screen and (max-width: 768px) {
    .s-posts-list__card {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .s-posts-list__card-img {
        width: 100%;
        height: 200px;
    }
    .s-posts-list__card-title {
        font-size: 17px;
    }
}

/* =============================================
   S-LATEST-STORIES (responsive)
   ============================================= */

@media screen and (max-width: 768px) {
    .s-latest-stories__title {
        font-size: 28px;
    }

    .s-latest-stories__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .s-latest-stories__card--featured {
        grid-row: auto;
        grid-column: 1;
    }

    .s-latest-stories__card--small {
        grid-column: 1;
        flex-direction: column;
    }

    .s-latest-stories__card--small .s-latest-stories__card-img {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        max-width: 100%;
        max-height: 100%;
    }
}

/* =============================================
   S-ARTICLE-META
   ============================================= */

.s-article-meta {
    border-bottom: 1px solid var(--Secondary-content, #B7BCC5);
    margin-bottom: 20px;
}

.s-article-meta__row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0px 0 14px;
}

.s-article-meta__label {
  color: var(--Secondary, #262A40);
    font-family: "Instrument Sans";
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 30.8px */
}

.s-article-meta__date {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border-radius: 10px;
    padding: 15px 20px;
    color: var(--Secondary, #262A40);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 25.2px */
}
.page-content article {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.page-content article > * {
    margin: 0;
}
.page-content article p {
    color: var(--Secondary, #262A40);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 27px */
}
.page-content article h2 {
    color: var(--Secondary, #262A40);
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%; 
}
.page-content article h3 {
    color: var(--Secondary, #262A40);
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 36px */
}

/* =============================================
   TABLE
   ============================================= */

.table-scroll {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 24px 0;
}

table {
    width: 100%;    
    border-collapse: collapse;
    font-size: 14px;
    line-height: 1.55;
    color: #262A40;
}

thead tr {
    background: #262A40;
    color: #fff;
}

thead th {
    padding: 24px;
    text-align: center;
    color: var(--White, #FFF);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%; 
    text-transform: capitalize;
}
thead th:nth-of-type(1) {
    border-radius: 12px 0 0 0;
}
thead th:last-of-type {
    border-radius: 0 12px 0 0;
}
thead th:not(:last-of-type) {
    border-right: 1px solid rgba(255, 255, 255, 1);
}
tbody tr {
    background: #fff;
    border-bottom: 1px solid #E2E8F0;
}
tbody tr:last-child {
    border-bottom: none;
}

tbody td,
.wp-block-table tr td {
    padding: 16px 20px;
    vertical-align: top;
    border: 1px solid var(--Secondary, #262A40);
    color: var(--Secondary, #262A40);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.16px;
}

/* =============================================
   S-PARTNER-TYPES
   ============================================= */

.s-partner-types {
    padding: 64px 0;
    background: #F4F4F4;
}

.s-partner-types__head {
    text-align: center;
    margin-bottom: 40px;
}

.s-partner-types__label {
    display: block;
    font-size: 16px;
    color: #262A40;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}

.s-partner-types__title {
    font-size: 24px;
    font-weight: 800;
    color: #262A40;
    margin: 0;
}

.s-partner-types__grid {
    display: flex;
    gap: 24px;
}

.s-partner-types__card {
    flex: 1;
    background: #fff;
    border-radius: 20px;
    padding: 32px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.s-partner-types__card-icon {
    margin-bottom: 4px;
}

.s-partner-types__card-icon img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    display: block;
}

.s-partner-types__card-title {
    font-size: 22px;
    font-weight: 700;
    color: #262A40;
    margin: 0;
}

.s-partner-types__card-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.s-partner-types__card-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.s-partner-types__card-features li {
    position: relative;
    padding-left: 32px;
    font-size: 15px;
    font-weight: 600;
    color: #262A40;
    line-height: 1.4;
}

.s-partner-types__card-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M14.4297 6L20.4997 12L14.4297 18' stroke='%23262A40' stroke-width='2.5' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M3.5 12H20.33' stroke='%23262A40' stroke-width='2.5' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.s-partner-types__card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #262A40;
    color: #fff;
    border-radius: 100px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    align-self: flex-start;
    margin-top: auto;
    transition: opacity 0.2s;
}

.s-partner-types__card-btn:hover {
    opacity: 0.8;
    color: #fff;
}

@media (max-width: 768px) {
    .s-partner-types__grid {
        flex-direction: column;
    }
    .s-partner-types__title {
        font-size: 26px;
    }
}
/* s-why-us */
.s-why-us {
    padding: 80px 0;
    background: #fff;
    border-radius: 24px;
}

.s-why-us--bg-white { background: #fff; }
.s-why-us--bg-gray  { background: #f4f4f4; }

.s-why-us__head {
    text-align: center;
    margin-bottom: 56px;
}

.s-why-us__label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #262A40;
    margin-bottom: 4px;
}

.s-why-us__title {
    font-size: 36px;
    font-weight: 700;
    color: #262A40;
    margin: 0;
}

.s-why-us__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.s-why-us__card {
    display: flex;
    flex-direction: column;
    padding: 16px;
    gap: 16px;
    background: #fff;
    border-radius: 16px;
}

.s-why-us__card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 124px;
    height: 124px;
    background: #F4F5F7;
    border-radius: 16px;
    flex-shrink: 0;
    margin-bottom: 16px;
}

.s-why-us__card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.s-why-us__card-title {
    font-size: 20px;
    font-weight: 700;
    color: #262A40;
    margin: 0;
}

.s-why-us__card-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #6B7280;
    margin: 0;
}

@media (max-width: 768px) {
    .s-why-us__grid {
        grid-template-columns: 1fr;
    }
    .s-why-us__title {
        font-size: 26px;
    }
    .s-why-us__card-icon {
        width: 96px;
        height: 96px;
    }
}

/* s-partners-logos */
.s-partners-logos {
    padding: 64px 0;
    background: #f4f4f4;
}

.s-partners-logos__head {
    text-align: center;
    margin-bottom: 40px;
}

.s-partners-logos__label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #262A40;
    margin-bottom: 10px;
}

.s-partners-logos__title {
    font-size: 32px;
    font-weight: 700;
    color: #262A40;
    margin: 0;
}

.s-partners-logos__marquee {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.s-partners-logos__marquee::before,
.s-partners-logos__marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    z-index: 2;
    pointer-events: none;
}

.s-partners-logos__marquee::before {
    left: 0;
background: linear-gradient(90deg, rgba(244, 244, 244, 0.00) 76.12%, #F4F4F4 100%);
}

.s-partners-logos__marquee::after {
    left: 0;
    transform: rotate(180deg);
background: linear-gradient(90deg, rgba(244, 244, 244, 0.00) 76.12%, #F4F4F4 100%);
}

.s-partners-logos__track {
    display: flex;
    align-items: center;
    width: max-content;
    will-change: transform;
    animation: partners-marquee 30s linear infinite;
}

.s-partners-logos__item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding-right: 48px;
}

.s-partners-logos__item img {
    width: auto;
    object-fit: contain;
    display: block;
}

.s-partners-logos__item a {
    display: flex;
    align-items: center;
}

@keyframes partners-marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .s-partners-logos__title {
        font-size: 24px;
    }
    .s-partners-logos__item img {
        max-height: 70px;
    }
    .s-partners-logos__item {
        padding-right: 32px;
    }
}

/* s-slider-reviews */
.s-slider-reviews {
    padding: 64px 0;
    background: #fff;
}

.s-slider-reviews__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 40px;
}

.s-slider-reviews__head-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.s-slider-reviews__label {
    font-size: 14px;
    font-weight: 500;
    color: #262A40;
}

.s-slider-reviews__title {
    font-size: 36px;
    font-weight: 700;
    color: #262A40;
    margin: 0;
}

.s-slider-reviews__nav {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.s-slider-reviews__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1.3px solid #262A40;
    background: transparent;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.s-slider-reviews__btn:hover {
    background: #262A40;
}

.s-slider-reviews__btn:hover svg path {
    fill: #fff;
}

.s-slider-reviews__btn.swiper-button-disabled {
    opacity: 0.4;
    pointer-events: none;
}

/* Card */
.s-slider-reviews__card {
    background: #fff;
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-radius: 24px;
background: var(--White, #FFF);
box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.03), 0 4.622px 19.111px 0 rgba(0, 0, 0, 0.03), 0 0.978px 4.889px 0 rgba(0, 0, 0, 0.02);
}

.s-slider-reviews__card-top {
    display: flex;
    align-items: center;
    gap: 14px;
}

.s-slider-reviews__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.s-slider-reviews__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.s-slider-reviews__meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.s-slider-reviews__name {
    font-size: 16px;
    font-weight: 700;
    color: #262A40;
}

.s-slider-reviews__stars {
    display: flex;
    gap: 2px;
}

.s-slider-reviews__country {
    font-size: 15px;
    color: #262A40;
    margin: 0;
}

.s-slider-reviews__country span {
    color: #E63B2E;
    font-weight: 600;
}

/* Text truncation */
.s-slider-reviews__text-wrap {
    position: relative;
    margin-top: auto;
}

.s-slider-reviews__text {
    font-size: 15px;
    line-height: 1.6;
    color: #59687C;
    margin: 0 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.s-slider-reviews__text-wrap.is-expanded .s-slider-reviews__text {
    -webkit-line-clamp: unset;
    overflow: visible;
}

.s-slider-reviews__read-more {
    background: none;
    border: none;
    padding: 0;
    font-size: 14px;
    color: #6B7280;
    text-decoration: underline;
    cursor: pointer;
}

/* Pagination */
.s-slider-reviews__pagination {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}

.s-slider-reviews__pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #D7DADE;
    opacity: 1;
}
.s-slider-reviews__swiper {
        padding: 2px 2px 50px;
    margin-bottom: 32px;
}
.s-slider-reviews__pagination .swiper-pagination-bullet-active {
    background: #E63B2E;
}

/* Footer */
.s-slider-reviews__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid #E0E3EB;
    flex-wrap: wrap;
}

.s-slider-reviews__footer-label {
    font-size: 15px;
    font-weight: 700;
    color: #262A40;
}

.s-slider-reviews__platforms {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.s-slider-reviews__platform {
    display: flex;
    align-items: center;
    gap: 8px;
}

.s-slider-reviews__platform-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.s-slider-reviews__platform-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.s-slider-reviews__platform-name {
    font-size: 15px;
    font-weight: 600;
    color: #262A40;
}

.s-slider-reviews__platform-dot {
    color: #D7DADE;
    font-size: 14px;
}

.s-slider-reviews__platform-star {
    flex-shrink: 0;
}

.s-slider-reviews__platform-rating {
    font-size: 15px;
    font-weight: 600;
    color: #262A40;
}

@media (max-width: 768px) {
    .s-slider-reviews__title {
        font-size: 26px;
    }
    .s-slider-reviews__footer {
        flex-direction: column;
        align-items: center;
    }
    .s-slider-reviews__platforms {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .s-slider-reviews__nav {
        display: none;
    }
    .s-slider-reviews__head {
        justify-content: center;
        text-align: center;
    }
}

/* s-recruitment-process */
.s-rp {
    padding: 72px 0;
    background: #fff;
}

.s-rp--bg-white { background: #fff; }
.s-rp--bg-gray  { background: #f4f4f4; }

.s-rp__head {
    text-align: center;
    margin-bottom: 56px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.s-rp__label {
    font-size: 14px;
    font-weight: 500;
    color: #262A40;
}

.s-rp__title {
    font-size: 36px;
    font-weight: 700;
    color: #262A40;
    margin: 0;
}

/* Diagram — absolute positioning, aspect-ratio mirrors viewBox 1000×390 */
.s-rp__diagram {
    position: relative;
    width: 100%;
    aspect-ratio: 1000 / 390;
}

/* Center circle */
.s-rp__center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 32%;
    aspect-ratio: 1;
    z-index: 1;
}

.s-rp__center-img {
    width: 100%;
    height: 100%;
    animation: rp-float 4s ease-in-out infinite;
}

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

/* SVG lines overlay */
.s-rp__lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.s-rp__line {
    stroke-dashoffset: 200;
}

.s-rp.is-visible .s-rp__line {
    animation: rp-draw 0.7s ease forwards;
}

/* Steps — absolutely positioned */
.s-rp__step {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 14px;
    transform: translateY(-50%);
    opacity: 0;
    z-index: 2;
}

/* Left steps (1–3): icon on right, text on left */
.s-rp__step--1,
.s-rp__step--2,
.s-rp__step--3 {
    left: 0;
    flex-direction: row-reverse;
    text-align: right;
}
.s-rp__step--1 { top: 18%;  width: 34%; }
.s-rp__step--2 { top: 50%;  width: 26%; }
.s-rp__step--3 { top: 82%;  width: 34%; }

/* Right steps (4–6): icon on left, text on right */
.s-rp__step--4,
.s-rp__step--5,
.s-rp__step--6 {
    right: 0;
}
.s-rp__step--4 { top: 18%;  width: 34%; }
.s-rp__step--5 { top: 50%;  width: 26%; }
.s-rp__step--6 { top: 82%;  width: 34%; }

/* Trigger animations only when visible */
.s-rp.is-visible .s-rp__step--1,
.s-rp.is-visible .s-rp__step--2,
.s-rp.is-visible .s-rp__step--3 {
    animation: rp-fade-left 0.5s ease forwards;
}

.s-rp.is-visible .s-rp__step--4,
.s-rp.is-visible .s-rp__step--5,
.s-rp.is-visible .s-rp__step--6 {
    animation: rp-fade-right 0.5s ease forwards;
}

@keyframes rp-icon-float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

/* Icon circle */
.s-rp__step-icon {
    width: 124px;
    height: 124px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 6200px;
    z-index: 2;
    border: 10px solid #F4F4F4;
    background: #fff;
}

.s-rp__step:hover .s-rp__step-icon {
    animation: rp-icon-float 1.4s ease-in-out infinite;
}

.s-rp__step-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
}

.s-rp__step-icon--sm {
    width: 60px;
    height: 60px;
}

.s-rp__step-icon--sm img {
    width: 32px;
    height: 32px;
}

.s-rp__step-text {
    font-size: 16px;
    font-weight: 700;
    color: #262A40;
    line-height: 1.35;
    min-width: 0;
}

/* Mobile: hidden diagram, visible list */
.s-rp__mobile-center,
.s-rp__mobile-list {
    display: none;
}

/* Keyframes */
@keyframes rp-float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-14px); }
}

@keyframes rp-fade-left {
    from { opacity: 0; transform: translateY(-50%) translateX(-20px); }
    to   { opacity: 1; transform: translateY(-50%) translateX(0); }
}

@keyframes rp-fade-right {
    from { opacity: 0; transform: translateY(-50%) translateX(20px); }
    to   { opacity: 1; transform: translateY(-50%) translateX(0); }
}

@keyframes rp-draw {
    to { stroke-dashoffset: 0; }
}

/* Mobile */
@media (max-width: 900px) {
    .s-rp__diagram {
        display: none;
    }

    .s-rp__mobile-center {
        display: flex;
        justify-content: center;
        margin-bottom: 36px;
    }

    .s-rp__mobile-center img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        animation: rp-float 4s ease-in-out infinite;
    }

    .s-rp__mobile-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .s-rp__mobile-item {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .s-rp__title {
        font-size: 26px;
    }
}

/* s-stats */
.s-stats {
    padding: 48px 0;
    background: #fff;
    border-radius: 16px;
}

.s-stats--bg-white { background: #fff; }
.s-stats--bg-gray  { background: #f4f4f4; }
.s-stats.s-stats--bg-gray .s-stats__card {
    background: #fff;
}
.s-stats__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.s-stats__grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
.s-stats__grid--cols-3 { grid-template-columns: repeat(3, 1fr); }
.s-stats__grid--cols-4 { grid-template-columns: repeat(4, 1fr); }

.s-stats__card {
    position: relative;
    background: #F4F5F7;
    border-radius: 20px;
    padding: 32px 28px 36px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.s-stats__card-deco {
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    pointer-events: none;
    user-select: none;
}

.s-stats__card-deco img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.s-stats__card-value {
    display: flex;
    align-items: baseline;
    gap: 2px;
    line-height: 1;
}

.s-stats__number,
.s-stats__sign {
    font-weight: 700;
    font-style: Bold;
    font-size: 38px;
    line-height: 125%;
    letter-spacing: 0px;

}

.s-stats__desc {
    font-size: 15px;
    line-height: 1.5;
    color: #59687C;
    margin: 0;
    max-width: 220px;
}

@media (max-width: 768px) {
    .s-stats__grid {
        grid-template-columns: 1fr;
    }

    .s-stats__card {
        padding: 24px 20px 28px;
    }
}

/* s-about-duo */
.s-about-duo {
    padding: 80px 0;
    background: #fff;
}

.s-about-duo__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.s-about-duo__gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.s-about-duo__video {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    cursor: pointer;
}

.s-about-duo__video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.s-about-duo__video .s-video__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.s-about-duo__photo {
    border-radius: 12px;
    overflow: hidden;
}

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

.s-about-duo__content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.s-about-duo__label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #262A40;
}

.s-about-duo__title {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    color: #262A40;
    line-height: 1.15;
    margin-bottom: 28px;
}

.s-about-duo__text {
    color: #788089;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 28px */
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 48px;
}

.s-about-duo__text p {
    margin: 0;
}

.s-about-duo__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: #262A40;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    align-self: flex-start;
    transition: background 0.2s ease, color 0.2s ease;
}

.s-about-duo__btn:hover {
    background: #3a4060;
    color: #fff;
}

@media (max-width: 900px) {
    .s-about-duo__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .s-about-duo__title {
        margin-bottom: 20px;
    }
    .s-about-duo__gallery {
        order: -1;
    }
    .s-about-duo__text {
        gap: 24px;
        font-size: 16px;
    }
    .s-about-duo {
        padding: 56px 0;
    }
    .s-about-duo__text {
        margin-bottom: 24px;
    }
}

@media (max-width: 480px) {
    .s-about-duo__gallery {
        gap: 8px;
    }

    .s-about-duo__title {
        font-size: 28px;
    }
}

/* s-services-grid */
.s-services-grid {
    padding: 80px 0;
    background: #fff;
}

.s-services-grid__head {
    text-align: center;
    margin-bottom: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.s-services-grid__label {
    font-size: 14px;
    font-weight: 500;
    color: #262A40;
    line-height: 1.4;
}

.s-services-grid__title {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 700;
    color: #262A40;
    line-height: 1.15;
    margin: 0;
}

.s-services-grid__desc {
    font-size: 16px;
    color: #59687C;
    line-height: 1.6;
    margin: 0;
    max-width: 560px;
}

.s-services-grid__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.s-services-grid__card {
    display: flex;
    flex-direction: column;
    gap: 40px;
    background: #EBEBEB;
    border-radius: 16px;
    padding: 24px;
    text-decoration: none;
    transition: background 0.2s ease, box-shadow 0.2s ease;
    min-height: 220px;
    flex: 0 0 calc((100% - 48px) / 4);
}

.s-services-grid__card:hover {
    background: #E0E0E0;
    box-shadow: 0 4px 20px rgba(38, 42, 64, 0.08);
}

.s-services-grid__icon {
    width: 72px;
    height: 72px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 12px;
}

.s-services-grid__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.s-services-grid__card-title {
    font-size: 16px;
    font-weight: 700;
    color: #262A40;
    line-height: 1.35;
    margin: 0;
    margin-top: auto;
}

.s-services-grid__footer {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.s-services-grid__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    background: #262A40;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 60px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

.s-services-grid__btn:hover {
    background: #3a4060;
    color: #fff;
}

.s-services-grid__card--hidden {
    display: none;
}

@media (max-width: 1024px) {
    .s-services-grid__card {
        flex: 0 0 calc((100% - 32px) / 3);
    }
}

@media (max-width: 768px) {
    .s-services-grid {
        padding: 56px 0;
    }

    .s-services-grid__card {
        flex: 0 0 calc((100% - 16px) / 2);
    }

    .s-services-grid__card--hidden-mobile {
        display: none;
    }
}

@media (max-width: 480px) {
    .s-services-grid__card {
        flex: 0 0 100%;
    }
}

/* s-sectors */
.s-sectors {
    padding: 80px 0;
    background: #fff;
}

.s-sectors__head {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.s-sectors__label {
    font-size: 14px;
    font-weight: 500;
    color: #262A40;
}

.s-sectors__title {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 700;
    color: #262A40;
    margin: 0;
    line-height: 1.15;
}

.s-sectors__desc {
    font-size: 16px;
    color: #59687C;
    margin: 0;
    max-width: 560px;
    line-height: 1.6;
}

.s-sectors__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.s-sectors__item {
    background: #EBEBEB;
    border-radius: 16px;
    overflow: hidden;
    padding: 32px;
}

.s-sectors__item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.s-sectors__item-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    min-width: 0;
}

.s-sectors__item-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.s-sectors__item-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.s-sectors__item-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.s-sectors__item-title {
    font-size: 18px;
    font-weight: 700;
    color: #262A40;
    margin: 0;
    line-height: 1.3;
}

.s-sectors__item-desc {
    font-size: 15px;
    color: #59687C;
    margin: 0;
    line-height: 1.5;
}

.s-sectors__toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #262A40;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s ease;
}

.s-sectors__toggle:hover {
    background: #3a4060;
}

.s-sectors__toggle svg {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.s-sectors__item .s-sectors__item-header {
    transition: all .5s;
}
.s-sectors__item.is-open .s-sectors__item-header{
    padding-bottom: 32px;
}
.s-sectors__item.is-open .s-sectors__toggle svg {
    transform: rotate(180deg);
}

/* Sub-panel */
.s-sectors__sub {
    overflow: hidden;
    height: 0;
    transition: height 0.35s ease;
    background: #fff;
    border-radius: 16px;
}

.s-sectors__sub-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 24px;
    border-top: 1px solid #EBEBEB;
}

.s-sectors__sub-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    min-width: 0;
}

.s-sectors__sub-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.s-sectors__sub-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.s-sectors__sub-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.s-sectors__sub-title {
    font-size: 16px;
    font-weight: 600;
    color: #262A40;
    margin: 0;
    line-height: 1.3;
}

.s-sectors__sub-desc {
    font-size: 14px;
    color: #59687C;
    margin: 0;
    line-height: 1.5;
}

.s-sectors__sub-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border: 1.5px solid #262A40;
    border-radius: 60px;
    color: #262A40;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s ease, color 0.2s ease;
}

.s-sectors__sub-link:hover {
    background: #262A40;
    color: #fff;
}

@media (max-width: 768px) {
    .s-sectors__item {
        padding: 20px;
    }
    .s-sectors {
        padding: 56px 0;
    }

    .s-sectors__item-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
    }

    .s-sectors__toggle {
        width: 100%;
        justify-content: center;
    }

    .s-sectors__sub-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
    }

    .s-sectors__sub-link {
        width: 100%;
        justify-content: center;
    }
}

/* s-promo-banner */
.s-promo-banner {
    padding: 40px 0;
}

.s-promo-banner__card {
    display: flex;
    align-items: center;
    background: #262A40;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    min-height: 280px;
}


.s-promo-banner__content {
    position: relative;
    z-index: 1;
    flex: 1;
    padding: 48px 48px 48px 56px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 55%;
}

.s-promo-banner__title {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin: 0;
}

.s-promo-banner__desc {
    background: #fff;
    border-radius: 16px;
    padding: 16px 20px;
    display: inline-block;
}

.s-promo-banner__desc p {
    font-size: 15px;
    color: #262A40;
    line-height: 1.6;
    margin: 0;
}

.s-promo-banner__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: #C0392B;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border-radius: 60px;
    text-decoration: none;
    align-self: flex-start;
    transition: background 0.2s ease;
}

.s-promo-banner__btn:hover {
    background: #a93226;
    color: #fff;
}

.s-promo-banner__media {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    width: 45%;
    align-self: stretch;
}

.s-promo-banner__circle {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 50%;
    right: -40px;
    transform: translateY(-50%);
    border-radius: 5000px 48px 48px 5000px;
}

.s-promo-banner__circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 900px) {
    .s-promo-banner__card {
        flex-direction: column-reverse;
    }

    .s-promo-banner__content {
        max-width: 100%;
        padding: 24px 24px 36px;
    }

    .s-promo-banner__btn {
        align-self: stretch;
        text-align: center;
    }

    .s-promo-banner__media {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .s-promo-banner__circle {
        position: static;
        transform: none;
        border-radius: 20px 20px 500px 500px;
    }
    .s-promo-banner__circle img {
        min-height: 350px;
    }
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
    background: #262A40;
    color: #fff;
}

/* Nav columns */
.footer__nav {
    padding: 56px 0 48px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer__nav-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 32px;
}

.footer__col {
    display: flex;
    flex-direction: column;
}

.footer__widget-title {
    color: #fff;
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,1);
    color: var(--White, #FFF);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; 
}

.footer__col .footer__widget ul,
.footer__col .footer__widget .menu,
.footer__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__col .footer__widget ul li a,
.footer__col .footer__widget .menu li a,
.footer__menu li a {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.2s ease;
    line-height: 1.4;
}

.footer__col .footer__widget ul li a:hover,
.footer__col .footer__widget .menu li a:hover,
.footer__menu li a:hover {
    color: #fff;
}

/* Reset pseudo-elements from old main.css in footer */
.footer__menu li a::before,
.footer__menu li a::after {
    display: none !important;
}

/* Middle */
.footer__middle {
    padding: 40px 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer__middle-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.footer__logo img {
    height: 56px;
    width: auto;
    display: block;
}

.footer__socials {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer__socials-label {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    white-space: nowrap;
}

.footer__socials-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    transition: opacity 0.2s ease;
}

.footer__social-link:hover {
    opacity: 0.85;
}

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

/* Bottom bar */
.footer__bottom {
    padding: 20px 0;
}

.footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer__copy {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

.footer__bottom-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer__legal-link {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.footer__legal-link:hover {
    color: rgba(255,255,255,0.85);
}

/* Footer lang switcher */
.footer__lang-btn {
    color: rgba(255,255,255,0.65) !important;
    background: rgba(255,255,255,0.08) !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    border-radius: 60px !important;
    padding: 6px 14px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.footer__lang-list {
    bottom: calc(100% + 8px) !important;
    top: auto !important;
}

/* Footer responsive */
@media (max-width: 900px) {
    .footer__nav-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 24px;
    }

    .footer__middle-inner {
        flex-direction: column;
        text-align: center;
        gap: 28px;
    }

    .footer__socials {
        flex-direction: column;
        gap: 16px;
    }

    .footer__bottom-inner {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .footer__nav-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 16px;
    }

    .footer__nav {
        padding: 36px 0 32px;
    }
}

/* =============================================
   S-HOME-HERO
   ============================================= */

@keyframes heroScrollUp {
    from { transform: translateY(0); }
    to   { transform: translateY(-50%); }
}
@keyframes heroScrollDown {
    from { transform: translateY(-50%); }
    to   { transform: translateY(0); }
}
@keyframes heroScrollLeft {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@keyframes heroScrollRight {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
}

.s-home-hero {
    overflow: hidden;
    height: 640px;
    background-color: #fff;
}

.s-home-hero__inner {
    display: grid;
    grid-template-columns: 1fr 45%;
    width: 100%;
    margin: 0 auto;
    padding: 0 3rem;
    max-width: 142rem;
    height: 100%;
    padding: 0 40px;
    background-color: #262A40;
    border-radius: 0 0 48px 48px;

}

.s-home-hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 64px 60px 64px 0;
    height: 100%;
}

.s-home-hero__stars {
    position: absolute;
    left: -60px;
    top: 0;
    width: 700px;
    height: 100%;
    background: url(./build/img/form-stars.png) center center / cover no-repeat;
    z-index: 0;
    pointer-events: none;
}

.s-home-hero__title {
    position: relative;
    z-index: 1;
    font-size: clamp(32px, 4vw, 58px);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin: 0;
}

.s-home-hero__divider {
    position: relative;
    z-index: 1;
    border: none;
    border-top: 1px solid rgba(255,255,255,0.2);
    margin: 0;
}

.s-home-hero__desc {
    position: relative;
    z-index: 1;
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    margin: 0;
    max-width: 520px;
}

.s-home-hero__buttons {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.s-home-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    border-radius: 60px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.s-home-hero__btn:hover {
    opacity: 0.88;
}

.s-home-hero__btn--red {
    background: #BB1D2C;
    color: #fff;
}

.s-home-hero__btn--white {
    background: #fff;
    color: #262A40;
}

.s-home-hero__useful {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: auto;
}

.s-home-hero__useful-label {
    font-size: 14px;
    color: rgba(255,255,255,1);
    white-space: nowrap;
}

.s-home-hero__useful-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.s-home-hero__useful-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #788089;
    color: rgba(255,255,255,0.85);
    border-radius: 60px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s ease;
}

.s-home-hero__useful-link:hover {
    background: rgba(255,255,255,0.18);
    color: #fff;
}

/* Gallery */
.s-home-hero__gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    height: 100%;
    overflow: hidden;
}

.s-home-hero__col {
    overflow: hidden;
    height: 100%;
}

.s-home-hero__col:first-child {
    padding: 70px 0;
}

.s-home-hero__track {
    display: flex;
    flex-direction: column;
    gap: 12px;
    will-change: transform;
    transform: translateZ(0);
}

.s-home-hero__track--up {
    animation: heroScrollUp 24s linear infinite;
}

.s-home-hero__track--down {
    animation: heroScrollDown 24s linear infinite;
}

.s-home-hero__photo {
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    aspect-ratio: 3 / 4;
}

.s-home-hero__photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Mobile */
@media (max-width: 900px) {
    .s-home-hero {
        height: auto;
    }

    .s-home-hero__inner {
        display: flex;
        flex-direction: column-reverse;
        max-width: none;
        padding: 32px 0;
        border-radius: 0 0 24px 24px;
        position: relative;
    }

    .s-home-hero__content {
        padding: 32px 20px 0;
        gap: 20px;
        position: static;
        height: auto;
    }
    .s-home-hero__stars {
        height: 450px;
        z-index: -1;
    }
    .s-home-hero__gallery {
        display: flex;
        flex-direction: column;
        height: auto;
        overflow: hidden;
        z-index: 2;
        gap: 10px;
    }
    .s-home-hero__useful-label {
        margin: 0 auto;
    }
    .s-home-hero__col {
        height: 150px;
        overflow: hidden;
        padding: 0;
    }

    .s-home-hero__col:first-child {
        padding: 0;
    }

    .s-home-hero__track {
        flex-direction: row;
        width: max-content;
        height: 100%;
    }

    .s-home-hero__track--up {
        animation: heroScrollLeft 18s linear infinite;
    }

    .s-home-hero__track--down {
        animation: heroScrollRight 18s linear infinite;
    }

    .s-home-hero__photo {
        width: 200px;
        height: 100%;
        aspect-ratio: unset;
        border-radius: 10px;
    }

    .s-home-hero__photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
@media (max-width: 550px) {
    .s-home-hero__buttons a {
        min-width: calc(50% - 6px);
    }
    .s-home-hero__useful-links a {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    .s-home-hero__useful-links {
        width: 100%;
    }
}

/* ── Mobile Slider Utility ───────────────────────────────────────────────── */
/* Usage: add data-mobile-slider to any flex/grid container.                 */
/* Optionally: data-mobile-slider-dots="white|dark" for dot colour.          */
/* ─────────────────────────────────────────────────────────────────────────  */

.mobile-slider-wrap {
    position: relative;
}

.mobile-slider-dots {
    display: none;
}

@media (max-width: 900px) {
    [data-mobile-slider] {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        overflow-y: visible;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 5px !important;
        padding: 0 !important;
    }

    [data-mobile-slider]::-webkit-scrollbar {
        display: none;
    }

    [data-mobile-slider] > * {
        flex: 0 0 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        scroll-snap-align: start;
    }

    .mobile-slider-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        margin-top: 20px;
    }

    .mobile-slider-dots__dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        border: none;
        padding: 0;
        cursor: pointer;
        transition: background 0.2s ease, transform 0.2s ease;
        background: rgba(0, 0, 0, 0.18);
    }

    .mobile-slider-dots[data-color="white"] .mobile-slider-dots__dot {
        background: rgba(255, 255, 255, 0.35);
    }

    .mobile-slider-dots__dot.is-active {
        background: #C0392B;
        transform: scale(1.2);
    }


    .mobile-slider-dots[data-color="white"] .mobile-slider-dots__dot.is-active {
        background: #fff;
    }
}

@media (min-width: 901px) {
    .mobile-slider-dots {
        display: none;
    }
}

/* ── s-timeline ──────────────────────────────────────────────────────────── */
.s-timeline {
    padding: 100px 0;
    border-radius: 16px;
    background: #fff;
}

.s-timeline__head {
    text-align: center;
    margin-bottom: 64px;
}

.s-timeline__label {
    display: block;
    font-size: 14px;
    color: #262A40;
    margin-bottom: 3px;
}

.s-timeline__title {
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 800;
    color: #262A40;
    margin: 0;
}

/* Track */
.s-timeline__track {
    display: flex;
    position: relative;
}

.s-timeline__track::before {
    content: '';
    position: absolute;
    top: var(--line-top, 50%);
    left: 0;
    right: 0;
    height: 1px;
    background: #D0D3DC;
    transform: translateY(-50%) scaleX(0);
    transform-origin: left center;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.s-timeline__track.is-animated::before {
    transform: translateY(-50%) scaleX(1);
}

/* Item — desktop: 3-row grid */
.s-timeline__item {
    flex: 1;
    display: grid;
    grid-template-rows: 120px auto 120px;
    align-items: center;
    justify-items: center;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    gap: 15px;
}

.s-timeline__item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.s-timeline__item:nth-child(1) { transition-delay: 0.05s; }
.s-timeline__item:nth-child(2) { transition-delay: 0.20s; }
.s-timeline__item:nth-child(3) { transition-delay: 0.35s; }
.s-timeline__item:nth-child(4) { transition-delay: 0.50s; }
.s-timeline__item:nth-child(5) { transition-delay: 0.65s; }
.s-timeline__item:nth-child(6) { transition-delay: 0.80s; }

/* Red: year(row1) dot(row2) desc(row3) */
.s-timeline__item--red .s-timeline__year-wrap { grid-row: 1; align-self: end; }
.s-timeline__item--red .s-timeline__dot-wrap  { grid-row: 2; }
.s-timeline__item--red .s-timeline__desc-wrap { grid-row: 3; align-self: start; }

/* Navy: desc(row1) dot(row2) year(row3) */
.s-timeline__item--navy .s-timeline__desc-wrap { grid-row: 1; align-self: end; }
.s-timeline__item--navy .s-timeline__dot-wrap  { grid-row: 2; }
.s-timeline__item--navy .s-timeline__year-wrap { grid-row: 3; align-self: start; }

/* Year */
.s-timeline__year {
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}

.s-timeline__item--red  .s-timeline__year { color: #C0392B; }
.s-timeline__item--navy .s-timeline__year { color: #262A40; }

/* Dot */
.s-timeline__dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.s-timeline__item.is-visible .s-timeline__dot {
    transform: scale(1);
}

.s-timeline__item--red .s-timeline__dot {
    background: #8B1515;
    box-shadow: 0 0 0 3px #fff, 0 0 0 6px #C0392B;
}

.s-timeline__item--navy .s-timeline__dot {
    background: #262A40;
    box-shadow: 0 0 0 3px #fff, 0 0 0 6px #262A40;
}

/* Description */
.s-timeline__desc {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    text-align: center;
    max-width: 170px;
    margin: 0;
}

/* Connectors (desktop only via pseudo-elements on desc-wrap) */
/* Red: connector at top of desc-wrap (between dot and text) — arrow points down */
.s-timeline__item--red .s-timeline__desc-wrap {
    padding-top: 72px;
    position: relative;
}
.s-timeline__item--red .s-timeline__desc-wrap::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: #C0392B;
}
.s-timeline__item--red .s-timeline__desc-wrap::after {
    content: '';
    position: absolute;
    top: 58px;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top: 6px solid #C0392B;
}

/* Navy: connector at bottom of desc-wrap (between text and dot) — arrow points up */
.s-timeline__item--navy .s-timeline__desc-wrap {
    padding-bottom: 72px;
    position: relative;
}
.s-timeline__item--navy .s-timeline__desc-wrap::before {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: #262A40;
}
.s-timeline__item--navy .s-timeline__desc-wrap::after {
    content: '';
    position: absolute;
    bottom: 58px;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-bottom: 6px solid #262A40;
}

/* Mobile */
@media (max-width: 900px) {
    .s-timeline {
        padding: 48px 0;
    }

    .s-timeline__head {
        margin-bottom: 36px;
    }

    .s-timeline__track {
        flex-direction: column;
        padding-left: 16px;
    }

    /* Vertical line — aligned to dot center (col1 = 72px, dot center = 36px, track padding = 16px → left = 16+36 = 52px, but relative to track so left: 36px) */
    .s-timeline__track::before {
        top: 0 !important;
        bottom: 0;
        left: 36px;
        right: auto;
        width: 1px;
        height: 100%;
        transform: scaleY(0) !important;
        transform-origin: top center;
        transition: transform 1.2s ease;
    }

    .s-timeline__track.is-animated::before {
        transform: scaleY(1) !important;
    }

    /* 2-column grid: [year+dot | desc] */
    .s-timeline__item {
        display: grid;
        grid-template-columns: 42px 1fr;
        grid-template-rows: auto auto;
        min-height: auto;
        padding-bottom: 32px;
        opacity: 1 !important;
        transform: none !important;
    }

    /* Override desktop row assignments for both variants */
    .s-timeline__item--red  .s-timeline__year-wrap,
    .s-timeline__item--navy .s-timeline__year-wrap {
        grid-row: 1 !important;
        grid-column: 1;
        align-self: center;
        justify-self: center;
    }

    .s-timeline__item--red  .s-timeline__dot-wrap,
    .s-timeline__item--navy .s-timeline__dot-wrap  {
        grid-row: 2 !important;
        grid-column: 1;
        align-self: start;
        justify-self: center;
        padding-top: 6px;
    }

    .s-timeline__item--red  .s-timeline__desc-wrap,
    .s-timeline__item--navy .s-timeline__desc-wrap {
        grid-row: 1 / 3 !important;
        grid-column: 2;
        align-self: center;
        padding: 0 0 0 20px;
        width: 100%;
    }

    /* Dots always visible on mobile — is-visible not added by JS on mobile */
    .s-timeline__dot { transform: scale(1) !important; }

    /* Hide desktop connectors */
    .s-timeline__desc-wrap::before,
    .s-timeline__desc-wrap::after { display: none !important; }

    .s-timeline__year { font-size: 20px; }
    .s-timeline__desc { text-align: left; max-width: none; font-size: 14px; color: #555; }
}

/* ── s-video ─────────────────────────────────────────────────────────────── */
.s-video {
    padding: 60px 0;
}

.s-video__wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16 / 7;
    background: #111;
    cursor: pointer;
}

.s-video__thumb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.s-video__wrap:hover .s-video__thumb {
    transform: scale(1.03);
}

.s-video__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: #C0392B;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background 0.2s ease;
    z-index: 2;
    padding-left: 4px;
}

.s-video__play:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #a93226;
}

.s-video__wrap iframe,
.s-video__wrap video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.s-video__wrap.is-playing .s-video__thumb,
.s-video__wrap.is-playing .s-video__play {
    display: none;
}

@media (max-width: 600px) {
    .s-video {
        padding: 40px 0;
    }

    .s-video__wrap {
        border-radius: 12px;
        aspect-ratio: 4 / 3;
    }

    .s-video__play {
        width: 60px;
        height: 60px;
    }

    .s-video__play svg {
        width: 22px;
        height: 22px;
    }
}

/* ── s-icon-cards ────────────────────────────────────────────────────────── */
.s-icon-cards {
    padding: 80px 0;
    background: #F4F5F7;
}

.s-icon-cards__head {
    text-align: center;
    margin-bottom: 48px;
}

.s-icon-cards__label {
    display: block;
    font-size: 14px;
    color: #888;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
}

.s-icon-cards__title {
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 800;
    color: #262A40;
    margin: 0;
}

.s-icon-cards__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.s-icon-cards__card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 32px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.s-icon-cards__icon {
    margin-bottom: 28px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.s-icon-cards__icon img {
    max-height: 80px;
    width: auto;
    object-fit: contain;
}

.s-icon-cards__card-title {
    font-size: 20px;
    font-weight: 700;
    color: #262A40;
    margin: 0 0 12px;
}

.s-icon-cards__card-desc {
    font-size: 15px;
    color: #262A40;
    line-height: 1.55;
    margin: 0 0 28px;
    flex: 1;
}

.s-icon-cards__btn {
    display: inline-block;
    padding: 13px 28px;
    background: #C0392B;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s ease;
    white-space: nowrap;
}

.s-icon-cards__btn:hover {
    background: #a93226;
    color: #fff;
}

@media (max-width: 900px) {
    .s-icon-cards {
        padding: 48px 0;
    }

    .s-icon-cards__head {
        margin-bottom: 32px;
    }

    .s-icon-cards__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .s-icon-cards__card {
        padding: 32px 24px 28px;
    }
}

/* ── s-experts-slider ────────────────────────────────────────────────────── */
.s-experts-slider {
    padding: 80px 0;
    background: #F4F5F7;
}

.s-experts-slider__top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 36px;
    gap: 24px;
}

.s-experts-slider__label {
    display: block;
    font-size: 14px;
    color: #262A40;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}

.s-experts-slider__title {
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 800;
    color: #262A40;
    margin: 0;
    line-height: 1.15;
}

.s-experts-slider__nav {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.s-experts-slider__btn {
    width: 60px;
    height: 60px;
    border-radius: 130.435px;
    border: 1.304px solid var(--Secondary, #262A40);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #181C2E;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.s-experts-slider__btn:hover svg path {
    fill: #fff;
}

.s-experts-slider__btn:hover {
    border-color: #181C2E;
    background: #181C2E;
}

.s-experts-slider__btn.swiper-button-disabled {
    opacity: 0.4;
    pointer-events: none;
}

/* Card */
.s-experts-slider__card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
}

.s-experts-slider__photo-wrap {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.s-experts-slider__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.s-experts-slider__logo {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #fff;
    border-radius: 6px;
    padding: 5px 10px;
    display: flex;
    align-items: center;
}

.s-experts-slider__logo img {
    height: 20px;
    width: auto;
    display: block;
}

.s-experts-slider__info {
    padding: 18px 20px 22px;
}

.s-experts-slider__name {
    font-size: 17px;
    font-weight: 700;
    color: #262A40;
    margin: 0 0 8px;
}

.s-experts-slider__desc {
    font-size: 14px;
    color: #262A40;
    line-height: 1.55;
    margin: 0;
}

/* Pagination */
.s-experts-slider__pagination {
    margin-top: 28px;
    position: static;
}

.s-experts-slider__pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #D7DADE;
    opacity: 1;
    border-radius: 50%;
    transition: background 0.2s, width 0.2s;
}

.s-experts-slider__pagination .swiper-pagination-bullet-active {
    background: #BB1D2C;
    border-radius: 4px;
}

@media (max-width: 900px) {
    .s-experts-slider__head {
        width: 100%;
    }
    .s-experts-slider {
        padding: 48px 0;
    }

    .s-experts-slider__top {
        margin-bottom: 24px;
         flex-direction: column;
        justify-content: center;
        text-align: center;
    }
    .s-experts-slider__nav {
        display: none;
    }
}

/* ── s-founder ───────────────────────────────────────────────────────────── */
.s-founder {
    padding: 80px 0;
}

.s-founder__inner {
    display: grid;
grid-template-columns: 0.7fr 1.3fr;
    gap: 80px;
    align-items: center;
}

.s-founder__photo-wrap {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.s-founder__photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
}

.s-founder__label {
    display: block;
    font-size: 14px;
    color: #262A40;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
}

.s-founder__title {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    color: #262A40;
    margin: 0 0 28px;
    line-height: 1.15;
}

.s-founder__quote-wrap {
    margin-bottom: 32px;
}

.s-founder__quote-icon {
    display: block;
    margin-bottom: 16px;
}

.s-founder__quote {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    margin: 0;
}

.s-founder__author {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 28px;
    border-top: 1px solid #E5E7EB;
}

.s-founder__name {
    color: #262A40;
    font-weight: 600;
    font-size: 18px;
    line-height: 140%;
}

.s-founder__position {
    font-size: 15px;
    color: #262A40;
    padding-left: 20px;
    border-left: 1px solid #D0D3DC;
}

@media (max-width: 900px) {
    .s-founder {
        padding: 48px 0;
    }

    .s-founder__inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .s-founder__author {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .s-founder__position {
        padding-left: 0;
        border-left: none;
        padding-top: 10px;
        margin-top: 10px;
        border-top: 1px solid #D0D3DC;
        width: 100%;
    }
}

/* ── s-steps-grid ────────────────────────────────────────────────────────── */
.s-steps-grid {
    padding: 80px 0;
    background: #F4F5F7;
}

.s-steps-grid__inner {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    align-items: center;
}

/* Left */
.s-steps-grid__label {
    display: block;
    font-size: 14px;
    color: #262A40;
    letter-spacing: 0.04em;
    margin-bottom: 12px;
}

.s-steps-grid__title {
    font-size: 38px;
    font-weight: 700;
    color: #262A40;
    line-height: 1.2;
    margin: 0 0 20px;
}

.s-steps-grid__desc {
    font-size: 15px;
    color: #555;
    line-height: 1.65;
    margin: 0 0 32px;
}

.s-steps-grid__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #262A40;
    color: #fff;
    border-radius: 100px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s;
}

.s-steps-grid__btn:hover {
    opacity: 0.8;
    color: #fff;
}

/* Cards grid */
.s-steps-grid__cards {
    display: grid;
    grid-template-columns: repeat(var(--stg-cols, 3), 1fr);
    gap: 16px;
}

/* Column layout */
.s-steps-grid--column .s-steps-grid__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}
.s-steps-grid--column .s-steps-grid__left {
    text-align: center;
    max-width: 720px;
    width: 100%;
}
.s-steps-grid--column .s-steps-grid__cards {
    width: 100%;
}

.s-steps-grid__card {
    background: #fff;
    border-radius: 16px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.s-steps-grid__card-icon {
    width: 64px;
    height: 64px;
    background: #F0F1F4;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 17px 11px;

}

.s-steps-grid__card-icon img {
    /* width: 28px;
    height: 28px; */
    object-fit: contain;
}

.s-steps-grid__card-title {
    font-size: 16px;
    font-weight: 700;
    color: #262A40;
    margin: 0 0 6px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.s-steps-grid__card-num {
    font-weight: 700;
    color: #262A40;
}

.s-steps-grid__card-desc {
    font-size: 14px;
    color: #777;
    line-height: 1.55;
    margin: 0;
}

/* Mobile */
@media (max-width: 900px) {
    .s-steps-grid {
        padding: 48px 0;
    }

    .s-steps-grid__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .s-steps-grid__cards {
        grid-template-columns: repeat(min(var(--stg-cols, 3), 2), 1fr);
        gap: 12px;
    }

    .s-steps-grid__card {
        flex-direction: row;
        align-items: flex-start;
        gap: 16px;
    }

    .s-steps-grid__card-icon {
        flex-shrink: 0;
    }
}

@media (max-width: 550px) {
    .s-steps-grid__cards {
        grid-template-columns: 1fr;
    }
}

/* ── s-advanced-faq ──────────────────────────────────────────────────────── */
.s-advanced-faq {
    padding: 80px 0;
    background: #F4F5F7;
}

.s-advanced-faq__wrap {
    background: #fff;
    border-radius: 24px;
    padding: 56px 48px 64px;
}

.s-advanced-faq__head {
    text-align: center;
    margin-bottom: 40px;
}

.s-advanced-faq__label {
    display: block;
    font-size: 14px;
    color: #262A40;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}

.s-advanced-faq__title {
    font-size: 38px;
    font-weight: 800;
    color: #262A40;
    margin: 0;
}

/* Tabs */
.s-advanced-faq__tabs {
    display: flex;
    background: #F4F5F7;
    border-radius: 100px;
    padding: 4px;
    gap: 4px;
    margin-bottom: 36px;
}

.s-advanced-faq__tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 100px;
    border: none;
    background: transparent;
    font-size: 15px;
    font-weight: 600;
    color: #262A40;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.s-advanced-faq__tab.is-active {
    background: #BB1D2C;
    color: #fff;
}

.s-advanced-faq__tab-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0;
    flex-shrink: 0;
    transition: opacity 0.2s;
}

.s-advanced-faq__tab.is-active .s-advanced-faq__tab-dot {
    opacity: 1;
}

/* Panels */
.s-advanced-faq__panel {
    display: none;
    flex-direction: column;
    gap: 12px;
}

.s-advanced-faq__panel.is-active {
    display: flex;
}

/* Accordion items */
.s-advanced-faq__item {
    background: #F4F5F7;
    border-radius: 16px;
    overflow: hidden;
}

.s-advanced-faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 32px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--Secondary, #262A40);
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 30.8px */
}

.s-advanced-faq__chevron {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #262A40;
}

.s-advanced-faq__item.is-open .s-advanced-faq__chevron {
    transform: rotate(180deg);
}

.s-advanced-faq__answer {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}

.s-advanced-faq__answer-inner {
    border-top: 1px solid #E0E2E8;
    padding: 16px 24px 32px;
       color: var(--Content, #788089);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}
.s-advanced-faq__answer-inner ul {
    padding-left: 20px;
}
.s-advanced-faq__answer-inner ul li{
    list-style: unset;

}
.s-advanced-faq__answer-inner p {
   color: var(--Content, #788089);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

/* Mobile */
@media (max-width: 768px) {
    .s-advanced-faq {
        padding: 48px 0;
    }

    .s-advanced-faq__wrap {
        padding: 32px 20px 40px;
        border-radius: 16px;
    }

    .s-advanced-faq__tabs {
        flex-direction: column;
        border-radius: 16px;
        padding: 6px;
    }

    .s-advanced-faq__tab {
        border-radius: 12px;
        justify-content: center;
    }

    .s-advanced-faq__question {
        font-size: 20px;
        padding: 18px 20px;
    }
    .s-advanced-faq__answer-inner p {
        font-size: 16px;
    }
}

/* ── s-contact-block ─────────────────────────────────────────────────────── */
.s-contact-block {
    padding: 80px 0;
    background: #F4F5F7;
}

.s-contact-block__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.s-contact-block__label {
    display: block;
    font-size: 14px;
    color: #262A40;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
}

.s-contact-block__title {
    font-size: 38px;
    font-weight: 700;
    color: #262A40;
    line-height: 1.2;
    margin: 0 0 28px;
}

/* Person card */
.s-contact-block__person {
    display: flex;
    gap: 25px;
    margin-bottom: 16px;
}

.s-contact-block__person-photo {
    flex-shrink: 0;
}

.s-contact-block__person-photo img {
    max-width: 80px;
    max-height: 80px;
    border-radius: 50%;
    display: block;
    object-fit: cover;
}

.s-contact-block__person-quote {
    position: relative;
    border-radius: 0 24px 24px 24px;
    padding: 20px 16px;
    background: #fff;
    box-shadow: 0 8px 24px 0 rgba(122, 134, 163, 0.10), 0 16px 48px 0 rgba(122, 134, 163, 0.10);
}

.s-contact-block__person-quote::after {
    content: '';
    background: url(./build/img/triangle.svg) center center / cover no-repeat;
    width: 19px;
    height: 25px;
    position: absolute;
    right: calc(100% - 5px);
    top: 0;
}

.s-contact-block__person-quote p {
    color: #59687C;
    font-size: 16px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 0.16px;
    margin: 0;
}

/* Contacts card */
.s-contact-block__contacts {
    background: #262A40;
    border-radius: 16px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
}
.s-contact-block__contacts::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 70%;
    height: 100%;
    background: url(./build/img/stars-icon.png) center center / cover no-repeat;
}


.s-contact-block__contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.s-contact-block__contact-icon {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    background: #BB1D2C;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.s-contact-block__contact-label {
   color: var(--White, #FFF);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
}

.s-contact-block__contact-value {
    color: var(--White, #FFF);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; 
}

.s-contact-block__contact-value:hover {
    text-decoration: underline;
    color: #fff;
}

/* Socials card */
.s-contact-block__socials {
    background: #fff;
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.s-contact-block__socials-label {
  color: var(--Secondary, #262A40);
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 30.8px */
}

.s-contact-block__socials-icons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.s-contact-block__social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s;
    overflow: hidden;
}

.s-contact-block__social-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.s-contact-block__social-link:hover {
    border-color: #262A40;
}

/* Right: form wrapper */
.s-contact-block__right {
    background: #fff;
    border-radius: 16px;
    padding: 36px 32px;
}

@media (max-width: 900px) {
    .s-contact-block {
        padding: 48px 0;
    }

    .s-contact-block__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .s-contact-block__right {
        padding: 24px 20px;
    }

    .s-contact-block__socials {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ==========================================================================
   s-map-offices
   ========================================================================== */

.s-map-offices {
    padding: 80px 0;
    overflow: hidden;
}

.s-map-offices__head {
    margin-bottom: 32px;
}

.s-map-offices__label {
    display: inline-block;
    color: #262A40;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 7px;
}

.s-map-offices__title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.15;
    color: #262A40;
    margin: 0;
}

.s-map-offices__inner {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
}

/* --- Left column --- */
.s-map-offices__left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Pills (desktop) */
.s-map-offices__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.s-map-offices__pill {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #262A40;
    border: none;
    border-radius: 500px;
    padding: 4px 12px 4px 6px;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    text-align: left;
}

.s-map-offices__pill:hover {
    background: #1a1e30;
}

.s-map-offices__pill.is-active {
    background: #BB1D2C;
    box-shadow: 0 4px 16px rgba(187, 29, 44, 0.3);
}

.s-map-offices__pill-flag {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
}

.s-map-offices__pill-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.8) rotate(10deg);
}

.s-map-offices__pill-name {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
}

/* Accordion (mobile only) */
.s-map-offices__accordion {
    display: none;
    flex-direction: column;
    gap: 8px;
}

/* --- Right column: map --- */
.s-map-offices__right {
    position: relative;
}

.s-map-offices__map-wrap {
    position: relative;
    width: 100%;
}

.s-map-offices__map-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Markers */
.s-map-offices__marker {
    position: absolute;
    transform: translate(-50%, -100%);
    width: 48px;
    height: 48px;
    border: none;
    outline: 2px solid transparent;
    background: transparent;
    padding: 0;
    cursor: pointer;
    transition: transform 0.2s, outline-color 0.2s;
    z-index: 2;
}
.s-map-offices__marker[aria-label="Denmark - headquarters"] {
    width: 64px;
    height: 64px;
}
.s-map-offices__marker:hover {
    transform: translate(-50%, -100%) scale(1.12);
}


.s-map-offices__marker-flag {
    display: block;
    width: 100%;
}

.s-map-offices__marker-flag img {
    width: 100%;
    height: auto;
    display: block;
}

.s-map-offices__marker-dot {
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #BB1D2C;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

/* Tooltip card */
.s-map-offices__tooltip {
    position: absolute;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(38, 42, 64, 0.18);
    width: 280px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px) scale(0.97);
    transition: opacity 0.22s, transform 0.22s;
    z-index: 20;
}

.s-map-offices__tooltip.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

/* Tooltip header */
.s-map-offices__tooltip-head {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #BB1D2C;
    padding: 14px 20px;
}

.s-map-offices__tooltip-flag {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.s-map-offices__tooltip-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.s-map-offices__tooltip-country {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

/* Tooltip body */
.s-map-offices__tooltip-body {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.s-map-offices__tooltip-row {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.s-map-offices__tooltip-row:hover {
    opacity: 0.75;
}

.s-map-offices__tooltip-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #262A40;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.s-map-offices__tooltip-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.s-map-offices__tooltip-label {
    font-size: 12px;
    color: #9198AE;
    font-weight: 500;
}

.s-map-offices__tooltip-value {
    font-size: 14px;
    font-weight: 700;
    color: #262A40;
    line-height: 1.3;
    word-break: break-all;
}

/* Accordion items */
.s-map-offices__acc-item {
    background: #262A40;
    border-radius: 12px;
    overflow: hidden;
}

.s-map-offices__acc-trigger {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    background: none;
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    color: #fff;
    text-align: left;
}

.s-map-offices__acc-name {
    flex: 1;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    color: #fff;
}

.s-map-offices__acc-arrow {
    flex-shrink: 0;
    transition: transform 0.25s;
}

.s-map-offices__acc-item.is-open .s-map-offices__acc-arrow {
    transform: rotate(180deg);
}

.s-map-offices__acc-body {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}

.s-map-offices__acc-body-inner {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #fff;
}

.s-map-offices__acc-row {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.s-map-offices__acc-row:hover {
    opacity: 0.8;
}

.s-map-offices__acc-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #262A40;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.s-map-offices__acc-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.s-map-offices__acc-label {
    font-size: 11px;
    color: #262A40;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.s-map-offices__acc-value {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    word-break: break-all;
    color: #262A40;
}

/* Mobile map */
.s-map-offices__mobile-map {
    display: none;
    margin-top: 24px;
}

.s-map-offices__mobile-map img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

@media (max-width: 900px) {
    .s-map-offices {
        padding: 48px 0;
    }

    .s-map-offices__title {
        font-size: 28px;
    }

    .s-map-offices__inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .s-map-offices__pills {
        display: none;
    }

    .s-map-offices__accordion {
        display: flex;
    }

    .s-map-offices__mobile-map {
        display: block;
    }
    .s-map-offices__marker-flag {
        width: 20px;
        height: 20px;
    }
    .s-map-offices__marker {
        width: fit-content;
        height: fit-content;
    }
    .s-map-offices__marker[aria-label="Denmark - headquarters"] {
        width: fit-content;
        height: fit-content;
    }
    .s-map-offices__marker[aria-label="Denmark - headquarters"] .s-map-offices__marker-flag {
        width: 26px;
        height: 26px;
    }

    .s-map-offices__tooltip {
        display: none;
    }
}

/* ==========================================================================
   s-services-list
   ========================================================================== */

.s-services-list {
    padding: 60px 0;
}

.s-services-list__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.s-services-list__card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(38, 42, 64, 0.08);
    overflow: hidden;
    text-decoration: none;
    transition: box-shadow 0.2s, transform 0.2s;
}

.s-services-list__card:hover {
    box-shadow: 0 8px 32px rgba(38, 42, 64, 0.14);
    transform: translateY(-2px);
}

.s-services-list__card-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.s-services-list__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.s-services-list__card:hover .s-services-list__card-img img {
    transform: scale(1.04);
}

.s-services-list__card-body {
    padding: 20px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.s-services-list__card-title {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
    color: #262A40;
    margin: 0;
}

.s-services-list__card-num {
    color: #BB1D2C;
    margin-right: 4px;
}

.s-services-list__card-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #6B7280;
    margin: 0;
}

@media (max-width: 900px) {
    .s-services-list__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 560px) {
    .s-services-list {
        padding: 40px 0;
    }

    .s-services-list__grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   s-pricing
   ========================================================================== */

.s-pricing {
    padding: 80px 0 0;
    background: #f4f4f4;
}

.s-pricing__head {
    text-align: center;
    margin: 0 auto 48px;
}

.s-pricing__label {
    display: inline-block;
    color: #262A40;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.s-pricing__title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.15;
    color: #262A40;
    margin: 0 0 16px;
}

.s-pricing__desc {
    font-size: 16px;
    color: #262A40;
    line-height: 1.6;
    margin: 0;
}

.s-pricing__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.s-pricing__card {
    display: flex;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 24px rgba(38, 42, 64, 0.08);
}

.s-pricing__sidebar {
    width: 100px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 48px;
    gap: 12px;
    position: relative;
    overflow: hidden;
    width: fit-content;
}
@media screen and (max-width: 1023px) {
    .s-pricing__sidebar {
        padding: 20px;
    }
}
.s-pricing__card--navy .s-pricing__sidebar { background: #262A40; }
.s-pricing__card--slate .s-pricing__sidebar { background: #5B697F; }

.s-pricing__sidebar-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.s-pricing__sidebar-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.s-pricing__sidebar-label {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
}

.s-pricing__sidebar-line {
    display: block;
    width: 32px;
    height: 3px;
    background: #BB1D2C;
    border-radius: 2px;
}
.s-pricing__card--slate .s-pricing__sidebar-line {
    background: #fff;
}
.s-pricing__content {
    flex: 1;
    padding: 28px 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.s-pricing__pricing-label {
    font-size: 16px;
    color: #262A40;
    font-weight: 400;
}

.s-pricing__price {
    font-size: 30px;
    font-weight: 700;
    line-height: 120%; 
    color: #262A40;
}

.s-pricing__price-desc {
    color: #262A40;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%; 
    letter-spacing: 0.16px;
    margin-bottom: 0;
}

.s-pricing__divider {
    height: 1px;
    background: #E8EAF0;
    margin: 4px 0;
}

.s-pricing__includes-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #262A40;
    margin-bottom: 10px;
}

.s-pricing__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.s-pricing__list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #262A40;
    line-height: 1.4;
}

.s-pricing__list-item svg {
    flex-shrink: 0;
}

.s-pricing__notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-radius: 10px;
    padding: 14px 16px;
    margin-top: 4px;
}

.s-pricing__notice--gray { background: #F4F4F4; }
.s-pricing__notice--red  { background: #FDF0F1; }

.s-pricing__notice-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.s-pricing__notice--gray .s-pricing__notice-icon {
    border-radius: 24px;
    border: 1px solid var(--Secondary, #262A40);
}

.s-pricing__notice--red .s-pricing__notice-icon {
    border-radius: 24px;
    background: var(--Primary, #BB1D2C);
}
.s-pricing__notice--red .s-pricing__notice-icon svg path {
    fill: #fff;
}
.s-pricing__notice-text {
    color: #262A40;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; 
    letter-spacing: 0.16px;
    margin-bottom: 0;
}
@media screen and (max-width: 767px) {
    .s-pricing__notice-text {
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 130%; /* 18.2px */
    }

}
.s-pricing__btn {
    display: inline-block;
    background: #BB1D2C;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 100px;
    text-decoration: none;
    transition: background 0.2s;
    align-self: flex-start;
    margin-top: 4px;
}

.s-pricing__btn:hover {
    background: #9e1825;
}

.s-pricing__wb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px 32px;
    border: 1.5px solid #BB1D2C;
    border-radius: 100px;
    text-decoration: none;
    color: #262A40;
    margin-top: 16px;
    transition: background 0.2s, color 0.2s;
}

.s-pricing__wb:hover {
    background: #BB1D2C;
    color: #fff;
}

.s-pricing__wb:hover .s-pricing__wb-sep {
    color: #fff;
    opacity: 0.6;
}

.s-pricing__wb-icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    color: #BB1D2C;
}

.s-pricing__wb:hover .s-pricing__wb-icon {
    color: #fff;
}

.s-pricing__wb-icon img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.s-pricing__wb-body {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.s-pricing__wb-title {
    font-size: 22px;
    font-weight: 700;
    white-space: nowrap;
    color: #262A40;
}

.s-pricing__wb:hover .s-pricing__wb-title {
    color: #fff;
}

.s-pricing__wb-sep {
    color: #BB1D2C;
    opacity: 1;
    font-size: 18px;
    flex-shrink: 0;
}

.s-pricing__wb:hover .s-pricing__wb-sep {
    color: #fff;
    opacity: 0.7;
}

.s-pricing__wb-desc {
    font-size: 18px;
    font-weight: 400;
    color: #262A40;
    white-space: nowrap;
}

.s-pricing__wb:hover .s-pricing__wb-desc {
    color: #fff;
}

.s-pricing__wb-arrow {
    flex-shrink: 0;
    color: #BB1D2C;
    width: 25px;
    height: 25px;
    margin-left: 4px;
}

.s-pricing__wb:hover .s-pricing__wb-arrow {
    color: #fff;
}


.s-pricing__features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #262A40;
    border-radius: 16px;
    padding: 32px 24px;
    gap: 12px;
}

.s-pricing__feature {
    display: flex;
    align-items: center;
    gap: 12px;
}


.s-pricing__feature-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.s-pricing__feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.s-pricing__feature-text {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    line-height: 1.5;
    margin: 0;
    padding-top: 6px;
}

@media (max-width: 900px) {
    .s-pricing__wb {
        border-radius: 20px;
        padding: 16px 20px;
    }

    .s-pricing__wb-title {
        font-size: 17px;
    }

    .s-pricing__wb-desc {
        font-size: 14px;
    }
    .s-pricing {
        padding: 48px 0 0;
    }

    .s-pricing__title {
        font-size: 28px;
    }

    .s-pricing__cards {
        grid-template-columns: 1fr;
    }

    .s-pricing__card {
        flex-direction: column;
    }

    .s-pricing__sidebar {
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        padding: 20px 24px;
        gap: 16px;
    }

    .s-pricing__sidebar-line {
        display: none;
    }

    .s-pricing__features {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        border-radius: 12px 12px 0 0;
        padding: 28px 20px;
    }

    .s-pricing__feature {
        padding: 0;
        border-right: none;
    }
}

@media (max-width: 560px) {
    .s-pricing__wb-sep,
    .s-pricing__wb-arrow {
        display: none;
    }
    .s-pricing__features {
        grid-template-columns: 1fr;
    }

    .s-pricing__price {
        font-size: 26px;
    }
}
/* ==========================================================================
   s-cases-list
   ========================================================================== */
.s-cases-list {
    padding: 80px 0;
    }

.s-cases-list__head {
    margin-bottom: 24px;
}

.s-cases-list__label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #262A40;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}

.s-cases-list__title {
    font-size: 40px;
    font-weight: 700;
    color: #262A40;
    margin: 0;
    line-height: 1.2;
}

.s-cases-list__divider {
    height: 1px;
    background: rgba(38, 42, 64, 0.50);

    margin-bottom: 28px;
}

.s-cases-list__filters {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.s-cases-list__filter-label {
   color: var(--Secondary, #262A40);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
}

.s-cases-list__filter-group {
    display: flex;
    gap: 12px;
    margin-left: auto;
}

.s-cases-list__dropdown {
    position: relative;
}

.s-cases-list__dropdown-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1px solid #D0D5E1;
    border-radius: 8px;
    background: #fff;
    font-size: 14px;
    font-family: inherit;
    color: #262A40;
    cursor: pointer;
    transition: border-color 0.2s;
    white-space: nowrap;
}

.s-cases-list__dropdown.is-active .s-cases-list__dropdown-btn {
    border-color: #262A40;
    font-weight: 500;
}

.s-cases-list__dropdown-btn:hover {
    border-color: #262A40;
}

.s-cases-list__dropdown-btn svg {
    flex-shrink: 0;
    transition: transform 0.2s;
}

.s-cases-list__dropdown.is-open .s-cases-list__dropdown-btn svg {
    transform: rotate(180deg);
}

.s-cases-list__dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 200px;
    background: #fff;
    border: 1px solid #E6EBF3;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(38, 42, 64, 0.12);
    z-index: 100;
    overflow: hidden;
}

.s-cases-list__dropdown.is-open .s-cases-list__dropdown-menu {
    display: block;
}

.s-cases-list__dropdown-item {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    color: #262A40;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.s-cases-list__dropdown-item:hover {
    background: #F4F4F4;
}

.s-cases-list__dropdown-item.is-selected {
    background: #F4F4F4;
    color: #BB1D2C;
    font-weight: 500;
}

/* Grid */
.s-cases-list__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.s-cases-list__card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.s-cases-list__card-img {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    aspect-ratio: 1/1
}

.s-cases-list__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.s-cases-list__card:hover .s-cases-list__card-img img {
    transform: scale(1.04);
}

.s-cases-list__card-tag {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(187, 29, 44, 0.10);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 12px;
    width: fit-content;
    color: #BB1D2C;
}

.s-cases-list__card-title {
    font-size: 18px;
    font-weight: 700;
    color: #262A40;
    margin: 0 0 20px;
    line-height: 1.4;
    flex: 1;
}

.s-cases-list__card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border: 1.5px solid #262A40;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: #262A40;
    width: fit-content;
    transition: background 0.2s, color 0.2s;
}

.s-cases-list__card:hover .s-cases-list__card-btn {
    background: #262A40;
    color: #fff;
}

/* Pagination */
.s-cases-list__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: 56px;
}

.s-cases-list__page-link,
.s-cases-list__page-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 14px;
    color: #262A40;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    flex-shrink: 0;
}

.s-cases-list__page-link:hover,
.s-cases-list__page-arrow:hover {
    background: #F4F4F4;
}

.s-cases-list__page-link.is-active {
    background: #262A40;
    color: #fff;
}

.s-cases-list__page-arrow.is-disabled {
    opacity: 0.3;
    pointer-events: none;
    cursor: default;
}

.s-cases-list__page-ellipsis {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-size: 14px;
    color: #8A91A8;
}

@media (max-width: 1024px) {
    .s-cases-list__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .s-cases-list {
        padding: 52px 0;
    }
    .s-cases-list__filters {
        flex-wrap: wrap;
    }
    .s-cases-list__title {
        font-size: 30px;
    }


    .s-cases-list__filter-group {
        margin-left: 0;
    }
}

@media (max-width: 560px) {
    .s-cases-list__filter-label {
        text-align: center;
        display: block;
        width: 100%;
    }
    .s-cases-list__head {
        display: flex;
        align-content: center;
        flex-direction: column;
        text-align: center;
    }
    .s-cases-list__filter-group {
        width: 100%;
    }
    .s-cases-list__filter-group  .s-cases-list__dropdown{
        min-width: calc(50% - 6px);
    }
    .s-cases-list__filter-group  .s-cases-list__dropdown button {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .s-cases-list__dropdown-menu {
        right: unset;
    }
    .s-cases-list__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .s-cases-list__title {
        font-size: 26px;
    }

    .s-cases-list__card-img {
        aspect-ratio: 1/1
    }
}

/* ==========================================================================
   s-about-duo — YouTube play button
   ========================================================================== */
.s-about-duo__play {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    color: #262A40;
    padding: 0;
    margin-top: 24px;
}

.s-about-duo__play-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #BB1D2C;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding-left: 4px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.s-about-duo__play:hover .s-about-duo__play-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(187, 29, 44, 0.35);
}

/* ==========================================================================
   YouTube popup
   ========================================================================== */
.yt-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.yt-popup.is-open {
    opacity: 1;
    pointer-events: all;
}

.yt-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
}

.yt-popup__wrap {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 960px;
}

.yt-popup__close {
    position: absolute;
    top: -48px;
    right: 0;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.yt-popup__close:hover {
    opacity: 1;
}

.yt-popup__iframe-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
}

.yt-popup__iframe-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 600px) {
    .yt-popup__wrap {
        width: 95%;
    }

    .yt-popup__close {
        top: -40px;
        right: 0;
    }
}

/* ============================================
   s-sectors-list
   ============================================ */

.s-sectors-list {
    padding: 80px 0;
}

.s-sectors-list__head {
    text-align: center;
    margin: 0 auto 56px;
}

.s-sectors-list__label {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: #262A40;
    margin-bottom: 12px;
}

.s-sectors-list__title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: #262A40;
    margin: 0 0 16px;
    line-height: 1.2;
}

.s-sectors-list__desc {
    max-width: 800px;
    margin: 0 auto;
    color: var(--Secondary, #262A40);
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%; /* 24px */
    letter-spacing: 0.16px;
}

.s-sectors-list__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.s-sectors-list__card {
    display: flex;
    gap: 0;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #E8EAF0;
    gap: 32px;
    padding: 20px;
}

.s-sectors-list__image {
    max-width: 260px;
    width: 100%;
}

.s-sectors-list__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

.s-sectors-list__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.s-sectors-list__meta {
    display: flex;
    align-items: center;
    gap: 14px;
}

.s-sectors-list__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    background: #262A40;
    border-radius: 10px;
    overflow: hidden;
}

.s-sectors-list__icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.s-sectors-list__name {
    font-size: 22px;
    font-weight: 700;
    color: #262A40;
    margin: 0;
    line-height: 1.2;
}

.s-sectors-list__excerpt {
   color: var(--Secondary, #262A40);
    font-family: "DM Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 24px */
    letter-spacing: 0.16px;
}

.s-sectors-list__advantages {
    list-style: none;
    padding: 0;
    margin: 4px 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.s-sectors-list__advantage {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #262A40;
}

.s-sectors-list__advantage svg {
    flex-shrink: 0;
}

.s-sectors-list__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    padding: 10px 24px;
    border: 1.5px solid #262A40;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 500;
    color: #262A40;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    align-self: flex-start;
}

.s-sectors-list__btn:hover {
    background: #262A40;
    color: #fff;
}

@media (max-width: 1024px) {
    .s-sectors-list__image {
        flex: 0 0 200px;
        width: 200px;
    }
    .s-sectors-list__grid {
        grid-template-columns: 1fr;
    }
    .s-sectors-list__card {
        gap: 16px;
    }
}

@media (max-width: 768px) {


    .s-sectors-list__image {
        flex: 0 0 160px;
        width: 160px;
    }

}

@media (max-width: 540px) {
    .s-sectors-list__card {
        flex-direction: column;
    }

    .s-sectors-list__image {
        width: 100%;
        height: 200px;
        max-width: 100%;
    }
}

/* ============================================
   s-employer-stories
   ============================================ */

.s-employer-stories {
    padding: 80px 0;
}

.s-employer-stories__head {
    text-align: center;
    margin: 0 auto 48px;
}

.s-employer-stories__label {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: #262A40;
    margin-bottom: 12px;
}

.s-employer-stories__title {
    color: #262A40;
    margin: 0 0 16px;
    color: var(--Secondary, #262A40);
    text-align: center;
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%; 
}

.s-employer-stories__desc {
    font-size: 16px;
    color: #262A40;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 800px;
    width: 100%;
}

.s-employer-stories__box {
    background: #262A40;
    border-radius: 20px;
    padding: 40px 40px 48px;
}

.s-employer-stories__box-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
}

.s-employer-stories__inner-label {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,1);
    margin-bottom: 8px;
}

.s-employer-stories__inner-title {
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-align: center;
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%; /* 47.5px */
}

.s-employer-stories__all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    padding: 12px 20px;
    border: 1.5px solid rgba(255,255,255,0.4);
    border-radius: 100px;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
    white-space: nowrap;
}

.s-employer-stories__all-btn:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.08);
}

/* Slider */
.s-employer-stories__slider-wrap {
    position: relative;
}

.s-employer-stories__swiper {
    overflow: hidden;
    padding-bottom: 36px !important;
}
.s-employer-stories__swiper .swiper-slide {
    height: auto;
}
/* Card */
.s-employer-stories__card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.s-employer-stories__thumb {
    position: relative;
    aspect-ratio: 2/1;
    overflow: hidden;
}

.s-employer-stories__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.s-employer-stories__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.25);
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.s-employer-stories__play:hover {
    background: rgba(0,0,0,0.4);
}

.s-employer-stories__play svg {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    padding: 10px 10px 10px 14px;
    color: #262A40;
    flex-shrink: 0;
}

.s-employer-stories__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.s-employer-stories__quote {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.s-employer-stories__quote-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.s-employer-stories__quote p {
    font-size: 14px;
    color: #262A40;
    line-height: 1.55;
    margin: 0;
}

.s-employer-stories__person {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: auto;
}

.s-employer-stories__name {
    font-size: 14px;
    font-weight: 700;
    color: #262A40;
}

.s-employer-stories__position {
    font-size: 13px;
    color: #5A6478;
}

.s-employer-stories__country {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
}

.s-employer-stories__country img {
    width: 24px;
    height: auto;
    border-radius: 2px;
}

.s-employer-stories__country span {
    font-size: 13px;
    font-weight: 500;
    color: #262A40;
}

/* Nav arrows */
.s-employer-stories__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    background: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #262A40;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    transition: background 0.2s;
}

.s-employer-stories__nav:hover {
    background: #f0f1f4;
}

.s-employer-stories__nav--prev {
    left: -22px;
}

.s-employer-stories__nav--next {
    right: -22px;
}

/* Pagination dots */
.s-employer-stories__pagination {
    bottom: 0 !important;
}

.s-employer-stories__pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.35);
    border-radius: 50%;
    opacity: 1;
    transition: background 0.2s, transform 0.2s;
}

.s-employer-stories__pagination .swiper-pagination-bullet-active {
    background: #BB1D2C;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .s-employer-stories__title ,
    .s-employer-stories__inner-title  {
        font-size: 26px;
    }
    .s-employer-stories__box {
        padding: 28px 20px 36px;
    }

    .s-employer-stories__box-head {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .s-employer-stories__nav--prev {
        left: -14px;
    }

    .s-employer-stories__nav--next {
        right: -14px;
    }
}

/* ============================================
   s-cta-banner
   ============================================ */

.s-cta-banner {
    padding: 40px 0;
}

.s-cta-banner__box {
    display: flex;
    align-items: center;
    gap: 32px;
    background: #262A40;
    border-radius: 20px;
    padding: 48px 140px 48px 48px;
    position: relative;
    overflow: hidden;
}

.s-cta-banner__text {
    flex: 1;
    min-width: 0;
}

.s-cta-banner__title {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.25;
}

.s-cta-banner__desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    line-height: 1.5;
}

.s-cta-banner__btns {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.s-cta-banner__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s, background 0.2s, color 0.2s;
}

.s-cta-banner__btn--primary {
    background: #BB1D2C;
    color: #fff;
    border: 2px solid #BB1D2C;
}

.s-cta-banner__btn--primary:hover {
    opacity: 0.88;
}

.s-cta-banner__btn--secondary {
    background: #fff;
    color: #262A40;
    border: 2px solid #fff;
}

.s-cta-banner__btn--secondary:hover {
    background: transparent;
    color: #fff;
}

.s-cta-banner__deco {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    pointer-events: none;
    display: flex;
    align-items: center;
}

.s-cta-banner__deco img {
    height: 100%;
    width: auto;
    display: block;
    object-fit: contain;
    object-position: right center;
}
@media (max-width: 1024px) {
    .s-cta-banner__box {
        flex-direction: column;
        padding: 24px;
        align-items: flex-start;
    }
}
@media (max-width: 900px) {
    .s-cta-banner__box {
        flex-wrap: wrap;
        padding: 32px;
        gap: 24px;
    }

    .s-cta-banner__deco {
        display: none;
    }
}

@media (max-width: 560px) {
    .s-cta-banner__box {
        padding: 28px 24px;
    }

    .s-cta-banner__btns {
        flex-direction: column;
        width: 100%;
    }

    .s-cta-banner__btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   s-areas-grid
   ============================================ */

.s-areas-grid {
    padding: 80px 0;
}

.s-areas-grid__head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}

.s-areas-grid__label {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: #262A40;
}

.s-areas-grid__title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #262A40;
    margin: 0 0 14px;
    line-height: 1.2;
}

.s-areas-grid__desc {
    font-size: 16px;
    color: #262A40;
    margin: 0;
}

.s-areas-grid__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.s-areas-grid__card {
    display: flex;
    flex-direction: column;

}

.s-areas-grid__image {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 12px;
}

.s-areas-grid__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.s-areas-grid__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    border-radius: 0 0 24px 24px;
    background: var(--White, #FFF);
    box-shadow: 0 12px 60px 0 rgba(0, 0, 0, 0.03), 0 4.622px 19.111px 0 rgba(0, 0, 0, 0.03), 0 0.978px 4.889px 0 rgba(0, 0, 0, 0.02);
}

.s-areas-grid__card-title {
    font-size: 18px;
    font-weight: 700;
    color: #262A40;
    margin: 0;
    line-height: 1.25;
}

.s-areas-grid__card-desc {
    font-size: 14px;
    color: #5A6478;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.s-areas-grid__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    font-weight: 700;
    color: #262A40;
    text-decoration: none;
    margin-top: 6px;
    transition: color 0.2s;
}

.s-areas-grid__btn:hover {
    color: #8f141f;
}

.s-areas-grid__btn svg {
    flex-shrink: 0;
    transition: transform 0.2s;
}

.s-areas-grid__btn:hover svg {
    transform: translateX(3px);
}

.s-areas-grid__countries {
    margin-top: auto;
    padding-top: 12px;
}

.s-areas-grid__countries-label {
    display: block;
    font-size: 12px;
    color: #9AA0B0;
    margin-bottom: 8px;
}

.s-areas-grid__flags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.s-areas-grid__flag img {
    width: 28px;
    height: 20px;
    object-fit: cover;
    border-radius: 3px;
    display: block;
}

@media (max-width: 1024px) {
    .s-areas-grid__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    .s-areas-grid__grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   s-image-features
   ============================================ */

.s-image-features {
    padding: 80px 0;
}

.s-image-features__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.s-image-features__image {
    border-radius: 16px;
    overflow: hidden;
}

.s-image-features__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.s-image-features__content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.s-image-features__label {
    font-size: 14px;
    font-weight: 500;
    color: #5A6478;
}

.s-image-features__title {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 700;
    color: #262A40;
    margin: 0;
    line-height: 1.2;
}

.s-image-features__desc {
    font-size: 16px;
    color: #5A6478;
    line-height: 1.65;
    margin: 0;
}

.s-image-features__list {
    list-style: none;
    padding: 0;
    margin: 4px 0 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.s-image-features__item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #262A40;
}

.s-image-features__check {
    display: flex;
    flex-shrink: 0;
}

.s-image-features__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    background: #BB1D2C;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 100px;
    text-decoration: none;
    margin-top: 8px;
    align-self: flex-start;
    transition: opacity 0.2s;
}

.s-image-features__btn:hover {
    opacity: 0.88;
    color: #fff;
}

@media (max-width: 900px) {
    .s-image-features__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .s-image-features__content {
        gap: 16px;
    }
}

/* ============================================
   s-map-cta
   ============================================ */

.s-map-cta {
    padding: 40px 0;
}

.s-map-cta__box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #262A40;
    border-radius: 24px;
    padding: 10px 10px 10px 48px;
    border-radius: 100px 500px 500px 100px;
    overflow: hidden;
}

.s-map-cta__bg-map {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-20%, -50%);
    pointer-events: none;
    width: 70%;
    height: 130%;
}

.s-map-cta__bg-map img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.2;
}

.s-map-cta__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 520px;
}

.s-map-cta__title {
    font-size: clamp(22px, 2.8vw, 32px);
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.s-map-cta__desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin: 0;
}

.s-map-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    background: #BB1D2C;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 100px;
    text-decoration: none;
    align-self: flex-start;
    transition: opacity 0.2s;
    margin-top: 4px;
}

.s-map-cta__btn:hover {
    opacity: 0.88;
    color: #fff;
}

.s-map-cta__circle {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #3a4060;
}

.s-map-cta__circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 900px) {
    .s-map-cta__box {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
        padding: 36px 32px;
        border-radius: 16px;
    }

    .s-map-cta__circle {
        width: 180px;
        height: 180px;
        align-self: center;
        
    }
    .s-map-cta__bg-map {
        left: 30%;
    }
}

@media (max-width: 560px) {
    .s-map-cta__box {
        padding: 28px 24px;
    }

    .s-map-cta__btn {
        width: 100%;
        justify-content: center;
    }
}

/* s-hero sectors buttons */
.s-hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}
.s-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    transition: opacity 0.2s;
    white-space: nowrap;
}
.s-hero__btn:hover { opacity: 0.85; }
.s-hero__btn--red {
    background: #BB1D2C;
    color: #fff;
    border: 2px solid #BB1D2C;
}
.s-hero__btn--white {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}
@media (max-width: 540px) {
    .s-hero__buttons { gap: 10px; }
    .s-hero__btn { padding: 10px 22px; font-size: 14px; }
}

/* ── s-offices ───────────────────────────────────────────────────────────── */
.s-offices {
    padding: 80px 0;
    background: #F4F5F7;
}

.s-offices__head {
    text-align: center;
    margin-bottom: 40px;
}

.s-offices__label {
    display: block;
    font-size: 14px;
    color: #262A40;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
}

.s-offices__title {
    font-size: 36px;
    font-weight: 700;
    color: #262A40;
    margin: 0;
    line-height: 1.2;
}

.s-offices__list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.s-offices__pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #262A40;
    color: #fff;
    border-radius: 100px;
    padding: 10px 20px 10px 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
}

a.s-offices__pill:hover {
    background: #BB1D2C;
    color: #fff;
}

.s-offices__flag {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255,255,255,0.15);
}

.s-offices__flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .s-offices {
        padding: 56px 0;
    }
    .s-offices__title {
        font-size: 26px;
    }
    .s-offices__list {
        gap: 10px;
    }
    .s-offices__pill {
        font-size: 14px;
        padding: 8px 16px 8px 8px;
    }
    .s-offices__flag {
        width: 34px;
        height: 34px;
    }
}

/* ── s-split-cards ───────────────────────────────────────────────────────── */
.s-split-cards {
    padding: 80px 0;
    background: #F4F5F7;
}

.s-split-cards__inner {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    align-items: center;
}

/* Left */
.s-split-cards__label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #888;
    margin-bottom: 14px;
}

.s-split-cards__title {
    font-size: 36px;
    font-weight: 700;
    color: #262A40;
    line-height: 1.2;
    margin: 0 0 20px;
}

.s-split-cards__desc {
    font-size: 15px;
    color: #555;
    line-height: 1.65;
    margin: 0 0 32px;
}

.s-split-cards__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #262A40;
    color: #fff;
    border-radius: 100px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s;
}

.s-split-cards__btn:hover {
    opacity: 0.8;
    color: #fff;
}

/* Cards */
.s-split-cards__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.s-split-cards__card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.s-split-cards__card-img {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.s-split-cards__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.s-split-cards__card:hover .s-split-cards__card-img img {
    transform: scale(1.04);
}

.s-split-cards__card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
}

.s-split-cards__card-title {
    font-size: 16px;
    font-weight: 700;
    color: #262A40;
    margin: 0;
    line-height: 1.3;
}

.s-split-cards__card-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.s-split-cards__card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #262A40;
    text-decoration: none;
    margin-top: 4px;
    transition: color 0.2s;
}

.s-split-cards__card-link:hover {
    color: #BB1D2C;
}

/* Tablet */
@media (max-width: 1024px) {
    .s-split-cards__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .s-split-cards__title {
        font-size: 28px;
    }

    .s-split-cards__cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile */
@media (max-width: 640px) {
    .s-split-cards__left {
        text-align: center;
    }
    .s-split-cards {
        padding: 48px 0;
    }

    .s-split-cards__cards {
        grid-template-columns: 1fr;
    }
}
