
   /* ЗАЩИТА ОТ BOOTSTRAP (СБРОС ЕГО СТИЛЕЙ) */

body {
    font-family: 'Inter', sans-serif !important;
    background-color: #ebf0ec !important; 
    color: #1B241E !important; 
    line-height: 1.6 !important;
    font-size: 16px !important;
}
p {
    margin-bottom: 2rem !important;
    margin-top: 0 !important;
    font-size: 1.1rem !important;
    color: inherit !important;
}
h1, h2, h3, h4, h5, h6 {
    margin-top: 0 !important;
    margin-bottom: 1.5rem !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
    color: #1A2E24 !important; 
}
a { text-decoration: none !important; color: inherit !important; }
.container { 
    max-width: 1200px !important; 
    padding: 0 5% !important; 
    margin: 0 auto !important; 
    width: 100% !important; 
}
.btn { border: 1px solid transparent !important; }

   /* СТИЛЬ САЙТА */
:root {
    --forest-dark: #1a2e24; 
    --forest-mid: #2C4C3B;      
    --moss-light: #EBF0EC;      
    --earth-light: #F4F3F0;    
    --amber-gold: #C5A880;     
    --text-dark: #1B241E;      
    --white: #FFFFFF;
    
    --glass-bg: rgba(244, 246, 243, 0.85); 
    --border: rgba(26, 46, 36, 0.08);
    
    --transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --radius: 16px;
    --radius-lg: 32px;
}

html, body {
    margin: 0; padding: 0; width: 100%; overflow-x: hidden;
    cursor: none; 
}

a, button, input { cursor: none; }
* { box-sizing: border-box; }

.container { position: relative; z-index: 5; }
.mt-5 { margin-top: 3rem; }
.text-center { text-align: center; }

/* ИНТЕРАКТИВНЫЙ КУРСОР */
.cursor-dot, .cursor-outline {
    position: fixed; top: 0; left: 0; 
    transform: translate(-50%, -50%);
    z-index: 999999; pointer-events: none;
    opacity: 0;
    border-radius: 50%;
}

.cursor-dot { 
    width: 6px; height: 6px; 
    background-color: var(--amber-gold); 
    transition: transform 0.2s ease, opacity 0.2s ease; 
}

.cursor-outline {
    width: 30px; height: 30px; 
    border: 1px solid rgba(197, 168, 128, 0.6);
    background-color: transparent;
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                height 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.3s ease, 
                background-color 0.3s ease;
}

.cursor-outline.hover {
    width: 55px; height: 55px; 
    border: 1px solid rgba(197, 168, 128, 0.2);
    background-color: rgba(197, 168, 128, 0.08);
}

.cursor-outline.hover ~ .cursor-dot,
.cursor-dot.hover { 
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
}

@media (max-width: 768px) {
    html, body, a, button, input { cursor: auto; }
    .cursor-dot, .cursor-outline { display: none !important; }
}
/* ТИПОГРАФИКА */
.logo { font-family: 'Inter', sans-serif; font-weight: 500; letter-spacing: -0.02em; }
h1 em, h2 em { font-family: 'Playfair Display', serif !important; font-style: italic; color: var(--amber-gold); font-weight: 400; }
h1 { font-size: clamp(3rem, 7vw, 5.5rem) !important; line-height: 1.1 !important; color: var(--forest-dark); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem) !important; color: var(--forest-dark); }
p { font-size: 1.1rem !important; opacity: 0.85; }
.section-title { text-align: center; margin-bottom: 4rem !important; }

/* КНОПКИ */
.btn {
    display: inline-block; padding: 1rem 2.5rem !important; border-radius: 50px !important;
    font-size: 0.95rem; font-weight: 500; transition: var(--transition); text-align: center;
}
.btn-primary { background: var(--forest-dark); color: var(--white) !important; }
.btn-primary:hover { background: var(--amber-gold); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(197, 168, 128, 0.3); color: var(--white) !important;}
.btn-secondary { background: transparent; border: 1px solid var(--forest-dark) !important; color: var(--forest-dark) !important; }
.btn-secondary:hover { background: var(--forest-dark); color: var(--white) !important; }

/* ЭФФЕКТ ПУЗЫРЬКОВ (НА ФОНЕ) */
.ambient-mist {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: 1; pointer-events: none; overflow: hidden;
}

