/* 
   Стиль для лендинга "Vibecoding"
   Темная тема с зелеными засветами и эффектами
*/

:root {
    --primary-color: #00d166; /* Ярко-зеленый акцент */
    --secondary-color: #ffffff;
    --bg-dark: #0a0a0a;
    --card-bg: rgba(0, 209, 102, 0.05); /* Базовый стиль как у тарифа "С Никитой" */
    --card-bg-hover: rgba(20, 20, 20, 0.95); /* Почти непрозрачный темно-серый */
    --text-main: #ffffff;
    --text-muted: #888888;
    --accent-glow: rgba(0, 209, 102, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Фоновая анимация */
.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, #111111 0%, #000000 100%);
    z-index: -3; /* Базовый слой */
}

.matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2; /* За засветами */
    opacity: 0.1; 
    filter: blur(1px); /* Уменьшил размытие */
    pointer-events: none;
}

.bg-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Поверх матрицы */
    overflow: hidden;
    filter: blur(80px);
    opacity: 0.4;
    pointer-events: none;
}

.blob {
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: move 25s infinite alternate;
    opacity: 0.2;
}

.blob-2 {
    background: #00ff88;
    left: 60%;
    top: 10%;
    width: 400px;
    height: 400px;
    animation-delay: -7s;
    animation-duration: 30s;
}

@keyframes move {
    from { transform: translate(-30%, -30%) rotate(0deg); }
    to { transform: translate(30%, 30%) rotate(360deg); }
}

/* Контейнер */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
    z-index: 1;
}

/* Секция Hero */
.hero {
    text-align: center;
    padding: 2rem 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero h1 {
    font-size: clamp(3rem, 8.5vw, 12rem); 
    font-weight: 900;
    letter-spacing: -4px;
    line-height: 0.9;
    margin-bottom: 2rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    text-shadow: 0 0 50px rgba(0, 209, 102, 0.4);
    width: 90vw;
    margin-left: calc(50% - 45vw);
    margin-right: calc(50% - 45vw);
    text-align: center;
    white-space: nowrap;
    position: relative;
    display: flex;
    justify-content: center;
}

/* Навигация */
.nav-links {
    position: absolute;
    top: 3rem;
    right: 3rem;
    z-index: 100;
    display: flex;
    gap: 3rem;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    font-weight: 700; /* Сделал толще */
}

.nav-link:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color);
}

.nav-link.active {
    color: var(--secondary-color);
    border-bottom: 2px solid var(--primary-color);
}

.status-badge {
    display: inline-block;
    padding: 0.8rem 2.2rem;
    border: 1px solid rgba(0, 209, 102, 0.3);
    border-radius: 50px;
    background: rgba(0, 209, 102, 0.1);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    box-shadow: 0 0 20px rgba(0, 209, 102, 0.1);
}

.hero-tagline {
    max-width: 640px;
    margin: 0 auto 2.5rem;
    font-size: 1.15rem;
    line-height: 1.65;
    color: var(--text-muted);
    text-align: center;
}

.timer-block {
    padding: 2.5rem 3.5rem; 
    border-radius: 24px;
    backdrop-filter: blur(10px);
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 320px;
}

.timer-label {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    font-weight: 700; /* Более толстый шрифт */
}

.timer-value {
    font-size: clamp(2.5rem, 8vw, 4.5rem); /* Увеличено */
    font-weight: 900;
    color: var(--secondary-color);
    font-family: 'Montserrat', sans-serif;
    display: flex;
    gap: 1.5rem;
}

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

.timer-num {
    display: inline-block;
    width: 2ch; /* Фиксированная ширина на 2 символа для стабильности */
    text-align: center;
    font-variant-numeric: tabular-nums;
}

.timer-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-top: 0.2rem;
    letter-spacing: 1px;
}

/* Секция "Что ты сделаешь" */
.section-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 4rem;
    text-transform: uppercase;
    text-align: center;
}

.highlight {
    color: var(--primary-color);
    text-shadow: 0 0 15px rgba(0, 209, 102, 0.3);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 6rem;
}

.timer-block, .feature-item, .price-card, .manager-block-unified {
    background: var(--card-bg);
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(0, 209, 102, 0.1);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.timer-block:hover, .feature-item:hover, .price-card:hover, .faq-item:hover, .manager-block-unified:hover {
    border-color: var(--primary-color);
    background: var(--card-bg-hover);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 209, 102, 0.2);
}

.feature-item {
    display: flex;
    align-items: stretch; /* Растягиваем чтобы номер занимал всю высоту */
    gap: 3rem;
    padding: 3rem;
    border-radius: 30px;
    overflow: hidden;
}

.feature-item:hover {
    /* Стили выше через групповой селектор */
}

