
        :root {

            /* === НАСТРОЙКИ ТЕМЫ (DARK) === */

            --bg-page: #111111;           

            --nav-text: #E6E6E6;          

            --noise-opacity: 0.03;        

            --footer-text: #666666;       

            

            /* Константы */

            --bg-card: #F9F7F1;

            --color-text-card: #1A1A1A;

            --card-radius: 32px;

            --btn-radius: 8px;

            --font-main: 'IBM Plex Mono', monospace;

            --color-accent: #EFFF3E; /* Желтый акцент */

        }

        /* === СВЕТЛАЯ ТЕМА (LIGHT) === */

        body.light-mode {

            --bg-page: #E8E6E1;           

            --nav-text: #1A1A1A;          

            --noise-opacity: 0.05;        

            --footer-text: #444444;

        }

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

        body {

            font-family: var(--font-main);

            background-color: var(--bg-page);

            color: var(--color-text-card);

            min-height: 100vh;

            padding: 40px 20px;

            display: flex;

            justify-content: center;

            align-items: flex-start;

            transition: background-color 0.4s ease;

            cursor: auto;

        }

        

        /* Шум фона */

        body::before {

            content: "";

            position: fixed;

            top: 0; left: 0; width: 100%; height: 100%;

            background-color: var(--bg-page);

            z-index: -2;

            transition: background-color 0.4s ease;

        }

        body::after {

            content: "";

            position: fixed;

            top: 0; left: 0; width: 100%; height: 100%;

            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='1'/%3E%3C/svg%3E");

            opacity: var(--noise-opacity);

            pointer-events: none;

            z-index: -1;

            transition: opacity 0.4s ease;

        }

        .layout-column {

            width: 100%;

            max-width: 1100px;

            display: flex;

            flex-direction: column;

            gap: 32px;

            position: relative;

            z-index: 1;

            padding-bottom: 60px;

        }

        /* === КАРТОЧКИ === */

        .app-card {

            background-color: #F7F5F0; 

            background-repeat: repeat;

            border-radius: var(--card-radius);

            padding: 60px; 

            box-shadow: 0 20px 60px rgba(0,0,0,0.2); 

            position: relative;

            overflow: visible; 

            transition: box-shadow 0.4s ease, transform 0.4s ease;

            opacity: 0;

            transform: translateY(40px);

            transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);

            z-index: 1;

        }

        .app-card:hover { z-index: 10; }

        .app-card.is-visible { opacity: 1; transform: translateY(0); }

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

        .nav-bar {

            display: flex;

            justify-content: space-between;

            align-items: center;

            margin-bottom: 10px;

            padding: 0 20px;

        }

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

        .nav-right {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        /* Бургер мобильного меню (скрыт на десктопе) */
        .nav-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 42px;
            height: 42px;
            padding: 0;
            border: none;
            background: transparent;
            cursor: pointer;
            -webkit-tap-highlight-color: transparent;
        }
        .nav-toggle span {
            display: block;
            width: 22px;
            height: 2px;
            margin: 0 auto;
            background: var(--nav-text);
            border-radius: 2px;
            transition: transform 0.3s ease, opacity 0.2s ease;
        }
        body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
        body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .nav-menu a {
            color: var(--nav-text);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: color 0.3s ease, opacity 0.3s ease;
            opacity: 0.8;
        }

        .nav-menu a:hover {
            opacity: 1;
            color: var(--nav-text);
        }

        .brand-logo {

            font-weight: 700;

            font-size: 16px;

            display: flex;

            align-items: baseline;

            gap: 10px;

            color: var(--nav-text); 

            text-decoration: none;

            letter-spacing: -0.03em;

            text-transform: uppercase;

            transition: color 0.4s ease;

        }

        /* ТУМБЛЕР */

        .theme-toggle {

            background: none;

            border: 1px solid var(--nav-text);

            color: var(--nav-text);

            cursor: pointer;

            padding: 8px;

            border-radius: 50%;

            width: 40px;

            height: 40px;

            display: flex;

            align-items: center;

            justify-content: center;

            transition: all 0.3s ease;

            position: relative;

            overflow: hidden;

        }

        .theme-toggle:hover { background: rgba(128,128,128, 0.2); }

        .icon-sun, .icon-moon { position: absolute; transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55); }

        .icon-sun { transform: translateY(100px) rotate(90deg); opacity: 0; }

        .icon-moon { transform: translateY(0) rotate(0); opacity: 1; }

        body.light-mode .icon-sun { transform: translateY(0) rotate(0); opacity: 1; }

        body.light-mode .icon-moon { transform: translateY(-100px) rotate(-90deg); opacity: 0; }

        /* HERO SECTION */

        .hero-split {

            display: grid;

            grid-template-columns: 1.1fr 1fr; 

            gap: 60px;

            align-items: center;

        }

        h1 {

            font-size: 42px;

            line-height: 1.15;

            font-weight: 600;

            letter-spacing: -0.03em;

            margin-bottom: 24px;

            color: var(--color-text-card);

        }

        .hero-sub {

            font-size: 16px;

            line-height: 1.6;

            color: #444;

            margin-bottom: 40px;

            max-width: 480px;

        }

        /* === БЛОК С ПРИВЕТСТВИЕМ === */

        .intro-split {

            display: grid;

            grid-template-columns: 1.5fr 1fr;

            gap: 40px;

            align-items: center;

        }

        .intro-text-block h2 {

            font-size: 28px;

            margin-bottom: 24px;

            font-weight: 600;

            line-height: 1.3;

        }

        .intro-text-block p {

            font-size: 16px;

            line-height: 1.8;

            margin-bottom: 20px;

            color: #333;

        }

        .intro-text-block p:last-child { margin-bottom: 0; font-weight: 600; }

        /* ИЗОБРАЖЕНИЯ */

        .illustration-wrapper {

            display: flex;

            flex-direction: column;

            align-items: flex-end;

            position: relative;

            justify-content: flex-start;

        }

        .illustration-wrapper .sketch-img {

            align-self: center;

            margin-top: 0;

        }

        .sketch-img {

            width: 100%;

            height: auto;

            max-width: 550px;

            mix-blend-mode: multiply; 

            filter: contrast(1.1) sepia(0.2); 

        }

        /* ИНТЕРАКТИВНЫЙ РЮКЗАК И ПАСХАЛКА */

        #backpack {

            transition: transform 0.1s ease-out; 

            cursor: grab;

            position: relative;

            z-index: 1;

        }

        #backpack:active { cursor: grabbing; }

        #sale-item {

            position: absolute;

            width: 120px;

            top: 50%;

            left: 50%;

            transform: translate(-50%, -50%) scale(0);

            z-index: 2;

            cursor: pointer;

            pointer-events: none; 

            opacity: 0;

            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

        }

        #sale-item.popped {

            transform: translate(-50%, -50%) scale(1) rotate(15deg);

            opacity: 1;

            pointer-events: auto;

        }

        #sale-item:hover { transform: translate(-50%, -50%) scale(1.1) rotate(15deg); }

        /* === МОДАЛЬНОЕ ОКНО === */

        .modal-overlay {

            position: fixed;

            top: 0; left: 0; width: 100%; height: 100%;

            background: rgba(0, 0, 0, 0.6);

            backdrop-filter: blur(5px);

            z-index: 100;

            display: flex;

            align-items: center;

            justify-content: center;

            opacity: 0;

            visibility: hidden;

            transition: all 0.3s ease;

        }

        .modal-overlay.is-open { opacity: 1; visibility: visible; }

        

        .modal-content {

            background-color: #F7F5F0;

            padding: 40px;

            border-radius: 24px;

            max-width: 500px;

            width: 90%;

            text-align: center;

            border: 2px solid var(--color-text-card);

            transform: scale(0.8);

            transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);

            color: var(--color-text-card);

        }

        .modal-overlay.is-open .modal-content { transform: scale(1); }

        

        .promo-code {

            display: inline-block;

            background: var(--color-text-card);

            color: #fff;

            padding: 8px 16px;

            font-weight: 700;

            font-size: 18px;

            margin-top: 16px;

            border-radius: 6px;

            letter-spacing: 0.05em;

        }

        .author-img {

            width: 120px; height: 120px;

            border-radius: 50%;

            object-fit: cover;

            filter: grayscale(100%) contrast(1.1);

            background: #dcdcdc;

            border: 2px solid rgba(0,0,0,0.05);

        }

        /* МОДУЛИ */

        .module-layout {

            display: grid;

            grid-template-columns: 1fr 1.1fr; 

            gap: 60px;

            align-items: center;

        }

        .module-header { margin-bottom: 24px; }

        .module-meta-row {

            display: flex;

            align-items: center;

            gap: 12px;

            margin-bottom: 12px;

            flex-wrap: wrap;

        }

        .module-label {

            font-size: 11px;

            font-weight: 600;

            text-transform: uppercase;

            letter-spacing: 0.05em;

            display: inline-block;

            background: rgba(0,0,0,0.06);

            padding: 4px 8px;

            border-radius: 4px;

            color: #555;

        }

        .module-meta-right {

            position: absolute;

            top: 70px;

            right: 60px;

            display: flex;

            flex-direction: row;

            align-items: center;

            gap: 16px;

            z-index: 2;

        }

        .module-meta-inline {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
            flex-wrap: wrap;
        }

        .module-label-inline {
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            display: inline-block;
            background: rgba(0,0,0,0.06);
            padding: 6px 12px;
            border-radius: 100px;
            color: #555;
        }

        .duration-badge-inline {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(0,0,0,0.03);
            padding: 4px 10px;
            border-radius: 100px;
            font-size: 12px;
            font-weight: 600;
            color: #444;
            border: 1px solid rgba(0,0,0,0.1);
        }

        .duration-badge-inline svg {
            width: 14px;
            height: 14px;
            stroke-width: 2.5;
        }

        .module-label-right {

            display: inline-flex;

            align-items: center;

            gap: 6px;

            background: rgba(0,0,0,0.03);

            padding: 4px 10px;

            border-radius: 100px;

            font-size: 12px;

            font-weight: 600;

            text-transform: uppercase;

            letter-spacing: 0.05em;

            color: #444;

            border: 1px solid rgba(0,0,0,0.1);

        }

        .duration-badge-right {

            display: inline-flex;

            align-items: center;

            gap: 6px;

            background: rgba(0,0,0,0.03);

            padding: 4px 10px;

            border-radius: 100px;

            font-size: 12px;

            font-weight: 600;

            color: #444;

            border: 1px solid rgba(0,0,0,0.1);

        }

        .duration-badge-right svg { width: 14px; height: 14px; stroke-width: 2.5; }

        .start-date-badge-right {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(0,0,0,0.03);
            padding: 4px 10px;
            border-radius: 100px;
            font-size: 12px;
            font-weight: 600;
            color: #444;
            border: 1px solid rgba(0,0,0,0.1);
        }

        .duration-badge {

            display: inline-flex;

            align-items: center;

            gap: 6px;

            background: rgba(0,0,0,0.03);

            padding: 4px 10px;

            border-radius: 100px;

            font-size: 12px;

            font-weight: 600;

            color: #444;

            border: 1px solid rgba(0,0,0,0.1);

        }

        .duration-badge svg { width: 14px; height: 14px; stroke-width: 2.5; }

        .module-title { font-size: 32px; font-weight: 600; margin-bottom: 16px; letter-spacing: -0.03em; }

        .custom-list { list-style: none; margin: 20px 0 32px 0; }

        .custom-list li {

            margin-bottom: 16px;

            padding-left: 0;

            font-size: 15px;

            color: #333;

            display: flex;

            align-items: center;

            gap: 12px;

            font-weight: 500;

        }

        .custom-list li::before {

            content: '→';

            font-weight: bold;

            color: var(--color-text-card);

        }

        .custom-list li.no-arrow::before { content: none; }

        .custom-list li.no-arrow { opacity: 0.6; font-style: italic; }

        /* === УРОВНИ СЛОЖНОСТИ === */

        .level-section { margin-top: 24px; margin-bottom: 24px; position: relative; }

        .level-title {

            font-size: 12px;

            font-weight: 600;

            color: #666;

            margin-bottom: 12px;

            text-transform: uppercase;

            letter-spacing: 0.05em;

        }

        .level-dots { display: flex; gap: 12px; position: relative; margin-top: 8px; }

        /* Фиксированное окно tooltip для мобильной версии (скрыто по умолчанию) */
        .level-tooltip-fixed {
            display: none;
        }

        .lvl-dot {

            width: 18px;

            height: 18px;

            border: 1px solid var(--color-text-card);

            border-radius: 50%;

            position: relative;

            cursor: help;

            transition: all 0.2s;

        }

        .lvl-dot.filled { background: var(--color-text-card); box-shadow: 0 2px 4px rgba(0,0,0,0.1); }

        /* Иконка галочки для черных кружков */
        .lvl-dot.filled::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 8px;
            height: 6px;
            border-left: 2px solid #F7F5F0;
            border-bottom: 2px solid #F7F5F0;
            transform: translate(-50%, -60%) rotate(-45deg);
        }

        /* Иконка крестика для белых кружков */
        .lvl-dot:not(.filled)::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 8px;
            height: 2px;
            background: var(--color-text-card);
            transform: translate(-50%, -50%) rotate(45deg);
        }

        .lvl-dot:not(.filled)::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 8px;
            height: 2px;
            background: var(--color-text-card);
            transform: translate(-50%, -50%) rotate(-45deg);
        }

        .lvl-tooltip {

            visibility: hidden;

            opacity: 0;

            width: 240px;

            background-color: #F7F5F0;

            color: var(--color-text-card);

            border: 1px solid var(--color-text-card);

            text-align: left;

            padding: 12px;

            border-radius: 8px;

            position: absolute;

            z-index: 100; 

            bottom: 150%; 

            left: 50%;

            transform: translateX(-50%) translateY(10px);

            font-size: 11px;

            line-height: 1.5;

            font-weight: 500;

            box-shadow: 0 10px 25px rgba(0,0,0,0.2);

            transition: all 0.2s ease;

            pointer-events: none;

        }

        .lvl-tooltip::after {

            content: "";

            position: absolute;

            top: 100%;

            left: 50%;

            margin-left: -6px;

            border-width: 6px;

            border-style: solid;

            border-color: var(--color-text-card) transparent transparent transparent;

        }

        .lvl-dot:hover .lvl-tooltip { visibility: visible; opacity: 1; transform: translateX(-50%) translateY(0); }

        /* КНОПКИ */

        .btn-program {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-top: 20px;
            background: transparent;
            border: 1px solid rgba(0,0,0,0.2);
            color: var(--color-text-card);
            padding: 8px 16px;
            font-size: 12px;
            font-weight: 600;
            font-family: var(--font-main);
            border-radius: 6px;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            transition: 0.2s;
            text-decoration: none;
        }

        .btn-program:hover { border-color: var(--color-text-card); background: rgba(0,0,0,0.05); }

        /* Иконка +/− в кнопке программы */
        .program-icon {
            width: 16px;
            height: 16px;
            position: relative;
            flex-shrink: 0;
        }

        .program-icon::before, .program-icon::after {
            content: '';
            position: absolute;
            background: var(--color-text-card);
            transition: transform 0.3s ease;
        }

        .program-icon::before {
            width: 12px; height: 2px;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
        }

        .program-icon::after {
            width: 2px; height: 12px;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
        }

        .btn-program.is-open .program-icon::after {
            transform: translate(-50%, -50%) rotate(90deg);
            opacity: 0;
        }

        /* Аккордеон программы модуля */
        .program-accordion {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .program-accordion.is-open {
            max-height: 1500px;
            margin-top: 32px;
            padding-top: 32px;
            border-top: 1px solid rgba(0,0,0,0.1);
        }

        .program-accordion-inner {
            opacity: 0;
            transform: translateY(-10px);
            transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
        }

        .program-accordion.is-open .program-accordion-inner {
            opacity: 1;
            transform: translateY(0);
        }

        /* Бейджи формата */
        .program-format-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 24px;
        }

        .format-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(0,0,0,0.03);
            padding: 6px 12px;
            border-radius: 100px;
            font-size: 12px;
            font-weight: 600;
            color: #444;
            border: 1px solid rgba(0,0,0,0.1);
        }

        /* Карточки недель */
        .program-weeks {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-bottom: 24px;
        }

        .program-week-card {
            border: 1px solid rgba(0,0,0,0.1);
            border-radius: 12px;
            padding: 18px;
            background: rgba(255,255,255,0.3);
            transition: border-color 0.2s ease;
        }

        .program-week-card:hover {
            border-color: rgba(0,0,0,0.2);
        }

        .week-header {
            display: flex;
            align-items: baseline;
            gap: 10px;
            margin-bottom: 8px;
        }

        .week-label {
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: #666;
        }

        .week-title {
            font-size: 15px;
            font-weight: 600;
            color: var(--color-text-card);
        }

        .week-description {
            font-size: 13px;
            line-height: 1.6;
            color: #444;
            margin: 0;
        }

        /* Результаты + формат в ряд */
        .program-bottom-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        /* Блок результатов */
        .program-results {
            padding: 20px;
            background: rgba(255,255,255,0.3);
            border-radius: 12px;
            border: 1px solid rgba(0,0,0,0.1);
        }

        .results-title {
            font-size: 15px;
            font-weight: 600;
            color: var(--color-text-card);
            margin: 0 0 12px 0;
        }

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

        .results-list li {
            font-size: 13px;
            line-height: 1.6;
            color: #333;
            padding-left: 20px;
            position: relative;
        }

        .results-list li::before {
            content: '→';
            position: absolute;
            left: 0;
            font-weight: bold;
            color: var(--color-text-card);
        }

        /* Блок формата обучения */
        .program-format-details {
            padding: 18px;
            border: 1px solid rgba(0,0,0,0.1);
            border-radius: 12px;
        }

        .format-details-title {
            font-size: 15px;
            font-weight: 600;
            color: var(--color-text-card);
            margin: 0 0 14px 0;
        }

        .format-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px 20px;
        }

        .format-item {
            display: flex;
            flex-direction: column;
            gap: 3px;
        }

        .format-item-label {
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: #666;
        }

        .format-item-value {
            font-size: 13px;
            font-weight: 400;
            color: #444;
            line-height: 1.4;
        }

        .pricing-cta {

            margin-top: 40px;

            padding-top: 30px;

            border-top: 1px solid rgba(0,0,0,0.1);

            display: flex;

            align-items: center;

            justify-content: space-between;

        }

        .btn-outline {

            display: inline-flex;

            align-items: center;

            justify-content: center;

            gap: 8px;

            padding: 18px 36px;

            border-radius: var(--btn-radius);

            font-weight: 600;

            font-size: 14px;

            text-decoration: none;

            cursor: pointer;

            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);

            text-align: center;

            background: transparent;

            border: 2px solid var(--color-text-card);

            color: var(--color-text-card);

            text-transform: uppercase;

            letter-spacing: 0.05em;

        }

        .btn-outline:hover {

            background: var(--color-accent);

            color: #1A1A1A;

            border-color: #1A1A1A;

            transform: translateY(-4px) rotate(-1deg) scale(1.02);

            box-shadow: 0 8px 20px rgba(239, 255, 62, 0.25);

        }

        .waitlist-text {

            font-size: 12px;

            line-height: 1.4;

            color: #555;

            max-width: 220px;

            font-weight: 500;

        }

        .dev-sticker {

            display: inline-block;

            background-color: var(--color-accent); 

            color: #1A1A1A;

            font-size: 11px;

            font-weight: 700;

            padding: 6px 12px;

            border: 1px solid #1A1A1A;

            box-shadow: 2px 2px 0px rgba(0,0,0,0.2);

            transform: rotate(-2deg);

            margin-bottom: 12px;

            text-transform: uppercase;

            letter-spacing: 0.05em;

        }

        /* ЗАБЛЮРЕННЫЙ БЛОК (TEPER FULL VISIBLE) */

        .locked-wrapper { position: relative; }

        

        .content-blur {

            opacity: 1; /* Полностью видимый */

            filter: none; /* Без фильтров */

        }

        

        .lock-overlay {

            position: absolute;

            top: 0; left: 0; width: 100%; height: 100%;

            display: flex;

            flex-direction: column; 

            align-items: center;

            justify-content: center;

            z-index: 2;

            background: transparent; /* Прозрачный оверлей */

            pointer-events: none; 

        }

        

        /* FAQ ACCORDION */

        .faq-list { column-count: 2; column-gap: 24px; margin-top: 32px; }
        .faq-list .faq-item { break-inside: avoid; -webkit-column-break-inside: avoid; page-break-inside: avoid; margin-bottom: 12px; display: block; }
        @media (max-width: 900px) {
            .faq-list { column-count: 1; }
        }

        .faq-item {

            border: 1px solid rgba(0,0,0,0.1);

            border-radius: 12px;

            overflow: hidden;

            transition: all 0.3s ease;

        }

        .faq-item:hover { border-color: rgba(0,0,0,0.2); }

        .faq-question {

            display: flex;

            justify-content: space-between;

            align-items: center;

            padding: 20px 24px;

            cursor: pointer;

            font-size: 15px;

            font-weight: 600;

            color: var(--color-text-card);

            background: transparent;

            transition: background 0.2s ease;

        }

        .faq-question:hover { background: rgba(0,0,0,0.02); }

        .faq-icon {

            width: 24px;

            height: 24px;

            position: relative;

            flex-shrink: 0;

            margin-left: 16px;

        }

        .faq-icon::before, .faq-icon::after {

            content: '';

            position: absolute;

            background: var(--color-text-card);

            transition: transform 0.3s ease;

        }

        .faq-icon::before {

            width: 14px; height: 2px;

            top: 50%; left: 50%;

            transform: translate(-50%, -50%);

        }

        .faq-icon::after {

            width: 2px; height: 14px;

            top: 50%; left: 50%;

            transform: translate(-50%, -50%);

        }

        .faq-item.is-open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }

        .faq-answer {

            max-height: 0;

            overflow: hidden;

            transition: max-height 0.4s ease, padding 0.3s ease;

        }

        .faq-answer-inner {

            padding: 0 24px 20px 24px;

            font-size: 14px;

            line-height: 1.7;

            color: #444;

        }

        .faq-item.is-open .faq-answer { max-height: 300px; }

        /* СТИЛИ ДЛЯ ОТЗЫВОВ */

        .reviews-carousel {
            position: relative;
            margin-top: 32px;
        }

        .reviews-grid {
            display: flex;
            gap: 40px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            padding-bottom: 8px;
        }

        .reviews-grid::-webkit-scrollbar { display: none; }

        .review-item {
            display: flex;
            flex-direction: column;
            min-width: calc(50% - 20px);
            max-width: calc(50% - 20px);
            flex-shrink: 0;
            scroll-snap-align: start;
        }

        .review-text {

            font-size: 14px;

            line-height: 1.6;

            color: #333;

            margin-bottom: 24px;

            font-style: italic;

            flex-grow: 1;

            min-height: 80px;

        }

        .review-text::before {

            content: "«";

            font-size: 24px;

            color: var(--color-accent);

            margin-right: 4px;

            line-height: 0;

            vertical-align: -4px;

        }

        .review-author {

            display: flex;

            align-items: center;

            gap: 16px;

            border-top: 1px solid rgba(0,0,0,0.1);

            padding-top: 16px;

        }

        .review-avatar {

            width: 48px;

            height: 48px;

            border-radius: 50%;

            object-fit: cover;

            filter: grayscale(100%) contrast(1.1);

            border: 1px solid rgba(0,0,0,0.1);

            background: #ddd;

        }

        .review-name { font-size: 13px; font-weight: 700; margin-bottom: 4px; }

        .review-role { font-size: 11px; color: #666; line-height: 1.3; }

        /* Навигация карусели */
        .reviews-nav {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 16px;
            margin-top: 24px;
        }

        .reviews-nav-btn {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 1px solid rgba(0,0,0,0.15);
            background: #fff;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
            color: #333;
            font-size: 16px;
        }

        .reviews-nav-btn:hover {
            background: #333;
            color: #fff;
            border-color: #333;
        }

        .reviews-dots {
            display: flex;
            gap: 8px;
        }

        .reviews-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(0,0,0,0.15);
            border: none;
            cursor: pointer;
            padding: 0;
            transition: all 0.3s;
        }

        .reviews-dot.active {
            background: #333;
            transform: scale(1.3);
        }

        /* АВТОР И ФУТЕР */

        .author-flex { display: flex; align-items: center; gap: 40px; }

        .footer-row {

            display: flex;

            justify-content: center;

            gap: 24px;

            margin-top: 40px;

            padding-bottom: 20px;

            font-size: 12px;

            flex-wrap: wrap;

            text-align: center;

        }

        .footer-link {

            color: var(--footer-text);

            text-decoration: none;

            transition: 0.2s;

            border-bottom: 1px solid transparent;

        }

        .footer-link:hover { color: var(--nav-text); border-color: var(--nav-text); }

        .footer-copy { 

            color: var(--footer-text);

            display: block;

            width: 100%;

            margin-top: 12px;

            font-size: 11px;

            opacity: 0.7;

        }

        /* ПЛАНШЕТНАЯ ВЕРСИЯ */

        @media (max-width: 1024px) and (min-width: 769px) {

            .value-props-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }

        }

        /* ДЕСКТОПНАЯ ВЕРСИЯ - hover tooltip работает, клики отключены через JS */

        /* МОБИЛЬНАЯ ВЕРСИЯ */

        @media (max-width: 768px) {

            /* Навбар в обычном потоке; фиксируем только бургер сбоку,
               чтобы меню было заметно при скролле, но панель не висела целиком */
            .nav-toggle {
                display: flex;
                position: fixed;
                top: 26px;
                right: 16px;
                z-index: 300;
                width: 44px;
                height: 44px;
                background: var(--bg-page);
                border: 1px solid rgba(128, 128, 128, 0.3);
                border-radius: 12px;
                box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
            }

            /* Освобождаем место справа под плавающий бургер */
            .nav-right { margin-right: 50px; gap: 14px; }

            /* Кнопка темы компактнее — чтобы не перетягивала на себя акцент */
            .theme-toggle {
                width: 32px;
                height: 32px;
                padding: 6px;
                border-color: rgba(128, 128, 128, 0.45);
            }

            /* Выпадающее меню, привязанное к плавающему бургеру */
            .nav-menu {
                display: flex;
                flex-direction: column;
                align-items: stretch;
                gap: 0;
                position: fixed;
                top: 76px;
                right: 16px;
                left: auto;
                width: min(248px, 78vw);
                background: var(--bg-page);
                padding: 4px 20px;
                border: 1px solid rgba(128, 128, 128, 0.2);
                border-radius: 14px;
                box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
                z-index: 299;
                transform: translateY(-10px) scale(0.97);
                transform-origin: top right;
                opacity: 0;
                visibility: hidden;
                pointer-events: none;
                transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
            }
            body.nav-open .nav-menu {
                opacity: 1;
                visibility: visible;
                transform: none;
                pointer-events: auto;
            }
            .nav-menu a {
                display: block;
                width: 100%;
                padding: 13px 0;
                font-size: 15px;
                opacity: 1;
                border-bottom: 1px solid rgba(128, 128, 128, 0.13);
            }
            .nav-menu a:last-child { border-bottom: none; }

            /* iOS Safari: sepia-фильтр + multiply даёт жёлтую заливку на иллюстрациях.
               Убираем фильтр на мобильных (multiply оставляем — он нужен белым фонам).
               .price-block-illustration img — в своём @media (max-width:900px) ниже. */
            .sketch-img {
                filter: none;
            }

            .app-card { padding: 40px 24px; border-radius: 24px; }

            h1 { font-size: 36px; }

            .intro-split, .hero-split, .module-layout, .author-flex {

                grid-template-columns: 1fr;

                display: flex;

                flex-direction: column;

                gap: 40px;

            }

            .illustration-wrapper {

                align-items: center;

            }

            .module-meta-right {

                position: static;

                display: flex;

                flex-direction: column;

                align-items: flex-start;

                gap: 12px;

                margin-bottom: 20px;

                justify-content: flex-start;

            }

            .module-label-right {

                font-size: 11px;

                padding: 3px 8px;

            }

            .duration-badge-right {

                font-size: 11px;

                padding: 3px 8px;

            }

            .duration-badge-right svg {

                width: 12px;

                height: 12px;

            }

            .start-date-badge-right {

                font-size: 11px;

                padding: 3px 8px;

            }

            .intro-split { flex-direction: column-reverse; }

            .hero-split { flex-direction: column; } 

            .pricing-cta { flex-direction: column; align-items: flex-start; gap: 20px; }

            .footer-row { flex-direction: column; align-items: center; gap: 12px; }

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

            .lvl-tooltip { left: auto; right: 0; transform: translateY(10px); bottom: 120%; }

            .lvl-dot {
                width: 28px;
                height: 28px;
                cursor: pointer;
                touch-action: manipulation;
                position: relative;
            }

            /* Увеличенные иконки для мобильной версии */
            .lvl-dot.filled::after {
                width: 12px;
                height: 9px;
                border-left-width: 3px;
                border-bottom-width: 3px;
            }

            .lvl-dot:not(.filled)::before,
            .lvl-dot:not(.filled)::after {
                width: 12px;
                height: 3px;
            }

            /* Скрываем обычные tooltip в мобильной версии */
            .lvl-dot .lvl-tooltip {
                display: none;
            }

            /* Показываем фиксированное окно tooltip в мобильной версии - фиксировано над точками */
            .level-tooltip-fixed {
                display: block;
                position: absolute;
                bottom: auto;
                top: 0;
                left: 0;
                width: calc(100vw - 40px);
                max-width: 280px;
                margin: 0;
                background-color: #F7F5F0;
                color: var(--color-text-card);
                border: 1px solid var(--color-text-card);
                text-align: left;
                padding: 12px 14px;
                border-radius: 8px;
                font-size: 11px;
                line-height: 1.5;
                font-weight: 500;
                box-shadow: 0 10px 25px rgba(0,0,0,0.2);
                z-index: 1000;
                box-sizing: border-box;
                opacity: 0;
                visibility: hidden;
                transition: opacity 0.2s ease, visibility 0.2s ease;
                white-space: normal;
                word-wrap: break-word;
                overflow-wrap: break-word;
            }

            .level-tooltip-fixed.is-visible {
                opacity: 1;
                visibility: visible;
            }

            /* Стрелочка tooltip на нижней части блока, указывающая на точку (направлена вниз, узкая часть внизу) */
            .level-tooltip-arrow {
                position: absolute;
                top: 0;
                left: 0;
                width: 0;
                height: 0;
                border-left: 8px solid transparent;
                border-right: 8px solid transparent;
                border-top: 8px solid #000000;
                border-bottom: none;
                z-index: 1001;
                opacity: 0;
                visibility: hidden;
                transition: opacity 0.2s ease, visibility 0.2s ease;
                pointer-events: none;
            }

            .level-tooltip-fixed.is-visible ~ .level-tooltip-arrow,
            .level-tooltip-arrow.is-visible {
                opacity: 1;
                visibility: visible;
            }

            /* Убираем окрашивание точек при выборе - точки остаются без изменений */

            /* Уменьшение расстояния между картинкой и точками в модуле Vibe Marketing */
            .module-layout .illustration-wrapper img[src*="vibemarketing"] {
                margin-top: 10px !important;
            }

            .custom-list {
                margin-bottom: 8px !important;
            }

            .level-section {
                margin-top: 0 !important;
                margin-bottom: 16px;
                padding-top: 0;
            }

            .review-item {
                min-width: calc(100vw - 80px);
                max-width: calc(100vw - 80px);
            }
            .review-text {
                font-size: 13px;
                line-height: 1.5;
                overflow-wrap: break-word;
                word-break: break-word;
            }
            .review-name { font-size: 12px; }
            .review-role { font-size: 10px; word-break: break-word; }

            .faq-question { padding: 16px 20px; font-size: 14px; }

            .faq-answer-inner { padding: 0 20px 16px 20px; }

            /* Аккордеон программы — мобильные стили */
            .program-format-badges {
                flex-direction: column;
                gap: 8px;
            }

            .format-badge {
                justify-content: center;
            }

            .program-week-card {
                padding: 14px;
            }

            .week-header {
                flex-direction: column;
                gap: 4px;
            }

            .week-description {
                font-size: 12px;
            }

            .program-weeks {
                grid-template-columns: 1fr;
            }

            .program-bottom-row {
                grid-template-columns: 1fr;
            }

            .program-results {
                padding: 16px;
            }

            .program-format-details {
                padding: 14px;
            }

            .format-grid {
                grid-template-columns: 1fr;
            }

            .value-props-grid { 
                display: flex !important;
                flex-direction: column !important;
                gap: 24px;
                grid-template-columns: none !important;
            }

            .value-prop-card { 
                padding: 24px;
                min-width: 0;
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
                position: relative;
                flex-shrink: 0;
            }

            .value-props-section { overflow: visible; }

        }

        /* === БЛОК ЦЕННОСТЕЙ === */

        .value-props-section {

            width: 100%;

        }

        .value-props-grid {

            display: grid;

            grid-template-columns: repeat(3, 1fr);

            gap: 32px;

            margin-top: 32px;

        }

        .value-prop-card {

            padding: 32px;

            border: 1px solid rgba(0,0,0,0.08);

            border-radius: 16px;

            background: rgba(255,255,255,0.5);

            transition: all 0.3s ease;

            display: flex;

            flex-direction: column;

            gap: 16px;

        }

        .value-prop-card:hover {

            border-color: rgba(0,0,0,0.15);

            background: rgba(255,255,255,0.7);

            transform: translateY(-4px);

            box-shadow: 0 8px 24px rgba(0,0,0,0.1);

        }

        .value-prop-icon {

            width: 48px;

            height: 48px;

            margin-bottom: 8px;

            display: flex;

            align-items: center;

            justify-content: flex-start;

            opacity: 0.8;

            transition: opacity 0.3s ease, transform 0.3s ease;

        }

        .value-prop-icon img {

            width: 100%;

            height: 100%;

            object-fit: contain;

            filter: contrast(1.1);

        }

        .value-prop-card:hover .value-prop-icon {

            opacity: 1;

            transform: scale(1.05);

        }

        .value-prop-title {

            font-size: 18px;

            font-weight: 600;

            line-height: 1.3;

            color: var(--color-text-card);

            margin-bottom: 8px;

            letter-spacing: -0.02em;

        }

        .value-prop-text {

            font-size: 15px;

            line-height: 1.6;

            color: #444;

            flex-grow: 1;

        }

        /* Cookie consent banner */
        .cookie-banner {
            position: fixed;
            right: 16px;
            bottom: 16px;
            width: 280px;
            max-width: calc(100vw - 32px);
            background: rgba(249, 247, 241, 0.85);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            color: #1A1A1A;
            padding: 10px 12px;
            border-radius: 8px;
            border: 1px solid rgba(0, 0, 0, 0.08);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
            z-index: 9999;
            display: none;
            font-family: 'IBM Plex Mono', monospace;
            font-size: 11px;
            line-height: 1.4;
        }
        .cookie-banner.visible { display: flex; flex-direction: column; align-items: stretch; gap: 8px; }
        .cookie-banner__close {
            position: absolute;
            top: 4px;
            right: 6px;
            background: transparent;
            border: none;
            color: #999;
            font-size: 14px;
            line-height: 1;
            cursor: pointer;
            padding: 2px 4px;
            font-family: inherit;
        }
        .cookie-banner__close:hover { color: #1A1A1A; }
        .cookie-banner__text { flex: 1; padding-right: 14px; color: #555; font-size: 11px; }
        .cookie-banner__text a { color: #1A1A1A; text-decoration: underline; }
        .cookie-banner__btn {
            font-family: 'IBM Plex Mono', monospace;
            font-size: 10px;
            font-weight: 600;
            padding: 6px 12px;
            border-radius: 5px;
            border: 1px solid #1A1A1A;
            background: #1A1A1A;
            color: #FFFFFF;
            cursor: pointer;
            transition: background 0.15s;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            flex-shrink: 0;
        }
        .cookie-banner__btn:hover { background: #333; }
        .cookie-banner__actions { display: flex; gap: 6px; }
        .cookie-banner__actions .cookie-banner__btn { flex: 1; }
        .cookie-banner__btn--secondary { background: transparent; color: #1A1A1A; }
        .cookie-banner__btn--secondary:hover { background: rgba(0, 0, 0, 0.06); }
        @media (max-width: 480px) {
            .cookie-banner { right: 12px; left: 12px; bottom: 12px; width: auto; }
        }

        /* ============================================================
           V3 — Новые компоненты для 4-страничного сайта (ТЗ 3.0)
           ============================================================ */

        /* === КНОПКА ОСНОВНОГО CTA (заполненная, монохром) === */
        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 18px 36px;
            background: var(--color-text-card);
            color: #F7F5F0;
            border: 2px solid var(--color-text-card);
            border-radius: var(--btn-radius);
            font-family: var(--font-main);
            font-weight: 600;
            font-size: 14px;
            letter-spacing: 0.02em;
            text-decoration: none;
            cursor: pointer;
            transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease;
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 28px rgba(0,0,0,0.22);
        }
        .btn-primary.large {
            padding: 22px 44px;
            font-size: 15px;
        }

        /* === ВЕРХНИЙ MICRO-META Hero === */
        .hero-eyebrow {
            display: inline-block;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: #555;
            margin-bottom: 16px;
            padding: 6px 12px;
            background: rgba(0,0,0,0.05);
            border-radius: 100px;
            border: 1px solid rgba(0,0,0,0.1);
        }
        .hero-substring {
            font-size: 13px;
            font-style: italic;
            color: #888;
            margin-top: 24px;
            margin-bottom: 16px;
            font-family: var(--font-main);
        }
        .hero-badge {
            display: inline-block;
            font-size: 13px;
            color: #444;
            padding: 8px 16px;
            background: rgba(0, 0, 0, 0.04);
            border: 1px solid rgba(0,0,0,0.1);
            border-radius: 6px;
            margin-bottom: 24px;
            font-weight: 500;
        }
        .hero-cta-row {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            align-items: center;
        }

        /* Группа из двух CTA-кнопок: на узком экране — равная ширина в столбик */
        .cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
        @media (max-width: 560px) {
            .hero-cta-row .btn-primary,
            .hero-cta-row .btn-outline,
            .cta-row .btn-primary,
            .cta-row .btn-outline {
                width: 100%;
            }
        }

        /* === БЛОК «ЧТО ТАКОЕ AI CAMP» === */
        .what-is {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 60px;
            align-items: center;
        }
        .what-is-text p {
            font-size: 17px;
            line-height: 1.7;
            color: #333;
            margin-bottom: 18px;
        }
        .what-is-text p:last-child { margin-bottom: 0; }

        /* === СЕЛЕКТОР «ЭТО ПРО ТЕБЯ, ЕСЛИ...» === */
        .segment-selector {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }
        .segment-selector h2 {
            font-size: 28px;
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 8px;
        }
        .segment-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .segment-card {
            background: rgba(255,255,255,0.4);
            border: 1px solid rgba(0,0,0,0.12);
            border-radius: 16px;
            padding: 28px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .segment-card:hover {
            background: rgba(255,255,255,0.7);
            border-color: var(--color-text-card);
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(0,0,0,0.1);
        }
        .segment-card h3 {
            font-size: 17px;
            font-weight: 600;
            line-height: 1.35;
        }
        .segment-card p {
            font-size: 14px;
            line-height: 1.6;
            color: #444;
        }
        .segment-card-link {
            margin-top: auto;
            padding-top: 12px;
            font-size: 13px;
            font-weight: 600;
            color: var(--color-text-card);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .segment-card-link:hover { text-decoration: underline; }

        /* === «КАКУЮ РАБОТУ ЗАКРЫВАЕТ КЭМП» 2×2 === */
        .work-closes {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
        }
        .work-closes-item {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .block-icon {
            width: 56px;
            height: 56px;
            object-fit: contain;
            margin-bottom: 4px;
            opacity: 0.85;
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        .work-closes-item:hover .block-icon,
        .system-tile:hover .block-icon {
            transform: rotate(-6deg) scale(1.08);
        }
        .work-closes-item h3 {
            font-size: 19px;
            font-weight: 600;
            line-height: 1.3;
        }
        .work-closes-item p {
            font-size: 14px;
            line-height: 1.6;
            color: #444;
        }

        /* === «КЭМП — ЭТО СИСТЕМА» 5 ПЛИТОК === */
        .system-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 16px;
        }
        .system-tile {
            background: rgba(255,255,255,0.4);
            border: 1px solid rgba(0,0,0,0.12);
            border-radius: 12px;
            padding: 22px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .system-tile-emoji { font-size: 28px; line-height: 1; }
        .system-tile h3 {
            font-size: 15px;
            font-weight: 600;
            line-height: 1.3;
        }
        .system-tile p {
            font-size: 13px;
            line-height: 1.55;
            color: #444;
        }

        /* === БЛИЖАЙШИЙ ПОТОК (ТАБЛИЦА) === */
        .stream-info {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 40px;
            align-items: start;
        }
        .stream-info-table {
            width: 100%;
            border-collapse: collapse;
        }
        .stream-info-table td {
            padding: 14px 0;
            border-bottom: 1px solid rgba(0,0,0,0.08);
            font-size: 14px;
            vertical-align: top;
        }
        .stream-info-table td:first-child {
            font-weight: 600;
            color: #444;
            text-transform: uppercase;
            letter-spacing: 0.03em;
            font-size: 12px;
            width: 40%;
            padding-right: 16px;
        }
        .stream-info-table td:last-child {
            color: #222;
            line-height: 1.5;
        }
        .stream-info-table tr:last-child td { border-bottom: none; }

        /* === РАБОТЫ ВЫПУСКНИКОВ (слайдер с вертикальной прокруткой рядов) === */
        .works-slider {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 20px;
            align-items: stretch;
        }
        .works-slider-viewport {
            overflow: hidden;
            position: relative;
            /* высота задаётся JS на основе высоты карточки */
        }
        .works-slider-track {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-auto-rows: 340px;
            gap: 20px;
            transition: transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
            will-change: transform;
        }
        .works-slider-controls {
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 12px;
        }
        .works-slider-btn {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 1px solid var(--color-text-card);
            background: transparent;
            color: var(--color-text-card);
            cursor: pointer;
            font-size: 16px;
            font-family: var(--font-main);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        .works-slider-btn:hover {
            background: var(--color-text-card);
            color: #F7F5F0;
            transform: translateY(-2px);
        }
        .work-card {
            background: rgba(255,255,255,0.5);
            border: 1px solid rgba(0,0,0,0.1);
            border-radius: 14px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 340px;
        }
        .work-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 14px 32px rgba(0,0,0,0.12);
        }
        .work-card-screenshot {
            flex: 0 0 52%;
            background: linear-gradient(135deg, #EFEDE6, #E3E0D7);
            border-bottom: 1px solid rgba(0,0,0,0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #5a4f3f;
            font-size: 12px;
            font-weight: 500;
            text-align: center;
            padding: 10px;
            overflow: hidden;
        }
        .work-card-screenshot img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            border-radius: 8px;
        }
        .work-card-screenshot.placeholder::after {
            content: 'Скриншот добавится позже';
            font-style: italic;
        }
        .work-card-body {
            flex: 1 1 auto;
            padding: 14px 16px;
            display: flex;
            flex-direction: column;
            gap: 4px;
            overflow: hidden;
        }
        .work-card-title {
            font-size: 14px;
            font-weight: 600;
            line-height: 1.3;
            color: #1A1A1A;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .work-card-author {
            font-size: 11px;
            color: #777;
            font-weight: 500;
        }
        .work-card-desc {
            font-size: 12px;
            color: #444;
            line-height: 1.45;
            margin-top: 4px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* === ФИЛЬТРЫ РАБОТ ПО КАТЕГОРИЯМ === */
        .works-filters {
            display: flex;
            flex-wrap: nowrap;
            gap: 8px;
            margin: 2px 0 26px;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }
        .works-filters::-webkit-scrollbar { display: none; }
        .works-filter {
            flex: 0 0 auto;
            font-family: var(--font-main);
            font-size: 12px;
            font-weight: 500;
            color: var(--color-text-card);
            background: transparent;
            border: 1px solid rgba(0,0,0,0.22);
            border-radius: 999px;
            padding: 7px 13px;
            cursor: pointer;
            transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
            white-space: nowrap;
        }
        .works-filter:hover {
            border-color: var(--color-text-card);
            background: rgba(0,0,0,0.04);
        }
        .works-filter.is-active {
            background: var(--color-text-card);
            border-color: var(--color-text-card);
            color: #F7F5F0;
        }
        .works-empty {
            text-align: center;
            color: #777;
            font-size: 14px;
            padding: 28px 0 8px;
        }

        /* === АВТОР (расширенный) === */
        .author-block {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 32px;
            align-items: center;
        }
        .author-block .author-img { width: 160px; height: 160px; }
        .author-block h2 {
            font-size: 26px;
            font-weight: 600;
            margin-bottom: 12px;
        }
        .author-block p {
            font-size: 15px;
            line-height: 1.7;
            color: #333;
            margin-bottom: 14px;
        }
        .author-block p:last-child { margin-bottom: 0; }

        /* === ГАРАНТИЯ === */
        .guarantee-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin-top: 8px;
        }
        .guarantee-col {
            padding: 24px;
            background: rgba(255,255,255,0.4);
            border: 1px solid rgba(0,0,0,0.1);
            border-radius: 12px;
            text-align: center;
        }
        .guarantee-col-when {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: #777;
            margin-bottom: 8px;
            font-weight: 600;
        }
        .guarantee-col-amount {
            font-size: 22px;
            font-weight: 700;
            color: var(--color-text-card);
            line-height: 1.2;
        }
        .guarantee-fineprint {
            margin-top: 16px;
            font-size: 12px;
            color: #777;
            line-height: 1.5;
        }

        /* === ЦЕНОВАЯ КАРТА (главная) === */
        .price-block {
            display: grid;
            grid-template-columns: 1.3fr 1fr;
            gap: 48px;
            align-items: center;
        }
        .price-block-content {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }
        .price-block-illustration {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .price-block-illustration img {
            width: 100%;
            max-width: 360px;
            height: auto;
            mix-blend-mode: multiply;
            filter: contrast(1.05) sepia(0.15);
        }
        @media (max-width: 900px) {
            .price-block { grid-template-columns: 1fr; gap: 24px; }
            .price-block-illustration { order: -1; }
            .price-block-illustration img { max-width: 240px; filter: none; }
        }
        .price-card-hero {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }
        .price-card-eyebrow {
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: #555;
        }
        .price-amounts {
            display: flex;
            align-items: baseline;
            gap: 16px;
            flex-wrap: wrap;
        }
        .price-old {
            font-size: 22px;
            font-weight: 500;
            text-decoration: line-through;
            color: #999;
        }
        .price-new {
            font-size: 48px;
            font-weight: 700;
            letter-spacing: -0.02em;
            color: var(--color-text-card);
        }
        .price-early-bird {
            font-size: 14px;
            color: #555;
            margin-top: -4px;
            font-weight: 500;
        }
        .price-includes {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin: 8px 0;
        }
        .price-includes li {
            padding-left: 22px;
            position: relative;
            font-size: 14px;
            line-height: 1.5;
            color: #333;
        }
        .price-includes li::before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 0;
            color: var(--color-text-card);
            font-weight: 700;
        }
        .price-card-fineprint {
            font-size: 12px;
            color: #777;
            line-height: 1.5;
            text-align: center;
        }

        /* === ТАБЛИЦА «ПОЛНЫЙ БЮДЖЕТ ЧЕСТНО» === */
        .budget-section h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 16px;
        }
        .budget-section > p {
            font-size: 14px;
            color: #444;
            margin-bottom: 16px;
            line-height: 1.6;
        }
        .budget-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 13px;
        }
        .budget-table th,
        .budget-table td {
            padding: 14px 12px;
            text-align: left;
            border-bottom: 1px solid rgba(0,0,0,0.08);
            vertical-align: top;
            line-height: 1.5;
        }
        .budget-table th {
            font-weight: 600;
            color: #555;
            text-transform: uppercase;
            font-size: 11px;
            letter-spacing: 0.05em;
        }
        .budget-table tr:last-child td { border-bottom: none; }
        .budget-table .budget-level {
            font-weight: 600;
            white-space: nowrap;
        }
        .budget-table .budget-cost {
            font-weight: 600;
            color: #222;
            white-space: nowrap;
        }
        .budget-note {
            margin-top: 14px;
            font-size: 12px;
            font-style: italic;
            color: #777;
        }

        /* === «С ЧЕМ СРАВНИТЬ» === */
        .compare-block {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 12px;
        }
        .compare-row {
            padding: 18px;
            border-left: 3px solid rgba(0,0,0,0.15);
            background: rgba(255,255,255,0.3);
            font-size: 14px;
            line-height: 1.6;
            color: #333;
            border-radius: 0 8px 8px 0;
        }
        .compare-row strong {
            display: block;
            margin-bottom: 4px;
            font-size: 15px;
            color: #1A1A1A;
        }

        /* === ФИНАЛЬНЫЙ ШИРОКИЙ CTA === */
        .final-cta {
            text-align: center;
            padding: 24px 0;
        }
        .final-cta h2 {
            font-size: 32px;
            line-height: 1.25;
            font-weight: 600;
            margin-bottom: 28px;
            letter-spacing: -0.02em;
        }
        .final-cta-fineprint {
            margin-top: 18px;
            font-size: 13px;
            color: #777;
        }

        /* === ТИЗЕРЫ ПРОДУКТОВ КЭМПА === */
        .teasers {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
        }
        .teaser-card {
            background: rgba(255,255,255,0.5);
            border: 1px solid rgba(0,0,0,0.12);
            border-radius: 16px;
            padding: 32px;
            display: flex;
            flex-direction: column;
            gap: 14px;
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }
        .teaser-card:hover {
            transform: translateY(-3px);
            border-color: var(--color-text-card);
            box-shadow: 0 16px 36px rgba(0,0,0,0.12);
        }
        .teaser-eyebrow {
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: #777;
        }
        .teaser-card h3 {
            font-size: 22px;
            font-weight: 600;
            line-height: 1.25;
            letter-spacing: -0.01em;
        }
        .teaser-card p {
            font-size: 14px;
            line-height: 1.6;
            color: #333;
        }
        .teaser-status {
            font-size: 12px;
            color: #555;
            font-style: italic;
            margin-top: 4px;
        }
        .teaser-link {
            margin-top: auto;
            padding-top: 12px;
            font-size: 13px;
            font-weight: 600;
            text-decoration: underline;
            color: var(--color-text-card);
        }

        /* === STICKY MOBILE CTA === */
        .sticky-cta {
            position: fixed;
            right: 16px;
            bottom: 16px;
            z-index: 90;
            display: none;
            padding: 14px 22px;
            background: var(--color-text-card);
            color: #F7F5F0;
            border-radius: 100px;
            font-weight: 600;
            font-size: 13px;
            letter-spacing: 0.02em;
            text-decoration: none;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.3s ease, transform 0.3s ease;
        }
        .sticky-cta.visible {
            opacity: 1;
            transform: translateY(0);
        }
        @media (max-width: 768px) {
            .sticky-cta { display: inline-block; }
        }

        /* === ОБЩИЕ ЗАГОЛОВКИ КАРТОЧЕК (новые) === */
        .card-h2 {
            font-size: 32px;
            font-weight: 600;
            line-height: 1.2;
            letter-spacing: -0.02em;
            margin-bottom: 28px;
        }
        .card-h2.small { font-size: 26px; margin-bottom: 20px; }
        .card-sub {
            font-size: 15px;
            color: #444;
            line-height: 1.65;
            margin-top: -16px;
            margin-bottom: 28px;
        }

        /* === АДАПТИВ ДЛЯ ВСЕХ НОВЫХ КОМПОНЕНТОВ === */
        @media (max-width: 900px) {
            .what-is { grid-template-columns: 1fr; gap: 32px; }
            .segment-grid { grid-template-columns: 1fr; }
            .work-closes { grid-template-columns: 1fr; gap: 24px; }
            .stream-info { grid-template-columns: 1fr; gap: 24px; }
            .works-slider-track { grid-template-columns: repeat(2, 1fr); }
            .author-block { grid-template-columns: 1fr; text-align: left; }
            .author-block .author-img { width: 120px; height: 120px; }
            .guarantee-row { grid-template-columns: 1fr; }
            .teasers { grid-template-columns: 1fr; }
            .price-new { font-size: 38px; }
            .card-h2 { font-size: 26px; }
            .final-cta h2 { font-size: 24px; }
            h1 { font-size: 34px; }
        }
        @media (max-width: 560px) {
            .works-slider-track { grid-template-columns: 1fr; grid-auto-rows: 280px; }
            .work-card { height: 280px; }
            .app-card { padding: 32px 24px; }
            h1 { font-size: 28px; }
            .works-filters {
                margin: 2px -24px 22px;
                padding: 0 24px 4px;
            }
        }

        /* === ПОДВАЛ V3 === */
        .site-footer {
            margin-top: 32px;
            padding: 36px 32px 24px;
            display: flex;
            flex-direction: column;
            gap: 28px;
            color: var(--footer-text);
            font-size: 13px;
            line-height: 1.5;
        }
        .footer-top {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1fr;
            gap: 40px;
            align-items: start;
        }
        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .footer-brand-logo {
            font-weight: 700;
            font-size: 16px;
            color: var(--nav-text);
            letter-spacing: -0.02em;
            text-transform: uppercase;
        }
        .footer-brand-tag {
            font-size: 12px;
            color: var(--footer-text);
            opacity: 0.85;
            max-width: 240px;
            line-height: 1.55;
        }
        .footer-col-title {
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--nav-text);
            opacity: 0.7;
            margin-bottom: 14px;
        }
        .footer-col-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .footer-col-list a {
            color: var(--footer-text);
            text-decoration: none;
            font-size: 13px;
            border-bottom: 1px solid transparent;
            transition: color 0.2s ease, border-color 0.2s ease;
            display: inline;
        }
        .footer-col-list a:hover {
            color: var(--nav-text);
            border-color: var(--nav-text);
        }
        .footer-col-list .footer-meta {
            font-size: 11px;
            opacity: 0.7;
            margin-top: -2px;
        }
        .footer-bottom {
            padding-top: 20px;
            border-top: 1px solid rgba(128, 128, 128, 0.15);
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 24px;
            font-size: 11px;
            opacity: 0.7;
            line-height: 1.6;
            flex-wrap: wrap;
        }
        .footer-bottom-legal { max-width: 720px; }
        .footer-bottom a { color: inherit; text-decoration: underline; }

        @media (max-width: 900px) {
            .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
            .footer-brand { grid-column: 1 / -1; }
        }
        @media (max-width: 560px) {
            .site-footer { padding: 28px 16px 20px; }
            .footer-top { grid-template-columns: 1fr; gap: 24px; }
            .footer-bottom { flex-direction: column; gap: 8px; }
        }

        /* === СТРАНИЦА МОДУЛЯ 1 === */

        /* Активный пункт навбара */
        .nav-menu a.nav-active {
            color: var(--nav-text);
            font-weight: 600;
            border-bottom: 1px solid var(--nav-text);
            padding-bottom: 2px;
        }

        /* --- HERO: выравнивание кнопок --- */
        .m1-hero-cta {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            align-items: stretch;
        }

        .m1-hero-cta .btn-primary,
        .m1-hero-cta .m1-btn-equal {
            padding: 18px 36px;
            font-size: 14px;
            line-height: 1.2;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        /* Мета-строка в карточке цены (старт/длительность) */
        .m1-price-meta {
            font-size: 13px;
            font-weight: 500;
            color: #666;
            margin-bottom: 6px;
        }

        /* --- БЛОК «КЭМП ДЛЯ ТЕБЯ, ЕСЛИ…» (6 карточек, сетка 3×2) --- */
        .m1-if-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }

        .m1-if-card {
            background: rgba(255,255,255,0.45);
            border: 1px solid rgba(0,0,0,0.1);
            border-radius: 16px;
            padding: 28px 26px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
        }

        .m1-if-card:hover {
            border-color: rgba(0,0,0,0.22);
            transform: translateY(-3px);
            box-shadow: 0 12px 28px rgba(0,0,0,0.06);
        }

        .m1-if-icon {
            width: 72px;
            height: 72px;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            flex-shrink: 0;
            margin-bottom: 2px;
        }

        .m1-if-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
        }

        .m1-if-icon:empty {
            background: rgba(0,0,0,0.04);
            border-radius: 14px;
        }

        .m1-if-card h3 {
            font-size: 17px;
            line-height: 1.3;
            font-weight: 600;
            color: var(--color-text-card);
            margin: 0;
            letter-spacing: -0.01em;
        }

        .m1-if-card p {
            font-size: 13.5px;
            line-height: 1.55;
            color: #555;
            margin: 0;
        }

        @media (max-width: 900px) {
            .m1-if-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
            .m1-if-card { padding: 24px 22px; }
        }

        @media (max-width: 560px) {
            .m1-if-grid { grid-template-columns: 1fr; }
        }

        /* --- БЛОК «ЧТО ВХОДИТ В КЭМП» (5 плиток, 3+2 по центру) --- */
        .m1-includes-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 18px;
        }

        .m1-includes-tile {
            flex: 1 1 280px;
            max-width: 340px;
            background: rgba(255,255,255,0.4);
            border: 1px solid rgba(0,0,0,0.1);
            border-radius: 14px;
            padding: 24px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            transition: border-color 0.2s ease, transform 0.2s ease;
        }

        .m1-includes-tile:hover {
            border-color: rgba(0,0,0,0.2);
            transform: translateY(-2px);
        }

        .m1-includes-tile .block-icon {
            width: 48px;
            height: 48px;
            margin-bottom: 6px;
        }

        .m1-includes-tile h3 {
            font-size: 17px;
            font-weight: 600;
            line-height: 1.3;
            color: var(--color-text-card);
            margin: 0;
        }

        .m1-includes-tile p {
            font-size: 13px;
            line-height: 1.55;
            color: #444;
            margin: 0;
        }

        /* --- ГОРИЗОНТАЛЬНЫЙ ТАЙМЛАЙН ПРОГРАММЫ --- */
        .m1-timeline {
            position: relative;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            margin-top: 8px;
        }

        .m1-timeline-track {
            position: absolute;
            top: 17px;
            left: 12.5%;
            right: 12.5%;
            height: 1px;
            background: repeating-linear-gradient(
                to right,
                var(--color-text-card) 0,
                var(--color-text-card) 4px,
                transparent 4px,
                transparent 10px
            );
            opacity: 0.3;
            z-index: 0;
        }

        .m1-timeline-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            z-index: 1;
            height: 100%;
        }

        .m1-timeline-node {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: var(--color-bg, #F7F5F0);
            border: 1.5px solid var(--color-text-card);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 18px;
            flex-shrink: 0;
        }

        body.light-mode .m1-timeline-node {
            background: #F7F5F0;
        }

        body:not(.light-mode) .m1-timeline-node {
            background: #1A1A1A;
        }

        .m1-timeline-node-num {
            font-size: 15px;
            font-weight: 700;
            line-height: 1;
            letter-spacing: -0.01em;
            color: var(--color-text-card);
        }

        .m1-timeline-card {
            background: rgba(255,255,255,0.4);
            border: 1px solid rgba(0,0,0,0.1);
            border-radius: 14px;
            padding: 22px 20px;
            width: 100%;
            flex: 1 1 auto;
            display: flex;
            flex-direction: column;
            gap: 10px;
            transition: border-color 0.2s ease, transform 0.2s ease;
        }

        .m1-timeline-card:hover {
            border-color: rgba(0,0,0,0.22);
            transform: translateY(-2px);
        }

        .m1-timeline-week {
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.14em;
            color: #777;
        }

        .m1-timeline-title {
            font-size: 14px;
            font-weight: 600;
            line-height: 1.3;
            color: var(--color-text-card);
            margin: 0;
            letter-spacing: -0.01em;
            min-height: 3.9em; /* резерв под 3 строки — выравнивает строки эфиров и уроки во всех неделях */
            display: flex;
            align-items: flex-start;
        }

        .m1-timeline-broadcast {
            font-size: 12px;
            color: #555;
            font-weight: 500;
            padding: 6px 10px;
            background: rgba(0,0,0,0.04);
            border-radius: 6px;
            align-self: flex-start;
        }

        .m1-timeline-lessons {
            list-style: none;
            margin: 8px 0 0 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .m1-timeline-lessons li {
            font-size: 13px;
            line-height: 1.45;
            color: #333;
            padding-left: 14px;
            position: relative;
        }

        .m1-timeline-lessons li::before {
            content: '·';
            position: absolute;
            left: 4px;
            color: var(--color-text-card);
            font-weight: 700;
        }

        .m1-timeline-note-line {
            font-size: 12.5px;
            line-height: 1.5;
            color: #777;
            font-style: italic;
            margin: 2px 0 0 0;
        }

        .m1-timeline-outcome {
            margin-top: auto;
            padding-top: 12px;
            border-top: 1px dashed rgba(0,0,0,0.15);
            font-size: 13px;
            line-height: 1.5;
            color: #1A1A1A;
            font-weight: 500;
        }

        @media (max-width: 1100px) {
            .m1-timeline { grid-template-columns: repeat(2, 1fr); gap: 24px; }
            .m1-timeline-track { display: none; }
        }

        @media (max-width: 560px) {
            .m1-timeline { grid-template-columns: 1fr; gap: 16px; }
            .m1-timeline-step { flex-direction: row; align-items: flex-start; gap: 16px; }
            .m1-timeline-node { margin-bottom: 0; width: 34px; height: 34px; }
            .m1-timeline-card { padding: 18px; }
        }

        /* --- ГАЙД-ПЛАТФОРМА (внутри блока программы) --- */
        .m1-guide {
            margin-top: 44px;
            padding-top: 36px;
            border-top: 1px solid rgba(0,0,0,0.1);
        }

        .m1-guide-title {
            font-size: 24px;
            font-weight: 600;
            line-height: 1.25;
            letter-spacing: -0.02em;
            color: var(--color-text-card);
            margin: 0 0 24px 0;
            max-width: 760px;
        }

        /* Мастерская — выделенная карточка с чёрным редким пунктиром (inline SVG) */
        .m1-guide-feature {
            position: relative;
            border-radius: 18px;
            background: rgba(255,255,255,0.25);
            padding: 30px 32px;
            margin-bottom: 28px;
            display: grid;
            grid-template-columns: 88px 1fr;
            gap: 28px;
            align-items: start;
        }

        body:not(.light-mode) .m1-guide-feature {
            background: rgba(255,255,255,0.05);
        }

        /* SVG-рамка: толстые тёмные штрихи с большими пробелами */
        .m1-guide-dash {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            overflow: visible;
            pointer-events: none;
            z-index: 0;
        }

        .m1-guide-dash rect {
            fill: none;
            stroke: #1A1A1A;
            stroke-width: 3;
            stroke-dasharray: 16 14;
            vector-effect: non-scaling-stroke;
        }

        .m1-guide-feature-icon,
        .m1-guide-feature-body {
            position: relative;
            z-index: 1;
        }

        .m1-guide-feature-icon {
            width: 88px;
            height: 88px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .m1-guide-feature-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .m1-guide-feature-icon:empty {
            background: rgba(0,0,0,0.04);
            border-radius: 14px;
        }

        .m1-guide-feature h4 {
            font-size: 18px;
            font-weight: 600;
            color: var(--color-text-card);
            margin: 0 0 16px 0;
            letter-spacing: -0.01em;
        }

        .m1-guide-feature-cols {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px 28px;
            align-items: start;
        }

        .m1-guide-feature-cols ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .m1-guide-feature li {
            font-size: 13.5px;
            line-height: 1.5;
            color: #333;
            padding-left: 18px;
            position: relative;
        }

        .m1-guide-feature li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--color-text-card);
            font-weight: 700;
        }

        .m1-guide-feature li strong { color: var(--color-text-card); }

        /* Подзаголовок перед 5 окошками */
        .m1-guide-items-lead {
            font-size: 14px;
            font-weight: 600;
            color: var(--color-text-card);
            margin: 0 0 16px 0;
        }

        /* 5 окошек в один ряд */
        .m1-guide-items {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 14px;
        }

        .m1-guide-item {
            background: rgba(255,255,255,0.4);
            border: 1px solid rgba(0,0,0,0.1);
            border-radius: 12px;
            padding: 20px 18px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            transition: border-color 0.2s ease, transform 0.2s ease;
        }

        .m1-guide-item:hover {
            border-color: rgba(0,0,0,0.2);
            transform: translateY(-2px);
        }

        .m1-guide-item-icon {
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: flex-start;
        }

        .m1-guide-item-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .m1-guide-item h4 {
            font-size: 14px;
            font-weight: 600;
            color: var(--color-text-card);
            margin: 0;
            line-height: 1.25;
        }

        .m1-guide-item p {
            font-size: 12.5px;
            line-height: 1.45;
            color: #555;
            margin: 0;
        }

        @media (max-width: 900px) {
            .m1-guide-items { grid-template-columns: repeat(3, 1fr); }
        }

        @media (max-width: 700px) {
            .m1-guide-feature {
                grid-template-columns: 1fr;
                gap: 16px;
                padding: 24px;
            }
            .m1-guide-feature-icon { width: 64px; height: 64px; }
            .m1-guide-feature-cols { grid-template-columns: 1fr; }
        }

        @media (max-width: 520px) {
            .m1-guide-items { grid-template-columns: repeat(2, 1fr); }
        }

        /* === СТРАНИЦА МОДУЛЯ 2 (VIBE MARKETING) === */

        /* --- HERO: иллюстрации больше места, заполняет колонку --- */
        .m2-hero-split { grid-template-columns: 1fr 1.4fr; gap: 48px; }
        #m2-hero-img { max-width: 100%; }
        @media (max-width: 768px) {
            #m2-hero-img { max-width: 460px; }
        }

        /* --- HERO: статус «в разработке» в виде клейкой ленты (washi tape) --- */
        .m2-tape {
            display: inline-block;
            position: relative;
            margin: 6px 0 12px;
            padding: 9px 26px;
            transform: rotate(-1.6deg);
            font-size: 12.5px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: #1A1A1A;
            background:
                repeating-linear-gradient(45deg, rgba(255,255,255,0.30) 0 7px, rgba(255,255,255,0) 7px 14px),
                var(--color-accent);
            box-shadow: 0 3px 8px rgba(0,0,0,0.14);
            /* слегка рваные/срезанные края, как у оторванного куска ленты */
            clip-path: polygon(1.5% 6%, 99% 0, 98.5% 94%, 1% 100%);
        }

        /* полупрозрачные «липкие» торцы ленты */
        .m2-tape::before,
        .m2-tape::after {
            content: "";
            position: absolute;
            top: -2px;
            bottom: -2px;
            width: 12px;
            background: var(--color-accent);
            opacity: 0.35;
        }
        .m2-tape::before { left: -6px; transform: skewX(-12deg); }
        .m2-tape::after  { right: -6px; transform: skewX(-12deg); }

        .m2-status-note {
            font-size: 13px;
            line-height: 1.5;
            color: #555;
            margin: 0 0 24px;
        }

        /* --- БЛОК «ЧТО ЗАКРОЕТ МОДУЛЬ 2» (4 карточки 2×2) --- */
        .m2-closes-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 18px;
        }

        .m2-closes-card {
            background: rgba(255,255,255,0.45);
            border: 1px solid rgba(0,0,0,0.1);
            border-radius: 16px;
            padding: 28px 26px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
        }

        .m2-closes-card:hover {
            border-color: rgba(0,0,0,0.22);
            transform: translateY(-3px);
            box-shadow: 0 12px 28px rgba(0,0,0,0.06);
        }

        .m2-closes-icon {
            width: 56px;
            height: 56px;
            margin-bottom: 4px;
        }

        .m2-closes-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
        }

        .m2-closes-card h3 {
            font-size: 18px;
            line-height: 1.3;
            font-weight: 600;
            color: var(--color-text-card);
            margin: 0;
            letter-spacing: -0.01em;
        }

        .m2-closes-card p {
            font-size: 13.5px;
            line-height: 1.55;
            color: #555;
            margin: 0;
        }

        /* --- БЛОК «ДЛЯ КОГО» (роли) --- */
        .m2-roles {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 14px;
        }

        .m2-role {
            display: flex;
            align-items: center;
            gap: 14px;
            background: rgba(255,255,255,0.4);
            border: 1px solid rgba(0,0,0,0.08);
            border-radius: 12px;
            padding: 18px 20px;
            font-size: 14.5px;
            line-height: 1.4;
            font-weight: 500;
            color: var(--color-text-card);
            transition: border-color 0.2s ease, transform 0.2s ease;
        }

        .m2-role:hover {
            border-color: rgba(0,0,0,0.2);
            transform: translateY(-2px);
        }

        .m2-role-icon {
            width: 42px;
            height: 42px;
            flex-shrink: 0;
            object-fit: contain;
        }

        /* --- БЛОК «СВЯЗЬ С МОДУЛЕМ 1» (кросс-сейл) --- */
        .m2-crosssell {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 28px;
            flex-wrap: wrap;
            background: rgba(255,255,255,0.5);
            border: 1px solid rgba(0,0,0,0.12);
            border-left: 3px solid var(--color-accent);
            border-radius: 16px;
            padding: 28px 32px;
        }

        .m2-crosssell-text {
            flex: 1 1 320px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .m2-crosssell-text h3 {
            font-size: 20px;
            font-weight: 600;
            line-height: 1.3;
            color: var(--color-text-card);
            margin: 0;
            letter-spacing: -0.01em;
        }

        .m2-crosssell-text p {
            font-size: 14px;
            line-height: 1.6;
            color: #444;
            margin: 0;
        }

        .m2-crosssell-btn {
            flex-shrink: 0;
            white-space: nowrap;
        }

        /* --- БЛОК WAITLIST CTA (тёмная полоса) --- */
        .m2-waitlist {
            background: var(--color-text-card);
            border-radius: 22px;
            padding: 48px 40px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
        }

        .m2-waitlist h2 {
            font-size: 30px;
            font-weight: 600;
            line-height: 1.2;
            letter-spacing: -0.02em;
            color: #F7F5F0;
            margin: 0;
        }

        .m2-waitlist p {
            font-size: 15px;
            line-height: 1.6;
            color: rgba(247,245,240,0.75);
            max-width: 540px;
            margin: 0;
        }

        .m2-waitlist .btn-primary {
            margin-top: 8px;
            background: var(--color-accent);
            color: #1A1A1A;
            border-color: var(--color-accent);
        }

        /* --- FAQ модуля 2: одна колонка (без «прыжков» из multi-column) --- */
        .faq-list.m2-faq {
            column-count: 1;
            margin-top: 24px;
        }
        .faq-list.m2-faq .faq-item { margin-bottom: 12px; }

        /* --- АДАПТИВ МОДУЛЯ 2 --- */
        @media (max-width: 768px) {
            .m2-closes-grid { grid-template-columns: 1fr; }
            .m2-roles { grid-template-columns: 1fr; }
            .m2-crosssell { padding: 24px; gap: 18px; }
            .m2-crosssell-btn { width: 100%; text-align: center; }
            .m2-waitlist { padding: 36px 24px; }
            .m2-waitlist h2 { font-size: 24px; }
        }

        /* === СТРАНИЦА КЛУБА === */

        /* --- HERO: иллюстрация заполняет колонку (как module-2) --- */
        .club-hero-split { grid-template-columns: 1fr 1.4fr; gap: 48px; }
        #club-hero-img { max-width: 100%; }
        @media (max-width: 768px) {
            #club-hero-img { max-width: 460px; }
        }

        /* --- БЛОК «ЧТО ЕСТЬ В КЛУБЕ» (4 плитки 2×2) --- */
        .club-feat-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 18px;
        }
        .club-feat-card {
            background: rgba(255,255,255,0.45);
            border: 1px solid rgba(0,0,0,0.1);
            border-radius: 16px;
            padding: 28px 26px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
        }
        .club-feat-card:hover {
            border-color: rgba(0,0,0,0.22);
            transform: translateY(-3px);
            box-shadow: 0 12px 28px rgba(0,0,0,0.06);
        }
        .club-feat-icon {
            width: 56px;
            height: 56px;
            margin-bottom: 4px;
        }
        .club-feat-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
        }
        .club-feat-card h3 {
            font-size: 18px;
            line-height: 1.3;
            font-weight: 600;
            color: var(--color-text-card);
            margin: 0;
            letter-spacing: -0.01em;
        }
        .club-feat-card p {
            font-size: 13.5px;
            line-height: 1.55;
            color: #555;
            margin: 0;
        }

        /* --- БЛОК «КОМУ ПОДХОДИТ» (3 карточки) --- */
        .club-who-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }
        .club-who-card {
            background: rgba(255,255,255,0.4);
            border: 1px solid rgba(0,0,0,0.08);
            border-radius: 14px;
            padding: 24px 22px;
            text-align: center;
            transition: border-color 0.2s ease, transform 0.2s ease;
        }
        .club-who-icon {
            width: 60px;
            height: 60px;
            object-fit: contain;
            display: block;
            margin: 0 auto 12px;
        }
        .club-who-card:hover {
            border-color: rgba(0,0,0,0.2);
            transform: translateY(-2px);
        }
        .club-who-card h3 {
            font-size: 16px;
            font-weight: 600;
            line-height: 1.3;
            color: var(--color-text-card);
            margin: 0 0 8px;
        }
        .club-who-card p {
            font-size: 13.5px;
            line-height: 1.55;
            color: #555;
            margin: 0;
        }

        /* --- БЛОК «ФОРМАТ И РИТМ» (таблица) --- */
        .club-format {
            margin: 4px 0 0;
            border: 1px solid rgba(0,0,0,0.1);
            border-radius: 16px;
            overflow: hidden;
            background: rgba(255,255,255,0.4);
        }
        .club-format-row {
            display: grid;
            grid-template-columns: 220px 1fr;
            gap: 16px;
            padding: 16px 24px;
            border-bottom: 1px solid rgba(0,0,0,0.07);
        }
        .club-format-row:last-child { border-bottom: none; }
        .club-format dt {
            font-size: 12.5px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.03em;
            color: #777;
            margin: 0;
        }
        .club-format dd {
            margin: 0;
            font-size: 14.5px;
            line-height: 1.5;
            color: var(--color-text-card);
        }

        /* --- АДАПТИВ КЛУБА --- */
        @media (max-width: 768px) {
            .club-feat-grid { grid-template-columns: 1fr; }
            .club-who-grid { grid-template-columns: 1fr; }
            .club-format-row { grid-template-columns: 1fr; gap: 4px; padding: 14px 18px; }
        }


