/* ========================================
   БАЗОВЫЕ СТИЛИ
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #fff;
    color: #21201f;
    line-height: 1.5;
    overflow-x: hidden;
    position: relative;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   ПЕРЕМЕННЫЕ
======================================== */
:root {
    --yellow: #FFD700;
    --yellow-hover: #FFD700;
    --orange: #ff6b35;
    --brown: #230F0A;
    --brown-light: #3d3b39;
    --beige: #f5f3f0;
    --white: #ffffff;
    --green: #34a853;
    --green-light: #e6f4ea;
    --red: #ea4335;
    --red-light: #fce8e6;
    --radius: 20px;
    --radius-lg: 30px;
    --radius-xl: 40px;
    --shadow: 0 0px 80px rgba(0, 0, 0, 0.534);
    --transition: all 0.3s ease;
}

/* ========================================
   КОНТЕЙНЕР
======================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   ШАПКА
======================================== */
.header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: transparent;
    
}

.header .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 35px;
    background: var(--white);
    padding: 14px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.nav-link {
    color: var(--brown);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover {
    opacity: 0.7;
}

.header-btn {
    background: var(--yellow);
    color: var(--brown);
    padding: 14px 30px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.header-btn:hover {
    background: var(--brown-light);
    transform: translateY(-2px);
}

/* ========================================
   HERO
======================================== */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 100px 0 180px; /* меньше верхний паддинг */
  overflow: hidden;
  margin-top: -100px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-bg-img {
    width: 100%;
    height: auto; /* Высота по пропорциям */
    min-height: 100%;
    object-fit: cover;
    object-position: center top; /* Показывать верх, обрезать низ */
}

.hero-bg-overlay {
    position: absolute;
    inset: -10px;
    background: linear-gradient(
        135deg, 
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.4) 40%,
        rgba(0, 0, 0, 0.2) 70%,
        rgba(0, 0, 0, 0.1) 100%
    );
}

.hero > .container {
    position: relative;
    z-index: 2;
}

.hero-card-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-card {
    position: relative;
    border-radius: var(--radius-xl);
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 20px;
    background: transparent;
}

/* Жёлтый фон с вырезом через SVG mask */
.hero-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--yellow);
    border-radius: var(--radius-xl);
    z-index: -1;
    
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 500' preserveAspectRatio='none'%3E%3Cdefs%3E%3Cmask id='hole'%3E%3Crect width='1200' height='500' fill='white'/%3E%3Crect x='624' y='30' width='528' height='440' rx='35' ry='35' fill='black'/%3E%3C/mask%3E%3C/defs%3E%3Crect width='1200' height='500' mask='url(%23hole)'/%3E%3C/svg%3E");
    -webkit-mask-size: 100% 100%;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 500' preserveAspectRatio='none'%3E%3Cdefs%3E%3Cmask id='hole'%3E%3Crect width='1200' height='500' fill='white'/%3E%3Crect x='624' y='30' width='528' height='440' rx='35' ry='35' fill='black'/%3E%3C/mask%3E%3C/defs%3E%3Crect width='1200' height='500' mask='url(%23hole)'/%3E%3C/svg%3E");
    mask-size: 100% 100%;
}

/* Бейдж */
.hero-badge {
    grid-column: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-lg);
    width: fit-content;
}

.hero-badge-icon {
    font-size: 14px;
}

.hero-badge-text {
    font-size: 11px;
    font-weight: 700;
    color: var(--brown);
    letter-spacing: 0.5px;
}

/* Заголовок */
.hero-title {
    grid-column: 1;
    font-size: 46px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--brown);
}

.hero-title-accent {
    color: var(--brown);
}

/* Преимущества */
.hero-benefits {
    grid-column: 1;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--brown);
}

.hero-check {
    width: 22px;
    height: 22px;
    background: var(--brown);
    color: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
}

/* Кнопки */
.hero-buttons {
    grid-column: 1;
    display: flex;
    flex-direction: row;
    gap: 12px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--brown);
    color: var(--white);
    padding: 16px 35px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
    border: 2px solid var(--brown);
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--brown-light);
    border-color: var(--brown-light);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--white);
    color: var(--brown);
    padding: 16px 35px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--beige);
}

