/*reset css*/
/* Box sizing rules */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
    margin: 0;
}

/* Remove list styles on ul, ol elements with a list role */
ul[role='list'],
ol[role='list'] {
    list-style: none;
}

/* Set core root defaults */
html:focus-within {
    scroll-behavior: smooth;
}

/* Set core body defaults */
body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
    text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
    max-width: 100%;
    display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
    font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto;
    }

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

/* Main styles */

:root {
    --indigo: #0A0E18;
    --ivory: #FFFAF0;
    --champagne: #C7AD8E;
    --warm-grey: #767773;
    --light-grey: #D9D9D9;

}

a:hover, button:hover {
    opacity: 0.8;
    cursor: pointer;
}

html {
    scroll-behavior: smooth;
}

.champagne {
    color: var(--champagne);
}

body {
    background: #0A0E18;
    font-family: "Outfit", Arial, Helvetica, sans-serif;
}

* {
    color: var(--ivory);
}

section {
    padding: 170px 0;
}

.buttons {
    display: flex;
    gap: 28px;
}

.buttons a, .buttons button {
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    padding: 24px 48px;
    border: 1px solid var(--light-grey);
    color: var(--light-grey);
    text-decoration: none;
    background: transparent;
    letter-spacing: 10%;
}

.buttons a.light, .buttons button.light {
    background: var(--light-grey);
    color: var(--indigo);
}

.wrapper {
    padding: 0 80px;
    margin: 0 auto;
    width: 100%;
}

header {
    position: absolute;
    width: 100%;
    padding: 50px 0 0 0;
    top: 0;
    left: 0;
    z-index: 100;
}

header section {
    padding: 0;
}

header .wrapper {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    align-items: center;
}

/* ── Logo ── */
.logo img {
    display: block;
    height: 20px;
    width: auto;
}

/* ── Desktop Menu ── */
header .menu {
    display: flex;
    gap: 34px;
    align-items: center;
}

header .menu a {
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 0.2s;
}

/* ── Hamburger Button (hidden on desktop) ── */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 101;
}

.hamburger span {
    display: block;
    width: 14px;
    height: 3px;
    background: var(--champagne);
    transition: all 0.25s ease;
    transform-origin: center;
}

/* Hamburger → X animation */
.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ── Mobile Menu Overlay ── */
.mobile-menu {
    display: none;
    /* hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #0A0E18A6;
    backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    z-index: 99;
    padding: 40px 20px;
}

.mobile-menu a {
    text-decoration: none;
    font-weight: 600;
    font-size: 22px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ivory);
    transition: color 0.2s;
}

.mobile-menu a:hover {
    color: #0077cc;
}

/* ── Show mobile menu when open ── */
.mobile-menu.open {
    display: flex;
}

#hero {
    background-image: url("./img/hero.jpg");
    padding-top: 230px;
    background-size: cover;
    height: 100vh;
    padding-bottom: 70px;
}

#hero .wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    height: 100%;
}

#hero h1 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    font-size: 100px;
    line-height: 90%;
    margin-bottom: 60px;
}

#hero .left {
    height: 100%;
    display: flex;
    flex-direction: column;
}

#hero .left p {
    font-weight: 200;
    font-size: 26px;
    line-height: 110.00000000000001%;
    margin-bottom: 143px;
}

#hero .left .links {
    display: flex;
    gap: 50px;
    align-items: flex-end;
    margin-top: auto;
}

#hero .left .links a {
    text-decoration: none;
    border-bottom: 1px solid var(--warm-grey, #767773);
    font-weight: 600;
    font-size: 18px;
    line-height: 110%;
    text-transform: uppercase;
    color: var(--warm-grey);
    letter-spacing: 15%;
    text-wrap: nowrap;
}

#hero .right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 55px;
}

#hero .right p {
    font-weight: 600;
    font-size: 18px;
    line-height: 125%;
    letter-spacing: 15%;
    text-align: right;
    text-transform: uppercase;
    color: var(--champagne);
}

#hero .right p span {
    color: var(--warm-grey);
    display: block;
}

.icon_text {
    font-weight: 600;
    font-size: 18px;
    line-height: 110%;
    letter-spacing: 15%;
    text-transform: uppercase;
    color: var(--champagne);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.icon_text:before {
    content: "";
    background-image: url("./img/ico.svg");
    width: 13px;
    height: 15px;
    background-size: contain;
}

h2 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    font-size: 85px;
    line-height: 90%;
    margin: 60px 0;

}

p {
    font-weight: 200;
    font-size: 26px;
    line-height: 120%;
    letter-spacing: 4%;
}


.position_info {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
}

.position_links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.position_links .icons {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 31px;
    align-items: center;
}

.position_links .icons img:last-child {
    max-height: 20px;
}

#positioning .advantages {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--champagne);
    margin-top: 170px;
    padding: 49px 0;
    gap: 24px;
}

#positioning .advantages .adv {
    display: flex;
    gap: 40px;
    align-items: center;
}

#positioning .advantages .adv p {
    font-weight: 200;
    font-size: 26px;
    line-height: 110%;
    letter-spacing: 1%;
    color: var(--champagne);
}

