
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #f7f9fa; 
    color: #1f2329; 
    line-height: 1.5;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* Сетки */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(450px, 1fr)); gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }

/* Кнопки */
.btn {
    display: inline-block;
    padding: 13px 28px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}
.btn-primary { 
    background-color: #FFCC00 !important; 
    color: #1f2329 !important; 
}
.btn-primary:hover { 
    background-color: #E6B800 !important; 
    transform: translateY(-1px); 
}
.btn-secondary { 
    background-color: rgba(255, 255, 255, 0.1); 
    color: #ffffff; 
    border: 2px solid #ffffff; 
}
.btn-secondary:hover { 
    background-color: #ffffff; 
    color: #1f2329; 
}
.full-width { width: 100%; }

/* Заголовки */
.section-title { text-align: center; font-size: 2rem; font-weight: 800; margin-bottom: 40px; color: #1f2329; letter-spacing: -0.5px; }
.section-subtitle { display: block; text-align: center; color: #5e6670; font-weight: 700; font-size: 0.8rem; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 5px; }

/* Шапка */
.header { background: #ffffff; padding: 15px 0; position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(0,0,0,0.06); }
.header-flex { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.4rem; font-weight: 800; color: #1f2329; text-transform: uppercase; letter-spacing: -0.5px; }
.logo span { 
    background-color: #FFCC00 !important; 
    color: #1f2329; 
    padding: 2px 6px; 
    border-radius: 4px; 
    margin-left: 4px; 
}
.nav a { color: #1f2329; text-decoration: none; margin: 0 12px; font-weight: 600; font-size: 0.9rem; transition: color 0.2s; }
.nav a:hover { color: #E6B800; }
.phone { text-align: right; }
.phone-label { display: block; font-size: 0.7rem; color: #5e6670; font-weight: 600; text-transform: uppercase; }
.phone a { color: #1f2329; font-weight: 800; text-decoration: none; font-size: 1.15rem; }

/* Главный баннер */
.hero { 
    position: relative;
    background: url('hero.jpg') no-repeat center center/cover;
    height: 65vh;
    display: flex;
    align-items: center;
}
.hero-overlay { 
    position: absolute; 
    top:0; left:0; width:100%; height:100%; 
    background: rgba(31, 35, 41, 0.6); 
}
.hero-content { position: relative; z-index: 2; max-width: 550px; }
.hero h1 { font-size: 3rem; line-height: 1.15; font-weight: 800; color: #ffffff; margin-bottom: 12px; text-transform: uppercase; }
.hero p { font-size: 1.1rem; color: #e2e4e7; margin-bottom: 25px; font-weight: 500; }
.badge { 
    display: inline-block; 
    background-color: #FFCC00 !important; 
    color: #1f2329; 
    padding: 4px 10px; 
    font-weight: 700; 
    font-size: 0.75rem; 
    border-radius: 4px; 
    margin-bottom: 12px; 
    text-transform: uppercase; 
}
.hero-buttons { display: flex; gap: 10px; }

/* Статистика */
.stats { background: #ffffff; padding: 35px 0; border-bottom: 1px solid rgba(0,0,0,0.04); }
.stat-card { text-align: center; border-right: 1px solid rgba(0,0,0,0.06); }
.stat-card:last-child { border-right: none; }
.stat-card h3 { 
    font-size: 2rem; 
    color: #1f2329; 
    font-weight: 800; 
    background: linear-gradient(180deg, transparent 65%, #FFCC00 35%); 
    display: inline-block; 
    padding: 0 4px; 
}
.stat-card p { color: #5e6670; font-size: 0.9rem; font-weight: 600; margin-top: 4px; }

/* Карточки услуг */
.services { padding: 70px 0; }
.card { background: #ffffff; border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; border: 1px solid rgba(0,0,0,0.04); box-shadow: 0 4px 15px rgba(0,0,0,0.02); }
.card:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.06); transition: all 0.2s; }
.card-img-wrapper { width: 100%; height: 190px; overflow: hidden; background: #eaedf0; }
.card-img { width: 100%; height: 100%; object-fit: cover; }
.card-content { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; }
.card-content h3 { font-size: 1.2rem; margin-bottom: 8px; color: #1f2329; font-weight: 700; }
.card-content p { color: #5e6670; font-size: 0.9rem; margin-bottom: 15px; flex-grow: 1; }
.card-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 12px; border-top: 1px solid #f2f4f7; }
.price { 
    font-weight: 800; 
    color: #1f2329; 
    font-size: 1.1rem; 
    background-color: #FFCC00 !important; 
    padding: 2px 6px; 
    border-radius: 4px; 
}
.card-link { color: #1f2329; text-decoration: none; font-weight: 700; font-size: 0.9rem; }
.card-link:hover { color: #E6B800; text-decoration: underline; }

/* --- Портфолио (ИСПРАВЛЕНО) --- */
.portfolio { padding: 70px 0; background: #ffffff; }

/* На ПК объекты стоят ровно по два в ряд */
.portfolio-grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 30px; 
}

.portfolio-item h4 { font-size: 1.15rem; margin-top: 12px; margin-bottom: 4px; color: #1f2329; font-weight: 700; }
.portfolio-item p { color: #5e6670; font-size: 0.9rem; }
.portfolio-img-box { position: relative; border-radius: 8px; overflow: hidden; height: 280px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.portfolio-img-box img { width: 100%; height: 100%; object-fit: cover; }
.portfolio-badge { 
    position: absolute; 
    top: 12px; left: 12px; 
    background-color: #1f2329; 
    color: #FFCC00; 
    font-weight: 700; 
    font-size: 0.75rem; 
    padding: 4px 8px; 
    border-radius: 4px; 
}

/* Этапы работы */
.steps { padding: 70px 0; }
.step-item { background: #ffffff; padding: 25px; border-radius: 8px; position: relative; border: 1px solid rgba(0,0,0,0.03); box-shadow: 0 4px 15px rgba(0,0,0,0.01); }
.step-num { 
    font-size: 1.1rem; 
    font-weight: 800; 
    color: #1f2329; 
    background-color: #FFCC00 !important; 
    width: 44px; 
    height: 44px; 
    line-height: 44px; 
    text-align: center; 
    border-radius: 50%; 
    position: absolute; 
    top: -22px; 
    left: 20px; 
    box-shadow: 0 3px 8px rgba(255,204,0,0.3);
}
.step-item h4 { font-size: 1.1rem; margin-top: 10px; margin-bottom: 6px; color: #1f2329; font-weight: 700; }
.step-item p { color: #5e6670; font-size: 0.85rem; }

/* Контакты */
.contact { padding: 70px 0; background: #ffffff; }
.contact-box { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; background: #f7f9fa; padding: 40px; border-radius: 8px; align-items: center; }
.contact-info h2 { font-size: 1.8rem; font-weight: 800; color: #1f2329; margin-bottom: 8px; text-transform: uppercase; }
.contact-info p { color: #5e6670; margin-bottom: 20px; font-size: 0.95rem; }
.contact-phone-big span { display: block; font-size: 0.75rem; color: #5e6670; text-transform: uppercase; font-weight: 700; }
.contact-phone-big a { font-size: 1.8rem; color: #1f2329; font-weight: 900; text-decoration: none; background: linear-gradient(180deg, transparent 65%, #FFCC00 35%); }
.contact-form-wrapper { background: #ffffff; padding: 25px; border-radius: 6px; border: 1px solid rgba(0,0,0,0.06); box-shadow: 0 4px 15px rgba(0,0,0,0.03); }
.form { display: flex; flex-direction: column; gap: 15px; }

/* Подвал */
.footer { background: #1f2329; padding: 25px 0; color: #9aa0a6; font-size: 0.85rem; }
.footer-flex { display: flex; justify-content: space-between; align-items: center; }
.footer .logo { color: #ffffff; }

/* Кнопки связи справа */
.fixed-actions-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 12px; 
    z-index: 999;
}
.action-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    font-size: 26px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.2s;
}
.action-btn:hover { transform: scale(1.05); }
.wa-btn { background-color: #25D366; color: white; line-height: 63px; font-size: 30px; box-shadow: 0 4px 12px rgba(37,211,102,0.3); }
.call-btn { 
    background-color: #FFCC00 !important; 
    color: #1f2329; 
    box-shadow: 0 4px 12px rgba(255,204,0,0.4); 
}

/* --- ГЛОБАЛЬНАЯ ЗАЩИТА ОТ ВЫЛЕТОВ ЗА РАМКИ --- */
html, body {
    overflow-x: hidden; /* Запрещает горизонтальный скролл на смартфонах */
    width: 100%;
}

img {
    max-width: 100%; /* Картинки никогда не вылезут за пределы своих блоков */
    height: auto;
}

/* Кнопка бургера (по умолчанию скрыта на ПК) */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #1f2329;
    cursor: pointer;
    padding: 5px;
    z-index: 101;
}

@media (max-width: 768px) {
    /* --- МЕНЬШЕ ОТСТУПЫ МЕЖДУ БЛОКАМИ --- */
    .services, .portfolio, .reviews-section, .steps, #geo, .contact {
        padding: 40px 0 !important; /* Вместо 70px-90px делаем компактные 40px */
    }
    
    .section-title {
        font-size: 1.5rem !important; /* Компактный заголовок секции */
        margin-bottom: 25px !important;
        letter-spacing: -0.3px;
    }
    
    .section-subtitle {
        font-size: 0.7rem !important; /* Уменьшенный подзаголовок */
        margin-bottom: 3px !important;
    }

    /* Мобильный бургер меню */
    .menu-toggle { display: block; font-size: 1.6rem; }

    /* Выпадающая навигация */
    .nav {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        border-bottom: 3px solid #FFCC00;
        padding: 10px 0;
        box-shadow: 0 8px 15px rgba(0,0,0,0.08);
        gap: 5px;
        text-align: center;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }
    .nav.active { opacity: 1; visibility: visible; transform: translateY(0); }
    .nav a { margin: 0; padding: 10px 0; font-size: 1rem; display: block; width: 100%; }

    .header-flex { position: relative; padding: 5px 0; }
    .logo { font-size: 1.2rem; } /* Чуть уменьшаем логотип */
    .phone { display: none; } 
    .footer-flex { flex-direction: column; gap: 10px; text-align: center; padding: 15px 0; }

    /* --- ЛИСТАНИЕ БЛОКОВ (КОМПАКТНЫЕ КАРТОЧКИ) --- */
    .services .grid-3, 
    .reviews-grid, 
    .steps .grid-4 {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px; /* Меньше зазор между карточками */
        justify-content: flex-start !important;
        padding: 10px 5px 20px;
        scrollbar-width: none;
    }
    .services .grid-3::-webkit-scrollbar, 
    .reviews-grid::-webkit-scrollbar, 
    .steps .grid-4::-webkit-scrollbar { display: none; }

    /* Карточки занимают 82% экрана вместо 85%, уменьшены внутренние отступы */
    .services .card,
    .reviews-section .card,
    .step-item {
        flex: 0 0 82% !important;
        max-width: 82% !important;
        min-width: 82% !important;
        scroll-snap-align: center;
        padding: 20px !important; /* Уменьшили внутренний отступ с 25px-30px до 20px */
    }

    /* Корректировка текстов внутри карточек услуг и отзывов */
    .card-content { padding: 15px !important; }
    .card-content h3 { font-size: 1.1rem; }
    .card-content p { font-size: 0.85rem; margin-bottom: 10px; }
    .price { font-size: 0.95rem; }
    .card-img-wrapper { height: 160px; } /* Чуть ниже картинки услуг */

    /* --- ПРИМЕРЫ ОБЪЕКТОВ (КОМПАКТНЫЙ ВЕРТИКАЛЬНЫЙ СПИСОК) --- */
    .portfolio .grid-2 {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0;
    }
    .portfolio-item { max-width: 100% !important; min-width: 100% !important; }
    .portfolio-item h4 { font-size: 1.05rem; margin-top: 8px; }
    .portfolio-item p { font-size: 0.85rem; }
    .portfolio-img-box { height: 190px; } /* Аккуратная высота фото объектов */

    /* --- КОМПАКТНАЯ ЗОНА ОБСЛУЖИВАНИЯ --- */
    #geo div {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 12px !important;
        padding: 12px !important;
        font-size: 0.85rem !important; /* Мелкий, аккуратный шрифт для городов */
    }
    #geo p { font-size: 0.85rem !important; margin-bottom: 15px !important; }

    /* --- АККУРАТНАЯ ФОРМА ЗАЯВКИ --- */
    .contact-box {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        padding: 0 10px !important;
    }
    .contact-info h2 { font-size: 1.4rem !important; }
    .contact-info p { font-size: 0.85rem !important; margin-bottom: 10px; }
    .contact-phone-big a { font-size: 1.4rem !important; }
    
    .contact-form-wrapper {
        width: 100% !important;
        background: #ffffff !important;
        padding: 20px !important; /* Сжали поля вокруг формы */
        border-radius: 8px !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important;
    }
    .form { gap: 10px; } /* Плотнее поля ввода */
    .form input { padding: 11px !important; font-size: 0.9rem !important; margin-bottom: 0 !important; }
    .btn { padding: 11px 20px; font-size: 0.8rem; } /* Кнопки стали чуть меньше */

    /* Главный баннер (Первый экран) */
    .hero { padding: 45px 0; min-height: auto; }
    .hero h1 { font-size: 1.8rem !important; } /* Сбалансированный главный заголовок */
    .hero p { font-size: 0.9rem !important; margin-bottom: 15px; }
    .badge { font-size: 0.65rem; padding: 3px 8px; margin-bottom: 8px; }
    .hero-buttons { gap: 8px; }

    /* Статистика */
    .stats { padding: 20px 0; }
    .grid-4 { grid-template-columns: 1fr !important; gap: 15px !important; }
    .stat-card { border-bottom: 1px solid rgba(0,0,0,0.05); padding-bottom: 10px; }
    .stat-card h3 { font-size: 1.5rem; }
    .stat-card p { font-size: 0.8rem; margin-top: 2px; }

    /* Плавающие кнопки связи */
    .fixed-actions-container { bottom: 12px; right: 12px; gap: 8px; }
    .action-btn { width: 48px; height: 48px; line-height: 48px; font-size: 20px; }
    .wa-btn { line-height: 51px; font-size: 24px; }
}
/* ==========================================================================
   6. БЛОК ОТЗЫВОВ И ЭТАПОВ РАБОТЫ (ИСПРАВЛЕННЫЙ)
   ========================================================================== */
.reviews-section { 
    padding: 70px 0; 
    background: #ffffff; 
}

/* На ПК отзывы стоят в один ряд и равномерно распределены */
.reviews-grid { 
    display: flex; 
    gap: 30px; 
    justify-content: center; 
    margin-top: 40px; 
}

.reviews-section .card { 
    flex: 1; 
    max-width: 360px; 
    text-align: left; 
    padding: 25px; 
    background: #f7f9fa; 
    border: none; 
    box-shadow: none; 
    border-radius: 8px; 
    display: flex; 
    flex-direction: column; 
}

.review-author-box { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    margin-bottom: 15px; 
}

.review-author-box h4 { 
    margin: 0; 
    font-size: 1.1rem; 
    color: #1f2329; 
}

.review-author-box span { 
    font-size: 0.8rem; 
    color: #5e6670; 
    font-weight: 600; 
}

.reviews-section .card img { 
    width: 60px; 
    height: 60px; 
    border-radius: 50%; 
    object-fit: cover; 
    border: 2px solid #FFCC00; 
    flex-shrink: 0; /* Защищает фото от сжатия */
}

.review-text-content { 
    color: #5e6670; 
    font-size: 0.9rem; 
    font-style: italic; 
    min-height: 110px; 
    margin: 0; 
    line-height: 1.6;
}

.stars { 
    color: #FFCC00; 
    font-size: 1.1rem; 
    margin-top: 15px; 
}

/* Стили этапов */
.steps { padding: 90px 0 70px; }
.step-item { background: #ffffff; padding: 35px 25px 25px; border-radius: 8px; position: relative; border: 1px solid rgba(0,0,0,0.03); box-shadow: 0 4px 15px rgba(0,0,0,0.01); margin-top: 25px; }
.step-num { 
    font-size: 1.1rem; font-weight: 800; color: #1f2329; background-color: #FFCC00 !important; 
    width: 44px; height: 44px; line-height: 44px; text-align: center; border-radius: 50%; 
    position: absolute; top: -22px; left: 20px; box-shadow: 0 3px 8px rgba(255,204,0,0.3);
}
.step-item h4 { font-size: 1.1rem; margin-top: 10px; margin-bottom: 6px; color: #1f2329; font-weight: 700; }
.step-item p { color: #5e6670; font-size: 0.85rem; }

.reviews-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* Мягкая, дорогая тень */
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.review-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%; /* Делает фото идеально круглым */
    object-fit: cover; /* Защищает фото от растягивания и искажения */
    margin-bottom: 20px;
    border: 3px solid #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.review-text {
    font-style: italic;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1; /* Выравнивает авторов по одной линии, если текст разной длины */
}

.review-author {
    font-weight: 600;
    color: #222;
    font-size: 1rem;
}

ss/* ==========================================================================
   9. БЛОК REELS ВИДЕО
   ========================================================================== */
.reels-section {
    padding: 70px 0;
    background: #f7f9fa;
}

/* На ПК выстраиваем 5 видео в красивую аккуратную строчку */
.reels-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.reels-item {
    flex: 1;
    max-width: 200px;
    aspect-ratio: 9 / 16; /* Пропорции классического вертикального видео */
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.reels-item:hover {
    transform: translateY(-4px);
}

.reels-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Иконка "Play" по центру видео */
.reels-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 204, 0, 0.9); /* Фирменный желтый цвет */
    color: #1f2329;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    padding-left: 4px; /* Сдвиг для идеальной центровки стрелочки */
    pointer-events: none; /* Чтобы клик проходил сквозь кнопку на видео */
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* --- Мобильная адаптация для Reels --- */
@media (max-width: 768px) {
    .reels-section {
        padding: 40px 0 !important;
    }
    
    /* На телефонах включаем плавное горизонтальное листание пальцем */
    .reels-grid {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px !important;
        justify-content: flex-start !important;
        padding: 10px 5px 20px;
        scrollbar-width: none;
    }
    .reels-grid::-webkit-scrollbar { display: none; }

    /* Видео на смартфонах занимают по 65% ширины экрана, чтобы было видно края соседних */
    .reels-item {
        flex: 0 0 65% !important;
        max-width: 65% !important;
        min-width: 65% !important;
        scroll-snap-align: center;
    }
}

/* СТИЛИ ДЛЯ НОВЫХ КНОПОК СВЯЗИ */
.messenger-buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 450px;
  margin: 30px auto 0;
  width: 100%;
}
.msg-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 25px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  color: #ffffff;
  transition: transform 0.2s, opacity 0.2s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.msg-btn:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

/* Фирменные цвета кнопок */
.btn-wa { background-color: #25d366; }
.btn-tg { background-color: #0088cc; }
.btn-vk { background-color: #0077ff; }
.btn-email { background-color: #e62e2d; }
.btn-phone { background-color: #ffcc00; color: #121212; }

/* Адаптивность для мобильных телефонов */
@media (max-width: 768px) {
  .messenger-buttons {
    padding: 0 10px;
  }
  .msg-btn {
    font-size: 16px;
    padding: 14px 20px;
  }
}
/* СТИЛИ ПЛАВАЮЩЕГО ВИДЖЕТА */
.floating-contact-widget {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 10px;
}
.widget-trigger-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #ffcc00; /* Твой фирменный желтый цвет */
  border: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  transition: transform 0.2s ease;
}
.widget-trigger-btn:hover {
  transform: scale(1.08);
}
.widget-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.widget-link {
  display: block;
  padding: 10px 18px;
  border-radius: 20px;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  white-space: nowrap;
}
.hidden { display: none !important; }

/* Минорные корректировки для мобилок */
@media (max-width: 768px) {
  .floating-contact-widget { bottom: 20px; right: 20px; }
  .widget-trigger-btn { width: 55px; height: 55px; font-size: 22px; }
}
