:root {
    --blue: #4169E1;
    --orange: #FF6B35;
    --purple: #9B59B6;
    --green: #27AE60;
    --yellow: #f59e0b;
    --red: #ef4444;
    --bg: #F4F6F9;
    --text: #2C3E50;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px 16px;
    width: 100%;
}

header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    padding: 1.5rem 0;
    margin-bottom: 2rem;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    height: 50px;
    width: auto;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

header h1 {
    font-size: 32px;
    color: #2b4c8f;
    text-align: center;
    margin: 0;
    font-weight: 600;
    flex: 1;
}

.back-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.back-link:hover {
    color: var(--orange);
}

main {
    flex: 1;
    padding-bottom: 3rem;
    margin-bottom: 2rem;
}

.card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.card p {
    color: #7F8C8D;
    margin-bottom: 1.5rem;
}

/* Загрузка */
.upload-area {
    border: 2px dashed #c0c0c0;
    border-radius: 12px;
    padding: 48px 24px;
    text-align: center;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-area:hover {
    border-color: #2b4c8f;
    background: #f8f9fa;
}

.upload-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: block;
}

.drop-text {
    font-size: 16px;
    color: #555555;
    margin: 16px 0 8px;
}

.drop-hint {
    font-size: 14px;
    color: #999999;
}

/* Первый блок: две колонки (метаданные + светофор) */
.first-fold {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

@media (max-width: 1024px) {
    .first-fold {
        grid-template-columns: 1fr;
    }
}

.contract-info-column {
    display: flex;
    flex-direction: column;
}

.overall-result-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Блок метаданных - компактная карточка */
.results-section .metadata-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    height: 100%;
    margin: 0;
}

.results-section .metadata-card h2 {
    margin: 0 0 16px 0;
    font-size: 18px;
    font-weight: 600;
    color: #222222;
}

.results-section .metadata-card .metadata-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (max-width: 768px) {
    .results-section .metadata-card .metadata-grid {
        grid-template-columns: 1fr;
    }
}

.results-section .metadata-card .metadata-item {
    display: flex;
    flex-direction: column;
}

.results-section .metadata-card .metadata-label {
    font-size: 12px;
    color: #555555;
    margin-bottom: 4px;
    font-weight: 500;
}

.results-section .metadata-card .metadata-value {
    font-size: 14px;
    color: #222222;
    font-weight: 400;
}

/* Общий результат - компактный блок */
.results-section .overall-result-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 0;
}

.score-display {
    flex: 1;
}

.score-number {
    font-size: 36px;
    font-weight: 700;
    color: #222222;
    margin-bottom: 4px;
}

.score-number.low { color: #2e7d32; }
.score-number.medium { color: #ef6c00; }
.score-number.high { color: #c62828; }

.score-value {
    font-size: 14px;
    color: #555555;
}

.traffic-light {
    font-size: 32px;
    line-height: 1;
}

.risk-level-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 8px;
}

.risk-level-badge.low {
    background: #e8f5e9;
    color: #2e7d32;
}

.risk-level-badge.medium {
    background: #fff4e5;
    color: #ef6c00;
}

.risk-level-badge.high {
    background: #fce8e6;
    color: #c62828;
}

/* Краткий вывод */
.summary-block {
    background: #fff9e6;
    border: 1px solid #ffc107;
    border-left: 4px solid #fdd835;
    border-radius: 8px;
    padding: 16px;
}

.summary-block h3 {
    margin: 0 0 12px 0;
    font-size: 16px;
    font-weight: 600;
    color: #222222;
}

.summary-block p {
    margin: 0;
    font-size: 14px;
    color: #222222;
    line-height: 1.5;
}

.summary-text {
    font-size: 14px;
    line-height: 1.5;
    color: #222222;
}

/* Метаданные договора (для секции метаданных перед анализом) */
.metadata-section .metadata-card {
    padding: 2.5rem;
}

.metadata-section .metadata-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 40px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .metadata-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.metadata-item {
    display: flex;
    flex-direction: column;
    padding: 0;
}

.metadata-item.full-width {
    grid-column: 1 / -1;
}

.metadata-label {
    font-size: 14px;
    color: #999999;
    margin-bottom: 4px;
    font-weight: normal;
}

.metadata-value {
    font-size: 16px;
    color: #222222;
    line-height: 1.5;
}

.parties-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.party-info {
    background: #f8f9fa;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--blue);
}

/* Выбор стороны анализа */
.party-selector {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f9ff;
    border-radius: 12px;
}

.party-selector h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: var(--text);
}

.party-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.party-btn {
    flex: 1;
    min-width: 150px;
    padding: 1rem 1.5rem;
    background: white;
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--text);
}

