/*
CSS navigation:
1. global
2. header
3. hero section
4. about section
5. advantages section
6. stages section
7. categories section
8. instructors section
9. documents section
10. reviews section
11. final CTA section
12. footer
13. request form
*/

/*global*/
:root {
    --color-dark: #101010;
    --color-text: #111111;
    --color-muted: #505050;
    --color-white: #ffffff;
    ---color-bg: #fbfaf8;
    --color-accent: #ff8a1d;
    --accent-gradient: linear-gradient(90deg, #f09819 0%, #ff9358 100%);
    --container: 1170px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    width: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    width: 100%;
    min-width: 0;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-text);
    background-color: var(---color-bg);
    overflow-x: hidden;
}

html.page-scroll-locked,
body.page-scroll-locked {
    overflow: hidden;
}

body.page-scroll-locked {
    position: fixed;
    right: 0;
    left: 0;
    width: 100%;
}

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

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

button {
    font: inherit;
}

li {
    list-style: none;
}

.container {
    max-width: var(--container);
    width: 100%;
    margin: 0 auto;
    margin-inline: auto;
    padding: 0 15px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 252px;
    min-height: 62px;
    padding: 14px 28px;
    border: 2px solid var(--color-accent);
    background-color: transparent;
    background-image: var(--accent-gradient);
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 0 100%;
    color: #222222;
    font-size: 14px;
    line-height: 1;
    text-align: center;
    transition: color 0.25s ease, background-size 0.25s ease, border-color 0.25s ease;
}

.button:hover,
.button:focus-visible {
    background-size: 100% 100%;
    color: var(--color-white);
}
/*global*/

/*header*/
.site-header {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(16, 16, 16, 0.72);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-header__logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    padding: 9px 0;
}

.site-header__logo img {
    width: 138px;
    height: 45px;
    object-fit: contain;
}

.site-header__nav {
    display: flex;
    align-items: center;
    gap: 56px;
}

.site-header__nav > li {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.64);
    font-size: 14px;
    line-height: 1;
    transition: color 0.25s ease;
    padding: 25px 0;
}

.site-header__nav > li::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 17px;
    left: 0;
    height: 3px;
    background-color: var(--color-accent);
    opacity: 0;
    transform: scaleX(0.5);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.site-header__nav > li:hover,
.site-header__nav > li:focus-within,
.site-header__nav > li.current-menu-item {
    color: var(--color-accent);
}

.site-header__nav > li:hover::after,
.site-header__nav > li:focus-within::after,
.site-header__nav > li.current-menu-item::after {
    opacity: 1;
    transform: scaleX(1);
}

.site-header__toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background-color: transparent;
    cursor: pointer;
}

.site-header__toggle span {
    display: block;
    width: 26px;
    height: 2px;
    margin: 6px auto;
    background-color: var(--color-white);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-header--open .site-header__toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.site-header--open .site-header__toggle span:nth-child(2) {
    opacity: 0;
}

.site-header--open .site-header__toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
/*header*/

/*hero section*/
.hero {
    position: relative;
    width: 100%;
    max-width: 1920px;
    margin-inline: auto;
    overflow: hidden;
}

.hero__track {
    position: relative;
    z-index: 1;
    display: flex;
    width: max-content;
    height: 100%;
    transition: transform 0.8s ease;
    will-change: transform;
}

.hero__slide {
    position: relative;
    flex: 0 0 1920px;
    width: 1920px;
    height: 869px;
    background-image: var(--hero-bg);
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 1920px 869px;
}

.hero__slide--active {
    opacity: 1;
    visibility: visible;
}

.hero__content-track {
    position: absolute;
    z-index: 2;
    inset: 0;
    display: flex;
    height: 100%;
    transition: transform 0.8s ease;
    will-change: transform;
}

.hero__content-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
}

.hero__inner {
    position: relative;
    height: 100%;
}

.hero__content {
    width: min(100%, 540px);
    padding-top: 174px;
}

.hero__content--right {
    width: min(100%, 604px);
    margin-left: auto;
    padding-top: 176px;
    text-align: right;
}

.hero__title {
    margin: 0;
    font-size: 70px;
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: 0;
}

.hero__subtitle {
    margin: 46px 0 88px;
    color: var(--color-muted);
    font-size: 24px;
    line-height: 1.2;
}

.hero__content--right .hero__subtitle {
    margin-top: 38px;
    margin-bottom: 88px;
}
/*hero section*/

/*about section*/
.about {
    background-color: #000000;
    color: var(--color-white);
}

