/* ============================================================
MODERN.CSS
============================================================ */

/* ===== ПЕРЕМЕННЫЕ ===== */
:root {
--main-color: #3b3b3b;
--secondary: #ded8d8;
--accent: #4a4a4a;
--accent-light: #6a6a6a;
--accent-dark: #2a2a2a;
--warm: #bba899;
--cream: white;
--cream-dark: #e8e0d8;
--bg: #faf8f6;
--bg-dark: #1a1a1a;
--white: #ffffff;
--radius: 14px;
--radius-btn: 50px;
--shadow: 0 4px 20px rgba(59, 59, 59, 0.08);
--shadow-hover: 0 16px 45px rgba(59, 59, 59, 0.15);
--transition: 0.3s ease;
}

/* ===== БАЗОВЫЕ СТИЛИ ===== */

{
outline: none;
box-sizing: border-box;
}
html, body {
height: 100%;
margin: 0;
}

body {
position: relative;
font-family: 'Open Sans Condensed', sans-serif;
font-size: 18px;
line-height: 1.4;
color: var(--main-color);
max-width: 100%;
padding-top: 101px;
text-align: center;
background-color: white;
overflow-x: hidden;
}

p, h1, h2, h3, h4, ul {
margin: 0 0 0.5em;
padding: 0;
}

ul {
padding-left: 20px;
}

a img {
border: 0;
}

img {
height: auto;
vertical-align: middle;
}

a {
color: var(--main-color);
text-decoration: none;
transition: all var(--transition);
}

a:hover {
color: var(--accent-light);
}

/* ===== ТИПОГРАФИКА ===== */
.title {
text-transform: uppercase;
font-family: 'Cormorant', sans-serif;
padding-bottom: 30px;
text-align: center;
background: url("../img/general/title-gray.png") bottom center no-repeat;
}

h1 { font-size: 50px; margin-top: 0; }
h2 { font-size: 36px; margin-top: 0; }
h3 { font-size: 30px; margin-top: 0; }

@media (max-width: 920px) {
h1 { font-size: 40px; }
h2 { font-size: 26px; }
h3 { font-size: 20px; }
}

/* ===== CENTER ===== */
.center {
max-width: 1200px;
margin: 0 auto;
text-align: left;
}

@media (max-width: 1200px) {
    .center {
        padding: 0 15px;
        width: 100%;
        box-sizing: border-box;
    }
}

.container.center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ============================================================
   ШАПКА — ПОЛНЫЙ ПЕРЕБОЙ
   ============================================================ */

/* Фикс базового отступа */
body {
    padding-top: 0 !important;
}

/* === DESKTOP HEADER === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: white;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(59, 59, 59, 0.06);
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 4px 25px rgba(59, 59, 59, 0.1);
}

.header_wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    gap: 20px;
    min-height: 80px;
}

/* Логотип */
.header_logo {
    display: block;
    flex-shrink: 0;
    width: 220px;
    transition: width 0.3s ease;
}

.header_logo img {
    max-width: 250px;
}

.header.scrolled .header_logo {
    width: 180px;
}

.header_logo svg {
    width: 100%;
    height: auto;
}

/* Навигация */
.navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.navigation_ul {
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.navigation_link {
    position: relative;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--main-color);
    letter-spacing: 1px;
    padding: 6px 0;
    transition: color 0.3s ease;
}

.navigation_link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--main-color);
    transition: width 0.3s ease;
}

.navigation_link:hover {
    color: var(--accent-light);
}

.navigation_link:hover::after {
    width: 100%;
}

/* Блок контактов */
.contact {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.contact-block {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-link--phone {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: var(--main-color);
    font-size: 15px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link--phone:hover {
    color: var(--accent-light);
}

.contact-link__media {
    display: flex;
    gap: 6px;
}

.media_item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(59, 59, 59, 0.06);
    transition: all 0.3s ease;
}

.media_item:hover {
    transform: translateY(-2px);
}

.contact__callback {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: var(--main-color);
    color: var(--secondary);
    border: none;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.contact__callback:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 59, 59, 0.2);
}

/* Гамбургер — скрыт на десктопе */
label.hamburger {
    display: none;
}

input.hamburger {
    display: none;
}

/* ============================================================
НАВИГАЦИЯ
============================================================ */

.navigation {
width: 45%;
}

.navigation_ul {
display: flex;
justify-content: center;
margin: 0;
padding: 0;
list-style: none;
}

.navigation_item { display: block; }

.navigation_link {
position: relative;
text-transform: uppercase;
text-decoration: none;
margin: 0 10px;
font-weight: bold;
padding-bottom: 4px;
transition: color var(--transition);
}

.navigation_link::after {
content: '';
position: absolute;
bottom: -2px;
left: 50%;
width: 0;
height: 2px;
background: linear-gradient(90deg, var(--main-color), var(--warm));
transition: all 0.35s ease;
transform: translateX(-50%);
border-radius: 2px;
}

.navigation_link:hover { color: var(--accent-light); }

.navigation_link:hover::after { width: 100%; }

.header.scrolled .navigation_link { font-size: 15px; }

/* --- Адаптив --- */
@media (max-width: 1200px) {
    .navigation {
        padding-top: 30px;
        width: 100%;
    }
    
.navigation_link { font-size: 14px; }
}

@media (max-width: 920px) {
.header .navigation { }
.footer .navigation {
margin-left: 0;
padding: 15px 0;
text-align: center;
}
.navigation_ul { flex-direction: column; }
.navigation_item { margin-bottom: 10px; }
}

/* ============================================================
   БАННЕР — ПОЛНЫЙ ПЕРЕБОЙ
   ============================================================ */

.banner {
    position: relative;
    min-height: 85vh;
    max-height: 900px;
    margin-top: 80px; /* Отступ от шапки */
    display: flex;
    overflow: hidden;
}

/* Фоновая картинка */
.banner_main {
    position: absolute;
    inset: 0;
    left:0;
    right:0;
    bottom:0;
    top:0;
    z-index: 0;
    background: linear-gradient(
        180deg,
        rgba(26, 26, 26, 0.3) 0%,
        rgba(26, 26, 26, 0.15) 40%,
        rgba(26, 26, 26, 0.5) 100%
    );
}

.banner_image {
    width: 100%;
    height: 100%;
    background: url(../../assets/images/main-bg-2.jpg) center center no-repeat;
    background-size: cover;
}

@media (max-width: 768px) {
  .banner_image {
        background: url(../../assets/images/mobile-banner-2.jpg) center center no-repeat;
        background-size: cover;
    }  
}



.banner_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Градиент поверх картинки */
.banner_main::after {
    
}

/* ============================================================
FEEDBACK BANNER — форма на баннере
============================================================ */

.feedback-banner {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    width: 380px;
    max-width: 90%;
    padding: 36px 32px 28px;
    border-radius: 24px;
    background: rgba(250, 248, 246, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(222, 216, 216, 0.5);
    box-shadow:
    0 25px 60px rgba(59, 59, 59, 0.15),
    0 8px 20px rgba(59, 59, 59, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
    z-index: 3;
    transition:
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.4s ease;
}

.feedback-banner:hover {
    transform: translateY(calc(-50% - 8px));
    box-shadow:
    0 35px 80px rgba(59, 59, 59, 0.2),
    0 12px 30px rgba(59, 59, 59, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.feedback-banner__header {
text-align: center;
margin-bottom: 24px;
}

.feedback-banner__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--main-color), var(--accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
    0 8px 25px rgba(59, 59, 59, 0.25),
    0 2px 8px rgba(0, 0, 0, 0.1);
}

.feedback-banner__icon svg {
    width: 28px;
    height: 28px;
    fill: var(--secondary);
}

.feedback-banner__title {
    font-family: 'Cormorant', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--main-color);
    margin: 0 0 8px;
    padding: 0;
    background: none;
    text-transform: none;
}

.feedback-banner__subtitle {
font-size: 14px;
color: rgba(59, 59, 59, 0.6);
margin: 0;
line-height: 1.5;
}

.feedback-banner__fields { margin-bottom: 20px; }
.feedback-banner__field { margin-bottom: 14px; }

.feedback-banner__input-wrap { position: relative; }

.feedback-banner__input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    fill: rgba(59, 59, 59, 0.3);
    pointer-events: none;
    transition: fill 0.3s ease;
}

.feedback-banner__field:focus-within .feedback-banner__input-icon {
fill: var(--accent-light);
}

.feedback-banner__input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    border: 2px solid rgba(222, 216, 216, 0.5);
    border-radius: 14px;
    background: white;
    color: var(--main-color);
    font-family: inherit;
    font-size: 15px;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.feedback-banner__input:focus {
    border-color: var(--accent-light);
    box-shadow: 0 0 0 4px rgba(106, 106, 106, 0.1), 0 4px 14px rgba(0, 0, 0, 0.05);
    outline: none;
}

.feedback-banner__input::placeholder { color: rgba(59, 59, 59, 0.35); }

.feedback-banner__submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--main-color) 0%, var(--accent-light) 100%);
    color: var(--secondary);
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(59, 59, 59, 0.25), 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}

.feedback-banner__submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--main-color) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feedback-banner__submit-text { position: relative; z-index: 1; }

.feedback-banner__submit-arrow {
    position: relative;
    z-index: 1;
    width: 20px;
    height: 20px;
    fill: var(--secondary);
    transition: transform 0.3s ease;
}

.feedback-banner__submit:hover {
transform: translateY(-3px);
box-shadow: 0 12px 35px rgba(59, 59, 59, 0.3), 0 4px 12px rgba(0, 0, 0, 0.15);
}

.feedback-banner__submit:hover::before { opacity: 1; }

.feedback-banner__submit:hover .feedback-banner__submit-arrow { transform: translateX(4px); }

.feedback-banner__submit:active { transform: translateY(-1px) scale(0.98); }

.feedback-banner__trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 12px;
    color: rgba(59, 59, 59, 0.5);
}

.feedback-banner__trust-icon {
    width: 14px;
    height: 14px;
    fill: rgba(106, 106, 106, 0.4);
}

.feedback-banner .error_name,
.feedback-banner .error_phone {
    display: block;
    font-size: 12px;
    color: #8b3a3a;
    margin-top: 4px;
    padding-left: 4px;
}

/* ============================================================
   АДАПТИВ — ПЛАНШЕТ (до 1024px)
   ============================================================ */

@media (max-width: 1024px) {
    .header_wrapper {
        gap: 12px;
    }

    .header_logo {
        width: 180px;
    }
    
    .navigation_ul {
        gap: 14px;
    }
    
    .navigation_link {
        font-size: 13px;
    }
    
    .contact-link--phone {
        font-size: 14px;
    }
    
    .contact__callback {
        padding: 8px 5px;
        font-size: 12px;
    }
    
    .media_item {
        width: 28px;
        height: 28px;
    }
    
    /* Баннер */
    .banner {
        min-height: 70vh;
    }
    
    .feedback-banner {
        width: 340px;
        padding: 28px 24px;
    }
}


/* ============================================================
   АДАПТИВ — ПЛАНШЕТ МАЛЕНЬКИЙ (до 920px)
   ============================================================ */

@media (max-width: 920px) {
    .header_wrapper {
        min-height: 70px;
    }
    
    .navigation_ul {
        gap: 10px;
    }
    
    .navigation_link {
        font-size: 12px;
    }
    
    .contact {
        gap: 10px;
    }
    
    .contact-link__media {
        gap: 4px;
    }
    
    /* Баннер */
    .banner {
        min-height: 80vh;
    }
    
    .feedback-banner {
        width: 320px;
        margin-right: 3%;
    }
}


/* ============================================================
   АДАПТИВ — МОБИЛЬНЫЙ (до 768px)
   ============================================================ */

@media (max-width: 768px) {
    /* Шапка */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
    }
    
    .header_wrapper {
        min-height: 60px;
        justify-content: space-between;
    }
    
    /* Навигация скрыта */
    .navigation {
        display: none;
    }
    
    /* Контакты — только телефон и кнопка */
    .contact {
        gap: 8px;
    }
    
    .contact-block {
        flex-direction: row;
        align-items: center;
    }
    
    /* Скрыть текст телефона, оставить иконку */
    .contact-link--phone .contact-link__text {
        display: none;
    }
    
    .contact-link__icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background: rgba(59, 59, 59, 0.08);
        border-radius: 50%;
    }
    
    .contact-link__icon svg {
        width: 18px;
        height: 18px;
        fill: var(--main-color);
    }
    
    /* Скрыть соцсети */
    .contact-link__media {
        display: none;
    }
    
    /* Кнопка звонка — компактная */
    .contact__callback {
        width: 36px;
        height: 36px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
    }
    
    .contact__callback span {
        display: none;
    }
    
    .contact__callback-icon {
        margin: 0;
        width: 16px;
        height: 16px;
    }
    
    
    /* Баннер */
    .banner {
        min-height: 70vh;
        margin-top: 60px;
        flex-direction: column;
    }
    
    .banner_main {
        height: 100%;
        min-height: 300px;
    }
    
    /* Форма под картинкой */
    .feedback-banner {
        width: 100%;
        right: 0%;
        left: 0;
        max-width: 80%;
        margin: 0 auto;
        padding: 20px;
        background: var(--bg);
    }
}


/* ============================================================
   АДАПТИВ — МАЛЕНЬКИЙ МОБИЛЬНЫЙ (до 480px)
   ============================================================ */

