body {
    font-family: "Golos Text", sans-serif;
    font-weight: 400;
    background: #f7efef;
    line-height: 1.2;
}
button,
input {
    font-family: "Golos Text", sans-serif;
    font-weight: 400;
}

.container {
    width: 87.5rem;
}

section {
    margin-bottom: 3.25rem;
}

/* button */
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.25s ease-in;
    white-space: nowrap;
    min-width: 14rem;
    border-radius: 6.25rem;
    height: 3.125rem;
}
.head-btn {
    height: unset;
}
.btn.transparent {
    color: #ffffff;
    background: transparent;
    border: 1px solid #fff;
}
.btn.transparent:hover {
    color: #000;
    background: #fff;
}
.btn.transparent2 {
    color: #000;
    background: transparent;
    border: 1px solid #000;
}
.btn.transparent2:hover {
    color: #fff;
    background: #000;
}
.btn.white {
    background: #fff;
    color: #000;
}
.btn.white:hover {
    background: black;
    color: white;
}
.btn.black {
    background: black;
    color: white;
}
.btn.black:hover {
    background: white;
    color: black;
}
.btn.lil-width {
    width: 20.5rem;
}
.btn.red {
    background: #731311;
    color: #fff;
}
.btn.red:hover {
    background: #000;
}
.btn.red2 {
    background: #731311;
    color: #fff;
}
.btn.red2:hover {
    background: #fff;
    color: #000;
}

/* Header */
.site-header {
    position: fixed;
    top: 1rem;
    left: 0;
    width: 100%;
    z-index: 100;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    background: #171717;
    box-shadow: 0 4px 76.2px 0 rgba(0, 0, 0, 0.15);
    border-radius: 6.25rem;
    padding: 0.625rem 0.625rem 0.625rem 1.25rem;
}
.head-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}
.head-logo-img {
    height: 2rem;
    width: auto;
    object-fit: contain;
}
.head-nav {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    flex: 1;
    justify-content: center;
}
.head-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.85rem;
    white-space: nowrap;
    transition: color 0.3s ease-in;
    position: relative;
}
.head-nav a::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: #fff;
    transition: width 0.3s ease-in;
}
.head-nav a:hover {
    color: #fff;
}
.head-nav a:hover::after {
    width: 100%;
}
.head-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}
.head-socials {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.head-social {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.35rem;
    text-decoration: none;
    transition: all 0.3s ease-in;
}
.head-social:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}
.burger {
    display: none;
    background: none;
    border-radius: 50%;
    width: 2.6rem;
    height: 2.6rem;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color 0.25s ease;
}
.burger:hover {
    border-color: #fff;
}

/* Mobile menu */
.mob-menu {
    position: fixed;
    inset: 0;
    z-index: 200;
    visibility: hidden;
    pointer-events: none;
}
.mob-menu.open {
    visibility: visible;
    pointer-events: all;
}
.mob-menu-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.35s ease;
}
.mob-menu.open .mob-menu-overlay {
    opacity: 1;
}
.mob-menu-inner {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 100%;
    background: #111;
    display: flex;
    flex-direction: column;
    padding: 1.65rem 1.25rem;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.35s ease;
}
.mob-menu.open .mob-menu-inner {
    transform: translateX(0);
}
.mob-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mob-close {
    background: none;
    color: #fff;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: border-color 0.2s ease;
}
.mob-close:hover {
    border-color: #fff;
}
.mob-nav {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 1.5rem;
}
.mob-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: color 0.2s ease;
}
.mob-nav a:hover {
    color: #fff;
}

/* Hero */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    border-radius: 0 0 1.875rem 1.875rem;
    box-shadow: 0 4px 76.2px 0 rgba(0, 0, 0, 0.15);
}
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}
.hero-section .container {
    position: relative;
    z-index: 2;
}
.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 48rem;
    margin: 0 auto;
}
.hero-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
}
.hero-sub {
    margin: 0;
}

