﻿        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 1;
        }

        /* Заголовки — современный sans-serif (Sora). Playfair остаётся только для "цитат Пушкина" */
        h1, h2, h3 {
            font-family: 'Sora', 'Inter', -apple-system, sans-serif;
            line-height: 1.15;
            letter-spacing: -0.02em;
        }

        h1 {
            font-size: clamp(2.5rem, 6vw, 4.2rem);
            font-weight: 800;
            color: var(--text);
            margin-bottom: 16px;
        }

        h1 .gold-word { color: var(--gold); }

        h2 {
            font-size: clamp(1.6rem, 3.6vw, 2.4rem);
            font-weight: 700;
            color: var(--text);
            margin-bottom: 24px;
            text-align: center;
        }

        h3 {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--text);
            font-family: 'Inter', sans-serif;
            letter-spacing: -0.01em;
        }

        /* Акцентная "рукописная" цитата — единственное место, где сохраняем литературный дух Playfair */
        .lit-quote {
            font-family: 'Playfair Display', Georgia, serif;
            font-style: italic;
        }

        /* Современный pill-бейдж вместо орнаментов ✦ */
        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--step-bg);
            color: var(--accent);
            border: 1px solid var(--card-border-hover);
            border-radius: 999px;
            padding: 6px 16px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.02em;
            text-transform: uppercase;
            margin: 0 auto 14px;
            width: fit-content;
        }

        p {
            color: var(--text-muted);
            margin-bottom: 16px;
            font-size: 1.05rem;
        }

        /* Акцентные цвета */
        .accent { color: var(--accent); }
        .gold { color: var(--gold); }

        /* Кнопки */
        .btn {
            display: inline-block;
            background: var(--accent);
            color: #ffffff;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            padding: 14px 32px;
            border-radius: 8px;
            text-decoration: none;
            font-size: 1rem;
            transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
            border: none;
            cursor: pointer;
            text-align: center;
        }

        .btn:hover {
            background: var(--accent-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px var(--shadow);
        }

        .btn-gold {
            background: var(--gold);
            color: #ffffff;
        }

        .btn-gold:hover {
            background: var(--gold-hover);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--accent);
            color: var(--accent);
        }

        .btn-outline:hover {
            background: rgba(44, 95, 138, 0.08);
            transform: translateY(-2px);
        }

        [data-theme="dark"] .btn-outline {
            border-color: var(--accent);
            color: var(--accent);
        }

        [data-theme="dark"] .btn-outline:hover {
            background: rgba(74, 159, 212, 0.12);
        }

        nav {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        nav a {
            color: rgba(253, 250, 245, 0.85);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            transition: color 0.2s;
        }

        nav a:hover {
            color: #C9973A;
        }

        /* Кнопка-гамбургер для мобильного меню */
        .hamburger-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            flex-direction: column;
            gap: 5px;
            z-index: 101;
        }

        .hamburger-btn span {
            display: block;
            width: 24px;
            height: 2px;
            background: #FDFAF5;
            transition: all 0.3s ease;
        }

        .hamburger-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger-btn.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* Мобильное меню */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: linear-gradient(135deg, #2C5F8A 0%, #1E4A6E 100%);
            z-index: 100;
            padding: 80px 24px 24px;
            flex-direction: column;
            gap: 20px;
        }

        .mobile-menu.active {
            display: flex;
        }

        .mobile-menu a {
            color: #FDFAF5;
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: 500;
            padding: 12px 0;
            border-bottom: 1px solid rgba(253, 250, 245, 0.1);
        }

        .mobile-menu a:hover {
            color: #C9973A;
        }

        .mobile-menu .btn {
            margin-top: 10px;
        }

        /* Секции */
        section {
            padding: 80px 0;
        }

        /* Hero-секция — современный градиентный фон с "бликами" (blur blobs) */
        .hero {
            background: var(--hero-bg);
            padding: 40px 0 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        /* Hero шире стандартного контейнера — больше "воздуха" на десктопе/ноутбуке */
        .hero .container {
            max-width: 1240px;
        }

        /* Мягкие световые пятна вместо декоративного орнамента */
        .hero::before {
            content: '';
            position: absolute;
            top: -30%;
            left: -10%;
            width: 55%;
            height: 160%;
            background: radial-gradient(circle, rgba(44, 95, 138, 0.12) 0%, transparent 70%);
            filter: blur(40px);
            pointer-events: none;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            right: -10%;
            width: 50%;
            height: 140%;
            background: radial-gradient(circle, rgba(184, 134, 11, 0.14) 0%, transparent 70%);
            filter: blur(50px);
            pointer-events: none;
        }

        .hero-quote {
            font-family: 'Playfair Display', serif;
            font-size: 1.15rem;
            font-style: normal;
            font-weight: 600;
            color: var(--hero-muted);
            margin-bottom: 20px;
            position: relative;
        }

        .hero h1 {
            color: var(--hero-text);
        }

        .hero .subtitle {
            font-size: 1.15rem;
            color: var(--hero-muted);
            max-width: 680px;
            margin: 0 auto 32px;
            line-height: 1.7;
        }

        .hero .subtitle .gold-name {
            color: var(--gold);
            font-weight: 600;
        }


        .hero .highlight-box {
            background: rgba(184, 134, 11, 0.10);
            border-left: 3px solid var(--gold);
            padding: 16px 24px;
            border-radius: 0 8px 8px 0;
            max-width: 580px;
            margin: 28px auto;
            text-align: left;
        }

        .highlight-box p {
            color: var(--hero-muted);
            margin: 0;
            font-style: italic;
            font-size: 1rem;
        }

        .hero-cta-note {
            font-size: 0.85rem;
            color: var(--hero-muted);
            margin-top: 10px;
        }

        /* Разделитель-орнамент */
        .ornament {
            text-align: center;
            color: var(--gold);
            font-size: 1.4rem;
            margin: 8px 0 32px;
            letter-spacing: 0.3em;
            opacity: 0.7;
        }

        /* Карточки */
        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 24px;
            margin-top: 40px;
        }

        .card {
            background: var(--surface);
            border-radius: 20px;
            padding: 28px;
            border: 1px solid var(--border);
            box-shadow: 0 2px 10px var(--shadow);
            transition: border-color 0.3s, transform 0.2s, box-shadow 0.2s;
        }

        .card:hover {
            border-color: var(--card-border-hover);
            transform: translateY(-4px);
            box-shadow: 0 12px 30px var(--shadow);
        }

        .card .icon {
            margin-bottom: 16px;
            color: var(--accent);
            background: var(--step-bg);
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .card .icon svg {
            width: 1.6rem;
            height: 1.6rem;
            display: block;
        }

        .card h3 {
            font-size: 1.1rem;
            margin-bottom: 8px;
        }

        /* ==== Блок "Боль" — для чего это нужно (список) ==== */
        /* Image of exhausted job seeker (left column) */
        .pain-media .pushkin-img {
            border-radius: 18px;
        }

        .pain-list {
            list-style: none;
            margin: 0;
            padding: 0;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 16px;
            overflow: hidden;
        }

        .pain-list li {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 16px 24px;
            border-bottom: 1px solid var(--border);
            transition: background 0.2s;
        }

        .pain-list li:last-child {
            border-bottom: none;
        }

        .pain-list li:hover {
            background: var(--step-bg);
        }

        .pain-list .pain-x {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: rgba(192, 57, 43, 0.12);
            color: #c0392b;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.9rem;
            margin-top: 2px;
        }

        [data-theme="dark"] .pain-list .pain-x {
            background: rgba(248, 113, 113, 0.15);
            color: #f87171;
        }

        .pain-list .pain-body {
            flex: 1;
        }

        .pain-list .pain-body strong {
            display: block;
            color: var(--text);
            font-size: 1rem;
            font-weight: 700;
            font-family: 'Inter', sans-serif;
            margin-bottom: 2px;
        }

        .pain-list .pain-body span {
            color: var(--text-muted);
            font-size: 0.92rem;
            line-height: 1.5;
        }

        /* Accent transition line under the list -> leads into features */
        .pain-cta {
            text-align: center;
            margin-top: 32px;
            font-family: 'Sora', 'Inter', sans-serif;
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--accent);
        }

        .pain-cta .arrow {
            display: inline-block;
            margin-left: 6px;
            animation: painArrow 1.6s ease-in-out infinite;
        }

        @keyframes painArrow {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(4px); }
        }

        /* ==== Блок "Почему получится быстро" — список с галочками ==== */
        .why-list {
            list-style: none;
            max-width: 820px;
            margin: 32px auto 0;
            padding: 0;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 16px;
            overflow: hidden;
        }

        .why-list li {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 16px 24px;
            border-bottom: 1px solid var(--border);
            transition: background 0.2s;
        }

        .why-list li:last-child {
            border-bottom: none;
        }

        .why-list li:hover {
            background: var(--step-bg);
        }

        .why-list .why-check {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: rgba(39, 174, 96, 0.15);
            color: #27ae60;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.9rem;
            margin-top: 2px;
        }

        [data-theme="dark"] .why-list .why-check {
            background: rgba(74, 222, 128, 0.15);
            color: #4ade80;
        }

        .why-list .why-body {
            flex: 1;
        }

        .why-list .why-body strong {
            display: block;
            color: var(--text);
            font-size: 1rem;
            font-weight: 700;
            font-family: 'Inter', sans-serif;
            margin-bottom: 2px;
        }

        .why-list .why-body span {
            color: var(--text-muted);
            font-size: 0.92rem;
            line-height: 1.5;
        }

        /* Callout highlighting the monetization difference */
        .why-callout {
            max-width: 820px;
            margin: 0 auto 8px;
            padding: 20px 24px;
            background: var(--step-bg);
            border: 1px solid var(--card-border-hover);
            border-radius: 14px;
            text-align: center;
        }

        .why-callout p {
            margin: 0;
            font-size: 1.02rem;
            color: var(--text);
        }

        .why-callout .accent {
            font-weight: 700;
        }

        .card p {
            font-size: 0.95rem;
        }

        /* Чередование фона секций */
        section:nth-child(even) {
            background: var(--bg-alt);
        }

        section:nth-child(odd) {
            background: var(--bg);
        }

        /* Hero всегда с тёмным градиентом — выше по специфичности, чем nth-child(odd/even) */
        section.hero {
            background: var(--hero-bg) !important;
        }

        /* Section "How it works" — light circles with arrows, no heavy cards */
        .steps {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: flex-start;
            gap: 0;
            margin-top: 40px;
        }

        .step {
            flex: 1 1 160px;
            text-align: center;
            max-width: 200px;
            padding: 20px 12px;
            position: relative;
        }

        .step-number {
            width: 56px;
            height: 56px;
            background: transparent;
            color: var(--accent);
            border: 2px solid var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Sora', sans-serif;
            font-weight: 700;
            font-size: 1.3rem;
            margin: 0 auto 14px;
            transition: background 0.25s, color 0.25s, border-color 0.25s;
        }

        .step:hover .step-number {
            background: var(--accent);
            color: #ffffff;
        }

        /* Light arrow between steps */
        .step:not(:last-child)::after {
            content: "→";
            position: absolute;
            top: 36px;
            right: -10px;
            font-size: 1.3rem;
            color: var(--gold);
            opacity: 0.6;
            font-weight: 700;
        }

        /* ==== Timeline "Как всё устроено" ==== */
        .timeline {
            position: relative;
            margin-top: 48px;
            padding-left: 0;
        }

        /* Vertical center line */
        .timeline::before {
            content: "";
            position: absolute;
            left: 27px;
            top: 28px;
            bottom: 28px;
            width: 2px;
            background: linear-gradient(to bottom, var(--accent), var(--gold));
            opacity: 0.3;
        }

        .tl-item {
            display: grid;
            grid-template-columns: 56px 1fr 1fr;
            gap: 24px;
            align-items: center;
            margin-bottom: 48px;
            position: relative;
        }

        .tl-item:last-child {
            margin-bottom: 0;
        }

        /* Number circle on the timeline */
        .tl-num {
            width: 56px;
            height: 56px;
            background: var(--surface);
            color: var(--accent);
            border: 2px solid var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Sora', sans-serif;
            font-weight: 700;
            font-size: 1.3rem;
            z-index: 1;
            transition: background 0.25s, color 0.25s;
        }

        .tl-item:hover .tl-num {
            background: var(--accent);
            color: #ffffff;
        }

        /* Text column */
        .tl-text h3 {
            font-size: 1.25rem;
            margin-bottom: 8px;
        }

        .tl-text p {
            font-size: 1rem;
            margin: 0;
        }

        /* Image column */
        .tl-img {
            width: 100%;
            height: 200px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 24px var(--shadow);
        }

        .tl-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Alternate: image on left, text on right */
        .tl-item.tl-reverse .tl-text {
            order: 3;
        }

        .tl-item.tl-reverse .tl-img {
            order: 1;
        }

        /* Climax item (оффер) — no number, gold accent */
        .tl-climax .tl-num {
            border-color: var(--gold);
            color: var(--gold);
            font-size: 1.6rem;
        }

        .tl-climax:hover .tl-num {
            background: var(--gold);
            color: #fff;
        }

        .tl-climax .tl-text h3 {
            font-family: 'Playfair Display', Georgia, serif;
            font-style: italic;
            color: var(--gold);
            font-size: 1.6rem;
        }

        /* Mobile: stack vertically, line on far left */
        @media (max-width: 768px) {
            .timeline::before {
                left: 19px;
            }

            .tl-item,
            .tl-item.tl-reverse {
                grid-template-columns: 40px 1fr;
                gap: 16px;
            }

            .tl-item.tl-reverse .tl-text,
            .tl-item.tl-reverse .tl-img {
                order: initial;
            }

            .tl-img {
                grid-column: 2;
                height: 160px;
                margin-top: 12px;
            }

            .tl-text {
                grid-column: 2;
            }

            .tl-num {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
        }

        .step h3 {
            font-size: 1rem;
            margin-bottom: 8px;
        }

        .step p {
            font-size: 0.88rem;
        }

        /* Сравнение */
        .comparison {
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
            margin-top: 40px;
            justify-content: center;
        }

        .compare-col {
            flex: 1 1 280px;
            background: var(--surface);
            border-radius: 12px;
            padding: 28px;
            border: 1px solid var(--border);
        }

        .compare-col.bad {
            border-color: var(--compare-bad-border);
        }

        .compare-col h3 {
            text-align: center;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }

        .compare-col ul {
            list-style: none;
        }

        .compare-col li {
            padding: 10px 0;
            border-bottom: 1px solid var(--border);
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 0.95rem;
            color: var(--text-muted);
        }

        .compare-col li::before {
            content: "✓";
            color: var(--accent);
            font-weight: bold;
            flex-shrink: 0;
            margin-top: 1px;
        }

        .compare-col.bad li::before {
            content: "✗";
            color: #c0392b;
        }

        /* Тарифы */
        .pricing {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin-top: 40px;
        }

        .price-card {
            background: var(--surface);
            border-radius: 16px;
            padding: 36px 28px;
            border: 1px solid var(--border);
            text-align: center;
            transition: border-color 0.3s, transform 0.2s, box-shadow 0.2s;
        }

        .price-card:hover {
            border-color: var(--accent);
            transform: translateY(-4px);
            box-shadow: 0 12px 32px var(--shadow);
        }

        .price-card.featured {
            border-color: var(--gold);
            position: relative;
        }

        .price-card.featured::before {
            content: "Популярный";
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gold);
            color: #ffffff;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 4px 14px;
            border-radius: 20px;
            font-family: 'Inter', sans-serif;
        }

        .price-card h3 {
            font-size: 1.4rem;
            margin-bottom: 8px;
        }

        .price-card .price {
            font-family: 'Sora', sans-serif;
            font-size: 2.4rem;
            font-weight: 800;
            color: var(--gold);
            margin: 14px 0;
        }

        .price-card ul {
            list-style: none;
            margin: 20px 0 24px;
            text-align: left;
        }

        .price-card ul li {
            padding: 7px 0;
            border-bottom: 1px solid var(--border);
            font-size: 0.9rem;
            color: var(--text);
            display: flex;
            align-items: flex-start;
            gap: 8px;
        }

        .price-card ul li::before {
            content: "—";
            color: var(--gold);
            flex-shrink: 0;
        }

        /* FAQ */
        details {
            background: var(--surface);
            border-radius: 10px;
            margin-bottom: 10px;
            padding: 18px 20px;
            border: 1px solid var(--border);
            transition: border-color 0.2s;
        }

        details[open] {
            border-color: var(--accent);
        }

        details summary {
            font-family: 'Inter', sans-serif;
            font-weight: 700;
            cursor: pointer;
            color: var(--text);
            font-size: 1rem;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        details summary::-webkit-details-marker { display: none; }

        details summary::after {
            content: "+";
            font-size: 1.3rem;
            color: var(--accent);
            font-family: 'Inter', sans-serif;
            font-weight: 400;
            transition: transform 0.2s;
        }

        details[open] summary::after {
            content: "−";
        }

        details p {
            margin-top: 12px;
            font-size: 0.95rem;
        }

        /* Мокап браузера */
        .mockup-browser {
            background: var(--surface);
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 24px 70px var(--shadow);
            margin: 48px auto;
            max-width: 900px;
            border: 1px solid var(--border);
        }

        .mockup-browser-header {
            background: var(--bg-alt);
            padding: 11px 16px;
            display: flex;
            gap: 7px;
            border-bottom: 1px solid var(--border);
        }

        .mockup-browser-dot {
            width: 11px;
            height: 11px;
            border-radius: 50%;
        }

        .mockup-browser-dot.red    { background: #FF5F57; }
        .mockup-browser-dot.yellow { background: #FEBC2E; }
        .mockup-browser-dot.green  { background: #28C840; }

        .mockup-browser-content {
            background: var(--bg);
            min-height: 360px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .mockup-browser-content img {
            width: 100%;
            height: auto;
        }

        .mockup-caption {
            text-align: center;
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-top: 12px;
            font-style: italic;
        }

        /* Кейсы */
        .case-card {
            background: var(--surface);
            border-radius: 12px;
            padding: 28px;
            border: 1px solid var(--border);
            border-left: 4px solid var(--gold);
            transition: transform 0.2s;
        }

        .case-card:hover {
            transform: translateY(-3px);
        }

        .case-card h3 {
            font-size: 1.1rem;
            color: var(--accent);
            margin-bottom: 10px;
        }

        /* Финальный CTA */
        .cta-section {
            background: var(--hero-bg) !important;
            text-align: center;
            padding: 80px 0;
        }

        .cta-section h2 {
            color: var(--hero-text);
        }

        .cta-section p {
            color: var(--hero-muted);
            font-size: 1.1rem;
            max-width: 550px;
            margin: 0 auto 28px;
        }

        .cta-avatar {
            width: 140px;
            height: 140px;
            border-radius: 50%;
            object-fit: cover;
            object-position: top center;
            margin: 0 auto 24px;
            display: block;
            box-shadow: 0 12px 32px var(--shadow);
            border: 3px solid var(--gold);
        }

        .cta-note {
            margin-top: 56px;
            font-size: 0.85rem;
            color: var(--hero-muted);
        }

        /* Модальное окно */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: rgba(0, 0, 0, 0.65);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .modal-overlay.active {
            display: flex;
        }

        .modal-content {
            background: var(--surface);
            border-radius: 16px;
            padding: 40px;
            max-width: 400px;
            width: 100%;
            border: 1px solid var(--border);
            position: relative;
            box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
        }

        .modal-close {
            position: absolute;
            top: 14px; right: 16px;
            background: none;
            border: none;
            color: var(--text-muted);
            font-size: 22px;
            cursor: pointer;
            transition: color 0.2s;
            line-height: 1;
        }

        .modal-close:hover { color: var(--text); }

        .modal-title {
            font-family: 'Sora', sans-serif;
            font-size: 1.5rem;
            color: var(--text);
            margin-bottom: 24px;
            text-align: center;
        }

        .modal-form-group {
            margin-bottom: 18px;
        }

        .modal-form-group label {
            display: block;
            color: var(--text-muted);
            margin-bottom: 7px;
            font-size: 0.9rem;
        }

        .modal-form-group input {
            width: 100%;
            padding: 11px 14px;
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: 8px;
            color: var(--text);
            font-size: 1rem;
            font-family: 'Inter', sans-serif;
            transition: border-color 0.2s;
        }

        .modal-form-group input:focus {
            outline: none;
            border-color: var(--accent);
        }

        .modal-btn {
            width: 100%;
            padding: 13px;
            background: var(--accent);
            color: #ffffff;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.2s;
            font-family: 'Inter', sans-serif;
        }

        .modal-btn:hover {
            background: var(--accent-hover);
            transform: translateY(-1px);
        }

        .modal-btn:disabled {
            background: var(--text-muted);
            cursor: not-allowed;
            transform: none;
        }

        /* Чекбокс согласия в модалке авторизации */
        .modal-consent {
            margin: 14px 0 20px;
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 0.82rem;
            color: var(--text-muted);
            line-height: 1.45;
        }

        .modal-consent input[type="checkbox"] {
            margin-top: 3px;
            flex-shrink: 0;
            width: 16px;
            height: 16px;
            accent-color: var(--accent);
            cursor: pointer;
        }

        .modal-consent label {
            margin: 0;
            cursor: pointer;
            user-select: none;
        }

        .modal-consent a {
            color: var(--accent);
            text-decoration: underline;
        }

        .modal-consent a:hover { color: var(--gold); }

        /* Футер */
        footer {
            background: var(--bg-alt);
            text-align: center;
            padding: 36px 0;
            border-top: 1px solid var(--border);
        }

        footer p {
            font-size: 0.88rem;
            color: var(--text-muted);
            margin: 0;
        }

        footer .footer-links {
            margin-bottom: 8px;
        }

        footer .footer-links a {
            color: var(--text-muted);
            font-size: 0.85rem;
            margin: 0 10px;
            text-decoration: none;
            transition: color 0.2s;
        }

        footer .footer-links a:hover {
            color: var(--accent);
        }

        /* Адаптив */
        @media (max-width: 768px) {
            section { padding: 60px 0; }
            nav { gap: 14px; }
            nav a:not(.btn) { display: none; }
            .comparison, .pricing { flex-direction: column; }
            .mockup-browser { margin: 28px 0; }
            .modal-content { padding: 28px 20px; }
            .cta-section { padding: 60px 0; }

            /* Показываем гамбургер на мобильных */
            .hamburger-btn {
                display: flex;
            }

            /* Скрываем кнопку входа в nav на мобильных */
            nav #navAuthBtn {
                display: none;
            }
        }
        /* ==== Тестовые мокапы персонажа (заглушки, вместо AI-изображений) ==== */
        /* Опаковая (непрозрачная) карточка-мокап — читаема поверх ЛЮБОГО фона, тёмного или светлого */
        .pushkin-mock {
            border: 1px solid var(--border);
            border-radius: 22px;
            background: var(--surface);
            box-shadow: 0 16px 40px var(--shadow);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--text-muted);
            font-family: 'Inter', sans-serif;
            padding: 24px;
        }

        .pushkin-mock .mock-emoji {
            font-size: 3rem;
            line-height: 1;
            margin-bottom: 10px;
        }

        .pushkin-mock .mock-label {
            font-weight: 700;
            color: var(--text);
            font-size: 0.95rem;
        }

        .pushkin-mock .mock-sub {
            font-size: 0.8rem;
            margin-top: 4px;
            color: var(--text-muted);
        }

        .pushkin-mock--hero {
            width: 100%;
            max-width: 320px;
            height: 380px;
            margin: 0 auto;
        }

        /* Hero promo player inside a tablet mockup.
           16:9 video, constrained to the right column width. */
        .hero-split {
            grid-template-columns: 1fr 1.15fr;
            gap: 56px;
        }
        .hero-split .text-media-media {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 20px;
        }
        .hero-split .sp-tablet {
            width: 100%;
            max-width: 600px;
            margin: 0 auto;
        }
        .hero-split .scene-player--hero {
            width: 100%;
        }

        /* Короткие "факты" под видео — заполняют правую колонку и усиливают доверие */
        .hero-facts {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            max-width: 600px;
        }

        .hero-fact {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(184, 134, 11, 0.10);
            border: 1px solid rgba(184, 134, 11, 0.25);
            color: var(--hero-muted);
            border-radius: 999px;
            padding: 8px 16px;
            font-size: 0.85rem;
            font-weight: 500;
            white-space: nowrap;
        }

        .hero-fact-icon {
            font-size: 0.95rem;
            line-height: 1;
        }

        @media (max-width: 768px) {
            .hero-split {
                grid-template-columns: 1fr;
            }
            .hero-fact {
                white-space: normal;
            }
        }

        .pushkin-mock--step {
            width: 100%;
            height: 220px;
        }

        .pushkin-mock--interview {
            width: 100%;
            height: 260px;
        }

        /* Реальные AI-изображения персонажа (заменяют мокапы поэтапно) */
        .pushkin-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 22px;
            box-shadow: 0 16px 40px var(--shadow);
            display: block;
        }

        /* Двухколоночный блок "текст + картинка", как у конкурентов */
        .text-media {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        /* Hero в две колонки: текст слева выровнен по левому краю, без auto-центрирования */
        .hero-split .subtitle,
        .hero-split .highlight-box {
            margin-left: 0;
            margin-right: 0;
            max-width: none;
        }

        /* Пергаментная подложка под текстом — контраст с современным планшетом справа */
        .hero-split .text-media-text {
            position: relative;
            padding: 36px 40px;
            border-radius: 8px;
            background-image:
                url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"),
                radial-gradient(ellipse at center, transparent 55%, var(--parchment-shadow) 130%),
                var(--parchment-bg);
            box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.06), 0 14px 34px var(--parchment-shadow);
            border: 1px solid var(--parchment-border);
        }

        .text-media.reverse .text-media-media {
            order: 2;
        }

        .text-media.reverse .text-media-text {
            order: 1;
        }

        @media (max-width: 768px) {
            .text-media {
                grid-template-columns: 1fr;
            }
            .text-media.reverse .text-media-media,
            .text-media.reverse .text-media-text {
                order: initial;
            }
            .hero-split .text-media-text {
                padding: 24px 20px;
            }
        }

        /* ==== Живые метрики ==== */
        #metrics {
            padding: 40px 0;
        }

        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }

        .metric-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 18px;
            padding: 24px;
            text-align: center;
            box-shadow: 0 4px 16px var(--shadow);
        }

        .metric-number {
            font-family: 'Sora', sans-serif;
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--accent);
        }

        .metric-label {
            font-size: 0.88rem;
            color: var(--text-muted);
            margin-top: 6px;
        }