.independence {
    height: 545px;
    display: flex;
    align-items: center;
    background-image: url("./img/independent.jpg");
    background-size: cover;
}

.independence .wrapper {
    display: flex;
    flex-direction: row;
    gap: 80px;
    justify-content: center;
}

.independence span {
    color: var(--ivory);
    font-weight: 500;
    font-size: 36px;
    line-height: 110%;
    letter-spacing: 15%;
    text-transform: uppercase;
}

.independence span:nth-child(2) {
    display: flex;
    gap: 80px;
    align-items: center;
}

.independence span:nth-child(2):before, .independence span:nth-child(2):after {
    content: "";
    background-image: url("./img/ico.svg");
    width: 23px;
    height: 28px;
    background-size: contain;
    display: block;
    background-repeat: no-repeat;
}

#why .cards {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

#why .cards .card {
    padding: 33px 56px;
    flex: 1;
    position: relative;
}

#why .cards .card:first-of-type {
    padding-left: 0;
}

#why .cards .card:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: var(--warm-grey);
    display: block;
}

#why .cards .card .card_title {
    font-weight: 600;
    font-size: 18px;
    line-height: 110%;
    letter-spacing: 15%;
    text-transform: uppercase;
    color: var(--champagne);
    margin-bottom: 27px;
    display: block;
}

#why .cards .card p {
    font-size: 22px;
    line-height: 120%;
    min-height: 100px;
}

#why .cards .card img {
    width: 100%;
    margin: 48px 0 0;
}

#why .cards .card a {
    font-weight: 400;
    font-size: 18px;
    line-height: 110%;
    letter-spacing: 15%;
    text-transform: uppercase;
    color: var(--warm-grey);
    border-bottom: 1px solid var(--warm-grey);
    text-decoration: none;
    display: none;
}

#what .icon_text {
    position: absolute;
}

#what h2 {
    position: absolute;
    width: 50%;
}

.custom-slider-wrapper {
    position: relative;
}

.custom-slider {
    overflow: hidden;
}

.slide-content {
    display: flex;
    min-height: 700px;
}

.slide-left,
.slide-right {
    width: 50%;
}

.slide-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-right: 104px;
    min-height: 100%;
}

.slide-bottom {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: flex-end;
    margin-bottom: 34px;
}

.slide-info {
    max-width: 500px;
}

.slide-label {
    margin-bottom: 28px;
    font-weight: 600;
    font-size: 18px;
    line-height: 110%;
    letter-spacing: 15%;
    text-transform: uppercase;
    color: var(--champagne);
}

.slide-info h3 {
    margin-bottom: 36px;
    font-family: Cormorant Garamond, sans-serif;
    font-weight: 400;
    font-size: 70px;
    line-height: 90%;
    letter-spacing: 0%;
    color: var(--ivory);
}

.slide-info p {
    font-weight: 200;
    font-size: 22px;
    line-height: 110%;
    color: var(--light-grey);
}

.slide-counter {
    flex-shrink: 0;
    white-space: nowrap;
    font-weight: 300;
    font-size: 18px;
    line-height: 110%;
    letter-spacing: 15%;
    text-transform: uppercase;
}

.slide-counter span {
    color: var(--warm-grey);
}

.slide-counter .current {
    font-weight: 600;
    color: var(--champagne);
}

.slide-right {
    position: relative;
}

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

/* полоски поверх картинки */

.swiper-pagination {
    position: absolute !important;
    left: unset !important;
    right: 0 !important;
    bottom: 40px !important;
    display: flex;
    gap: 8px;
    width: 50% !important;
    padding: 0 40px;

}

.swiper-pagination-bullet {
    flex: 1;
    height: 1px !important;
    border-radius: 0 !important;
    background: var(--warm-grey) !important;
    margin: 0 !important;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--champagne) !important;
    height: 3px !important;
}

/* стрелки */

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    border: none;
    cursor: pointer;
    z-index: 20;
    background: none;
}

.slider-prev {
    left: 0;
}

.slider-next {
    right: 46px;
}

.request {
    background: var(--champagne);
    padding: 32px 0;
}

.request .wrapper {
    display: flex;
    justify-content: space-between;
}

.independent {
    display: flex;
    flex-direction: row;
    gap: 40px;
    justify-content: center;
    align-items: center;
}

.independent span {
    color: var(--indigo);
    font-weight: 500;
    font-size: 23px;
    line-height: 110%;
    letter-spacing: 15%;
    text-transform: uppercase;
}

.independent span:nth-child(2) {
    display: flex;
    gap: 40px;
    align-items: center;
}

.independent span:nth-child(2):before, .independent span:nth-child(2):after {
    content: "";
    background-image: url("./img/ico-revert.svg");
    width: 14px;
    height: 16px;
    background-size: contain;
    display: block;
    background-repeat: no-repeat;
    filter: revert;
}

.process_how {
    display: flex;
    flex-direction: column;
    gap: 140px;
    margin-top: 70px;
}

.process_how > .buttons {
    display: none;
}

#process h2 {
    margin: 0;
}

#process .first_row {
    display: flex;
    flex-direction: row;
    gap: 180px;
    justify-content: space-between;
}

