/* fonts */
@font-face {
    font-family: "General Sans";
    src: url("../assets/fonts/GeneralSans-Light.woff2") format("woff2");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "General Sans";
    src: url("../assets/fonts/GeneralSans-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "General Sans";
    src: url("../assets/fonts/GeneralSans-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "General Sans";
    src: url("../assets/fonts/GeneralSans-Semibold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "General Sans";
    src: url("../assets/fonts/GeneralSans-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* normalize */
/* ===== RESET / NORMALIZE ===== */

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

* {
    margin: 0;
}

html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
}

body {
    min-height: 100vh;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

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

ul,
ol {
    list-style: none;
    padding: 0;
}

/* убирает проблемы с переносами */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

/* root stacking context */
#root,
#__next {
    isolation: isolate;
}

/* site */
:root {
    --bg-primary: #050505;
    --color-primary: #f5f5f5;
    --bg-secondary: #f5f5f5;
    --color-secondary: #fff;
    --bg-accent: #79c001;
    --color-accent: #79c001;
    --bg-third: #374b15;
    --shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    --header-height: 96px;
}

@media screen and (min-width: 768px) {
    :root {
        --header-height: 112px;
    }
}

html {
    color-scheme: dark;
    scroll-padding-top: calc(var(--header-height) + 16px);
}

body,
html {
    font-family: "General Sans", sans-serif;
    font-weight: 400;
    background:
        radial-gradient(circle at 75% 35%, rgba(255, 255, 255, 0.08), transparent 45%), #050505;
    color: var(--color-primary);

    /* smooth scroll behavior for anchor links */
    scroll-behavior: smooth;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: 12px;
    z-index: 10050;
    padding: 10px 16px;
    border-radius: 999px;
    background: #f5f5f5;
    color: #050505;
    font-size: 14px;
    font-weight: 600;
    transform: translateY(-160%);
    transition: transform 0.2s ease;
}

.skip-link:focus,
.skip-link:focus-visible {
    transform: translateY(0);
    outline: 2px solid #f5f5f5;
    outline-offset: 3px;
}

body.lock {
    overflow: hidden;
}

.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;
}
.container {
    margin: 0 auto;
    max-width: 470px;
    padding: 0 16px;
}

/* tablet */
@media (min-width: 768px) {
    .container {
        max-width: 768px;
        padding: 0 24px;
    }
}

/* desktop */
@media (min-width: 1024px) {
    .container {
        max-width: 1200px;
    }
}

main {
    /* padding-top: 88px; */
}
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px 15px;
    transition:
        transform 0.2s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.2s ease,
        background-color 0.2s ease,
        color 0.2s ease;
    border-radius: 25px;
    font-size: 20px;
    font-weight: 700;
}

.btn:hover,
.btn:focus-visible {
    transform: scale(1.01);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.btn:focus-visible,
.nav-link:focus-visible,
.tel:focus-visible,
.modal-close:focus-visible,
.compare-button-prev:focus-visible,
.compare-button-next:focus-visible,
.reviews-button-prev:focus-visible,
.reviews-button-next:focus-visible,
.scroll-top:focus-visible,
.gallery-card:focus-visible {
    outline: 2px solid #f5f5f5;
    outline-offset: 3px;
}

.subtitle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    margin-bottom: 24px;

    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;

    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.18);
}

.subtitle::before,
.subtitle::after {
    content: "";
    display: block;
    width: 48px;
    height: 1px;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.12);
}

.subtitle::before {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.8));
}

.subtitle::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.04));
}

@media screen and (min-width: 768px) {
    .subtitle {
        gap: 16px;
    }
    .subtitle::before,
    .subtitle::after {
        width: 72px;
    }
}
@media screen and (min-width: 1024px) {
    .subtitle::before,
    .subtitle::after {
        width: 96px;
    }
}

/**
  |============================
  | header
  |============================
*/

.header {
    padding: 16px 0;
    text-transform: uppercase;

    z-index: 10;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.35);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.header-container {
    display: flex;
    align-items: center;
    width: 100%;
}
.logo {
    display: flex;
    flex-direction: column;
    align-items: center;

    outline: 2px solid #f5f5f5;
    border-radius: 9px;
}
.logo > img {
    width: 94px;
}
@media screen and (min-width: 375px) {
    .logo > img {
        width: 104px;
    }
}
@media screen and (min-width: 768px) {
    .logo > img {
        width: 124px;
    }
}
.nav {
    display: flex;
    align-items: center;
    margin-left: 60px;
    opacity: 0.92;
}
.nav-list {
    display: flex;
    align-items: center;
    gap: 24px;
}
@media screen and (min-width: 1024px) {
    .nav-list {
        gap: 14px;
    }
}
@media screen and (min-width: 1150px) {
    .nav-list {
        gap: 24px;
    }
}
.nav-item {
}
.nav-link {
    font-size: 14px;
    opacity: 0.72;
    position: relative;
}

.nav-link::after,
.nav-link:hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #f5f5f5;
    transition: 0.3s;
}

.nav-link.active::after,
.nav-link:hover::after {
    width: 100%;
}
.nav-link:hover,
.nav-link:focus {
    opacity: 1;
    transition: color 0.2s ease;
}
.hero-contacts {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: auto;
}

.tel {
    font-weight: 500;

    text-shadow:
        0 0 8px rgba(255, 255, 255, 0.35),
        0 0 18px rgba(255, 255, 255, 0.15);
}

@media screen and (min-width: 768px) {
    .tel {
        font-size: 22px;
    }
}
@media screen and (min-width: 1024px) {
    .tel {
        font-size: 18px;
    }
}
@media screen and (min-width: 1150px) {
    .tel {
        font-size: 22px;
    }
}
.book-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-left: auto;
    height: 44px;
    border: 1px solid #f5f5f5;

    color: #f5f5f5;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
}
.book-btn img {
    width: 24px;
}

.burger {
    display: none;

    width: 42px;
    height: 42px;

    border: none;
    background: none;
    cursor: pointer;

    flex-direction: column;
    justify-content: center;
    gap: 6px;

    z-index: 1001;
}

.burger span {
    width: 28px;
    height: 2px;

    background: #fff;

    transition: 0.3s;
}

