/* ================= RESET ================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 80px; /* высота хедера */
}
@font-face {
    font-family: 'BebasNeue';
    src: url('./fonts/BebasNeue.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


body {
    background: #0B0F0A;
    color: #fff;
    line-height: 1.5;
    font-family: "Inter", sans-serif;
    padding-top: 80px; /* компенсация header */
    position: relative;
}

/* верхний glow */
body::before {
    content: "";
    position: absolute;
    top: -145px;
    right: 0;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(91, 225, 0, 0.25) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ================= GLOBAL ================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ================= HEADER ================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;

    background: rgba(11, 15, 10, 0.95);
    backdrop-filter: blur(10px);

    /* тень только снизу */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);

    z-index: 100;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header__logo strong {
    display: block;
    font-size: 18px;
}

.header__logo span {
    font-size: 12px;
    color: #aaa;
}

.header__nav {
    display: flex;
    gap: 20px;
}
.hero__buttons .btn--dark{
    box-shadow: 0px 0px 10px 0px #8AFF3973 !important;
}
.header__nav a {
    font-size: 14px;
    color: #ccc;
    transition: 0.3s;
}
.hero__buttons .btn {
    padding: 12px 30px;
    border-radius: 20px;
  
}
.header__nav a:hover {
    color: #5BE100;
}

.header__right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header__phone {
    font-size: 14px;
}

.header__socials a {
 
}
.header__socials {
    display: flex;
    align-items: center;
    gap: 10px;
}
.header__right .btn.btn--outline {
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    padding: 14px 30px;
}
/* ================= BUTTONS ================= */
.btn {
    padding: 12px 22px;
    border-radius: 30px;
    font-size: 14px;
    transition: 0.3s;
    display: inline-block;
}

.btn--primary {
    background: #5BE100;
    color: #000;
    box-shadow: 0 0 15px rgba(91, 225, 0, 0.6);
}


.quiz .btn--primary {
    background: #5BE100;
    color: #000;
    box-shadow: 0 0 15px rgba(91, 225, 0, 0.6);
    border: 0;
    outline: 0;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    padding: 15px 50px;
    border-radius: 20px;
    cursor: pointer;
}
.quiz  .btn--dark {
    background: #1A1A1A;
    color: #fff;
    box-shadow: 0 0 5px rgba(91, 225, 0, 0.6);
    border: 0;
    outline: 0;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    padding: 15px 50px;
    border-radius: 20px;
    cursor: pointer;
    border: 1px solid #5BE100;
}

.btn--primary:hover {
    transform: translateY(-2px);
}

.btn--dark {
    border: 1px solid #5BE100;
    color: #fff;
}

.btn--dark:hover {
    background: #5BE100;
    color: #000;
}

.btn--outline {
    border: 1px solid #5BE100;
}

/* ================= HERO ================= */
.hero {
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

/* правый glow */
.hero::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    left: 0;
    top: 48%;
    transform: translateY(-50%);
    background: radial-gradient(circle, rgba(91, 225, 0, 0.25) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
}
/* левый glow */
.hero::after {
    content: "";
    position: absolute;
    left: -200px;
    top: 50%;
    transform: translateY(-50%);

    width: 400px;
    height: 400px;

    background: radial-gradient(circle, rgba(91,225,0,0.2) 0%, transparent 70%);
    filter: blur(80px);

    z-index: 0;
}

.hero__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.hero__content {
    max-width: 600px;
}

.hero__title {
    font-size: 44px;
    line-height: 45px;
    margin-bottom: 20px;
    font-family: 'BebasNeue', sans-serif;
    letter-spacing: 2px;
    font-weight: 400;

}

.hero__title span {
    color: #5BE100;
}

.hero__text {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 30px;
}

.hero__buttons {
    display: flex;
    gap: 15px;
}

.hero__image {
    max-width: 520px;
    position: absolute;
    right: -40px;
    top: -90px;
}

.hero__image img {
    width: 100%;
}

/* ================= FEATURES ================= */
.hero__features {
    display: flex;
    gap: 20px;
    margin-top: 150px;
    position: relative;
    z-index: 2;
}

.feature {
    flex: 1;
    background: #1A1A1A;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0px 0px 20px 0px #00000073;
}

.feature__icon {
    color: #5BE100;
    font-size: 20px;
    display: flex;
}

.feature p {
    font-size: 14px;
    color: #fff;
}



/* ================= ADVANTAGES ================= */
.advantages {
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

/* левый glow */
.advantages::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 270px;
    left: -200px;
    top: 54%;
    transform: translateY(-50%);
    background: radial-gradient(circle, rgba(91, 225, 0, 0.25) 0%, transparent 140%);
    filter: blur(64px);
    z-index: 0;
}
/* правый glow */
.advantages::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 350px;
    right: -200px;
    top: 50%;
    transform: translateY(-50%);

    background: radial-gradient(circle, rgba(91, 225, 0, 0.25) 0%, transparent 70%);
    filter: blur(80px);

    z-index: 0;
}

/* контент поверх */
.advantages .container {
    position: relative;
    z-index: 2;
}


.advantages__title {
    font-family: 'BebasNeue';
    margin-bottom: 32px;
    font-weight: 400;
    font-style: normal;
    font-size: 54px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
}

.advantages__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.adv-card {
    background: #111511;
    padding: 26px;
    border-radius: 0px 20px 20px 20px;
    border: 1px solid rgba(91, 225, 0, 0.4);
    transition: 0.3s;
    box-shadow: 0 0 20px rgba(91, 225, 0, 0.5);
}


.adv-card h3 {
    color: #5BE100;
    font-family: 'BebasNeue';
    font-weight: 400;
    font-style: normal;
    font-size: 30px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.adv-card p {
    color: #fff;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0;
}

/* ================= SERVICES ================= */
.services {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* левый glow */
.services::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    left: -250px;
    top: 50%;
    transform: translateY(-50%);

    background: radial-gradient(circle, rgba(91,225,0,0.25) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
}

/* правый glow */
.services::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    right: -250px;
    top: 50%;
    transform: translateY(-50%);

    background: radial-gradient(circle, rgba(91,225,0,0.25) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
}

.services .container {
    position: relative;
    z-index: 2;
}


.services__title {
  
    font-family: 'BebasNeue';
    margin-bottom: 32px;
    font-weight: 400;
    font-style: normal;
    font-size: 54px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}


.service-card {
    background: #111511;
    padding: 30px;
    border-radius: 20px;

    box-shadow: 0 0 30px rgba(0,0,0,0.6);
    position: relative;
}

.service-card__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.service-card__top h3 {
    font-family: 'BebasNeue';
    font-weight: 400;
    font-style: normal;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
}

.service-card__top span {
    color: #5BE100;
    font-family: 'BebasNeue';
    font-weight: 400;
    font-style: normal;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: right;
    text-transform: uppercase;
}
.service-card p {
    color: #fff;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0;
    margin-bottom: 25px;
    min-height: 111px;
}
.service-card__buttons .btn--primary {
    padding: 14px 55px;
    display: block;
    font-weight: 500;
    font-style: normal;
    font-size: 14px;
    letter-spacing: 0;
    text-align: center;
}
.service-card__buttons .btn--dark{
    padding: 14px 55px;
      display: block;
    font-weight: 500;
    font-style: normal;
    font-size: 14px;
    letter-spacing: 0;
    text-align: center;
    color: #fff;
    box-shadow: 0px 0px 10px 0px #8AFF3973;
}
.service-card__buttons {
    display: flex;
    gap: 15px;
}

.service-card::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100px;
    height: 100px;
    background: url(../images/iko1.png) no-repeat center / contain;
}
.service-card:nth-child(2)::after {
 
    background: url(../images/iko2.png) no-repeat center / contain;
}
.service-card:nth-child(3)::after {
 
    background: url(../images/iko3.png) no-repeat center / contain;
}
.service-card:nth-child(4)::after {
 
    background: url(../images/iko4.png) no-repeat center / contain;
}
.cases {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* левый glow */
.cases::before {
    content: "";
    position: absolute;
    left: -250px;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(91,225,0,0.2) 0%, transparent 70%);
    filter: blur(80px);
}

/* правый glow */
.cases::after {
    content: "";
    position: absolute;
    right: -250px;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(91,225,0,0.2) 0%, transparent 70%);
    filter: blur(80px);
}

.cases .container {
    position: relative;
    z-index: 2;
}

.cases__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.cases__title {
    font-family: 'BebasNeue';
    margin-bottom: 0;
    font-weight: 400;
    font-style: normal;
    font-size: 54px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
}
.cases__tabs {
    display: flex;
    gap: 16px;
}
.cases__tab {
    padding: 6px 20px;
    border-radius: 16px;
    border: 1px solid #5BE100;
    background: transparent;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 500;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0%;
    color: rgba(255, 255, 255, 0.8);
}
.cases__tab.active,
.cases__tab:hover {
    background: #5BE100;
    color: #000;
}

.cases__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.case-card {
    /* background: #1A1A1A; */
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0px 0px 20px 0px #00000073;
}
.case-card h3 {
    margin-bottom: 24px;
    font-family: 'BebasNeue';
    font-weight: 400;
    font-style: normal;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
}
.case-card__image {
    height: 260px;
    background: #444;
    border-radius: 15px;
    margin-bottom: 15px;
    position: relative;
}

.case-card__image span {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #1A1A1A;
    border: 1px solid #5BE100;
    padding: 4px 10px;
    border-radius: 10px;
    font-weight: 500;
    font-style: normal;
    font-size: 14px;
    line-height: 160%;
    letter-spacing: 0;
}
.case-card ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
}

.case-card li {
    font-size: 15px;
    color: #fff;
    position: relative;
    display: flex;
    gap: 16px;
}
.case-card li::before {
    position: absolute;
    left: 0;
    color: #5BE100;
}

.cases__content {
    display: none;
}

.cases__content.active {
    display: block;
}

/* ================= POPULAR ================= */
.popular {
    background-image: url(../images/uzor.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
    padding-top: 50px;
    padding-bottom: 50px;
    min-height: 320px;
}
/* glow слева */
/* .popular::before {
    content: "";
    position: absolute;
    left: -200px;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(91,225,0,0.25) 0%, transparent 70%);
    filter: blur(80px);
} */

.popular::after {
    content: "";
    position: absolute;
    right: 0;
    top: 74%;
    transform: translateY(-50%);
    width: 741px;
    height: 193px;
    background: radial-gradient(circle, rgba(91, 225, 0, 0.25) 0%, transparent 123%);
    filter: blur(80px);
}

.popular .container {
    position: relative;
    z-index: 2;
}

.popular__title {
   
    font-family: 'BebasNeue';
    margin-bottom: 32px;
    font-weight: 400;
    font-style: normal;
    font-size: 54px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
}
.popular .swiper-pagination-bullet{
    width: 32px;
    border-radius: 10px;
    background: #262626;
    height: 12px;
    border: 1px solid #fff;
}

.popular .swiper-pagination-bullet.swiper-pagination-bullet-active{
    width: 32px;
    border-radius: 10px;
    background: #5BE100;
    height: 12px;
    border: 1px solid #5BE100;
}


/* карточки */

.popular-card {
    padding: 45px 20px;
    border-radius: 15px;
    border: 1px solid #5BE100;
    background: transparent;
    backdrop-filter: blur(10px);
    font-family: 'BebasNeue';
    text-align: left;
    transition: 0.3s;
    font-weight: 400;
    font-size: 28px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
}

.popular-card:hover {
    background: #5BE100;
    color: #000;
    box-shadow: 0 0 25px rgba(91,225,0,0.7);
}

/* swiper */
.popularSwiper {
    padding-bottom: 40px;
}

.popular__pagination {
    display: flex;
    justify-content: left;
    gap: 0px;
    margin-top: 20px;
}

/* точки */
.swiper-pagination-bullet {
    background: #555;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #5BE100;
}



/* контейнер */


/* обычные */
.custom-bullet {
    width: 18px;
    height: 6px;
    border-radius: 10px;
    background: transparent;
    border: 1px solid #666;
    transition: 0.3s;
}

/* активный */
.swiper-pagination-bullet-active {
    background: #5BE100;
    border-color: #5BE100;
    box-shadow: 0 0 8px rgba(91,225,0,0.8);
    width: 22px;
}


/* ================= NICHES ================= */
.niches {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: #262626;
}
/* glow */
/* .niches::before,
.niches::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(91,225,0,0.25) 0%, transparent 70%);
    filter: blur(80px);
} */

.niches::before {
    left: -250px;
    top: 50%;
    transform: translateY(-50%);
}

.niches::after {
    right: -250px;
    top: 50%;
    transform: translateY(-50%);
}

.niches .container {
    position: relative;
    z-index: 2;
}

.niches__title {
    font-family: 'BebasNeue';
    margin-bottom: 32px;
    font-weight: 400;
    font-style: normal;
    font-size: 54px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
}

/* список */
.niches__list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-height: 120px;
    overflow: hidden;
    transition: 0.4s;
}

/* раскрыто */
.niches__list.active {
    max-height: 500px;
}

/* элементы */
.niche {
    padding: 6px 15px;
    border-radius: 20px;
    border: 1px solid #5BE100;
    font-size: 14px;
    color: #fff;
    transition: 0.3s;
    white-space: nowrap;
        font-weight: 500;
    font-style: normal;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0;
    background-color: #1A1A1A;
}

.niche:hover {
    background: #5BE100;
    color: #000;
}

/* скрытые */
.niche--hidden {
    opacity: 0;
    pointer-events: none;
}

/* показать */
.niches__list.active .niche--hidden {
    opacity: 1;
    pointer-events: auto;
}

/* кнопка */
.niches__toggle {
    margin-top: 20px;
    background: none;
    border: none;
    color: #5BE100;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0%;
}

.niches__toggle span {
    transition: 0.3s;
}

.niches__toggle.active span {
    transform: rotate(180deg);
}

/* ================= PROBLEMS ================= */

.problems {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* glow как у тебя */
.problems__title::before, .about__title::before {
    content: "";
    position: absolute;
    left: -200px;
    top: 58%;
    transform: translateY(-50%);
    width: 569px;
    height: 555px;
    background: radial-gradient(circle, rgba(91, 225, 0, 0.25) 0%, transparent 70%);
    filter: blur(80px);
}
.problems::after {
    content: "";
    position: absolute;
    right: -200px;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(91,225,0,0.25) 0%, transparent 70%);
    filter: blur(80px);
}
.problems .container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
}