@media (max-width: 480px) {

    
    .contact-link__icon,
    .contact__callback {
        width: 32px;
        height: 32px;
    }
    
    label.hamburger {
        top: 14px;
        right: 12px;
    }
    
    /* Баннер */

    .feedback-banner {
        padding: 20px 16px;
    }
    
    .feedback-banner__title {
        font-size: 20px;
    }
    
    .feedback-banner__subtitle {
        font-size: 13px;
    }
    
    .feedback-banner__input {
        padding: 14px 14px 14px 44px;
        font-size: 14px;
    }
    
    .feedback-banner__submit {
        padding: 14px 20px;
        font-size: 14px;
    }
}

/* ============================================================
КНОПКИ
============================================================ */

.button {
position: relative;
display: inline-block;
padding: 14px 32px;
min-width: 170px;
border: none;
text-align: center;
border-radius: var(--radius-btn);
background: linear-gradient(135deg, var(--main-color) 0%, #5a5a5a 50%, var(--accent-dark) 100%);
background-size: 200% 200%;
background-position: 0% 50%;
color: var(--secondary);
text-transform: uppercase;
text-decoration: none;
font-weight: 600;
letter-spacing: 3px;
cursor: pointer;
overflow: hidden;
box-shadow:
0 4px 15px rgba(59, 59, 59, 0.3),
0 1px 3px rgba(0, 0, 0, 0.1);
transition:
background-position 0.5s ease,
transform 0.25s ease,
box-shadow 0.25s ease;
}

.button:hover {
background-position: 100% 50%;
transform: translateY(-4px);
box-shadow:
0 10px 30px rgba(59, 59, 59, 0.35),
0 4px 10px rgba(0, 0, 0, 0.15);
color: var(--secondary);
}

.button:active {
transform: translateY(-1px) scale(0.98);
}

.btn-primary {
animation: buttonPulse 2.5s ease-in-out infinite;
}

@keyframes buttonPulse {
0%, 100% {
box-shadow:
0 4px 15px rgba(59, 59, 59, 0.3),
0 0 0 0 rgba(90, 90, 90, 0.4);
}
50% {
box-shadow:
0 4px 15px rgba(59, 59, 59, 0.3),
0 0 0 14px rgba(90, 90, 90, 0);
}
}

.btn-primary:hover { animation: none; }

/* --- Адаптив --- */
@media (max-width: 480px) {
.button {
padding: 12px 24px;
min-width: 140px;
font-size: 14px;
}
}


/* ============================================================
АДАПТИВ ШАПКИ
============================================================ */

@media (max-width: 1100px) {
    /* Контейнер шапки */
    .header_wrapper {
        gap: 15px;
    }


    /* Логотип */
    .header_logo {
        width: 180px;
        flex-shrink: 0;
    }

    /* Навигация */
    .navigation {
        margin: 0;
    }
    
    .navigation_ul {
        gap: 12px;
    }

    .navigation_link {
        font-size: 14px;
    }
    
    /* Контакты */
    .contact {
        gap: 16px;
    }

    .contact-link--phone .contact-link__text {
        font-size: 14px;
    }

    .contact__callback {
        padding: 10px 6px;
        font-size: 13px;
    }
}

@media (max-width: 920px) {


    /* Кнопка звонка */
    .contact__callback {
        padding: 8px 14px;
    }

    .contact__callback span {
        display: none;
    }
    
    .contact__callback-icon {
        margin: 0;
    }

    /* Телефон */
    .contact-link--phone .contact-link__text {
        font-size: 13px;
    }
    
    /* Соцсети */
    .contact-link__media {
        gap: 4px;
    }
    
    .media_item {
        width: 32px;
        height: 32px;
    }
    .feedback-banner {
        display:none;
    }
}

@media (max-width: 768px) {
/* Мобильная шапка */
.header_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 60px;
    padding: 12px 0px;
}


/* Навигация скрыта (используется гамбургер) */
    .navigation {
        display: none;
    }

/* Контакты в правой части */
    .contact {
        
    }

/* Телефон скрыт, только иконка */
    .contact-link--phone .contact-link__text {
        display: none;
    }

.contact-link__icon {
    width: 40px;
    height: 40px;
    background: rgba(59, 59, 59, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-link__icon svg {
    width: 20px;
    height: 20px;
    fill: #3b3b3b;
}

/* Соцсети скрыты в мобильной */
.contact-link__media {
    display: none;
}

/* Кнопка звонка — круглая */
.contact__callback {
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact__callback span {
    display: none;
}

.contact__callback-icon {
    margin: 0;
    width: 18px;
    height: 18px;
}

    /* SVG логотип */
    .header_logo svg {
        width: 180px;
        height: auto;
    }
}

    .contact {
        right: 60px;
    }

/* Позиционирование гамбургера */
    label.hamburger {
        right: 12px;
        top: 12px;
    }
}

/* ============================================================
ПРЕИМУЩЕСТВА
============================================================ */

.advantage {
position: relative;
z-index: 2;
overflow: hidden;
padding: 40px 0;
}

.advantage_items {
display: flex;
justify-content: center;
align-items: flex-start;
flex-wrap: wrap;
gap: 20px;
}

.advantage_item {
text-align: center;
font-size: 20px;
width: 22%;
padding: 24px 0px;
border-radius: var(--radius);
background: transparent;
transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
cursor: default;
}

.advantage_item ul {
padding: 0;
list-style: none;
}

.advantage_item li { display: block; }

.advantage_icon {
width: 60px;
height: 100px;
margin: 0 auto 12px;
/*background: url("../img/general/love.png") center center no-repeat;*/
background-size: 60px auto;
transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.advantage_item:hover .advantage_icon {
transform: scale(1.2) rotate(-8deg);
}

/* --- Адаптив --- */
@media (max-width: 1000px) {
.advantage_items { padding: 0 0 30px; }
}

@media (max-width: 920px) {
.advantage_items {
flex-wrap: wrap;
align-items: flex-start;
}
.advantage_item { width: 45%; }
}

/* ============================================================
   ГАМБУРГЕР КНОПКА
   ============================================================ */

.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    background: transparent;
    border: none;
    padding: 0;
}

.hamburger-line {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--main-color);
    transition: all 0.3s ease;
    transform-origin: center;
}

/* ============================================================
   МОБИЛЬНОЕ МЕНЮ
   ============================================================ */

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(250, 248, 246, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu__list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-menu__list li {
    margin: 16px 0;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.mobile-menu__list a {
    font-family: 'Cormorant', serif;
    font-size: 28px;
    color: var(--main-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: color 0.3s ease;
}

.mobile-menu__list a:hover {
    color: var(--accent-light);
}

.mobile-menu__contacts {
    margin-top: 40px;
    text-align: center;
}

.mobile-menu__phone {
    display: block;
    font-size: 18px;
    color: var(--main-color);
    text-decoration: none;
    margin-bottom: 20px;
    font-weight: 600;
}

.mobile-menu__phone svg {
    width: 15px;
    height: 15px;
}

.mobile-menu__social {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.mobile-menu__social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(59, 59, 59, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-menu__social-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--main-color);
}

.mobile-menu__social-icon:hover {
    background: var(--main-color);
    transform: scale(1.1);
}

.mobile-menu__social-icon:hover svg {
    fill: #fff;
}

/* ============================================================
   АКТИВАЦИЯ ЧЕРЕЗ CHECKBOX
   ============================================================ */

#hamburger:checked ~ .mobile-menu {
    opacity: 1;
    visibility: visible;
}

#hamburger:checked ~ .mobile-menu .mobile-menu__list li {
    transform: translateY(0);
    opacity: 1;
}

#hamburger:checked ~ .mobile-menu .mobile-menu__list li:nth-child(1) { transition-delay: 0.1s; }
#hamburger:checked ~ .mobile-menu .mobile-menu__list li:nth-child(2) { transition-delay: 0.15s; }
#hamburger:checked ~ .mobile-menu .mobile-menu__list li:nth-child(3) { transition-delay: 0.2s; }
#hamburger:checked ~ .mobile-menu .mobile-menu__list li:nth-child(4) { transition-delay: 0.25s; }
#hamburger:checked ~ .mobile-menu .mobile-menu__list li:nth-child(5) { transition-delay: 0.3s; }

/* Анимация гамбургера при открытии */
#hamburger:checked ~ .hamburger-btn .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

#hamburger:checked ~ .hamburger-btn .hamburger-line:nth-child(2) {
    opacity: 0;
}

#hamburger:checked ~ .hamburger-btn .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ============================================================
   АДАПТИВ — показываем гамбургер на мобильных
   ============================================================ */

@media (max-width: 920px) {
    .hamburger-btn {
        display: flex;
    }

    .navigation {
        display: none !important;
    }
}

@media (min-width: 921px) {
    .mobile-menu {
        display: none !important;
    }
}

/* ============================================================
ОБО МНЕ
============================================================ */

.about-block {
    position: relative;
    background: #919191 url("../../assets/images/bgr-4.jpg") bottom center no-repeat;
    background-size: 100%;
    padding: 30px 0 0px;
    overflow: hidden;
    color: white;
}

.about { margin-bottom: 100px; }

.about_wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.about_info { width: 45%; }

.about_info b { color: var(--warm); }

.about_text { margin-bottom: 25px; font-size: 19px; }

.about_image {
    width: 50%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
    0 10px 40px rgba(59, 59, 59, 0.1),
    0 2px 10px rgba(187, 168, 153, 0.15);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.about_image:hover {
transform: translateY(-6px);
box-shadow:
    0 20px 50px rgba(59, 59, 59, 0.15),
    0 8px 20px rgba(187, 168, 153, 0.12);
}

.about_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about_image:hover img { transform: scale(1.05); }

/* --- Адаптив --- */
@media (max-width: 1000px) {
    .about_wrapper { flex-direction: column; }
    .about_image {
        order: 1;
        width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }
    .about_image img { max-width: 90%; }
    .about_info {
        order: 2;
        width: 100%;
        padding: 15px;
        box-sizing: border-box;
    }
}

@media (max-width: 920px) {
    .about-block { padding: 60px 0; }
    .about { margin-bottom: 60px; }
}

/* ============================================================
ГАЛЕРЕЯ
============================================================ */

#gallery {
    margin-bottom: 80px;
    position: relative;
}

.gallery {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery_items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    grid-auto-flow: dense;
}

.gallery_item:nth-child(3n+1) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery_item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px) 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);
}

.gallery_item.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.gallery_item::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg,transparent 30%,rgba(26, 26, 26, 0.05) 50%,);
    opacity: 0.7;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.gallery_item::after {
    content: '❤';
    position: absolute;
    bottom: 16px;
    right: 16px;
    z-index: 3;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--secondary);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}

.gallery_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.5s ease;
}

.gallery_item:hover {
    z-index: 5;
    box-shadow:
    0 25px 60px rgba(59, 59, 59, 0.25),
    0 0 0 1px rgba(222, 216, 216, 0.3);
}

.gallery_item:hover::before {
    opacity: 1;
    background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(59, 59, 59, 0.05) 50%,
    rgba(59, 59, 59, 0.35) 100%
    );
}

.gallery_item:hover::after {
    opacity: 1;
    transform: scale(1);
}

.gallery_item:hover img {
    transform: scale(1.1);
}

.gallery_item_title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 20px;
    color: var(--secondary);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    pointer-events: none;
}

.gallery_item:hover .gallery_item_title {
    opacity: 1;
    transform: translateY(0);
}

.gallery_item_badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--main-color);
    opacity: 0;
    transform: translateY(-8px);
    transition: all 0.35s ease;
    pointer-events: none;
}

.gallery_item:hover .gallery_item_badge {
    opacity: 1;
    transform: translateY(0);
}

/* --- Адаптив --- */
@media (max-width: 920px) {
    .gallery_items {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery_item:nth-child(3n+1) {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .gallery_items {
        gap: 12px;
        padding: 0 10px;
    }
    .gallery_item {
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .gallery_items {
        gap: 8px;
    }
    .gallery_item {
        border-radius: 10px;
    }
}

/* ============================================================
   УСЛУГИ И ЦЕНЫ 
   ============================================================ */

#price {
    position: relative;
    background: #919191 url("../../assets/images/bgr-1.jpg") bottom center no-repeat;
    background-size: 100%;
    padding: 80px 0 80px;
    color: white;
}

.price {
    margin-bottom: 40px;
}

.price_items {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: stretch;
}

.prices-item {
    position: relative;
    flex: 1 1 0;
    max-width: 380px;
    min-height: 590px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(59, 59, 59, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Фоновое изображение */
.prices-item::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.7;
    transition: opacity 0.4s ease, transform 0.5s ease;
}

/* Затемнение поверх картинки */
.prices-item::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(59, 59, 59, 0.55);
    transition: background 0.4s ease;
}

/* Три варианта фонов */
.prices-item_6::before {
    background: url("../img/assets/price/price-1.jpg") center center no-repeat;
    background-size: cover;
}
.prices-item_7::before {
    background: url("../img/assets/price/price-2.jpg") center center no-repeat;
    background-size: cover;
}
.prices-item_8::before {
    background: url("../img/assets/price/price-3.jpg") center center no-repeat;
    background-size: cover;
}

/* Заголовок по центру (виден по умолчанию) */
.prices-item_title {
    color: var(--secondary);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 42px;
    z-index: 3;
    transition: all 0.4s ease;
    text-align: center;
    width: 80%;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
    font-family: 'Cormorant', sans-serif;
}

/* Описание — скрыто, появляется при hover */
.prices-item_descr {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    padding: 24px;
    display: flex;
    flex-direction: column;
    color: var(--main-color);
    background: var(--bg);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    overflow: hidden;
    box-sizing: border-box;
}

/* Заголовок внутри описания */
.prices-item_descr-title {
    color: var(--main-color);
    font-size: 28px;
    text-align: center;
    font-family: 'Cormorant', sans-serif;
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
}
.prices-item_descr-title b {
    font-size: 36px;
}

/* Цена */
.prices-item_num {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 8px auto 16px;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--main-color), var(--accent-light));
    color: var(--secondary);
    border-radius: 50px;
    font-weight: 700;
    font-size: 110%;
    box-shadow: 0 4px 14px rgba(59, 59, 59, 0.25);
}

