/* ================= ЗМІННІ ТА БАЗА ================= */ 
:root { 
    --bg-light: #FAF8F5; 
    --bg-dark: #161616;  
    --gold: #C2A373; 
    --gold-hover: #A88B5E; 
    --text-dark: #2C2C2C; 
    --text-light: #FFFFFF; 
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.05); 
    --shadow-hover: 0 15px 40px rgba(194, 163, 115, 0.12); 
    --radius: 20px;
} 

* { margin: 0; padding: 0; box-sizing: border-box; } 
html { 
    scroll-behavior: smooth; 
    overflow-x: clip; 
    max-width: 100vw; 
}

body { 
    font-family: 'Montserrat', sans-serif; 
    background-color: var(--bg-light); 
    color: var(--text-dark); 
    line-height: 1.6; 
    overflow-x: clip; 
    max-width: 100vw;
}

.container { max-width: 900px; margin: 0 auto; padding: 0 20px; } 
.text-center { text-align: center; } 
.text-light { color: var(--text-light); } 
.text-gold { color: var(--gold); } 
.section-padding { padding: 80px 0; } 
.mt-20 { margin-top: 20px; } 
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; } 
.mt-50 { margin-top: 50px; }
.mb-15 { margin-bottom: 15px; font-size: 1.05rem; color: #444; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }

h1, h2, h3, h4 { font-weight: 800; } 
.gold-text { color: var(--gold); } 
.text-upper { text-transform: uppercase; }
.text-italic { font-style: italic; }
.fs-1-1 { font-size: 1.1rem; }
.gold { color: var(--gold); }

/* ================= КНОПКИ ТА ПУЛЬС ================= */ 
.btn { 
    display: inline-block; padding: 22px 30px; font-size: 1.05rem; font-weight: 800; 
    text-transform: uppercase; text-decoration: none; border-radius: 12px; 
    border: none; cursor: pointer; transition: all 0.3s ease; text-align: center; 
    width: 100%; max-width: 450px; letter-spacing: 0.5px; 
} 
.btn:hover { transform: translateY(-3px); } 
.btn-gold { background-color: var(--gold); color: var(--text-light); } 
.btn-gold:hover { background-color: var(--gold-hover); box-shadow: 0 10px 20px rgba(194,163,115,0.3); } 
.btn-dark { background-color: var(--bg-dark); color: var(--gold); } 
.btn-dark:hover { background-color: #000; box-shadow: 0 10px 20px rgba(0,0,0,0.3); } 
.full-width { max-width: 100%; } 
.huge-btn { font-size: 1.15rem; padding: 25px 20px; white-space: normal; } 

.pulse { animation: pulse-animation 2.5s infinite; } 
@keyframes pulse-animation { 
    0% { box-shadow: 0 0 0 0 rgba(194, 163, 115, 0.4); } 
    70% { box-shadow: 0 0 0 15px rgba(194, 163, 115, 0); } 
    100% { box-shadow: 0 0 0 0 rgba(194, 163, 115, 0); } 
} 

/* ================= КАРТКИ ================= */
.premium-card {
    background: #fff; border-radius: var(--radius); padding: 40px 30px; /* Збільшив падінги */
    box-shadow: var(--shadow-soft); transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(0,0,0,0.03);
}
.hover-lift { transition: transform 0.4s ease, box-shadow 0.4s ease; }
.hover-lift:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); border-color: rgba(194,163,115,0.2);}