/* заголовок */
.problems__title {
    font-family: 'BebasNeue';
    margin-bottom: 32px;
    font-weight: 400;
    font-style: normal;
    font-size: 54px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
}
.problems__columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    width: 60%;
}
/* header */
.problems__head {
    background: #262626;
    border-radius: 8px;
    padding: 4px 8px;
    display: inline-block;
    color: #fff;
    margin-bottom: 24px;
    width: 100%;
    font-weight: 300;
    font-style: normal;
    font-size: 14px;
    line-height: 160%;
    letter-spacing: 0;
}

/* список */
.problems__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
}
/* общий стиль */
.problems__list li {
    color: #ffffffc7;
    position: relative;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    line-height: 160%;
    letter-spacing: 0;
    display: flex;
    gap: 12px;
}
/* ❌ ПРОБЛЕМЫ (красные) */
/* .problems__list--bad li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #ff3b3b;
} */

/* .problems__list--bad li::after {
    content: "✕";
    position: absolute;
    left: 2px;
    top: -2px;
    font-size: 14px;
    color: #ff3b3b;
} */

/* ✅ РЕШЕНИЯ (зелёные) */
/* .problems__list--good li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #5BE100;
}

.problems__list--good li::after {
    content: "✔";
    position: absolute;
    left: 2px;
    top: -2px;
    font-size: 14px;
    color: #5BE100;
} */