#process .first_row .cta {
    display: flex;
    flex-direction: row;
    gap: 47px;
    justify-content: space-between;
}

#process .first_row .cta p {
    font-size: 26px;
    line-height: 120%;
    font-weight: 200;
}

#process .first_row .cta a {
    height: fit-content;
    text-wrap: nowrap;
}


.columns {
    display: flex;
    gap: 47px;
    justify-content: space-between;
}

.column {
    flex: 1;
    transition: background 0.3s;
    min-height: 278px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.number {
    font-size: 18px;
    font-weight: 600;
    color: var(--warm-grey);
    transition: color 0.4s ease;
}

.line-wrapper {
    height: 3px;
    margin: 16px 0 65px 0;
    display: flex;
    align-items: center;
}

.line {
    width: 100%;
    height: 1px;
    background: var(--warm-grey);
    transition: height 0.4s ease, background 0.4s ease;
}

.title {
    font-size: 30px;
    font-weight: 600;
    color: var(--champagne);
    margin-bottom: 31px;
    transition: color 0.4s ease;
}

.text {
    font-size: 22px;
    line-height: 120%;
    color: var(--warm-grey);
    transition: color 0.4s ease;
    font-weight: 200;
}

.column.active .number {
    color: var(--champagne);
}

.column.active .line {
    height: 3px;
    background: var(--champagne);
}

.column.active .text {
    color: var(--ivory);
}

#coverage {
    position: relative;
}


.regions-map__content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.regions-map__list {
    width: 300px;
    flex-shrink: 0;
    margin-bottom: 112px;
}

.regions-map__list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.regions-map__list li {
    padding: 24px 0;
    font-size: 38px;
    cursor: pointer;
    transition: .3s;
    color: var(--light-grey);
    font-weight: 300;
}

.regions-map__list li:not(:last-child) {
    border-bottom: 1px solid var(--warm-grey);
}

.regions-map__list li.active {
    color: var(--champagne);
}

.regions-map__image {
    position: absolute;
    flex: 1;
    right: 0;
    top: 120px;
}

.regions-map__image img {
    width: 100%;
    display: block;
}

.map-point {
    position: absolute;
    width: 14px;
    height: 14px;
    border: none;
    border-radius: 50%;
    background: var(--light-grey);
    cursor: pointer;
    transform: translate(-50%, -50%);
    transition: .3s;
}

.map-point::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: .3s;
}

.map-point.active {
    box-shadow: 0 0px 30px 15px #c7ad8eff;

}

#expertise {
    background-image: url(./img/expertise.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.expertise_list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 126px;
    gap: 48px;
}

.expertise_list .right {
    padding-top: 54px;
}

.expertise_list ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0;
    margin-top: 135px;
}

.expertise_list .left ul {
    margin-top: 70px;
}

.expertise_list ul li {
    display: flex;
    align-items: center;
    gap: 28px;
    font-weight: 400;
    font-size: 26px;
    line-height: 110%;
    letter-spacing: 15%;
    text-transform: uppercase;
    color: var(--champagne);
}

.positioning_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.positioning_wrapper .left {
    padding-right: 163px;
}

.positioning_wrapper .left p {
    font-weight: 200;
    font-size: 26px;
    line-height: 120%;
    letter-spacing: 3%;
    margin-bottom: 16px;
}

.positioning_wrapper .right p {
    font-weight: 500;
    font-size: 26px;
    line-height: 120%;
}

.positioning_wrapper .right ul {
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: relative;
    margin-top: 76px;
    padding: 0;
    list-style-position: inside;
}

.positioning_wrapper .right ul li {
    font-weight: 400;
    font-size: 26px;
    line-height: 110%;
    letter-spacing: 15%;
    text-transform: uppercase;
    color: var(--champagne);
    list-style-type: none;
    display: flex;
    flex-direction: row;
    gap: 26px;
    align-items: center;
}

.positioning_wrapper .right ul li:before {
    content: "";
    width: 40px;
    height: 40px;
    background: url("./img/dot.svg");
    background-size: cover;
    background-repeat: no-repeat;
    display: block;
}

.trusted_wrapper {
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: flex-end;
}

.trusted_text {
    width: 66%;

}

.trusted_text p {
    font-size: 32px;
}

.trusted_wrapper .trusted_list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 30%;
    margin: 0;
}

.trusted_wrapper .trusted_list li {
    list-style-type: none;
    display: flex;
    gap: 28px;
    align-items: center;

}

.trusted_wrapper .trusted_list li img {
    width: 44px;
}

.trusted_wrapper .trusted_list li p {
    font-weight: 600;
    font-size: 18px;
    line-height: 125%;
    letter-spacing: 15%;
    text-transform: uppercase;
    color: var(--champagne);
}

.trusted_wrapper .trusted_list li span {
    color: var(--warm-grey);
}

.testimonials_list {
    flex-direction: row;
    flex-wrap: nowrap;
    margin-top: 240px;
    margin-bottom: 170px;
    display: none;
}

.testimonial {
    padding: 12px 24px 12px 70px;
    flex: 1;
    position: relative;
}