/* Список услуг */
.prices-item_descr-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    font-size: 15px;
    line-height: 1.5;
    flex: 1;
    overflow: hidden;
}
.prices-item_descr-list li {
    padding: 4px 0;
    border-bottom: 1px solid rgba(222, 216, 216, 0.5);
}
.prices-item_descr-list li:last-child {
    border-bottom: none;
}

/* Кнопки */
.prices-item_buttons {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
}

.prices-item_more {
    width: 100%;
}

/* Одинаковые стили для <a> и <button> */
.prices-item_more .button,
.prices-item_more a.button,
.prices-item_more button.button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    padding: 12px 16px;
    min-width: unset;
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--secondary);
    background: linear-gradient(135deg, var(--main-color) 0%, var(--accent-dark) 100%);
    border: none;
    border-radius: var(--radius-btn);
    cursor: pointer;
    box-sizing: border-box;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.prices-item_more .button:hover,
.prices-item_more a.button:hover,
.prices-item_more button.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 59, 59, 0.3);
    color: var(--secondary);
}

.prices-item_more a.button .button_text {
    color: inherit;
}

/* --- Hover эффекты --- */
.prices-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(59, 59, 59, 0.18), 0 8px 24px rgba(0, 0, 0, 0.12);
}

.prices-item:hover::after {
    background: rgba(59, 59, 59, 0.2);
}

.prices-item:hover::before {
    opacity: 1;
    transform: scale(1.05);
}

.prices-item:hover .prices-item_title {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
}

.prices-item:hover .prices-item_descr {
    opacity: 1;
    transform: translateY(0);
}

/* --- Адаптив --- */
@media (max-width: 1100px) {
    .price_items {
        flex-wrap: wrap;
    }
    .prices-item {
        flex: 1 1 300px;
    }
}

