body {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    background: #f5f5f5;
}
button,
input {
    font-family: "Inter", sans-serif;
    font-weight: 400;
}

.container {
    width: 83.75rem;
}
section {
    margin-bottom: 3.25rem;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.25rem 0;
    transition:
        background 0.3s ease,
        backdrop-filter 0.3s ease;
}
header.scrolled {
    background: rgb(0, 0, 0);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.head-logo img {
    height: 2.6rem;
    width: auto;
    object-fit: contain;
}
.head-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.head-nav a {
    color: rgba(255, 255, 255);
    font-size: 0.9rem;
    text-decoration: none;
    position: relative;
    transition: color 0.35s ease;
}
.head-nav a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #fff;
    transition: width 0.3s ease;
}
.head-nav a:hover {
    color: #fff;
}
.head-nav a:hover::after {
    width: 100%;
}
.head-right {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.btn {
    background: transparent;
    display: flex;
    height: 2.75rem;
    padding: 0.625rem 1.25rem;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    min-width: 13.5rem;
}
.btn.transparent {
    border: 1px solid #fff;
    color: #fff;
}
.btn.transparent:hover {
    background: #fff;
    color: #000;
}
.btn.transparent2 {
    border: 1px solid #000000;
    color: #000000;
}
.btn.transparent2:hover {
    background: #000000;
    color: #ffffff;
}
.btn.white {
    color: #000;
    background: #fff;
}
.btn.white:hover {
    color: #fff;
    background: #000;
}
.btn-black {
    background: #000;
    color: #fff;
}
.btn-black2 {
    background: #000;
    color: #fff;
}
.btn-black:hover {
    background: #7220ce;
    color: #fff;
}
.btn-black2:hover {
    background: #fff;
    color: #000;
}
.btn.purple {
    background: #7220ce;
    color: #fff;
}
.btn.purple:hover {
    background: #000;
}
.btn.purple2 {
    background: #7220ce;
    color: #fff;
}
.btn.purple2:hover {
    background: #ffffff;
    color: #000000;
}
.btn.lil-width {
    width: 20.5rem;
}
.btn.width {
    width: 25rem;
}
.btn.mid-width {
    width: 27.625rem;
}

/* Burger */
.burger {
    display: none;
    background: none;
    border: 1px solid rgb(255, 255, 255);
    color: #fff;
    width: 2.65rem;
    height: 2.65rem;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.25rem;
    transition: border-color 0.2s 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: #0a0514;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    padding: 1.25rem 15px;
    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;
    border: 1px solid rgba(255, 255, 255);
    color: #fff;
    width: 2.65rem;
    height: 2.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.25rem;
    transition: border-color 0.2s ease;
}
.mob-close:hover {
    border-color: #fff;
}
.mob-nav {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.mob-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: color 0.2s ease;
}
.mob-nav a:hover {
    color: #fff;
}

.hero-section {
    position: relative;
    height: 42rem;
    display: flex;
    align-items: flex-end;
    color: #fff;
    overflow: hidden;
}
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}
.hero-section > * {
    position: relative;
    z-index: 2;
}
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero-section .container {
    position: relative;
    z-index: 1;
}
.hero-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 3rem;
}
.hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    max-width: 51rem;
}
.hero-left-sec {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}
.hero-sub {
    margin: 0;
}
.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    color: #fff;
}
.hero-socials {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.hero-social {
    width: 2.8rem;
    height: 2.8rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    text-decoration: none;
    transition:
        border-color 0.25s ease,
        background 0.25s ease;
}
.hero-social:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Partners Section */
.section-title {
    font-size: 1.95rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
}
.section-title.white {
    color: #fff;
}
.section-title span {
    color: #757575;
}
.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    row-gap: 1.25rem;
    column-gap: 0.625rem;
}
.partners-item {
    height: 5.75rem;
    width: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
.partners-item img {
    height: 100%;
    width: 100%;
    position: absolute;
    inset: 0;
    transition: all 0.25s ease-in;
    filter: brightness(0) invert(0);
}

.partners-item img:hover {
    transform: scale(1.15);
}

.about-card {
    padding: 0.625rem 0.4rem;
    background: white;
}
.about-img-wrap {
    width: 100%;
    height: 16.375rem;
    overflow: hidden;
    position: relative;
}
.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about-card-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.about-desc {
    margin: 0;
}
.about-person-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.about-person-role {
    margin: 0;
    opacity: 0.7;
    font-size: 0.9rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 1.5rem;
    row-gap: 2.5rem;
}

.stat-label {
    font-weight: 700;
    font-size: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.502);
    margin-bottom: 1.25rem;
}
.stat-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.stat-num {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}
.stat-desc {
    margin: 0;
}

