@font-face {
    font-family: 'Montserrat-Medium';
    src: url('./Montserrat-Medium.ttf') format('truetype');
}

@font-face {
    font-family: 'Montserrat-Bold';
    src: url('./Montserrat-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'BebasNeuePro-Regular';
    src: url('BebasNeuePro-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'NotoSansArrows';
    src: url('./NotoSansSymbols-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Grotesk';
    src: url('./CyGrotesk-KeyRegular.otf') format('opentype');
}

html, body {
  touch-action: pan-y; /* Разрешает только вертикальный свайп */
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #1C1C1C;
    background-repeat: repeat;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    width: 100%;
    overflow-x: hidden;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #1C1C1C;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='100%'><filter id='noise'><feTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='4' stitchTiles='stitch'></feTurbulence></filter><rect width='100%' height='100%' filter='url(%23noise)' opacity='0.1'/></svg>");
}

.preloader-gif {
    width: 100px;
    height: 100px;
}

.sale-top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 25px;
    background-color: #1d1d1d;
    overflow: hidden;
    z-index: 1000;
    display: flex;
    align-items: center;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='100%'><filter id='noise'><feTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='4' stitchTiles='stitch'></feTurbulence></filter><rect width='100%' height='100%' filter='url(%23noise)' opacity='0.1'/></svg>");
}

.sale-top-text {
    color: #eae7e2;
    font-size: 20px;
    font-family: Montserrat-Bold;
    white-space: nowrap;
    display: inline-block;
    animation: marquee 30s linear infinite;
    position: absolute;
}

.sale-top-text span {
    margin-right: 30px;
}

.sale-top-text:nth-child(2) {
    animation: marquee2 30s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

@keyframes marquee2 {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(0);
    }
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1C1C1C;
    padding: 10px;
    height: 70px;
    padding-top: 30px;
}

.logo-container {
    margin-top: 10px;
    margin-left: 10px;
    width: 165px;
    height: 53px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    max-width: 100%;
    max-height: 100%;
}

.navigation {
    display: flex;
    gap: 10px;
}

.nav-link {
    color: #eae7e2;
    font-family: BebasNeuePro-Regular, sans-serif;
    font-weight: 400;
    font-size: 30px;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #ddd;
}

.main-cover {
    font-family: Grotesk, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
}

.main-cover-content {
    font-family: Grotesk, sans-serif;
    max-width: 370px;
    width: 100%;
}

/* --- Блок 1: Кикер --- */
.cover-kicker {
    font-family: Grotesk, sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #b0b0b0;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

/* --- Блок 2: Главный заголовок --- */
.cover-heading {
    font-family: Grotesk, sans-serif;
    font-size: 50px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 32px;
    text-transform: uppercase;
}

.cover-heading .highlight-instagram {
    color: #a0a0a0;
    font-weight: 400;
    text-transform: uppercase;
}

.highlight {
    color: #a0a0a0;
}

/* --- Блок 3: Описание --- */
.cover-description {
    font-family: Grotesk, sans-serif;
    font-size: 16px;
    color: #b0b0b0;
    line-height: 1.6;
    font-weight: 400;
    max-width: 500px;
}

.cover-description .highlight-price {
    color: #ffffff;
    font-weight: 400;
}

.cover-container {
    border-radius: 0px;
    overflow: hidden;
    border: none;
    width: 100%;
    max-width: 800px;
    margin: 0px;
    display: flex;
    position: relative;
}

.cover-image-mobile {
    width: 100%;
    height: auto;
    display: block;
    pointer-events: none;
}

.cover-image-pc {
    display: block;
    width: 100%;
    height: none;
    pointer-events: none;
}

.cta-section {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
}

.join-btn {
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    margin-top: -20px;
    background-color: #C63F7F1A;
    color: #eae7e2;
    padding: 15px 30px;
    border: 1px solid transparent; /* Обязательно: задаем толщину и делаем обычный цвет рамки прозрачным */
    border-color: #C63F7F;
    border-radius: 30px;
    font-family: 'Grotesk', sans-serif;
    font-size: 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='100%'><filter id='noise'><feTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='4' stitchTiles='stitch'></feTurbulence></filter><rect width='100%' height='100%' filter='url(%23noise)' opacity='0.1'/></svg>");
}

.join-btn:hover {
    background-color: #555;
}

.arrow-btn {
    font-family: 'NotoSansArrows', sans-serif;
    color: #eae7e2;
    font-size: 25px;
    width: 50px;
    height: 50px;
    background-color: #333;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='100%'><filter id='noise'><feTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='4' stitchTiles='stitch'></feTurbulence></filter><rect width='100%' height='100%' filter='url(%23noise)' opacity='0.1'/></svg>");
    line-height: 1;
    padding-top: 5px;
}

.arrow-btn:hover {
    background-color: #555;
}

.target-audience {
    padding: 10px;
}

.target-wrapper {
    display: flex;
    flex-direction: column; /* Вертикальное расположение по умолчанию */
    gap: 20px; /* Отступ между контейнерами */
    background-color: #1C1C1C;
    margin-top: -10px;
}

.tariff-wrapper {
    display: flex;
    flex-direction: column; /* Вертикальное расположение по умолчанию */
    gap: 20px; /* Отступ между секциями */
    background-color: #1C1C1C;
}

.tariff-container {
    position: relative;
    width: 85%;
    height: 680px;
    overflow: hidden; /* Обрезаем лишнее содержимое фона */
    margin: 0 auto; /* Центрируем секцию по горизонтали на странице */
    margin-top: 0px;
    background: rgba(255, 255, 255, 0.02); /* полупрозрачный светлый фон */
    backdrop-filter: blur(12px) saturate(180%);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background-image: 
    linear-gradient(145deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.05));
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); /* мягкая тень для объёма */
}


.tariff-header {
    width: 270px;
    position: relative;
    margin: 0 auto; /* Центрируем контейнер */
    text-align: left; /* Центрируем содержимое */
    z-index: 2; /* Над фоном */
    font-family: Montserrat-Bold, sans-serif;
    font-size: 30px;
    font-weight: 400; /* Явно задаем вес */
    color: #f6f6ed;
    border-radius: 15px;
    line-height: 35px; /* Равно min-height для центрирования по вертикали */
}

.tariff-text s {
  color: #777;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(120, 120, 120, 0.6);
}

.tariff-text {
    position: relative;
    width: 270px;
    margin: 0 auto; /* Центрируем контейнер */
    text-align: left; /* Текст выравнивается по левой стороне */
    z-index: 2; /* Над фоном */
    font-family: Montserrat-Regular, sans-serif;
    font-size: 18px;
    font-weight: 400; /* Явно задаем вес */
    color: #D9D9D9;
    line-height: 1.5;
}

.buy-button {
    position: absolute; /* Уже есть в твоем коде */
    bottom: 20px; /* Отступ от низа контейнера */
    left: 50%;
    transform: translateX(-50%); /* Центрируем по горизонтали */
    display: block;
    padding: 10px 50px;
    font-family: Montserrat-Bold, sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #eae7e2;
    text-decoration: none;
    border: 1px solid transparent; /* Обязательно: задаем толщину и делаем обычный цвет рамки прозрачным */
    border-radius: 45px;
    transition: transform 0.3s ease;
    border-color: #C63F7F;
    width: fit-content;
    background-color: #C63F7F1A;
    z-index: 2; /* Над фоном */
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='100%'><filter id='noise'><feTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='4' stitchTiles='stitch'></feTurbulence></filter><rect width='100%' height='100%' filter='url(%23noise)' opacity='0.1'/></svg>");
}
    
.section-title {
    font-family: Grotesk, sans-serif;
    font-weight: 400;
    font-size: 32px;
    text-align: left;
    color: #E8E8E8;
    padding: 24px;
    margin-top: 0px;
    margin-bottom: 0px;
    background-color: #1C1C1C;
    padding-left: 29px;
}

.audience-image-container {
    border-radius: 15px;
    overflow: hidden;
    border: none;
    width: 90%;
    margin: 0px auto;
    display: flex;
    pointer-events: none;
    max-width: 800px;
    margin-bottom: 10px;
    margin-top: 15px;
}

.audience-image {
    width: 100%;
    height: auto;
    display: block; /* Убираем лишние отступы под изображением */
}

.section-title2 {
    font-family: Grotesk, sans-serif;
    font-weight: 400;
    font-size: 32px;
    text-align: left;
    margin: 10px 10px;
    margin-top: 20px;
    margin-bottom: 30px;
    color: #E8E8E8;
    padding: 10px;
    background-color: #1C1C1C;
}

.section-title3 {
    font-family: Grotesk, sans-serif;
    font-weight: 400;
    font-size: 32px;
    text-align: left;
    margin-top: 20px;
    margin-bottom: 30px;
    color: #E8E8E8;
    padding: 10px;
    background-color: #1C1C1C;
}

.section-title4 {
    font-family: Grotesk, sans-serif;
    font-weight: 400;
    font-size: 32px;
    text-align: left;
    margin-top: 0px;
    margin-bottom: 0px;
    color: #E8E8E8;
    padding: 24px;
    background-color: #1C1C1C;
}

.section-title5 {
    font-family: Grotesk, sans-serif;
    font-weight: 400;
    font-size: 32px;
    text-align: left;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #E8E8E8;
    padding: 20px;
     background-color: #1C1C1C;
}

.section-title6 {
    font-family: Grotesk, sans-serif;
    font-weight: 400;
    font-size: 32px;
    text-align: left;
    color: #E8E8E8;
    padding: 14px;
    margin-bottom: -10px;
    margin-top: 0px;
     background-color: #1C1C1C;
}

.section-title7 {
    font-family: Grotesk, sans-serif;
    font-weight: 400;
    font-size: 32px;
    text-align: left;
    color: #E8E8E8;
    padding: 24px;
    margin-top: 0px;
    margin-bottom: 0px;
    background-color: #1C1C1C;
}

.section-title8 {
    font-family: Grotesk, sans-serif;
    font-weight: 400;
    font-size: 28px;
    text-align: left;
    color: #E8E8E8;
    padding: 24px;
    margin-top: 0px;
    margin-bottom: 0px;
    background-color: #1C1C1C;
    padding-left: 29px;
}

.section-title9 {
    font-family: Grotesk, sans-serif;
    font-weight: 400;
    font-size: 32px;
    text-align: left;
    color: #E8E8E8;
    padding: 24px;
    margin-bottom: 0px;
    margin-top: 0px;
    background-color: #1C1C1C;

}

.feedback-container {
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    width: 100%;
    overflow: hidden;
    background-color: #1C1C1C;
}

.feedback-slider {
    width: 100vw;
    height: 400px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-x;
    margin: 0;
    padding: 0;
}

.feedback-slider::-webkit-scrollbar {
    display: none;
}

.feedback-track {
    display: flex;
    gap: 20px;
    padding: 0;
    width: fit-content;
    height: 100%;
    align-items: center;
}

.feedback-image-container {
    border-radius: 15px;
    overflow: hidden;
    flex-shrink: 0;
    width: 200px;
    height: auto;
    max-width: 600px;
    margin-bottom: 10px;
    margin-top: -10px;
}

.feedback-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    pointer-events: none;
}