.testimonial:before {
    content: "";
    width: 30px;
    height: 30px;
    background: url("./img/quotes.svg") no-repeat;
    display: block;
    position: absolute;
    left: 24px;
    top: 0;
}

.testimonial:not(:last-child)::after {
    content: "";
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: var(--warm-grey);
    display: block;
    position: absolute;
}

.testimonial p {
    font-weight: 200;
    font-size: 26px;
    line-height: 110%;
    margin-bottom: 70px;
}

.testimonial span {
    display: block;
    font-weight: 600;
    font-size: 18px;
    line-height: 110%;
    letter-spacing: 15%;
    text-transform: uppercase;
    color: var(--champagne);
}

.testimonial span.name {
    margin-bottom: 14px;
}

.testimonial span.region {
    color: var(--warm-grey);
}

.logos {
    display: none;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: nowrap;
}

#form {
    background: var(--champagne);
}

#form .wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 168px;
}

.form-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    padding: 40px 48px;
    max-width: 820px;
    width: 100%;
    transition: box-shadow 0.2s ease;
}

.form-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.form-title {
    font-size: 26px;
    font-weight: 600;
    color: #1a2634;
    margin-bottom: 32px;
    letter-spacing: -0.3px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 53px 20px;
    margin-bottom: 112px;
}

.field-group {
    display: flex;
    flex-direction: column;
}

.field-group input,
.field-group select {
    width: 100%;
    padding: 6px 0;
    font-size: 26px;
    font-weight: 200;
    border: none;
    border-bottom: 1px solid var(--warm-grey);
    transition: border-color 0.2s, box-shadow 0.2s;
    color: var(--indigo);
    outline: none;
    background: transparent;
}

.field-group input::placeholder {
    color: var(--indigo);
}

#request .field-group input::placeholder {
    color: var(--light-grey);
}

#request .field-group input, #request .field-group select {
    color: var(--light-grey);
}

.full-width {
    grid-column: 1 / -1;
    margin-bottom: 12px;
}

.full-width textarea {
    width: 100%;
    resize: vertical;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.form_description .title {
    color: var(--indigo);
    font-size: 75px;
    line-height: 90%;
    font-weight: 500;
    font-family: "Cormorant Garamond", serif;
}

.form_description .title span {
    color: #585858;
}

.form_description .text_icon {
    display: flex;
    align-items: flex-start;
    gap: 48px;
    margin-bottom: 118px;
}

.form_description .text_icon p {
    font-weight: 300;
    font-size: 26px;
    line-height: 110%;
    letter-spacing: 3%;
    color: #585858;
    width: 69%;
}

#form .contacts {
    display: flex;
    gap: 48px;
}

#form .contacts a {
    display: flex;
    gap: 20px;
    align-items: center;
    font-weight: 400;
    font-size: 16px;
    line-height: 110%;
    letter-spacing: 10%;
    text-transform: uppercase;
    color: var(--ivory);
    text-decoration: none;
}

.faq-container {
    width: 100%;
}


.accordion-item {
    border-top: 1px solid var(--warm-grey);
    padding: 6px 0 0 0;
}


.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 38px 0 38px 0;
    cursor: pointer;
    user-select: none;
    transition: background 0.15s ease;
}

.accordion-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 110%;
    letter-spacing: 15%;
    text-transform: uppercase;
    color: var(--champagne);
    padding-right: 16px;
}

.accordion-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 600;
    color: var(--warm-grey);
    transition: transform 0.25s ease, color 0.2s;
    line-height: 1;
}

.accordion-icon.active {
    color: var(--ivory);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.1, 0.25, 1), padding 0.3s ease;
    padding: 0 0 0 0;
    color: var(--light-grey);
    line-height: 1.6;
}

.accordion-content.open {
    max-height: 400px;
    padding: 0 0 38px 0;
}

.accordion-content-inner {
    padding: 4px 0 0 0;
    font-size: 26px;
    line-height: 110%;
    color: var(--light-grey);
    font-weight: 200;
}

#request {
    padding-bottom: 48px;
}

.request_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.request_wrapper h2 {
    margin: 0 0 53px;
}

.request_wrapper .left {
    padding-right: 200px;
    display: flex;
    flex-direction: column;
}

.request_wrapper .socials {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    margin-top: auto;
}

.request_wrapper .socials span, .request_wrapper .socials a {
    font-weight: 600;
    font-size: 18px;
    line-height: 125%;
    letter-spacing: 15%;
    text-transform: uppercase;
}

.request_wrapper .socials span {
    color: var(--warm-grey);
}

.request_wrapper .socials a {
    display: block;
    color: var(--champagne);
    text-decoration: none;
}

.request_wrapper form .buttons {
    align-items: center;
    justify-content: space-between;
    align-items: flex-end;
}

.request_wrapper form .buttons p {
    color: var(--warm-grey);
    font-weight: 600;
    font-size: 18px;
    line-height: 125%;
    letter-spacing: 15%;
    text-transform: uppercase;
}

.footer-mobile {
    display: none;
}

footer .footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

footer .left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-right: 220px;
}

footer .left img {
    width: fit-content;
}