.party-btn:hover {
    border-color: var(--blue);
    background: #f0f5ff;
}

.party-btn.active {
    background: linear-gradient(135deg, var(--blue), var(--purple));
    color: white;
    border-color: var(--blue);
}

/* Блок с чекбоксом для проверки типового договора */
.template-check-option {
    margin: 20px 0;
    padding: 16px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
}

/* Контейнер чекбокса */
.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

/* Стилизованный чекбокс */
.checkbox-container input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    cursor: pointer;
    accent-color: #2b4c8f; /* Синий цвет ТРАЙВ */
}

/* Текст чекбокса */
.checkbox-label {
    font-size: 15px;
    color: #222222;
    line-height: 1.5;
}

/* Состояние hover */
.checkbox-container:hover .checkbox-label {
    color: #2b4c8f;
}

.btn-large {
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
}

/* Детализация скоринга */
.scoring-breakdown-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 24px;
}

.scoring-breakdown-card h2 {
    margin: 0 0 16px 0;
    font-size: 18px;
    font-weight: 600;
    color: #222222;
}

.breakdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

@media (max-width: 1024px) {
    .breakdown-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .breakdown-grid {
        grid-template-columns: 1fr;
    }
}

.breakdown-category {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.category-name {
    font-size: 14px;
    font-weight: 600;
    color: #222222;
}

.category-weight {
    background: #e0f2fe;
    color: #0284c7;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

.category-bar {
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    overflow: hidden;
    margin-top: 8px;
    margin-bottom: 12px;
}

.category-bar-fill {
    height: 100%;
    transition: width 0.3s;
    border-radius: 2px;
}

.category-stats {
    font-size: 12px;
    color: #555555;
}

.stat {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}

.stat-label {
    color: #555555;
}

.stat-value {
    color: #222222;
    font-weight: 600;
}

/* Выявленные риски - стили из analysis.html */
.risks-section {
    margin-bottom: 24px;
}

.risks-section h3 {
    margin: 0 0 16px 0;
    font-size: 18px;
    font-weight: 600;
    color: #222222;
}

.risks-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.risk-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.risk-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 12px;
}

.risk-category {
    font-weight: 600;
    color: #222222;
    font-size: 14px;
    flex: 1;
}

.risk-severity-badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
}

.risk-severity-badge.high {
    background: #fce8e6;
    color: #c62828;
}

.risk-severity-badge.medium {
    background: #fff4e5;
    color: #ef6c00;
}

.risk-severity-badge.low {
    background: #e8f5e9;
    color: #2e7d32;
}

/* Элементы карточки риска - стили из analysis.html */
.risk-clause-info {
    font-size: 13px;
    color: #555555;
    margin-bottom: 8px;
}

.risk-clause-text {
    font-size: 13px;
    color: #222222;
    background: #f5f6f7;
    padding: 10px;
    border-left: 3px solid #e0e0e0;
    border-radius: 4px;
    margin: 8px 0;
    font-style: italic;
    line-height: 1.5;
}

.risk-scores-detail {
    display: flex;
    gap: 1rem;
    margin: 12px 0;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 6px;
    flex-wrap: wrap;
}