/* адаптив */
@media (max-width: 768px) {
    .problems__columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .problems__title {
        font-size: 36px;
    }
}


/* ================= ABOUT ================= */

.about {
    padding: 120px 0 0;
    position: relative;
    overflow: hidden;
    padding-top: 20px;
}

/* glow */
.about::before,
.about::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(91,225,0,0.25) 0%, transparent 70%);
    filter: blur(80px);
}

.about::before {
    left: -250px;
    top: 50%;
    transform: translateY(-50%);
}

.about::after {
    right: -250px;
    top: 50%;
    transform: translateY(-50%);
}

.about .container {
    position: relative;
    z-index: 2;
}

/* layout */
.about__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* текст */
.about__title {

    font-family: 'BebasNeue';
    margin-bottom: 32px;
    font-weight: 400;
    font-style: normal;
    font-size: 54px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
}

.about__text {
    color: #fff;
    display: flex;
    flex-direction: row;
    gap: 15px;
    margin-bottom: 30px;

}

.about__content {
        width: 60%;
}
.about__text p {
     font-weight: 500;
    font-style: normal;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0;
            opacity: 0.8;
            width: 50%;

}

/* карточки */
.about__stats {
    display: flex;
    gap: 20px;
}
.stat {
    border: 1px solid #5BE100;
    padding: 16px 24px;
    border-radius: 15px;
    background: #1A1A1A;
    backdrop-filter: blur(10px);
}