.particle {
    position: absolute; 
    top: 0; left: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15); 
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1), transparent 50%);
    backdrop-filter: blur(3px) brightness(1.05); 
    -webkit-backdrop-filter: blur(3px) brightness(1.05);
    opacity: 0.4;
}

/* ШАПКА */
header { position: fixed; width: 100%; top: 0; left: 0; z-index: 1000; padding: 1.5rem 5%; transition: var(--transition); display: flex; justify-content: center; }
.header-container { display: flex; justify-content: space-between; align-items: center; background: var(--glass-bg); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); padding: 0.8rem 2rem; border-radius: 50px; border: 1px solid var(--border); width: 100%; max-width: 1200px; transition: box-shadow 0.3s ease; }
.logo { font-size: 1.2rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--forest-dark); }
.nav-links { display: flex; gap: 2.5rem; }
.nav-links a { font-size: 0.9rem; font-weight: 500; transition: color 0.3s; text-transform: uppercase; letter-spacing: 1px; color: var(--text-dark) !important; opacity: 0.7; }
.nav-links a:hover { color: var(--forest-dark) !important; opacity: 1; }
.btn-nav { display: inline-block; padding: 0.6rem 1.5rem; font-size: 0.85rem; background: var(--forest-dark); color: var(--white) !important; font-weight: 500; border-radius: 50px; transition: 0.3s; }
.btn-nav:hover { background: var(--amber-gold); }

/* БЛОКИ (ФОНЫ) */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding-top: 80px; /* background-image: url('../img/altay2.jpg'); background-size: cover; background-repeat: no-repeat; */}
.hero-content { max-width: 800px; margin: 0 auto; }
.badge-forest { display: inline-block; padding: 6px 16px; background: rgba(44, 76, 59, 0.08); /* color: var(--forest-mid); */ color: var(--white); border-radius: 50px; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 24px; /* border: 1px solid var(--border); */ border: 1px solid var(--white); }
.hero-content p {color: var(--white) !important; text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4); font-weight: 400 !important;}
.hero-content h1 {color: var(--white) !important; text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);}
/* .hero-content h1 em {color: var(--amber-gold) !important; text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);} */

.about { padding: 4rem 0; /* background: var(--earth-light); */ /* background: transparent; *//*  background-color: rgba(235, 240, 236, 0.35); */ /* height: 700px; */ background: rgba(87, 94, 85, 0.35); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-top-left-radius: var(--radius-lg); border-top-right-radius: var(--radius-lg);}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-image { border-radius: var(--radius-lg); overflow: hidden; height: 600px; box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-text h2 { color: var(--white) !important;}
/* .about-text p>span { color: var(--amber-gold) !important; text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);} */
.about-text p { color: var(--white) !important; text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);}

.ingredients { padding: 8rem 0; background: var(--moss-light) !important; color: var(--white) !important;}
.ingredients h2 { color: var(--forest-dark) !important; }
.ingredients-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.ingredient-card { /* background: rgba(26,46,36,0.05); border: 1px solid rgba(26,46,36,0.1); */ background: var(--earth-light); padding: 3rem 2rem; border-radius: var(--radius-lg); transition: var(--transition); text-align: center;  border: 1px solid var(--border);}
.ingredient-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(44, 76, 59, 0.08); border-color: var(--forest-mid); }
.ingredient-card h3 { color: var(--forest-dark) !important; font-size: 1.3rem; margin-bottom: 1rem !important; }
.ingredient-card p { font-size: 0.95rem !important; opacity: 0.8; margin: 0 !important; color: var(--forest-dark) !important; }

.science { padding: 8rem 0; background: var(--moss-light); }
.science p { max-width: 600px; margin: 0 auto !important; }
.science-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: center; }
.stat-card { border-top: 1px solid var(--border); padding-top: 2rem; }
.stat-card h3 { font-family: 'Playfair Display', serif !important; font-size: 4rem !important; font-weight: 400 !important; color: var(--forest-dark) !important; margin-bottom: 1rem !important; }
.stat-card p { font-size: 1rem !important; color: var(--forest-mid) !important; margin: 0 !important; }