@media (max-width: 768px) {
    .prices-item_more .button,
    .prices-item_more a.button,
    .prices-item_more button.button {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .prices-item_descr-list {
        display: none;
    }
    .prices-item {
        min-height: 450px;
        border: 2px solid var(--main-color);
    }
    .prices-item_buttons {
        flex-direction: row;
        gap: 8px;
    }
    .prices-item_more .button,
    .prices-item_more a.button,
    .prices-item_more button.button {
        padding: 10px 12px;
        font-size: 12px;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 550px) {
    .prices-item {
        flex-basis: 100%;
        max-width: 100%;
        margin: 20px 0;
    }
    .prices-item_title {
        font-size: 32px;
    }
    .prices-item_descr-title {
        font-size: 24px;
    }
    .prices-item_descr-title b {
        font-size: 30px;
    }
}


/* ============================================================
ОТЗЫВЫ 
============================================================ */

.review {
padding: 100px 0 60px;
min-height: 500px;
background: url("../img/general/rev.jpg") left center no-repeat;
background-size: cover;
background-attachment: fixed;
}

.review .title {
color: var(--secondary);
background: url("../img/general/title-3.png") bottom center no-repeat;
}

.review_items-wrap {
display: flex !important;
justify-content: space-between;
min-height: 380px;
background: var(--bg);
border-radius: var(--radius);
overflow: hidden;
box-shadow: 0 4px 25px rgba(59, 59, 59, 0.1);
}

.review-item {
width: 35%;
display: flex;
flex-direction: column;
align-items: flex-start;
padding: 32px;
background-color: var(--bg);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-item:hover { transform: translateY(-4px); }

.review-item_wedding {
width: 65%;
background-color: var(--bg);
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}

.review-item_wedding img {
max-height: 100%;
object-fit: contain;
transition: transform 0.5s ease;
}

.review-item_wedding:hover img { transform: scale(1.05); }
.review-item_more { margin-top: auto; }

.review-item_date {
display: block;
color: var(--warm);
font-size: 14px;
margin-bottom: 8px;
}

/* Slick слайдер */
.slick-dots {
display: flex;
justify-content: center;
padding: 0;
margin: 30px 0 0;
list-style: none;
}

.slick-dots li { margin: 0 6px; }

.slick-dots button {
font-size: 0;
border: none;
width: 12px;
height: 12px;
border-radius: 50%;
background: var(--secondary);
cursor: pointer;
transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.slick-dots button:hover { transform: scale(1.3); }

.slick-active button {
background: linear-gradient(135deg, var(--main-color), var(--accent-light)) !important;
box-shadow: 0 2px 10px rgba(59, 59, 59, 0.3) !important;
transform: scale(1.2) !important;
}

.slick-arrow {
position: absolute;
top: 50%;
transform: translateY(-50%);
z-index: 2;
cursor: pointer;
color: var(--main-color);
transition: color var(--transition);
}

.slick-arrow:hover { color: var(--warm); }
.slick-arrow-left { left: -40px; }
.slick-arrow-right { right: -40px; }

/* --- Адаптив --- */
@media (max-width: 1000px) {
.review_items-wrap {
height: auto;
flex-direction: column;
}
.review-item,
.review-item_wedding { width: 100%; }
.review-item_wedding { height: 400px; overflow: hidden; }
.review { height: auto; }
}

@media (max-width: 640px) {
.review-item_wedding { height: 348px; overflow: hidden; }
.review {
background: linear-gradient(135deg, rgba(59, 59, 59, 0.08) 0%, rgba(222, 216, 216, 0.3) 100%);
}
}

@media (max-width: 550px) {
.review-item_wedding { height: 209px; overflow: hidden; }
}

@media (max-width: 920px) {
.review-block .slick-slide { height: auto; }
.slick-dots { padding-top: 45px; }
}

/* ============================================================
3D КАРУСЕЛЬ БЛОГА
============================================================ */

#blog {
padding: 40px 0;
}

.blog-carousel {
position: relative;
max-width: 1200px;
margin: 0 auto;
padding: 0 60px;
}

.blog-carousel__track {
    overflow: hidden;
    width: 100%;
    padding: 40px 0px 90px 0px;
}

.blog-carousel__items {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.blog-carousel__slide {
    box-sizing: border-box;
    flex-shrink: 0;
    padding: 0 10px; 
}

.blog-carousel__card {
display: flex;
flex-direction: column;
height: 100%;
background: #fff;
border-radius: var(--radius);
overflow: hidden;
box-shadow: 0 10px 40px rgba(59, 59, 59, 0.1);
transition: all 0.5s ease;
transform: scale(0.9);
opacity: 0.6;
}

.blog-carousel__slide.is-active .blog-carousel__card {
transform: scale(1);
opacity: 1;
box-shadow:
0 30px 60px rgba(59, 59, 59, 0.18),
0 15px 30px rgba(0, 0, 0, 0.12);
}

.blog-carousel__image {
position: relative;
height: 280px;
overflow: hidden;
}

.blog-carousel__image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}

.blog-carousel__card:hover .blog-carousel__image img {
transform: scale(1.08);
}

.blog-carousel__date {
position: absolute;
top: 0;
left: 0;
background: linear-gradient(135deg, var(--main-color), var(--accent-light));
color: var(--secondary);
padding: 8px 20px;
border-radius: 0 0 16px 0;
font-size: 13px;
font-weight: 500;
z-index: 2;
}

.blog-carousel__info {
display: flex;
flex-direction: column;
flex: 1;
padding: 24px;
}

.blog-carousel__title {
color: var(--main-color);
font-family: 'Cormorant', serif;
font-size: 24px;
font-weight: 600;
text-decoration: none;
display: block;
margin-bottom: 12px;
transition: color 0.3s ease;
}

.blog-carousel__title:hover {
color: var(--accent-light);
}

.blog-carousel__text {
flex: 1;
font-size: 15px;
color: rgba(59, 59, 59, 0.65);
line-height: 1.7;
margin-bottom: 20px;
}

.blog-carousel__more {
margin-top: auto;
}

/* Навигация */

.blog-carousel__nav {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 50px;
height: 50px;
background: #fff;
border: none;
border-radius: 50%;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 5px 20px rgba(59, 59, 59, 0.1);
transition: all 0.3s ease;
z-index: 10;
}

.blog-carousel__nav:hover {
background: var(--main-color);
box-shadow: 0 10px 30px rgba(59, 59, 59, 0.25);
}

.blog-carousel__nav:hover svg {
fill: var(--secondary);
}

.blog-carousel__nav svg {
fill: var(--main-color);
transition: fill 0.3s ease;
}

.blog-carousel__nav--prev {
left: 0;
}

.blog-carousel__nav--next {
right: 0;
}

/* Точки */

.blog-carousel__dots {
display: none;
justify-content: center;
gap: 10px;
margin-top: 30px;
}

.blog-carousel__dot {
width: 12px;
height: 12px;
border-radius: 50%;
background: rgba(222, 216, 216, 0.5);
border: none;
cursor: pointer;
transition: all 0.3s ease;
}

.blog-carousel__dot.is-active {
background: var(--main-color);
transform: scale(1.2);
}

.blog-carousel__dot:hover {
background: var(--accent-light);
}

/* Адаптив */

@media (max-width: 1024px) {
.blog-carousel__slide {
flex: 0 0 50%;
}
}

@media (max-width: 640px) {
.blog-carousel {
padding: 0;
}


.blog-carousel__slide {
    flex: 0 0 100%;
}

.blog-carousel__nav {
    display: none;
}

.blog-carousel__image {
    height: 220px;
}
}

/* ============================================================
ОБРАТНАЯ СВЯЗЬ
============================================================ */

.feedback {
position: relative;
padding: 100px 0;
background: url("../../assets/images/bgr-2.jpg") bottom center no-repeat;
background-size: cover;
background-attachment: fixed;
color: var(--secondary);
}

.feedback::before {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(135deg, rgba(59, 59, 59, 0.75) 0%, rgba(90, 90, 90, 0.65) 100%);
z-index: 0;
}

.feedback .center {
position: relative;
z-index: 1;
}

.feedback .title {
color: var(--secondary);
background: url("../../assets/images/title-white.png") bottom center no-repeat;
}

.contact_form { max-width: 800px; margin: 0 auto; }

.form-block { padding: 40px 0 20px; }

.form-block_items {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
gap: 20px;
}

.form-block_item {
display: flex;
justify-content: space-between;
width: 48%;
transition: box-shadow 0.3s ease;
border-radius: 8px;
}

.form-block_label {
margin-right: 10px;
white-space: nowrap;
padding-top: 10px;
}

.form-block_textblock {
display: flex;
align-items: flex-start;
justify-content: space-between;
margin: 30px 0;
gap: 20px;
transition: box-shadow 0.3s ease;
border-radius: 8px;
}

.form-block_textarea {
padding: 12px 16px;
height: 100px;
width: calc(100% - 120px);
border: 1px solid rgba(222, 216, 216, 0.4);
border-radius: 10px;
resize: none;
background: rgba(255, 255, 255, 0.08);
color: var(--secondary);
font-family: inherit;
font-size: 16px;
transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.form-block_textarea:focus {
border-color: var(--warm);
box-shadow: 0 0 0 3px rgba(187, 168, 153, 0.25);
outline: none;
}

.form-block_textarea::placeholder { color: rgba(222, 216, 216, 0.5); }

.form-block_buttons {
text-align: center;
display: flex;
justify-content: center;
gap: 16px;
}

.form-block_buttons .button {
background: linear-gradient(135deg, var(--secondary) 0%, var(--cream) 100%);
color: var(--main-color);
}

.submit_btn[type="reset"] {
background: transparent !important;
border: 2px solid rgba(222, 216, 216, 0.3) !important;
color: var(--secondary) !important;
}

.submit_btn[type="reset"]:hover {
border-color: var(--warm) !important;
background: rgba(187, 168, 153, 0.15) !important;
}

.input_field {
padding: 12px 16px;
width: 100%;
outline: none;
border: 1px solid rgba(222, 216, 216, 0.3);
border-radius: 10px;
color: var(--secondary);
background: rgba(255, 255, 255, 0.08);
font-family: inherit;
font-size: 16px;
transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.input_field:focus {
border-color: var(--warm);
box-shadow: 0 0 0 3px rgba(187, 168, 153, 0.25), 0 4px 14px rgba(0, 0, 0, 0.1);
background: rgba(255, 255, 255, 0.14);
}

.input_field::placeholder { color: rgba(222, 216, 216, 0.5); }

/* --- Адаптив --- */
@media (max-width: 920px) {
    .feedback { padding: 45px 0 15px; }
    .form-block_items { flex-direction: column; }
    .form-block_item {
    width: 100%;
    margin-bottom: 20px;
    flex-direction: column;
}
.form-block_textblock {
    flex-direction: column;
    width: 100%;
    text-align: left;
    align-items: flex-start;
}
.form-block_textarea,
.input_field { width: 100%; box-sizing: border-box; }
.form-block_label { margin: 0 0 12px; }
.submit_btn { margin-bottom: 20px; }
}

@media (max-width: 640px) {
.feedback {
background: linear-gradient(135deg, rgba(59, 59, 59, 0.9) 0%, rgba(90, 90, 90, 0.85) 100%);
}
}

/* ============================================================
ФУТЕР
============================================================ */

.footer {
background: linear-gradient(135deg, var(--main-color) 0%, var(--accent-dark) 100%);
padding: 30px 0;
color: var(--secondary);
}

.footer_wrapper {
display: flex;
justify-content: space-between;
align-items: center;
gap: 30px;
}

.footer_item { text-align: center; }

.footer_logo {
display: block;
width: 220px;
margin-bottom: 12px;
}

.footer_logo img { max-width: 100%; }

.footer .navigation { margin: 0; }
.footer .navigation_item { display: block; margin-bottom: 6px; }

.footer .navigation_link {
color: var(--secondary);
font-weight: normal;
font-size: 16px;
}

.footer .navigation_link:hover { color: var(--warm); }

.footer .contact-link {
    color: var(--secondary);
    background-size: 18px;
}

.footer .contact-link:hover {
opacity: 0.8;
color: var(--warm);
}

/* --- Адаптив --- */
@media (max-width: 1100px) {
.footer_logo { width: 165px; }
}

@media (max-width: 920px) {
.footer_wrapper {
flex-direction: column;
justify-content: center;
align-items: center;
}
.footer_item { text-align: center; }
}

/* ============================================================
ПОПАП
============================================================ */

.pop-up {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%) scale(0.9);
background: white;
border-radius: 20px;
padding: 40px;
max-width: 460px;
width: 90%;
z-index: 10000;
opacity: 0;
visibility: hidden;
transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
box-shadow: 0 25px 60px rgba(59, 59, 59, 0.25);
box-sizing: border-box;
}

.pop-up.active {
opacity: 1;
visibility: visible;
transform: translate(-50%, -50%) scale(1);
}

.pop-up_close {
position: absolute;
top: 14px;
right: 14px;
width: 32px;
height: 32px;
cursor: pointer;
border-radius: 50%;
background: var(--cream);
transition: all 0.3s ease;
z-index: 2;
}

.pop-up_close::before,
.pop-up_close::after {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 14px;
height: 2px;
background: var(--main-color);
transition: background 0.3s ease;
}

.pop-up_close::before {
transform: translate(-50%, -50%) rotate(45deg);
}

.pop-up_close::after {
transform: translate(-50%, -50%) rotate(-45deg);
}

.pop-up_close:hover {
background: var(--main-color);
transform: rotate(90deg);
}

.pop-up_close:hover::before,
.pop-up_close:hover::after {
background: var(--secondary);
}

.pop-up > p {
font-size: 13px;
color: rgba(59, 59, 59, 0.6);
line-height: 1.5;
margin-bottom: 8px;
text-align: center;
}

/* Форма */
.pop-up .control-group {
margin-bottom: 16px;
}

.pop-up .control-label {
display: block;
font-size: 12px;
font-weight: 600;
color: var(--main-color);
margin-bottom: 6px;
text-transform: uppercase;
letter-spacing: 0.3px;
}

.pop-up .controls {
width: 100%;
}

.pop-up .input_field {
width: 100%;
padding: 12px 16px;
border: 2px solid var(--cream-dark);
border-radius: 10px;
font-size: 14px;
font-family: inherit !important;
color: var(--main-color);
background: var(--cream);
transition: all 0.3s ease;
box-sizing: border-box;
outline: none;
margin: 0;
}

.pop-up .input_field:focus {
border-color: var(--accent-light);
background: white;
box-shadow: 0 0 0 3px rgba(106, 106, 106, 0.1);
}

.pop-up .input_field.error {
border-color: #8b3a3a;
background: #fdf2f2;
}

.pop-up .error_name,
.pop-up .error_phone {
display: block;
font-size: 11px;
color: #8b3a3a;
margin-top: 4px;
min-height: 14px;
}

.pop-up .form-block_buttons {
text-align: center;
margin-top: 20px;
}

.pop-up .button,
.pop-up .btn-primary {
display: inline-block;
padding: 14px 40px;
background: linear-gradient(135deg, var(--main-color), var(--accent-light)) !important;
color: var(--secondary) !important;
border: none !important;
border-radius: 12px !important;
font-size: 15px !important;
font-weight: 600 !important;
font-family: inherit !important;
cursor: pointer;
transition: all 0.3s ease;
text-decoration: none;
line-height: normal;
}

.pop-up .button:hover,
.pop-up .btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(59, 59, 59, 0.3);
}

.pop-up .button:disabled,
.pop-up .btn-primary:disabled {
opacity: 0.7;
cursor: not-allowed;
transform: none;
}

/* Успешная отправка */
.popup-success {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%) scale(0.8);
background: white;
border-radius: 20px;
padding: 40px 30px;
text-align: center;
z-index: 10001;
opacity: 0;
visibility: hidden;
transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
box-shadow: 0 25px 60px rgba(59, 59, 59, 0.25);
}

.popup-success.active {
opacity: 1;
visibility: visible;
transform: translate(-50%, -50%) scale(1);
}

.popup-success__icon {
width: 70px;
height: 70px;
margin: 0 auto 16px;
background: linear-gradient(135deg, #d4edda, #c3e6cb);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 32px;
color: #3a7d44;
}

.popup-success h3 {
font-size: 20px;
color: var(--main-color);
margin-bottom: 6px;
}

.popup-success p {
font-size: 13px;
color: rgba(59, 59, 59, 0.6);
}

@media (max-width: 480px) {
.pop-up {
padding: 28px 20px;
width: 92%;
}
}

/* ============================================================
КОНТАКТЫ В ШАПКЕ
============================================================ */

.contact {
display: flex;
align-items: center;
gap: 20px;
}

.contact-block {
display: flex;
flex-direction: column;
flex-wrap: wrap;
align-items: center;
gap: 9px;
list-style: none;
margin: 0;
padding: 0;
}

/* Телефон */
.contact-link {
display: flex;
align-items: center;
gap: 8px;
text-decoration: none;
color: var(--main-color);
font-size: 16px;
font-weight: 600;
transition: all 0.3s ease;
}

.contact-link__icon {
display: flex;
align-items: center;
justify-content: center;
width: 32px;
height: 32px;
background: rgba(59, 59, 59, 0.08);
border-radius: 50%;
transition: all 0.3s ease;
flex-shrink: 0;
}

.contact-link__icon svg {
width: 16px;
height: 16px;
fill: var(--main-color);
transition: all 0.3s ease;
}

.contact-link:hover {
color: var(--accent-light);
}

.contact-link:hover .contact-link__icon {
background: var(--main-color);
transform: scale(1.1);
}

.contact-link:hover .contact-link__icon svg {
fill: var(--secondary);
}

/* Соцсети */
.media_item {
display: flex;
align-items: center;
justify-content: center;
width: 36px;
height: 36px;
margin: 0px 5px;
background: rgba(59, 59, 59, 0.08);
border-radius: 50%;
transition: all 0.3s ease;
}

.media_item__icon {
display: flex;
align-items: center;
justify-content: center;
}

.media_item__icon svg {
width: 18px;
height: 18px;
fill: rgba(59, 59, 59, 0.5);
transition: all 0.3s ease;
}

.media_item:hover {
transform: translateY(-3px);
}

/* VK /
.media_item[href="vk.com"]:hover {
background: #4c75a3;
}
.media_item[href*="vk.com"]:hover .media_item__icon svg {
fill: #fff;
}

/* Telegram /
.media_item[href="t.me"]:hover {
background: #0088cc;
}
.media_item[href*="t.me"]:hover .media_item__icon svg {
fill: #fff;
}

/* WhatsApp /
.media_item[href="wa.me"]:hover {
background: #25d366;
}
.media_item[href*="wa.me"]:hover .media_item__icon svg {
fill: #fff;
}

/* MAX мессенджер /
.media_item[href="max.ru"]:hover {
background: linear-gradient(135deg, #6c5ce7, #a29bfe);
}
.media_item[href*="max.ru"]:hover .media_item__icon svg {
fill: #fff;
}

.contact-link__media {
display: flex;
align-items: center;
}

/* Кнопка обратного звонка */
.contact__callback {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--main-color);
    color: var(--secondary);
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.contact__callback:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 59, 59, 0.25);
}

.contact__callback-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Адаптив */
@media (max-width: 991px) {
    .contact {
        flex-direction: column;
        gap: 0px;
    }
    
    
    .contact-link--phone .contact-link__text {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .contact-block {
        gap: 12px;
    }

    .contact-link--phone .contact-link__text {
        font-size: 14px;
    }
    
    .contact-link__icon {
        width: 28px;
        height: 28px;
    }

    .contact-link__icon svg {
        width: 14px;
        height: 14px;
    }

    .media_item {
        width: 32px;
        height: 32px;
    }

    .media_item__icon svg {
        width: 16px;
        height: 16px;
    }

    .contact__callback {
        padding: 8px 6px;
        font-size: 13px;
    }
}

/* ===== ЛОАДЕР ===== */

.loader-block {
    position: fixed;
    z-index: 9999;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(250, 248, 246, 0.96);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    top: 0;
    left: 0;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-block.fade-out {
    opacity: 0;
    visibility: hidden;
}

/* Крутящийся круг */
.loader-circle {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid transparent;
}

.loader-ring:nth-child(1) {
    width: 80px;
    height: 80px;
    border-top-color: var(--main-color);
    animation: loaderSpin 1.2s linear infinite;
}

.loader-ring:nth-child(2) {
    width: 60px;
    height: 60px;
    border-bottom-color: var(--warm);
    animation: loaderSpin 1.5s linear infinite reverse;
}

/* Центральный SVG */
.loader-logo {
    position: relative;
    z-index: 2;
    width: 40px;
    height: 40px;
}

/* Текст */
.loader-text {
    margin-top: 20px;
    font-size: 13px;
    color: rgba(59, 59, 59, 0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: loaderPulse 1.5s ease-in-out infinite;
}

/* Анимации */
@keyframes loaderSpin {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}

@keyframes loaderPulse {
0%, 100% { opacity: 0.4; }
50% { opacity: 1; }
}

/* ============================================================
МОБИЛЬНОЕ МЕНЮ (ГАМБУРГЕР)
============================================================ */

.hamburger { display: none; }

label.hamburger {
    display: none;
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 9999;
}

.drawer-list {
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    width: 100vw;
    transform: translateX(100vw);
    -ms-transform: translateX(-100vw);
    box-sizing: border-box;
    pointer-events: none;
    padding-top: 100px;
    transition: transform 0.5s ease, border-radius 0.8s 0.1s ease;
    border-bottom-left-radius: 100vw;
    background: linear-gradient(135deg, var(--main-color) 0%, var(--accent-dark) 100%) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 999;
}

@media (min-width: 768px) {
.drawer-list { width: 40vw; }
}

.drawer-list ul {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: auto;
    overflow-x: hidden;
    pointer-events: auto;
    list-style: none;
}

.drawer-list li {
    list-style: none;
    text-transform: uppercase;
    pointer-events: auto;
    white-space: nowrap;
    box-sizing: border-box;
    transform: translateX(100vw);
    -ms-transform: translateX(-100vw);
}

.drawer-list li:last-child { margin-bottom: 2em; }

.drawer-list li a {
    text-decoration: none;
    color: var(--secondary);
    text-align: center;
    display: block;
    padding: 1rem;
    font-size: calc(24px - 0.5vw);
    transition: background 0.3s ease, color 0.3s ease;
}

@media (min-width: 768px) {
    .drawer-list li a {
        text-align: right;
        padding: 0.5rem 1.5rem;
    }
}

.drawer-list li a:hover {
    background-color: rgba(222, 216, 216, 0.15);
    color: var(--warm);
}

/* Гамбургер иконка */
label.hamburger > i {
    position: absolute;
    width: 100%;
    height: 2px;
    top: 50%;
    background-color: var(--main-color);
    pointer-events: auto;
    transition-duration: 0.35s;
    transition-delay: 0.35s;
}

label.hamburger > i::before,
label.hamburger > i::after {
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    left: 50%;
    background-color: var(--main-color);
    content: '';
    transition: transform 0.35s;
    transform-origin: 50% 50%;
}

label.hamburger > i::before { transform: translate(-50%, -12px); }
label.hamburger > i::after { transform: translate(-50%, 12px); }

label.hamburger text {
    text-transform: uppercase;
    font-size: 0.75em;
    position: absolute;
    bottom: -20px;
    text-align: center;
    width: 100%;
    overflow: hidden;
    transition: width 0.25s 0.35s, color 0.45s 0.35s;
}

label.hamburger text close {
color: transparent;
width: 0;
}

label.hamburger text open {
color: var(--main-color);
width: 100%;
}

/* Анимация открытия */
input.hamburger:checked ~ .drawer-list {
    transform: translateX(0);
    border-bottom-left-radius: 0;
}

input.hamburger:checked ~ .drawer-list li { transform: translateX(0); }

input.hamburger:checked ~ .drawer-list li:nth-child(1) { transition: transform 1s 0.08s cubic-bezier(0.29, 1.4, 0.44, 0.96); }
input.hamburger:checked ~ .drawer-list li:nth-child(2) { transition: transform 1s 0.16s cubic-bezier(0.29, 1.4, 0.44, 0.96); }
input.hamburger:checked ~ .drawer-list li:nth-child(3) { transition: transform 1s 0.24s cubic-bezier(0.29, 1.4, 0.44, 0.96); }
input.hamburger:checked ~ .drawer-list li:nth-child(4) { transition: transform 1s 0.32s cubic-bezier(0.29, 1.4, 0.44, 0.96); }
input.hamburger:checked ~ .drawer-list li:nth-child(5) { transition: transform 1s 0.40s cubic-bezier(0.29, 1.4, 0.44, 0.96); }
input.hamburger:checked ~ .drawer-list li:nth-child(6) { transition: transform 1s 0.48s cubic-bezier(0.29, 1.4, 0.44, 0.96); }
input.hamburger:checked ~ .drawer-list li:nth-child(7) { transition: transform 1s 0.56s cubic-bezier(0.29, 1.4, 0.44, 0.96); }
input.hamburger:checked ~ .drawer-list li:nth-child(8) { transition: transform 1s 0.64s cubic-bezier(0.29, 1.4, 0.44, 0.96); }
input.hamburger:checked ~ .drawer-list li:nth-child(9) { transition: transform 1s 0.72s cubic-bezier(0.29, 1.4, 0.44, 0.96); }
input.hamburger:checked ~ .drawer-list li:nth-child(10) { transition: transform 1s 0.80s cubic-bezier(0.29, 1.4, 0.44, 0.96); }

input.hamburger:checked ~ label > i {
background-color: transparent;
transform: rotate(90deg);
}

input.hamburger:checked ~ label > i::before {
transform: translate(-50%, -50%) rotate(315deg);
background-color: var(--secondary);
}

input.hamburger:checked ~ label > i::after {
transform: translate(-50%, -50%) rotate(-315deg);
background-color: var(--secondary);
}

input.hamburger:checked ~ label text close {
color: var(--secondary);
width: 100%;
}

input.hamburger:checked ~ label text open {
color: transparent;
width: 0;
}

/* --- Адаптив --- */
@media (max-width: 920px) {
label.hamburger { display: block; }
    .drawer-list .social {
        text-align: center;
        display: flex;
        justify-content: space-between;
        max-width: 50%;
        margin: 0 auto;
    }
}

/* ============================================================
   МОБИЛЬНОЕ МЕНЮ — ПЕРЕБОЙ
   ============================================================ */

.drawer-list {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: linear-gradient(135deg, var(--main-color) 0%, var(--accent-dark) 100%);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
}

input.hamburger:checked ~ .drawer-list {
    transform: translateX(0);
}

.drawer-list ul {
    padding: 80px 20px 40px;
    margin: 0;
    list-style: none;
}

.drawer-list li {
    margin-bottom: 8px;
}

.drawer-list li a {
    display: block;
    padding: 14px 20px;
    color: var(--secondary);
    font-size: 18px;
    text-decoration: none;
    text-align: center;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.drawer-list li a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.drawer-list .media {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(222, 216, 216, 0.2);
}

.drawer-list .media_item {
    width: 40px;
    height: 40px;
    background: rgba(222, 216, 216, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drawer-list .media_item img {
    width: 20px;
    height: 20px;
}

/* ============================================================
SCROLL TOP КНОПКА
============================================================ */

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--main-color), var(--accent-light));
    color: var(--secondary);
    border: none;
    cursor: pointer;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow:
    0 4px 15px rgba(59, 59, 59, 0.3),
    0 1px 4px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    pointer-events: none;
}

.scroll-top.visible {
opacity: 1;
transform: translateY(0) scale(1);
pointer-events: auto;
}

.scroll-top:hover {
transform: translateY(-4px) scale(1.1);
box-shadow:
0 8px 25px rgba(59, 59, 59, 0.4),
0 2px 8px rgba(0, 0, 0, 0.15);
}

.scroll-top:active {
transform: translateY(-1px) scale(0.95);
}

/* --- Адаптив --- */
@media (max-width: 768px) {
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}

/* ============================================================
FLOATING CTA BUTTON — "Заказать звонок"
============================================================ */

.floating-cta {
    position: fixed;
    bottom: 90px;
    right: 30px;
    z-index: 98;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    cursor: pointer;
    border: none;
    background: linear-gradient(135deg, var(--main-color) 0%, var(--accent-light) 100%);
    color: var(--secondary);
    border-radius: 50px;
    padding: 0;
    box-shadow:
    0 6px 25px rgba(59, 59, 59, 0.3),
    0 2px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease, gap 0.3s ease, padding 0.3s ease;
    overflow: hidden;
    white-space: nowrap;
    font-family: inherit;
    text-decoration: none;
}

.floating-cta:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
    0 12px 35px rgba(59, 59, 59, 0.4),
    0 4px 12px rgba(0, 0, 0, 0.2);
    gap: 10px;
    padding-right: 24px;
}

.floating-cta:active {
transform: translateY(-1px) scale(0.98);
}

.floating-cta__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    position: relative;
}

.floating-cta__icon svg {
    width: 24px;
    height: 24px;
    fill: var(--secondary);
    z-index: 2;
}

.floating-cta__pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(222, 216, 216, 0.15);
    animation: floatingCtaPulse 2s ease-in-out infinite;
    z-index: 1;
}

.floating-cta__pulse:nth-child(2) {
animation-delay: 0.5s;
}

@keyframes floatingCtaPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    70% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.floating-cta__text {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-width 0.4s ease, opacity 0.3s ease;
}

.floating-cta:hover .floating-cta__text {
    max-width: 200px;
    opacity: 1;
}

.floating-cta__tooltip {
    position: absolute;
    bottom: calc(100% + 12px);
    right: 0;
    background: var(--main-color);
    color: var(--secondary);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(59, 59, 59, 0.25);
}

.floating-cta__tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 20px;
    border: 6px solid transparent;
    border-top-color: var(--main-color);
}