/* Problems Section */
.problems-list {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
    gap: 1rem;
}
.problem-item {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 2.8rem;
    background: #fff;
}
.problem-title {
    font-size: 1.5rem;
    font-weight: 700;
}
.problem-desc {
    margin: 0;
}

/* Problems2 Section */
.problems2-section {
    position: relative;
    overflow: hidden;
    padding: 3.5rem 0;
    color: #fff;
}
.problems2-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.problems2-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
}
.problems2-section .container {
    position: relative;
    z-index: 2;
}

.problems2-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    gap: 8rem;
}
.problems2-all {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.problems2-card {
    display: flex;
    width: 27.5rem;
    padding: 1.25rem;
    flex-direction: column;
    gap: 2.5rem;
    border-radius: 0.625rem;
    border: 0.5px solid #fff;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}
.problems2-name {
    font-size: 1.5rem;
    font-weight: 700;
}
.problems2-content.end {
    display: flex;
    width: 100%;
    justify-content: end;
}

/* Products Section */
.prod-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.prod-card {
    background: #fff;
    display: flex;
    flex-direction: column;
}
.prod-img-wrap {
    width: 100%;
    height: 11.25rem;
    overflow: hidden;
}
.prod-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.25s ease-in;
}
.prod-card:hover .prod-img {
    transform: scale(1.1);
}
.prod-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    flex: 1;
}
.prod-title {
    font-weight: 700;
    font-size: 1.5rem;
}
.prod-desc {
    margin: 0;
    opacity: 0.7;
    flex: 1;
}

/* Services Section */
.serv-left {
    position: sticky;
    top: 6rem;
    height: 34.25rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    color: #fff;
}
.serv-left-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.serv-left::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}
.serv-left-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 1.88rem;
    color: #fff;
}
.serv-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.serv-card {
    background: #fff;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
}
.serv-card-title {
    font-size: 1.5rem;
    font-weight: 700;
}
.serv-line {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.521);
    margin: 0 0 1.5rem 0;
}
.op_content{
    opacity: 0.7;
}
.serv-ul {
    padding-left: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.serv-ul li {
    line-height: 1.2;
    opacity: 0.7;
}

/* Included Section */
.incl-img-wrap {
    width: 100%;
    height: 26.5rem;
    overflow: hidden;
}
.incl-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.incl-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.incl-item {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
}
.incl-num {
    opacity: 0.7;
    white-space: nowrap;
    margin-top: 0.2rem;
}
.incl-content {
    display: flex;
    flex-direction: column;
}
.incl-title {
    font-size: 1.5rem;
    font-weight: 700;
}
.incl-desc {
    margin: 0;
    opacity: 0.7;
    line-height: 1.6;
}

/* Steps Section */
.steps-list {
    display: flex;
    flex-direction: column;
}
.steps-item {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.505);
    position: relative;
    overflow: hidden;
}
.steps-text {
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 1;
}
.steps-num {
    font-size: 11.5rem;
    font-weight: 400;
    color: #7220ce;
    line-height: 0.8;
    position: relative;
    bottom: -3rem;
}

