.constructor-brief {}

	.constructor-brief #promo-wrap { height: auto; padding-top: 5%;}

	#container {position:relative; max-width: 1000px;background-color: #fff;margin: auto; height: auto; margin-top: 30px; margin-bottom:50px; padding-bottom:30px;}

    #container-wrap{max-width:95%;margin:0px auto;position:relative;}
		
      .container {
            max-width: 1000px;
            width: 100%;
            margin: 0 auto;
        }

        /* Карточка */
        .brief-card {
            background: #ffffff;
            border-radius: 40px;
            padding: 50px;
            box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.15);
            border: 1px solid rgba(37, 99, 235, 0.05);
        }

        /* Прогресс */
        .progress-container {
            margin-bottom: 40px;
        }

        .progress-steps {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
        }

        .progress-step {
            color: #94a3b8;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            position: relative;
        }

        .progress-step.active {
            color: #2563eb;
        }

        .progress-step.active::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, #2563eb, #7c3aed);
        }

        .progress-bar {
            height: 4px;
            background: #e2e8f0;
            border-radius: 4px;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #2563eb, #7c3aed);
            width: 0%;
            transition: width 0.4s ease;
        }

        /* Шаги */
        .step {
            display: none;
            animation: fadeIn 0.4s ease;
        }

        .step.active {
            display: block;
        }

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

        .step h2 {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 35px;
            background: linear-gradient(135deg, #2563eb, #7c3aed);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Поля */
        .form-group {
            margin-bottom: 30px;
        }

        .form-group label {
            margin-bottom: 8px;
            color: #475569;
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 16px 20px;
            background: #f8fafc;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            font-size: 1rem;
            color: #0f172a;
            font-family: 'Inter', sans-serif;
			box-sizing: border-box;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #2563eb;
            background: #ffffff;
            box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
        }

        /* Сетка опций */
        .options-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 12px;
        }

        .option-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 18px;
            background: #f8fafc;
            border: 2px solid #e2e8f0;
            border-radius: 16px;
            cursor: pointer;
            transition: all 0.2s ease;
            color: #334155;
        }

        .option-item:hover {
            background: #ffffff;
            border-color: #2563eb;
        }

        .option-item input[type="checkbox"],
        .option-item input[type="radio"] {
            width: 18px;
            height: 18px;
            accent-color: #2563eb;
        }

        /* Блок со ссылками */
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 15px;
            margin-bottom: 20px;
        }

        .link-item {
            background: #f8fafc;
            border: 2px solid #e2e8f0;
            border-radius: 20px;
            padding: 20px;
            transition: all 0.2s ease;
        }

        .link-item:hover {
            border-color: #2563eb;
        }

        .link-item label {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1rem;
            color: #0f172a;
            text-transform: none;
            margin-bottom: 10px;
            font-weight: 500;
        }

        .link-item i {
            font-size: 1.2rem;
            color: #2563eb;
        }

        .link-item input {
            width: 100%;
            padding: 12px 16px;
            background: #ffffff;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            font-size: 0.95rem;
			    box-sizing: border-box;
        }

        .link-item input:focus {
            border-color: #2563eb;
            outline: none;
        }

        /* Кнопки */
        .nav-buttons {
            display: flex;
            justify-content: space-between;
            margin-top: 40px;
        }

        .btn {
            padding: 16px 36px;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-primary {
            background: linear-gradient(135deg, #2563eb, #7c3aed);
            color: white;
            box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 25px -5px rgba(37, 99, 235, 0.4);
        }

        .btn-outline {
            background: #ffffff;
            color: #475569;
            border: 2px solid #e2e8f0;
        }

        .btn-outline:hover {
            border-color: #2563eb;
            color: #2563eb;
        }

        .btn-success {
            background: #10b981;
            color: white;
        }

        /* Результат */
        .result-container {
            background: #ffffff;
            border-radius: 40px;
            padding: 50px;
            margin-top: 30px;
            box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.15);
            animation: slideUp 0.5s ease;
        }

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

        .result-content {
            background: #f8fafc;
            padding: 40px;
            border-radius: 24px;
            margin: 30px 0;
            white-space: pre-line;
            line-height: 1.8;
            border: 2px solid #e2e8f0;
            font-family: 'Inter', monospace;
            max-height: 500px;
            overflow-y: auto;
        }

        .result-actions {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        /* Уведомление */
        .toast {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #10b981;
            color: white;
            padding: 16px 24px;
            border-radius: 50px;
            font-weight: 500;
            box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
            transform: translateY(100px);
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .toast.show {
            transform: translateY(0);
            opacity: 1;
        }

        /* SEO Footer */
        .seo-footer {
            max-width: 1000px;
            margin: 60px auto 40px;
            padding: 40px;
            background: #ffffff;
            border-radius: 40px;
            box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.15);
        }

        .seo-footer h2 {
            font-size: 2rem;
            color: #0f172a;
            margin-bottom: 30px;
        }

        .seo-footer h3 {
            font-size: 1.5rem;
            color: #2563eb;
            margin: 30px 0 15px;
        }

        .seo-footer p {
            color: #475569;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .seo-footer ul {
            margin-left: 20px;
            color: #475569;
        }

        @media (max-width: 768px) {
            .seo-header h1 {
                font-size: 2.5rem;
            }
            
            .brief-card,
            .seo-footer {
                padding: 30px;
            }
            
            .step h2 {
                font-size: 1.8rem;
            }
            
            .nav-buttons {
                flex-direction: column;
                gap: 10px;
            }
            
            .btn {
                width: 100%;
                justify-content: center;
            }
            
            .links-grid {
                grid-template-columns: 1fr;
            }
            
            .toast {
                left: 20px;
                right: 20px;
                text-align: center;
            }
        }