@media (max-width: 1023px) {
    .burger {
        display: flex;
        margin-left: auto;
    }

    .header-btn {
        display: none;
    }
    .nav-btn {
        display: flex;
    }

    .nav {
        position: fixed;

        top: 0;
        right: -100%;

        width: 300px;
        height: 100vh;

        background: #090909;

        transition: 0.35s;

        z-index: 1000;

        display: flex;
        justify-content: center;
        align-items: center;
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 35px;
    }

    .nav-link {
        font-size: 22px;
    }
}
@media screen and (min-width: 768px) {
    .header-btn {
        display: flex;
    }
    .nav-btn {
        display: none;
    }
}
.burger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.burger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
.overlay {
    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, 0.65);

    opacity: 0;
    visibility: hidden;

    transition: 0.35s;

    z-index: 999;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}
/**
  |============================
  | hero
  |============================
*/

.hero-section {
    margin-top: var(--header-height);
    padding-top: 24px;
    padding-bottom: 50px;
}
.container {
}
.hero-container {
    position: relative;
    /* padding-top: 88px; */
    display: flex;
    flex-direction: column;
}
.hero-wrapper {
    margin: 0 auto;
    width: 300px;
    flex-shrink: 0;
}

.hero-image {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: auto;
}

.hero-bg {
    position: absolute;

    top: 13px;
    right: 6px;
    width: 366px;
    height: auto;
    max-width: none;

    object-fit: contain;
    pointer-events: none;
}

.hero-content {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
@media screen and (min-width: 425px) {
    .hero-wrapper {
        width: 350px;
    }
    .hero-bg {
        top: 28px;
        width: 410px;
    }
}
@media screen and (min-width: 500px) {
    .hero-wrapper {
        width: 400px;
    }
    .hero-bg {
        top: 38px;
        width: 500px;
    }
}
@media screen and (min-width: 600px) {
    .hero-wrapper {
        width: 500px;
    }
    .hero-bg {
        top: 38px;
        width: 600px;
    }
}
@media screen and (min-width: 768px) {
    .hero-section {
        /* padding-top: 88px; */
        padding-bottom: 70px;
    }
    .hero-wrapper {
        width: 620px;

        flex-shrink: 0;
    }
    .hero-bg {
        width: 740px;
        top: 110px;
    }
}
@media screen and (min-width: 1024px) {
    .hero-section {
        padding-bottom: 100px;
    }
    .hero-content {
        margin-top: 28px;
        flex-direction: row;
    }
    .hero-wrapper {
        width: 600px;
        flex-shrink: 0;
    }
    .hero-bg {
        top: -58px;
    }
}
/* @media screen and (min-width: 1124px) {
    .hero-bg {
        top: 0px;
    }
} */
.title {
    margin-bottom: 10px;
    font-size: 34px;
    line-height: 1;
    font-weight: 500;
    text-shadow:
        0 0 8px rgba(255, 255, 255, 0.08),
        0 0 20px rgba(255, 255, 255, 0.04);
}
.title > span {
    color: #f5f5f57c;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.05);
}
.description {
    width: 300px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
    line-height: 1.6;
    font-size: 14px;
    font-weight: 300;
}
.hero-btn {
    margin-top: 24px;
    margin-left: 0;
    width: fit-content;
}
@media screen and (min-width: 768px) {
    .title {
        font-size: 40px;
    }
    .description {
        font-size: 16px;
    }
}
@media screen and (min-width: 1024px) {
    .title {
        font-size: 60px;
    }
    .description {
        font-size: 16px;
    }
}
.vehicle-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    row-gap: 14px;
    width: 299px;
    margin: 0 auto;
    scroll-margin-top: 0;
}
.vehicle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    position: relative;
    z-index: 1;
    height: 71px;
    width: 71px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.4s;

    font-size: 16px;
    font-weight: 500;
}
@media screen and (min-width: 375px) {
    .vehicle-list {
        width: 342px;
    }
    .vehicle-item {
        height: 90px;
        width: 90px;
    }
}
@media screen and (min-width: 768px) {
    .vehicle-list {
        width: 720px;

        row-gap: 20px;
    }
    .vehicle-item {
        height: 114px;
        width: 114px;

        font-size: 16px;
    }
}
@media screen and (min-width: 1024px) {
    .vehicle-list {
        width: auto;
        margin: 0;
        row-gap: 28px;
    }
    .vehicle-item {
        font-size: 20px;
    }
}

.vehicle-item::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;

    /* стеклянный круг */
    background: radial-gradient(
        circle at 30% 25%,
        rgba(255, 255, 255, 0.12),
        rgba(255, 255, 255, 0.02) 45%,
        rgba(255, 255, 255, 0) 75%
    );
}

.vehicle-item::after {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    opacity: 0;
    transition: 0.35s;

    border: 1px solid rgba(255, 255, 255, 0.7);

    box-shadow:
        0 0 15px rgba(255, 255, 255, 0.35),
        0 0 35px rgba(255, 255, 255, 0.15),
        inset 0 0 15px rgba(255, 255, 255, 0.18);
}

.vehicle-item:hover::after {
    opacity: 1;
}
.vehicle-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.35s;
    z-index: 10;
}
.vehicle-item:hover .vehicle-inner {
    transform: scale(1.08);
}

.vehicle-inner {
    /* width: 100px; */
}
.vehicle-line {
    position: absolute;

    left: 103%;
    top: 50%;

    width: 14px; /* равно gap */

    height: 2px;

    transform: translateY(-50%);

    background: rgba(255, 255, 255, 0.5);

    box-shadow: 0 0 6px rgba(255, 255, 255, 0.18);

    z-index: 0;
}

.vehicle-item:nth-child(3n) > .vehicle-line {
    display: none;
}
@media screen and (min-width: 375px) {
    .vehicle-line {
        left: 102%;

        width: 14px;
    }
}
@media screen and (min-width: 768px) {
    .vehicle-line {
        left: 102%;

        width: 14px;
    }
    .vehicle-item:nth-child(5) > .vehicle-line {
        display: none;
    }
    .vehicle-item:nth-child(3n) > .vehicle-line {
        display: block;
    }
}
@media screen and (min-width: 1024px) {
    .vehicle-line {
        left: 102%;
        width: 16px;
    }
    .vehicle-item:nth-child(5) > .vehicle-line {
        display: block;
    }
    .vehicle-item:nth-child(7) > .vehicle-line {
        display: none;
    }
}
@media screen and (min-width: 1100px) {
    .vehicle-item:nth-child(7) > .vehicle-line {
        display: block;
    }
}
@media screen and (min-width: 1200px) {
    /* .vehicle-line {
        width: 25px;
    } */
}