/* Brands section */
.section-title {
    text-align: center;
    font-weight: 600;
    font-size: 3rem;
    text-transform: uppercase;
    margin-bottom: 1.88rem;
}
.section-title.lil {
    font-size: 2rem;
}
.brands-box {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}
.brands-row {
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}
.brand-logo {
    height: 6.0625rem;
    width: auto;
    object-fit: contain;
    transition: opacity 0.25s ease;
    flex: 0 0 auto;
    scroll-snap-align: start;
}

.brands-row::-webkit-scrollbar {
    display: none;
}
.brands-row {
    scrollbar-width: none;
}

/* Photo + Stats Section */
.photo-stats-inner {
    display: flex;
    align-items: stretch;
    gap: 0.75rem;
}
.photo-stats-img-wrap {
    flex: 0 0 49%;
    border-radius: 1.85rem;
    overflow: hidden;
}
.photo-stats-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.photo-stats-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}
.stat-card {
    border-radius: 1.85rem;
    background: #fff;
    padding: 1.85rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.stat-num {
    font-size: 2.5rem;
}
.stat-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.9rem;
}
.stat-desc {
    font-size: 0.9rem;
    color: #00000070;
    margin: 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.625rem;
    align-items: stretch;
}

.mission-left-inner {
    background: #111;
    border-radius: 1.75rem;
    padding: 1.75rem;
    height: 37.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
}

.mission-title {
    font-size: 3rem;
    font-weight: 600;
    text-transform: uppercase;
    color: white;
}

.mission-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    margin: 0;
}

.mission-center {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.mission-right {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.mission-img-wrap {
    border-radius: 1.25rem;
    overflow: hidden;
    height: 18.4375rem;
}

.mission-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mission-card {
    background: #fff;
    border-radius: 1.25rem;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 18.4375rem;
}

.mission-icon {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
}

.mission-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 0.8rem;
}

.mission-card-txt {
    font-size: 0.9rem;
    color: #00000075;
    margin-bottom: 0;
}

.faq-sticky-section {
    padding-top: 10rem;
}
.faq-sticky-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    min-height: 40rem;
}

.faq-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}
.faq-col--right {
    padding-top: 4.5rem;
}
.faq-item {
    max-width: 15rem;
}
.faq-col--right .faq-item {
    margin-left: auto;
}
.faq-center {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.faq-center-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    background: rgba(0, 0, 0, 0.3);
}
.faq-sticky-title {
    position: sticky;
    top: 50%;
    transform: translateY(-50%);
    width: 43.5rem;
    text-align: center;
    font-size: 3rem;
    line-height: 120%;
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.55);
    z-index: 2;
    text-shadow:
        0 4px 10px rgba(0, 0, 0, 0.176),
        0 0 20px rgba(0, 0, 0, 0.105);
}
.faq-btn-wrap {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.services-inner {
    background: #000000;
    border-radius: 1.875rem;
    padding: 3.125rem 1.875rem;
}
.services-title {
    font-size: 3rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    margin-bottom: 1rem;
}
.services-list {
    display: flex;
    flex-direction: column;
}
.service-row {
    display: grid;
    grid-template-columns: 4rem 1fr 1fr auto;
    align-items: center;
    gap: 1.5rem;
    padding: 1.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.service-row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}
.service-num {
    font-size: 0.9rem;
    text-align: left;
    color: rgba(255, 255, 255, 0.7);
}
.service-name {
    font-size: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    transition: color 0.25s ease;
    text-align: left;
}
.service-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-weight: 400;
    text-align: left;
    text-transform: capitalize;
}
.service-more {
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 400;
    text-align: left;
    text-transform: capitalize;
    text-decoration-line: underline;
    text-decoration-style: dotted;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: 7%;
    text-underline-offset: 25%;
    text-underline-position: from-font;
}
.service-more:hover {
    text-decoration: none;
}