.btn-secondary svg {
    width: 20px;
    height: 20px;
}

/* Прозрачное окно — без рамки, со скруглением */
.hero-image {
    display: block;
    grid-column: 2;
    grid-row: 1 / 5;
    align-self: center;
    aspect-ratio: 4/3;
    border-radius: 25px;
    background: transparent;
    
    /* Убираем рамку и тень */
    border: none;
    box-shadow: none;
}

.hero-img {
    display: none;
}


/* Подпись */
.hero-note {
    text-align: left;
    margin-left: 50px;
    margin-top: 20px;
    font-size: 13px;
    color: var(--white);
}

/* ========================================
   СЕКЦИИ С ПЕРЕХОДАМИ
======================================== */
.sections-container {
    position: relative;
    margin-top: -70px;
    z-index: 10;
}

.section {
    position: relative;
    padding: 80px 0;
}

.section:first-child {
    border-radius: 70px 70px 0 0;
    padding-top: 50px;
    padding-bottom: 200px;
}

/* Вторая секция */
.section:nth-child(2) {
    padding: 60px 0 100px;
    padding-bottom: 200px;
}

/* Третья секция */
.section:nth-child(3) {
    padding: 80px 0 100px;
    padding-bottom: 200px;
}

/* Четвёртая секция */
.section:nth-child(4) {
    padding: 80px 0 100px;
    padding-bottom: 200px;
}

/* Пятая секция */
.section:nth-child(5) {
    padding: 80px 0 100px;
    padding-bottom: 200px;
}

/* Последняя секция */
.section:last-child {
    padding-bottom: 60px;
    padding-bottom: 150px;
}

/* Белый фон */
.section--white {
    background: var(--white);
}

/* Жёлтый фон */
.section--yellow {
    background: var(--yellow);
}

/* Переходы между секциями */
.section::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    height: 70px;
    border-radius: 60px 60px 0 0;
    z-index: 1;
}

.section--white::before {
    background: var(--white);
}

.section--yellow::before {
    background: var(--yellow);
}

.section > .container {
    position: relative;
    z-index: 2;
}

.section:first-child::before {
    display: none;
}

/* ========================================
   ЗАГОЛОВКИ СЕКЦИЙ
======================================== */
.section-title {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    color: var(--brown);
    margin-bottom: 50px;
    text-transform: lowercase;
}

/* ========================================
   КАЛЬКУЛЯТОР
======================================== */
.calc-card {
    background: var(--brown);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 650px;
    margin: 0 auto;
}

.calc-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.calc-label {
    color: var(--white);
    font-size: 16px;
    font-weight: 800;
}

/* Dropdown города */
.calc-dropdown {
    position: relative;
    width: 250px;
}

.calc-dropdown-input {
    width: 100%;
    background: var(--beige);
    border: none;
    padding: 14px 45px 14px 18px;
    border-radius: var(--radius);
    font-size: 20px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
}

.calc-dropdown-input:focus {
    outline: 2px solid var(--yellow);
}

.calc-dropdown-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    color: var(--brown);
    pointer-events: none;
    transition: var(--transition);
}

.calc-dropdown-arrow.active {
    transform: translateY(-50%) rotate(180deg);
}

.calc-dropdown-list {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-height: 300px;
    overflow-y: auto;
    display: none;
    z-index: 100;
}

.calc-dropdown-list.active {
    display: block;
}

.calc-dropdown-option {
    padding: 12px 18px;
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition);
}

.calc-dropdown-option:hover {
    background: var(--beige);
}

/* Типы транспорта */
.calc-types {
    display: flex;
    gap: 8px;
    margin-bottom: 25px;
}

.calc-type {
    flex: 1;
    padding: 14px 15px;
    border-radius: var(--radius);
    border: none;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
    background: var(--beige);
    color: var(--brown);
    font-family: inherit;
}

.calc-type.active {
    background: var(--yellow);
}

.calc-type:hover:not(.active) {
    background: var(--white);
}