.vehicle-item:last-child .vehicle-line {
    display: none;
}
.vehicle-item.active::after {
    opacity: 1;
}

.vehicle-item.active .vehicle-inner {
    transform: scale(1.08);
}
.vehicle-info {
    max-width: 470px;
    margin: 20px auto 0;

    overflow: hidden;

    max-height: 0;
    opacity: 0;

    transition:
        max-height 0.6s ease,
        opacity 0.4s ease;
}
@media screen and (min-width: 768px) {
    .vehicle-info {
        margin-top: 30px;
        max-width: 700px;
    }
}
@media screen and (min-width: 1024px) {
    .vehicle-info {
        margin-top: 50px;
        max-width: 860px;
    }
}
@media screen and (min-width: 1200px) {
    .vehicle-info {
        max-width: 1200px;
    }
}
.vehicle-info.active {
    max-height: 2000px;
    opacity: 1;
}

.vehicle-info-content {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 30px;

    padding: 14px;

    backdrop-filter: blur(18px);
}

.vehicle-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
    .vehicle-info-content {
        padding: 24px;
    }
    .vehicle-info-header {
        margin-bottom: 16px;
    }
}

@media screen and (min-width: 1024px) {
    .vehicle-info-content {
        padding: 40px;
    }
    .vehicle-info-header {
        margin-bottom: 24px;
    }
}
.vehicle-info-header h3 {
    font-size: 32px;
    font-weight: 600;
}

.vehicle-info-header span {
    font-size: 20px;
    color: #cfcfcf;
}

.vehicle-info-content > p {
    max-width: 700px;
    color: #a8a8a8;
    line-height: 1.8;

    margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
    .vehicle-info-header h3 {
        font-size: 38px;
    }

    .vehicle-info-header span {
        font-size: 20px;
    }

    .vehicle-info-content > p {
        margin-bottom: 24px;
    }
}
@media screen and (min-width: 1024px) {
    .vehicle-info-header h3 {
        font-size: 42px;
    }

    .vehicle-info-header span {
        font-size: 20px;
    }

    .vehicle-info-content > p {
        margin-bottom: 34px;
    }
}

.vehicle-services {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

@media screen and (min-width: 768px) {
    .vehicle-services {
        grid-template-columns: repeat(auto-fit, minmax(160px, 220px));
        justify-content: start;
        gap: 16px;
    }
}

.service-item {
    display: flex;
    flex-direction: column;
    padding: 14px;

    border-radius: 20px;

    background: rgba(255, 255, 255, 0.03);

    border: 1px solid rgba(255, 255, 255, 0.08);

    transition: 0.3s;
}

.service-item:hover {
    transform: translateY(-6px);

    border-color: rgba(255, 255, 255, 0.25);
}

.service-item h4 {
    margin-bottom: 12px;

    font-size: 16px;
}
@media screen and (min-width: 768px) {
    .vehicle-services {
        gap: 16px;
    }

    .service-item {
        padding: 16px;
    }
    .service-item h4 {
        font-size: 18px;
    }
}
@media screen and (min-width: 1024px) {
    .vehicle-services {
        gap: 20px;
    }

    .service-item {
        padding: 20px;
    }
    .service-item h4 {
        font-size: 20px;
    }
}
.service-item span {
    color: white;
    margin-top: auto;
    font-size: 18px;
}

.vehicle-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 35px;
    margin-left: 0;

    padding: 16px 34px;

    border: 1px solid white;
    background: transparent;
    color: inherit;
    font: inherit;
    cursor: pointer;

    border-radius: 999px;

    transition: 0.3s;
}

.vehicle-btn:hover {
    background: white;
    color: black;
}
#vehicleInfo {
    scroll-margin-top: 12px;
}

/**
  |============================
  | about
  |============================
*/

.about-section,
.advantages-section,
.compare-section,
.gallery-section,
.reviews-section,
.faq-section {
    scroll-margin-top: 0;
}