.compact-capsule { padding: 4rem 0; /* margin-bottom: 100px; */ background: transparent; background-image: url('../img/photoshop2.jpg'); background-repeat: no-repeat; background-size: cover; background-position: center; }
.capsule-glass-board { background: rgba(87, 94, 85, 0.35); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: var(--radius-lg); padding: 3rem 2rem; box-shadow: 0 15px 35px rgba(26, 46, 36, 0.1); }
.capsule-top-text { text-align: center; margin-bottom: 1.5rem; }
.capsule-top-text h2 { color: var(--moss-light) !important; margin-top: 1rem !important; margin-bottom: 0 !important; font-size: clamp(2rem, 4vw, 2.5rem) !important; }
.capsule-showcase { display: flex; align-items: center; justify-content: center; gap: 2rem; width: 100%;}
.capsule-center { flex-shrink: 0; width: 200px; display: flex; justify-content: center; align-items: center;}
.capsule-point {flex: 1 1 0%; max-width: 280px;}

   /* АНИМАЦИЯ ТРАНСПОРТНОЙ СИСТЕМЫ */

.transport-system {
    position: relative;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cell-core {
    position: relative;
    z-index: 5;
    width: 32px;
    height: 32px;
    background: var(--amber-gold);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(197, 168, 128, 0.6), inset 0 0 10px rgba(255, 255, 255, 0.8);
    animation: cell-pulse 3s ease-in-out infinite;
}

.detox-wave {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(197, 168, 128, 0.5);
    box-sizing: border-box;
    animation: detox-ripple 4.5s linear infinite;
    opacity: 0;
}

.wave-1 { animation-delay: 0s; }
.wave-2 { animation-delay: 1.5s; }
.wave-3 { animation-delay: 3s; }

.nutrient {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--white);
    z-index: 6;
    opacity: 0;
}

.nut-1 { animation: absorb-top 3s ease-in infinite 0.5s; }
.nut-2 { animation: absorb-left 3s ease-in infinite 1.5s; }
.nut-3 { animation: absorb-right 3s ease-in infinite 2.5s; }

@keyframes cell-pulse {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.15); opacity: 1; box-shadow: 0 0 35px rgba(197, 168, 128, 0.9), inset 0 0 15px rgba(255, 255, 255, 1); }
}

@keyframes detox-ripple {
    0% { width: 32px; height: 32px; opacity: 0.8; border-width: 2px; }
    100% { width: 180px; height: 180px; opacity: 0; border-width: 1px; border-color: rgba(255, 255, 255, 0.1); }
}

@keyframes absorb-top {
    0% { top: 0%; left: 50%; opacity: 0; transform: translate(-50%, -50%) scale(0.5); }
    20% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    80% { top: 40%; left: 50%; opacity: 1; }
    100% { top: 50%; left: 50%; opacity: 0; transform: translate(-50%, -50%) scale(0); }
}

@keyframes absorb-left {
    0% { top: 85%; left: 15%; opacity: 0; transform: translate(-50%, -50%) scale(0.5); }
    20% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    80% { top: 60%; left: 40%; opacity: 1; }
    100% { top: 50%; left: 50%; opacity: 0; transform: translate(-50%, -50%) scale(0); }
}

@keyframes absorb-right {
    0% { top: 85%; left: 85%; opacity: 0; transform: translate(-50%, -50%) scale(0.5); }
    20% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    80% { top: 60%; left: 60%; opacity: 1; }
    100% { top: 50%; left: 50%; opacity: 0; transform: translate(-50%, -50%) scale(0); }
}
.point-left { text-align: right; border-right: 2px solid var(--amber-gold); padding-right: 1.5rem; height: 200px; }
.point-right { text-align: left; border-left: 2px solid var(--amber-gold); padding-left: 1.5rem; height: 200px; }
.capsule-point h3 { color: var(--amber-gold) !important; font-size: 0.80rem !important; margin-bottom: 0.5rem !important; text-transform: uppercase; letter-spacing: 1px; }
.capsule-point p { color: rgba(255,255,255,0.7) !important; font-size: 0.9rem !important; margin: 0 !important; line-height: 1.5 !important; }