.stat strong {
    display: block;
    font-family: 'BebasNeue';
    color: #5BE100;
    font-weight: 400;
    font-style: normal;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
}
.stat span {
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 0;
    color: rgba(255, 255, 255, 0.8);
}

/* фото */
.about__image {
    position: relative;
    width: 350px;
    height: 350px;

}
.about__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ================= CTA ================= */

.about-cta {
    margin-top: 100px;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    background-image: url(../images/vec.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 380px;
}

/* градиент */
/* .about-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(91,225,0,0.2), transparent 60%);
    z-index: 0;
} */

.about-cta__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

/* текст */
.about-cta__left h3 {
    font-family: 'BebasNeue';
   
    font-weight: 400;
    font-style: normal;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
}
.about-cta__left ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
}
.about-cta__inner {
    align-items: baseline;

}
.about-cta__left{
    display: flex;
    gap: 60px;
}

.about-cta__left li {
    position: relative;
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 0%;
    color: #ffffffd1;
    display: flex;
    gap: 10px;
}


.gradient-block {
    width: 100%;
    height: 200px;

    background: linear-gradient(
        90deg,
        #4dff00 0%,
        #1f4d1a 50%,
        #0a0f0c 100%
    );

    clip-path: polygon(
        0% 50%,
        25% 45%,
        50% 55%,
        75% 65%,
        100% 70%,
        100% 100%,
        0% 100%
    );
}



/* форма */
.about-cta__form {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 280px;
}

.about-cta__form input {
    border: 1px solid #5BE100;
    background: transparent;
    color: #fff;
    border-radius: 20px;
    padding: 16px 24px;
    outline: 0;
    box-sizing: border-box;
}
.about-cta__form input::placeholder {
  color: #fff !important;
}
.about-cta__form input::placeholder {
    color: #fff;
}
.about-cta__form small {
    color: #ffffffc9;
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0%;
}
.about-cta__form small a {
    color: #5BE100;
}


.about-cta__form button {
    border: 0;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    padding: 14px;
    margin-top: 10px;
    margin-bottom: 5px;
}

/* адаптив */
@media (max-width: 768px) {
    .about__inner {
        flex-direction: column;
    }

    .about__stats {
        flex-direction: column;
    }

    .about-cta__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-cta__form {
        width: 100%;
    }
}


/* ================= PROCESS ================= */

.process {
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.process::before,
.process::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(91,225,0,0.2), transparent);
    filter: blur(80px);
}

.process::before { left: -250px; top: 19%; }
.process::after { right: -250px; top: 19%; }

.process__title {
    font-family: 'BebasNeue';
    margin-bottom: 32px;
    font-weight: 400;
    font-style: normal;
    font-size: 54px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
}

/* accordion */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.accordion__item {
    overflow: hidden;
    transition: 0.3s;
}

.accordion__item.active {
 
}
.accordion__item.active .accordion__icon svg {
    transform: rotate(180deg);
}
/* header */
.accordion__header {
    padding: 20px 16px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    border-radius: 8px;
    background: #262626;
}
.accordion__header span {
    font-weight: 400;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    font-family: 'BebasNeue';
    color: #ffffffcf;
    display: flex;
    align-items: center;
    gap: 5px;
}
.accordion__item.active .accordion__header-icon svg path {
    fill: #5BE100;

}


.accordion__item.active .accordion__header span {
    color: #5BE100;
}

.accordion__item.active .accordion__header {
    color: #5BE100;
    background: #262626;
    border: 1px solid #5BE100;
    box-shadow: 0 0 15px rgba(91,225,0,0.4);
}

/* content */
.accordion__content {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    transition: all 0.4s ease;
}


.accordion__item.active .accordion__content {
    max-height: 500px;
    padding: 20px;
}
.accordion__content ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
}

.accordion__content li {
    position: relative;
    color: #ccc;
    font-size: 14px;
    display: flex;
    gap: 10px;
}

.advantages__header{
    display: flex;
    justify-content: space-between;
}

.advantages__header div {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0%;
    text-align: right;
    color: #ffffffb5;
}

/* ================= STEPS ================= */

.steps {
    padding: 100px 0;
}

.steps__title {

    font-family: 'BebasNeue';
    margin-bottom: 32px;
    font-weight: 400;
    font-style: normal;
    font-size: 54px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
}
.steps__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.step {
    background: #111511;
    border-radius: 20px;
    padding: 25px;
    border: 1px solid #5BE100;
    position: relative;
    transition: 0.3s;
}

.step {
    box-shadow: 0 0 8px rgba(91,225,0,0.6);
}

.step h3 {
    color: #5BE100;
    margin-bottom: 15px;
    font-weight: 400;
    font-size: 32px;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
    font-family: 'BebasNeue';
    display: flex;
    gap: 16px;
    align-items: center;
}
.step ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
    list-style-position: inside;
}
.step li {
    font-size: 14px;
    color: #ffffffcf;
}