/* Program Section */
.prog-wrap {
    background: #0a0514;
    color: #fff;
    overflow: hidden;
    margin-bottom: 1rem;
}
.prog-tabs {
    display: flex;
}
.prog-tab {
    flex: 1;
    padding: 1.2rem 1.15rem;
    background: #ffffff;
    border: none;
    color: rgb(0, 0, 0);
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease-in;
    text-align: center;
}
.prog-tab.active {
    background: #000000;
    color: #fff;
}
.prog-tab:hover:not(.active) {
    background: #7220ce;
    color: #ffffff;
}
.prog-body {
    padding: 0 1.88rem;
    padding-bottom: 0.65rem;
}
.prog-item {
    display: flex;
    align-items: flex-start;
    gap: 3.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgb(255, 255, 255);
}
.prog-item:last-child {
    border-bottom: none;
}
.prog-time {
    font-size: 1.5rem;
    font-weight: 700;
    padding-top: 0.1rem;
}
.prog-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.prog-title {
    font-size: 1.25rem;
    font-weight: 700;
}
.prog-speaker {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.prog-speaker-img {
    width: 6.375rem;
    height: 6.375rem;
    object-fit: cover;
    flex-shrink: 0;
}
.prog-speaker-info {
    display: flex;
    flex-direction: column;
}
.prog-speaker-name {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}
.prog-speaker-role {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.2;
}

/* Speakers Section */
.spk-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.625rem;
    margin-bottom: 1.88rem;
}
.spk-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: white;
    padding: 0.4rem;
}
.spk-img-wrap {
    width: 100%;
    height: 18.5rem;
    margin-bottom: 1.25rem;
    overflow: hidden;
}
.spk-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}
.spk-card:hover .spk-img {
    transform: scale(1.05);
}
.spk-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.spk-name {
    font-size: 1.5rem;
    font-weight: 700;
}
.spk-role {
    margin: 0;
    color: rgba(0, 0, 0, 0.7);
}
.spk-more-wrap {
    display: flex;
    justify-content: flex-end;
}

/* Advantages Section */
.adv-section {
    position: relative;
    padding: 3rem 0;
    color: #fff;
    overflow: hidden;
}
.adv-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.adv-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.201);
    z-index: 1;
}
.adv-section .container {
    position: relative;
    z-index: 2;
}

.advi-right {
    flex: 1;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}
.adv-col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}
.adv-col--offset {
    margin-top: 6rem;
}
.adv-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 4px 47.7px 0 rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(28.25px);
    height: 16.0625rem;
}
.adv-num {
    opacity: 0.7;
}
.adv-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.25rem;
}
.adv-desc {
    margin: 0;
    opacity: 0.7;
}