.service-modal {
    color: white;
    position: fixed;
    inset: 0;
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}
.service-modal .content{
    margin-bottom: 2rem;
}
.service-modal.open {
    visibility: visible;
    pointer-events: all;
    opacity: 1;
}
.service-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}
.service-modal-box {
    position: relative;
    z-index: 1;
    background: #111;
    border-radius: 1.88rem;
    padding: 2.5rem;
    width: 44rem;
    max-height: 85vh;
    overflow-y: auto;
    scrollbar-width: none;
    transform: translateY(20px) scale(0.97);
    transition: transform 0.3s ease;
}
.service-modal-box::-webkit-scrollbar {
    display: none;
}
.service-modal.open .service-modal-box {
    transform: translateY(0) scale(1);
}
.service-modal-close {
    position: absolute;
    top: 1.35rem;
    right: 1.35rem;
    background: rgb(255, 255, 255);
    border: none;
    color: #000000;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.25s ease;
}
.service-modal-close:hover {
    background: #731311;
    color: white;
}
.service-modal-num {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 0.75rem;
}
.service-modal-title {
    font-size: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1.5rem;
}
.service-modal-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}
.service-modal-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-left: 1.25rem;
    margin-bottom: 2rem;
}
.service-modal-list li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}
.service-modal-btn {
    width: 100%;
}

/* Products Section */
.prod-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}
.prod-filter {
    height: 2.5rem;
    padding: 0 1.25rem;
    border-radius: 6.25rem;
    border: 1px solid rgba(0, 0, 0, 0.5);
    background: transparent;
    font-family: "Golos Text", sans-serif;
    font-size: 0.9rem;
    color: #000;
    cursor: pointer;
    transition: all 0.25s ease;
}
.prod-filter:hover {
    border-color: #000;
}
.prod-filter.active {
    background: #111;
    color: #fff;
    border-color: #111;
}
.prod-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.875rem 0.625rem;
    margin-bottom: 2rem;
}
.prod-grid.prod-grid2 {
    gap: 0.75rem;
}
.prod-card {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.prod-card[style*="display: none"] {
    display: none !important;
}
.prod-img-wrap {
    width: 100%;
    border-radius: 1.25rem;
    overflow: hidden;
    height: 21rem;
}
.prod-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.prod-card:hover .prod-img {
    transform: scale(1.04);
}
.prod-title {
    font-size: 1.25rem;
    font-weight: 600;
}
.prod-desc {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.7);
    margin: 0;
}
.prod-more-wrap {
    display: flex;
    justify-content: center;
}

/* Included Section */
.included-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.75rem;
    align-items: stretch;
}
.included-cards-col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.incl-card {
    background: #fff;
    border-radius: 1.875rem;
    padding: 1.88rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
    box-shadow: 0 4px 76.2px 0 rgba(0, 0, 0, 0.15);
    flex: 1;
}
.incl-icon {
    width: 6rem;
    height: 6rem;
    object-fit: contain;
}
.incl-card-bottom {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.incl-card-title {
    font-size: 1.25rem;
    font-weight: 600;
}
.incl-card-desc {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.7);
    margin: 0;
}
.included-img-wrap {
    border-radius: 1.875rem;
    height: 48rem;
    overflow: hidden;
    box-shadow: 0 4px 76.2px 0 rgba(0, 0, 0, 0.15);
}
.included-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.format-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    align-items: start;
}

.format-card {
    background: #fff;
    border-radius: 1.875rem;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    box-shadow: 0 4px 76.2px 0 rgba(0, 0, 0, 0.15);
}

.format-card:nth-child(even) {
    margin-top: 5rem;
}

.format-img-wrap {
    width: 100%;
    height: 16.7rem;
    border-radius: 1.25rem;
    overflow: hidden;
}

.format-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.format-card-title {
    font-size: 1.25rem;
    font-weight: 600;
}

/* Program Section */
.program-inner {
    background: #171717;
    border-radius: 1.875rem;
    padding: 3rem 1.875rem;
    color: #fff;
}
.program-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.prog-filter {
    height: 2.5rem;
    padding: 0 1.25rem;
    border-radius: 6.25rem;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: transparent;
    font-size: 0.9rem;
    color: #fff;
    cursor: pointer;
    transition: all 0.25s ease;
}

.prog-filter:hover {
    border-color: #fff;
}

.prog-filter.active {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.program-list {
    display: flex;
    flex-direction: column;
}

.program-item {
    display: flex;
    gap: 2rem;
    padding: 1.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255);
}

.program-item:first-child {
    padding-top: 0;
}