.feature-number {
    font-size: clamp(6rem, 15vw, 12rem); /* Огромные цифры */
    font-weight: 900;
    line-height: 1; /* Вернул 1 для лучшей центровки */
    color: var(--primary-color);
    opacity: 0.9;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.feature-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

.feature-content h3 {
    font-size: clamp(1.4rem, 4vw, 2rem);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.feature-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.btn-example {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background: rgba(255, 255, 255, 0.05);
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 700;
    border-radius: 12px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    align-self: flex-start;
}

.btn-example:hover {
    background: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Секция Тарифы */
/* Блок с ценами видим */

.pricing-stack {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 6rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.price-card {
    padding: 3rem;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
}

.price-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.price-card-cta {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.btn-beru {
    padding: 0.9rem 2.2rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
    background: var(--primary-color);
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 209, 102, 0.3);
    font-family: inherit;
}

.btn-beru:hover {
    background: #00ef75;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 209, 102, 0.4);
}

.price-card:hover {
    /* Стили выше через групповой селектор */
}

.price-card.simple {
    border: 1px solid rgba(255, 255, 255, 0.1); /* Тонкий серый ободок */
    box-shadow: none;
    background: rgba(255, 255, 255, 0.03);
}

.price-card.simple:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: var(--card-bg-hover);
}

.price-card.popular {
    /* Стили теперь общие для всех, кроме simple */
}

.price-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.price-info p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.4;
}

.price-value {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    white-space: nowrap;
}

/* Кнопки */
.btn-cta {
    display: inline-block;
    padding: 1.5rem 4rem;
    background: var(--primary-color);
    color: #000;
    text-decoration: none;
    font-weight: 900;
    border-radius: 20px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 209, 102, 0.3);
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
}

.btn-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 209, 102, 0.5);
    background: #00ef75;
}

/* Попап записи на интенсив */
.popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(0px);
}

.popup-overlay.is-open {
    opacity: 1;
    visibility: visible;
    backdrop-filter: blur(12px);
}

.popup-overlay.is-open .popup-card {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    cursor: pointer;
}

.popup-card {
    position: relative;
    width: 100%;
    max-width: 420px;
    padding: 3rem 2.5rem 2.5rem;
    border-radius: 32px;
    background: linear-gradient(165deg, #111111 0%, #050505 100%);
    border: 2px solid var(--primary-color);
    box-shadow: 
        0 0 60px rgba(0, 0, 0, 0.8),
        0 0 30px rgba(0, 209, 102, 0.1);
    transform: translateY(20px) scale(0.98);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.popup-header {
    text-align: center;
    margin-bottom: 2rem;
}

.popup-icon-wrapper {
    width: 64px;
    height: 64px;
    background: rgba(0, 209, 102, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 1px solid rgba(0, 209, 102, 0.2);
}

.popup-header-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.popup-title {
    font-size: 1.6rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-color);
    line-height: 1.2;
}

.popup-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-muted);
    text-align: center;
}

.popup-text + .popup-text {
    margin-top: 1.25rem;
}

.popup-footer {
    margin-top: 2.5rem;
    width: 100%;
    display: flex;
    justify-content: center;
}

.popup-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    max-width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 18px;
    box-sizing: border-box;
    text-align: center;
    line-height: 1.2;
}

.popup-btn-text {
    /* white-space: nowrap; -- Убрал, чтобы текст мог переноситься если совсем узко */
}

.popup-btn:hover {
    transform: scale(1.02);
}

.popup-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.2s ease;
    z-index: 10;
}

.popup-close:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

@media (max-width: 480px) {
    .popup-overlay {
        padding: 1rem;
    }
    .popup-card {
        padding: 2.5rem 1.5rem 2rem;
        border-radius: 28px;
    }
    .popup-icon-wrapper {
        width: 54px;
        height: 54px;
        margin-bottom: 1rem;
    }
    .popup-title {
        font-size: 1.3rem;
    }
    .popup-text {
        font-size: 0.95rem;
    }
    .popup-btn {
        padding: 1rem 2.2rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 380px) {
    .popup-overlay {
        padding: 0.75rem;
    }
    .popup-card {
        padding: 1.75rem 1rem 1.5rem;
    }
    .popup-title {
        font-size: 1.2rem;
    }
    .popup-btn {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
    }
}

/* FAQ */
.faq-section {
    max-width: 800px;
    margin: 0 auto 6rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02); /* Более нейтральный фон */
    border: 1px solid rgba(0, 209, 102, 0.3); /* Тоньше и прозрачнее граница */
    box-shadow: none; /* Убрал свечение по умолчанию */
    padding: 1.5rem 2rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    text-align: left;
    cursor: pointer;
    overflow: hidden;
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 209, 102, 0.1);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--secondary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    color: var(--primary-color);
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1.05rem;
    max-height: 0;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    margin-top: 1.5rem;
}

.manager-info-footer {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
}

/* Блок менеджера (стиль по схеме) */
.manager-block-unified {
    margin-top: 4rem;
    border-radius: 30px;
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.manager-logo-wrapper {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.manager-logo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(0, 209, 102, 0.2));
}

.manager-details {
    flex-grow: 1;
}

.manager-details p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.manager-details .note {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 1rem;
    display: block;
}

/* Кому подходит интенсив */
.who-fits-block {
    margin-top: 4rem;
    padding: 2.5rem 3rem;
    border-radius: 24px;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.who-fits-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    text-align: center;
}