.risk-scores-detail .score-item {
    flex: 1;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.risk-scores-detail .score-label {
    font-size: 12px;
    color: #555555;
}

.risk-scores-detail .score-value {
    font-size: 14px;
    font-weight: 600;
    color: #222222;
}

.risk-description {
    font-size: 13px;
    color: #222222;
    line-height: 1.5;
    margin: 8px 0;
}

.risk-description strong {
    color: #222222;
    font-weight: 600;
}

.risk-recommendation {
    font-size: 13px;
    color: #222222;
    background: #f0f8ff;
    padding: 10px;
    border-left: 3px solid #0066cc;
    border-radius: 4px;
    margin-top: 8px;
    line-height: 1.5;
}

.risk-recommendation strong {
    color: #0066cc;
    font-weight: 600;
}

.risk-legal {
    font-size: 13px;
    color: #222222;
    background: #f5f6f7;
    padding: 10px;
    border-left: 3px solid #555555;
    border-radius: 4px;
    margin: 8px 0;
    line-height: 1.5;
}

.risk-legal strong {
    color: #222222;
    font-weight: 600;
}

.risk-affected {
    font-size: 13px;
    color: #555555;
    margin: 8px 0;
    line-height: 1.5;
}

.risk-affected strong {
    color: #222222;
    font-weight: 600;
}

.risk-highlight {
    background: #fff3cd;
    color: #856404;
    font-weight: 600;
    padding: 2px 4px;
    border-radius: 2px;
}

/* Три колонки: Положительные аспекты, Критические пункты, Приоритетные рекомендации */
.three-columns-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

@media (max-width: 1024px) {
    .three-columns-section {
        grid-template-columns: 1fr;
    }
}

.three-columns-section > div {
    display: flex;
    flex-direction: column;
}

/* Положительные аспекты */
.positive-section {
    margin-bottom: 0;
}

.positive-section h3 {
    margin: 0 0 16px 0;
    font-size: 18px;
    font-weight: 600;
    color: #222222;
}

.positive-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.positive-section li {
    padding: 10px 0 10px 24px;
    margin-bottom: 8px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-left: 3px solid #43a047;
    border-radius: 4px;
    font-size: 14px;
    color: #222222;
    position: relative;
}

.positive-section li::before {
    content: '✓';
    position: absolute;
    left: 8px;
    color: #43a047;
    font-weight: 600;
}

/* Критические пункты */
.critical-section {
    margin-bottom: 0;
}

.critical-section h3 {
    margin: 0 0 16px 0;
    font-size: 18px;
    font-weight: 600;
    color: #222222;
}

.critical-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.critical-section li {
    padding: 10px 16px;
    margin-bottom: 8px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-left: 3px solid #e53935;
    border-radius: 4px;
    font-size: 14px;
    color: #222222;
}

/* Приоритетные рекомендации */
.recommendations-section {
    margin-bottom: 0;
}

.recommendations-section h3 {
    margin: 0 0 16px 0;
    font-size: 18px;
    font-weight: 600;
    color: #222222;
}

.recommendation-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.recommendation-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
    gap: 12px;
}

.recommendation-priority-badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
}

.recommendation-priority-badge.high {
    background: #fce8e6;
    color: #c62828;
}

.recommendation-priority-badge.medium {
    background: #fff4e5;
    color: #ef6c00;
}

.recommendation-priority-badge.low {
    background: #e8f5e9;
    color: #2e7d32;
}

.recommendation-text {
    font-size: 14px;
    color: #222222;
    line-height: 1.5;
    margin: 0;
}

/* Просмотр полного текста */
.full-text-card {
    background: #f8f9fa;
}

.full-text-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.full-text-content {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    max-height: 600px;
    overflow-y: auto;
    line-height: 1.8;
    white-space: pre-wrap;
    font-size: 0.95rem;
    color: #555;
    margin-top: 1.5rem;
}

.full-text-content::-webkit-scrollbar {
    width: 8px;
}

.full-text-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.full-text-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.full-text-content::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Кнопки */
.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    margin-top: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--red));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-secondary {
    background: white;
    color: var(--text);
    border: 2px solid #E0E0E0;
    width: auto;
    padding: 0.75rem 1.5rem;
    text-transform: none;
}

.btn-secondary:hover {
    border-color: var(--blue);
    background: #f0f5ff;
}

/* Статусные сообщения */
.status-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
}

.status-message.success {
    background: #d1fae5;
    color: var(--green);
}

.status-message.error {
    background: #fee2e2;
    color: var(--red);
}

.status-message.loading {
    background: #e0f2fe;
    color: #0284c7;
}

/* Футер */
footer {
    background: white;
    text-align: center;
    padding: 1.5rem 0;
    color: #95A5A6;
    font-size: 0.9rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}