.step__num {
    position: absolute;
    bottom: 0;
    right: 0;
    border: 1px solid #5BE100;
    padding: 15px 23px;
    color: #5BE100;
    background: #262626;
    font-weight: 400;
    font-style: normal;
    font-size: 32px;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    text-transform: uppercase;
    border-radius: 20px;
    font-family: 'BebasNeue';
}

/* ================= TEAM ================= */
.team {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: #262626;
}

/* glow */
/* .team::before,
.team::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(91,225,0,0.25), transparent 70%);
    filter: blur(80px);
} */
/* 
.team::before {
    left: -250px;
    top: 50%;
    transform: translateY(-50%);
}

.team::after {
    right: -250px;
    top: 50%;
    transform: translateY(-50%);
} */

.team .container {
    position: relative;
    z-index: 2;
}

.team__title {
    font-family: 'BebasNeue';
    margin-bottom: 32px;
    font-weight: 400;
    font-style: normal;
    font-size: 54px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
}

/* GRID */
.team__grid2 .team-card {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 15px;
}

/* карточка */
.team-card {
    background: transparent;
    color: #fff;
}

/* БОЛЬШИЕ */
.team-card--big {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* нижние */
.team__grid > .team-card:nth-child(n+3) {
    text-align: left;
}

/* фото */
.team-card__image {
    /* width: 200px;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid #5BE100;
    box-shadow: 0 0 20px rgba(91,225,0,0.5); */
}
.team-card__image--circle img{
}
/* круглые */
.team-card__image--circle {
}

/* img */
.team-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* текст */
.team-card h3 {
    margin-bottom: 5px;
    font-weight: 400;
    font-size: 30px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    font-family: 'BebasNeue';
}
.teamwlaper {
    padding: 0px 10px;
}
.team__grid .team-card .team-card__image {
    margin-bottom: 24px;
}
.team-card p {
    margin-bottom: 16px;
}
.team-card span {
    display: block;
    margin-bottom: 16px;
    font-weight: 500;
    font-size: 15px;
    line-height: 130%;
    letter-spacing: 0%;
    color: rgba(255, 255, 255, 0.6);
}

.team-card p {
    font-weight: 300;
    font-size: 14px;
    line-height: 130%;
    letter-spacing: 0%;
    color: #E3E3E3;
}
.team-card p  b {
    color: #A8A8A8;
}
.team__spec {
    margin-bottom: 16px;
}

/* BIG текст */
.team-card--big h3 {
    font-size: 18px;
}

.team-card--big span {
    margin-bottom: 15px;
}

/* нижний ряд сетка */
.team__grid {
    grid-template-columns: repeat(2, 1fr);
}

.team__grid > .team-card:nth-child(n+3) {
    grid-column: span 1;
}

/* второй ряд 4 карточки */
.team__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.team__grid2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-bottom: 25px;
}
.team-card--big:nth-child(1) {
    grid-column: span 2;
}

.team-card--big:nth-child(2) {
    grid-column: span 2;
}

/* адаптив */
@media (max-width: 900px) {
    .team__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-card--big {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* ================= REVIEWS ================= */
.reviews {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* glow как в других блоках */
.reviews::before,
.reviews::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(91,225,0,0.25), transparent 70%);
    filter: blur(80px);
}

.reviews::before {
    left: -250px;
    top: 50%;
    transform: translateY(-50%);
}

.reviews::after {
    right: -250px;
    top: 50%;
    transform: translateY(-50%);
}

.reviews .container {
    position: relative;
    z-index: 2;
}

/* заголовок */
.reviews__title {
    font-family: 'BebasNeue';
    margin-bottom: 32px;
    font-weight: 400;
    font-style: normal;
    font-size: 54px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
}

/* сетка */
.reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* карточка */
.review-card {
    background: #1A1A1A;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 0 25px rgba(0,0,0,0.6);
    transition: 0.3s;
}

.review-card:hover {
    box-shadow: 0 0 25px rgba(91,225,0,0.4);
}

/* верх */
.review-card__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.review-card__top h3 {
    font-family: 'BebasNeue';
    font-weight: 400;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
}

.review-card__rating {
    color: #5BE100;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
}
/* текст */
.review-card p {
    color: #D1D1D1;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0%;
}

/* теги */
.review-card__tags {
    display: flex;
    gap: 10px;
}

.review-card__tags span {
    border: 1px solid #5BE100;
    border-radius: 8px;
    padding: 5px 10px;
    font-size: 12px;
    color: #D1D1D1;
    transition: 0.3s;
    font-weight: 500;
    font-size: 14px;
    line-height: 160%;
    letter-spacing: 0%;
}

.review-card__rating span{
    color: #D1D1D1;
    margin-bottom: inherit;
    font-weight: 500;
    font-size: 16px;
}
.review-card__tags span:hover {
    background: #5BE100;
    color: #000;
}

/* адаптив */
@media (max-width: 900px) {
    .reviews__grid {
        grid-template-columns: 1fr;
    }
}


/* ================= QUIZ ================= */
.quiz {
    padding: 80px 0;
    background: #262626;
}

.quiz__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.quiz__title {
    font-family: 'BebasNeue';
    font-weight: 400;
    font-size: 54px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
}

.quiz__step {
    color: #aaa;
    font-size: 14px;
}

/* линия */
.quiz__step-block {
    display: none;
    border-top: 1px solid #5BE100;
    padding-top: 25px;
}

.quiz__step-block.active {
    display: block;
}

.quiz__step-block h3 {
    margin-bottom: 8px;
    font-weight: 400;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    font-family: 'BebasNeue';
}
.quiz__step-block p {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 24px;
}

/* варианты */
.quiz__options {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

/* option */
.quiz-option {
    padding: 12px 20px;
    border-radius: 20px;
    border: 1px solid #5BE100;
    display: flex;
    transition: 0.3s;
    width: 23.4%;
}

.quiz-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.quiz-option input {
    appearance: none;
    width: 24px;
    height: 24px;
    border: 2px solid #5BE100;
    border-radius: 6px;
    position: relative;
    cursor: pointer;
}
.quiz-option input::placeholder {
  color: #fff !important;
}
.about-cta__f {
    color: #ffffffc9;
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0%;
    display: block;
    margin-top: 10px;
}
.about-cta__f  a {
    color: #5BE100;
}
/* галочка */
.quiz-option input:checked {
    background: #5BE100;
}

/* рисуем галочку */
.quiz-option input:checked::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 8px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* текст */
.quiz-option  {
    padding: 12px 20px;
    border-radius: 20px;
    border: 1px solid #5BE100;
    display: flex;
    transition: 0.3s;
}

.quiz-option span{
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: rgba(255, 255, 255, 0.8);
}

/* активный вариант */
.quiz-option input:checked + span {

}


/* active */
.quiz-option input:checked + span {
    color: #fff;
}

/* форма */
.quiz__form {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.quiz__form input {
    border: 1px solid #5BE100;
    background: transparent;
    color: #fff;
    border-radius: 20px;
    padding: 16px 24px;
    outline: 0;
    box-sizing: border-box;
    width: 50%;
}
/* кнопки */
.quiz__nav {
    margin-top: 40px;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}
.popup .about-cta__form {
   
    width: 100%;
}

.case-card__image img {
    width: 100%;
    height: 100%;
}


/* ================= COMMUNITY ================= */
.community {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* glow */
.community::before,
.community::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(91,225,0,0.25), transparent 70%);
    filter: blur(80px);
}

.community::before {
    left: -250px;
    top: 50%;
    transform: translateY(-50%);
}

.community::after {
    right: -250px;
    top: 50%;
    transform: translateY(-50%);
}

.community .container {
    position: relative;
    z-index: 2;
}
.community__title {
    font-family: 'BebasNeue';
    margin-bottom: 40px;
    font-weight: 400;
    font-size: 54px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
}
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* карточки */
.community__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 100px;
}

.community-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.community-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* overlay */
.community-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.community-card span {
    border: 1px solid #5BE100;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
}

/* ================= SEO BLOCK ================= */
.seo-block {
    background: #262626;
    border-radius: 8px;
    padding: 35px 20px;
}
.seo-block__title {
    font-family: 'BebasNeue';
    margin-bottom: 40px;
    font-weight: 400;
    font-size: 54px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
}

/* текст */
.seo-block__text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-height: 140px;
    overflow: hidden;
    transition: 0.4s;
}