/* Advantages 2 Section */
.adv2-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.625rem;
}
.adv2-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    height: 17rem;
}
.adv2-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.4s ease-in;
}
.adv2-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease-in;
}
.adv2-card.active .adv2-card-bg,
.adv2-card:hover .adv2-card-bg {
    opacity: 1;
}
.adv2-card.active::before,
.adv2-card:hover::before {
    opacity: 1;
}
.adv2-card.active .adv2-num,
.adv2-card:hover .adv2-num {
    color: rgba(255, 255, 255, 0.7);
}
.adv2-card.active .adv2-card-title,
.adv2-card:hover .adv2-card-title {
    color: #fff;
}
.adv2-card.active .adv2-card-desc,
.adv2-card:hover .adv2-card-desc {
    color: rgba(255, 255, 255, 0.75);
}
.adv2-card-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 1.25rem;
    flex: 1;
    gap: 3rem;
}
.adv2-num {
    color: rgba(0, 0, 0, 0.7);
    transition: color 0.35s ease;
}
.adv2-card-bottom {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.adv2-card-title {
    font-size: 1.45rem;
    font-weight: 700;
    color: #000;
    transition: color 0.35s ease;
}
.adv2-card-desc {
    margin: 0;
    color: rgba(0, 0, 0, 0.7);
    transition: color 0.35s ease;
}

/* Why Section */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.625rem;
}
.why-col {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}
.why-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 16.875rem;
}
.why-card--big {
    height: 34.375rem;
}
.why-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.4s ease;
}
.why-card:hover .why-card-bg {
    /* transform: scale(1.05); */
}
/* .why-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.15) 100%
    );
    z-index: 1;
} */
.why-card-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: end;
    height: 100%;
    padding: 2.5rem 1.25rem;
    flex: 1;
    gap: 0.725rem;
    color: #fff;
}
.why-card--big .why-card-inner {
    justify-content: unset;
}
.why-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}
.why-card-desc {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

/* CTA Section */
.cta-inner {
    display: flex;
    align-items: stretch;
}

.cta-left {
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.25rem;
    width: 50%;
    flex-shrink: 0;
    height: 33.25rem;
}
.cta-desc {
    margin: 0;
    color: rgba(0, 0, 0, 0.7);
}
.cta-right {
    position: relative;
    height: 33.25rem;
    flex: 1;
    overflow: hidden;
}
.cta-slider {
    height: 100%;
}
.cta-slide {
    height: 100%;
}
.cta-slide-img {
    width: 100%;
    object-fit: cover;
    height: 33.25rem;
    display: block;
}
.cta-arr {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: background 0.25s ease-in;
}
.cta-arr:hover {
    background: #fff;
}
.cta-arr--prev {
    left: 1.25rem;
    padding-right: 0.12rem;
}
.cta-arr--next {
    right: 1.25rem;
    padding-left: 0.12rem;
}

/* Reviews Section */
.reviews-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
}
.reviews-head-left {
    max-width: 32rem;
}
.reviews-arrows {
    display: flex;
    gap: 0.625rem;
    flex-shrink: 0;
}
.rev-arr {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    border: 2px solid #7220ce;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s ease;
}
.rev-arr:hover {
    background: #7220ce;
}
.rev-arr:hover svg path {
    stroke: #fff;
}
.reviews-slider .slick-list {
    overflow: visible;
}
.rev-arr--prev {
    padding-right: 0.13rem;
}
.rev-arr--next {
    padding-left: 0.13rem;
}
.reviews-slider {
    overflow: hidden;
}
.rev-card {
    background: #fff;
    padding: 1.25rem;
    display: flex !important;
    flex-direction: column;
    margin-right: 0.625rem;
}

.reviews-slider.col-md-8 {
    overflow: hidden;
    padding: 0;
}
.reviews-slider .slick-track {
    display: flex;
}
.reviews-slider .slick-slide {
    height: auto;
    padding-right: 0.625rem;
    box-sizing: border-box;
}
.rev-card-top {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 1rem;
}
.rev-avatar {
    width: 6.375rem;
    height: 6.375rem;
    object-fit: cover;
    flex-shrink: 0;
    background: #e8e8e8;
}
.rev-person {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.rev-stars {
    display: flex;
    gap: 0.2rem;
    color: #ffae00;
    font-size: 1rem;
}
.rev-name {
    font-weight: 700;
}
.rev-role {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.7);
}
.rev-text {
    margin: 0;
    color: rgba(0, 0, 0, 0.7);
}

.cta-read-more {
    display: none;
}
.reviews-head {
    margin-bottom: 1rem;
}