.technologies { padding: 0 0 8rem 0; background: var(--moss-light); }
.technologies > div{top: 100px; position: relative;}
.bento-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.bento-item { background: var(--earth-light); border-radius: var(--radius-lg); padding: 3rem; border: 1px solid var(--border); transition: var(--transition); }
.bento-item:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(44, 76, 59, 0.08); border-color: var(--forest-mid); }
.item-large { grid-column: span 2; background: linear-gradient(135deg, var(--earth-light) 0%, #E3E7E1 100%); }
.bento-content h3 { font-size: 1.5rem !important; color: var(--forest-dark) !important; margin-bottom: 1rem !important; }
.bento-content p { margin: 0 !important; font-size: 1rem !important; }

.offer { padding: 4rem 0 8rem; background: var(--moss-light); }
.offer-banner { background: var(--forest-mid); border-radius: var(--radius-lg); padding: 4rem; display: flex; align-items: center; justify-content: space-between; gap: 4rem; color: var(--white); overflow: hidden; position: relative;}
.offer-text { flex: 1; z-index: 2;}
.offer-text h2 { color: var(--white) !important; margin-bottom: 1rem !important; }
.offer-text p { color: rgba(255,255,255,0.8) !important; margin-bottom: 2rem !important; }
.badge-gold { display: inline-block; background: var(--amber-gold); color: var(--forest-dark); padding: 4px 12px; border-radius: 4px; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; }
.offer-img { flex: 1; height: 350px; border-radius: var(--radius); overflow: hidden; z-index: 2; box-shadow: 0 20px 40px rgba(0,0,0,0.3);}
.offer-img img { width: 100%; height: 100%; object-fit: cover; }
.offer-banner::before { content:''; position:absolute; top:-50%; right:-10%; width: 400px; height: 400px; background: rgba(197, 168, 128, 0.2); border-radius: 50%; filter: blur(50px); z-index: 1;}

   /* СТИЛИ ДЛЯ ТОЧЕК КАРУСЕЛИ ОФФЕРОВ */

#offerCarousel .custom-indicators {
    position: absolute;
    bottom: -3rem;
    margin: 0;
    justify-content: center;
    gap: 8px;
}

#offerCarousel .custom-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--forest-mid);
    opacity: 0.3;
    border: none;
    margin: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-sizing: border-box;
}

#offerCarousel .custom-indicators button.active {
    opacity: 1;
    background-color: var(--amber-gold);
    width: 28px; 
    border-radius: 5px;
}

#offerCarousel .custom-indicators button:hover:not(.active) {
    opacity: 0.6;
    background-color: var(--forest-dark);
}


/* .showcase { padding: 4rem 0; background: var(--earth-light); }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2.5rem 2rem; }

.product-card { 
    background: var(--white); border-radius: var(--radius); overflow: hidden; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.03); transition: var(--transition); 
    display: flex; flex-direction: column; border: 1px solid var(--border); height: 100%; 
}
.product-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(26, 46, 36, 0.08); border-color: var(--amber-gold); }

.img-wrapper { width: 100%; padding-top: 110%; position: relative; overflow: hidden; background: #E8ECE9; }
.product-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; mix-blend-mode: multiply; }
.product-card:hover .product-img { transform: scale(1.05); }

.product-tag { position: absolute; top: 1rem; left: 1rem; background: var(--forest-dark); color: var(--white) !important; padding: 6px 14px; border-radius: 50px; font-size: 0.7rem; text-transform: uppercase; font-weight: 600; letter-spacing: 1px; z-index: 2; }
.product-tag.new { background: var(--amber-gold); color: var(--text-dark) !important; }

.card-info { padding: 2rem; display: flex; flex-direction: column; flex-grow: 1; }
.product-meta { font-size: 0.75rem; color: var(--amber-gold); text-transform: uppercase; font-weight: 600; letter-spacing: 1px; margin-bottom: 0.5rem; }
.card-info h3 { margin: 0 0 0.75rem 0 !important; font-size: 1.3rem !important; font-weight: 600 !important; color: var(--forest-dark) !important; }
.card-info p { font-size: 0.95rem !important; margin-bottom: 1.5rem !important; flex-grow: 1; }

.card-footer { display: flex; border-top: 1px solid var(--border); padding-top: 1.5rem; margin-top: auto; }

.btn-details { 
    width: 100%; 
    background: transparent !important; 
    border: 1px solid var(--forest-dark) !important; 
    color: var(--forest-dark) !important; 
    font-size: 0.85rem !important; 
    font-weight: 600 !important; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    padding: 0.8rem 0 !important; 
    border-radius: 50px !important; 
    cursor: pointer; 
    transition: all 0.3s ease !important; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
}

.btn-details svg { display: none !important; }

.btn-details:hover { 
    background: var(--forest-dark) !important; 
    color: var(--amber-gold) !important; 
    border-color: var(--forest-dark) !important;
}

.product-card:hover .btn-details { color: var(--forest-dark) !important; }
.product-card:hover .btn-details:hover { color: var(--amber-gold) !important; } */


   /* КАРТОЧКИ ТОВАРОВ С БЫСТРЫМ ПРОСМОТРОМ */