.about__inner {
    position: relative;
    padding-top: 54px;
    padding-bottom: 104px;
}

.about__logo {
    position: absolute;
    bottom: 75px;
    left: 0;
    object-fit: contain;
    opacity: 0.5;
}

.about__content {
    padding-left: 180px;
}

.about__title {
    margin: 0;
    color: #f2f2f2;
    font-size: clamp(58px, 4vw, 76px);
    font-weight: 400;
    line-height: 1.1;
    text-align: right;
}

.about__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(48px, 6vw, 96px);
    margin-top: 78px;
}

.about__item {
    min-width: 0;
    text-align: center;
}

.about__item:nth-child(2) {
    margin-top: 46px;
}

.about__icon {
    width: 94px;
    height: 94px;
    margin: 0 auto 9px;
    object-fit: contain;
}

.about__item-title {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.about__text {
    max-width: 160px;
    margin: 8px auto 0;
    color: #e5e5e5;
    font-size: 16px;
    line-height: 1.5;
}
/*about section*/

/*advantages section*/
.advantages__inner {
    padding-top: 62px;
    padding-bottom: 96px;
}

.advantages__title {
    margin: 0;
    font-size: clamp(58px, 4vw, 76px);
    font-weight: 400;
    line-height: 0.95;
}

.advantages__scheme {
    position: relative;
    margin-top: 104px;
}

.advantages__rails {
    position: absolute;
    z-index: 0;
    left: 0;
    width: 100%;
    overflow: visible;
    pointer-events: none;
}

.advantages__rails path {
    fill: none;
    stroke: #505050;
    stroke-width: 20px;
    vector-effect: non-scaling-stroke;
}

.advantages__list {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 30px;
    row-gap: 320px;
}

.advantages__card {
    position: relative;
    min-width: 0;
    min-height: 206px;
    padding: 43px 30px 28px 60px;
    border: 2px solid transparent;
    background-color: #000000;
    background-image: var(--advantage-bg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    box-shadow:
        0 8px 18px rgba(0, 0, 0, 0.42),
        0 2px 5px rgba(0, 0, 0, 0.28);
    color: #d7d7d7;
    cursor: default;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.advantages__card:nth-child(1) {
    --advantage-bg: url("../img/advantages/advantage-1.png");
}

.advantages__card:nth-child(2) {
    --advantage-bg: url("../img/advantages/advantage-2.png");
}

.advantages__card:nth-child(3) {
    --advantage-bg: url("../img/advantages/advantage-3.png");
}

.advantages__card:nth-child(4) {
    --advantage-bg: url("../img/advantages/advantage-4.png");
}

.advantages__card:nth-child(5) {
    --advantage-bg: url("../img/advantages/advantage-5.png");
}

.advantages__card:nth-child(6) {
    --advantage-bg: url("../img/advantages/advantage-6.png");
}

.advantages__card:hover,
.advantages__card:focus-visible,
.advantages__card--active {
    border-color: var(--color-accent);
    box-shadow:
        0 11px 24px rgba(0, 0, 0, 0.5),
        0 3px 7px rgba(0, 0, 0, 0.32);
}

.advantages__card-title {
    position: relative;
    margin: 0;
    color: #ff693a;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.2;
}

.advantages__card-icon {
    position: absolute;
    top: 0;
    right: calc(100% + 12px);
    width: 30px;
    height: 23px;
    filter: grayscale(1) brightness(0.72);
    transition: filter 0.25s ease;
}

.advantages__card:hover .advantages__card-icon,
.advantages__card:focus-visible .advantages__card-icon,
.advantages__card--active .advantages__card-icon {
    filter: none;
}

.advantages__card-text {
    max-width: 245px;
    margin-top: 18px;
    color: #d7d7d7;
    font-size: 14px;
    line-height: 1.55;
}

.advantages__arm {
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    width: 220px;
    height: 220px;
    max-width: none;
    pointer-events: none;
    opacity: 0;
    filter: drop-shadow(10px 12px 8px rgba(0, 0, 0, 0.4));
    will-change: transform;
    transition: opacity 0.2s ease;
}

.advantages--ready .advantages__arm {
    opacity: 1;
}
/*advantages section*/

/*stages section*/
.stages {
    position: relative;
    overflow: hidden;
}

.stages::before {
    content: "";
    position: absolute;
    z-index: 0;
    bottom: -60px;
    left: 50%;
    width: 1992px;
    height: 699px;
    background-image: url("../img/stages/city-bg.png");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 1992px 699px;
    transform: translateX(-50%);
    pointer-events: none;
}

.stages__inner {
    position: relative;
    z-index: 1;
    padding-top: 117px;
}

.stages__title {
    margin: 0;
    font-size: clamp(58px, 4vw, 76px);
    font-weight: 400;
    line-height: 1;
    text-align: right;
}

.stages__scroller {
    position: relative;
    margin-top: clamp(280px, 18vw, 345px);
    border: 2px solid #f09819;
    background-color: #050505;
}

.stages__viewport {
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.stages__viewport:focus-visible {
    outline: 2px solid #ff9358;
    outline-offset: 4px;
}

.stages__viewport::-webkit-scrollbar {
    display: none;
}

.stages__list {
    display: flex;
    gap: 3px;
    width: max-content;
    padding: 3px;
}

.stages__item {
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr);
    flex: 0 0 360px;
    padding: 24px 24px 24px 34px;
    background-color: var(---color-bg);
}

.stages__icon {
    width: 100px;
    max-height: 115px;
    object-fit: contain;
}

.stages__item-title {
    max-width: 125px;
    width: 100%;
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.45;
}

.stages__scrollbar {
    position: relative;
    height: 28px;
    margin: 0 3px 3px;
    overflow: hidden;
    background-color: #050505;
    touch-action: none;
}

.stages__scrollbar-thumb {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 40%;
    background-image: var(--accent-gradient);
    cursor: grab;
    transform: translateX(0);
    will-change: width, transform;
}

.stages__scrollbar-thumb:active {
    cursor: grabbing;
}
/*stages section*/

/*categories section*/
.categories {
    background-color: #000000;
    color: var(--color-white);
}

.categories__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 450px;
    gap: clamp(54px, 7vw, 100px);
    align-items: start;
    padding-top: 96px;
    padding-bottom: 96px;
}

.categories__title {
    margin: 0;
    color: #f2f2f2;
    font-size: clamp(58px, 4vw, 76px);
    font-weight: 400;
    line-height: 1;
}

.categories__description {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    max-width: 540px;
    margin-top: 38px;
    color: #e4e4e4;
    font-size: 34px;
    line-height: 1.1;
}

.categories__description-icon {
    width: 36px;
    margin-top: 4px;
}

.categories__tabs {
    display: grid;
    grid-template-columns: repeat(4, 100px);
    gap: 20px;
    width: max-content;
    margin-top: 258px;
}

.categories__tab {
    position: relative;
    display: grid;
    place-items: center;
    width: 100px;
    aspect-ratio: 1;
    padding: 0;
    border: 3px solid #686868;
    background-color: transparent;
    color: #e8e8e8;
    cursor: pointer;
    opacity: 0.46;
    transition: border-color 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.categories__tab:hover,
.categories__tab:focus-visible,
.categories__tab--active {
    border-color: #f2f2f2;
    opacity: 1;
}

.categories__tab:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 5px;
}

.categories__tab:active {
    transform: scale(0.97);
}

.categories__tab-letter {
    font-size: 70px;
    font-weight: 400;
    line-height: 1;
}

.categories__tab-badge,
.categories__card-badge {
    position: absolute;
    z-index: 1;
    display: grid;
    place-items: center;
    top: -9px;
    right: -10px;
    width: 45px;
    height: 45px;
    background-color: #8b4f1d;
    color: #090909;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
}

.categories__tab-badge--image {
    padding: 2px;
    object-fit: contain;
    background-color: #f09819;
}

.categories__card {
    --category-bg: url("../img/categories/category-b-mkpp.png");
    display: flex;
    flex-direction: column;
    width: 450px;
    min-height: 600px;
    margin-top: 170px;
    padding: 34px 48px 33px;
    background-color: #f4f2f1;
    background-image: var(--category-bg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: #444444;
    outline: none;
}

.categories__card:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 5px;
}

.categories__card-heading {
    display: flex;
    align-items: center;
}

.categories__card-category {
    position: relative;
    display: grid;
    place-items: center;
    flex: 0 0 100px;
    width: 100px;
    height: 100px;
    border: 3px solid #202020;
    color: #111111;
}

.categories__card-letter {
    font-size: 70px;
    font-weight: 400;
    line-height: 1;
}

.categories__card-badge {
    background-color: #f09819;
}

.categories__card-badge[hidden] {
    display: none;
}

.categories__card-badge img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.categories__price {
    display: flex;
    align-items: baseline;
    margin-left: 12px;
    white-space: nowrap;
}

.categories__price-value {
    color: #ff693a;
    font-size: 56px;
    font-weight: 400;
    line-height: 1;
}

.categories__price-currency {
    color: #111111;
    font-size: 34px;
    line-height: 1;
}

.categories__program-title {
    margin-top: 54px;
    color: #444444;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.2;
}

.categories__program {
    margin-top: 24px;
    color: #a4a4a4;
    font-size: 14px;
    line-height: 1.35;
}

.categories__program li {
    position: relative;
    padding-left: 13px;
}

.categories__program li::before {
    content: "+";
    position: absolute;
    top: 0;
    left: 0;
}

.categories__button {
    align-self: flex-start;
    margin-top: auto;
    color: #222222;
}
/*categories section*/

/*instructors section*/
.instructors {
    overflow: hidden;
}

.instructors__inner {
    padding-top: 90px;
    padding-bottom: 50px;
}

.instructors__heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 510px);
    gap: 60px;
    align-items: start;
}

