* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --green:        #5C9D7F;
            --green-light:  #7AB69A;
            --green-faint:  #edf5f0;
            --black:        #1a1a1a;
            --gray:         #666;
            --gray-light:   #999;
            --light-gray:   #f3f3f3;
            --bg-warm:      #f5f5f0;
            --card-bg:      #fefefe;
            --border:       #e2e2dc;
            --surface:      #ffffff;
            --font-display: 'Manrope', 'Inter', sans-serif;
            --font-body:    'Inter', sans-serif;
            --font-mono:    'JetBrains Mono', monospace;
            --ease-std:     cubic-bezier(0.25, 0.46, 0.45, 0.94);

            --transition-fast: 0.18s ease-out;
            --transition-med: 0.28s ease-out;
        }

        body {
            font-family: var(--font-body);
            color: var(--black);
            background: var(--bg-warm);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        body.modal-open {
            overflow: hidden;
        }

        h1, h2, h3, .modal-title, .logo {
            font-family: var(--font-display);
        }

        .code-text {
            font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace;
            background: rgba(92, 157, 127, 0.08);
            padding: 2px 6px;
            border-radius: 4px;
            font-size: 0.92em;
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 32px;
        }

        a,
        button,
        .btn-primary,
        .nav-cta,
        .step-card,
        .feature-card,
        .audience-card,
        .shell-inner {
            transition:
                color var(--transition-fast),
                background-color var(--transition-fast),
                border-color var(--transition-fast),
                box-shadow var(--transition-med),
                transform var(--transition-med),
                opacity var(--transition-med);
        }

        .stils-link {
            color: inherit;
            text-decoration: underline;
            text-decoration-color: rgba(92, 157, 127, 0.6);
            text-underline-offset: 3px;
        }

        .stils-link:hover {
            text-decoration-color: rgba(92, 157, 127, 1);
            color: var(--black);
        }

        header {
            padding: 18px 0 18px;
            background: var(--card-bg);
            border-bottom: 1px solid rgba(0, 0, 0, 0.04);
            position: sticky;
            top: 0;
            z-index: 10;
            backdrop-filter: blur(10px);
            background-color: rgba(255, 255, 255, 0.96);
            transition: box-shadow var(--transition-med), border-color var(--transition-fast), background-color var(--transition-fast);
        }

        body.scrolled header {
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
            border-color: rgba(0, 0, 0, 0.03);
        }

        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 32px;
        }

        .logo {
            font-size: 14px;
            font-weight: 800;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--black);
            font-family: var(--font-display);
        }

        .nav {
            display: flex;
            align-items: center;
            gap: 24px;
            font-size: 14px;
        }

        .nav a {
            position: relative;
            text-decoration: none;
            color: var(--gray);
            padding-bottom: 2px;
        }

        .nav a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -2px;
            height: 1px;
            width: 0;
            background: var(--black);
            transition: width var(--transition-fast);
        }

        .nav a:hover {
            color: var(--black);
        }

        .nav a:hover::after {
            width: 100%;
        }

        /* Header nav buttons */
        .nav-login,
        .nav-cta,
        .nav-dashboard,
        .nav-logout {
            padding: 8px 20px;
            border-radius: 999px;
            font-family: var(--font-display);
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            border: 1.5px solid transparent;
            transition: all 0.2s var(--ease-std);
            white-space: nowrap;
        }

        .nav-login,
        .nav-logout,
        .nav-dashboard {
            background: transparent;
            color: var(--black);
            border-color: var(--border);
        }

        .nav-login:hover,
        .nav-logout:hover,
        .nav-dashboard:hover {
            border-color: var(--black);
        }

        .nav-cta {
            background: var(--black);
            color: #fff;
            border-color: var(--black);
        }

        .nav-cta:hover {
            background: var(--green);
            border-color: var(--green);
            box-shadow: 3px 3px 0 var(--black);
            transform: translate(-1px, -1px);
        }

        .nav-cta:focus-visible,
        .btn-primary:focus-visible {
            outline: 2px solid var(--green);
            outline-offset: 2px;
        }

        /* Language Switcher */
        .lang-switcher {
            display: flex;
            align-items: center;
            gap: 4px;
            background: #f5f5f5;
            border-radius: 999px;
            padding: 4px;
        }

        .lang-btn {
            padding: 6px 12px;
            border: none;
            background: transparent;
            color: #666;
            font-size: 13px;
            font-weight: 500;
            border-radius: 999px;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .lang-btn:hover {
            color: #1a1a1a;
            background: rgba(0, 0, 0, 0.05);
        }

        .lang-btn.active {
            background: #fff;
            color: #1a1a1a;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }

        .lang-flag {
            font-size: 16px;
        }

        /* Hero Animation Section */
        .hero-animation-section {
            position: relative;
            width: 100%;
            height: 300px;
            background: var(--bg-warm);
            overflow: hidden;
        }

        .hero-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 1;
        }

        @media (max-width: 768px) {
            .hero-animation-section {
                height: 290px;
            }
        }

        @media (max-width: 400px) {
            .hero-animation-section {
                height: 320px;
            }
        }

        .shell {
            margin-top: 0;
            margin-bottom: 60px;
        }

        .shell-inner {
            background: var(--card-bg);
            border-radius: 32px;
            padding: 40px 40px 52px;
            box-shadow: 0 18px 48px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(0, 0, 0, 0.02);
            position: relative;
            overflow: hidden; /* Чтобы канвас не выходил за границы */
        }

        /* Chaos to Order Animation */
        .chaos-canvas {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            opacity: 0.12;
            z-index: 0;
            display: block; /* Явно блочный элемент */
        }

        .shell-inner > *:not(.chaos-canvas) {
            position: relative;
            z-index: 1;
        }

        @media (min-width: 769px) {
            .shell-inner:hover {
                transform: translateY(-3px);
                box-shadow: 0 26px 70px rgba(0, 0, 0, 0.06);
            }
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(8px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .shell-inner > section {
            opacity: 0;
            animation: fadeUp 0.55s ease forwards;
        }

        .shell-inner > section:nth-of-type(1) { animation-delay: 0.0s; }
        .shell-inner > section:nth-of-type(2) { animation-delay: 0.06s; }
        .shell-inner > section:nth-of-type(3) { animation-delay: 0.12s; }
        .shell-inner > section:nth-of-type(4) { animation-delay: 0.18s; }
        .shell-inner > section:nth-of-type(5) { animation-delay: 0.24s; }
        .shell-inner > section:nth-of-type(6) { animation-delay: 0.30s; }
        .shell-inner > section:nth-of-type(7) { animation-delay: 0.36s; }

        .hero {
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.04);
            margin-bottom: 40px;
        }

        .hero-kicker {
            font-size: 12px;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--gray);
            margin-bottom: 12px;
        }

        h1 {
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 600;
            line-height: 1.15;
            margin-bottom: 18px;
            letter-spacing: -0.02em;
            max-width: 700px;
            overflow-wrap: break-word;
        }

        .hero-subtitle {
            font-size: 17px;
            line-height: 1.7;
            color: var(--gray);
            max-width: 720px;
            margin-bottom: 28px;
        }

        .btn-primary {
            display: inline-block;
            padding: 15px 32px;
            background: var(--green);
            color: white;
            font-size: 16px;
            font-weight: 500;
            text-decoration: none;
            border-radius: 999px;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(92, 157, 127, 0.25);
        }

        .btn-primary:hover {
            background: var(--green-light);
            transform: translateY(-1px);
            box-shadow: 0 10px 26px rgba(92, 157, 127, 0.35);
        }

        .small-note {
            margin-top: 18px;
            font-size: 14px;
            color: var(--gray);
        }

        section {
            margin-bottom: 40px;
        }

        h2 {
            font-size: clamp(28px, 3.6vw, 38px);
            font-weight: 600;
            line-height: 1.2;
            margin-bottom: 18px;
            letter-spacing: -0.02em;
        }

        h3 {
            font-size: clamp(20px, 2.6vw, 26px);
            font-weight: 600;
            margin-bottom: 10px;
            letter-spacing: -0.01em;
        }

        p {
            font-size: 16px;
            line-height: 1.7;
            color: var(--gray);
            margin-bottom: 16px;
        }

        .section-label {
            font-size: 11px;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--gray);
            margin-bottom: 8px;
        }

        .problem-text {
            max-width: 720px;
        }

        .highlight-box {
            background: var(--light-gray);
            padding: 24px;
            margin: 24px 0 0;
            border-radius: 20px;
            max-width: 720px;
        }

        .highlight-box p {
            color: var(--black);
            font-weight: 500;
            margin-bottom: 14px;
        }

        .list-clean {
            list-style: none;
            margin: 12px 0;
            padding: 0;
        }

        .list-clean li {
            font-size: 15px;
            line-height: 1.6;
            color: var(--gray);
            margin-bottom: 8px;
            padding-left: 22px;
            position: relative;
        }

        .list-clean li:before {
            content: '—';
            position: absolute;
            left: 0;
            color: var(--green);
            font-weight: 600;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-top: 28px;
        }

        .step-card {
            background: var(--card-bg);
            border-radius: 12px;
            padding: 24px;
            border: 1px solid var(--border);
            transition: transform 0.2s var(--ease-std), box-shadow 0.2s var(--ease-std);
        }

        .step-card:hover {
            transform: translate(-2px, -2px);
            box-shadow: 4px 4px 0 var(--black);
        }

        .step-number {
            display: inline-block;
            font-size: 11px;
            color: var(--green);
            font-weight: 600;
            margin-bottom: 12px;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            padding: 5px 14px;
            background: rgba(92, 157, 127, 0.1);
            border-radius: 999px;
        }

        .step-card h3 {
            font-size: 22px;
            margin-bottom: 10px;
        }

        .step-card p {
            font-size: 15px;
            line-height: 1.7;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 20px;
            margin-top: 28px;
        }

        .feature-card {
            background: var(--card-bg);
            border-radius: 12px;
            padding: 22px;
            border: 1px solid var(--border);
            transition: transform 0.2s var(--ease-std), box-shadow 0.2s var(--ease-std);
        }

        .feature-card:hover {
            transform: translate(-2px, -2px);
            box-shadow: 4px 4px 0 var(--black);
        }

        .feature-card h3 {
            font-size: 19px;
            margin-bottom: 6px;
        }

        .feature-card p {
            font-size: 15px;
            line-height: 1.6;
        }

        .audience-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
            gap: 24px;
            margin-top: 28px;
        }

        .audience-card {
            background: var(--card-bg);
            border-radius: 12px;
            padding: 24px;
            border: 1px solid var(--border);
            transition: transform 0.2s var(--ease-std), box-shadow 0.2s var(--ease-std);
        }

        .audience-card:hover {
            transform: translate(-2px, -2px);
            box-shadow: 4px 4px 0 var(--black);
        }

        .audience-card h3 {
            font-size: 22px;
            margin-bottom: 18px;
        }

        .audience-card ul {
            list-style: none;
        }

        .audience-card li {
            font-size: 15px;
            line-height: 1.65;
            color: var(--gray);
            margin-bottom: 10px;
            padding-left: 22px;
            position: relative;
        }

        .audience-card li:before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--green);
            font-size: 18px;
            line-height: 1.3;
        }

        .audience-card.not-for li:before {
            color: var(--gray);
            opacity: 0.4;
        }

        .highlight-inner {
            background: var(--light-gray);
            padding: 18px;
            margin-top: 18px;
            border-radius: 16px;
        }

        .highlight-inner p {
            color: var(--black);
            font-weight: 500;
            margin-bottom: 10px;
        }

        .trust-content {
            max-width: 780px;
        }

        .cta-section {
            margin-top: 40px;
        }

        .cta-card {
            background: linear-gradient(135deg, #fafaf8 0%, #ffffff 45%, #f3f7f4 100%);
            border-radius: 12px;
            padding: 32px 30px;
            border: 1px solid var(--border);
            text-align: left;
        }

        .cta-card h2 {
            margin-bottom: 14px;
        }

        .cta-card p {
            font-size: 16px;
            margin-bottom: 22px;
        }

        .cta-card .btn-primary {
            font-size: 16px;
            padding: 14px 30px;
        }

        footer {
            padding: 24px 0 28px;
            text-align: center;
            border-top: 1px solid rgba(0, 0, 0, 0.06);
            background: var(--card-bg);
        }

        footer p {
            font-size: 14px;
            color: var(--gray);
        }

        .footer-policy-link {
            font-size: 13px;
            color: #999;
            text-decoration: underline;
            text-underline-offset: 2px;
            transition: color 0.2s;
        }

        .footer-policy-link:hover { color: #5C9D7F; }

        /* MODAL STYLES */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(4px);
            z-index: 1000;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .modal-overlay.active {
            display: flex;
            opacity: 1;
            align-items: center;
            justify-content: center;
        }

        .modal-container {
            width: 100%;
            max-width: 900px;
            height: auto;              /* Изменено: теперь высота по содержимому */
            max-height: 90vh;          /* Ограничиваем максимальную высоту */
            margin: auto;              /* Центрируем по горизонтали и вертикали */
            background: var(--card-bg);
            border-radius: 24px;       /* Скругление со всех сторон */
            box-shadow: 0 20px 80px rgba(0, 0, 0, 0.3);
            display: flex;
            flex-direction: column;
            transform: translateY(-50px);   /* Начальное положение для анимации */
            opacity: 0;
            transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
            overflow: hidden;
        }

        .modal-overlay.active .modal-container {
            transform: translateY(0);
            opacity: 1;
        }

        .modal-header {
            padding: 20px 24px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-shrink: 0;
        }

        .modal-title {
            font-size: 18px;
            font-weight: 600;
            color: var(--black);
        }

        .modal-close {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--light-gray);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: var(--gray);
            transition: all 0.2s ease;
        }

        .modal-close:hover {
            background: #e0e0e0;
            color: var(--black);
        }

        /* Progress Bar */
        .progress-section {
            padding: 16px 24px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
            flex-shrink: 0;
        }

        .progress-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }

        .progress-label {
            font-size: 13px;
            color: var(--gray);
            font-weight: 500;
        }

        .progress-percent {
            font-size: 13px;
            color: var(--green);
            font-weight: 600;
        }

        .progress-bar-container {
            height: 6px;
            background: var(--light-gray);
            border-radius: 999px;
            overflow: hidden;
        }

        .progress-bar-fill {
            height: 100%;
            width: 0%;
            background: var(--green);
            border-radius: 999px;
            transition: width 0.5s ease;
        }

        /* Chat Area */
        .chat-area {
            flex: 1;
            overflow-y: auto;
            padding: 24px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .chat-message {
            display: flex;
            gap: 12px;
            animation: messageSlideIn 0.3s ease;
        }

        @keyframes messageSlideIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .message-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 600;
            overflow: hidden;
        }

        .message-avatar.bot {
            background: var(--green);
            color: white;
        }

        .message-avatar.bot img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .message-avatar.user {
            background: var(--light-gray);
            color: var(--black);
        }

        .message-content {
            flex: 1;
            background: var(--light-gray);
            padding: 12px 16px;
            border-radius: 16px;
            font-size: 15px;
            line-height: 1.6;
            color: var(--black);
        }

        .chat-message.user .message-content {
            background: var(--green);
            color: white;
        }

        .chat-message.user {
            flex-direction: row-reverse;
        }

        /* Choice Buttons */
        .choice-buttons {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-top: 16px;
        }

        .choice-button {
            padding: 14px 18px;
            background: white;
            border: 2px solid rgba(92, 157, 127, 0.15);
            border-radius: 12px;
            font-size: 15px;
            font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'Segoe UI', Arial, sans-serif;
            font-weight: 600;
            text-align: left;
            cursor: pointer;
            transition: all 0.2s ease;
            color: var(--black);
            position: relative;
        }

        .choice-button:hover:not(:disabled) {
            background: rgba(92, 157, 127, 0.04);
            border-color: var(--green);
            transform: translateX(4px);
            box-shadow: 0 4px 12px rgba(92, 157, 127, 0.1);
        }

        .choice-button:active {
            transform: translateX(2px);
        }

        .choice-button:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .choice-button::before {
            content: '→';
            position: absolute;
            right: 18px;
            opacity: 0;
            transition: opacity 0.2s ease;
            color: var(--green);
        }

        .choice-button:hover:not(:disabled)::before {
            opacity: 1;
        }

        /* Multi-choice checkbox buttons */
        .choice-button.multi-choice {
            padding-left: 45px;
        }

        .choice-button.multi-choice::after {
            content: '';
            position: absolute;
            left: 18px;
            top: 50%;
            transform: translateY(-50%);
            width: 18px;
            height: 18px;
            border: 2px solid rgba(92, 157, 127, 0.3);
            border-radius: 4px;
            transition: all 0.2s ease;
        }

        .choice-button.multi-choice.selected::after {
            background: var(--green);
            border-color: var(--green);
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='white' d='M13.854 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
        }

        .choice-button.multi-choice.selected {
            background: rgba(92, 157, 127, 0.04);
            border-color: var(--green);
        }

        .multi-choice-submit {
            margin-top: 8px;
            padding: 12px 24px;
            background: var(--green);
            color: white;
            border: none;
            border-radius: 999px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .multi-choice-submit:hover {
            background: var(--green-light);
        }

        /* File Upload */
        .file-upload-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--light-gray);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--gray);
            transition: all 0.2s ease;
            flex-shrink: 0;
        }

        .file-upload-btn svg {
            color: var(--gray);
            transition: color 0.2s ease;
        }

        .file-upload-btn:hover {
            background: #e0e0e0;
        }

        .file-upload-btn:hover svg {
            color: var(--green);
        }

        .file-upload-input {
            display: none;
        }

        .file-preview {
            display: none;
            padding: 8px 12px;
            background: var(--light-gray);
            border-radius: 8px;
            font-size: 13px;
            color: var(--gray);
            margin-bottom: 8px;
            align-items: center;
            gap: 8px;
        }

        .file-preview.active {
            display: flex;
        }

        .file-preview-remove {
            margin-left: auto;
            cursor: pointer;
            color: var(--gray);
        }

        .file-preview-remove:hover {
            color: var(--black);
        }

        /* Input Area */
        /* Back Button */
        .back-button {
            padding: 0;
            width: 44px;
            height: 44px;
            background: transparent;
            border: 1px solid rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            color: #666;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            flex-shrink: 0;
        }

        .back-button:hover:not(:disabled) {
            background: #f5f5f5;
            border-color: var(--green);
            color: var(--green);
        }

        .back-button:disabled {
            opacity: 0.2;
            cursor: not-allowed;
        }

        .back-button svg {
            width: 18px;
            height: 18px;
        }

        .input-area {
            padding: 16px 24px;
            border-top: 1px solid rgba(0, 0, 0, 0.06);
            flex-shrink: 0;
        }

        .input-form {
            display: flex;
            gap: 12px;
        }

        .interview-privacy-note {
            margin: 8px 0 0;
            font-size: 11px;
            color: #999;
            text-align: center;
            line-height: 1.4;
        }

        .interview-privacy-note a {
            color: #5C9D7F;
            text-decoration: underline;
        }

        .input-field {
            flex: 1;
            padding: 12px 16px;
            border: 1px solid rgba(0, 0, 0, 0.1);
            border-radius: 999px;
            font-size: 15px;
            font-family: inherit;
            outline: none;
            transition: border-color 0.2s ease;
        }

        .input-field:focus {
            border-color: var(--green);
        }

        .send-button {
            padding: 12px 24px;
            background: var(--green);
            color: white;
            border: none;
            border-radius: 999px;
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }

        .send-btn-icon { display: none; }

        .send-button:hover:not(:disabled) {
            background: var(--green-light);
        }

        .send-button:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        /* Strategy Message Styles */
        .strategy-message .message-content {
            background: white;
            max-width: 100%;
            padding: 0;
        }

        .strategy-content {
            background: white !important;
        }

        .strategy-header {
            background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
            padding: 24px;
            border-radius: 16px 16px 0 0;
            color: white;
        }

        .strategy-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 8px;
            font-family: 'Inter', sans-serif;
        }

        .strategy-subtitle {
            font-size: 15px;
            opacity: 0.9;
        }

        .strategy-body {
            padding: 32px 24px;
            line-height: 1.8;
            max-height: 60vh;
            overflow-y: auto;
        }

        .strategy-h2 {
            font-size: 22px;
            font-weight: 700;
            color: var(--black);
            margin: 32px 0 16px 0;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--green);
            font-family: 'Inter', sans-serif;
        }

        .strategy-h2:first-child {
            margin-top: 0;
        }

        .strategy-h3 {
            font-size: 18px;
            font-weight: 600;
            color: var(--black);
            margin: 24px 0 12px 0;
            font-family: 'Inter', sans-serif;
        }

        .strategy-p {
            margin: 12px 0;
            color: var(--black);
            font-size: 15px;
        }

        .strategy-ul {
            margin: 16px 0;
            padding-left: 0;
            list-style: none;
        }

        .strategy-li {
            padding: 8px 0 8px 28px;
            position: relative;
            color: var(--black);
            font-size: 15px;
        }

        .strategy-li::before {
            content: '•';
            position: absolute;
            left: 8px;
            color: var(--green);
            font-weight: 700;
            font-size: 18px;
        }

        .strategy-checkbox {
            padding: 10px 0 10px 32px;
            position: relative;
            color: var(--black);
            font-size: 15px;
            font-family: 'SF Mono', monospace;
        }

        .strategy-checkbox::before {
            content: '☐';
            position: absolute;
            left: 0;
            color: var(--green);
            font-size: 18px;
        }

        .strategy-hr {
            margin: 32px 0;
            border: none;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }

        .strategy-content strong {
            color: var(--green);
            font-weight: 600;
        }

        .strategy-footer {
            padding: 20px 24px;
            border-top: 1px solid rgba(0, 0, 0, 0.06);
            display: flex;
            gap: 12px;
            background: var(--light-gray);
            border-radius: 0 0 16px 16px;
        }

        .strategy-download-btn,
        .strategy-share-btn {
            flex: 1;
            padding: 12px 20px;
            border: none;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
            font-family: 'Inter', sans-serif;
        }

        .strategy-download-btn {
            background: var(--green);
            color: white;
        }

        .strategy-download-btn:hover {
            background: var(--green-light);
            transform: translateY(-1px);
        }

        .strategy-share-btn {
            background: white;
            color: var(--black);
            border: 1px solid rgba(0, 0, 0, 0.1);
        }

        .strategy-share-btn:hover {
            background: var(--light-gray);
            border-color: var(--green);
        }

        /* Clarification Block */
        .clarification-block {
            margin: 32px 0;
            padding: 24px;
            background: linear-gradient(135deg, #f0f9f4 0%, #fafaf8 100%);
            border-radius: 16px;
            border: 2px dashed rgba(92, 157, 127, 0.3);
        }

        .clarification-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }

        .clarification-icon {
            font-size: 28px;
        }

        .clarification-title {
            font-size: 18px;
            font-weight: 600;
            color: var(--black);
            font-family: 'Inter', sans-serif;
        }

        .clarification-text {
            font-size: 15px;
            color: var(--gray);
            margin-bottom: 16px;
            line-height: 1.6;
        }

        .clarification-form {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .clarification-input {
            width: 100%;
            padding: 14px 16px;
            border: 1px solid rgba(0, 0, 0, 0.1);
            border-radius: 12px;
            font-size: 15px;
            font-family: inherit;
            resize: vertical;
            min-height: 80px;
            transition: border-color 0.2s ease;
        }

        .clarification-input:focus {
            outline: none;
            border-color: var(--green);
            box-shadow: 0 0 0 3px rgba(92, 157, 127, 0.1);
        }

        .clarification-submit {
            align-self: flex-start;
            padding: 12px 24px;
            background: var(--green);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
            font-family: 'Inter', sans-serif;
        }

        .clarification-submit:hover:not(:disabled) {
            background: var(--green-light);
            transform: translateY(-1px);
        }

        .clarification-submit:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        /* Import visual components styles */
        /* Budget Chart */
        .budget-chart {
            margin: 24px 0;
            padding: 24px;
            background: linear-gradient(135deg, #f0f9f4 0%, #fafaf8 100%);
            border-radius: 16px;
            border: 1px solid rgba(92, 157, 127, 0.15);
        }

        .budget-item {
            margin-bottom: 20px;
        }

        .budget-item:last-child {
            margin-bottom: 0;
        }

        .budget-label {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
            font-size: 15px;
        }

        .budget-name {
            font-weight: 500;
            color: #1a1a1a;
        }

        .budget-amount {
            font-weight: 600;
            color: #5C9D7F;
            font-family: 'SF Mono', monospace;
        }

        .budget-bar {
            height: 12px;
            background: rgba(0, 0, 0, 0.05);
            border-radius: 6px;
            overflow: hidden;
        }

        .budget-fill {
            height: 100%;
            background: linear-gradient(90deg, #5C9D7F 0%, #7AB69A 100%);
            transition: width 0.6s ease;
            border-radius: 6px;
        }

        /* Timeline Chart */
        .timeline-chart {
            margin: 32px 0;
            padding: 32px 0;
        }

        .timeline-month {
            display: flex;
            gap: 24px;
            margin-bottom: 40px;
            position: relative;
        }

        .timeline-month:last-child {
            margin-bottom: 0;
        }

        .timeline-marker {
            position: relative;
            flex-shrink: 0;
        }

        .timeline-dot {
            width: 20px;
            height: 20px;
            background: #5C9D7F;
            border-radius: 50%;
            border: 4px solid #f0f9f4;
            box-shadow: 0 0 0 4px rgba(92, 157, 127, 0.1);
        }

        .timeline-line {
            position: absolute;
            left: 50%;
            top: 20px;
            width: 2px;
            height: 100px;
            background: linear-gradient(180deg, #5C9D7F 0%, rgba(92, 157, 127, 0.3) 100%);
            transform: translateX(-50%);
        }

        .timeline-content {
            flex: 1;
            padding: 8px 0;
        }

        .timeline-month-number {
            font-size: 13px;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 4px;
        }

        .timeline-month-title {
            font-size: 20px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 8px;
            font-family: 'Inter', sans-serif;
        }

        .timeline-month-tasks {
            font-size: 14px;
            color: #666;
            margin-bottom: 8px;
        }

        .timeline-month-result {
            font-size: 15px;
            color: #1a1a1a;
            line-height: 1.6;
        }

        /* Metrics Grid */
        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 16px;
            margin: 24px 0;
        }

        .metric-card {
            background: white;
            border: 1px solid rgba(0, 0, 0, 0.06);
            border-radius: 16px;
            padding: 20px;
            transition: all 0.2s ease;
        }

        .metric-card:hover {
            border-color: #5C9D7F;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(92, 157, 127, 0.15);
        }

        .metric-icon {
            font-size: 32px;
            margin-bottom: 12px;
        }

        .metric-label {
            font-size: 13px;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 12px;
        }

        .metric-values {
            display: flex;
            align-items: baseline;
            gap: 8px;
            margin-bottom: 12px;
            flex-wrap: wrap;
        }

        .metric-current {
            font-size: 20px;
            font-weight: 600;
            color: #666;
        }

        .metric-arrow {
            font-size: 16px;
            color: #5C9D7F;
        }

        .metric-target {
            font-size: 28px;
            font-weight: 700;
            color: #5C9D7F;
        }

        .metric-unit {
            font-size: 14px;
            color: #666;
        }

        .metric-progress {
            height: 6px;
            background: rgba(0, 0, 0, 0.05);
            border-radius: 3px;
            overflow: hidden;
        }

        .metric-progress-bar {
            height: 100%;
            background: linear-gradient(90deg, #5C9D7F 0%, #7AB69A 100%);
            border-radius: 3px;
            transition: width 0.6s ease;
        }

        /* ROI Calculator */
        .roi-calculator {
            margin: 32px 0;
            padding: 32px;
            background: linear-gradient(135deg, #f0f9f4 0%, #e8f5ed 100%);
            border-radius: 20px;
            border: 2px solid #5C9D7F;
        }

        .roi-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 32px;
            margin-bottom: 28px;
            flex-wrap: wrap;
        }

        .roi-item {
            text-align: center;
        }

        .roi-label {
            font-size: 13px;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 8px;
        }

        .roi-value {
            font-size: 28px;
            font-weight: 700;
            font-family: 'SF Mono', monospace;
        }

        .roi-investment {
            color: #666;
        }

        .roi-revenue {
            color: #5C9D7F;
        }

        .roi-operator {
            font-size: 32px;
            color: #5C9D7F;
            font-weight: 300;
        }

        .roi-result {
            display: flex;
            justify-content: space-around;
            padding-top: 28px;
            border-top: 2px solid rgba(92, 157, 127, 0.3);
            flex-wrap: wrap;
            gap: 20px;
        }

        .roi-profit,
        .roi-percentage {
            text-align: center;
        }

        .roi-profit-label,
        .roi-percentage-label {
            font-size: 13px;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 8px;
            display: block;
        }

        .roi-profit-value {
            font-size: 32px;
            font-weight: 700;
            color: #4CAF50;
            font-family: 'SF Mono', monospace;
        }

        .roi-percentage-value {
            font-size: 40px;
            font-weight: 700;
            color: #5C9D7F;
            font-family: 'Inter', sans-serif;
        }

        /* Achievement Popup */
        .achievement-popup {
            position: fixed;
            top: 100px;
            right: 24px;
            background: white;
            padding: 20px 24px;
            border-radius: 16px;
            box-shadow: 0 20px 50px rgba(92, 157, 127, 0.3);
            border: 2px solid var(--green);
            z-index: 2000;
            min-width: 300px;
            opacity: 0;
            transform: translateX(400px);
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .achievement-popup.show {
            opacity: 1;
            transform: translateX(0);
        }

        .achievement-icon {
            font-size: 48px;
            text-align: center;
            margin-bottom: 12px;
        }

        .achievement-title {
            font-size: 18px;
            font-weight: 600;
            color: var(--green);
            text-align: center;
            margin-bottom: 8px;
        }

        .achievement-desc {
            font-size: 14px;
            color: var(--gray);
            text-align: center;
        }

        /* Typing Indicator */
        .typing-indicator {
            display: flex;
            gap: 4px;
            padding: 12px 16px;
            background: var(--light-gray);
            border-radius: 16px;
            width: fit-content;
        }

        .typing-dot {
            width: 8px;
            height: 8px;
            background: var(--gray);
            border-radius: 50%;
            animation: typingBounce 1.4s infinite;
        }

        .typing-dot:nth-child(2) {
            animation-delay: 0.2s;
        }

        .typing-dot:nth-child(3) {
            animation-delay: 0.4s;
        }

        @keyframes typingBounce {
            0%, 60%, 100% {
                transform: translateY(0);
            }
            30% {
                transform: translateY(-8px);
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 20px;
            }

            .header-inner {
                flex-wrap: wrap;
                gap: 12px;
            }

            .nav {
                display: none;
            }

            .shell-inner {
                padding: 28px 20px 34px;
                border-radius: 24px;
            }

            .hero {
                margin-bottom: 32px;
                padding-bottom: 28px;
            }

            section {
                margin-bottom: 32px;
            }

            h1 {
                font-size: 30px;
            }

            h2 {
                font-size: 24px;
            }

            .audience-grid,
            .steps-grid,
            .features-grid {
                grid-template-columns: 1fr;
            }

            .modal-container {
                width: 100%;
                height: 100vh;
                max-height: none;
                border-radius: 0;
                margin: 0;
            }

            .modal-overlay.active .modal-container {
                transform: translateX(0);
            }

            .achievement-popup {
                right: 12px;
                left: 12px;
                min-width: auto;
            }
        }

        @media (prefers-reduced-motion: no-preference) {
            html {
                scroll-behavior: smooth;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .shell-inner > section {
                animation: none;
                opacity: 1;
            }
        }

        /* Loading Overlay */
        .loading-overlay {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: linear-gradient(135deg, #0c1a13 0%, #0f2118 100%);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 10000;
        }

        .loading-overlay.active { display: flex; }

        /* ── Generation screen ── */
        .gen-screen {
            width: 100%;
            max-width: 520px;
            padding: 40px 24px;
            text-align: center;
            color: #fff;
        }

        .gen-logo {
            font-family: 'Manrope', sans-serif;
            font-weight: 800;
            font-size: 16px;
            letter-spacing: 4px;
            color: rgba(255,255,255,0.4);
            margin-bottom: 40px;
        }

        .gen-spinner-wrap {
            position: relative;
            width: 100px;
            height: 100px;
            margin: 0 auto 32px;
        }

        .gen-spinner {
            width: 100px;
            height: 100px;
            animation: gen-rotate 2s linear infinite;
        }

        .gen-spinner-arc {
            stroke-dasharray: 80, 164;
            stroke-dashoffset: 0;
            animation: gen-dash 1.8s ease-in-out infinite;
        }

        @keyframes gen-rotate { 100% { transform: rotate(360deg); } }
        @keyframes gen-dash {
            0%   { stroke-dasharray: 10, 164; stroke-dashoffset: 0; }
            50%  { stroke-dasharray: 100, 164; stroke-dashoffset: -40; }
            100% { stroke-dasharray: 10, 164; stroke-dashoffset: -164; }
        }

        .gen-percent {
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            font-family: 'Manrope', sans-serif;
            font-weight: 800;
            font-size: 20px;
            color: #5C9D7F;
        }

        .gen-title {
            font-family: 'Manrope', sans-serif;
            font-weight: 800;
            font-size: 28px;
            margin-bottom: 10px;
            color: #fff;
        }

        .gen-subtitle {
            font-size: 15px;
            color: rgba(255,255,255,0.45);
            margin-bottom: 28px;
            line-height: 1.5;
        }

        .gen-progress-bar {
            width: 100%;
            height: 4px;
            background: rgba(255,255,255,0.08);
            border-radius: 999px;
            overflow: hidden;
            margin-bottom: 28px;
        }

        .gen-progress-fill {
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, #5C9D7F, #7ab897);
            border-radius: 999px;
            transition: width 0.4s ease;
        }

        .gen-stages {
            display: flex;
            flex-direction: column;
            gap: 10px;
            text-align: left;
            margin-bottom: 24px;
        }

        .gen-stage {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 16px;
            border-radius: 10px;
            font-size: 14px;
            color: rgba(255,255,255,0.25);
            transition: all 0.35s ease;
        }

        .gen-stage-dot {
            width: 8px; height: 8px;
            border-radius: 50%;
            background: rgba(255,255,255,0.15);
            flex-shrink: 0;
            transition: all 0.35s ease;
        }

        .gen-stage.gen-stage-active {
            color: rgba(255,255,255,0.9);
            background: rgba(92,157,127,0.12);
        }

        .gen-stage.gen-stage-active .gen-stage-dot {
            background: #5C9D7F;
            box-shadow: 0 0 8px rgba(92,157,127,0.6);
        }

        .gen-stage.gen-stage-done {
            color: rgba(255,255,255,0.45);
        }

        .gen-stage.gen-stage-done .gen-stage-dot {
            background: #5C9D7F;
            opacity: 0.5;
        }

        .gen-note {
            font-size: 13px;
            color: rgba(255,255,255,0.2);
        }

        /* ── Ready screen ── */
        .gen-ready-screen {
            opacity: 0;
        }

        .gen-ready-badge {
            width: 72px; height: 72px;
            border-radius: 50%;
            background: rgba(92,157,127,0.15);
            border: 2px solid rgba(92,157,127,0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            color: #5C9D7F;
            margin: 0 auto 24px;
            animation: gen-pop 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
        }

        @keyframes gen-pop {
            0%   { transform: scale(0.5); opacity: 0; }
            100% { transform: scale(1); opacity: 1; }
        }

        .gen-ready-title {
            font-family: 'Manrope', sans-serif;
            font-weight: 800;
            font-size: 36px;
            margin-bottom: 12px;
        }

        .gen-ready-sub {
            font-size: 16px;
            color: rgba(255,255,255,0.5);
            margin-bottom: 36px;
            line-height: 1.6;
        }

        .gen-ready-stats {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 24px;
            margin-bottom: 36px;
        }

        .gen-ready-stat { text-align: center; }

        .gen-ready-stat-num {
            font-family: 'Manrope', sans-serif;
            font-weight: 800;
            font-size: 36px;
            color: #5C9D7F;
            line-height: 1;
        }

        .gen-ready-stat-label {
            font-size: 13px;
            color: rgba(255,255,255,0.4);
            margin-top: 4px;
        }

        .gen-ready-stat-divider {
            width: 1px;
            height: 40px;
            background: rgba(255,255,255,0.1);
        }

        .gen-ready-btn {
            display: inline-block;
            padding: 16px 48px;
            background: #5C9D7F;
            color: #fff;
            font-family: 'Manrope', sans-serif;
            font-weight: 700;
            font-size: 17px;
            border: none;
            border-radius: 999px;
            cursor: pointer;
            transition: background 0.2s, transform 0.15s;
            margin-bottom: 16px;
        }

        .gen-ready-btn:hover {
            background: #4a8c6f;
            transform: translateY(-1px);
        }

        .gen-ready-hint {
            font-size: 13px;
            color: rgba(255,255,255,0.25);
        }

        /* Legacy card (fallback, hidden) */
        .loading-card {
            background: white;
            border-radius: 16px;
            padding: 40px;
            max-width: 500px;
            width: 90%;
            text-align: center;
        }

        .loading-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 24px;
        }

        .spinner {
            animation: rotate 2s linear infinite;
        }

        .spinner .path {
            stroke: #5C9D7F;
            stroke-linecap: round;
            animation: dash 1.5s ease-in-out infinite;
        }

        @keyframes rotate {
            100% { transform: rotate(360deg); }
        }

        @keyframes dash {
            0% {
                stroke-dasharray: 1, 150;
                stroke-dashoffset: 0;
            }
            50% {
                stroke-dasharray: 90, 150;
                stroke-dashoffset: -35;
            }
            100% {
                stroke-dasharray: 90, 150;
                stroke-dashoffset: -124;
            }
        }

        .loading-card h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 24px;
            color: #1a1a1a;
        }

        .loading-progress-bar {
            width: 100%;
            height: 8px;
            background: #f0f0f0;
            border-radius: 999px;
            overflow: hidden;
            margin-bottom: 12px;
        }

        .loading-progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #5C9D7F 0%, #7AB897 100%);
            width: 0%;
            transition: width 0.3s ease;
        }

        .loading-percent {
            font-size: 18px;
            font-weight: 600;
            color: #5C9D7F;
            margin-bottom: 32px;
        }

        .loading-stages {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 24px;
            text-align: left;
        }

        .loading-stage {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px;
            border-radius: 8px;
            background: #f5f5f5;
            opacity: 0.3;
            transition: all 0.3s ease;
        }

        .loading-stage.active {
            opacity: 1;
            background: #f0f7f4;
        }

        .loading-stage.completed {
            opacity: 0.6;
        }

        .stage-icon {
            font-size: 24px;
        }

        .stage-text {
            font-size: 14px;
            color: #1a1a1a;
        }

        .loading-note {
            font-size: 13px;
            color: #666;
            margin-top: 16px;
        }
.strategy-copy-btn {
    background: linear-gradient(135deg, #5C9D7F 0%, #4a8c6f 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(92, 157, 127, 0.3);
}

.strategy-copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(92, 157, 127, 0.4);
}

.strategy-copy-btn.copied {
    background: linear-gradient(135deg, #4CAF50 0%, #43a047 100%);
    cursor: default;
}

.strategy-footer {
    margin-top: 24px;
    display: flex;
    justify-content: center;
}

/* Стили для уведомления */
.strategy-notification {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
}

.notification-icon {
    font-size: 20px;
}

.notification-content {
    line-height: 1.4;
}

/* ==================== HERO STATS & PRICE ==================== */
.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hero-price-note {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-free-badge {
    display: inline-block;
    background: rgba(92, 157, 127, 0.12);
    color: var(--green);
    font-size: 13px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 999px;
    border: 1px solid rgba(92, 157, 127, 0.25);
}

.price-launch-tag {
    display: inline-block;
    background: rgba(255, 160, 50, 0.12);
    color: #d4861a;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 999px;
    border: 1px solid rgba(255, 160, 50, 0.3);
    white-space: nowrap;
    vertical-align: middle;
}

.price-paid-note {
    font-size: 13px;
    color: var(--gray);
    padding-left: 4px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    margin-top: 4px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    padding: 0 24px 0 0;
}

.hero-stat:first-child {
    padding-left: 0;
}

.hero-stat-num {
    font-size: 32px;
    font-weight: 700;
    color: var(--black);
    line-height: 1;
    letter-spacing: -0.03em;
}

.hero-stat-label {
    font-size: 13px;
    color: var(--gray);
    margin-top: 3px;
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(0,0,0,0.1);
    margin: 0 24px 0 0;
}

/* ==================== 19 SECTIONS GRID ==================== */
.sections-intro {
    max-width: 680px;
    margin-bottom: 24px !important;
}

.sections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 10px;
    margin-top: 8px;
}

.section-chip {
    display: grid;
    grid-template-columns: 28px 1fr;
    grid-template-rows: auto auto;
    align-items: start;
    gap: 0 10px;
    background: var(--card-bg);
    border-radius: 8px;
    padding: 12px 14px;
    border: 1px solid var(--border);
    transition: transform 0.18s var(--ease-std), box-shadow 0.18s var(--ease-std),
                opacity 0.5s ease, translate 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    opacity: 0;
    translate: 0 28px;
}

.section-chip.chip-visible {
    opacity: 1;
    translate: 0 0;
}

.section-chip:hover {
    transform: translate(-2px, -2px);
    box-shadow: 3px 3px 0 var(--black);
}

.section-chip.free {
    border-color: rgba(92, 157, 127, 0.2);
    background: rgba(92, 157, 127, 0.04);
}

.chip-num {
    font-size: 12px;
    font-weight: 700;
    color: var(--gray);
    letter-spacing: 0.04em;
    grid-column: 1;
    grid-row: 1 / 3;
    align-self: center;
    padding-top: 1px;
}

.section-chip.free .chip-num {
    color: var(--green);
}

.chip-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    line-height: 1.3;
    grid-column: 2;
    grid-row: 1;
}

.chip-badge {
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 999px;
    white-space: nowrap;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    grid-column: 2;
    grid-row: 2;
    margin-top: 5px;
    align-self: start;
    justify-self: start;
}

.free-badge {
    background: rgba(92, 157, 127, 0.12);
    color: var(--green);
}

.paid-badge {
    background: rgba(0,0,0,0.05);
    color: var(--gray);
}

.section-chip.partial {
    border-color: rgba(92, 157, 127, 0.15);
    background: rgba(92, 157, 127, 0.02);
    border-style: dashed;
}

.section-chip.partial .chip-num {
    color: var(--green-light);
}

.partial-badge {
    background: rgba(92, 157, 127, 0.08);
    color: var(--green);
    border: 1px dashed rgba(92, 157, 127, 0.4);
}

.sections-cta {
    margin-top: 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.sections-cta .small-note {
    margin-top: 0;
}

/* ==================== STRATEGY SCREENSHOTS ==================== */
.strategy-video-wrap {
    margin-top: 32px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e2dc;
    box-shadow: 0 8px 40px rgba(0,0,0,0.10);
    background: #000;
    line-height: 0;
}

.strategy-video {
    width: 100%;
    display: block;
    max-height: 640px;
    object-fit: contain;
    background: #000;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 28px;
}

.strategy-preview {
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
    position: relative;
    transition: transform 0.2s var(--ease-std), box-shadow 0.2s var(--ease-std);
}

.strategy-preview:hover {
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 var(--black);
}

.preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px 10px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.preview-tag {
    font-size: 12px;
    font-weight: 600;
    color: var(--green);
    background: rgba(92, 157, 127, 0.1);
    padding: 3px 10px;
    border-radius: 999px;
}

.preview-status {
    font-size: 11px;
    color: var(--gray);
}

.preview-body {
    padding: 16px;
}

.preview-section-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 8px;
}

.preview-line {
    height: 10px;
    background: rgba(0,0,0,0.06);
    border-radius: 5px;
    margin-bottom: 7px;
}

.preview-line.w80 { width: 80%; }
.preview-line.w60 { width: 60%; }
.preview-line.w90 { width: 90%; }
.preview-line.w70 { width: 70%; }
.preview-line.w85 { width: 85%; }
.preview-line.w55 { width: 55%; }
.preview-line.w75 { width: 75%; }
.preview-line.w65 { width: 65%; }
.preview-line.w50 { width: 50%; }

.preview-metrics {
    display: flex;
    gap: 12px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.preview-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pm-num {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    line-height: 1;
}

.pm-label {
    font-size: 10px;
    color: var(--gray);
    margin-top: 2px;
    text-align: center;
}

.preview-blur {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 90px;
    background: linear-gradient(to bottom, transparent, rgba(254,254,254,0.97) 55%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 16px;
}

.preview-lock {
    font-size: 11px;
    font-family: var(--font-mono);
    color: var(--gray);
    font-weight: 500;
    letter-spacing: 0.04em;
}

/* ---- Реалистичные мокапы section-card ---- */
.mock-page {
    background: var(--bg-warm);
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
}

.mock-topbar {
    background: var(--black);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mock-logo {
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    color: white;
    text-transform: uppercase;
}

.mock-nav-pills {
    display: flex;
    gap: 6px;
}

.mock-nav-pill {
    width: 28px;
    height: 6px;
    background: rgba(255,255,255,0.15);
    border-radius: 3px;
}

.mock-hero-bar {
    background: #1a1a1a;
    padding: 14px 14px 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mock-breadcrumb {
    font-family: var(--font-mono);
    font-size: 9px;
    color: rgba(255,255,255,0.3);
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

.mock-strategy-title {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 800;
    color: white;
    letter-spacing: -0.3px;
    margin-bottom: 6px;
}

.mock-meta {
    display: flex;
    gap: 12px;
}

.mock-meta-item {
    font-family: var(--font-mono);
    font-size: 9px;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.3px;
}

.mock-tabs {
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 0 14px;
    display: flex;
    gap: 0;
    overflow: hidden;
}

.mock-tab {
    font-family: var(--font-display);
    font-size: 9px;
    font-weight: 500;
    color: var(--gray);
    padding: 9px 10px;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
}

.mock-tab.active {
    color: var(--green);
    border-bottom-color: var(--green);
    font-weight: 700;
}

.mock-content {
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mock-section-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.mock-section-card:hover {
    transform: translate(-1px, -1px);
    box-shadow: 2px 2px 0 var(--black);
}

.mock-section-header {
    display: grid;
    grid-template-columns: 46px 1fr;
    border-bottom: 1px solid var(--border);
}

.mock-num-col {
    background: var(--bg-warm);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    gap: 2px;
}

.mock-num {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 700;
    color: var(--green);
    letter-spacing: -0.5px;
}

.mock-icon-line {
    width: 12px;
    height: 2px;
    background: rgba(92,157,127,0.3);
    border-radius: 1px;
}

.mock-title-col {
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
}

.mock-section-title {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    color: var(--black);
}

.mock-section-label {
    font-family: var(--font-mono);
    font-size: 8px;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.mock-section-body {
    padding: 10px 12px 10px 12px;
}

.mock-line {
    height: 6px;
    background: rgba(0,0,0,0.06);
    border-radius: 3px;
    margin-bottom: 5px;
}

.mock-line.w90 { width: 90%; }
.mock-line.w75 { width: 75%; }
.mock-line.w60 { width: 60%; }
.mock-line.w50 { width: 50%; }
.mock-line.w40 { width: 40%; }

.mock-badge-row {
    display: flex;
    gap: 6px;
    margin-top: 8px;
}

.mock-badge {
    font-family: var(--font-mono);
    font-size: 8px;
    font-weight: 600;
    padding: 3px 7px;
    border-radius: 4px;
    letter-spacing: 0.3px;
}

.mock-badge.green {
    background: var(--green-faint);
    color: var(--green);
}

.mock-badge.gray {
    background: var(--light-gray);
    color: var(--gray);
}

/* ==================== TESTIMONIALS ==================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 28px;
}

.testimonial-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid var(--border);
    transition: transform 0.18s var(--ease-std), box-shadow 0.18s var(--ease-std);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.testimonial-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 var(--black);
}

.testimonial-stars {
    font-size: 18px;
    color: #f59e0b;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--black);
    margin-bottom: 0;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(92, 157, 127, 0.12);
    color: var(--green);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    border: 2px solid rgba(92, 157, 127, 0.2);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
}

.testimonial-role {
    font-size: 13px;
    color: var(--gray);
    margin-top: 2px;
}

/* ── Leave a review button ── */
.reviews-cta {
    text-align: center;
    margin-top: 32px;
}

.btn-review-leave {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: 1.5px solid var(--green);
    border-radius: 999px;
    background: transparent;
    color: var(--green);
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.btn-review-leave:hover {
    background: var(--green);
    color: #fff;
}

/* ── Review modal ── */
.review-modal-container {
    max-width: 480px;
}

.review-modal-body {
    padding: 8px 0 4px;
}

.review-modal-hint {
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
    line-height: 1.5;
}

.review-stars-row {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
}

.review-star {
    font-size: 32px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.15s, transform 0.1s;
    line-height: 1;
}

.review-star:hover,
.review-star.active {
    color: #f59e0b;
}

.review-star:hover {
    transform: scale(1.15);
}

.review-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e8e8e0;
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    margin-bottom: 12px;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.review-input:focus { border-color: var(--green); }

.review-textarea {
    resize: vertical;
    min-height: 100px;
}

.review-submit-btn {
    width: 100%;
    margin-top: 4px;
}

.review-success {
    text-align: center;
    padding: 20px 0 10px;
}

.review-success-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.review-success h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.review-success p {
    color: #888;
    font-size: 14px;
}

.review-promo-block {
    background: linear-gradient(135deg, #edf5f0, #f5f9f7);
    border: 1.5px solid rgba(92,157,127,0.3);
    border-radius: 14px;
    padding: 20px;
    margin: 16px 0 0;
    text-align: center;
}

.review-promo-label {
    font-size: 13px;
    font-weight: 600;
    color: #5C9D7F;
    margin-bottom: 12px;
}

.review-promo-code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #1a1a1a;
    background: #fff;
    border: 1.5px dashed rgba(92,157,127,0.4);
    border-radius: 8px;
    padding: 10px 20px;
    margin-bottom: 12px;
    display: inline-block;
}

.review-promo-copy {
    display: inline-block;
    padding: 8px 20px;
    border: 1.5px solid #5C9D7F;
    border-radius: 999px;
    background: transparent;
    color: #5C9D7F;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 12px;
}

.review-promo-copy:hover { background: #5C9D7F; color: #fff; }

.review-promo-hint {
    font-size: 12px;
    color: #aaa;
    line-height: 1.5;
    margin: 0;
}

/* ==================== CTA BUTTONS ROW ==================== */
.cta-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.cta-price-note {
    font-size: 14px;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-divider {
    opacity: 0.4;
}

.cta-guarantees {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
}

.cta-guarantee-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--gray);
    line-height: 1.5;
}

.cta-guarantee-item::before {
    content: '✓';
    color: var(--green);
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
    line-height: 1.5;
}

/* ── HERO PRICE ANCHOR ── */
.hero-price-anchor {
    font-size: 13px;
    color: var(--gray-light);
    margin-top: 12px;
    margin-bottom: 4px;
    line-height: 1.5;
}

/* ── STATS SECTION ── */
.stats-section {
    margin: 0 0 64px;
}

.stats-section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green);
    opacity: 0.6;
    margin-bottom: 24px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.stats-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px 20px;
}

.stats-card-accent {
    background: var(--green-faint);
    border-color: rgba(92,157,127,0.25);
}

.stats-num {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: var(--black);
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 10px;
}

.stats-card-accent .stats-num {
    color: var(--green);
}

.stats-text {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.55;
    margin-bottom: 10px;
}

.stats-source {
    font-size: 11px;
    color: var(--gray-light);
    font-style: italic;
}

@media (max-width: 900px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
    .stats-grid { grid-template-columns: 1fr; }
    .stats-num { font-size: 28px; }
}

/* ==================== ANIMATION DELAYS (extended) ==================== */
.shell-inner > section:nth-of-type(8)  { animation-delay: 0.42s; }
.shell-inner > section:nth-of-type(9)  { animation-delay: 0.48s; }
.shell-inner > section:nth-of-type(10) { animation-delay: 0.54s; }

/* ==================== MOBILE: new sections ==================== */
@media (max-width: 768px) {
    .hero-cta-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        margin-bottom: 24px;
    }

    .hero-stats {
        gap: 0;
    }

    .hero-stat {
        padding: 0 16px 0 0;
    }

    .hero-stat-divider {
        margin: 0 16px 0 0;
    }

    .hero-stat-num {
        font-size: 26px;
    }

    .sections-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .sections-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .screenshots-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    .header-inner {
        flex-wrap: nowrap;
        gap: 10px;
    }

    .logo {
        font-size: 13px;
        letter-spacing: 0.15em;
    }

    .nav-login,
    .nav-cta {
        padding: 8px 14px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 26px; }
    h2 { font-size: 20px; }

    .shell-inner { padding: 20px 16px 28px; border-radius: 20px; }
    .container { padding: 0 16px; }

    .hero-stats { flex-wrap: wrap; gap: 12px; }
    .hero-stat-divider { display: none; }
    .hero-stat { padding: 0; }
    .hero-stat-num { font-size: 22px; }

    .sections-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .section-chip {
        display: grid;
        grid-template-columns: 22px 1fr;
        grid-template-rows: auto auto;
        padding: 10px 10px;
        gap: 0 7px;
        align-items: start;
    }

    .chip-num {
        font-size: 11px;
        grid-row: 1 / 3;
        align-self: start;
        padding-top: 2px;
        min-width: unset;
    }

    .chip-title { font-size: 12px; grid-column: 2; grid-row: 1; line-height: 1.3; }

    .chip-badge { display: none; }

    .free-badge, .partial-badge {
        display: inline-block;
        font-size: 9px;
        padding: 1px 5px;
        grid-column: 2;
        grid-row: 2;
        margin-top: 3px;
        width: fit-content;
    }

    .header-auth { gap: 8px; }
    .nav-login, .nav-register { padding: 8px 14px; font-size: 12px; }

    .pricing-card { padding: 24px 20px; }
    .pricing-price { font-size: 36px; }

    .hero-cta-row .btn-primary, .hero-cta-row .btn-secondary { width: 100%; justify-content: center; }
}
/* ==================== SCROLL REVEAL ANIMATION ==================== */
.reveal-card {
    opacity: 0;
    translate: 0 32px;
    transition: opacity 0.55s ease, translate 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-card.is-visible {
    opacity: 1;
    translate: 0 0;
}
/* ==================== USER MENU (avatar dropdown) ==================== */
.user-menu {
    position: relative;
}

.user-avatar-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: var(--green);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: box-shadow 0.2s, transform 0.15s;
}

.user-avatar-btn:hover {
    box-shadow: 0 4px 14px rgba(92, 157, 127, 0.35);
    transform: translateY(-1px);
}

.user-avatar-letter {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 240px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
    z-index: 50;
}

.user-menu.open .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
}

.user-dropdown-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.user-dropdown-email {
    font-size: 13px;
    color: var(--gray);
    word-break: break-all;
    line-height: 1.4;
}

.user-dropdown-divider {
    height: 1px;
    background: var(--border);
    margin: 6px 4px;
}

.user-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    border: none;
    background: transparent;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    text-decoration: none;
    text-align: left;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.user-dropdown-item svg {
    color: var(--gray);
    flex-shrink: 0;
    transition: color 0.15s;
}

.user-dropdown-item:hover {
    background: rgba(92, 157, 127, 0.08);
    color: var(--green);
}

.user-dropdown-item:hover svg {
    color: var(--green);
}

.user-dropdown-item.logout:hover {
    background: rgba(220, 53, 69, 0.08);
    color: #dc3545;
}

.user-dropdown-item.logout:hover svg {
    color: #dc3545;
}

/* На мобильном дропдаун не должен вылезать за экран */
@media (max-width: 480px) {
    .user-dropdown {
        right: 0;
        min-width: 220px;
    }
}
.chip-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