.floating-cta:hover .floating-cta__tooltip {
    opacity: 1;
    transform: translateY(0);
}

.floating-cta--compact {
    border-radius: 50%;
    padding: 0;
}

.floating-cta--compact:hover {
    border-radius: 50%;
    padding: 0;
    gap: 0;
}

.floating-cta--compact .floating-cta__text { display: none; }
.floating-cta--compact .floating-cta__tooltip { display: none; }

.floating-cta--hidden {
opacity: 0;
transform: translateY(20px) scale(0.8);
pointer-events: none;
}

.floating-cta--visible {
opacity: 1;
transform: translateY(0) scale(1);
pointer-events: auto;
}

/* --- Адаптив --- */
@media (max-width: 768px) {
.floating-cta {
    bottom: 100px;
    right: 20px;
}
.floating-cta__icon { width: 52px; height: 52px; }
.floating-cta__text { display: none !important; }
.floating-cta:hover {
gap: 0;
padding-right: 0;
}
}

@media (max-width: 480px) {
.floating-cta { right: 15px; }
.floating-cta__icon { width: 48px; height: 48px; }
}

/* ============================================================
CTA POPUP — модальное окно формы
============================================================ */

.cta-popup {
    position: fixed;
    inset: 0;
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.cta-popup--active {
opacity: 1;
visibility: visible;
}

.cta-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cta-popup--active .cta-popup__overlay { opacity: 1; }

.cta-popup__container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 440px;
    background: var(--bg);
    border-radius: 24px;
    padding: 48px 36px 36px;
    box-shadow:
    0 30px 70px rgba(59, 59, 59, 0.25),
    0 10px 25px rgba(59, 59, 59, 0.1),
    0 0 0 1px rgba(222, 216, 216, 0.3);
    transform: translateY(40px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cta-popup--active .cta-popup__container {
transform: translateY(0) scale(1);
}

.cta-popup__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(59, 59, 59, 0.08);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease;
}

.cta-popup__close svg {
    width: 16px;
    height: 16px;
    fill: var(--main-color);
    transition: fill 0.3s ease;
}

.cta-popup__close:hover {
background: var(--main-color);
transform: rotate(90deg);
}

.cta-popup__close:hover svg { fill: var(--secondary); }

.cta-popup__title {
    font-family: 'Cormorant', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--main-color);
    text-align: center;
    margin: 0 0 8px;
}

.cta-popup__subtitle {
    font-size: 15px;
    color: rgba(59, 59, 59, 0.6);
    text-align: center;
    margin: 0 0 28px;
    line-height: 1.5;
}

.cta-popup__form { width: 100%; }

.cta-popup__field {
    margin-bottom: 16px;
    position: relative;
}

.cta-popup__input {
    width: 100%;
    padding: 16px 20px 16px 48px;
    border: 2px solid rgba(222, 216, 216, 0.5);
    border-radius: 14px;
    background: rgba(59, 59, 59, 0.03);
    color: var(--main-color);
    font-family: inherit;
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.cta-popup__input:focus {
    border-color: var(--accent-light);
    box-shadow: 0 0 0 4px rgba(106, 106, 106, 0.1), 0 4px 14px rgba(0, 0, 0, 0.06);
    background: white;
    outline: none;
}

.cta-popup__input::placeholder { color: rgba(59, 59, 59, 0.35); }

.cta-popup__input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    fill: rgba(59, 59, 59, 0.3);
    pointer-events: none;
    transition: fill 0.3s ease;
}

.cta-popup__field:focus-within .cta-popup__input-icon { fill: var(--accent-light); }

.cta-popup__submit {
    width: 100%;
    padding: 16px 24px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--main-color) 0%, var(--accent-light) 100%);
    color: var(--secondary);
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    margin-top: 8px;
    box-shadow: 0 6px 20px rgba(59, 59, 59, 0.25), 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}

.cta-popup__submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--main-color) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-popup__submit span { position: relative; z-index: 1; }

.cta-popup__submit:hover {
transform: translateY(-3px);
box-shadow: 0 10px 30px rgba(59, 59, 59, 0.3), 0 4px 10px rgba(0, 0, 0, 0.15);
}

.cta-popup__submit:hover::before { opacity: 1; }

.cta-popup__submit:active { transform: translateY(-1px) scale(0.98); }

.cta-popup__trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 13px;
    color: rgba(59, 59, 59, 0.5);
}

.cta-popup__trust-icon {
    width: 16px;
    height: 16px;
    fill: rgba(106, 106, 106, 0.4);
}

.cta-popup__success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    text-align: center;
}

.cta-popup__success--visible { display: flex; }

.cta-popup__success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3a7d44, #4a9d54);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    animation: successPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cta-popup__success-icon svg {
width: 36px;
height: 36px;
fill: white;
}

@keyframes successPop {
0% { transform: scale(0); }
100% { transform: scale(1); }
}

.cta-popup__success-title {
    font-family: 'Cormorant', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--main-color);
    margin: 0 0 8px;
}

.cta-popup__success-text {
font-size: 15px;
color: rgba(59, 59, 59, 0.6);
line-height: 1.5;
}

.cta-popup__form--hidden { display: none; }

/* --- Адаптив --- */
@media (max-width: 768px) {
.cta-popup__container {
width: 92%;
padding: 40px 24px 28px;
border-radius: 20px;
}
.cta-popup__title { font-size: 24px; }
}

/* ============================================================
VIDEO BLOCK
============================================================ */

.video-block {
    padding: 80px 0 0;
    background: -webkit-gradient(linear, 100% 0, 0 0, from(var(--bg)), to(var(--cream)));
    background: -webkit-linear-gradient(180deg, var(--bg) 0%, var(--cream) 100%);
    background: -moz-linear-gradient(180deg, var(--bg) 0%, var(--cream) 100%);
    background: -o-linear-gradient(180deg, var(--bg) 0%, var(--cream) 100%);
    background: linear-gradient(180deg, var(--bg) 0%, var(--cream) 100%);
}

.video-block__header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.video-block__title {
    font-family: 'Cormorant', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--main-color);
    margin: 0 0 16px;
}

.video-block__subtitle {
    font-size: 17px;
    color: rgba(59, 59, 59, 0.65);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.video-block__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.video-block__poster {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 20px 60px rgba(59, 59, 59, 0.2), 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.video-block__poster:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 80px rgba(59, 59, 59, 0.25), 0 12px 30px rgba(0, 0, 0, 0.15);
}

.video-block__poster-img {
width: 100%;
display: block;
transition: transform 0.6s ease;
}

.video-block__poster:hover .video-block__poster-img { transform: scale(1.03); }

.video-block__overlay {
position: absolute;
inset: 0;
background: linear-gradient(135deg, rgba(59, 59, 59, 0.2), rgba(90, 90, 90, 0.25));
transition: background 0.3s ease;
}

.video-block__poster:hover .video-block__overlay {
background: linear-gradient(135deg, rgba(59, 59, 59, 0.1), rgba(90, 90, 90, 0.15));
}

.video-block__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--main-color), var(--accent-light));
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(59, 59, 59, 0.3), 0 0 0 0 rgba(59, 59, 59, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 2;
}

.video-block__play svg {
width: 32px;
height: 32px;
fill: var(--secondary);
margin-left: 4px;
}

.video-block__play--large { width: 100px; height: 100px; }
.video-block__play--large svg { width: 40px; height: 40px; }

.video-block__poster:hover .video-block__play {
transform: translate(-50%, -50%) scale(1.1);
box-shadow: 0 15px 40px rgba(59, 59, 59, 0.4), 0 0 0 15px rgba(59, 59, 59, 0.1);
}