.about-section {
    min-height: 100vh;
    padding: 40px 0;
}
@media screen and (min-width: 768px) {
    .about-section {
        padding: 70px 0;
    }
}
@media screen and (min-width: 1024px) {
    .about-section {
        padding: 100px 0;
    }
}
.about-container {
    position: relative;
}
.about-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    flex-direction: column;
}
@media screen and (min-width: 768px) {
    .about-wrapper {
        flex-direction: row;
    }
}
.about-image {
}
.about-image__img {
}
.about-content {
}
.subtitle {
}
.about-subtitle {
}
.about-title {
    margin-bottom: 24px;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.1;
    text-transform: uppercase;
    text-shadow:
        0 0 8px rgba(255, 255, 255, 0.08),
        0 0 20px rgba(255, 255, 255, 0.04);
}
@media screen and (min-width: 768px) {
    .about-title {
        margin-bottom: 20px;
        font-size: 28px;
    }
    .about-image {
        width: 60%;
    }
    .about-content {
        width: 40%;
    }
}
@media screen and (min-width: 1024px) {
    .about-title {
        margin-bottom: 24px;
        font-size: 42px;
    }
    .about-content {
        width: 45%;
    }
}
.about-title > span {
    color: #f5f5f57c;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.05);
}
.about-text {
    font-size: 12px;
    margin-bottom: 12px;
}
@media screen and (min-width: 768px) {
    .about-text {
        font-size: 13px;
    }
}
@media screen and (min-width: 1024px) {
    .about-text {
        font-size: 14px;
        margin-bottom: 14px;
    }
}
.about-features {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.about-feature {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 14px;
    padding-top: 10px;
    text-align: center;
}
.about-feature__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 5px;
    width: 70px;
    height: 70px;
    /* border: none; */
}
.about-feature__icon::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(
        circle at 30% 25%,
        rgba(255, 255, 255, 0.12),
        rgba(255, 255, 255, 0.02) 45%,
        rgba(255, 255, 255, 0) 75%
    );
}
.about-feature__content {
}
.about-feature__title {
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 15px;
}
.about-feature__text {
    font-weight: 400;
    font-size: 12px;
    color: #f5f5f57c;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.05);
}
.about-stats {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 14px;
    max-width: 400px;
    margin: 0 auto;

    padding: 12px;
    border: 1px solid #f5f5f57c;
    border-radius: 30px;
}
.about-stat {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    text-align: center;
}
.about-stat + .about-stat::before {
    content: "";
    position: absolute;
    left: -20px;
    height: 120px;
    width: 2px;
    background: #f5f5f57c;
    border-radius: 4px;
    display: none;
}
.about-stat__icon {
    position: relative;
    padding: 5px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
}
@media screen and (min-width: 768px) {
    .about-stats {
        align-items: start;
        flex-direction: row;
        gap: 28px;
        padding: 12px 12px;
        max-width: none;
    }
    .about-stat {
        flex-direction: column;
        width: calc((100% - 28px * 3) / 4);
    }
    .about-stat__icon {
        width: 70px;
        height: 70px;
    }
    .about-stat + .about-stat::before {
        display: block;
        top: 14%;
        left: -14px;
        height: 120px;
    }
}
@media screen and (min-width: 1024px) {
    .about-stats {
        align-items: center;
        gap: 30px;

        padding: 12px 20px;
    }
    .about-stat {
        flex-direction: row;
        width: calc((100% - 30px * 3) / 4);
    }
    .about-stat + .about-stat::before {
        left: -20px;
        height: 120px;
    }
    .about-stat__icon {
        width: 60px;
        height: 60px;
    }
}
.about-stat__icon::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(
        circle at 30% 25%,
        rgba(255, 255, 255, 0.12),
        rgba(255, 255, 255, 0.02) 45%,
        rgba(255, 255, 255, 0) 75%
    );
}
.about-stat__content {
}
.about-stat__number {
    font-size: 20px;
    font-weight: 600;
}
.about-stat__label {
    font-size: 16px;
    font-weight: 500;
}
.about-stat__text {
    font-size: 14px;
    font-weight: 300;
}

/**
  |============================
  | advantages
  |============================
*/

.advantages-section {
    padding: 40px 0;
    min-height: 100vh;
}

@media screen and (min-width: 768px) {
    .advantages-section {
        padding: 70px 0;
    }
}
@media screen and (min-width: 1024px) {
    .advantages-section {
        padding: 100px 0;
    }
}
.container {
}
.advantages-container {
    display: flex;
    flex-direction: column;
    text-align: center;
}
.subtitle {
}
.advantages-title {
    margin-bottom: 14px;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.1;
    text-transform: uppercase;
    text-shadow:
        0 0 8px rgba(255, 255, 255, 0.08),
        0 0 20px rgba(255, 255, 255, 0.04);
}

.advantages-title-accent {
    color: #f5f5f57c;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.05);
}
.advantages-description {
    margin: 0 auto;
    margin-bottom: 24px;
    font-weight: 300;
    font-size: 14px;
}
@media screen and (min-width: 768px) {
    .advantages-title {
        font-size: 28px;
    }
    .advantages-description {
        width: 500px;
    }
}
@media screen and (min-width: 1024px) {
    .advantages-title {
        font-size: 42px;
    }
}
.advantages-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
    margin: 0 auto;
}
.advantages-item {
    display: flex;
    flex-direction: column;
    flex: 1;
    border: 1px solid #f5f5f57c;
    border-radius: 20px;
    overflow: hidden;
    text-align: start;
}
.advantages-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-top: 15px;
    margin-bottom: 10px;
    position: relative;
    width: 70px;
    height: 70px;
    padding: 10px;
}
@media screen and (min-width: 768px) {
    .advantages-list {
        flex-direction: row;
        gap: 10px;
        max-width: none;
    }
    .advantages-icon {
        width: 60px;
        height: 60px;
    }
}
@media screen and (min-width: 1024px) {
    .advantages-list {
        gap: 20px;
    }
    .advantages-icon {
        width: 70px;
        height: 70px;
    }
}
.advantages-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(
        circle at 30% 25%,
        rgba(255, 255, 255, 0.12),
        rgba(255, 255, 255, 0.02) 45%,
        rgba(255, 255, 255, 0) 75%
    );
    border: 1px solid #f5f5f57c;
    box-shadow:
        0 0 9px rgba(255, 255, 255, 0.35),
        0 0 5px rgba(255, 255, 255, 0.15),
        inset 0 0 8px rgba(255, 255, 255, 0.18);
}
.advantages-number {
    /* margin-bottom: 10px; */
    padding-left: 20px;
    color: #f5f5f57c;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.05);
}
.advantages-item-title {
    position: relative;
    padding-left: 20px;
    padding-bottom: 8px;
    margin-bottom: 8px;

    font-weight: 500;

    text-shadow:
        0 0 8px rgba(255, 255, 255, 0.08),
        0 0 20px rgba(255, 255, 255, 0.04);
}

.advantages-item-title::after {
    content: "";
    position: absolute;

    left: 20px;
    bottom: 0;

    width: 70px;
    height: 1px;

    background: linear-gradient(90deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.15));

    box-shadow: 0 0 6px rgba(255, 255, 255, 0.12);
}
.advantages-item-text {
    padding-left: 20px;
    padding-right: 17px;
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 300;
}
@media screen and (min-width: 768px) {
    .advantages-item-text {
        padding-left: 10px;
        padding-right: 10px;
    }
}
@media screen and (min-width: 1024px) {
    .advantages-item-text {
        padding-left: 20px;
        padding-right: 17px;
    }
}
.advantages-item-photo {
    margin-top: auto;
}
.advantages-tags {
    position: relative;

    display: none;
    justify-content: center;
    align-items: center;
    gap: 28px;

    margin-top: 40px;
}
@media screen and (min-width: 768px) {
    .advantages-tags {
        display: flex;
    }
}
.advantages-tags::before,
.advantages-tags::after {
    content: "";
    width: 35%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.15));

    box-shadow: 0 0 6px rgba(255, 255, 255, 0.12);
}

