.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(0, 20, 60, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .progress-container {
            margin-bottom: 40px;
        }

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

        .progress-step {
            color: #94a3b8;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: color 0.3s ease;
            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);
            border-radius: 2px;
        }

        .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 cubic-bezier(0.4, 0, 0.2, 1);
        }

        .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;
            color: #0f172a;
            letter-spacing: -0.02em;
        }

        .form-group {
            margin-bottom: 30px;
        }

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

        .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;
            transition: all 0.2s ease;
			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);
        }
		
		.form-group input[type="checkbox"],
		.form-group input[type="radio"] {width: 25px;}

        .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;
        }

        .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;
            font-family: 'Inter', sans-serif;
            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;
        }

        .result-container {
            background: #ffffff;
            border-radius: 40px;
            padding: 50px;
            margin-top: 30px;
            box-shadow: 0 20px 40px -10px rgba(0, 20, 60, 0.1);
            animation: slideUp 0.5s ease;
        }

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

        .result-content {
            background: #f8fafc;
            padding: 40px;
            border-radius: 24px;
            margin: 30px 0;
            white-space: pre-line;
            line-height: 1.8;
            color: #1e293b;
            font-size: 0.95rem;
            border: 2px solid #e2e8f0;
        }

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

        /* СЕО-ТЕКСТ ВНИЗУ */
        .seo-footer {
            max-width: 1000px;
            margin: 60px auto 40px;
            padding: 40px;
            background: #ffffff;
            border-radius: 40px;
            box-shadow: 0 20px 40px -10px rgba(0, 20, 60, 0.1);
        }

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

        .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;
            font-size: 1.1rem;
        }

        .seo-footer ul {
            list-style: none;
            padding: 0;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin: 20px 0;
        }

        .seo-footer li {
            background: #f8fafc;
            padding: 12px 20px;
            border-radius: 30px;
            color: #2563eb;
            font-weight: 500;
            border: 2px solid #e2e8f0;
        }

        .faq-item {
            margin-bottom: 25px;
            padding-bottom: 25px;
            border-bottom: 2px solid #e2e8f0;
        }

        .faq-item h4 {
            font-size: 1.2rem;
            color: #0f172a;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .faq-item p {
            margin-bottom: 0;
            color: #64748b;
        }

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