:root {
    --primary: #6C5CE7;
    --primary-dark: #5B4BCB;
    --primary-light: #8F7FF0;
    --secondary: #00B894;
    --accent: #FD79A8;
    --gradient: linear-gradient(135deg, #6C5CE7 0%, #00B894 100%);
    --gradient-2: linear-gradient(135deg, #FD79A8 0%, #6C5CE7 100%);
    --dark: #2D3436;
    --gray: #636E72;
    --light-gray: #B2BEC3;
    --lighter-gray: #DFE6E9;
    --background: #F8F9FA;
    --white: #FFFFFF;
    --success: #00B894;
    --warning: #FDCB6E;
    --danger: #D63031;
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.02), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 16px rgba(0,0,0,0.04), 0 4px 8px rgba(0,0,0,0.06);
    --shadow-lg: 0 16px 24px rgba(0,0,0,0.08), 0 8px 16px rgba(0,0,0,0.12);
    --shadow-hover: 0 20px 32px rgba(108,92,231,0.12), 0 8px 16px rgba(108,92,231,0.08);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--background);
    color: var(--dark);
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    background: var(--white);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 20px;
}

.logo-icon {
    font-size: 28px;
}

.logo-text {
    color: var(--dark);
}

.logo-highlight {
    color: var(--primary);
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    color: var(--gray);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav a:hover {
    color: var(--primary);
}

.header-buttons {
    display: flex;
    gap: 12px;
}

.btn {
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-telegram {
    background: #24A1DE;
    color: white;
}

.btn-telegram:hover {
    background: #1E8BC4;
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-gradient {
    background: var(--gradient);
    color: white;
    border: none;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-block {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    color: white;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: #00FF9F;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, #FFE87C, #FFB86B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

/* Кнопка "Как это работает" - исправлено */
.hero-buttons .btn-outline {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid white;
    color: var(--primary-dark);
    font-weight: 600;
}

.hero-buttons .btn-outline:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-2px);
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-repeat: no-repeat;
}

/* Demo Preview */
.demo-preview {
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-5deg);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: perspective(1000px) rotateY(-5deg) translateY(0); }
    50% { transform: perspective(1000px) rotateY(-5deg) translateY(-10px); }
}

.demo-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.demo-dots {
    display: flex;
    gap: 6px;
}

.demo-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--light-gray);
}