.program-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.program-time {
    flex: 0 0 14rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.program-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.program-topic {
    font-size: 1.25rem;
    font-weight: 600;
}

.program-speaker {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.speaker-img {
    width: 6.375rem;
    height: 6.375rem;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.speaker-info {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.speaker-name {
    font-weight: 700;
}

.speaker-position {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.prod-card.white-back {
    border-radius: 1.875rem;
    background: #fff;
    padding: 1.25rem;
}
.white-back.shadow {
    box-shadow: 0 3px 38px 0 rgba(0, 0, 0, 0.15);
}
.prod-card.white-back .prod-img-wrap {
    height: 18.5rem;
}
.prod-card.white-back .prod-img-wrap2 {
    height: 15.6rem;
    margin-bottom: 1rem;
}

.mission-grid.advantages .mission-card {
    background: none;
    border-radius: 0;
    border-right: 1px solid rgba(0, 0, 0, 0.311);
}
.mission-grid.advantages .mission-card:last-child {
    border-right: 0;
}

.mission-card.adv-card {
    box-shadow: 0 4px 76.2px 0 rgba(0, 0, 0, 0.15);
}
.adv-img {
    height: 100%;
    width: 100%;
    box-shadow: 0 4px 76.2px 0 rgba(0, 0, 0, 0.15);
    border-radius: 1.875rem;
}

/* Why Us Section */
.why-us-inner {
    position: relative;
    border-radius: 1.875rem;
    overflow: hidden;
    min-height: 48rem;
    background: #111;
    box-shadow: 0 4px 76.2px 0 rgba(0, 0, 0, 0.15);
    padding-top: 2.5rem;
}

.why-us-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.why-us-title {
    position: relative;
    z-index: 2;
    color: #fff;
    margin: 0;
}

.why-tags-container {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.why-tag {
    position: absolute;
    background: rgba(30, 30, 30, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6.25rem;
    padding: 0.625rem 1rem;
    display: inline-flex;
    align-items: center;
    gap: 1.35rem;
    pointer-events: all;
    cursor: default;
}

.why-tag-dot {
    width: 1.6rem;
    height: 1.6rem;
    background: rgba(255, 255, 255, 0.267);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-tag-dot::after {
    content: "";
    width: 1rem;
    height: 1rem;
    background: #fff;
    border-radius: 50%;
}

.why-tag-text {
    color: #fff;
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.875rem 0.625rem;
    margin-bottom: 2rem;
}
.case-grid .prod-img-wrap {
    height: 30.1875rem;
}

/* Reviews Section */
.reviews-slider-wrap {
    position: relative;
}

.reviews-track {
    margin: 0 -0.4rem;
    padding: 0 4rem;
}

.review-slide {
    padding: 0 0.4rem;
    outline: none;
    height: auto;
}

.reviews-track .slick-track {
    display: flex !important;
}
.reviews-track .slick-slide {
    height: inherit !important;
}

.review-card {
    background: #fff;
    border-radius: 1.5rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    height: 100%;
}

.review-head {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-avatar {
    width: 6.35rem;
    height: 6.35rem;
    border-radius: 50%;
    object-fit: cover;
}

.review-author-info {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.review-stars {
    color: #ffb800;
    font-size: 1.5rem;
    letter-spacing: 0.15rem;
    line-height: 1;
}

.review-name {
    font-size: 1.15rem;
    font-weight: 700;
}

.review-position {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.7);
}

.review-text {
    color: rgba(0, 0, 0, 0.7);
    margin: 0;
}

.review-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3.125rem;
    height: 3.125rem;
    border-radius: 50%;
    border: none;
    background: #a6a6a6;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.25s ease-in;
}

.review-btn.prev-btn {
    left: 0;
}

.review-btn.next-btn {
    right: 0;
}

.review-btn:hover {
    background: #731311;
}

.review-btn.slick-disabled {
    /* opacity: 0.5; */
    cursor: not-allowed;
}
.review-btn.slick-disabled:hover {
    background: #a6a6a6;
}

/* Video Reviews Section */
.video-card {
    display: block;
    border-radius: 1.875rem;
    overflow: hidden;
    position: relative;
    transform: translateZ(0);
    text-decoration: none;
}

.video-img-wrap {
    position: relative;
    width: 100%;
    height: 36rem;
}

.video-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition:
        opacity 0.3s ease,
        transform 0.4s ease;
}

.play-btn-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 3.65rem;
    height: 3.65rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.play-btn-overlay svg {
    width: 2rem;
    height: 2rem;
    fill: #fff;
}

.video-card:hover .video-img {
    opacity: 1;
    transform: scale(1.04);
}

.video-card:hover .play-btn-overlay {
    background: #731311;
    border-color: #731311;
    transform: translate(-50%, -50%) scale(1.1);
}

.photo-report-section {
    overflow: hidden;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    margin-top: 2rem;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scrollMarquee 30s linear infinite;
}

.photo-report-item {
    flex: 0 0 auto;
    width: 26.5rem;
    height: 18.75rem;
    border-radius: 1.25rem;
    overflow: hidden;
    display: block;
    margin-right: 1rem;
    transform: translateZ(0);
}

.photo-report-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.arc-desktop-wrap {
    position: relative;
    height: 27rem;
    overflow: hidden;
}

.arc-bg-img {
    position: absolute;
    inset: 0;
    width: 60%;
    /* height: 100%; */
    object-position: center top;
    z-index: -1;
    left: 50%;
    transform: translateX(-50%);
}

.arc-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.85rem;
}

.arc-desc {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.7);
    margin: 0;
}

.arc-txt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8rem;
}
.arc-abs-text {
    width: 25rem;
}

.arc-left {
    text-align: right;
}

.arc-center {
    text-align: center;
}

.arc-right {
    text-align: left;
}

.arc-big-title {
    text-align: center;
    font-size: 3rem;
    line-height: 120%;
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.55);
    z-index: 2;
    text-shadow:
        0 4px 10px rgba(0, 0, 0, 0.176),
        0 0 20px rgba(0, 0, 0, 0.105);
}

/* Steps Section */
.steps-grid {
    display: grid;
    grid-template-columns: 4fr 8fr;
    gap: 1rem;
}

.steps-left {
    position: relative;
    border-radius: 1.875rem;
    overflow: hidden;
    min-height: 30.1875rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.steps-left::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.steps-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.steps-btn-wrap {
    position: relative;
    z-index: 1;
    padding: 0 1.35rem 1.625rem 1.35rem;
    width: 100%;
}

.steps-btn {
    width: 100%;
}

/* Правая часть с карточками */
.steps-right {
    display: flex;
    flex-direction: column;
}

.step-card {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 1.25rem;
    padding: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    flex: 1;
}

.step-dots {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    flex-shrink: 0;
    margin-top: 0.35rem;
}

.step-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: #d9d9d9;
    transition: all 0.3s ease;
}

.step-dot.active {
    background: #731311;
}

.step-text {
    font-size: 1.5rem;
    font-weight: 500;
}

/* Tariffs Section */
.tariffs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    overflow: visible;
    padding-bottom: 3.25rem;
}

.tariff-card {
    background: #fff;
    border-radius: 1.875rem;
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 76.2px 0 rgba(0, 0, 0, 0.15);
}

.tariff-name {
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 1.5rem;
}

.tariff-list {
    list-style: none;
    padding: 0;
    margin-bottom: 3.5rem;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.tariff-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(0, 0, 0, 0.7);
}

.tariff-list li svg {
    flex-shrink: 0;
}

.tariff-bottom {
    margin-top: auto;
}

.tariff-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.tariff-price-label {
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
}

.tariff-price-val {
    font-size: 1.25rem;
    font-weight: 500;
}

.tariff-btn {
    width: 100%;
}

/* Booking Section */
.booking-inner {
    background: #731311;
    border-radius: 1.875rem;
    padding: 2.5rem;
    color: #fff;
}
.booking-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}
.booking-title {
    font-size: 2.25rem;
    text-transform: uppercase;
    margin: 0;
    max-width: 60%;
}
.booking-head-right {
    text-align: right;
    font-size: 0.9rem;
    opacity: 0.7;
}
.booking-form .result{
    text-align: center;
}
.booking-form .result p{
    color: white!important;
}
.booking-head-right *{
    margin: 0;
}
.booking-info {
    display: flex;
    gap: 3.5rem;
    margin-bottom: 1.8rem;
}
.info-label {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 0.65rem;
    font-weight: 500;
}
.info-val {
    font-size: 1.25rem;
    font-weight: 500;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.675rem;
    margin-bottom: 2rem;
}
.form-input,
.form-select {
    width: 100%;
    height: 2.75rem;
    padding: 0.625rem 1.25rem;
    border-radius: 0.5rem;
    border: none;
    font-size: 0.9rem;
    color: #000000;
    background: #fff;
    outline: none;
}
.form-select {
    color: rgba(0, 0, 0, 0.7) !important;
}
.form-input::placeholder {
    color: rgba(0, 0, 0, 0.7);
}
.form-select {
    appearance: none;
    cursor: pointer;
    color: rgba(0, 0, 0, 0.7);
    background-image: url("data:image/svg+xml,%3Csvg width='13' height='7' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L7 7L13 1' stroke='%23111' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}
.form-select:focus,
.form-select:valid {
    color: #111;
}
.form-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}
.form-policy {
    font-size: 0.85rem;
    opacity: 0.7;
}
.form-policy a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.form-policy a:hover {
    text-decoration: none;
}

/* FAQ Accordion Section */
.faq-accordion-list {
    max-width: 60rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-top: 1rem;
}
.faq-acc-item {
    display: flex;
    flex-direction: column;
}
.faq-acc-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 1.5rem;
}
.faq-acc-title {
    font-size: 1.5rem;
    font-weight: 700;
}
.faq-acc-btn {
    width: 2.375rem;
    height: 2.375rem;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}
.faq-acc-btn::before,
.faq-acc-btn::after {
    content: "";
    position: absolute;
    background: #111;
    transition: transform 0.3s ease;
}
.faq-acc-btn::before {
    width: 1.05rem;
    height: 1px;
}
.faq-acc-btn::after {
    width: 1px;
    height: 1.05rem;
}
.faq-acc-item.active .faq-acc-btn::before,
.faq-acc-item.active .faq-acc-btn::after {
    transform: rotate(45deg);
}

.faq-acc-body {
    display: none;
    padding-top: 1rem;
    padding-right: 2.5rem;
}
.faq-acc-body p {
    margin: 0;
    color: rgba(0, 0, 0, 0.7);
}

/* Guarantees Section */
.guarantees-section {
    position: relative;
    border-radius: 1.875rem;
    overflow: hidden;
    padding: 2rem 0;
    color: #fff;
    height: 41rem;
}
.guarantees-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.guarantees-content {
    position: relative;
    z-index: 1;
}

.guarantees-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 4.5rem;
    padding-left: 4rem;
}
.guarantee-card {
    border-radius: 1.25rem;
    border: 1px solid #ffffff77;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(13.300000190734863px);
    border-radius: 1.25rem;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 22rem;
    gap: 1.65rem;
}
.guarantee-card:nth-child(3),
.guarantee-card:nth-child(4) {
    margin-left: 5rem;
}
.g-dot {
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}
.g-dot::after {
    content: "";
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: #fff;
}
.g-title {
    font-size: 1.25rem;
    font-weight: 700;
}
.g-desc {
    color: rgba(255, 255, 255);
    margin: 0;
}