/* Rev Video Section */
.rev-video-slider.col-md-8 {
    overflow: hidden;
    padding: 0;
}
.rev-vid-card {
    padding-right: 0.625rem;
    box-sizing: border-box;
}
.rev-vid-wrap {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
}
.rev-vid-thumb {
    width: 100%;
    height: 37rem;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.35s ease;
}
.rev-vid-wrap:hover .rev-vid-thumb {
    transform: scale(1.04);
}
.rev-vid-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.105);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    transition: background 0.3s ease;
}
.rev-vid-wrap:hover .rev-vid-overlay {
    background: rgba(0, 0, 0, 0.292);
}
.rev-vid-play {
    width: 2.85rem;
    height: 2.85rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease;
    padding-left: 0.2rem;
}
.rev-vid-wrap:hover .rev-vid-play {
    background: rgba(255, 255, 255, 0.35);
}

/* Gallery Section */
.gallery-track-wrap {
    overflow: hidden;
    width: 100%;
}
.gallery-track {
    display: flex;
    gap: 0.625rem;
    width: max-content;
    animation: galleryScroll 20s linear infinite;
}
@keyframes galleryScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.gal-slide {
    display: block;
    flex-shrink: 0;
    overflow: hidden;
}
.gal-img {
    width: 27.5rem;
    height: 27.5rem;
    object-fit: cover;
    display: block;
}

/* How Section */
.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.how-card {
    background: #fff;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 18.3125rem;
    gap: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
}
.how-dots {
    display: flex;
    align-items: center;
    gap: 0.32rem;
}
.how-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: #d9d9d9;
    flex-shrink: 0;
}
.how-dot.active {
    background: #7220ce;
}
.how-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
}
.how-card--cta {
    position: relative;
    overflow: hidden;
    background: transparent;
    display: flex;
    justify-content: end;
    padding: 1.5rem;
    border: none;
}
.how-cta-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.how-card--cta .btn {
    position: relative;
    z-index: 2;
}

/* Tariffs Section */
.tariffs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.625rem;
}
.tariff-card {
    background: #fff;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2.5rem;
    min-height: 27rem;
}
.tariff-top {
    display: flex;
    flex-direction: column;
}
.tariff-name {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
}
.tarif_text ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.tarif_text li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(0, 0, 0, 0.7);
}
.tarif_text li::before {
    content: "";
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background: #7220ce
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8' fill='none'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
        center no-repeat;
    flex-shrink: 0;
}
.tariff-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.tariff-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.tariff-price-label {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
}
.tariff-price {
    font-size: 1.25rem;
    font-weight: 700;
}

/* Reg Section */
.reg-section {
    overflow: hidden;
}
.reg-inner {
    background: #7220ce;
    color: #fff;
    height: 25.625rem;
    display: flex;
    align-items: stretch;
    gap: 2.25rem;
    padding: 0 2.25rem;
}
.reg-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-top: 2rem;
}
.reg-fields {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}
.reg-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.625rem;
}
.reg-inp {
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
    height: 2.75rem;
    padding: 0.625rem 1.25rem;
    color: rgba(0, 0, 0, 0.7);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.25s ease;
    width: 100%;
}
.reg-inp::placeholder {
    color: rgba(0, 0, 0, 0.7);
}
.reg-inp:focus {
    border-color: rgba(0, 0, 0, 0.8);
}
.reg-select-wrap {
    position: relative;
    display: flex;
}
.reg-select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    width: 100%;
}
.reg-select option {
    color: #000;
    background: #fff;
}
.reg-select-arrow {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}
.reg-bottom {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.result{
    text-align: center;
    font-size: 0.9rem;
}

.modal .section-title{
    font-size: 1.45rem;
    margin: 2rem 0;
}
.reg-policy {
    margin: 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
    flex: 1;
}
.reg-policy a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: underline;
}
.reg-policy a:hover {
    color: #fff;
}
.reg-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
    height: 28.4375rem;
    position: relative;
    bottom: 1.3rem;
}
.reg-divider-dot {
    width: 2.8125rem;
    height: 2.8125rem;
    border-radius: 50%;
    background: #f5f5f5;
    flex-shrink: 0;
}
.reg-divider-line {
    flex: 1;
    width: 0.4375rem;
    background-image: repeating-linear-gradient(
        to bottom,
        #fff 0,
        #fff 6px,
        transparent 6px,
        transparent 12px
    );
}
.reg-right {
    width: 18rem;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    padding-top: 0.5rem;
    color: #fff;
    padding-top: 2rem;
}
.reg-notice {
    color: rgba(255, 255, 255, 0.7);
}
.reg-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}
.reg-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.reg-info-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}
.reg-info-val {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

.spk-grid.third {
    grid-template-columns: repeat(3, 1fr);
}
.spk-grid.third .spk-card {
    padding: 1.25rem;
}
.spk-grid.third .spk-info {
    gap: 0.65rem;
}

/* FAQ Section */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.faq-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding-bottom: 1rem;
    cursor: pointer;
}
.faq-question {
    font-size: 1.5rem;
    font-weight: 700;
    flex: 1;
}
.faq-btn {
    width: 2.5rem;
    height: 2.5rem;
    background: #7220ce;
    border: none;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s ease-in;
}
.faq-btn:hover {
    background: #5a19a8;
}
.faq-btn svg {
    transition: transform 0.3s ease;
}
.faq-item.open .faq-btn svg {
    transform: rotate(45deg);
}
.faq-body {
    display: none;
    padding-bottom: 1.25rem;
}
.faq-item.open .faq-body {
    display: block;
}
.faq-answer {
    margin: 0;
    color: rgba(0, 0, 0, 0.7);
}