#feed-section2 .feedback-image-container {
    width: 370px;
    height: auto;
}

#group-section {
    margin-top: -30px;
    height: 300px;
    height: 100%;
    width: auto;
}
.lesson-image-container {
    border-radius: 15px;
    overflow: hidden;
    border: none;
    width: 95%;
    margin: 0px auto;
    display: flex;
    pointer-events: none;
    max-width: 800px;
    margin-bottom: 10px;
}

.lesson-image-container2 {
    overflow: hidden;
    width: 100%;
    margin: 0px auto;
    display: flex;
    pointer-events: none;
    max-width: 800px;
    margin-bottom: 10px;
}
.course-program {
    margin-top: 10px;
    padding: 10px;
    background-color: #1C1C1C;
}

.course-price {
    margin-top: 25px;
    display: inline-block;
    background: #333;
    border-radius: 12px;
    padding: 26px 12px;
    font-family: 'NAMU', sans-serif;
    font-size: 24px;
    color: #eae7e2;
    position: relative;
    overflow: hidden;
    left: 50%;
    transform: translateX(-50%);
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='100%'><filter id='noise'><feTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='4' stitchTiles='stitch'></feTurbulence></filter><rect width='100%' height='100%' filter='url(%23noise)' opacity='0.1'/></svg>");
}