.advantages-tag {
    text-align: center;
    font-size: 13px;
    letter-spacing: 0.35em;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
}

.advantages-tag:not(:last-child)::after {
    content: "•";
    margin-left: 28px;
    color: rgba(255, 255, 255, 0.28);
}

/**
  |============================
  | before / after
  |============================
*/

.compare-section {
    padding: 40px 0;
}

@media screen and (min-width: 768px) {
    .compare-section {
        padding: 70px 0;
    }
}
@media screen and (min-width: 1024px) {
    .compare-section {
        padding: 100px 0;
    }
}
.compare-container {
    text-align: center;
}
.compare-title {
    margin-bottom: 14px;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.1;
    text-transform: uppercase;
    text-shadow:
        0 0 8px rgba(255, 255, 255, 0.08),
        0 0 20px rgba(255, 255, 255, 0.04);
}
.compare-title-accent {
    color: #f5f5f57c;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.05);
}
.compare-description {
    margin: 0 auto;
    margin-bottom: 24px;
    font-weight: 300;
    font-size: 14px;
}
@media screen and (min-width: 768px) {
    .compare-title {
        font-size: 28px;
    }
    .compare-description {
        width: 500px;
    }
}
@media screen and (min-width: 1024px) {
    .compare-title {
        font-size: 42px;
    }
}

.compare-wrapper {
    margin: 0 auto;
    max-width: 300px;
}

.slider {
    --value: 50%;
    position: relative;
    height: 246px;
    width: 300px;

    border: 1px solid #f5f5f57c;
    border-radius: 24px;
    overflow: hidden;
}
@media screen and (min-width: 768px) {
    .compare-wrapper {
        margin: 0 auto;
        max-width: none;
    }
    .slider {
        height: 580px;
        width: 720px;
    }
}
@media screen and (min-width: 1024px) {
    .compare-wrapper {
        max-width: 1024px;
    }
    .slider {
        height: 420px;
        width: 100%;
    }
}

.slider__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
}
.slider__img--after {
    z-index: 1;
}
.slider__img--before {
    z-index: 2;
    clip-path: inset(0 calc(100% - var(--value)) 0 0);
}
.slider__range-visible {
    position: absolute;
    top: 0;
    left: var(--value);
    z-index: 3;
    width: 4px;
    height: 100%;
    background-color: currentColor;
    transform: translateX(-50%);
    pointer-events: none;
}
.slider__range-visible::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 44px;
    height: 44px;
    background-color: #f5f5f5;
    background-image: url(../assets/images/arrow-left-right.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 22px 22px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.slider__range-js {
    position: absolute;
    z-index: 4;
    margin: 0;
    cursor: pointer;
    opacity: 0;
    inset: 0;
    touch-action: none;
}

.compare-button-prev,
.compare-button-next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    color: #f5f5f5;
    appearance: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
}
.compare-button-prev {
    left: 10px;
}
.compare-button-next {
    right: 10px;
}
.compare-button-prev svg,
.compare-button-next svg {
    display: block;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}
.compare-button-prev::after,
.compare-button-next::after {
    content: none !important;
}
.compare-button-prev::before,
.compare-button-next::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(
        circle at 30% 25%,
        rgba(255, 255, 255, 0.12),
        rgba(255, 255, 255, 0.02) 45%,
        rgba(255, 255, 255, 0) 75%
    );
    border: 1px solid #f5f5f57c;
    box-shadow:
        0 0 9px rgba(255, 255, 255, 0.35),
        0 0 5px rgba(255, 255, 255, 0.15),
        inset 0 0 8px rgba(255, 255, 255, 0.18);
}

.compare-button-prev.swiper-button-disabled,
.compare-button-next.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
}

/**
  |============================
  | gallery
  |============================
*/

.gallery-section {
    padding: 32px 0;
}

@media screen and (min-width: 768px) {
    .gallery-section {
        padding: 40px 0;
    }
}
@media screen and (min-width: 1024px) {
    .gallery-section {
        padding: 48px 0;
    }
}
.gallery-container {
    text-align: center;
}
.gallery-subtitle {
    margin-bottom: 12px;
}
.gallery-title {
    margin-bottom: 10px;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.1;
    text-transform: uppercase;
    text-shadow:
        0 0 8px rgba(255, 255, 255, 0.08),
        0 0 20px rgba(255, 255, 255, 0.04);
}
.gallery-title-accent {
    color: #f5f5f57c;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.05);
}
.gallery-description {
    margin: 0 auto;
    margin-bottom: 16px;
    font-weight: 300;
    font-size: 14px;
}
@media screen and (min-width: 768px) {
    .gallery-title {
        font-size: 28px;
    }
    .gallery-description {
        width: 500px;
    }
}
@media screen and (min-width: 1024px) {
    .gallery-title {
        font-size: 32px;
    }
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}
@media screen and (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
}
@media screen and (min-width: 1024px) {
    .gallery-grid {
        gap: 12px;
    }
}

.gallery-card {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
    border: 1px solid #f5f5f57c;
    border-radius: 20px;
    background: transparent;
    color: inherit;
    cursor: pointer;
    text-align: start;
}
.gallery-card img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
    transition: transform 0.35s ease;
}
.gallery-card--low img {
    object-position: center 68%;
}
.gallery-card:hover img,
.gallery-card:focus-visible img {
    transform: scale(1.04);
}
.gallery-card:focus-visible {
    outline: 2px solid #f5f5f5;
    outline-offset: 3px;
}
.gallery-card-meta {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 36px 12px 12px;
    background: linear-gradient(180deg, transparent 0%, rgba(5, 5, 5, 0.82) 100%);
}
.gallery-card-label {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}
.gallery-card-name {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    text-shadow:
        0 0 8px rgba(255, 255, 255, 0.08),
        0 0 20px rgba(255, 255, 255, 0.04);
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.35s;
}
.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}
.gallery-lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(8px);
}
.gallery-lightbox-window {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: min(1120px, calc(100% - 32px));
}
.gallery-lightbox-frame {
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 1px solid #f5f5f57c;
    border-radius: 20px;
    background: #111;
}
.gallery-lightbox-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.gallery-lightbox-caption {
    margin-top: 14px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}