/* раскрыто */
.seo-block__text.active {
    max-height: 500px;
}

/* скрытые абзацы */
.seo-hidden {
    opacity: 0;
    transition: 0.3s;
}

.seo-block__text.active .seo-hidden {
    opacity: 1;
}

.seo-block p {
    font-size: 14px;
    color: #ccc;
}

/* кнопка */
.seo-block__toggle {
    margin-top: 20px;
    background: none;
    border: none;
    color: #5BE100;
    cursor: pointer;
    display: flex;
    gap: 6px;
    align-items: center;
    font-weight: 500;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0%;
}

.seo-block__toggle span {
    transition: 0.3s;
}

.seo-block__toggle.active span {
    transform: rotate(180deg);
}

/* адаптив */
@media (max-width: 768px) {
    .community__grid {
        grid-template-columns: 1fr;
    }

    .seo-block__text {
        grid-template-columns: 1fr;
    }
}


/* ================= FAQ ================= */
.faq {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    padding-top: 0;
}

/* glow */
.faq::before,
.faq::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(91,225,0,0.25), transparent 70%);
    filter: blur(80px);
}

.faq::before {
    left: -250px;
    top: 50%;
    transform: translateY(-50%);
}

.faq::after {
    right: -250px;
    top: 50%;
    transform: translateY(-50%);
}

.faq .container {
    position: relative;
    z-index: 2;
}

.faq__title {
    font-family: 'BebasNeue';
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 54px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
}

/* список */
.faq__list {
    display: flex;
    flex-direction: column;
}

/* item */
.faq-item {
    border-bottom: 1px solid rgba(91,225,0,0.4);
    padding: 18px 0;
    cursor: pointer;
}

/* question */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-question span {
    color: #5BE100;
    font-weight: 700;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0%;
}
/* + и - */
.faq-icon {
    width: 16px;
    height: 16px;
    position: relative;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    background: #5BE100;
}

.faq-icon::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 1px;
}

.faq-icon::after {
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
    transition: 0.3s;
}

/* когда открыт */
.faq-item.active .faq-icon::after {
    opacity: 0;
}

/* ответ */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    color: #ccc;
    font-size: 14px;
    transition: 0.3s;
}

/* открыто */
.faq-item.active .faq-answer {
    max-height: 200px;
    margin-top: 10px;
}

.faq-answer {
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}




.swiper-pagination-bullet-active {

    border-radius: 3px;
}

.reviews__slider {
    overflow: hidden;
}

.reviews__slider .swiper-slide {
    height: auto;
}

.reviews__pagination {
    margin-top: 20px;
    text-align: center;
}




.cookie {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 600px;
    margin: auto;
    background: #111;
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    z-index: 9999;
}

.cookie__text {
    font-size: 14px;
    line-height: 1.5;
}

.cookie__text a {
    color: #5BE100;
    text-decoration: underline;
}

.cookie__btn {
    background: #5BE100;
    border: none;
    padding: 10px 16px;
    cursor: pointer;
    border-radius: 6px;
    font-weight: 600;
}