.course-price p {
    margin: 0;
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

.course-price .old-price {
    margin-left: 10px;
    color: #999;
    text-decoration: line-through;
    font-size: 22px;
}

.course-bonus {
    padding: 10px;
    font-family: Montserrat-Medium, sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin-top: -30px;
}

.course-bonus2 {
    padding: 25px;
    font-family: Montserrat-Medium, sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin-top: -65px;
}

.course-bonus3 {
    padding: 25px;
    font-family: Montserrat-Medium, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #eae7e2;
    margin-top: -30px;
}

.course-bonus4 {
    padding: 25px;
    font-family: Montserrat-Medium, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #eae7e2;
    margin-top: -30px;
}

.course-bonus5 {
    padding: 25px;
    font-family: Montserrat-Medium, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #eae7e2;
    margin-top: 0px;
    margin-bottom: -30px;
}

.lesson-card {
    width: 390px;
    background: #333;
    border-radius: 18px;
    padding: 20px;
    font-family: 'Montserrat', sans-serif;
    color: #eae7e2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 14px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    margin-bottom: 20px;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='100%'><filter id='noise'><feTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='4' stitchTiles='stitch'></feTurbulence></filter><rect width='100%' height='100%' filter='url(%23noise)' opacity='0.1'/></svg>");
}

.lesson-header {
    background: #eae7e2;
    color: #333;
    font-weight: 700;
    font-size: 15px;
    padding: 12px 20px;
    border-radius: 30px;
    display: inline-block;
    align-self: flex-start;
    position: relative;
    z-index: 1;
    font-family: Montserrat-Bold, sans-serif;
}

.lesson-card ul {
    margin: 0;
    padding-left: 18px;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.4em;
    position: relative;
    z-index: 1;
}

.lesson-card p {
    margin: 0;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.4em;
    position: relative;
    z-index: 1;
}

.lesson-card p strong {
    font-weight: 700;
}

.lesson-card img {
    width: 100%;
    border-radius: 12px;
    margin-top: auto;
    position: relative;
    z-index: 1;
}

.komu {
    background-color: #eae7e2;
}

.why-image-container {
    overflow: hidden;
    border: none;
    width: 100%;
    margin: 0px auto;
    display: flex;
    pointer-events: none;
    max-width: 800px;
}

.about-section {
    background-color: #1C1C1C;
    height: 575px;
}

.about {
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    box-sizing: border-box;
    background-color: #333;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='100%'><filter id='noise'><feTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='4' stitchTiles='stitch'></feTurbulence></filter><rect width='100%' height='100%' filter='url(%23noise)' opacity='0.1'/></svg>");
}

.about-image-container {
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #333;
    width: 100%;
    flex: 0 0 100%;
    margin-bottom: 0;
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    pointer-events: none;
}

.about-description {
    font-family: Montserrat-Medium, sans-serif;
    font-size: 16px;
    text-align: left;
    font-weight: 500;
    margin-bottom: 5px;
    color: #eae7e2;
    width: 260px;
    line-height: 1.4;
}

.about-description p {
    margin-bottom: -10px;
}

.your-results {
    background-color: #333;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='100%'><filter id='noise'><feTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='4' stitchTiles='stitch'></feTurbulence></filter><rect width='100%' height='100%' filter='url(%23noise)' opacity='0.1'/></svg>");
    background-repeat: repeat;
}

.arguments {
    background-color: #1C1C1C;
    padding-bottom: 20px;
}

.arguments-container {
    margin: 0 auto;
    background-color: #3333331A;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='100%'><filter id='noise'><feTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='4' stitchTiles='stitch'></feTurbulence></filter><rect width='100%' height='100%' filter='url(%23noise)' opacity='0.1'/></svg>");
    background-repeat: repeat;
    width: 95%;
    border-radius: 15px;
    padding: 20px;
}

.arguments-text {
    font-family: Montserrat-Regular, sans-serif;
    font-size: 14px;
    font-weight: 400;
    flex: 1;
    margin-left: 20px;
    text-align: left;
    color: #eae7e2;
    width: 300px;
}

.faq-container {
    width: 95%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0px;
    box-sizing: border-box;
    background-color: #1C1C1C;
    margin-top: -40px;
}
.accordion0 {
    width: calc(100% - 20px);
    max-width: 800px;
    margin: 0 auto;
    padding: 10px;
}

.accordion0-item {
    border: 1px solid transparent; /* Обязательно: задаем толщину и делаем обычный цвет рамки прозрачным */
    border-color: #C63F7F;
    border-radius: 25px;
    margin: 10px 0;
    padding: 5px;
    background: #C63F7F1A;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='100%'><filter id='noise'><feTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='4' stitchTiles='stitch'></feTurbulence></filter><rect width='100%' height='100%' filter='url(%23noise)' opacity='0.1'/></svg>");
}


.accordion0-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    cursor: pointer;
    color: #D9D9D9;
}