.instructors__title {
    margin: 0;
    font-size: clamp(58px, 4vw, 76px);
    font-weight: 400;
    line-height: 0.95;
}

.instructors__description {
    justify-self: end;
    max-width: 460px;
    color: #4f4f4f;
    font-size: 14px;
    line-height: 1.55;
    text-align: right;
}

.instructors__slider-shell {
    margin-top: 74px;
}

.instructors__slider {
    width: 310px;
    overflow: visible;
}

.instructors__slider .swiper-wrapper {
    align-items: flex-start;
}

.instructors__slider .swiper-slide {
    z-index: 1;
    height: auto;
    transition: margin-right 0.65s ease, margin-left 0.65s ease;
}

.instructors__slider .swiper-slide-active {
    z-index: 2;
}

@media screen and (min-width: 1024px) {
    .instructors__slider .swiper-slide:first-child:not(.swiper-slide-prev):not(.swiper-slide-active) {
        margin-right: 20px !important;
    }

    .instructors__slider .swiper-slide:last-child:not(.swiper-slide-next):not(.swiper-slide-active) {
        margin-left: 30px;
    }
}

.instructor-card {
    width: 310px;
    border: 2px solid transparent;
    background-color: #000000;
    color: #eeeeee;
    transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.55s ease;
}