/* Слайдеры */
.calc-sliders {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.calc-slider-row {
    background: var(--beige);
    border-radius: var(--radius);
    padding: 20px;
}

.calc-slider-container {
    position: relative;
    height: 8px;
    background: #ddd;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 12px;
}

.calc-slider-track {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: var(--yellow);
    border-radius: 4px;
    transition: width 0.1s;
}

.calc-slider-thumb {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background: var(--brown);
    border: 3px solid var(--yellow);
    border-radius: 50%;
    cursor: grab;
    transition: transform 0.1s;
}

.calc-slider-thumb:active {
    cursor: grabbing;
    transform: translate(-50%, -50%) scale(1.1);
}

.calc-slider-label {
    font-size: 16px;
    font-weight: 800;
    color: var(--brown);
    display: flex;
    justify-content: space-between;
}

.calc-slider-label span {
    background: var(--yellow);
    padding: 2px 12px;
    border-radius: 10px;
    font-weight: 700;
}

/* Результат */
.calc-result {
    background: var(--yellow);
    border-radius: var(--radius);
    padding: 25px;
    text-align: center;
}

.calc-result-label {
    font-size: 16px;
    font-weight: 800;
    color: var(--brown);
    display: block;
    margin-bottom: 5px;
}

.calc-result-value {
    font-size: 42px;
    font-weight: 800;
    color: var(--brown);
}

/* ========================================
   ШАГИ
======================================== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {
    background: var(--brown);
    border-radius: var(--radius);
    padding: 25px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 15px;
}

.step-number {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: var(--yellow);
    color: var(--brown);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    margin: 0 auto 15px;
}

.step-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
}

.step-desc {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.5;
    margin-bottom: 12px;
}

.step-time {
    background: var(--yellow);
    color: var(--brown);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
}

/* ========================================
   ПОДХОДИТ ЛИ ВАМ
======================================== */
.fit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.fit-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    border: 3px solid transparent;
}

.section--yellow .fit-card {
    border-color: transparent;
}

.fit-card.fit-yes {
    border-color: var(--green);
}

.fit-card.fit-no {
    border-color: var(--red);
}

.fit-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--brown);
}

.fit-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
}

.fit-icon-yes {
    background: var(--green-light);
    color: var(--green);
}

.fit-icon-no {
    background: var(--red-light);
    color: var(--red);
}

.fit-list {
    list-style: none;
}

.fit-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 15px;
    border-bottom: 1px solid var(--beige);
    color: var(--brown);
}

.fit-list li:last-child {
    border-bottom: none;
}

.fit-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: bold;
}

.fit-card.fit-yes .fit-list li::before {
    color: var(--green);
}

.fit-card.fit-no .fit-list li::before {
    content: "✕";
    color: var(--red);
}

/* ========================================
   САМОЗАНЯТОСТЬ
======================================== */
.se-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.se-list {
    list-style: none;
}

.se-list li {
    display: flex;
    gap: 15px;
    padding: 16px 0;
    font-size: 15px;
    color: var(--brown);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    align-items: flex-start;
}

.se-list li:last-child {
    border-bottom: none;
}

.se-check {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: var(--brown);
    color: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.se-media {
    display: flex;
    justify-content: center;
}

.se-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 25px;
    width: 100%;
    max-width: 400px;
}

.se-video-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    aspect-ratio: 16/9;
    background: var(--brown);
}

.se-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.se-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.se-video-overlay:hover {
    background: rgba(0,0,0,0.5);
}

.se-video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.se-play-btn {
    width: 60px;
    height: 60px;
    background: var(--yellow);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.se-play-btn:hover {
    transform: scale(1.1);
}

.se-play-btn svg {
    width: 28px;
    height: 28px;
    color: var(--brown);
    margin-left: 4px;
}

.se-video-text {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
}

.se-app-info {
    text-align: center;
    margin-bottom: 20px;
}

.se-app-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--brown);
}

.se-app-subtitle {
    font-size: 13px;
    color: var(--brown-light);
}

.se-download {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.se-store-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 18px;
    background: var(--brown);
    color: var(--white);
    border-radius: 12px;
    text-decoration: none;
    transition: var(--transition);
}