.module-info p {
    margin: 0;
    font-family: Montserrat-Bold, sans-serif;
    font-size: 16px;
    font-weight: 400; /* Явно задаем вес */
    padding: 12px;
    color: #D9D9D9;
}

.accordion0-icon {
    font-size: 24px;
    transition: transform 0.15s;
    user-select: none; /* Запрещает выделение текста */
    padding: 12px;
}

.accordion0-content {
    max-height: 0; 
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
    padding: 0 5px; 
    font-family: Montserrat-Regular, sans-serif;
    font-size: 14px;
    font-weight: 400;
    margin-left: 14px;
    color: #D9D9D9;
}



.accordion {
    width: calc(100% - 30px);
    max-width: 800px;
    margin: auto;
    padding: 10px;
    margin-top: 30px;
    user-select: none; /* Запрещает выделение текста */
}

.accordion-item {
    border-radius: 30px;
    margin-bottom: 10px;
    overflow: hidden;
    background-color: #7D7D7D1A;
    user-select: none; /* Запрещает выделение текста */
}

.accordion-title {
    font-family: Montserrat-Medium, sans-serif;
    font-size: 14px;
    font-weight: 400;
    padding: 17px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #FFFFFF;
    user-select: none; /* Запрещает выделение текста */
}

.accordion-icon {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'NotoSansArrows', sans-serif;
    font-size: 20px;
    transition: transform 0.15s;
    background-color: #7D7D7D3A;
    border-radius: 32px;
    color: #FFFFFF;
    user-select: none;
    
    /* 🧩 правим выравнивание стрелки */
    transform-origin: center center;
}