/* Contact Section */
.contact-inner {
    display: flex;
    background: #000;
    padding: 1.875rem;
    gap: 4rem;
}
.contact-left {
    flex: 1;
}
.contact-title {
    font-size: 1.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}
.contact-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}
.contact-inp {
    width: 100%;
    height: 2.75rem;
    padding: 0.625rem 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
    color: #000;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.25s ease;
}
.contact-inp::placeholder {
    color: rgba(0, 0, 0, 0.5);
}
.contact-inp:focus {
    border-color: #7220ce;
}
.contact-policy {
    margin: 0.625rem 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}
.contact-policy-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: underline;
}
.contact-policy-link:hover {
    color: #fff;
}

/* Lead Section */
.lead-desc {
    color: rgba(0, 0, 0, 0.7);
}
.lead-form {
    display: flex;
    flex-direction: column;
}
.lead-inp {
    width: 100%;
    height: 2.85rem;
    padding: 0.625rem 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
    color: #000;
    font-size: 0.9rem;
    transition: border-color 0.25s ease;
}
.lead-inp::placeholder {
    color: rgba(0, 0, 0, 0.45);
}
.lead-inp:focus {
    border-color: #7220ce;
}
.lead-select-wrap {
    position: relative;
    width: 100%;
}
.lead-select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    color: rgba(0, 0, 0, 0.45);
}
.lead-select option {
    color: #000;
}
.lead-select-arrow {
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}
.lead-way-label {
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
}
.lead-ways {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.625rem;
}
.lead-way {
    cursor: pointer;
}
.lead-radio {
    display: none;
}
.lead-way-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    height: 3rem;
    border: 1px solid rgb(0, 0, 0);
    background: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
}
.lead-way-btn::before {
    content: "";
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 50%;
    border: 1.5px solid rgb(0, 0, 0);
    flex-shrink: 0;
    transition: all 0.25s ease;
}
.lead-radio:checked + .lead-way-btn {
    border-color: #7220ce;
    color: #7220ce;
}
.lead-radio:checked + .lead-way-btn::before {
    border-color: #7220ce;
    background: #7220ce;
    box-shadow: inset 0 0 0 2px #fff;
}
.lead-policy {
    font-size: 0.8rem;
    color: rgba(0, 0, 0, 0.45);
    margin: 0;
}
.lead-policy a {
    font-size: 0.8rem;
    color: rgba(0, 0, 0, 0.45);
    text-decoration: underline;
}
.lead-policy a:hover {
    color: rgb(0, 0, 0);
    text-decoration: unset;
}

