/* Базовые стили и сброс */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth; /* Плавный скролл по якорям */
}

body {
    font-family: 'Montserrat', sans-serif; /* Пример шрифта */
    font-size: 16px;
    line-height: 1.6;
    color: #000000; /* Основной цвет текста */
}

.container {
    max-width: 1160px; /* Ширина контейнера как в Tilda */
    margin: 0 auto;
    padding: 0 20px; /* Отступы по бокам */
}

a {
    text-decoration: none;
    color: inherit; /* Наследовать цвет текста */
}

ul {
    list-style: none;
}

h1, h2, h3 {
    line-height: 1.3;
    margin-bottom: 15px;
}

h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 30px;
}

h3 {
    font-size: 24px;
}

p {
    margin-bottom: 15px;
}

/* Выделение цветом (желтый) */
.highlight {
    color: #ffc700;
}

/* Стили кнопок */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px; /* У Tilda часто скругленные или прямоугольные, подберите */
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    border: 3px solid #ffc700; /* Толщина рамки как в примере */
}

.btn-outline {
    color: #000000;
    background-color: #ffffff;
    border-color: #ffc700;
}

.btn-outline:hover {
    background-color: #ffc700;
    color: #000000;
}

.btn-primary {
    color: #000000;
    background-color: #ffc700;
    border-color: #ffc700;
}

.btn-primary:hover {
    background-color: #e6b300; /* Немного темнее при наведении */
    border-color: #e6b300;
}


/* Шапка сайта */
.site-header {
    background-color: #000000; /* Черный фон */
    color: #ffffff;
    padding: 15px 0;
    position: absolute; /* Или fixed, если нужна фиксация */
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.main-nav ul {
    display: flex;
}

.main-nav li {
    margin-left: 25px;
}

.main-nav a {
    color: #ffffff;
    font-weight: 600;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #ffc700; /* Желтый при наведении */
}

/* Главный экран (Hero) */
.hero {
    min-height: 100vh; /* Высота на весь экран */
    background-color: #333; /* Цвет фона на случай, если картинка не загрузится */
    /* --- ВАЖНО: ЗАМЕНИТЕ ПУТЬ К КАРТИНКЕ --- */
    background-image: url('images/header.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed; /* Эффект параллакса */
    position: relative;
    display: flex;
    align-items: center; /* Вертикальное выравнивание по центру */
    justify-content: center; /* Горизонтальное выравнивание по центру */
    text-align: center;
    color: #ffffff;
    padding-top: 80px; /* Отступ от шапки */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Полупрозрачный черный слой */
    z-index: 1;
}

.hero-content {
    position: relative; /* Чтобы контент был поверх оверлея */
    z-index: 2;
}

.hero h1 {
    font-size: 52px; /* Размер шрифта заголовка */
    font-weight: 700;
    margin-bottom: 20px;
}

.hero p {
    font-size: 22px; /* Размер шрифта подзаголовка */
    margin-bottom: 30px;
}

.arrow-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}
.arrow-down svg {
    fill: #ffffff;
    width: 38px;
    height: auto;
}

/* Секция бесплатного гайда */
.free-guide {
    padding: 60px 0 75px 0;
    text-align: center;
}
.free-guide h2 {
    color: #000000;
    margin-bottom: 30px;
}
.free-guide .btn {
    margin-top: 10px;
}

/* Секция Handstand PRO */
.pro-section {
    background-color: #1e2433; /* Темно-синий фон */
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
}
.pro-section h2 {
    color: #ffffff;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Адаптивная сетка */
    gap: 40px; /* Отступ между блоками */
    margin-bottom: 60px;
    text-align: center;
}

.feature-item svg {
    margin-bottom: 20px;
    /* Стили для иконок, если они SVG */
    /* fill: #ffc700; */ /* Управляется через path в HTML */
    /* stroke: #ffc700; */
}
.feature-item img { /* Если иконки картинками */
     width: 60px; /* Примерный размер */
     height: auto;
     margin-bottom: 20px;
}

.feature-item h3 {
    margin-bottom: 10px;
    font-size: 22px;
}
.feature-item p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8); /* Слегка прозрачный белый */
}