.accordion-icon span {
    display: inline-block;
    transform: translate(1px, 2px); /* ← подгоняем визуальный центр */
}


.accordion-content {
    display: none;
    padding: 10px;
    font-family: Montserrat-Regular, sans-serif;
    font-size: 18px;
    color: #FFFFFF;

}

.accordion-content.show {
    font-family: Montserrat-Regular, sans-serif;
    font-size: 14px;
    font-weight: 400;
    display: block;
    color: #FFFFFF;
    padding: 17px;
}

.accordion-icon.rotate {
    transform: rotate(45deg);
}

.buy-button3 {
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    margin-top: 0px;
    background-color: #C63F7F1A;
    color: #eae7e2;
    padding: 15px 30px;
    border: 1px solid transparent; /* Обязательно: задаем толщину и делаем обычный цвет рамки прозрачным */
    border-color: #C63F7F;
    border-radius: 30px;
    font-family: 'Grotesk', sans-serif;
    font-size: 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='100%'><filter id='noise'><feTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='4' stitchTiles='stitch'></feTurbulence></filter><rect width='100%' height='100%' filter='url(%23noise)' opacity='0.1'/></svg>");
}


.buy-button3:hover {
    background-color: #555;
}

.contacts-section {
    background-color: #1C1C1C;
    color: #eae7e2;
    padding-bottom: 75px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contacts-title {
    font-family: Grotesk, sans-serif;
    font-size: 36px;
    margin: 0 auto 20px auto;
    font-weight: 400;
    text-align: center;
}

.contacts-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.contact-link {
    text-decoration: none;
    margin: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon {
    width: 50px;
    height: 50px;
    border: none;
    display: block;
    text-decoration: none;
    border-radius: 13px;
    opacity: 0.8;
}

.contact-link:hover .social-icon {
    opacity: 0.8;
}


.footer {
    font-family: BebasNeuePro-Regular, sans-serif;
    font-size: 14px;
    text-align: center;
    font-weight: 400;
}

.timerfooter {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(51, 51, 51, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    box-sizing: border-box;
    z-index: 1000;
    gap: 20px;
}

.timer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    flex: 1;
}

.timertext {
    font-family: BebasNeuePro-Regular, sans-serif;
    font-size: 14px;
    color: #eae7e2;
    font-weight: 400;
}

.timer {
    font-family: BebasNeuePro-Regular, sans-serif;
    font-size: 16px;
    color: #eae7e2;
    font-weight: 700;
}

.buy-button5 {
    text-align: center;
    margin: 0 auto 0px auto;
    border-radius: 30px;
    text-decoration: none;
    display: block;
    align-items: center;
    justify-content: center;
    flex: 0.7;
    background-color: #C63F7F1A;
    color: #eae7e2;
    padding: 15px 30px;
    border: 1px solid transparent; /* Обязательно: задаем толщину и делаем обычный цвет рамки прозрачным */
    border-color: #C63F7F;
    border-radius: 30px;
    font-family: 'Grotesk', sans-serif;
    font-size: 18px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='100%'><filter id='noise'><feTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='4' stitchTiles='stitch'></feTurbulence></filter><rect width='100%' height='100%' filter='url(%23noise)' opacity='0.1'/></svg>");

}

.buy-button5:hover {
    color: #333;
}

/* Mobile iPhone optimizations */
@media (max-width: 480px) {
    body {
        -webkit-text-size-adjust: 100%;
    }
    
    .header {
        padding: 8px 15px;
        padding-top: 28px;
        height: 65px;
    }
    
    .logo-container {
        width: 140px;
        height: 45px;
        margin-left: 5px;
    }
    
    .navigation {
        gap: 8px;
    }
    
    .nav-link {
        font-size: 26px;
    }
    
    .cta-section {
        bottom: 60px;
        gap: 8px;
    }
    
    
    .arrow-btn {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }
    
    .lesson-card {
        width: calc(100% - 30px);
        max-width: 360px;
        padding: 18px;
    }
    
    .arguments-container {
        margin: 0 auto;
        background-color: #3333331A;
        background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='100%'><filter id='noise'><feTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='4' stitchTiles='stitch'></feTurbulence></filter><rect width='100%' height='100%' filter='url(%23noise)' opacity='0.1'/></svg>");
        background-repeat: repeat;
        width: 80%;
        border-radius: 15px;
        padding: 20px;
    }
    
    .arguments-text {
        margin-left: 0;
        width: 90%;
    }
    

    
    .timerfooter {
        padding: 8px 15px;
        gap: 15px;
    }
    
    .buy-button5 {
        font-size: 13px;
        padding: 8px 16px;
        flex: 0.6;
    }
}

/* Desktop adaptation */
@media (min-width: 768px) {
    .section-title,
    .section-title2,
    .section-title3,
    .section-title4,
    .section-title5,
    .section-title6,
    .section-title7,
    .section-title8 {
        text-align: center;
        font-size: 36px;
        margin: 40px auto 30px;
    }
    
    .tariff-wrapper {
        flex-direction: row; 
        justify-content: center; 
        flex-wrap: wrap; 
        gap: 30px; 
        padding: 40px 0; /* Додаткові вертикальні відступи для десктопа */
    }

    .tariff-container {
        width: 350px; 
        margin: 0; 
    }
    
    .tariff-header,
    .tariff-text {
        width: 85%;
        margin-left: auto;
        margin-right: auto;
    }
    .target-wrapper {
        display: flex;
        flex-direction: row; /* Вертикальное расположение по умолчанию */
        gap: 20px; /* Отступ между контейнерами */
        background-color: #1C1C1C;
        margin-top: -30px;
    }
    
    .main-cover {
    font-family: Grotesk, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    }

    .main-cover-content {
        font-family: Grotesk, sans-serif;
        max-width: 900px;
        width: 100%;
    }
 
    /* --- Блок 1: Кикер --- */
    .cover-kicker {
        font-family: Grotesk, sans-serif;
        font-size: 25px;
        font-weight: 500;
        color: #b0b0b0;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        margin-bottom: 24px;
    }

    /* --- Блок 2: Главный заголовок --- */
    .cover-heading {
        font-family: Grotesk, sans-serif;
        font-size: 70px;
        font-weight: 700;
        color: #ffffff;
        line-height: 1.1;
        margin-bottom: 32px;
        text-transform: uppercase;
    }

    .cover-heading .highlight-instagram {
        color: #a0a0a0;
        font-weight: 400;
        text-transform: uppercase;
    }

    /* --- Блок 3: Описание --- */
    .cover-description {
        font-family: Grotesk, sans-serif;
        font-size: 25px;
        color: #b0b0b0;
        line-height: 1.6;
        font-weight: 400;
        max-width: 500px;
    }

    .cover-description .highlight-price {
        color: #ffffff;
        font-weight: 400;
    }

    .header {
        padding: 20px 40px;
        height: 90px;
    }
    
    .logo-container {
        width: 200px;
        height: 65px;
    }
    
    .navigation {
        gap: 40px;
    }
    
    .nav-link {
        font-size: 36px;
    }
    
    .cta-section {
        gap: 20px;
        bottom: 30px;
    }
    
    .join-btn {
        width: 600px;
        padding: 15px 50px;
        font-size: 32px;
    }
    
    .arrow-btn {
        width: 70px;
        height: 70px;
        font-family: 'NotoSansArrows', Arial, sans-serif;
    }
    
    .arguments-container {
        max-width: 680px;
        width: 680px;
        margin: 0 auto;
        padding: 40px;
        border-radius: 25px;
        margin-top: 30px;
    }
    
    .arguments-text {
        width: 700px;
        font-size: 18px;
        line-height: 1.6;
        text-align: left;
        margin: 0;
    }
    
    .lesson-card {
        width: 700px;
        max-width: 700px;
        padding: 40px;
        gap: 25px;
        margin-bottom: 40px;
        border-radius: 25px;
    }
    
    .lesson-header {
        font-size: 20px;
        padding: 18px 35px;
    }
    
    .lesson-card ul,
    .lesson-card p {
        font-size: 18px;
        line-height: 1.6;
    }
    
    .course-price {
        font-size: 36px;
        padding: 40px 35px;
        margin: 50px auto;
        border-radius: 20px;
    }
    
    .course-price .old-price {
        font-size: 32px;
        margin-left: 20px;
    }
    .about-section{
        flex-direction: column;
        height: 1050px;
    }
    .about {
        max-width: 1100px;
        padding: 50px;
        border-radius: 25px;
        display: flex;
        gap: 50px;
        align-items: center;
        width: 42%;
    }
    
    .about-image-container {
        border-radius: 25px;
        border: 2px solid #0000001A;
    }
    
    .about-description {
        font-size: 20px;
        line-height: 1.6;
        width: auto;
        flex: 1;
        text-align: left;
    }
    
    .about-description p {
        margin-bottom: 20px;
    }
    
    .feedback-slider {
        height: 600px;
        padding: 0 60px;
    }
    
    .feedback-track {
        gap: 40px;
    }
    
    .feedback-image-container {
        width: 300px;
        border-radius: 25px;
        border: 0px solid #333;
    }
    
    #feed-section2 .feedback-image-container {
        width: 450px;
    }
    
    .buy-button3 {
        font-size: 32px;
        padding: 18px 50px;
        margin: 40px auto;
        width: 760px;
    }
    
    .buy-button5 {
        font-size: 18px;
        padding: 15px 30px;
        max-width: 300px;
    }
    
    .accordion {
        width: 100%;
        max-width: 900px;
        margin: 40px auto 0;
        padding: 0;
    }
    
    .accordion-item {
        margin-bottom: 20px;
        border-radius: 30px;
    }
    
    .accordion-title {
        font-size: 20px;
        padding: 25px 35px;
    }
    
    .accordion-icon {
        width: 40px;
        height: 40px;
        font-family: 'NotoSansArrows', sans-serif;
        font-size: 30px;
    }
    
    .accordion-content.show {
        font-size: 18px;
        padding: 0 35px 25px;
        line-height: 1.6;
    }
    
    .contacts-section {
        padding: 80px 40px;
        text-align: center;
    }
    
    .contacts-title {
        font-size: 48px;
        margin-bottom: 50px;
    }
    
    .contacts-container {
        max-width: 900px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 50px;
        text-align: left;
    }
    
    .contact-link {
        font-size: 32px;
        margin: 15px 0;
    }
    
    .timerfooter {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.5);
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
        box-sizing: border-box;
        z-index: 1000;
        gap: 20px;
    }
    
    .timer-container {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        gap: 5px;
        flex: 1;
    }
    
    .timertext {
        font-size: 18px;
    }
    
    .timer {
        font-size: 22px;
    }
    
    .preloader-gif {
        width: 150px;
        height: 150px;
    }
    
    .course-bonus,
    .course-bonus2,
    .course-bonus3,
    .course-bonus4 {
        padding: 40px;
        font-size: 20px;
        max-width: 900px;
        margin: 40px auto;
        line-height: 1.6;
        text-align: left;
    }

    .course-bonus5 {
    width: 1050px;
    margin: auto;
    font-family: Montserrat-Medium, sans-serif;
    font-size: 25px;
    font-weight: 400;
    color: #eae7e2;
    margin-top: 0px;
    }

    .sale-top {
        height: 35px;
    }
    
    .sale-top-text {
        font-size: 26px;
    }
    
    .sale-top-text span {
        margin-right: 60px;
    }

    .cover-image-mobile {
        display: none;
    }
    
    .cover-container {
        max-width: 1200px;
        padding-left: 460px;
        padding-right: 460px;
    }
    
    .cover-image-pc {
        border-radius: 50px;
        margin-top: 50px;
        display: block;
        width: 1000px;
    }
}

.column-animate {
  opacity: 0;
  transform: translateY(32px) scale(0.97);
  transition: 
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0ms);
  will-change: opacity, transform;
}
.column-animate.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.column-animate.slide-left  { transform: translateX(-24px) scale(0.97); }
.column-animate.slide-right { transform: translateX(24px) scale(0.97); }
.column-animate.slide-left.visible,
.column-animate.slide-right.visible {
  transform: translateX(0) scale(1);
}

/* === Stack collapse styles (improved) === */
.column-animate {
  will-change: transform, opacity;
  transition: transform 300ms cubic-bezier(.22,1,.36,1), opacity 300ms linear;
}

.column-stack-container {
  /* нужно, чтобы контейнер был референсом для z-index (опционально) */
  position: relative;
}

/* класс для карточек, попавших в стопку */
.column-animate.is-stacked {
  pointer-events: none; /* чтобы не мешали кликам, если нужно */
}