.se-store-btn:hover {
    background: var(--brown-light);
}

.se-store-icon {
    width: 24px;
    height: 24px;
}

.se-store-label {
    font-size: 10px;
    opacity: 0.8;
    display: block;
}

.se-store-name {
    font-size: 14px;
    font-weight: 600;
}

/* ========================================
   ОТЗЫВЫ
======================================== */
.reviews-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.reviews-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: var(--white);
    border: 2px solid var(--brown);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.reviews-nav:hover {
    background: var(--yellow);
    border-color: var(--yellow);
}

.reviews-nav svg {
    width: 22px;
    height: 22px;
    color: var(--brown);
}

.reviews-nav-prev {
    left: 0;
}

.reviews-nav-next {
    right: 0;
}

.reviews-slider {
    overflow: hidden;
    margin: 0 60px;
}

.reviews-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.review-card {
    background: var(--beige);
    border-radius: var(--radius);
    padding: 25px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.section--yellow .review-card {
    background: var(--white);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--yellow);
    border: 3px solid var(--yellow);
}

.review-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-name {
    font-weight: 700;
    color: var(--brown);
    font-size: 16px;
}

.review-city {
    font-size: 13px;
    color: var(--brown-light);
}

.review-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--brown);
    margin-bottom: 15px;
    flex-grow: 1;
}

.review-income {
    background: var(--yellow);
    padding: 10px 18px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    color: var(--brown);
    display: inline-block;
    align-self: flex-start;
}

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.reviews-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid var(--brown);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.reviews-dot.active {
    background: var(--yellow);
    border-color: var(--yellow);
}

/* ========================================
   FAQ
======================================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 150px;
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 22px 30px;
    background: none;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--brown);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    font-family: inherit;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--beige);
}

.faq-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    position: relative;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    background: var(--brown);
    transition: var(--transition);
}

.faq-icon::before {
    width: 2px;
    height: 14px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 14px;
    height: 2px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon::before {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--brown-light);
    line-height: 1.7;
    font-size: 15px;
}

/* ========================================
   ФИНАЛЬНЫЙ CTA
======================================== */
.section--cta {
    padding-bottom: 0;
}

.cta-card {
    background: var(--brown);
    border-radius: var(--radius-xl);
    padding: 70px 50px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    text-transform: lowercase;
}

.cta-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
}

.cta-card .btn-primary {
    background: var(--yellow);
    color: var(--brown);
    border-color: var(--yellow);
}

.cta-card .btn-primary:hover {
    background: var(--yellow-hover);
    border-color: var(--yellow-hover);
}

.btn-large {
    padding: 20px 60px;
    font-size: 16px;
}

.cta-note {
    margin-top: 20px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

/* ========================================
   ФУТЕР
======================================== */
.footer {
    background: var(--brown);
    padding: 40px 20px;
    text-align: center;
}

.footer-text {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-disclaimer {
    color: rgba(255,255,255,0.4);
    font-size: 12px;
}

/* ========================================
   ИКОНКА ТЕЛЕГРАМ
======================================== */
.hidden {
    display: none !important;
}

.telegram-icon {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  z-index: 1000;
  overflow: hidden;
}

.telegram-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.telegram-icon:hover {
  transform: scale(1.1);
}

/* ========================================
   БОНУСЫ
======================================== */
.bonuses-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
}

.bonuses-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 2px solid var(--brown);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.bonuses-nav:hover {
    background: var(--yellow);
    border-color: var(--yellow);
}

.bonuses-nav svg {
    width: 24px;
    height: 24px;
    color: var(--brown);
}

.bonuses-nav-prev {
    left: 10px;
}

.bonuses-nav-next {
    right: 10px;
}

.bonuses-slider {
    overflow: hidden;
    width: 100%;
    -webkit-overflow-scrolling: touch; /* Плавный скролл на iOS */
    touch-action: pan-y pinch-zoom; /* Разрешаем вертикальный скролл, блокируем горизонтальный */
}

.bonuses-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    cursor: grab;
}

.bonuses-track:active {
    cursor: grabbing;
}