.instructors__slider .swiper-slide-active .instructor-card {
    border-color: var(--color-accent);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
    transform: translateY(30px);
}

.instructor-card__photo {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.instructor-card__content {
    display: flex;
    flex-direction: column;
    min-height: 165px;
    padding: 8px 30px 25px;
}

.instructor-card__name {
    margin: 0;
    color: #ff693a;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.25;
}

.instructor-card__details {
    margin-top: 7px;
    font-size: 14px;
    line-height: 1.35;
}

.instructor-card__details div {
    display: flex;
    flex-wrap: wrap;
    gap: 0 5px;
}

.instructor-card__details dt,
.instructor-card__details dd {
    margin: 0;
}

.instructor-card__button {
    align-self: flex-start;
    width: 160px;
    min-width: 160px;
    min-height: 34px;
    margin-top: auto;
    padding: 6px 16px;
    color: #f2f2f2;
    font-size: 14px;
}

.instructor-card__button:hover,
.instructor-card__button:focus-visible {
    color: #111111;
}

.instructors__navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 88px;
}

.slider-arrow {
    position: relative;
    width: 65px;
    height: 49px;
    padding: 0;
    border: 0;
    background-color: transparent;
    cursor: pointer;
    transition: opacity 0.25s ease;
}

.slider-arrow__icon {
    width: 65px;
    height: 49px;
    overflow: visible;
}

.slider-arrow__shape {
    --indicator-idle: #ffffff;
    fill: var(--indicator-idle);
    stroke: #111111;
    stroke-width: 3px;
    stroke-linejoin: miter;
}

.slider-arrow--light .slider-arrow__shape {
    --indicator-idle: transparent;
    stroke: #ffffff;
}

.slider-arrow--prev {
    transform: rotate(180deg);
}

.slider-arrow:not(.swiper-button-disabled):hover .slider-arrow__shape,
.slider-arrow:not(.swiper-button-disabled):focus-visible .slider-arrow__shape {
    animation: indicator-fill 0.9s steps(1, end) infinite;
}

.slider-arrow.swiper-button-disabled {
    cursor: default;
    opacity: 0.35;
}

.slider-arrow:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 5px;
}