/* Contact Form Section */
.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: stretch;
}
.contact-img-wrap {
    border-radius: 1.875rem;
    overflow: hidden;
    flex: 1;
}
.contact-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.contact-form-box {
    background: #000;
    border-radius: 1.875rem;
    padding: 1.875rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.contact-title {
    font-size: 2rem;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0 0 1.75rem 0;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.contact-form-box .contact-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.contact-submit-btn {
    width: 100%;
}
.contact-form-box .form-input {
    border-radius: 10rem;
}

.contact-card-box {
    background: #fff;
    border-radius: 1.875rem;
    padding: 1.88rem;
    max-width: 59rem;
    margin: 0 auto;
}
.contact-card-title {
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.contact-card-desc {
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 1.88rem;
}
.contact-card-form {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.form-input.bordered,
.form-select.bordered {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10rem;
}
.contact-methods {
    margin-top: 0.5rem;
}
.methods-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 0.75rem;
}
.methods-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}
.method-radio {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 1px solid #000;
    border-radius: 6.25rem;
    height: 3.125rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #000;
}
.method-radio input {
    display: none;
}
.method-custom {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    border: 1px solid #111;
    display: flex;
    align-items: center;
    justify-content: center;
}
.method-radio input:checked + .method-custom::after {
    content: "";
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background: #111;
}
.form-policy.alt {
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.7);
}
.form-policy.alt a {
    color: rgba(0, 0, 0, 0.7);
}
.contact-card-btn {
    width: 100%;
}

.quiz-box {
    background: #171717;
    border-radius: 1.875rem;
    padding: 1.85rem;
    color: #fff;
}
.quiz-main-title {
    font-size: 2rem;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0 0 2.15rem 0;
}
.quiz-step {
    font-weight: 500;
    margin-bottom: 0.5rem;
}
.quiz-question {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.8rem;
}
.quiz-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
    margin-bottom: 1.5rem;
}
.quiz-option {
    background: #fff;
    border-radius: 6.25rem;
    height: 3.25rem;
    display: flex;
    align-items: center;
    padding: 0 1.25rem;
    gap: 0.625rem;
    cursor: pointer;
    color: #111;
}
.quiz-option input {
    display: none;
}
.quiz-radio {
    width: 1.3rem;
    height: 1.3rem;
    border-radius: 50%;
    border: 2px solid #731311;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.quiz-option input:checked + .quiz-radio::after {
    content: "";
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 50%;
    background: #731311;
}
.quiz-text {
    font-size: 1rem;
    font-weight: 500;
}
.quiz-bottom {
    display: flex;
    justify-content: flex-end;
}
.quiz-prev-btn{
    width: 20rem;
    gap: 1rem;
    align-items: center;
    margin-right: 1rem;
}
.quiz-prev-btn svg{
    transform: rotate(-180deg);
}
.quiz-next-btn {
    width: 20rem;
    gap: 1rem;
    align-items: center;
}