footer p.address {
    font-weight: 300;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: 7%;
    text-transform: uppercase;
    color: var(--warm-grey);
    margin-bottom: 175px;
}

footer .right {
    margin-top: 175px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

footer .menu_wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 48px;
    width: 100%;
}

footer .menu_wrapper .menu-col .menu-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 125%;
    letter-spacing: 15%;
    text-transform: uppercase;
    color: var(--champagne);
}

footer .menu_wrapper .menu-col ul {
    padding: 0;
    margin: 0;
    margin-top: 21px;
    list-style-type: none;
    list-style-position: inside;
    display: flex;
    flex-direction: column;
}

footer .menu_wrapper .menu-col ul li a {
    font-weight: 300;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 15%;
    text-transform: uppercase;
    color: var(--warm-grey);
    text-decoration: none;
}

footer .footer_bottom {
    border-top: 1px solid var(--warm-grey);
    margin-top: 32px;
    padding: 22px 0 66px;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 48px;
}

footer .footer_bottom span {
    font-weight: 200;
    font-size: 16px;
    line-height: 110%;
    letter-spacing: 0%;
    color: var(--warm-grey);
}

/* ===== COOKIE BANNER ===== */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #0A0E18A6;
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid var(--indigo, #0A0E18);
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
    visibility: hidden;
    backdrop-filter: blur(29px);
}
#cookie-banner.visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

/* Inner container */
.cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 32px 20px;
}

/* ===== MAIN ROW (3 columns on desktop) ===== */
.cookie-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding: 53px 0;
}

/* ---- Left: Privacy policy ---- */
.cookie-left {
    flex: 0.5 0 auto;
    min-width: 140px;
}
.cookie-left .privacy-link {
    font-weight: 400;
    font-size: 20px;
    line-height: 110.00000000000001%;
    letter-spacing: 10%;
    text-transform: uppercase;
    text-decoration: underline;
    color: var(--light-grey);

}
.cookie-left .privacy-link:hover {
    color: #4338ca;
    text-decoration: underline;
}
.cookie-left .privacy-link svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ---- Center: Logo + Text ---- */
.cookie-center {
    flex: 1 1 auto;
    text-align: center;
    padding: 0 10px;
}
.cookie-center .cookie-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 56px;
}
.cookie-center .cookie-logo svg {
    width: 52px;
    height: 52px;
    display: block;
}
.cookie-center .cookie-text {
    font-size: 22px;
    max-width: 685px;
    margin: 0 auto;
}
/* ---- Right: Buttons ---- */
.cookie-right {
    flex: 0.5 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 180px;
    justify-content: flex-end;
    flex-direction: column;
}

.cookie-right .btn {
    width: 100%;
}


/* ===== FOOTER: Centered logo ===== */
.cookie-footer {
    margin-top: 16px;
    padding-top: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 61px;
}
.cookie-footer .footer-logo svg {
    width: 36px;
    height: 36px;
    display: block;
    opacity: 0.6;
    transition: opacity 0.2s;
}
.cookie-footer .footer-logo:hover svg {
    opacity: 1;
}

/* ===== RESPONSIVE: Mobile ===== */
@media (max-width: 768px) {

    .cookie-main {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding: 84px 0 42px;
    }

    /* Left: Privacy policy — becomes second */
    .cookie-left {
        order: 2;
        text-align: center;
        min-width: unset;
    }
    .cookie-left .privacy-link {
        justify-content: center;
        font-size: 8px;
    }


    /* Center: Logo + Text — becomes first */
    .cookie-center {
        order: 1;
        padding: 0;
        min-width: unset;
        margin-bottom: 47px;
    }
    .cookie-center .cookie-logo svg {
        width: 48px;
        height: 48px;
    }
    .cookie-center .cookie-text {
        font-size: 10px;
        text-align: justify;
        max-width: 100%;
    }

    /* Right: Buttons — becomes third, stacked */
    .cookie-right {
        order: 3;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        min-width: unset;
        justify-content: center;
        margin-top: 64px;
    }
    .cookie-right .btn {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    /* Footer */
    .cookie-footer {
        margin-top: 14px;
        padding-top: 12px;
    }
    .cookie-footer .footer-logo svg {
        width: 32px;
        height: 32px;
    }
}

/* ===== BANNER ENTRY ANIMATION (additional) ===== */
#cookie-banner.visible .cookie-main,
#cookie-banner.visible .cookie-footer {
    animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
#cookie-banner.visible .cookie-footer {
    animation-delay: 0.08s;
    opacity: 0;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(12px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== UTILITY: hide banner completely ===== */
#cookie-banner.hidden-permanently {
    display: none !important;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #c4c4c4;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #a0a0a0;
}

/* ============================================================
                   POPUP OVERLAY
                ============================================================ */
#confirmationPopup {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

#confirmationPopup.active {
    opacity: 1;
    visibility: visible;
}


/* popup card */
.popup-card {
    position: relative;
    max-width: 100%;
    background: #FFFAF0CF;
    backdrop-filter: blur(25px);
    padding: 180px 40px;
    text-align: center;
    transform: scale(0.92) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    opacity: 0;
}