.modal {
    max-width: 600px;
    padding: 30px;
}

.form-agree label{
    display: flex;
    gap: 10px;
}
.form-agree span{
    color: #ffffffc9;
    font-weight: 500;
    font-size: 12px;
    line-height: 17px;
    letter-spacing: 0%;
    display: inline-block;
}

.form-agree a{
    color:#5BE100;
}

.form-agree input[type="checkbox"]{
    width: 14px !important;
}


/* ================= FOOTER ================= */
.footer {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: #262626;
}

/* glow */
/* .footer::before,
.footer::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(91,225,0,0.2), transparent 70%);
    filter: blur(80px);
} */

.footer::before {
    left: -200px;
    top: 50%;
    transform: translateY(-50%);
}

.footer::after {
    right: -200px;
    top: 50%;
    transform: translateY(-50%);
}

.footer__inner {

    position: relative;
    z-index: 2;
}

/* логотип */
.footer__brand strong {
    display: block;
    font-size: 16px;
}

.footer__brand span {
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    display: block;
}
/* заголовки */
.footer__col h4 {
    color: #5BE100;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0%;
}
/* списки */
.footer__col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
}
.footer__col a {
    font-size: 13px;
    color: #aaa;
    transition: 0.3s;
}

.footer__col a:hover {
    color: #5BE100;
}

/* контакты */
.footer__top {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* соц */
.footer__bottom {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}
.footer__socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
/* текст */
.footer__info {
    color: #ffffffad;
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 13px;
    line-height: 21px;
    letter-spacing: 0%;
}

/* политика */
.footer__policy {
    color: #5BE100 !important;
    line-height: 17px;
    display: block;
}

/* адаптив */
@media (max-width: 900px) {
    .footer__inner {
        grid-template-columns: 1fr;
    }

    .footer__top {
        flex-direction: column;
        align-items: flex-start;
    }
}



.footer__topbox {

    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer__brand {
}

.footer__topbox .btn--outline {
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    padding: 14px 30px;
}


.fancybox__content {
    padding: 0;
    background: transparent;
}

.popup {
    width: 400px;
    padding: 25px;
    border-radius: 20px;
    background: #111;
    color: #fff;
}

.popup input {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 12px;
    border: 1px solid #5BE100;
    background: transparent;
    color: #fff;
}

.popup button {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    background: #5BE100;
    border: none;
    cursor: pointer;
}

#contactForm{
    padding: 0;
    border-radius: 30px;
}

.popup h2 {
    font-size: 35px;
    line-height: 45px;
    margin-bottom: 20px;
    font-family: 'BebasNeue', sans-serif;
    letter-spacing: 2px;
    font-weight: 400;
}

.scroll-top {
    position: fixed;
    right: 20px;
    bottom: 20px;

    width: 45px;
    height: 45px;
    border-radius: 50%;

    border: none;
    background: #5BE100;
    color: #000;

    font-size: 20px;
    cursor: pointer;

    display: none;
    align-items: center;
    justify-content: center;

    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: 0.3s;
}

.scroll-top svg path{
    fill: #000;
}
.scroll-top svg {
    position: relative;
    transform: rotate(179deg);
    top: -2px;
}
.scroll-top:hover {
    transform: scale(1.1);
}


@media only screen and (max-width: 1200px) {
    .container {
        max-width: 1000px;

    }

    .header__logo svg{
        width: 108px;
    }
    .footer__brand span {

        font-size: 11px;

    }
.header__nav {
    display: flex;
    gap: 10px;
}
.header__nav a {
    font-size: 13px;
    color: #ccc;
    transition: 0.3s;
}

.header__phone {
    font-size: 12px;
}
.header__right .btn.btn--outline {
    font-size: 12px;
    padding: 12px 14px;
}
.hero__title {
    font-size: 40px;

}
.feature p {
    font-size: 12px;
    color: #fff;
}

.team-card h3 {

    font-size: 20px;
 
}
.review-card__top h3 {

    font-size: 22px;
  
}


.advantages__title,
.services__title,
.cases__title,
.popular__title,
.niches__title ,
.problems__title,
.about__title,
.process__title,
.steps__title,
.team__title,
.reviews__title,
.quiz__title,
.community__title ,
.seo-block__title,
.faq__title {
  
    font-size: 35px;
}
.step h3 {

    font-size: 20px;
}
.adv-card h3 {

    font-size: 22px;
}
.service-card__top h3 {

    font-size: 25px;
}
.service-card__top span {

    font-size: 25px;
}
.service-card p {
    color: #fff;
    font-weight: 500;
    font-style: normal;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0;
    margin-bottom: 25px;
    min-height: 111px;
}
.service-card::after {
  
    width: 60px;
    height: 60px;
}
.case-card h3 {

    font-size: 22px;

}
.case-card li {
    font-size: 12px;

}
.popular-card {
    padding: 24px 20px;
    font-size: 20px;
}
.niche {
  
    font-size: 12px;
}
.stat strong {

    font-size: 22px;
}

.about-cta__left h3 {

    font-size: 22px;
}
.about-cta__left li {

    font-size: 12px;
}
.about-cta__left ul {

    gap: 2px;
}
.accordion__header span {
    font-size: 20px;
}

}

.mobile-menu,
.burger{
    display: none;
}


@media only screen and (max-width: 1000px) {
    .container {
        max-width: 800px;

    }
.advantages__title,
.services__title,
.cases__title,
.popular__title,
.niches__title ,
.problems__title,
.about__title,
.process__title,
.steps__title,
.team__title,
.reviews__title,
.quiz__title,
.community__title ,
.seo-block__title,
.faq__title {
  
    font-size: 28px;
}
header .header__nav ,
header .header__right{
    display: none;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 9999;
    visibility: hidden;
}

/* overlay blur */
.mobile-menu__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: 0.4s;
}

/* panel справа */
.mobile-menu__panel {
    position: absolute;
    right: -100%;
    top: 0;
    width: 320px;
    height: 100%;
    background: #111;
    padding: 20px;

    display: flex;
    flex-direction: column;
    gap: 20px;

    transition: 0.4s ease;
}

/* active state */
.mobile-menu.active {
    visibility: visible;
}

.mobile-menu.active .mobile-menu__overlay {
    opacity: 1;
}

.mobile-menu.active .mobile-menu__panel {
    right: 0;
}

/* nav */
.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu__nav a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

/* close button */
.mobile-menu__close {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    align-self: flex-end;
    cursor: pointer;
}

/* info block */
.mobile-menu__info {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-menu__info a {
    color: #5BE100;
}

.mobile-menu,
.burger{
    display: block;
}
.burger {
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 30px;
}
    .hero__title {
        font-size: 30px;
        line-height: 33px;
    }

.hero__image {
    max-width: 360px;
    position: absolute;
    right: -40px;
    top: 35px;
}
.services__grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
}

.cases__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}
.about__content {
    width: 100%;
}
.about .container {
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
    flex-direction: column-reverse;
}
    .header__logo svg {
        width: 144px;
    }