.timer-section {
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
    color: #fff;
    background: #111;
}
.timer-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.timer-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.timer-inner {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 6rem;
}
.timer-item {
    display: flex;
    align-items: baseline;
    gap: 0.65rem;
}
.timer-val {
    font-size: 3.15rem;
    font-weight: 500;
    line-height: 1;
}

/* Contacts Section */
.contacts-grid {
    display: grid;
    grid-template-columns: 24rem 1fr;
    gap: 1rem;
}
.contacts-info {
    background: #111;
    color: #fff;
    border-radius: 1.875rem;
    padding: 1.875rem;
}
.text-left {
    text-align: left;
}
.contact-item {
    margin-bottom: 1.5rem;
}
.contact-item:last-child {
    margin-bottom: 0;
}
.contact-item a{
    color: white;
}
.contact-item a:hover{
    color: white;
    opacity: 0.7;
}
.contact-label {
    color: #7b7b7b;
    text-transform: uppercase;
    margin-bottom: 0.65rem;
}
.contacts-map {
    border-radius: 1.875rem;
    overflow: hidden;
    min-height: 30rem;
    background: #e5e3df;
}

/* Footer Section */
.main-footer {
    width: 100%;
    background: #000;
}
.footer-grid {
    display: grid;
    grid-template-columns: 5fr 5.5fr;
    min-height: 35rem;
}
.footer-left {
    position: relative;
    overflow: hidden;
}
.footer-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.footer-right {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    color: #fff;
}
.footer-logo {
    display: block;
    width: 13.4375rem;
    height: 2.6875rem;
}
.footer-logo img {
    width: 100%;
    height: auto;
    display: block;
}
.footer-body {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex: 1;
}
.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}
.footer-nav a {
    color: rgb(255, 255, 255);
    transition: all 0.3s ease-in;
}
.footer-nav a:hover {
    color: #ff090d;
}
.footer-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.25rem;
}

.hero-inner .btn {
    /* opacity: 1 !important; */
    visibility: visible !important;
    /* transform: translate(0, 0) !important; */
    z-index: 10;
}