.bonus-card {
    background: var(--beige);
    border-radius: var(--radius-lg);
    padding: 0;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    overflow: hidden;
    user-select: none; /* Отключаем выделение текста при свайпе */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.bonus-card:hover {
    transform: translateY(-5px); /* Уменьшили подъем */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.bonus-visual {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    padding: 40px 20px;
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.bonus-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--white);
    color: var(--brown);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 700;
}

.bonus-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--brown);
    padding: 20px 20px 10px;
    text-align: center;
    line-height: 1.3;
}

.bonus-desc {
    font-size: 13px;
    color: var(--brown-light);
    padding: 0 20px;
    text-align: center;
    line-height: 1.5;
    flex-grow: 1;
}

.bonus-btn {
    background: var(--brown);
    color: var(--white);
    border: none;
    padding: 16px 30px;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    margin-top: 20px;
}

.bonus-btn:hover {
    background: var(--yellow);
}

.bonuses-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.bonuses-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid var(--brown);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.bonuses-dot.active {
    background: var(--yellow);
    border-color: var(--yellow);
}

/* Модальное окно - без изменений */
.bonus-modal {
    display: none; /* Изначально скрыто */
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    overflow-y: auto;
}

/* Когда модалка открыта, используем flex для центрирования */
.bonus-modal.show {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.bonus-modal-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    max-width: 600px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

/* Анимация появления */
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.bonus-modal-close {
    color: var(--brown-light);
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

.bonus-modal-close:hover {
    color: var(--brown);
    transform: rotate(90deg);
}

#bonusModalBody {
    margin-bottom: 30px;
}

#bonusModalBody h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--brown);
    margin-bottom: 20px;
}

#bonusModalBody p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--brown);
    margin-bottom: 15px;
}

#bonusModalBody ul {
    list-style: none;
    margin: 20px 0;
}

#bonusModalBody ul li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 15px;
    color: var(--brown);
}

#bonusModalBody ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: bold;
    font-size: 18px;
}



/* Изображения бонусов */
.bonus-icon-img {
    width: 230px;
    height: 230px;
    object-fit: contain;
    margin-bottom: 10px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

/* Убираем старый стиль для emoji */
.bonus-icon {
    font-size: 64px;
    margin-bottom: 10px;
}



/* Приложения */
.apps-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.app-block {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px 40px;
    position: relative;
    overflow: visible; /* Изменено для badge */
    transition: var(--transition);
}

.app-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.app-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--yellow);
    color: var(--brown);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 5;
}

.app-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: center; /* Изменено с start на center */
}

.app-left {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-right: 20px;
}

.app-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.app-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--brown);
    margin-bottom: 3px;
}

.app-hint {
    font-size: 13px;
    color: var(--brown-light);
    line-height: 1.3;
}

.app-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 480px; /* Ограничиваем ширину текстового блока */
    padding-right: 60px; /* Отступ от badge */
}

.app-desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--brown);
}

.app-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.app-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--brown);
    color: var(--white);
    border-radius: var(--radius);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
}

.app-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.app-btn:hover {
    background: var(--brown-light);
    transform: translateY(-2px);
}

/* ========================================
   ФИНАЛЬНЫЙ БЛОК ПРИЛОЖЕНИЙ
======================================== */
.app-block--final {
    margin-top: 30px;
    margin-bottom: 50px; /* Отступ вниз 50px */
    background: var(--yellow);
}

.app-final {
    background: var(--brown);
    border-radius: var(--radius-xl);
    padding: 40px 40px;
    text-align: center;
    border: none; /* Убрали белую обводку */
}

.app-final-icon {
    width: 60px;
    height: 60px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: bold;
    color: var(--brown);
    margin: 0 auto 20px;
}

.app-final-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.2;
    text-transform: lowercase;
}

.app-final-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.5;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.app-final .btn-primary {
    background: var(--yellow);
    color: var(--brown);
    border-color: var(--yellow);
    padding: 14px 40px;
    font-size: 15px;
}

.app-final .btn-primary:hover {
    background: var(--yellow-hover);
    border-color: var(--yellow-hover);
}

.app-final .btn-large {
    padding: 14px 40px;
}







/* Мобильные устройства (до 480px) */