.demo-dots span:first-child { background: #FF5F56; }
.demo-dots span:nth-child(2) { background: #FFBD2E; }
.demo-dots span:last-child { background: #27C93F; }

.demo-title {
    color: var(--dark);
    font-weight: 600;
}

.demo-content {
    position: relative;
    height: 160px;
    background: var(--lighter-gray);
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    overflow: hidden;
}

.demo-line {
    position: absolute;
    left: 20px;
    right: 20px;
    height: 8px;
    background: rgba(0,0,0,0.1);
    border-radius: 4px;
}

.demo-line:nth-child(1) { top: 30px; width: 60%; }
.demo-line:nth-child(2) { top: 60px; width: 80%; }
.demo-line:nth-child(3) { top: 90px; width: 40%; }

.demo-highlight {
    position: absolute;
    top: 120px;
    left: 20px;
    right: 20px;
    height: 30px;
    background: linear-gradient(90deg, var(--primary-light), var(--secondary));
    border-radius: var(--radius-sm);
    opacity: 0.3;
    animation: pulse 2s infinite;
}

.demo-result {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.result-badge {
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.result-badge.success {
    background: rgba(0,184,148,0.1);
    color: var(--success);
}

.result-amount {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
}

/* Clients Section */
.clients {
    padding: 40px 0;
    background: var(--white);
}

.clients-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
}

.client-item {
    color: var(--gray);
    font-weight: 500;
    font-size: 18px;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.client-item:hover {
    opacity: 1;
}

/* Section Styles */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.section-description {
    color: var(--gray);
    font-size: 18px;
}

/* Problems Section */
.problems {
    padding: 80px 0;
    background: var(--white);
}

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

.problem-card {
    padding: 32px;
    background: var(--background);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.problem-card.highlight {
    background: var(--gradient);
    color: white;
}

.problem-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.problem-card h3 {
    margin-bottom: 12px;
    font-size: 20px;
}

.problem-card p {
    opacity: 0.8;
    font-size: 14px;
}

/* Demo Section */
.demo-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    color: white;
}

.demo-section .section-subtitle,
.demo-section .section-description {
    color: rgba(255,255,255,0.9);
}

.demo-container {
    background: white;
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    margin-top: 40px;
}

/* Upload Area */
.upload-area {
    border: 3px dashed var(--lighter-gray);
    border-radius: var(--radius-lg);
    padding: 48px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.upload-area:hover {
    border-color: var(--primary);
    background: rgba(108,92,231,0.02);
}

.upload-icon {
    font-size: 64px;
    margin-bottom: 16px;
}

.upload-area h3 {
    color: var(--dark);
    margin-bottom: 8px;
}

.upload-area p {
    color: var(--gray);
    margin-bottom: 4px;
}

.upload-hint {
    font-size: 12px;
    opacity: 0.7;
    margin-top: 16px;
}

.files-list {
    margin-top: 24px;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--lighter-gray);
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
}

.file-name {
    display: flex;
    align-items: center;
    gap: 8px;
}

.file-size {
    font-size: 12px;
    color: var(--gray);
}

.file-remove {
    color: var(--danger);
    cursor: pointer;
}

/* Analysis Progress - исправлено */
.analysis-progress {
    margin-top: 40px;
    padding: 32px;
    background: white;
    border-radius: var(--radius-lg);
}

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

.progress-header h3 {
    color: var(--dark);
}

.progress-status {
    color: var(--primary);
    font-weight: 600;
}

.progress-bar-container {
    height: 8px;
    background: var(--lighter-gray);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 24px;
}

.progress-bar {
    height: 100%;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.status-messages {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.status-message {
    padding: 12px 8px;
    background: var(--background);
    border-radius: var(--radius-md);
    color: var(--gray);
    font-size: 12px;
    line-height: 1.4;
    text-align: center;
    word-wrap: break-word;
    hyphens: auto;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.status-message.active {
    opacity: 1;
    color: white;
    background: var(--primary);
    font-weight: 500;
    border-color: var(--primary-dark);
    box-shadow: var(--shadow-sm);
}

/* Results Container */
.results-container {
    margin-top: 40px;
    padding: 40px;
    background: white;
    border-radius: var(--radius-xl);
}

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

.results-header h3 {
    color: var(--dark);
    font-size: 24px;
}

.document-badge {
    padding: 8px 16px;
    background: rgba(108,92,231,0.1);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
}

.client-info {
    margin-bottom: 32px;
}

.client-name {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.employer-info {
    color: var(--gray);
}

/* Income Cards */
.income-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.income-card {
    padding: 24px;
    background: var(--background);
    border-radius: var(--radius-lg);
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}

.income-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.income-card.highlight {
    background: var(--gradient);
    color: white;
}

.card-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.card-label {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 8px;
}

.income-card:not(.highlight) .card-label {
    color: var(--dark);
    font-weight: 500;
}

.income-card.highlight .card-label {
    color: rgba(255,255,255,0.9);
}

.card-amount {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 4px;
}

.income-card:not(.highlight) .card-amount {
    color: var(--dark);
}

.income-card.highlight .card-amount {
    color: white;
}

.card-trend {
    font-size: 12px;
    color: var(--success);
    font-weight: 500;
}

.income-card:not(.highlight) .card-trend {
    color: var(--primary);
}

/* Chart */
.chart-container {
    margin-bottom: 32px;
}

.chart-container h4 {
    color: var(--dark);
    margin-bottom: 20px;
}

.chart-wrapper {
    height: 300px;
    position: relative;
}

/* JSON Viewer - для отображения JSON с отступами */
.json-viewer {
    margin: 32px 0;
    background: var(--background);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--lighter-gray);
}

.json-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: var(--lighter-gray);
    border-bottom: 1px solid var(--light-gray);
}

.json-header h4 {
    color: var(--dark);
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.json-copy {
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    font-size: 14px;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}

.json-copy:hover {
    background: rgba(108,92,231,0.1);
}

.json-content {
    max-height: 400px;
    overflow-y: auto;
    overflow-x: auto;
    padding: 20px;
    font-family: 'Monaco', 'Menlo', 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.6;
    background: #1E1E1E;
    color: #D4D4D4;
    white-space: pre;
    word-wrap: normal;
    tab-size: 2;
    -moz-tab-size: 2;
}

/* Стили для JSON подсветки синтаксиса */
.json-content .json-key {
    color: #9CDCFE;
    font-weight: 500;
}

.json-content .json-string {
    color: #CE9178;
}

.json-content .json-number {
    color: #B5CEA8;
}

.json-content .json-boolean {
    color: #569CD6;
    font-weight: 500;
}

.json-content .json-null {
    color: #569CD6;
    font-style: italic;
}

/* Стили для сохранения пробелов при выделении */
.json-content * {
    white-space: pre;
}

/* Скроллбар для JSON */
.json-content::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.json-content::-webkit-scrollbar-track {
    background: #2D2D2D;
    border-radius: 4px;
}

.json-content::-webkit-scrollbar-thumb {
    background: #666;
    border-radius: 4px;
    transition: background 0.2s;
}

.json-content::-webkit-scrollbar-thumb:hover {
    background: #888;
}

.json-content::-webkit-scrollbar-corner {
    background: #2D2D2D;
}

/* Анимация для кнопки копирования */
.json-copy:active {
    transform: scale(0.95);
}

/* Export Buttons */
.export-buttons {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
    margin-top: 32px;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: var(--white);
}

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

.benefit-item {
    text-align: center;
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.benefit-item h3 {
    margin-bottom: 12px;
    color: var(--dark);
}

.benefit-item p {
    color: var(--gray);
    font-size: 14px;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
}

.pricing .section-title,
.pricing .section-description {
    color: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.pricing-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 40px;
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
    transform: scale(1.05);
    border: 2px solid var(--secondary);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-2);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-header h3 {
    color: var(--dark);
    font-size: 24px;
    margin-bottom: 16px;
}

.price {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.price-period {
    color: var(--gray);
    font-size: 14px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--lighter-gray);
    color: var(--dark);
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* Feedback Section */
.feedback {
    padding: 80px 0;
    background: var(--white);
}

.feedback-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-methods {
    margin-top: 40px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--background);
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
    transition: all 0.3s;
}

.contact-method:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.method-icon {
    font-size: 24px;
}

.method-info h4 {
    color: var(--dark);
    margin-bottom: 4px;
}

.method-info p {
    color: var(--gray);
    font-size: 14px;
}

.feedback-form-container {
    padding: 40px;
    background: var(--background);
    border-radius: var(--radius-xl);
}

.feedback-form h3 {
    color: var(--dark);
    margin-bottom: 24px;
    font-size: 24px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid var(--lighter-gray);
    border-radius: var(--radius-md);
    font-size: 16px;
    transition: all 0.3s;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(108,92,231,0.1);
}

.form-note {
    margin-top: 16px;
    font-size: 12px;
    color: var(--gray);
    text-align: center;
}

/* Footer */
.footer {
    background: #2D3436;
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-info .logo {
    margin-bottom: 20px;
}

.footer-info .logo-text {
    color: white;
}

.footer-description {
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-links h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-links a {
    display: block;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

.footer-bottom p {
    margin-bottom: 8px;
}

/* Responsive */

/* Menu toggle (hamburger) */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: #2D3436;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    
    .problems-grid,
    .benefits-grid,
    .pricing-grid,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .status-message {
        flex: 0 0 calc(33.33% - 8px);
    }
}

/* Стили для мобильных устройств */
@media (max-width: 768px) {
    .json-content {
        max-height: 300px;
        font-size: 12px;
        padding: 15px;
    }
    
    .json-header {
        padding: 12px 16px;
    }
    
    .json-header h4 {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        z-index: 1002;
    }
    
    .nav.active {
        display: flex;
    }
    
    .nav a {
        font-size: 20px;
        font-weight: 600;
    }
    
    .header-buttons {
        display: none;
    }
    
    .nav.active ~ .header-buttons {
        display: flex;
        position: fixed;
        bottom: 60px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .problems-grid,
    .benefits-grid,
    .pricing-grid,
    .footer-grid,
    .feedback-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
    
    .status-message {
        flex: 0 0 calc(50% - 8px);
    }
}

}

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

/* Utility Classes */
.text-center { text-align: center; }
.mt-4 { margin-top: 24px; }
.mb-4 { margin-bottom: 24px; }
.hidden { display: none; }