.showcase { padding: 4rem 0; background: var(--earth-light); }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2.5rem 2rem; align-items: stretch; }

.product-card { 
    background: var(--white); border-radius: var(--radius); overflow: hidden; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.03); transition: all 0.4s ease; 
    display: flex; flex-direction: column; border: 1px solid var(--border); height: 100%; 
    cursor: pointer; 
}
.product-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(26, 46, 36, 0.08); border-color: var(--amber-gold); }

.img-wrapper { width: 100%; padding-top: 110%; position: relative; overflow: hidden; background: #E8ECE9; }
.product-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; mix-blend-mode: multiply; }
.product-card:hover .product-img { transform: scale(1.05); }

.btn-quick-view {
    position: absolute;
    bottom: 1.5rem; 
    left: 50%;
    transform: translateX(-50%) translateY(20px); 
    
    background: var(--white);
    color: var(--forest-dark);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.4rem 2.5rem; 
    border: none;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); 
    white-space: nowrap;
    opacity: 0; 
    z-index: 3;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .btn-quick-view {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.btn-quick-view:hover {
    background: var(--amber-gold);
    color: var(--white);
}

.product-tag { position: absolute; top: 1rem; left: 1rem; background: var(--forest-dark); color: var(--white) !important; padding: 6px 14px; border-radius: 50px; font-size: 0.7rem; text-transform: uppercase; font-weight: 600; letter-spacing: 1px; z-index: 2; }
.product-tag.new { background: var(--amber-gold); color: var(--text-dark) !important; }

.card-info { padding: 2rem; display: flex; flex-direction: column; flex-grow: 1; text-align: center; }
.product-meta { font-size: 0.75rem; color: var(--amber-gold); text-transform: uppercase; font-weight: 600; letter-spacing: 1px; margin-bottom: 0.5rem; }
.card-info h3 { margin: 0 0 0.75rem 0 !important; font-size: 1.3rem !important; font-weight: 600 !important; color: var(--forest-dark) !important; }
.card-info p { font-size: 0.95rem !important; margin: 0 !important; color: rgba(0,0,0,0.6); }

   /* БЛОК FAQ */

.faq { background: var(--forest-dark) !important; color: var(--moss-light) !important; padding: 8rem 0; }
.faq h2 { color: var(--moss-light) !important; text-align: center; margin-bottom: 4rem !important; }
.faq-container { max-width: 800px; }

.faq-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
.faq-header { width: 100%; text-align: left; background: none; border: none; padding: 2rem 0; font-size: 1.2rem; font-weight: 500; color: var(--white); cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: inherit; }
.plus-icon { font-size: 1.5rem; transition: transform 0.3s; color: var(--amber-gold); }
.faq-item.is-open .plus-icon { transform: rotate(45deg); }

.faq-panel { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-panel p { color: rgba(255,255,255,0.7) !important; padding-bottom: 2rem !important; margin: 0 !important; }


   /* МОДАЛЬНЫЕ ОКНА BOOTSTRAP */

/* Плавный фон без черного мерцания (родной Bootstrap) */
.modal-backdrop { --bs-backdrop-bg: #1A2E24 !important; --bs-backdrop-opacity: 0.7 !important; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }

html { overflow-y: scroll !important; }
body.modal-open { padding-right: 0 !important; }
.custom-modal-size { max-width: 900px !important; }

.modal-content { background-color: transparent !important; border: none !important; border-radius: 0 !important; box-shadow: none !important; }

.premium-modal-content { position: relative; background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15); }
.premium-modal-close { position: absolute; top: 1.5rem; right: 1.5rem; z-index: 10; background: var(--earth-light); border: none; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--forest-dark); cursor: pointer; transition: 0.3s; }
.premium-modal-close:hover { background: var(--forest-dark); color: var(--amber-gold); transform: rotate(90deg); }

.premium-modal-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 500px; }
.premium-modal-img { background: #E8ECE9; position: relative; }
.premium-modal-img img { position: absolute; width: 100%; height: 100%; object-fit: cover; mix-blend-mode: multiply; }
.premium-modal-info { padding: 4rem 2rem; display: flex; flex-direction: column; justify-content: center; }
.premium-modal-info h2 { font-size: 2.2rem !important; margin-bottom: 1rem !important; font-family: 'Playfair Display', serif !important; }
.modal-lead { font-size: 1.15rem !important; font-weight: 500 !important; color: var(--forest-dark) !important; margin-bottom: 2rem !important; line-height: 1.4 !important; }
.modal-divider { width: 40px; height: 2px; background: var(--amber-gold); margin-bottom: 2rem; }
.modal-description { font-size: 0.95rem; color: rgba(27, 36, 30, 0.8); }
.modal-description ul { padding-left: 1.2rem; margin-bottom: 1rem; }
.modal-description li { margin-bottom: 0.5rem; }

@media (max-width: 768px) {
    .premium-modal-grid { grid-template-columns: 1fr; }
    .premium-modal-img { height: 250px; }
    .premium-modal-info { padding: 2rem 1.5rem; }
    .premium-modal-info h2 { font-size: 1.8rem !important; }
}


   /* ОСТАЛЬНЫЕ СЕКЦИИ */

.ugc { padding: 4rem 0; background: var(--moss-light); }
.ugc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 3rem; }
.ugc-item { position: relative; border-radius: var(--radius); overflow: hidden; height: 300px; display: block; }
.ugc-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.ugc-overlay { position: absolute; inset: 0; background: rgba(26, 46, 36, 0.6); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; }
.ugc-overlay span { color: var(--white); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; border: 1px solid var(--white); padding: 8px 16px; border-radius: 50px; transform: translateY(20px); transition: transform 0.3s ease; }
.ugc-item:hover img { transform: scale(1.1); }
.ugc-item:hover .ugc-overlay { opacity: 1; }
.ugc-item:hover .ugc-overlay span { transform: translateY(0); }

