.hero {
    background-color: var(--white);
    padding: 2rem 5%;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

* {
    font-family: Roboto !important;
}

h1,h2,h3,h4,h5 {
    font-family: 'Roboto Condesed' !important;
}
.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 4rem;
}

/* Левая часть */
.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.1rem;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 1.5rem;
}



.h-feature-item {
    font-size: 1rem;
}

.hero-title span {
    color: var(--primary-gold);
}

.hero-subtitle {
    font-size: 1rem;
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* Кнопка */
.btn-cta-wa {
    display: inline-flex;
    align-items: center;
    gap:0.25rem;
    background-color: #25d366;
    color: white;
    padding: 1.2rem 2rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.btn-cta-wa:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
}

/* Правая часть с фото */
.hero-image-wrap {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.hero-image-bg {
    position: relative;
    width: 90%;
    height: 500px;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
}

.hero-image-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Плашка опыта */
.experience-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: var(--primary-gold);
    color: white;
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 10px 10px 30px rgba(0,0,0,0.1);
}

.experience-badge strong {
    display: block;
    font-size: 2rem;
}




 .hero-features {
    padding: 0.25rem;
    margin: 0.5rem;
    margin-top: 0.75rem;
    gap: 0.5rem;
    display: flex;
    flex-direction: row ;
    flex-wrap: wrap;
    font-size: 1rem;
   }
/* Адаптивность для мобилок */
@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-image-wrap {
        justify-content: center;
        width: 100%;
    }
    .hero-image-bg {
        width: 100%;
        height: 350px;
    }
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-features {
    padding: 0.25rem;
    margin: 0.5rem;
    margin-top
: 0.75rem;
    gap: 0.5rem;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    font-size: 1rem;
    align-content: center;
    justify-content: center;
    align-items: center;
}

   
}







.category-grid {
    display: grid;
    gap: 20px;
    padding: 20px;
    /* По умолчанию 1 колонка (для мобилок) */
    grid-template-columns: repeat(1, 1fr);
}

/* Планшеты */
@media (min-width: 600px) {
    .category-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Компьютеры */
@media (min-width: 1024px) {
    .category-grid { grid-template-columns: repeat(4, 1fr); }
}

.cat-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.cat-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.cat-price {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: #ffcc00;
    padding: 5px 10px;
    font-weight: bold;
    border-radius: 5px;
}

.cat-btn {
    display: block;
    text-align: center;
    background: #25d366;
    color: white;
    text-decoration: none;
    padding: 10px;
    margin-top: 10px;
    border-radius: 8px;
}

.category-grid {
    display: flex; /* Переключаемся на flex для прокрутки */
    gap: 20px;
    padding: 20px;
    overflow-x: auto; /* Включаем горизонтальный скролл */
    scroll-snap-type: x mandatory; /* "Прилипание" карточек при прокрутке */
    -webkit-overflow-scrolling: touch; /* Плавный скролл на iPhone */
}

/* Убираем некрасивый скроллбар (полосу прокрутки) */
.category-grid::-webkit-scrollbar {
    display: none;
}

.cat-card {
    min-width: 85vw; /* Карточка занимает 85% ширины экрана, чтобы была видна следующая */
    scroll-snap-align: center; /* Центрируем карточку при остановке */
    flex-shrink: 0; /* Чтобы карточки не сжимались */
}

/* Возвращаем сетку для компьютеров (Desktop) */
@media (min-width: 1024px) {
    .category-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        overflow-x: visible;
    }
    .cat-card {
        min-width: auto;
    }
}



.benefits-section {
    background: #ffffff;
    padding: 60px 20px;
}

.benefits-container {
    display: grid;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Мобильная версия: один под другим, иконка слева */
.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffcc00; /* Цвет акцента для SVG */
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
}

/* Заглушка, пока не найдешь иконки */
.svg-placeholder {
    width: 40px;
    height: 40px;
    background: #f0f0f0;
    border-radius: 8px;
}

.benefit-content h3 {
    margin: 0 0 8px 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.benefit-content p {
    margin: 0;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.benefit-content span {
    color: #1a1a1a;
    font-weight: 600;
    border-bottom: 2px solid #ffcc00; /* Подчеркивание важных цифр */
}

/* Десктоп: три в ряд */
@media (min-width: 1024px) {
    .benefits-container {
        grid-template-columns: repeat(3, 1fr);
    }
    .benefit-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}





.insta-double-section {
    background: #fdfdfd;
    padding: 60px 20px;
    border-top: 1px solid #eee;
}

.insta-double-header {
    text-align: center;
    margin-bottom: 40px;
}

.insta-double-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
}

.insta-double-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 10px auto 0 auto;
}

.insta-double-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Базовая карточка */
.insta-card {
    display: flex;
    align-items: center;
    text-decoration: none;
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.05);
    transition: 0.3s ease;
    border: 1px solid #f0f0f0;
}

.insta-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Иконка */
.insta-card-icon {
    width: 60px;
    height: 60px;
    background: #fdf5ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.insta-card-icon svg {
    width: 32px;
    height: 32px;
}

/* Заглушка для иконки (пока нет SVG) */
.svg-placeholder {
    font-size: 32px;
}

/* Контент карточки */
.insta-card-content h3 {
    margin: 0 0 5px 0;
    font-size: 20px;
    font-weight: 700;
}

.insta-card-content p {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.insta-card-link {
    font-size: 13px;
    font-weight: 600;
    color: #8a3ab9; /* Instagram purple */
}

/* Персонализация карточек */
.jaluzi-card .insta-card-icon { background: #fff5e6; color: #f09433; }
.jaluzi-card h3 { color: #f09433; }
.jaluzi-card .insta-card-link { color: #f09433; }

.shtori-card .insta-card-icon { background: #fdf5ff; color: #bc1888; }
.shtori-card h3 { color: #bc1888; }
.shtori-card .insta-card-link { color: #bc1888; }

/* Десктоп: две карточки в ряд */
@media (min-width: 768px) {
    .insta-double-grid {
        flex-direction: row;
    }
    .insta-card {
        flex: 1;
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }
    .insta-card-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

.h-feature-item.kas {
    color: #770000bd;
}