#confirmationPopup.active .popup-card {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.popup-card::after {
    content: "";
    background-image: url("img/boat.svg");
    display: block;
    width: 67px;
    height: 21px;
    position: absolute;
    right: 74px;
    top: 50%;
}


.popup-card h2 {
    font-size: 85px;
    color: var(--indigo);
    margin-bottom: 65px;
    margin-top: 0;
}

.popup-card .popup-message {
    font-size: 28px;
    color: #585858;
    margin: 0 auto;
    max-width: 735px;
    margin-bottom: 24px;
}

.popup-card .popup-socials {
    display: flex;
    margin: 0 auto;
    justify-content: center;
    gap: 40px;
    margin-top: 74px;
}

.popup-card .popup-socials a{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    font-weight: 400;
    font-size: 18px;
    line-height: 110%;
    letter-spacing: 10%;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--indigo);

}

.popup-card .popup-details {
    background: #f7fafc;
    border-radius: 16px;
    padding: 18px 20px;
    margin: 18px 0 24px;
    text-align: left;
    font-size: 0.9rem;
    color: #2d3748;
    line-height: 1.8;
}
.popup-card .popup-details strong {
    color: #0b1a33;
    font-weight: 600;
}

.popup-card .popup-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
}

.popup-card .btn-primary {
    padding: 14px 32px;
    background: #0b1a33;
    color: #ffffff;
    border: none;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
    width: 100%;
}
.popup-card .btn-primary:hover {
    background: #1a2f4e;
}
.popup-card .btn-primary:active {
    transform: scale(0.97);
}

.popup-card .btn-secondary {
    padding: 12px 32px;
    background: transparent;
    color: #4a5568;
    border: none;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s ease;
    width: 100%;
}
.popup-card .btn-secondary:hover {
    color: #0b1a33;
    text-decoration: underline;
}

/* close "x" */
.popup-close {
    position: absolute;
    top: 18px;
    right: 22px;
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    color: #a0aec0;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease;
}
.popup-close:hover {
    background: #f0f4f8;
    color: #2d3748;
}


@media (max-width: 1915px) and (min-width: 769px) {
    body {
        zoom: calc(50vw / 960px);
    }
}

@media (max-width: 320px) {
    body {
        zoom: calc(50vw / 160px);
    }
}