.gallery-lightbox-close,
.gallery-lightbox-nav {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid #f5f5f57c;
    border-radius: 50%;
    background: rgba(5, 5, 5, 0.58);
    color: #f5f5f5;
    box-shadow:
        0 0 9px rgba(255, 255, 255, 0.2),
        inset 0 0 8px rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    cursor: pointer;
}
.gallery-lightbox-close svg,
.gallery-lightbox-nav svg {
    display: block;
    flex-shrink: 0;
}
.gallery-lightbox-close {
    top: 14px;
    right: 14px;
}
.gallery-lightbox-prev {
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
}
.gallery-lightbox-next {
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
    .gallery-lightbox-close,
    .gallery-lightbox-nav {
        width: 48px;
        height: 48px;
    }
    .gallery-lightbox-close {
        top: 18px;
        right: 18px;
    }
    .gallery-lightbox-prev {
        left: 18px;
    }
    .gallery-lightbox-next {
        right: 18px;
    }
}
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

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

    .gallery-card img,
    .gallery-lightbox {
        transition: none;
    }
    .gallery-card:hover img,
    .gallery-card:focus-visible img {
        transform: none;
    }
}
/**
  |============================
  | reviews
  |============================
*/

.reviews-section {
    padding: 40px 0;
}
@media screen and (min-width: 768px) {
    .reviews-section {
        padding: 70px 0;
    }
}
@media screen and (min-width: 1024px) {
    .reviews-section {
        padding: 100px 0;
    }
}
.container {
}
.reviews-container {
    text-align: center;
}
.reviews-title {
    margin-bottom: 14px;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.1;
    text-transform: uppercase;
    text-shadow:
        0 0 8px rgba(255, 255, 255, 0.08),
        0 0 20px rgba(255, 255, 255, 0.04);
}
.reviews-title-accent {
    color: #f5f5f57c;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.05);
}
.reviews-description {
    margin: 0 auto;
    margin-bottom: 24px;
    font-size: 14px;
}
@media screen and (min-width: 768px) {
    .reviews-title {
        font-size: 28px;
    }
    .reviews-description {
        width: 500px;
    }
}
@media screen and (min-width: 1024px) {
    .reviews-title {
        margin-bottom: 14px;
        font-size: 42px;
    }
}

.reviews-slider {
    padding: 0 30px;
    padding-bottom: 50px;
}
@media screen and (min-width: 768px) {
    .reviews-slider {
        padding: 0 70px;
        padding-bottom: 50px;
    }
}
.swiper-wrapper {
}
.reviews-card {
    display: flex;
    flex-direction: column;
    padding: 20px;
    border: 1px solid #f5f5f57c;
    border-radius: 14px;
    height: auto;
}
.swiper-slide {
}
.reviews-card-header {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 14px;
}
.reviews-card-header::before {
    content: "”";
    position: absolute;
    top: 48px;
    right: 20px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 100px;
    line-height: 0;
    color: #f5f5f57c;
}
.reviews-rating {
    font-size: 24px;
    color: #c8c501;
}
.reviews-star {
}
.reviews-quote {
}
.reviews-text {
    text-align: start;
    font-weight: 300;
    padding-bottom: 8px;
}
.reviews-author {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
    margin-top: auto;
    text-align: start;
    border-top: 1px solid #f5f5f57c;
}
.reviews-author-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    font-size: 24px;
    font-weight: 600;
    color: #f5f5f5;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.reviews-author-info {
}
.reviews-author-name {
    font-weight: 500;
    text-transform: uppercase;
}
.reviews-author-car {
    font-weight: 300;
    font-size: 14px;
    color: #f5f5f57c;
}
.reviews-pagination {
}
.swiper-pagination {
    margin-top: 20px;
}
.reviews-button {
}
.reviews-button-prev,
.reviews-button-next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    color: #f5f5f5;
    appearance: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
}
.reviews-button-prev {
    left: 10px;
}
.reviews-button-next {
    right: 10px;
}
.reviews-button-prev svg,
.reviews-button-next svg {
    display: block;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}
.reviews-button-prev::after,
.reviews-button-next::after {
    content: none !important;
}
.reviews-button-prev::before,
.reviews-button-next::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(
        circle at 30% 25%,
        rgba(255, 255, 255, 0.12),
        rgba(255, 255, 255, 0.02) 45%,
        rgba(255, 255, 255, 0) 75%
    );
    border: 1px solid #f5f5f57c;
    box-shadow:
        0 0 9px rgba(255, 255, 255, 0.35),
        0 0 5px rgba(255, 255, 255, 0.15),
        inset 0 0 8px rgba(255, 255, 255, 0.18);
}

.reviews-button-prev.swiper-button-disabled,
.reviews-button-next.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
}
.swiper-button-prev {
}
.swiper-button-next {
}
.reviews-scrollbar {
}
.swiper-scrollbar {
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    opacity: 1;
    background-color: #f5f5f57c;
    border: none;
}

.swiper-pagination-bullet-active {
    background: #f5f5f5;
    opacity: 1;
}
.reviews-tags {
    margin-top: 14px;
}
.reviews-tags::after,
.reviews-tags::before {
    width: 22%;
}

/**
  |============================
  | faq
  |============================
*/