.who-fits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.who-fits-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 1.25rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.who-fits-item.highlight {
    border-color: rgba(0, 209, 102, 0.4);
    background: rgba(0, 209, 102, 0.08);
}

.who-fits-label {
    font-size: 1.05rem;
    color: var(--text-main);
}

.who-fits-score {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.who-fits-item.highlight .who-fits-score {
    text-shadow: 0 0 12px rgba(0, 209, 102, 0.4);
}

.who-fits-footnotes {
    margin-top: 2rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.who-fits-footnotes .footnote {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.who-fits-footnotes .footnote:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .manager-block-unified {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        gap: 1.5rem;
    }
    .manager-logo-wrapper {
        width: 120px;
        height: 120px;
    }
}

/* Программа интенсива */
.program-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.program-stage-card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 209, 102, 0.2);
    border-radius: 30px;
    padding: 2.5rem;
    transition: all 0.4s ease;
}

.program-stage-card:hover {
    border-color: var(--primary-color);
    background: var(--card-bg-hover);
    transform: translateY(-5px);
}

.stage-header {
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 209, 102, 0.2);
    padding-bottom: 1rem;
}

.stage-number {
    display: block;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.stage-header h3 {
    font-size: 1.8rem;
    text-transform: uppercase;
    font-weight: 900;
}

.lessons-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.lessons-list li {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.lesson-num {
    color: var(--primary-color);
    font-weight: 900;
    font-size: 1rem;
    opacity: 0.5;
    margin-top: 0.2rem;
}

.lessons-list p {
    font-size: 1rem;
    line-height: 1.4;
    color: var(--secondary-color);
}

.lessons-list small {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.program-footer-note {
    text-align: center;
    max-width: 800px;
    margin: 4rem auto 0;
    padding: 2rem;
}

.program-footer-note p {
    font-size: 1.2rem;
    color: var(--secondary-color);
    line-height: 1.6;
}

@media (max-width: 850px) {
    .program-grid {
        grid-template-columns: 1fr;
    }
}

/* Анимация */
.fade-in {
    animation: fadeIn 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

footer {
    text-align: center;
    color: rgba(255, 255, 255, 0.4); /* Более белый текст */
    font-size: 0.8rem;
    padding: 4rem 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 2rem 1.2rem;
    }
    .hero h1 {
        font-size: clamp(2.5rem, 12vw, 6rem);
        letter-spacing: -1px;
        white-space: normal; /* Разрешаем перенос если совсем узко */
        line-height: 1.1;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    .status-badge {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    .hero-tagline {
        font-size: 1rem;
        padding: 0 0.5rem;
        margin-bottom: 1.5rem;
    }
    .who-fits-block {
        padding: 1.5rem 1.25rem;
        margin-top: 2.5rem;
    }
    .who-fits-footnotes {
        padding: 0 0.5rem;
        margin-top: 1.5rem;
    }
    .who-fits-footnotes .footnote {
        font-size: 0.85rem;
    }
    .who-fits-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .timer-block {
        padding: 1.5rem 1rem;
        min-width: 0;
        width: 100%;
        margin-bottom: 2rem;
    }
    .timer-value {
        gap: 0.5rem;
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }
    .timer-label {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }
    .section-title {
        margin-bottom: 2.5rem;
    }
    .feature-item {
        flex-direction: column; /* На узких экранах лучше вертикально */
        padding: 2rem 1.5rem;
        gap: 1rem;
        text-align: center;
    }
    .feature-number {
        font-size: 5rem;
        height: auto;
    }
    .feature-content {
        align-items: center;
    }
    .btn-example {
        align-self: center;
    }
    .price-card {
        flex-direction: column;
        text-align: left;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }
    .price-card-top {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    .price-card-cta {
        justify-content: flex-start;
    }
    .btn-beru {
        padding: 0.85rem 2rem;
        font-size: 0.95rem;
    }
    .price-value {
        font-size: 2.5rem;
    }
    .program-stage-card {
        padding: 1.5rem;
        border-radius: 20px;
    }
    .stage-header h3 {
        font-size: 1.4rem;
    }
    .lessons-list {
        gap: 1.2rem;
    }
    .lessons-list p {
        font-size: 0.95rem;
    }
    .program-footer-note {
        padding: 1rem 0;
        margin-top: 2rem;
    }
    .program-footer-note p {
        font-size: 1rem;
    }
    .manager-block-unified {
        padding: 2rem 1.5rem;
    }
    .faq-question {
        font-size: 1.05rem;
    }
    .faq-answer {
        font-size: 0.95rem;
    }
}

/* Фикс для совсем маленьких экранов типа iPhone SE / Galaxy S8 */
@media (max-width: 380px) {
    .timer-value {
        gap: 0.3rem;
    }
    .timer-num {
        font-size: 1.8rem;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .price-card {
        padding: 1.5rem 1.25rem;
    }
    .btn-beru {
        padding: 0.8rem 1.75rem;
        font-size: 0.9rem;
    }
}