.video-block__play:hover { transform: translate(-50%, -50%) scale(1.15); }
.video-block__play:active { transform: translate(-50%, -50%) scale(0.95); }

.video-block__info {
position: absolute;
bottom: 16px;
right: 16px;
z-index: 2;
}

.video-block__duration {
    background: rgba(26, 26, 26, 0.8);
    color: var(--secondary);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
}

.video-block__wrapper {
border-radius: 24px;
overflow: hidden;
box-shadow: 0 20px 60px rgba(59, 59, 59, 0.2), 0 8px 20px rgba(0, 0, 0, 0.1);
}

.video-block__wrapper iframe {
display: block;
width: 100%;
height: 600px;
}

.video-block__features {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 40px 0;
    margin-bottom: 40px;
    flex-wrap: wrap;
    background: var(--cream);
}

#gallery .video-block__features {
margin-bottom: 0px;
padding: 40px 0 0;
}

.video-block__feature {
display: flex;
align-items: center;
gap: 10px;
font-size: 15px;
color: var(--main-color);
font-weight: 500;
}

.video-block__feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(59, 59, 59, 0.08), rgba(222, 216, 216, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-block__feature-icon svg {
width: 24px;
height: 24px;
fill: var(--main-color);
}

.video-block__grid {
display: grid;
grid-template-columns: 1fr 280px;
gap: 20px;
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

.video-block__main .video-block__poster { height: 100%; }

.video-block__main .video-block__poster-img {
height: 100%;
object-fit: cover;
}

.video-block__thumbs {
display: flex;
flex-direction: column;
gap: 12px;
}

.video-block__thumb {
position: relative;
border-radius: 14px;
overflow: hidden;
cursor: pointer;
flex: 1;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-block__thumb:hover {
transform: translateX(-4px);
box-shadow: 0 8px 25px rgba(59, 59, 59, 0.15);
}

.video-block__thumb--active {
box-shadow: 0 0 0 3px var(--main-color);
}

.video-block__thumb img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}

.video-block__thumb-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(59, 59, 59, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-block__thumb svg {
width: 20px;
height: 20px;
fill: var(--secondary);
margin-left: 2px;
}

.video-block__thumb:hover .video-block__thumb-play { opacity: 1; }

.video-block__thumb--active .video-block__thumb-play {
opacity: 1;
background: var(--main-color);
}

/* --- Адаптив --- */
@media (max-width: 1000px) {
.video-block__grid { grid-template-columns: 1fr; }
.video-block__thumbs { flex-direction: row; }
.video-block__thumb { flex: 1; }
}

@media (max-width: 768px) {
.video-block { padding: 60px 0; }
.video-block__title { font-size: 32px; }
.video-block__subtitle { font-size: 15px; }
.video-block__play { width: 70px; height: 70px; }
.video-block__play svg { width: 28px; height: 28px; }
.video-block__wrapper iframe { height: 400px; }
.video-block__features { gap: 24px; }
.video-block__feature { font-size: 14px; }
}

@media (max-width: 480px) {
.video-block__title { font-size: 26px; }
.video-block__wrapper iframe { height: 250px; }
.video-block__features {
flex-direction: column;
align-items: center;
gap: 16px;
}
.video-block__thumbs { display: none; }
}

/* ============================================================
REVIEWS SLIDER
============================================================ */

.reviews {
padding: 100px 0;
background: linear-gradient(180deg, var(--cream) 0%, var(--bg) 50%, var(--cream) 100%);
}

.reviews__header {
text-align: center;
margin-bottom: 50px;
}

.reviews__title {
font-family: 'Cormorant', sans-serif;
font-size: 48px;
font-weight: 700;
color: var(--main-color);
margin: 0 0 16px;
}

.reviews__subtitle {
font-size: 18px;
color: rgba(59, 59, 59, 0.65);
}

/* Слайдер */
.reviews__slider {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.reviews__track {
    transition: transform 0.5s ease;
    will-change: transform;
}

/* Каждый слайд */
.reviews__slide {
    flex-shrink: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 0 10px;
    margin-bottom: 20px;
}

/* Карточка */
.review-card {
    display: flex;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    min-height: 380px;
}

.review-card__photo {
    width: 300px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.review-card__photo img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}

.review-card__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--main-color), var(--accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(59, 59, 59, 0.3);
    z-index: 2;
}

.review-card__badge svg {
width: 22px;
height: 22px;
fill: var(--secondary);
}

.review-card__content {
flex: 1;
padding: 32px 36px;
display: flex;
flex-direction: column;
}

.review-card__stars {
display: flex;
gap: 4px;
margin-bottom: 16px;
}

.review-card__stars svg {
width: 20px;
height: 20px;
fill: var(--warm);
}

.review-card__quote {
position: relative;
padding-left: 28px;
margin-bottom: 20px;
}

.review-card__quote-icon {
position: absolute;
left: 0;
top: -4px;
width: 28px;
height: 28px;
fill: var(--main-color);
opacity: 0.15;
}

.review-card__quote p {
font-size: 16px;
line-height: 1.7;
color: var(--main-color);
margin: 0;
font-style: italic;
}

.review-card__name {
    font-family: 'Cormorant', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--main-color);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.review-card__name:hover {
color: var(--accent-light);
}

.review-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--main-color);
    text-decoration: none;
    margin-top: auto;
    transition: gap 0.3s ease, color 0.3s ease;
}

.review-card__link svg {
width: 18px;
height: 18px;
fill: var(--main-color);
transition: transform 0.3s ease;
}

.review-card__link:hover {
gap: 12px;
color: var(--accent-light);
}

.review-card__link:hover svg {
transform: translateX(4px);
}

/* Навигация */
.reviews__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}

.reviews__arrow {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid rgba(59, 59, 59, 0.15);
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.reviews__arrow svg {
    width: 24px;
    height: 24px;
    fill: var(--main-color);
    transition: fill 0.3s ease;
}

.reviews__arrow:hover {
    background: var(--main-color);
    border-color: var(--main-color);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(59, 59, 59, 0.25);
}

.reviews__arrow:hover svg {
fill: var(--secondary);
}

.reviews__dots {
    display: flex;
    gap: 10px;
}

.reviews__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(222, 216, 216, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.reviews__dot--active {
background: var(--main-color);
transform: scale(1.2);
box-shadow: 0 2px 10px rgba(59, 59, 59, 0.3);
}

.reviews__dot:hover {
transform: scale(1.3);
}

/* Статистика */
.blog-article__inner .reviews__stat {
    text-align: center;
    padding: 20px 0px;
    border-right: 1px solid rgba(187, 168, 153, 0.15);
    transition: all 0.3s ease;
    font-size: 70px;
    font-family: 'Cormorant', serif;
    color: #bba899;
}

.reviews__stats-block:last-child .reviews__stat{
    border-right:none;
}

.reviews__stat {
    text-align: center;
}

.reviews__stat-number {
    display: block;
    font-family: 'Cormorant', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--main-color);
    line-height: 1;
    margin-bottom: 8px;
}

/* --- Адаптив --- */
@media (max-width: 900px) {
    .review-card {
        flex-direction: column;
        min-height: auto;
    }
    .review-card__photo {
        width: 100%;
        height: 250px;
    }
}

@media (max-width: 768px) {
.reviews {
    padding: 60px 0;
}
.reviews__title {
    font-size: 36px;
}
.review-card__photo {
    height: 200px;
}
.review-card__content {
padding: 24px 20px;
}
.reviews__stats {
gap: 40px;
}
.reviews__stat-number {
font-size: 36px;
}
}

@media (max-width: 480px) {
.reviews__title {
font-size: 28px;
}
.reviews__arrow {
width: 44px;
height: 44px;
}
.reviews__stats {
flex-direction: column;
gap: 24px;
}
}

/* ============================================================
REVEALATOR — АНИМАЦИИ ПРИ СКРОЛЛЕ
============================================================ */

.revealator-fade,
.revealator-slideup,
.revealator-slideleft,
.revealator-slideright,
.revealator-slidedown,
.revealator-zoomin,
.revealator-zoomout,
.revealator-rotateleft,
.revealator-rotateright {
transition: all 600ms;
}

.revealator-fade { opacity: 0; }
.revealator-fade.revealator-within,
.revealator-fade.revealator-partially-above,
.revealator-fade.revealator-above { opacity: 1; }

.revealator-slideup {
transform: translate(0, 100px);
opacity: 0;
}

.revealator-slideup.revealator-within,
.revealator-slideup.revealator-partially-above,
.revealator-slideup.revealator-above {
transform: translate(0, 0);
opacity: 1;
}

.revealator-slideleft {
transform: translate(100px, 0);
opacity: 0;
}

.revealator-slideleft.revealator-within,
.revealator-slideleft.revealator-partially-above,
.revealator-slideleft.revealator-above {
transform: translate(0, 0);
opacity: 1;
}

.revealator-slideright {
transform: translate(-100px, 0);
opacity: 0;
}

.revealator-slideright.revealator-within,
.revealator-slideright.revealator-partially-above,
.revealator-slideright.revealator-above {
transform: translate(0, 0);
opacity: 1;
}

.revealator-slidedown {
transform: translate(0, -100px);
opacity: 0;
}

.revealator-slidedown.revealator-within,
.revealator-slidedown.revealator-partially-above,
.revealator-slidedown.revealator-above {
transform: translate(0, 0);
opacity: 1;
}

.revealator-zoomin {
transform: scale(0.75);
opacity: 0;
}

.revealator-zoomin.revealator-within,
.revealator-zoomin.revealator-partially-above,
.revealator-zoomin.revealator-above {
transform: scale(1);
opacity: 1;
}

.revealator-zoomout {
transform: scale(1.5);
opacity: 0;
}

.revealator-zoomout.revealator-within,
.revealator-zoomout.revealator-partially-above,
.revealator-zoomout.revealator-above {
transform: scale(1);
opacity: 1;
}

.revealator-rotateleft {
transform: rotate(20deg);
opacity: 0;
}

.revealator-rotateleft.revealator-within,
.revealator-rotateleft.revealator-partially-above,
.revealator-rotateleft.revealator-above {
transform: rotate(0);
opacity: 1;
}

.revealator-rotateright {
transform: rotate(-20deg);
opacity: 0;
}

.revealator-rotateright.revealator-within,
.revealator-rotateright.revealator-partially-above,
.revealator-rotateright.revealator-above {
transform: rotate(0);
opacity: 1;
}

.revealator-delay1 { transition-delay: 100ms !important; }
.revealator-delay2 { transition-delay: 200ms !important; }
.revealator-delay3 { transition-delay: 300ms !important; }
.revealator-delay4 { transition-delay: 400ms !important; }
.revealator-delay5 { transition-delay: 500ms !important; }
.revealator-delay6 { transition-delay: 600ms !important; }
.revealator-delay7 { transition-delay: 700ms !important; }
.revealator-delay8 { transition-delay: 800ms !important; }

.revealator-delay1.revealator-below,
.revealator-delay1.revealator-partially-below,
.revealator-delay2.revealator-below,
.revealator-delay2.revealator-partially-below,
.revealator-delay3.revealator-below,
.revealator-delay3.revealator-partially-below,
.revealator-delay4.revealator-below,
.revealator-delay4.revealator-partially-below,
.revealator-delay5.revealator-below,
.revealator-delay5.revealator-partially-below,
.revealator-delay6.revealator-below,
.revealator-delay6.revealator-partially-below,
.revealator-delay7.revealator-below,
.revealator-delay7.revealator-partially-below,
.revealator-delay8.revealator-below,
.revealator-delay8.revealator-partially-below {
transition-delay: 0 !important;
}

/* ============================================================
УТИЛИТЫ
============================================================ */

.fade-in-visible {
opacity: 1 !important;
transform: translateY(0) !important;
}

.icon {
display: inline-block;
width: 5vw;
height: 4vw;
stroke-width: 0;
stroke: currentColor;
fill: currentColor;
}

/* Скроллбар */
body {
scrollbar-base-color: var(--main-color);
scrollbar-3dlight-color: var(--secondary);
scrollbar-highlight-color: var(--accent-light);
scrollbar-track-color: var(--secondary);
scrollbar-arrow-color: var(--accent-light);
scrollbar-shadow-color: var(--accent-light);
scrollbar-dark-shadow-color: var(--accent-light);
-ms-overflow-style: -ms-autohiding-scrollbar;
}

/* Дублирующие стили попапа для совместимости */
.pop-up {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 460px;
    width: 90%;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 25px 60px rgba(59, 59, 59, 0.25);
    box-sizing: border-box;
}

.pop-up.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.pop-up_close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    border-radius: 50%;
    background: var(--cream);
    transition: all 0.3s ease;
    z-index: 2;
}

.pop-up_close::before,
.pop-up_close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 2px;
    background: var(--main-color);
    transition: background 0.3s ease;
}

.pop-up_close::before {
transform: translate(-50%, -50%) rotate(45deg);
}

.pop-up_close::after {
transform: translate(-50%, -50%) rotate(-45deg);
}

.pop-up_close:hover {
background: var(--main-color);
transform: rotate(90deg);
}

.pop-up_close:hover::before,
.pop-up_close:hover::after {
background: var(--secondary);
}

.pop-up > p {
font-size: 13px;
color: rgba(59, 59, 59, 0.6);
line-height: 1.5;
margin-bottom: 8px;
text-align: center;
}

.pop-up .control-group {
margin-bottom: 16px;
}