@media (max-width: 768px) {

    .no-scroll {
        overflow: hidden;
    }

    .wrapper {
        padding: 0 15px;
    }

    header {
        padding: 20px 0 0 0;
    }

    /* hide desktop menu */
    header .menu {
        display: none;
    }

    /* show hamburger */
    .hamburger {
        display: flex;
    }

    .mobile-menu a {
        font-size: 16px;
    }

    /* optional: adjust logo size on mobile */
    .logo img {
        height: 11px;
    }

    #hero {
        padding-top: 138px;
        background-size: cover;
        background-position: center;
    }

    #hero h1 {
        font-size: 40px;
        margin-bottom: 23px;
    }

    #hero .wrapper {
        grid-template-columns: 1fr;
    }

    #hero .left .links {
        display: none;
    }

    #hero .left p {
        font-size: 11px;
        margin-bottom: 31px;
        width: 70%;
    }

    .buttons {
        width: 100%;
        gap: 10px;
    }

    #hero .buttons {
        flex-direction: column;
        gap: 14px;
        width: 70%;
    }

    .buttons a, .buttons button {
        font-size: 10px;
        padding: 12px 24px;
        letter-spacing: 10%;
        width: 100%;
    }

    #hero .right {
        flex-direction: row;
        gap: 0;
        justify-content: space-between;
    }

    #hero .right p {
        font-size: 8px;
        text-align: left;
    }

    section {
        padding: 45px 0;
    }

    .icon_text {
        font-size: 8px;
        gap: 7px;
    }

    .icon_text:before {
        width: 6px;
        height: 7px;
    }

    h2 {
        font-size: 28px;
        margin: 20px 0;
    }

    p {
        font-size: 11px;
    }

    .position_info {
        grid-template-columns: 1fr;
        gap: 33px;
    }

    .position_links .icons {
        display: none;
    }

    #positioning .advantages {
        margin-top: 70px;
        flex-direction: column;
        border-top: 0;
        padding: 0 0 45px;
    }

    #positioning .advantages .adv {
        gap: 30px;

    }

    #positioning .advantages .adv:not(:last-of-type) {
        border-bottom: 1px solid var(--warm-grey);
        padding-bottom: 32px;
    }

    #positioning .advantages .adv p {
        font-size: 13px;
        color: var(--light-grey);
    }

    #positioning .advantages img {
        width: 40px;
        height: auto;
    }

    .independence {
        height: 164px;
        position: relative;
        background-position: center;
    }

    .independence:before {
        content: '';
        background: rgba(0, 0, 0, 0.67);
        position: absolute;
        width: 100%;
        height: 100%;
        display: block;
    }

    .independence .wrapper {
        gap: 14px;
        z-index: 2;
    }

    .independence:before {
        content: '';
        background: rgba(0, 0, 0, 0.67);
        position: absolute;
        width: 100%;
        height: 100%;
        display: block;
    }

    .independence span {
        font-size: 8px;
    }

    .independence span:nth-child(2) {
        gap: 14px;
    }

    .independence span:nth-child(2):before, .independence span:nth-child(2):after {
        width: 6px;
        height: 9px;
    }

    #why .cards {
        flex-direction: column;
        gap: 61px;
    }

    #why .cards .card {
        padding: 0;
    }

    #why .cards .card:not(:last-child)::after {
        display: none;
    }

    #why .cards .card .card_title {
        font-size: 10px;
        margin-bottom: 20px;
    }

    #why .cards .card p {
        font-size: 11px;
        min-height: unset;
    }

    #why .cards .card img {
        margin: 15px 0;
    }

    #why .cards .card a {
        font-size: 10px;
        width: 100%;
        text-align: right;
        color: var(--champagne);
    }

    #what .icon_text {
        position: relative;
    }

    #what h2 {
        position: relative;
        width: 100%;
    }

    .slide-content {
        display: flex;
        min-height: 400px;
        flex-direction: column;
    }

    .slide-left,
    .slide-right {
        width: 100%;
    }

    .slide-left {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding-right: 0;
        padding-top: 19px;
        order: 1;
    }

    .slide-bottom {
        flex-direction: column;
        align-items: center;
        margin-bottom: 14px;
    }

    .slide-info {
        max-width: 100%;
    }

    .slide-label {
        margin-bottom: 12px;
        font-size: 8px;
        text-align: center;
    }

    .slide-info h3 {
        margin-bottom: 15px;
        font-size: 24px;
        line-height: 90%;
        text-align: center;
    }

    .slide-info p {
        font-size: 11px;
        text-align: center;
    }

    .slide-counter {

        font-size: 7px;

    }

    .swiper-pagination {
        position: relative !important;
        left: unset !important;
        right: unset !important;
        bottom: unset !important;
        display: flex;
        gap: 8px;
        width: 100% !important;
        padding: 0 40px;

    }

    .swiper-pagination-bullet {
        flex: 1;
        height: 1px !important;
        border-radius: 0 !important;
        background: var(--warm-grey) !important;
        margin: 0 !important;
        opacity: 1;
    }

    .swiper-pagination-bullet-active {
        background: var(--champagne) !important;
        height: 3px !important;
    }

    /* стрелки */
    .slider-nav {
        top: 370px;
    }

    .slider-prev {
        left: 0;
    }

    .slider-next {
        right: 10px;
    }

    .request .wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .request .wrapper .buttons {
        order: 2;
    }

    .request .wrapper .buttons a, .request .wrapper .buttons button {
        font-size: 8px;
        padding: 12px 12px;
    }

    .independent {
        justify-content: center;
        gap: 14px;
    }

    .independent span {
        font-size: 8px;
    }

    .independent span:nth-child(2) {
        gap: 14px;
    }

    .independent span:nth-child(2):before, .independent span:nth-child(2):after {
        width: 6px;
        height: 9px;
    }

    .process_how {
        gap: 37px;
        margin-top: 21px;
    }

    #process .first_row {
        flex-direction: column;
        gap: 21px;
    }

    #process .first_row .cta p {
        font-size: 11px;
    }

    #process .first_row .cta .buttons {
        display: none;
    }

    .columns {
        flex-direction: column;
        gap: 0;
    }

    .column {
        min-height: unset;
        display: grid;
        grid-template-columns: 60px 1fr;
        grid-template-rows: auto auto;
    }

    .line-wrapper {
        grid-row: 3 / 4;
        grid-column: 1 / 3;
        width: 100%;
        height: 1px;
        margin: 16px 0 18px 0;
    }

    .column.active .line {
        height: 2px;
    }

    .number {
        margin-right: 30px;
        grid-row: 1 / 3;
        grid-column: 1 / 2;
        align-self: auto;
        line-height: 1;
    }

    .title {
        font-size: 12px;
        margin-bottom: 7px;
        grid-row: 1 / 2;
        grid-column: 2 / 3;
        text-transform: uppercase;
    }

    .text {
        font-size: 11px;
        grid-row: 2 / 3;
        grid-column: 2 / 3;
    }

    .process_how > .buttons {
        display: flex;
    }

    #coverage {
        display: flex;
        flex-direction: column;
    }

    #coverage .wrapper:first-of-type {
        order: 0;
    }

    #coverage .wrapper:nth-of-type(2) {
        order: 2;
    }

    #coverage p {
        text-align: center;
        font-size: 11px;
        color: var(--warm-grey);
        width: 70%;
        margin: 0 auto;
    }

    .regions-map__image {
        position: relative;
        top: unset;
        order: 1;
    }

    .regions-map__list {
        width: 100%;
        margin: 24px 0 26px;
    }

    .regions-map__list li {
        text-align: center;
        font-size: 16px;
        padding: 17px 0;
    }

    .map-point {
        zoom: 60%;
    }

    #expertise {
        background-size: 150%;
        background-repeat: no-repeat;
        background-position: center top;
    }

    .expertise_list {
        grid-template-columns: 1fr;
        gap: 101px;
    }

    .expertise_list .left ul {
        margin-top: 12px;
    }

    .expertise_list ul li {
        gap: 12px;
        font-size: 10px;
    }

    .expertise_list ul li img {
        width: 12px;
    }

    .expertise_list ul {
        margin-top: 32px;
    }

    .expertise_list .right {
        padding-top: 0;
    }

    .positioning_wrapper {
        grid-template-columns: 1fr;
    }

    .positioning_wrapper .left {
        padding: unset;
    }

    .positioning_wrapper .left p {
        font-size: 11px;
    }

    .positioning_wrapper .right p {
        font-size: 10px;
    }

    .positioning_wrapper .right ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .positioning_wrapper .right ul li {
        font-size: 10px;
        gap: 10px;
    }

    .positioning_wrapper .right ul li:before {
        width: 15px;
        height: 15px;

    }

    .trusted_wrapper {
        flex-direction: column;
        gap: 64px;
        align-items: flex-start;
    }

    .trusted_text, .trusted_wrapper .trusted_list {
        width: 100%;
    }

    .trusted_wrapper .trusted_list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        padding: 0;
    }

    .trusted_wrapper .trusted_list li {
        gap: 12px;
    }

    .trusted_wrapper .trusted_list li img {
        width: 16px;
    }

    .trusted_wrapper .trusted_list li p {
        font-size: 8px;
    }

    .trusted_text p {
        font-size: 11px;
    }

    .testimonials_list, .logos {
        display: none;
    }

    #form .wrapper {
        display: flex;
        flex-direction: column-reverse;
        gap: 0;
    }

    #form .contacts {
        display: none;
    }

    #form .buttons button {
        font-size: 8px;
        padding: 12px;
    }

    .form_description .title {
        font-size: 28px;
        margin-bottom: 27px;
        text-transform: none;
    }

    .form_description .text_icon {
        margin-bottom: 47px;
    }

    .form_description .text_icon img {
        display: none;
    }

    .form_description .text_icon p {
        font-size: 11px;
        width: 100%;
    }

    .field-group input, .field-group select {
        font-size: 10px;
    }

    .form-grid {
        gap: 23px 10px;
        margin-bottom: 36px;
    }

    .faq-container {
        margin-top: 18px;
    }

    .accordion-header {
        padding: 14px 0;
    }

    .accordion-title {
        font-size: 10px;
    }

    .accordion-icon {
        width: 8px;
        height: 8px;
        font-size: 12px;
    }

    .accordion-content.open {
        padding: 0 0 14px 0;
    }

    .accordion-content-inner {
        font-size: 11px;
    }

    .request_wrapper {
        grid-template-columns: 1fr;
        gap: 33px;
    }

    .request_wrapper .left {
        padding: 0;
    }

    .request_wrapper h2 {
        margin-bottom: 27px;
    }

    .request_wrapper .socials {
        display: none;
    }

    .request_wrapper form .buttons p {
        display: none;
    }

    footer {
        margin-top: 90px;
    }

    .footer-desktop {
        display: none;
    }

    .footer-mobile {
        display: block;
    }

    footer .footer-top {
        grid-template-columns: 1fr;
    }

    footer .left img {
        width: 120px;
    }

    footer .left {
        align-items: center;
        padding: 0;
    }

    footer .right {
        margin-top: 30px;
        border-top: 1px solid var(--warm-grey, #767773);
        padding: 25px 0;
    }

    footer .menu_wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    footer .menu_wrapper .menu-col .menu-title {
        font-size: 8px;
    }

    footer .menu_wrapper .menu-col ul {
        margin-top: 10px;
    }

    footer .menu_wrapper .menu-col ul li {
        line-height: 0.5;
    }

    footer .menu_wrapper .menu-col ul li a {
        font-size: 8px;
    }
    footer .socials {
        display: flex;
        justify-content: space-between;
        gap: 0;
        flex-direction: column;
    }

    footer .socials span, footer .socials a {
        font-weight: 600;
        font-size: 8px;
        line-height: 125%;
        letter-spacing: 15%;
        text-transform: uppercase;
    }

    footer .socials span {
        color: var(--warm-grey);
    }

    footer .socials a {
        display: block;
        color: var(--champagne);
        text-decoration: none;
    }
    footer p.address {
        font-size: 8px;
        margin-bottom: 0;
        margin-top: 38px;
    }

    footer .footer_bottom {
        padding: 6px 0 14px;
    }

    footer .footer_bottom span {
        font-size: 6px;
    }
    #confirmationPopup {
        padding: 0;
    }

    .popup-card {
        padding: 86px 24px 38px
    }

    .popup-card h2 {
        font-size:28px;
        margin-bottom: 36px;
    }

    .popup-card .popup-message {
        font-size: 11px;
    }

    .popup-card .popup-socials {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .popup-card .popup-socials a {
        font-size: 6px;
    }

    .popup-card .popup-socials a img {
        width: 12px;
    }

    .popup-card::after {
        top: 38px;
        right: 50%;
        transform: translateX(50%);
        width: 30px;
        height: 9px;
        background-size: contain;
        background-repeat: no-repeat;
    }
}