/* Quiz Section */
.quiz-inner {
    background: #000;
    padding: 1.875rem;
    color: #fff;
}
.quiz-step {
    display: none;
}
.quiz-step.active {
    display: block;
}
.quiz-step-label {
    font-weight: 500;
    margin: 0;
}
.quiz-question {
    font-size: 1.5rem;
    font-weight: 700;
}
.quiz-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.625rem;
    margin-bottom: 1.35rem;
}
.quiz-opt {
    cursor: pointer;
}
.quiz-radio {
    display: none;
}
.quiz-opt-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    height: 3.25rem;
    padding: 0.625rem 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
    color: #000000;
    cursor: pointer;
    transition: all 0.25s ease;
}
.quiz-opt-btn::before {
    content: "";
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 50%;
    background: #9a9a9a;
    flex-shrink: 0;
    transition: all 0.25s ease;
}
.quiz-radio:checked + .quiz-opt-btn {
    border-color: #f24822;
}
.quiz-radio:checked + .quiz-opt-btn::before {
    background: #f24822;
}
.quiz-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 1rem;
}
.quiz-next {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 20rem;
    font-family: "Inter", sans-serif;
    font-size: 0.9rem;
    height: 3rem;
    cursor: pointer;
}
.quiz-prev {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 20rem;
    font-family: "Inter", sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    color: #fff;
    height: 3rem;
    padding: 0 1.25rem;
    transition: border-color 0.25s ease;
}
.quiz-prev:hover {
    border-color: #fff;
}
.quiz-final-form {
    display: flex;
    gap: 0.625rem;
    align-items: center;
}
.quiz-final-form .lead-inp {
    flex: 1;
}
.quiz-submit-btn {
    cursor: pointer;
    height: 2.85rem;
    min-width: 14rem;
}

/* Countdown Section */
.countdown-section {
    position: relative;
    overflow: hidden;
    height: 10rem;
    display: flex;
    color: #fff;
    align-items: center;
}
.countdown-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.countdown-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}
.countdown-section .container {
    position: relative;
    z-index: 2;
}
.countdown-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6rem;
}
.countdown-item {
    display: flex;
    align-items: baseline;
    gap: 0.7rem;
}
.countdown-num {
    font-size: 3.25rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

/* Contacts Section */
.con-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.contacts-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.contacts-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.contacts-label {
    font-weight: 500;
    text-transform: uppercase;
    color: #7B7B7B;
}
.contacts-val {
    font-weight: 500;
    color: #191919;
    transition: color 0.25s ease;
}
.contacts-val:hover {
    text-decoration: underline;
}
.contacts-map {
    width: 100%;
    height: 28rem;
    overflow: hidden;
}
.contacts-map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Footer */
.footer {
    background: #000000;
    color: #fff;
}
.footer-inner {
    display: flex;
    align-items: stretch;
    min-height: 35rem;
}
.footer-img-side {
    width: 50%;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}
.footer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.footer-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    padding: 2.5rem;
    align-items: end;
}
.footer-logo-img {
    height: 2.6rem;
    width: auto;
    object-fit: contain;
    margin-bottom: 2.5rem;
}
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 2.15rem;
}
.footer-nav a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.25s ease;
}
.footer-nav a:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.footer-nav a:hover {
    color: #fff;
    text-decoration: underline;
}
.footer-socials {
    display: flex;
    gap: 0.625rem;
}
.footer-social {
    width: 2.8rem;
    height: 2.8rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    text-decoration: none;
    transition: all 0.25s ease;
}
.footer-social:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}
.footer-cta {
    min-width: 16rem;
}
.foot-bot{
    display: flex;
    align-items: end;
    flex-direction: column;
    gap: 1rem;
}
.hidden-spk-card{
    display: none;
}
.page{
    padding: 4rem 0;
}