.pop-up .control-label {
display: block;
font-size: 12px;
font-weight: 600;
color: var(--main-color);
margin-bottom: 6px;
text-transform: uppercase;
letter-spacing: 0.3px;
}

.pop-up .controls {
width: 100%;
}

.pop-up .input_field {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--cream-dark);
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit !important;
    color: var(--main-color);
    background: var(--cream);
    transition: all 0.3s ease;
    box-sizing: border-box;
    outline: none;
    margin: 0;
}

.pop-up .input_field:focus {
border-color: var(--accent-light);
background: white;
box-shadow: 0 0 0 3px rgba(106, 106, 106, 0.1);
}

.pop-up .input_field.error {
border-color: #8b3a3a;
background: #fdf2f2;
}

.pop-up .error_name,
.pop-up .error_phone {
display: block;
font-size: 11px;
color: #8b3a3a;
margin-top: 4px;
min-height: 14px;
}

.pop-up .form-block_buttons {
text-align: center;
margin-top: 20px;
}

.pop-up .button,
.pop-up .btn-primary {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(135deg, var(--main-color), var(--accent-light)) !important;
    color: var(--secondary) !important;
    border: none !important;
    border-radius: 12px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    font-family: inherit !important;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    line-height: normal;
}

.pop-up .button:hover,
.pop-up .btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(59, 59, 59, 0.3);
}

.pop-up .button:disabled,
.pop-up .btn-primary:disabled {
opacity: 0.7;
cursor: not-allowed;
transform: none;
}

.popup-success {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 25px 60px rgba(59, 59, 59, 0.25);
}

.popup-success.active {
opacity: 1;
visibility: visible;
transform: translate(-50%, -50%) scale(1);
}

.popup-success__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #3a7d44;
}

.popup-success h3 {
    font-size: 20px;
    color: var(--main-color);
    margin-bottom: 6px;
}

.popup-success p {
    font-size: 13px;
    color: rgba(59, 59, 59, 0.6);
}

.bg-gray {
    position: relative;
    background: linear-gradient(180deg, #989898 0%, #ffffff 50%, #ffffff 100%);
    background-size: 100%;
}

/* ===== CTA POPUP ОШИБКИ И СООБЩЕНИЯ ===== */

/* Общий блок ошибки (красный) */
.cta-popup__error {
    background: #fff5f5;
    color: #e74c3c;
    border: 1px solid #ffcdd2;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 16px;
    font-size: 14px;
    text-align: center;
}

/* Сообщение об успехе (зелёный) */
.cta-popup__success-message {
    background: #f0fff4;
    color: #27ae60;
    border: 1px solid #c6f6d5;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 16px;
    font-size: 14px;
    text-align: center;
}

/* Ошибка под конкретным полем */
.cta-popup__field-error {
    display: block;
    color: #e74c3c;
    font-size: 12px;
    margin-top: 4px;
    padding-left: 44px;
    animation: fadeInDown 0.3s ease;
}

/* Состояние ошибки для поля ввода */
.cta-popup__input.error,
.cta-popup__input.is-invalid {
    border-color: #e74c3c !important;
    background-color: #fff5f5;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.15);
}

/* Анимация появления ошибки */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Состояние успеха для поля (зелёная подсветка) */
.cta-popup__input.is-valid {
    border-color: #27ae60 !important;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.15);
}

/* Поле в фокусе (улучшенный) */
.cta-popup__input:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.15);
    outline: none;
}

/* Тряска формы при ошибке */
.cta-popup--shake .cta-popup__form {
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-8px); }
    40% { transform: translateX(8px); }
    60% { transform: translateX(-5px); }
    80% { transform: translateX(5px); }
}

/* ===== FAQ БЛОК ===== */

.faq {
    padding: 80px 0;
    background: #fafafa;
}

.faq__subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    padding: 0 10px;
    margin-bottom: 50px;
    margin-top: -10px;
}

.faq__list {
    max-width: 800px;
    margin: 0 auto;
}

/* Элемент FAQ */
.faq__item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq__item:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.faq__item--active {
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

/* Кнопка вопроса */
.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 17px;
    font-weight: 500;
    color: #333;
    transition: background 0.3s ease, color 0.3s ease;
}

.faq__question:hover {
    background: #f9f9f9;
}

.faq__item--active .faq__question {
    color: #3498db;
}

.faq__question-text {
    flex: 1;
    padding-right: 16px;
}

/* Иконка стрелки */
.faq__icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    border-radius: 50%;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease;
}

.faq__icon svg {
    width: 20px;
    height: 20px;
    fill: #666;
    transition: fill 0.3s ease;
}

.faq__item--active .faq__icon {
    background: #3498db;
    transform: rotate(180deg);
}

.faq__item--active .faq__icon svg {
    fill: #fff;
}

/* Ответ — ПЛАВНАЯ АНИМАЦИЯ ЧЕРЕЗ GRID */
.faq__answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__item--active .faq__answer {
    grid-template-rows: 1fr;
}

.faq__answer > p {
    overflow: hidden;
    margin: 0;
    padding: 0 24px;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    transition: padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__item--active .faq__answer > p {
    padding: 0 24px 20px;
}

.faq__answer a {
    color: #3498db;
    text-decoration: underline;
    transition: color 0.2s;
}

.faq__answer a:hover {
    color: #2980b9;
}

/* CTA внизу FAQ */
.faq__cta {
    text-align: center;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.faq__cta-text {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}

.faq__cta-btn {
    min-width: 200px;
}

/* Адаптив */
@media (max-width: 768px) {
    .faq {
        padding: 50px 0;
    }
    
    .faq__question {
        padding: 16px 20px;
        font-size: 15px;
    }
    
    .faq__answer > p {
        padding: 0 20px;
        font-size: 14px;
    }
    
    .faq__item--active .faq__answer > p {
        padding: 0 20px 16px;
    }
}

/* ===== BANNER PROMO ===== */
.banner-promo {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,248,240,0.95) 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px 35px;
    max-width: 320px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border: 1px solid rgba(255,255,255,0.5);
    animation: promoFloat 3s ease-in-out infinite;
}

@keyframes promoFloat {
    0%, 100% { transform: translateY(-50%); }
    50% { transform: translateY(-52%); }
}

.banner-promo__badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    font-size: 18px;
    font-weight: 800;
    padding: 8px 16px;
    border-radius: 30px;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.banner-promo__label {
    display: inline-block;
    background: linear-gradient(135deg, #d4a574 0%, #c4956a 100%);
    color: white;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.banner-promo__title {
    font-size: 22px;
    font-weight: 700;
    color: #2c2c2c;
    margin: 0 0 8px;
    line-height: 1.2;
}

.banner-promo__text {
    font-size: 13px;
    color: #666;
    margin: 0 0 20px;
    line-height: 1.5;
}

.banner-promo__timer {
    display: flex;
    gap: 15px;
}

.banner-promo__timer-item {
    text-align: center;
}

.banner-promo__timer-num {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: #d4a574;
    line-height: 1;
}

.banner-promo__timer-label {
    font-size: 10px;
    color: #999;
    text-transform: uppercase;
}


/* ===== BANNER FEATURES ===== */
.banner-features {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 30px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    padding: 18px 35px;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.banner-features__item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.banner-features__icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #d4a574 0%, #c4956a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.banner-features__icon svg {
    width: 18px;
    height: 18px;
    color: white;
}

.banner-features__text {
    display: flex;
    flex-direction: column;
}

.banner-features__text strong {
    font-size: 18px;
    font-weight: 800;
    color: #2c2c2c;
    line-height: 1;
}

.banner-features__text span {
    font-size: 11px;
    color: #888;
}

@media (max-width: 768px) {
    .banner-promo {
        display:none;
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 20px auto;
        max-width: 100%;
        animation: none;
    }
    
    .banner-features {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        border-radius: 20px;
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin: 20px auto;
    }
}

/* ===== BANNER HERO TEXT ===== */
.banner-hero {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 700px;
    padding: 0 20px;
}

.banner-hero__tag {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.3);
}

.banner-hero__title {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin: 0 0 15px;
    line-height: 1.2;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.banner-hero__title em {
    font-style: normal;
    color: #d4a574;
}

.banner-hero__subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    margin: 0 0 30px;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.banner-hero__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.banner-hero__btn {
    background: linear-gradient(135deg, #d4a574 0%, #c4956a 100%);
    color: white;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.4);
}

.banner-hero__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.5);
}

.banner-hero__price {
    color: white;
    font-size: 14px;
    font-weight: 300;
    opacity: 0.9;
}

.banner-hero__price::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.3);
    margin-bottom: 5px;
}


/* ============================================================
   ДОПОЛНИТЕЛЬНЫЕ СТИЛИ СТРАНИЦЫ «ОБО МНЕ»
   ============================================================ */


/* ===== SPLIT SECTION (фото + текст) ===== */
.blog-article__section--split {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
    margin-top: 30px;
}

.blog-article__split-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.blog-article__split-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.blog-article__split-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 59, 59, 0.85);
    backdrop-filter: blur(8px);
    color: var(--warm);
    font-size: 13px;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 30px;
}

.blog-article__split-badge svg {
    width: 16px;
    height: 16px;
    fill: var(--warm);
}


/* ===== СТАТИСТИКА ===== */
.reviews__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 60px 0;
    padding: 40px 10px;
    background: var(--bg);
    border-radius: var(--radius);
}

.reviews__stat {
    text-align: center;
    padding: 20px 10px;
    border-right: 1px solid rgba(187, 168, 153, 0.15);
    transition: all 0.3s ease;
}

.reviews__stat:last-child {
    border-right: none;
}

.reviews__stat:hover {
    transform: translateY(-4px);
}

.reviews__stat-number {
    display: block;
    font-family: 'Cormorant', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--main-color);
    line-height: 1;
    margin-bottom: 8px;
}

.reviews__stat-label {
    display: block;
    font-size: 17px;
    line-height: 1.4;
    color: #343434;
    font-family: 'Cormorant', serif;
    text-align: center;
}


/* ===== ПОДСВЕТКА (совет) ===== */
.blog-article__highlight {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: linear-gradient(135deg, rgba(247, 232, 215, 0.6) 0%, rgba(241, 208, 185, 0.4) 100%);
    border-left: 4px solid var(--warm);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 25px 30px;
    margin: 40px 0;
}

.blog-article__highlight svg {
    width: 32px;
    height: 32px;
    fill: var(--warm);
    flex-shrink: 0;
    margin-top: 2px;
}

.blog-article__highlight-text {
    font-size: 16px;
    color: rgba(59, 59, 59, 0.85);
    line-height: 1.7;
    margin: 0;
}


/* ===== ТЕКСТ СТАТЬИ ===== */
.blog-article__text {
    font-size: 16px;
    color: rgba(59, 59, 59, 0.8);
    line-height: 1.9;
    margin: 0 0 16px;
}

.blog-article__text:last-child {
    margin-bottom: 0;
}


/* ===== ГАЛЕРЕЯ — УЛУЧШЕННАЯ ===== */
.blog-article-gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.blog-article-gallery__item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.blog-article-gallery__item--wide {
    grid-column: span 2;
    aspect-ratio: 8/3;
}

.blog-article-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.blog-article-gallery__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.blog-article-gallery__overlay span {
    color: white;
    font-family: 'Cormorant', serif;
    font-size: 16px;
    font-weight: 600;
}

.blog-article-gallery__item:hover img {
    transform: scale(1.08);
}

.blog-article-gallery__item:hover .blog-article-gallery__overlay {
    opacity: 1;
}


/* ===== ОТЗЫВЫ ===== */
.blog-article-testimonials {
    padding: 100px 0;
    background: var(--white);
}

.blog-article-testimonials__title {
    font-family: 'Cormorant', serif;
    font-size: clamp(28px, 4vw, 42px);
    color: var(--main-color);
    text-align: center;
    margin: 0 0 50px;
    font-weight: 600;
}

.blog-article-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.blog-article-testimonials__card {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 35px 28px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.blog-article-testimonials__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(187, 168, 153, 0.2);
}