.faq-section {
    padding: 40px 0;
}
@media screen and (min-width: 768px) {
    .faq-section {
        padding: 70px 0;
    }
}
@media screen and (min-width: 1024px) {
    .faq-section {
        padding: 100px 0;
    }
}
.container {
}
.faq-container {
    text-align: center;
}
.faq-title {
    margin-bottom: 14px;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.1;
    text-transform: uppercase;
    text-shadow:
        0 0 8px rgba(255, 255, 255, 0.08),
        0 0 20px rgba(255, 255, 255, 0.04);
}
.faq-title > span {
    color: #f5f5f57c;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.05);
}
.faq-description {
    margin: 0 auto;
    margin-bottom: 24px;
    font-size: 14px;
}
@media screen and (min-width: 768px) {
    .faq-title {
        margin-bottom: 14px;
        font-size: 28px;
    }
    .faq-description {
        width: 380px;
        font-size: 14px;
    }
}
@media screen and (min-width: 1024px) {
    .faq-title {
        margin-bottom: 14px;
        font-size: 42px;
    }
}
.faq-content {
    display: flex;
    align-items: center;
    gap: 30px;
    text-align: start;
}
.faq-contact {
    width: 30%;
    border: 1px solid #f5f5f57c;
    border-radius: 14px;
    overflow: hidden;
}
.faq-contact-icon {
    margin-bottom: 20px;
}
.faq-contact-label {
    padding-left: 20px;
    margin-bottom: 14px;
    font-size: 14px;
    font-weight: 300;
    color: #f5f5f57c;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.05);
    text-transform: uppercase;
}
.faq-contact-title {
    position: relative;
    padding-left: 20px;
    padding-bottom: 8px;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 22px;
    text-shadow:
        0 0 8px rgba(255, 255, 255, 0.08),
        0 0 20px rgba(255, 255, 255, 0.04);
}
.faq-contact-title::after {
    content: "";
    position: absolute;
    left: 20px;
    bottom: 0;
    width: 70px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.15));
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.12);
}
.faq-contact-text {
    margin-bottom: 14px;
    padding-left: 20px;
    padding-right: 17px;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 300;
}
.button {
}
.faq-contact-button {
    max-width: 200px;
    margin-right: auto;
    margin-left: 20px;
    margin-bottom: 14px;
}

.faq-list {
    text-align: start;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    position: relative;

    transition: 0.35s;
}

.faq-item::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;
    background: radial-gradient(
        circle at 45% 29%,
        rgba(255, 255, 255, 0.16),
        rgba(255, 255, 255, 0.02) 59%,
        rgba(255, 255, 255, 0) 100%
    );
    box-shadow:
        0 0 2px rgba(255, 255, 255, 0.35),
        0 0 1px rgba(255, 255, 255, 0.15),
        inset 0 0 2px rgba(255, 255, 255, 0.18);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
}
.faq-question {
    display: flex;
    align-items: center;
    gap: 20px;

    padding: 10px 14px;

    cursor: pointer;
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}
.faq-number {
    flex-shrink: 0;

    width: 46px;
    height: 46px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 50%;

    position: relative;

    font-size: 18px;
    font-weight: 600;
}
.faq-number::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(
        circle at 30% 25%,
        rgba(255, 255, 255, 0.12),
        rgba(255, 255, 255, 0.02) 45%,
        rgba(255, 255, 255, 0) 75%
    );
    border: 1px solid #f5f5f57c;
    box-shadow:
        0 0 9px rgba(255, 255, 255, 0.35),
        0 0 5px rgba(255, 255, 255, 0.15),
        inset 0 0 8px rgba(255, 255, 255, 0.18);
}

.faq-question-text {
    flex: 1;

    font-size: 18px;
    font-weight: 500;
}
.faq-icon {
    position: relative;

    width: 22px;
    height: 22px;

    flex-shrink: 0;
}
.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;

    top: 50%;
    left: 50%;

    width: 20px;
    height: 2px;

    background: #fff;

    transform: translate(-50%, -50%);

    transition: 0.3s;
}
.faq-icon::after {
    width: 2px;
    height: 20px;
}
.faq-item[open] .faq-icon::after {
    transform: translate(-50%, -50%) scaleY(0);
}
.faq-answer {
    padding: 0 14px 20px;

    color: #bcbcbc;

    font-size: 16px;
    line-height: 1.8;
}

@media screen and (min-width: 768px) {
    .faq-question {
        padding: 14px 20px;
    }
    .faq-question-text {
        font-size: 20px;
    }
    .faq-answer {
        padding: 0 96px 20px;
        font-size: 18px;
    }
}

/**
  |============================
  | footer
  |============================
*/

.footer {
    padding: 40px 0;
}
@media screen and (min-width: 768px) {
    .footer {
        padding: 70px 0;
    }
}
@media screen and (min-width: 1024px) {
    .footer {
        padding: 100px 0;
    }
}
.footer-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 14px;
    row-gap: 26px;
    border-top: 1px solid #f5f5f51c;
    border-bottom: 1px solid #f5f5f51c;
    padding: 18px;
    margin-bottom: 18px;
    font-weight: 300;
}
@media screen and (min-width: 768px) {
    .footer-wrapper {
        align-items: flex-start;
        justify-content: space-between;
        gap: 40px;
    }
}
@media screen and (min-width: 1024px) {
    .footer-wrapper {
    }
}
.footer-container {
}
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}
.footer-logo {
    margin-bottom: 20px;
    width: 114px;
}
.footer-description {
    width: 250px;

    font-weight: 300;
}
@media screen and (min-width: 768px) {
    .footer-brand {
        display: block;
        margin: 0;
    }
    .footer-logo {
        margin-bottom: 20px;
        width: 154px;
    }
}

.footer-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}
.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: transform 0.2s ease;
}
.footer-social-link:hover,
.footer-social-link:focus-visible {
    transform: scale(1.1);
}
.footer-social-icon {
    display: block;
    width: 32px;
    height: 32px;
}
@media screen and (min-width: 768px) {
    .footer-socials {
        justify-content: flex-start;
    }
}
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-left: 10px;
}
.footer-heading {
    position: relative;
    font-weight: 500;
    font-size: 18px;
    text-transform: uppercase;

    padding-bottom: 8px;
    text-shadow:
        0 0 8px rgba(255, 255, 255, 0.08),
        0 0 20px rgba(255, 255, 255, 0.04);
}
.footer-heading::after {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0;
    width: 70px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.15));
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.12);
}
.footer-contact-item {
}
.footer-link {
    display: flex;
    align-items: center;
    gap: 8px;
    transform: scale(1.1);
}
.footer-link--static {
    margin: 0;
    color: inherit;
}
.footer-link > img {
    width: 24px;
}
.footer-hours {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-left: 10px;
}
@media screen and (min-width: 768px) {
    .footer-contacts,
    .footer-hours {
        margin-left: 0;
    }
}
.footer-hours-item {
    padding-bottom: 10px;
    border-bottom: 1px solid #f5f5f51c;
}
.footer-hours-item:last-child {
    border: none;
}
.footer-day {
}
.footer-time {
}
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}
.footer-copyright {
    font-size: 14px;
}
.footer-legal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}
.footer-legal a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.footer-legal a:hover,
.footer-legal a:focus-visible {
    color: #f5f5f5;
}
@media screen and (min-width: 768px) {
    .footer-legal {
        align-items: flex-end;
        text-align: right;
    }
}
.footer-brand-name {
    position: relative;
    font-weight: 500;
    font-size: 20px;
}
.footer-brand-name::before,
.footer-brand-name::after {
    content: "";
    position: absolute;
    bottom: 14px;
    width: 70px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.15));
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.12);
}
.footer-brand-name::before {
    left: 60px;
}
.footer-brand-name::after {
    right: 60px;
}
.footer-location {
    font-size: 14px;
}