.reviews { padding: 4rem 0; background: var(--earth-light); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.review-card { background: var(--glass-bg); border: 1px solid var(--border); padding: 2.5rem; border-radius: var(--radius); transition: var(--transition); }
.review-card:hover { background: var(--white); transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.05); }
.stars { color: var(--amber-gold); font-size: 1.2rem; margin-bottom: 1rem; letter-spacing: 2px; }
.review-text { font-style: italic; font-size: 1.05rem !important; margin-bottom: 2rem !important; }
.author { font-weight: 600; font-size: 0.9rem; color: var(--forest-dark); margin: 0 !important; }

.newsletter { padding: 4rem 0; background: var(--earth-light); text-align: center; }
.news-content { max-width: 600px; margin: 0 auto; }
.news-form { display: flex; gap: 1rem; margin-top: 2rem; }
.news-form input { flex: 1; padding: 1rem 1.5rem; border-radius: 50px; border: 1px solid var(--border); background: var(--white); font-family: inherit; font-size: 1rem; outline: none; transition: 0.3s; }
.news-form input:focus { border-color: var(--forest-mid); box-shadow: 0 0 0 3px rgba(44, 76, 59, 0.1); }

/* footer { background: var(--forest-dark); color: rgba(255,255,255,0.7); padding: 5rem 0 2rem; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-content { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 3rem; }
.footer-col .logo { color: var(--white) !important; font-size: 1.5rem; margin-bottom: 1rem; }
.footer-col.links { display: flex; flex-direction: column; gap: 1rem; }
.footer-col.links a { transition: 0.3s; }
.footer-col.links a:hover { color: var(--amber-gold) !important; }
.contact-info a { color: var(--white) !important; font-weight: 500; }
.copyright { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1rem; font-size: 0.8rem; } */

/* ФУТЕР */

.exact-footer { 
    background: var(--forest-dark); 
    color: var(--white); 
    padding: 5rem 0 4rem; 
}

/* --- ВЕРХНИЙ ЭТАЖ: Контакты и Карта --- */
.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.footer-contacts h2 {
    font-size: 2.0rem !important;
    color: var(--white) !important;
    margin-top: 0 !important;
    margin-bottom: 1.5rem !important;
    line-height: 1;
}