.blog-article-testimonials__stars {
    color: var(--warm);
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.blog-article-testimonials__text {
    font-size: 15px;
    color: rgba(59, 59, 59, 0.8);
    line-height: 1.8;
    margin: 0 0 20px;
    font-style: italic;
}

.blog-article-testimonials__author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.blog-article-testimonials__name {
    font-weight: 600;
    color: var(--main-color);
    font-size: 14px;
}

.blog-article-testimonials__date {
    font-size: 12px;
    color: rgba(59, 59, 59, 0.4);
}


/* ===== CTA ===== */

.blog-article-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

/* ===== АДАПТИВ ===== */
@media (max-width: 1024px) {
    .blog-article__section--split {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .blog-article-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-article-gallery__item--wide {
        grid-column: span 2;
        aspect-ratio: 8/3;
    }

    .blog-article-testimonials__grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
}

@media (max-width: 767px) {
    .reviews__stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px 20px;
    }

    .reviews__stat {
        border-right: none;
        border-bottom: 1px solid rgba(187, 168, 153, 0.15);
        padding: 15px 10px;
    }

    .reviews__stat:nth-child(3),
    .reviews__stat:nth-child(4) {
        border-bottom: none;
    }

    .reviews__stat-number {
        font-size: 36px;
    }

    .blog-article-gallery__grid {
        grid-template-columns: 1fr;
    }

    .blog-article-gallery__item--wide {
        grid-column: span 1;
        aspect-ratio: 4/3;
    }

    .blog-article__section--split {
        margin-top: 20px;
    }

    .blog-article__split-image img {
        height: 280px;
    }

    .blog-article-testimonials {
        padding: 70px 0;
    }
    
    .banner-hero {
        max-width: 90%;
        width: 90%;
    }
    .banner-features {
        display:none;
    }
}
/* ============================================================
   COOKIE CONSENT
   ============================================================ */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 0 20px 20px;
    transform: translateY(120%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.cookie-consent.is-visible {
    transform: translateY(0);
    pointer-events: auto;
}

.cookie-consent.is-hidden {
    transform: translateY(120%);
    pointer-events: none;
}

.cookie-consent__inner {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(44, 44, 44, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 20px 28px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-consent__content {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1;
}

.cookie-consent__icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--warm) 0%, #c4956a 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cookie-consent__icon svg {
    width: 24px;
    height: 24px;
    fill: var(--main-color);
}

.cookie-consent__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cookie-consent__title {
    font-size: 15px;
    font-weight: 600;
    color: white;
}

.cookie-consent__text p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
    margin: 0;
}

.cookie-consent__link {
    color: var(--warm);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.cookie-consent__link:hover {
    border-color: var(--warm);
}

.cookie-consent__buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-consent__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-consent__btn--accept {
    background: linear-gradient(135deg, var(--warm) 0%, #c4956a 100%);
    color: var(--main-color);
}

.cookie-consent__btn--accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.35);
}

.cookie-consent__btn--decline {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.cookie-consent__btn--decline:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.cookie-consent__btn svg {
    fill: currentColor;
}


/* ===== АДАПТИВ ===== */
@media (max-width: 767px) {
    .cookie-consent {
        padding: 0 12px 12px;
    }

    .cookie-consent__inner {
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        align-items: stretch;
    }

    .cookie-consent__content {
        gap: 12px;
    }

    .cookie-consent__icon {
        width: 36px;
        height: 36px;
    }

    .cookie-consent__icon svg {
        width: 20px;
        height: 20px;
    }

    .cookie-consent__buttons {
        justify-content: stretch;
    }

    .cookie-consent__btn {
        flex: 1;
        justify-content: center;
    }
}


/* ============================================================
   PRIVACY PAGE
   ============================================================ */

/* ===== HERO SUBTITLE ===== */
.blog-article-hero__subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}


/* ===== ОСНОВНОЙ БЛОК ===== */
.privacy {
    padding: 80px 0 100px;
    background: var(--white);
}

.privacy__inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 50px;
    align-items: start;
}


/* ===== НАВИГАЦИЯ ===== */
.privacy__nav {
    position: sticky;
    top: 100px;
    background: var(--bg);
    border-radius: var(--radius);
    padding: 24px;
}

.privacy__nav-title {
    display: block;
    font-family: 'Cormorant', serif;
    font-size: 18px;
    color: var(--main-color);
    font-weight: 600;
    margin-bottom: 16px;
}

.privacy__nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.privacy__nav-link {
    display: block;
    padding: 8px 12px;
    font-size: 13px;
    color: rgba(59, 59, 59, 0.7);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    line-height: 1.4;
}

.privacy__nav-link:hover {
    background: var(--white);
    color: var(--main-color);
    padding-left: 16px;
}

.privacy__nav-link.is-active {
    background: var(--main-color);
    color: var(--secondary);
}


/* ===== КОНТЕНТ ===== */
.privacy__content {
    max-width: 780px;
}

.privacy__header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--bg);
    border-radius: var(--radius);
    margin-bottom: 50px;
}

.privacy__header-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--warm) 0%, #c4956a 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.privacy__header-icon svg {
    width: 26px;
    height: 26px;
    fill: var(--main-color);
}

.privacy__header-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.privacy__last-update {
    font-size: 13px;
    color: rgba(59, 59, 59, 0.5);
}

.privacy__company {
    font-family: 'Cormorant', serif;
    font-size: 18px;
    color: var(--main-color);
    font-weight: 600;
}


/* ===== СЕКЦИИ ===== */
.privacy__section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(59, 59, 59, 0.08);
}

.privacy__section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.privacy__title {
    font-family: 'Cormorant', serif;
    font-size: 24px;
    color: var(--main-color);
    margin: 0 0 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.privacy__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(187, 168, 153, 0.15);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--warm);
    flex-shrink: 0;
}

.privacy__text {
    margin-bottom: 16px;
}

.privacy__text:last-child {
    margin-bottom: 0;
}

.privacy__text p {
    font-size: 15px;
    color: rgba(59, 59, 59, 0.8);
    line-height: 1.8;
    margin: 0 0 12px;
}

.privacy__text p:last-child {
    margin-bottom: 0;
}

.privacy__text strong {
    color: var(--main-color);
    font-weight: 600;
}


/* ===== ЧЕКЛИСТ ===== */
.privacy__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.privacy__list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    background: var(--bg);
    border-radius: 10px;
    font-size: 14px;
    color: rgba(59, 59, 59, 0.8);
    line-height: 1.6;
}

.privacy__check {
    width: 24px;
    height: 24px;
    background: rgba(46, 204, 113, 0.15);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.privacy__check svg {
    width: 14px;
    height: 14px;
    fill: #2ecc71;
}


/* ===== СЕТКА ДАННЫХ ===== */
.privacy__data-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.privacy__data-item {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 24px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.privacy__data-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.privacy__data-icon {
    width: 48px;
    height: 48px;
    background: rgba(187, 168, 153, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.privacy__data-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--warm);
}

.privacy__data-label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 4px;
}

.privacy__data-desc {
    display: block;
    font-size: 12px;
    color: rgba(59, 59, 59, 0.5);
}


/* ===== ЗАМЕТКА ===== */
.privacy__note {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background: rgba(52, 152, 219, 0.08);
    border-left: 3px solid #3498db;
    border-radius: 0 10px 10px 0;
    margin-top: 20px;
}

.privacy__note-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.privacy__note-icon svg {
    width: 100%;
    height: 100%;
    fill: #3498db;
}

.privacy__note p {
    font-size: 14px;
    color: rgba(59, 59, 59, 0.8);
    line-height: 1.7;
    margin: 0;
}


/* ===== ТАБЛИЦА COOKIES ===== */
.privacy__cookies-table {
    margin: 24px 0;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(59, 59, 59, 0.08);
}

.privacy__cookie-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 1px;
    background: rgba(59, 59, 59, 0.08);
}

.privacy__cookie-header {
    background: var(--main-color);
}

.privacy__cookie-header span {
    color: var(--secondary);
    font-weight: 600;
    font-size: 13px;
}

.privacy__cookie-row span {
    padding: 14px 16px;
    background: var(--white);
    font-size: 14px;
    color: rgba(59, 59, 59, 0.8);
}


/* ===== БЕЗОПАСНОСТЬ ===== */
.privacy__security-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.privacy__security-item {
    text-align: center;
    padding: 24px 16px;
    background: var(--bg);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.privacy__security-item:hover {
    transform: translateY(-4px);
}

.privacy__security-icon {
    width: 44px;
    height: 44px;
    background: rgba(46, 204, 113, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.privacy__security-icon svg {
    width: 22px;
    height: 22px;
    fill: #2ecc71;
}

.privacy__security-item span {
    font-size: 13px;
    font-weight: 600;
    color: var(--main-color);
}


/* ===== КОНТАКТЫ ===== */
.privacy__contacts {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 20px;
}

.privacy__contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: var(--bg);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.privacy__contact-item:hover {
    transform: translateX(6px);
}

.privacy__contact-icon {
    width: 44px;
    height: 44px;
    background: rgba(187, 168, 153, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.privacy__contact-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--warm);
}

.privacy__contact-label {
    display: block;
    font-size: 12px;
    color: rgba(59, 59, 59, 0.5);
    margin-bottom: 2px;
}

.privacy__contact-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--main-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy__contact-value:hover {
    color: var(--warm);
}


/* ===== АДАПТИВ ===== */
@media (max-width: 1024px) {
    .privacy__inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .privacy__nav {
        position: relative;
        top: auto;
    }

    .privacy__nav-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .privacy__nav-link {
        padding: 8px 14px;
        font-size: 12px;
    }

    .privacy__data-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .privacy__security-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .privacy {
        padding: 60px 0 70px;
    }

    .privacy__header {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .privacy__title {
        font-size: 20px;
    }

    .privacy__nav-list {
        flex-direction: column;
    }

    .privacy__data-grid {
        grid-template-columns: 1fr;
    }

    .privacy__security-grid {
        grid-template-columns: 1fr;
    }

    .privacy__cookie-row {
        grid-template-columns: 1fr;
    }

    .privacy__cookie-row span {
        padding: 10px 14px;
        font-size: 13px;
    }

    .privacy__contacts {
        gap: 10px;
    }

    .privacy__contact-item {
        padding: 14px 16px;
    }
}

/* Основные стили */
.main-title {
    font-size: 2.5rem;
    color: #333;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.intro-text {
    font-size: 1.2rem;
    color: white;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 1rem;
    line-height: 1.6;
}

/* О себе */
.about-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 10px;
    margin-bottom: 10px;
}

.about-card {
    background: #faf8f526;
    padding: 1.5rem;
    border-radius: 12px;
}

.about-card svg {
    flex-shrink: 0;
}

/* Преимущества */
.section-title {
    font-family: 'Cormorant', sans-serif;
    font-size: 2rem;
    color: white;
    text-align: center;
    margin-bottom: 10px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card svg {
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #666;
    line-height: 1.5;
}

/* Города */
.cities-section {
    text-align: center;
    margin-bottom: 1rem;
}

.cities-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.city-badge {
    position: relative;
    display: inline-block;
    padding: 14px 20px;
    border: none;
    text-align: center;
    border-radius: var(--radius-btn);
    background: linear-gradient(135deg, var(--main-color) 0%, #5a5a5a 50%, var(--accent-dark) 100%);
    background-size: 200% 200%;
    background-position: 0% 50%;
    color: var(--secondary);
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 3px;
    font-size: 17px;
    overflow: hidden;
    box-shadow:
    0 4px 15px rgba(59, 59, 59, 0.3),
    0 1px 3px rgba(0, 0, 0, 0.1);
    transition:
    background-position 0.5s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.cities-note {
    color: white;
    font-style: italic;
}

/* CTA */
.cta-section {
    text-align: center;
    padding: 3rem;
    background: #faf8f526;
    border-radius: 20px;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: #d4a574;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 1rem;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #c49464;
}

/* ===== CTA кнопка ===== */
.blog-article__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #d4a574 0%, #c49464 100%);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-article__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
    color: #fff;
}

/* ===== Заключение ===== */
.blog-article__conclusion {
    background: linear-gradient(145deg, #fefcf9 0%, #fdf6ed 50%, #f9edd8 100%);
    border-radius: 20px;
    padding: 2.5rem;
    margin-top: 3rem;
    text-align: center;
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.blog-article__conclusion-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.blog-article__conclusion-text:last-of-type {
    margin-bottom: 0;
}

/* ===== Адаптивность ===== */
@media (max-width: 768px) {
    .blog-article__conclusion {
        padding: 1.5rem;
    }
    
    .blog-article__cta {
        width: 100%;
        justify-content: center;
    }
}

.package-cta,
.blog-article-cta {
    padding: 100px 0;
    background: url(../../assets/images/feedback.jpg) center center no-repeat;
    background-size: cover;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* ===== Рейтинг-карточки ===== */
.reviews__rating-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.reviews__rating-card {
    background: linear-gradient(145deg, #fefcf9, #fdf6ed);
    border: 1px solid rgba(212, 165, 116, 0.25);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reviews__rating-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.2);
}

.reviews__rating-card--main {
    background: linear-gradient(135deg, #d4a574, #c49464);
    color: #fff;
}

.reviews__rating-big {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.reviews__rating-stars {
    display: flex;
    justify-content: center;
    gap: 2px;
    margin-bottom: 0.5rem;
}

.reviews__rating-stars svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.reviews__rating-card--main .reviews__rating-stars svg {
    fill: #fff;
}

.reviews__rating-label {
    font-size: 0.85rem;
    opacity: 0.9;
}

.reviews__rating-num {
    font-size: 2.2rem;
    font-weight: 700;
    color: #d4a574;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.reviews__rating-word {
    font-size: 0.85rem;
    color: #777;
}

/* ===== Карточка отзыва ===== */
.blog-article__testimonial {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(212, 165, 116, 0.15);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-article__testimonial:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 165, 116, 0.15);
}

.blog-article__testimonial-quote {
    color: #d4a574;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.blog-article__testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.blog-article__testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}



.blog-article__testimonial-avatar img {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0px auto;
    border: 3px solid #d4a574;
}

.blog-article__testimonial-info {
    display: flex;
    flex-direction: column;
}

.blog-article__testimonial-info strong {
    font-size: 1rem;
    color: #222;
}

.blog-article__testimonial-info span {
    font-size: 0.85rem;
    color: #888;
}

.blog-article__testimonial-stars {
    display: flex;
    gap: 2px;
    margin-top: 4px;
}

.blog-article__testimonial-stars svg {
    width: 16px;
    height: 16px;
    fill: #d4a574;
}

/* ===== Адаптивность ===== */
@media (max-width: 768px) {
    .reviews__rating-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-article__testimonial {
        padding: 1.5rem;
    }
    
    .blog-article__testimonial-avatar img {
        width: 100px;
        height: 100px;
    }
}