@keyframes indicator-fill {
    0%,
    49% {
        fill: var(--indicator-fill);
    }

    50%,
    100% {
        fill: var(--indicator-idle);
    }
}

@media (prefers-reduced-motion: reduce) {
    .slider-arrow:not(.swiper-button-disabled):hover .slider-arrow__shape,
    .slider-arrow:not(.swiper-button-disabled):focus-visible .slider-arrow__shape {
        animation: none;
        fill: var(--indicator-fill);
    }
}
/*instructors section*/

/*documents section*/
.documents {
    position: relative;
    overflow: hidden;
}

.documents::before {
    content: "";
    position: absolute;
    z-index: 0;
    bottom: 0;
    left: 55%;
    width: 2112px;
    height: 446px;
    background-image: url("../img/documents/documents-bg.png");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 2112px 446px;
    transform: translateX(-50%);
    pointer-events: none;
}

.documents__inner {
    position: relative;
    z-index: 1;
    padding-top: 70px;
    padding-bottom: 130px;
}

.documents__title {
    margin: 0;
    color: #f2f2f2;
    font-size: clamp(58px, 4vw, 76px);
    font-weight: 400;
    line-height: 1;
    text-align: right;
}

.documents__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 72px;
    margin-top: 74px;
}

.documents__item {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    min-width: 0;
}

.documents__icon {
    width: 100px;
    max-height: 129px;
    object-fit: contain;
}

.documents__text {
    color: #ff693a;
    font-size: 22px;
    line-height: 1.35;
}
/*documents section*/

/*reviews section*/
.reviews {
    position: relative;
    min-height: 900px;
    overflow: hidden;
    background-color: #000000;
}

.reviews__background {
    position: absolute;
    z-index: 0;
    bottom: -75px;
    left: 41%;
    max-width: none;
    opacity: 0.5;
    transform: translateX(-50%);
    pointer-events: none;
}

.reviews__inner {
    position: relative;
    z-index: 1;
    padding-bottom: 120px;
}

.reviews__slider {
    width: 332px;
    overflow: visible;
}

.reviews__slider .swiper-wrapper {
    align-items: center;
}

.reviews__slider .swiper-slide {
    z-index: 1;
    height: auto;
}

.reviews__slider .swiper-slide-prev,
.reviews__slider .swiper-slide-next {
    z-index: 2;
}

.reviews__slider .swiper-slide-active {
    z-index: 3;
}

.reviews__image {
    max-width: 332px;
    width: 100%;
    height: max-content;
    opacity: 0.35;
    transform: scale(0.73);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reviews__slider .swiper-slide-active .reviews__image {
    opacity: 1;
    transform: scale(1);
}

.reviews__navigation {
    position: absolute;
    z-index: 4;
    top: 300px;
    right: 90px;
    left: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}

.reviews__arrow {
    pointer-events: auto;
}
/*reviews section*/

/*final CTA section*/
.final-cta {
    position: relative;
    width: 100%;
    max-width: 1920px;
    height: 869px;
    margin-inline: auto;
    overflow: hidden;
    background-color: #eeeeee;
    background-image: url("../img/ui/hero-slide-1.jpg");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 1920px 869px;
}

.final-cta__inner {
    height: 100%;
}

.final-cta__content {
    width: min(100%, 540px);
    padding-top: 174px;
}

.final-cta__title {
    font-size: 70px;
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: 0;
}

.final-cta__subtitle {
    margin: 46px 0 88px;
    color: var(--color-muted);
    font-size: 24px;
    line-height: 1.2;
}
/*final CTA section*/

/*footer*/
.site-footer {
    position: relative;
    z-index: 3;
    min-height: 116px;
    margin-top: -116px;
    color: rgba(255, 255, 255, 0.72);
}

.site-footer__inner {
    padding-bottom: 12px;
}

.site-footer__nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 36px;
    align-items: center;
    min-height: 67px;
}

.site-footer__links {
    display: flex;
    align-items: center;
    gap: 44px;
    font-size: 12px;
    line-height: 1.2;
}

.site-footer__links--right {
    justify-content: flex-end;
}

.site-footer__links a,
.site-footer__bottom a {
    transition: color 0.25s ease;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible,
.site-footer__bottom a:hover,
.site-footer__bottom a:focus-visible {
    color: var(--color-accent);
}

.site-footer__logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.site-footer__logo img {
    width: 138px;
    object-fit: contain;
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--color-accent);
    font-size: 11px;
    line-height: 1.2;
}
/*footer*/

/*request form*/
.request-modal[hidden] {
    display: none;
}