.premium-card--dark { background: #1A1A1A; border-color: rgba(255,255,255,0.05); }
.premium-card--dark:hover { box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.premium-card--gold-border { border: 2px solid var(--gold); box-shadow: 0 15px 40px rgba(194,163,115,0.1); }

/* ================= HERO & TYPEWRITER ================= */ 
.hero { background-color: var(--bg-dark); color: var(--text-light); padding: 40px 0 100px; } 
.small-logo { max-width: 90px; height: auto; margin: 0 auto 30px; border-radius: 50%; border: 1px solid var(--gold); padding: 5px; display: block; }
.pre-title { color: var(--gold); font-weight: 700; letter-spacing: 2px; margin-bottom: 10px; font-size: 0.9rem; text-transform: uppercase; } 
.hero h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 15px; text-transform: uppercase; } 
.hero h1 span { color: var(--gold); } 
.typewriter-wrapper { min-height: 4rem; display: flex; justify-content: center; align-items: center; margin-bottom: 40px; }
.subtitle { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-style: italic; color: #E5E0D8; margin: 0;} 
.subtitle::after { content: '|'; animation: blink 1s step-end infinite; color: var(--gold); }
@keyframes blink { 50% { opacity: 0; } }

/* ================= ЗНАЙОМІ ВІДЧУТТЯ ================= */ 
.section-title { font-size: 2.2rem; margin-bottom: 30px; color: var(--bg-dark); text-transform: uppercase; line-height: 1.2; } 
.subtitle-text { font-size: 1.2rem; color: #666; max-width: 700px; margin: 0 auto; }

.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 30px; text-align: left;}
.cards-grid .card { padding: 30px 20px; }
.card-icon { font-size: 2.5rem; display: block; margin-bottom: 15px; }
.card h3 { font-size: 1.1rem; color: var(--bg-dark); margin-bottom: 5px; }
.card p { font-size: 0.95rem; color: #666; }

.quote-card-wrapper { max-width: 750px; margin: 50px auto 0; }
.highlight-quote { font-size: 1.3rem; line-height: 1.6; color: #333; text-align: center; }

/* ================= ФІЛОСОФІЯ (Перероблена) ================= */ 
.philosophy-bento { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; text-align: left; max-width: 1000px; margin: 0 auto;}
.philosophy { background-color: var(--bg-dark); } 
.big-statement { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; color: var(--gold); font-style: italic; line-height: 1.2;} 
.learn-grid { display: flex; flex-direction: column; gap: 15px; } 
.learn-item { 
    background: rgba(194,163,115,0.05); /* Легкий золотий фон */
    color: var(--text-light); 
    padding: 20px; 
    border-radius: 12px; 
    border-left: 4px solid var(--gold); 
    font-size: 1.05rem; 
    display: flex; align-items: center; gap: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
} 
.check-icon { color: var(--gold); width: 24px; height: 24px; flex-shrink: 0; }

/* ================= ДОВІРА (ОБЛИЧЧЯ) ================= */ 
.trust-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; align-items: center; }
.trust-image-wrapper { 
    width: 100%; margin: 0 auto; 
    border-radius: var(--radius); overflow: hidden; box-shadow: 0 15px 50px rgba(0,0,0,0.1); 
}
.trust-img { width: 100%; height: auto; display: block; object-fit: cover; aspect-ratio: 4/5; }
.trust-text-card { text-align: left; padding: 50px; }

/* ================= STICKY STACK ================= */ 
.program-stack, .pressure-stack { 
    display: flex; 
    flex-direction: column; 
    padding-bottom: 20px !important; /* Прибрали гігантську пустоту (було 150px) */
    position: relative; 
    max-width: 800px; 
    margin: 40px auto 0; 
}

.sticky-card { 
    position: sticky; 
    top: calc(12vh + (var(--idx) * 15px)); 
    z-index: var(--idx); 
    text-align: left; 
    background: #fff;
    padding: 35px !important;
    box-shadow: 0 -15px 35px rgba(0,0,0,0.1) !important; 
    border-top: 1px solid rgba(194, 163, 115, 0.2); 
    border-radius: var(--radius);
    margin-bottom: 50px; 
}

/* МАГІЯ ДЛЯ ОСТАННЬОЇ КАРТКИ: вбиваємо нижній відступ, щоб кнопка/наступна секція підтягнулась впритул */
.sticky-card:last-child {
    margin-bottom: 0 !important;
}

.sticky-card { 
    position: sticky; 
    top: calc(12vh + (var(--idx) * 15px)); /* Зупиняємо картки ближче до верху екрану */
    z-index: var(--idx); /* Магія накладання: кожна наступна картка гарантовано лягає поверх попередньої */
    text-align: left; 
    background: #fff;
    padding: 35px !important;
    box-shadow: 0 -15px 35px rgba(0,0,0,0.1) !important; /* М'яка преміальна тінь зверху */
    border-top: 1px solid rgba(194, 163, 115, 0.2); 
    border-radius: var(--radius);
    margin-bottom: 50px; /* Збільшили відстань, щоб вони не злипались миттєво */
}
.day-num { font-weight: 800; color: var(--gold); text-transform: uppercase; font-size: 0.9rem; margin-bottom: 10px; letter-spacing: 1px; } 
.sticky-card h4 { font-size: 1.3rem; margin-bottom: 12px; color: var(--bg-dark); } 
.sticky-card p { font-size: 1rem; color: #555; margin-bottom: 15px; } 
.practice { display: inline-block; background: var(--bg-light); padding: 6px 12px; border-radius: 6px; font-size: 0.85rem; font-weight: 600; color: var(--bg-dark); } 

/* ================= БОТ (ВИПРАВЛЕНО ЗАГОЛОВОК) ================= */
.bot-showcase { padding-bottom: 120px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.bot-header-wrap { display: flex; flex-direction: column; align-items: center; }
.bot-pre-title { color: var(--gold) !important; font-weight: 800; font-size: 1rem; letter-spacing: 2px; margin-bottom: 15px; text-transform: uppercase; } /* Тепер він видимий */
.bot-main-title { margin-bottom: 15px; }
.bot-subtitle { font-size: 1.2rem; color: #e0e0e0; font-weight: 400; max-width: 700px; line-height: 1.5; margin: 0 auto; }

.bot-visual { display: flex; justify-content: center; position: relative; padding: 0; }
.clean-phone-wrapper { position: relative; width: 80%; max-width: 320px; margin: 0 auto; }
.clean-phone-img { width: 100%; display: block; height: auto; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5)); border-radius: 40px;}

.bot-features-list { display: flex; flex-direction: column; gap: 15px; max-width: 700px; margin: 40px auto 0; }
.feature-row { display: flex; align-items: center; gap: 20px; background: #ffffff; padding: 22px 25px; border-radius: 20px; border: 1px solid rgba(0,0,0,0.03); box-shadow: var(--shadow-soft); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.feature-row .f-icon { font-size: 2.2rem; line-height: 1; flex-shrink: 0; }
.feature-row .f-text strong { display: block; font-size: 1.1rem; margin-bottom: 5px; text-transform: none; }
.feature-row .f-text span { font-size: 0.95rem; color: #666; line-height: 1.4; display: block; font-weight: 400; }

/* ================= БЕЗ ТИСКУ ================= */ 
.pressure-bento { display: grid; grid-template-columns: 1fr 1.3fr; gap: 40px; align-items: flex-start; max-width: 1000px; margin: 0 auto;}
.pressure-image-wrapper { 
    width: 100%; 
    border-radius: var(--radius); 
    overflow: hidden; 
    box-shadow: 0 15px 40px rgba(0,0,0,0.08); 
    position: relative !important; /* Вбиваємо липкість картинки */
    top: auto !important; /* Скидаємо відступ від верху екрану */
}
.pressure-img { width: 100%; height: auto; object-fit: cover; display: block; aspect-ratio: 4/5;} 
.pressure-stack-wrapper { text-align: left; }
.pressure-stack { margin-top: 0; }
.pressure-stack .sticky-card { padding: 35px !important; top: calc(15vh + (var(--idx) * 15px)); }
.p-icon svg { width: 36px; height: 36px; color: var(--gold); stroke-width: 1.5; margin-bottom: 15px; }
.sticky-card h4 { text-transform: uppercase; font-size: 1.1rem;}

/* ================= ВІДГУКИ ================= */
.reviews-wrapper {
    display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory;
    padding-bottom: 20px; -ms-overflow-style: none; scrollbar-width: none; margin-top: 20px;
    
    /* ГАРАНТОВАНО ВИПРАВЛЯЄ ОБРІЗАННЯ КАРТОК ЗВЕРХУ ПРИ НАВЕДЕННІ */
    overflow-y: visible !important;
}
.reviews-wrapper::-webkit-scrollbar { display: none; }
.review-card {
    flex: 0 0 320px; scroll-snap-align: center;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    color: #fff; text-align: left; padding: 35px; border-radius: 20px;
}
.stars { color: var(--gold); font-size: 1.2rem; margin-bottom: 15px; }
.review-text { font-style: italic; font-size: 1rem; color: #ddd; margin-bottom: 25px; text-transform: none; font-weight: 400; line-height: 1.5;}
.review-author { font-weight: 700; font-size: 0.95rem; color: var(--gold); }

/* ================= ОФФЕР ================= */ 
.offer-section { background-color: var(--bg-light); } 
.offer-bento { max-width: 700px; margin: 0 auto; }
.perfect-price-row { display: flex; justify-content: center; align-items: baseline; gap: 15px; flex-wrap: nowrap; white-space: nowrap; }
.price-current { font-size: 4.5rem; font-weight: 900; color: var(--gold); line-height: 1; }
.price-old { font-size: 1.8rem; color: rgba(255,255,255,0.4); text-decoration: line-through !important; font-weight: 600; }
.timer-wrapper { margin-top: 40px; } 
.timer-label { font-weight: 800; margin-bottom: 15px; font-size: 1.1rem; } 
.box-timer { display: flex; justify-content: center; align-items: flex-start; gap: 10px; } 
.time-box { background: rgba(255,255,255,0.1); color: var(--text-light); border-radius: 12px; padding: 15px; min-width: 80px; display: flex; flex-direction: column; align-items: center; } 
.time-box span { font-size: 2.5rem; font-weight: 800; line-height: 1; } 
.time-box small { font-size: 0.75rem; text-transform: uppercase; margin-top: 5px; color: var(--gold); font-weight: 600; } 
.time-separator { font-size: 2.5rem; font-weight: 800; margin-top: 5px; } 

/* ================= ФУТЕР ================= */ 
footer { background: var(--bg-dark); color: var(--text-light); padding: 80px 20px 120px; border-top: 1px solid rgba(255,255,255,0.05); } 
.legal-info { margin: 0 auto; font-size: 0.85rem; color: #999; max-width: 700px; line-height: 1.6; } 
.legal-contacts { margin-bottom: 20px; } 
.legal-contacts strong { color: var(--gold); font-size: 0.95rem; } 
.legal-links { margin: 20px 0; } 
.legal-links a { color: var(--gold); text-decoration: underline; transition: 0.3s; } 
.legal-links a:hover { color: #fff; } 
.divider { margin: 0 10px; color: #555; } 
.disclaimer { font-size: 0.75rem; color: #666; text-align: justify; margin-bottom: 30px; } 
.copyright { font-size: 0.8rem; color: #555; text-transform: uppercase; letter-spacing: 1px; } 

/* ================= РОЗУМНИЙ STICKY BAR ================= */ 
.smart-sticky-bar {  
    position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%) translateY(0);
    width: 90%; max-width: 450px; background: rgba(26, 26, 26, 0.95);  
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); 
    padding: 12px 20px; box-shadow: 0 15px 40px rgba(0,0,0,0.25); z-index: 9999; 
    border-radius: 50px; border: 1px solid rgba(194, 163, 115, 0.3); 
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.5s ease;
    opacity: 1; pointer-events: auto;
} 
.smart-sticky-bar.sticky-hidden { transform: translateX(-50%) translateY(150px); opacity: 0; pointer-events: none; }
.sticky-content { display: flex; justify-content: space-between; align-items: center; gap: 15px; }
.sticky-text { display: flex; flex-direction: column; text-align: left; }
.st-price { color: var(--gold); font-weight: 800; font-size: 1.3rem; line-height: 1; }
.st-old { color: #888; text-decoration: line-through; font-size: 0.85rem; }
.sticky-btn { padding: 12px 25px; font-size: 0.9rem; border-radius: 30px; white-space: nowrap; margin: 0; max-width: max-content; }

/* ================= POPUP ================= */ 
.modal-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.85); backdrop-filter: blur(5px); z-index: 10000; justify-content: center; align-items: center; padding: 20px; } 
.modal-overlay.active { display: flex; } 
.modal-content {  
    background: var(--bg-light); width: 100%; max-width: 420px; padding: 40px 30px; border-radius: 25px; 
    position: relative; text-align: center; color: var(--bg-dark); box-shadow: 0 20px 60px rgba(0,0,0,0.5); 
    max-height: 90vh; overflow-y: auto; scrollbar-width: none; 
} 
.modal-content::-webkit-scrollbar { display: none; } 
.close-btn { position: absolute; top: 15px; right: 25px; font-size: 2.5rem; cursor: pointer; color: #888; transition: 0.3s; } 
.close-btn:hover { color: var(--bg-dark); } 
.modal-header h3 { font-size: 1.15rem; margin-bottom: 15px; font-weight: 700; color: var(--bg-dark); } 

/* Жорстке вирівнювання ліворуч для всіх інпутів попапу */
.popup-form input,
.iti input, 
.iti input[type=text], 
.iti input[type=tel] { 
    width: 100%; 
    padding: 18px 20px 18px 60px !important; 
    border: 1px solid rgba(0,0,0,0.1); 
    border-radius: 12px; 
    font-size: 1rem; 
    font-family: 'Montserrat', sans-serif; 
    font-weight: 600; 
    text-align: left !important; 
    margin-bottom: 15px; 
    outline: none; 
    background: #fff; 
    color: var(--bg-dark); 
    transition: 0.3s; 
} 
.popup-form input:focus, .iti input:focus { 
    border-color: var(--gold); 
    box-shadow: 0 0 0 3px rgba(194,163,115,0.2); 
}
.email-wrapper, .phone-wrapper { margin-bottom: 15px; } 
.iti { width: 100%; display: block; } 
.iti__flag-container { border-radius: 12px 0 0 12px; } 
.iti__country-list { text-align: left; font-family: 'Montserrat', sans-serif; font-weight: 500; border-radius: 12px; max-width: 300px; color: var(--bg-dark); box-shadow: 0 10px 30px rgba(0,0,0,0.1); border: none; } 
.secure-text { margin-top: 20px; font-size: 0.85rem; font-weight: 600; color: #666; text-align: center;} 

/* ================= АДАПТИВНІСТЬ ДЛЯ МОБІЛЬНИХ (ВИПРАВЛЕНО) ================= */ 
@media (max-width: 768px) { 
    .sticky-card {
        top: calc(8vh + (var(--idx) * 15px)); 
        margin-bottom: 60px; /* Ще більше простору між картками на мобільному */
    }
    .hero h1 { font-size: 2.8rem; } 
    .typewriter-wrapper { min-height: 5rem; } /* Місце для двох рядків друку */
    .subtitle { font-size: 1.8rem; }
    
    .offer-title { font-size: 1.5rem; }
    .bot-pre-title { font-size: 0.95rem; }
    .bot-subtitle { font-size: 1.05rem; padding: 0 10px; }
    .perfect-price-row { gap: 10px; }
    .price-current { font-size: 3.5rem; } 
    .price-old { font-size: 1.3rem; } 
    
    .trust-grid, .pressure-container, .philosophy-bento, .pressure-bento { grid-template-columns: 1fr; text-align: center; gap: 20px;} 
    
    /* Блок Місії */
    .philosophy-bento .premium-card { padding: 30px 20px !important; }
    .big-statement { font-size: 2rem; }
    .learn-item { font-size: 1rem; padding: 15px; }
    
    /* Блок Світлани */
    .trust-image-wrapper { max-width: 100%; border: none; border-radius: 20px; }
    .trust-text-card { text-align: center; padding: 30px 20px !important;}
    .trust-text-card h2 { font-size: 1.8rem; }
    
    .pressure-ui-wrapper h2 { text-align: center; }
    
    .time-box { min-width: 70px; } 
    .modal-content { max-height: 85vh; padding: 35px 20px; } 
    .smart-sticky-bar { width: 95%; bottom: 15px; padding: 10px 15px; }
    .st-price { font-size: 1.1rem; }
    
    .clean-phone-wrapper { max-width: 260px; margin: 0 auto; }
    .bot-features-list { gap: 10px; padding: 0 10px; margin-top: 20px;}
    .feature-row { text-align: left; padding: 18px; gap: 15px;}
    .feature-row .f-text strong { font-size: 1rem; }
    
    .offer-card { padding: 40px 20px !important; }
} 

/* ================= АНІМАЦІЇ ПОЯВИ ================= */ 
[data-reveal] { opacity: 0; transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1); will-change: opacity, transform; }

.reveal-up { transform: translateY(30px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-zoom { transform: scale(0.95); translateY(20px); }

.active-reveal { opacity: 1 !important; transform: translate(0, 0) scale(1) !important; }

.delay-1 { transition-delay: 0.15s !important; } 
.delay-2 { transition-delay: 0.3s !important; }
.delay-3 { transition-delay: 0.45s !important; }
.delay-4 { transition-delay: 0.6s !important; }

/* ================= БЕДЖ "ОБМЕЖЕНА ПРОПОЗИЦІЯ" ================= */
.badge {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid var(--gold);
    border-radius: 50px; /* Робить рамку круглою, як кнопка */
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    background: rgba(194, 163, 115, 0.05); /* Ледь помітний золотий фон всередині */
}

/* Плавна анімація світіння */
.glow-pulse {
    animation: smooth-glow 2s ease-in-out infinite alternate;
}

@keyframes smooth-glow {
    0% {
        box-shadow: 0 0 5px rgba(194, 163, 115, 0.1), inset 0 0 2px rgba(194, 163, 115, 0.1);
        text-shadow: 0 0 2px rgba(194, 163, 115, 0.2);
        border-color: rgba(194, 163, 115, 0.4);
    }
    100% {
        box-shadow: 0 0 20px rgba(194, 163, 115, 0.7), inset 0 0 10px rgba(194, 163, 115, 0.3);
        text-shadow: 0 0 8px rgba(194, 163, 115, 0.8);
        border-color: var(--gold);
    }
}

/* ================= АБСТРАКТНІ ІКОНКИ (ВЕКТОР) ================= */
.icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 20px;
}
.icon-wrapper svg {
    color: var(--gold);
    stroke-width: 1.2px; /* Дуже тонкі, "дорогі" лінії */
    transition: transform 0.4s ease;
}
.premium-card:hover .icon-wrapper svg {
    transform: scale(1.05); /* Легке збільшення при наведенні */
}
.learn-item {
    display: flex;
    align-items: center;
    gap: 15px;
}
.learn-item svg {
    color: var(--gold);
    flex-shrink: 0;
    stroke-width: 1.5px;
}