/* ============================================
   МОБИЛЬНОЕ МЕНЮ
   ============================================ */

/* Скрываем мобильное меню на десктопе */
.mobile-header,
.mobile-menu {
    display: none;
}

/* Показываем десктопную навигацию */
.header-nav--desktop,
.header-btn--desktop {
    display: flex;
}

/* Попап с акцией */
.promo-modal {
  display: none;
  position: fixed;
  z-index: 10001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

.promo-modal.show {
  display: flex !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.promo-modal-content {
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 500px;
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.promo-modal-close {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 32px;
  font-weight: bold;
  color: var(--brown-light);
  cursor: pointer;
  z-index: 10;
  line-height: 1;
  transition: var(--transition);
  background: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-modal-close:hover {
  color: var(--brown);
  transform: rotate(90deg);
  background: var(--beige);
}

.promo-image-wrapper {
  width: 100%;
  height: 280px;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.promo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-text {
  padding: 30px 35px 25px;
  text-align: center;
}

.promo-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--brown);
  margin-bottom: 15px;
  line-height: 1.2;
}

.promo-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--brown-light);
  margin: 0;
}

.promo-desc strong {
  color: var(--brown);
  font-weight: 700;
}

.btn-promo {
  width: calc(100% - 70px);
  margin: 0 35px 35px;
  justify-content: center;
}

/* ========================================
   ДОКУМЕНТЫ (ТАБЫ)
======================================== */
.docs-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 2px solid var(--beige);
}

.docs-tabs {
    display: flex;
    border-bottom: 2px solid var(--beige);
}

.docs-tab {
    flex: 1;
    padding: 20px 30px;
    background: var(--beige);
    border: none;
    border-right: 2px solid var(--white);
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.docs-tab:last-child {
    border-right: none;
}

.docs-tab.active {
    background: var(--brown);
}

.docs-tab:hover:not(.active) {
    background: #ebe9e6;
}

.docs-tab-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    color: var(--brown);
}

.docs-tab.active .docs-tab-content {
    color: var(--white);
}

.docs-tab-emoji {
    font-size: 20px;
}

.docs-content {
    position: relative;
}

.docs-tab-panel {
    display: none;
    padding: 40px;
    animation: fadeIn 0.3s ease;
}

.docs-tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.docs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.docs-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.docs-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.docs-bullet {
    width: 12px;
    height: 12px;
    background: var(--yellow);
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

.docs-bullet--dark {
    background: var(--brown);
}

.docs-text {
    flex: 1;
}

.docs-item-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 5px;
    line-height: 1.3;
}

.docs-item-desc {
    font-size: 14px;
    color: var(--brown-light);
    line-height: 1.5;
}

.docs-notice {
    padding: 20px 25px;
    border-radius: var(--radius-lg);
    font-size: 14px;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.docs-notice--success {
    background: var(--green-light);
    border: 2px solid var(--green);
    color: #1e5c30;
}

.docs-notice--info {
    background: #e3f2fd;
    border: 2px solid #2196f3;
    color: #0d47a1;
}

.docs-notice-emoji {
    font-size: 18px;
    flex-shrink: 0;
}

.docs-notice p {
    margin: 0;
}

/* ========================================
   СЕКЦИЯ "ГОТОВЫ НАЧАТЬ?" (КОРИЧНЕВЫЙ БЛОК)
======================================== */
.section--yellow {
    background: var(--yellow);
    padding: 50px 0;
}

.ready-card {
    background: var(--brown);
    border-radius: var(--radius-xl);
    padding: 50px 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    border: 3px solid var(--brown);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.ready-card-title {
    font-size: 36px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 25px;
    text-transform: lowercase;
    line-height: 1.2;
}

.btn-ready {
    background: var(--yellow);
    color: var(--brown);
    border-color: var(--yellow);
    padding: 16px 45px;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 40px;
    display: inline-flex;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.btn-ready:hover {
    background: var(--yellow-hover);
    border-color: var(--yellow-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.ready-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 700px;
    margin: 0 auto;
}

.ready-stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ready-stat-value {
    font-size: 42px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.ready-stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.3;
}