/**
  |============================
  | scroll
  |============================
*/

.scroll-top {
    position: fixed;
    bottom: 80px;
    right: 14px;

    width: 45px;
    height: 45px;

    border-radius: 39%;
    border: none;

    background-color: #f5f5f5;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);

    border: 1px solid #f5f5f57c;

    color: var(--color-secondary);
    font-size: 20px;

    cursor: pointer;
    z-index: 999;

    opacity: 0;
    visibility: hidden;

    transform: translateY(20px);

    transition: all 250ms ease;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: scale(1.1);
}

body.modal-open .scroll-top,
body.lightbox-open .scroll-top {
    opacity: 0;
    pointer-events: none;
}

body.modal-open .header,
body.lightbox-open .header {
    z-index: 1;
}

/**
  |============================
  | modals
  |============================
*/

.modal {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transition: 0.35s;
    z-index: 10000;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 5, 0.86);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.modal-window {
    position: relative;
    width: 100%;
    max-width: 420px;
    padding: 36px 24px 28px;
    overflow: hidden;
    border-radius: 24px;
    background: #0c0c0c;
    border: 1px solid #f5f5f57c;
    box-shadow:
        0 0 2px rgba(255, 255, 255, 0.28),
        0 24px 70px rgba(0, 0, 0, 0.55);
    z-index: 2;
}

.modal-window::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(
        circle at 45% 18%,
        rgba(255, 255, 255, 0.12),
        rgba(255, 255, 255, 0.02) 46%,
        rgba(255, 255, 255, 0) 100%
    );
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid #f5f5f57c;
    border-radius: 50%;
    background: rgba(5, 5, 5, 0.58);
    color: #f5f5f5;
    box-shadow:
        0 0 9px rgba(255, 255, 255, 0.2),
        inset 0 0 8px rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    cursor: pointer;
}

.modal-close svg {
    display: block;
}

.modal-label {
    width: 100%;
    margin-bottom: 16px;
    padding-right: 48px;
    white-space: nowrap;
    box-sizing: border-box;
}

.modal-label::before,
.modal-label::after {
    width: 40px;
    flex-shrink: 0;
}

.modal-title {
    margin-bottom: 12px;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.1;
    text-transform: uppercase;
    text-shadow:
        0 0 8px rgba(255, 255, 255, 0.08),
        0 0 20px rgba(255, 255, 255, 0.04);
}

@media screen and (min-width: 768px) {
    .modal-window {
        max-width: 480px;
        padding: 44px 40px 32px;
    }
    .modal-title {
        font-size: 36px;
    }
}

.modal-title span {
    color: #f5f5f57c;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.05);
}

.modal-text {
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.modal-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: start;
}

.modal-field-label {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.modal-field input,
.modal-field select {
    width: 100%;
    height: 52px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid #f5f5f57c;
    border-radius: 20px;
    color: #f5f5f5;
    font-size: 16px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.modal-field select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #f5f5f5 50%),
        linear-gradient(135deg, #f5f5f5 50%, transparent 50%);
    background-position:
        calc(100% - 22px) 22px,
        calc(100% - 16px) 22px;
    background-size:
        6px 6px,
        6px 6px;
    background-repeat: no-repeat;
    cursor: pointer;
}

.modal-field select option {
    background: #141414;
    color: #f5f5f5;
}

.modal-field input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.modal-field input:focus,
.modal-field select:focus {
    border-color: #f5f5f5;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.12);
}

.modal-field input:-webkit-autofill,
.modal-field input:-webkit-autofill:hover,
.modal-field input:-webkit-autofill:focus {
    -webkit-text-fill-color: #f5f5f5;
    box-shadow: 0 0 0 1000px #141414 inset;
    transition: background-color 9999s ease-out;
}

.modal-btn {
    width: 100%;
    height: 52px;
    margin-left: 0;
    margin-top: 4px;
}

.modal-legal {
    margin: 0;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

.modal-legal a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.modal-error {
    margin: 0;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 140, 140, 0.4);
    background: rgba(160, 36, 36, 0.22);
    color: #ffd6d6;
    font-size: 13px;
    line-height: 1.4;
}

.modal-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.modal-success p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.82);
}

.modal-success .btn {
    width: 100%;
    margin-left: 0;
}

.modal-form[hidden],
.modal-error[hidden],
.modal-success[hidden] {
    display: none !important;
}

/**
  |============================
  | legal page
  |============================
*/

.legal-section {
    padding: calc(var(--header-height) + 36px) 0 80px;
}
.legal-container {
    max-width: 760px;
    text-align: start;
}
.legal-title {
    margin-bottom: 14px;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.1;
    text-transform: uppercase;
    text-shadow:
        0 0 8px rgba(255, 255, 255, 0.08),
        0 0 20px rgba(255, 255, 255, 0.04);
}
.legal-title span {
    color: #f5f5f57c;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.05);
}
.legal-updated {
    margin-bottom: 28px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
}
.legal-block {
    margin-bottom: 24px;
}
.legal-block h3 {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
}
.legal-block p,
.legal-block li {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.78);
}
.legal-block ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 18px;
    list-style: disc;
}
.legal-block a {
    color: #f5f5f5;
    text-decoration: underline;
    text-underline-offset: 3px;
}
@media screen and (min-width: 768px) {
    .legal-title {
        font-size: 42px;
    }
}
