* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --green: #5C9D7F;
            --green-light: #7AB69A;
            --black: #1a1a1a;
            --gray: #666;
            --light-gray: #f3f3f3;
            --bg-warm: #f5f5f0; /* Было #fafaf8, стало темнее */
            --card-bg: #fefefe; /* Было #ffffff, стало чуть темнее для контраста */

            --transition-fast: 0.18s ease-out;
            --transition-med: 0.28s ease-out;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'Segoe UI', Arial, sans-serif;
            color: var(--black);
            background: var(--bg-warm);
            line-height: 1.6;
            overflow-x: hidden;
        }

        body.modal-open {
            overflow: hidden;
        }

        /* Accent typography */
        h1, h2, h3, .modal-title, .logo {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
        }

        .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: 16px;
            font-weight: 600;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--black);
        }

        .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%;
        }

        .nav-cta {
            padding: 9px 18px;
            border-radius: 999px;
            background: var(--black);
            color: #fff;
            text-decoration: none;
            font-size: 13px;
            font-weight: 500;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
            cursor: pointer;
            border: none;
        }

        .nav-cta:hover {
            background: #000000;
            transform: translateY(-1px);
            box-shadow: 0 8px 26px rgba(0, 0, 0, 0.2);
        }

        .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: 280px;
            background: var(--bg-warm);
            overflow: hidden;
        }

        .hero-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.25; /* Было 0.15, стало 0.25 - ярче */
        }

        @media (max-width: 768px) {
            .hero-animation-section {
                height: 200px;
            }
        }

        .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(36px, 4.6vw, 52px);
            font-weight: 600;
            line-height: 1.15;
            margin-bottom: 18px;
            letter-spacing: -0.02em;
            max-width: 720px;
        }

        .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: 20px;
            padding: 24px;
            border: 1px solid rgba(0, 0, 0, 0.04);
        }

        .step-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
        }

        .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: 20px;
            padding: 22px;
            border: 1px solid rgba(0, 0, 0, 0.04);
        }

        .feature-card:hover {
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
            transform: translateY(-2px);
        }

        .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: 20px;
            padding: 24px;
            border: 1px solid rgba(0, 0, 0, 0.04);
        }

        .audience-card:hover {
            box-shadow: 0 14px 36px rgba(0, 0, 0, 0.06);
            transform: translateY(-2px);
        }

        .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: 24px;
            padding: 28px 26px;
            border: 1px solid rgba(0, 0, 0, 0.04);
            text-align: left;
            box-shadow: 0 18px 40px rgba(0, 0, 0, 0.04);
        }

        .cta-card:hover {
            box-shadow: 0 26px 60px rgba(0, 0, 0, 0.07);
            transform: translateY(-2px);
        }

        .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);
        }

        /* 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;
        }

        .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;
        }

        .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: rgba(0, 0, 0, 0.85);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 10000;
        }

        .loading-overlay.active {
            display: flex;
        }

        .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;
}