/* Адаптивность */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    header h1 {
        font-size: 1.3rem;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .traffic-light {
        font-size: 5rem;
    }
    
    .overall-score {
        font-size: 3rem;
    }
    
    .traffic-light-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .metadata-grid {
        grid-template-columns: 1fr;
    }
    
    .breakdown-grid {
        grid-template-columns: 1fr;
    }
    
    .party-options {
        flex-direction: column;
    }
    
    .party-btn {
        width: 100%;
    }
    
    .template-check-option {
        padding: 12px;
    }
    
    .checkbox-label {
        font-size: 14px;
    }
    
    .risk-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .risk-left, .risk-right {
        width: 100%;
        justify-content: space-between;
    }
    
    .risk-scores-detail {
        flex-direction: column;
    }
    
    .full-text-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .btn-secondary {
        width: 100%;
    }
}

/* =============================================================================
   КОРПОРАТИВНЫЕ ТРЕБОВАНИЯ - СТИЛИ ИЗ analysis.html
   ============================================================================= */

.corporate-section {
    margin-bottom: 24px;
}

.corporate-section h3 {
    margin: 0 0 16px 0;
    font-size: 18px;
    font-weight: 600;
    color: #222222;
}

.corporate-summary {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
    font-size: 13px;
    color: #555555;
}

.corporate-requirements-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

@media (max-width: 1024px) {
    .corporate-requirements-grid {
        grid-template-columns: 1fr;
    }
}

.corporate-column {
    display: flex;
    flex-direction: column;
}

.corporate-column-title {
    margin: 0 0 12px 0;
    font-size: 16px;
    font-weight: 600;
    color: #222222;
    padding-bottom: 8px;
    border-bottom: 2px solid #e0e0e0;
}

.corporate-column-title:not(:first-child) {
    margin-top: 24px;
}

.requirement-card {
    background: #ffffff !important;
    border: 1px solid #e0e0e0;
    border-left: 3px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    text-align: left !important;
}

.requirement-card.success {
    border: 1px solid #e0e0e0 !important;
    border-left: 3px solid #43a047 !important;
    background: #ffffff !important;
}

.requirement-card.warning {
    border: 1px solid #e0e0e0 !important;
    border-left: 3px solid #fdd835 !important;
    background: #ffffff !important;
}

.requirement-card.error {
    border: 1px solid #e0e0e0 !important;
    border-left: 3px solid #e53935 !important;
    background: #ffffff !important;
    text-align: left !important;
}

.requirement-card.not-found {
    border: 1px solid #e0e0e0 !important;
    border-left: 3px solid #9e9e9e !important;
    background: #ffffff !important;
}

.requirement-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    text-align: left !important;
    gap: 12px;
}

.requirement-title {
    font-size: 14px;
    font-weight: 600;
    color: #222222;
    flex: 1;
    text-align: left !important;
}

.requirement-status {
    padding: 4px 8px !important;
    border-radius: 4px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
    display: inline-block !important;
    line-height: 1.2 !important;
}

.requirement-status.success {
    background: #e8f5e9 !important;
    color: #2e7d32 !important;
}

.requirement-status.warning {
    background: #fff4e5 !important;
    color: #ef6c00 !important;
}

.requirement-status.error {
    background: #fce8e6 !important;
    color: #c62828 !important;
}

.requirement-status.not-found {
    background: #f5f5f5 !important;
    color: #757575 !important;
}

.requirement-details {
    font-size: 12px;
    color: #555555;
    margin-top: 8px;
    margin-bottom: 0;
    text-align: left !important;
    line-height: 1.5;
}

.requirement-details:first-of-type {
    margin-top: 0;
}

.requirement-details strong {
    font-weight: 600;
    color: #222222;
    display: inline-block;
    margin-right: 4px;
}

/* Гарантируем единообразие для всех карточек */
.requirement-card * {
    text-align: left !important;
}

.requirement-card.error * {
    background: transparent !important;
    text-align: left !important;
}

.empty-message {
    font-size: 13px;
    color: #999999;
    padding: 16px;
    text-align: center;
    font-style: italic;
}

/* =============================================================================
   НОВОЕ: КНОПКИ ДЛЯ ДЕЙСТВИЙ
   ============================================================================= */

.action-buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
    padding: 1.5rem 0;
}

.action-buttons .btn {
    flex: 0 1 auto;
    min-width: 140px;
    max-width: 200px;
    font-size: 0.95rem;
    padding: 0.85rem 1.5rem;
    white-space: nowrap;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.btn-large {
    flex: 1;
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

/* Адаптивность для корпоративных требований */
@media (max-width: 1024px) {
    .corporate-requirements-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .action-buttons {
        flex-direction: column;
    }
}