.about-cta {

    background: #183008;
}
.about-cta__form {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}
.team__grid2 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    margin-bottom: 25px;
}
.quiz-option span {
    font-weight: 500;
    font-size: 14px;

}
.footer__top {

    gap: 8px;
}


}



@media only screen and (max-width: 800px) {
    .container {
        max-width: 100%;

    }

    .advantages__title,
    .services__title,
    .cases__title,
    .popular__title,
    .niches__title ,
    .problems__title,
    .about__title,
    .process__title,
    .steps__title,
    .team__title,
    .reviews__title,
    .quiz__title,
    .community__title ,
    .seo-block__title,
    .faq__title {
    
        font-size: 25px;
    }


}

@media only screen and (max-width: 700px) {
    .hero__image {
        position: static;
     
    }
.hero__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
    flex-direction: column-reverse;
}

.hero {
    padding: 25px 0 80px;
    position: relative;
    overflow: hidden;
}
.steps__grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
}

.process::before, .process::after {
    display: none;
}
.hero__buttons .btn {
    padding: 8px 10px;
    border-radius: 20px;
}
.hero__features {
    display: flex;
    gap: 20px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.advantages__header {

    flex-wrap: wrap;
}
.advantages__header div {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0%;
    text-align: right;
    color: #ffffffb5;
    text-align: left;
    margin-bottom: 29px;
}
.advantages__grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}
.service-card {
    background: #111511;
    padding: 10px;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
    position: relative;
    box-sizing: border-box;
}
    .services__grid {
        display: block;
     
    }
.service-card__top {
    display: block;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.service-card__buttons {
    display: block;
    gap: 15px;
}
.service-card::after {
    display: none;
}
.service-card__buttons .btn--primary {
    margin-bottom: 10px;
}
    .service-card {
  
        margin-bottom: 30px;
    }
.cases__top {
    display: block;
   
}

.cases__tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    flex-direction: column;
    margin-top: 20px;
}

    .cases__grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
.problems .container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.problems__columns {
   
    width: 100%;
}
.about__image {
    position: relative;
    width: 100%;
    height: 280px;
}
.about__text {
  
    flex-direction: column;
}
.about__text p {

    width: 100%;
}
.about-cta__left {
    display: flex;
    gap: 19px;
    flex-direction: column;
}
    .about-cta__left li {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .accordion__header span {
        font-size: 18px;
    }
.accordion__item.active .accordion__content {
  
    display: block;
}
.accordion__item.active .accordion__content {
    max-height: 100%;

}
.step__num {
    position: absolute;
    bottom: 0;
    right: 0;
    border: 1px solid #5BE100;
    padding: 10px 19px;
    color: #5BE100;
    background: #262626;
    font-weight: 400;
    font-style: normal;
    font-size: 22px;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    text-transform: uppercase;
    border-radius: 20px;
    font-family: 'BebasNeue';
}
.team__grid2 .team-card {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 15px;
    flex-direction: column;
}

    .team__grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .about__image {
     
        height: auto;
    }


.quiz__top {
    display: block;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}
.quiz__options {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    flex-direction: column;
}
.quiz-option {
    padding: 12px 20px;
    border-radius: 20px;
    border: 1px solid #5BE100;
    display: flex;
    transition: 0.3s;
    width: 100%;
}
.quiz__step-block h3 {
    margin-bottom: 17px;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    font-family: 'BebasNeue';
}
.quiz__nav {
   flex-direction: column;
}
.faq::before, .faq::after {
    display: none;
}
.footer__topbox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    gap: 15px;
}
.footer__bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 50px;
}
.footer__info {
    color: #ffffffad;
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 10px;
    line-height: 15px;
    letter-spacing: 0%;
}
    .footer__top {
        gap: 8px;
        justify-content: center;
        align-items: center;
    }
.scroll-top {

    z-index: 9999999;
}
.faq-question span {
    color: #5BE100;
    font-weight: 700;
    font-size: 13px;
    line-height: 160%;
    letter-spacing: 0%;
}
.faq-icon {
    width: 16px;
    height: 16px;
    position: relative;
    display: none;
}
.seo-block p {
    font-size: 13px;
    color: #ccc;
}
.community-card img {
    width: 100%;
    height: auto;
}


}