.price-block {
    margin: 40px 0 30px 0;
}
.price-block .access-text {
    font-size: 28px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 10px;
}
.price-block .price {
    font-size: 52px;
    font-weight: 700;
    color: #ffc700; /* Желтый цвет для цены */
    line-height: 1;
}
.price-block .old-price {
    font-size: 40px;
    color: #ffffff;
    text-decoration: line-through;
    margin-left: 15px;
    font-weight: 600;
    opacity: 0.7;
}

/* Секция преимуществ */
.pro-benefits {
    padding: 60px 0;
    background-color: #ffffff;
}
.pro-benefits h2 {
    color: #000000;
    margin-bottom: 50px;
}

.benefits-list {
    max-width: 800px; /* Ограничиваем ширину списка для читаемости */
    margin: 0 auto;
}

.benefits-list li {
    display: flex;
    align-items: flex-start; /* Выравнивание иконки и текста по верху */
    margin-bottom: 40px;
}

.benefit-icon {
    margin-right: 20px;
    flex-shrink: 0; /* Чтобы иконка не сжималась */
}
.benefit-icon svg {
    width: 32px; /* Размер галочки */
    height: 32px;
    /* fill: #1f5bff; */ /* Цвет галочки, если нужно переопределить из HTML */
}

.benefit-text h3 {
    margin-bottom: 5px;
    font-size: 24px;
}
.benefit-text p {
    font-size: 18px;
    font-weight: 300; /* Тонкий шрифт для описания */
    color: #333333; /* Темно-серый цвет текста */
    margin-bottom: 0;
}

/* Подвал сайта */
.site-footer {
    background-color: #111111; /* Очень темный фон */
    color: #ffffff;
    padding: 45px 0 30px 0;
    text-align: center;
}

.social-links {
    margin-bottom: 20px;
}

.social-links a {
    display: inline-block;
    margin: 0 10px;
}

.social-links svg {
    width: 48px; /* Размер иконок соцсетей */
    height: 48px;
    fill: #ffffff; /* Белый цвет иконок */
    transition: opacity 0.3s ease;
}
.social-links a:hover svg {
    opacity: 0.8; /* Легкая прозрачность при наведении */
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7); /* Полупрозрачный белый */
    margin-bottom: 0;
}


/* --- Адаптивность (пример) --- */

@media (max-width: 980px) {
    h2 { font-size: 36px; }
    .hero h1 { font-size: 42px; }
    .hero p { font-size: 18px; }
    .features-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px;}
     .price-block .access-text { font-size: 24px; }
     .price-block .price { font-size: 46px; }
     .price-block .old-price { font-size: 34px; }

}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column; /* Меню и логотип друг под другом */
    }
    .main-nav ul {
        margin-top: 15px;
        justify-content: center;
    }
    .main-nav li { margin: 0 15px;}

    .hero { min-height: 80vh;} /* Уменьшить высоту на мобильных */
    .hero h1 { font-size: 32px; }
    .hero p { font-size: 16px; }

    h2 { font-size: 30px; }
    h3 { font-size: 20px; }
    .pro-benefits h2 { margin-bottom: 30px; }
    .benefits-list li { margin-bottom: 30px; }
    .benefit-text p { font-size: 16px; }

    .features-grid { grid-template-columns: 1fr; } /* Один столбец */
    .feature-item { margin-bottom: 30px; }

     .price-block .access-text { font-size: 20px; }
     .price-block .price { font-size: 40px; }
     .price-block .old-price { font-size: 30px; }

    .site-footer { padding: 30px 0 20px 0;}

}

@media (max-width: 480px) {
     .hero h1 { font-size: 28px; }
     .main-nav a { font-size: 14px; }
     .btn { padding: 10px 20px; font-size: 14px; }
     h2 { font-size: 26px; }
     .benefits-list li { flex-direction: column; align-items: center; text-align: center;}
     .benefit-icon { margin-right: 0; margin-bottom: 10px; }
}