.contact-block { margin-bottom: 1.5rem; }
.contact-block strong {
    display: block;
    font-size: 1.0rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    line-height: 1.4;
}
.contact-block p {
    font-size: 0.90rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
    margin: 0 !important;
}
.phone-link, .email-link {
    display: block;
    color: var(--white) !important;
    font-size: 1.0rem;
    text-decoration: none;
    margin-bottom: 0.3rem;
    transition: 0.3s;
}
.phone-link:hover, .email-link:hover { color: var(--amber-gold) !important; }

.footer-map {
    width: 100%;
    border-radius: 20px; 
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin: 4rem 0 3rem; 
}

/* --- НИЖНИЙ ЭТАЖ: 4 Колонки --- */
.footer-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr 1.2fr;
    gap: 2.5rem;
    align-items: start; 
}

/* Колонка 1: Лого и соцсети */
.f-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: -6px !important; 
    margin-bottom: 1.5rem;
    line-height: 1;
}
.f-socials {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}
.f-soc {
    display: flex; align-items: center; justify-content: center;
    width: 30px; height: 30px;
    background: var(--white);
    color: var(--forest-dark) !important;
    border-radius: 50%;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 700;
    transition: 0.3s;
}
.f-soc:hover { background: var(--amber-gold); }

.f-copyright p {
    font-size: 0.7rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
    line-height: 1.5 !important;
    margin-bottom: 1rem !important;
    text-transform: uppercase;
}
.f-reqs { text-transform: none !important; }

/* Колонка 2: Документы */
.f-col-docs h4 {
    color: var(--white) !important;
    font-size: 1rem;
    font-weight: 700;
    margin-top: 0 !important;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    line-height: 1.2;
}
.f-col-docs a {
    display: block;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.85rem;
    text-decoration: underline; 
    text-decoration-color: rgba(255,255,255,0.3);
    margin-bottom: 0.8rem;
    line-height: 1.4;
    transition: 0.3s;
}
.f-col-docs a:hover {
    color: var(--white) !important;
    text-decoration-color: var(--white);
}

/* Колонки 3 и 4: Тексты */
.f-col-text p {
    font-size: 0.85rem !important;
    color: rgba(255, 255, 255, 0.8) !important;
    line-height: 1.6 !important;
    margin-bottom: 1rem !important;
}
.f-col-text p:first-child {
    margin-top: 0 !important; 
}
.f-col-text strong {
    color: var(--white);
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}

@media (max-width: 1024px) {
    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { grid-template-columns: 1fr 1fr; row-gap: 3rem; }
}

@media (max-width: 600px) {
    .footer-bottom { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* АНИМАЦИИ ПОЯВЛЕНИЯ (BOOTSTRAP) */
.reveal, .reveal-up, .reveal-right { opacity: 0; transition: all 1s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal { transform: translateY(30px); }
.reveal-up { transform: translateY(50px); }
.reveal-right { transform: translateX(50px); }
.reveal.is-revealed, .reveal-up.is-revealed, .reveal-right.is-revealed { opacity: 1 !important; transform: translate(0) !important; }

/* АДАПТИВНОСТЬ */
@media (max-width: 900px) {
    .about-grid, .offer-banner { grid-template-columns: 1fr; gap: 3rem; text-align: center; flex-direction: column; }
    .about-image { height: 400px; }
    .offer-banner { padding: 3rem 2rem; }
    .offer-img { width: 100%; height: 300px; }
    .bento-grid { grid-template-columns: 1fr; }
    .item-large { grid-column: span 1; }
    .science-stats { grid-template-columns: 1fr; }
    .news-form { flex-direction: column; }
    .ugc-grid { grid-template-columns: repeat(2, 1fr); }
    .capsule-showcase { flex-direction: column; gap: 1.5rem; }
    .capsule-center { order: -1; width: 200px; }
    .capsule-point { max-width: 100%; text-align: center; }
    .point-left, .point-right { border: none; padding: 0; }
    .point-left { border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 1.5rem; }
}
@media (max-width: 768px) {
    .nav-links, .btn-nav { display: none; }
    .header-container { justify-content: center; padding: 1rem 2rem; }
    .ugc-grid { grid-template-columns: 1fr; }
}

.parallax-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('../img/photoshop1.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
    filter: blur(1px) brightness(0.7) saturate(0.8);
    transform: scale(1.05);
}

/* .parallax-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(235, 240, 236, 0.85), rgba(235, 240, 236, 0.85)), url('../img/poster.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
} */