.request-modal {
    position: fixed;
    z-index: 100;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 24px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.request-modal--open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.request-modal__backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.76);
    backdrop-filter: blur(4px);
}

.request-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 700px);
    max-height: calc(100dvh - 48px);
    padding: 48px;
    overflow-y: auto;
    border: 1px solid var(--color-accent);
    border-radius: 4px;
    outline: 0;
    background-color: #101010;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
    color: var(--color-white);
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.request-modal--open .request-modal__dialog {
    opacity: 1;
    transform: translateY(0);
}

.request-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    background-color: transparent;
    color: rgba(255, 255, 255, 0.72);
    font-size: 38px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
}

.request-modal__close:hover,
.request-modal__close:focus-visible {
    color: var(--color-accent);
    transform: rotate(90deg);
}

.request-modal__close:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

.request-modal__heading {
    max-width: 560px;
    padding-right: 34px;
}

.request-modal__eyebrow {
    color: var(--color-accent);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.request-modal__title {
    margin-top: 8px;
    font-size: 42px;
    font-weight: 400;
    line-height: 1.05;
}

.request-modal__description {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 15px;
    line-height: 1.5;
}

.request-form {
    margin-top: 34px;
}

.request-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 20px;
}

.request-field {
    min-width: 0;
}

.request-field--wide {
    grid-column: 1 / -1;
}

.request-field__label {
    display: inline-flex;
    gap: 4px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 13px;
    line-height: 1.2;
}

.request-field__required {
    color: var(--color-accent);
}

.request-field__control {
    width: 100%;
    min-height: 52px;
    padding: 12px 14px;
    border: 1px solid #565656;
    border-radius: 2px;
    outline: 0;
    background-color: #181818;
    color: var(--color-white);
    font: inherit;
    font-size: 15px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.request-field__control::placeholder {
    color: rgba(255, 255, 255, 0.34);
}

.request-field__control:hover {
    border-color: #7c7c7c;
}

.request-field__control:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(255, 138, 29, 0.16);
    background-color: #1d1d1d;
}

.request-field--invalid .request-field__control {
    border-color: #ff655b;
    box-shadow: 0 0 0 3px rgba(255, 101, 91, 0.12);
}

.request-field__hint,
.request-field__error {
    min-height: 17px;
    margin-top: 5px;
    font-size: 11px;
    line-height: 1.35;
}

.request-field__hint {
    color: rgba(255, 255, 255, 0.42);
}

.request-field__error {
    color: #ff8a82;
}

.request-field--wide .request-field__error {
    margin-top: 0;
}

.request-field--consent {
    margin-top: 20px;
}

.request-consent {
    position: relative;
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    cursor: pointer;
}

.request-consent__control {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.request-consent__mark {
    position: relative;
    display: block;
    width: 22px;
    height: 22px;
    border: 1px solid #686868;
    background-color: #181818;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.request-consent__mark::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 7px;
    width: 5px;
    height: 9px;
    border-right: 2px solid #111111;
    border-bottom: 2px solid #111111;
    opacity: 0;
    transform: rotate(45deg) scale(0.7);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.request-consent__control:checked + .request-consent__mark {
    border-color: var(--color-accent);
    background-color: var(--color-accent);
}

.request-consent__control:checked + .request-consent__mark::after {
    opacity: 1;
    transform: rotate(45deg) scale(1);
}

.request-consent__control:focus-visible + .request-consent__mark {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(255, 138, 29, 0.2);
}

.request-field--invalid .request-consent__mark {
    border-color: #ff655b;
    box-shadow: 0 0 0 3px rgba(255, 101, 91, 0.12);
}

.request-consent__text {
    color: rgba(255, 255, 255, 0.66);
    font-size: 12px;
    line-height: 1.45;
}

.request-consent__text a {
    color: var(--color-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.request-consent__text a:hover,
.request-consent__text a:focus-visible {
    color: #ffad61;
}

.request-form__honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.request-form__footer {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 28px;
}

.request-form__submit {
    flex: 0 0 auto;
    color: var(--color-white);
    cursor: pointer;
}

.request-form__status {
    min-height: 20px;
    font-size: 12px;
    line-height: 1.4;
}

.request-form__status--error {
    color: #ff8a82;
}

.request-form__status--success {
    color: #9ed99a;
}

@media (prefers-reduced-motion: reduce) {
    .request-modal,
    .request-modal__dialog,
    .request-modal__close {
        transition: none;
    }
}
/*request form*/
