/*
 * Премиальные стили посадочной страницы UltraCRM.
 * Разработаны по канонам "DeepMind / Gemini Dark" — матовые темные градиенты, кобальтовые ауры, микрозернистый шум, упругие анимации.
 * Полный запрет на inline-стили.
 */

:root {
    --bg-base: #06070a;
    --bg-card: #0b0d13;
    --bg-card-hover: #11141e;
    --color-primary: #6366f1; /* Кобальтово-синий индиго */
    --color-primary-hover: #4f46e5;
    --color-primary-glow: rgba(99, 102, 241, 0.12);
    --color-secondary: #1e293b;
    --color-secondary-hover: #334155;
    --color-accent: #06b6d4; /* Тонкий циан */
    --color-accent-glowing: rgba(6, 182, 212, 0.25);
    --color-text-primary: #f8fafc;
    --color-text-secondary: #94a3b8;
    --color-text-muted: #64748b;
    --color-success: #10b981;
    --color-success-glow: rgba(16, 185, 129, 0.15);
    --border-subtle: rgba(255, 255, 255, 0.05);
    --border-hover: rgba(255, 255, 255, 0.12);
    --radius-pill: 9999px;
    --radius-medium: 12px;
    --radius-large: 24px;
    --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --md-elevation-1: 0 4px 20px rgba(0, 0, 0, 0.3);
    --md-elevation-2: 0 12px 40px rgba(0, 0, 0, 0.5);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    scroll-behavior: smooth;
    background-color: var(--bg-base);
    color: var(--color-text-primary);
    font-family: var(--font-primary);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

body {
    -webkit-font-smoothing: antialiased;
}

/* Блокировка прокрутки фона при открытом меню без сдвига экрана */
body.body-scroll-lock {
    overflow: hidden;
    touch-action: none;
}

/* Все секции строго изолированы от бокового переполнения */
section {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

/* Кастомные премиум-скроллбары */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.01);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-pill);
    transition: var(--transition-smooth);
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Восстановлен оригинальный селектор полноэкранного процедурного шума */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
}

/* Принудительная активация поддержки лигатур для системных иконок */
.material-icons-round {
    font-family: 'Material Icons Round';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    display: inline-block;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'liga' on;
}

/* Размытые космические свечения */
.radial-glow {
    position: absolute;
    border-radius: var(--radius-pill);
    pointer-events: none;
    filter: blur(140px);
    z-index: -1;
}

.glow-1 {
    top: 5vh;
    left: 10vw;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.14) 0%, transparent 80%);
}

.glow-2 {
    top: 45vh;
    right: 5vw;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 80%);
}

.glow-3 {
    bottom: 10vh;
    left: 20vw;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 80%);
}

/* Контейнеры */
.container {
    width: 1200px;
    max-width: 90%;
    margin: 0 auto;
    padding: 80px 0;
}

/* Кнопки и интерактивные элементы с защитой от двойного тапа на мобильных */
input, button, select, textarea, .btn, .prompt-btn, .db-tab {
    touch-action: manipulation;
}

/* Кнопки */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background-color: var(--color-text-primary);
    color: var(--bg-base);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.08);
}

.btn-primary:hover {
    background-color: #cbd5e1;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--color-secondary);
    color: var(--color-text-primary);
    border: 1px solid var(--border-subtle);
}

.btn-secondary:hover {
    background-color: var(--color-secondary-hover);
    border-color: var(--border-hover);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Парящая шапка (Capsule Header) на основе безопасных CSS-переменных */
.main-header {
    position: fixed;
    top: 24px;
    left: 50%;
    --header-translate-x: -50%;
    transform: translateX(var(--header-translate-x)) translateY(calc(var(--header-translate-y, 0) * 1px));
    opacity: var(--header-opacity, 1);
    pointer-events: var(--header-pointer-events, auto);
    width: calc(100% - 48px);
    max-width: 1200px;
    height: 64px;
    background-color: rgba(11, 13, 19, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-pill);
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-container {
    width: 100%;
    height: 100%;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.brand-text {
    font-weight: 800;
    font-size: 17px;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav-item {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.nav-item:hover {
    color: var(--color-text-primary);
}

.header-contacts {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tech-badge {
    background-color: rgba(6, 182, 212, 0.1);
    color: var(--color-accent);
    border: 1px solid var(--color-accent-glowing);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 600;
}

/* Кнопка открытия мобильного меню */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-text-primary);
    cursor: pointer;
    padding: 4px;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    z-index: 1001;
}

.mobile-nav-toggle span {
    font-size: 28px;
}

/* Первый экран */
.hero-section {
    position: relative;
    padding-top: 160px;
    padding-bottom: 60px;
}

.hero-container {
    text-align: center;
}

.hero-announcement {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--color-primary-glow);
    border: 1px solid rgba(99, 102, 241, 0.2);
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 600;
    color: #a5b4fc;
    margin-bottom: 24px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-primary);
    animation: pulseDotAnim 2s infinite;
}

@keyframes pulseDotAnim {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.6; }
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    max-width: 950px;
    margin: 0 auto 24px auto;
}

.highlight {
    background: linear-gradient(135deg, #fff 0%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-text-secondary);
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

/* Отказоустойчивое выравнивание блока преимуществ */
.hero-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
}

.hero-badge-item {
    display: grid;
    grid-template-columns: 24px 1fr;
    align-items: center;
    gap: 12px;
    color: var(--color-text-muted);
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    line-height: 1.4;
}

.hero-badge-item span:first-child {
    font-family: 'Material Icons Round';
    font-size: 22px;
    color: var(--color-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    line-height: 1;
    font-feature-settings: 'liga' on;
}

/* Заголовки блоков */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    background-color: var(--color-primary-glow);
    color: var(--color-primary);
    border: 1px solid rgba(99, 102, 241, 0.2);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-block;
    margin-bottom: 16px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Блок сравнения ( amoCRM vs Custom ) */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.comparison-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-large);
    padding: 40px;
    position: relative;
    transition: var(--transition-smooth);
}

.comparison-card:hover {
    border-color: var(--border-hover);
    background-color: var(--bg-card-hover);
}

.out-of-box {
    border-color: rgba(244, 63, 94, 0.15);
}

.custom-crm {
    border-color: rgba(16, 185, 129, 0.2);
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(16, 185, 129, 0.02) 100%);
}

.card-badge-bad {
    background-color: rgba(244, 63, 94, 0.1);
    color: #f43f5e;
    border: 1px solid rgba(244, 63, 94, 0.2);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 24px;
}

.card-badge-good {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--color-success);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 24px;
}

.comparison-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comparison-list li {
    display: flex;
    gap: 16px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-secondary);
}

.comparison-list li strong {
    color: var(--color-text-primary);
}

.icon-bad { color: #f43f5e; font-size: 20px; flex-shrink: 0; }
.icon-good { color: var(--color-success); font-size: 20px; flex-shrink: 0; }

/* Боли */
.pains-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.pain-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 32px;
    border-radius: var(--radius-large);
    transition: var(--transition-smooth);
}

.pain-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
    background-color: var(--bg-card-hover);
}

.pain-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.red-theme { background: rgba(244, 63, 94, 0.1); color: #f43f5e; }
.orange-theme { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.blue-theme { background: rgba(14, 165, 233, 0.1); color: #0ea5e9; }
.purple-theme { background: rgba(168, 85, 247, 0.1); color: #a855f7; }

.pain-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.pain-desc {
    color: var(--color-text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* Симулятор Канбан-Воронки */
.simulator-section {
    background-color: rgba(6, 7, 10, 0.45);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.simulator-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
}

.panel-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
}

.panel-desc {
    font-size: 13px;
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin-bottom: 24px;
}

.source-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.source-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-radius: var(--radius-medium);
    border: 1px solid var(--border-subtle);
    color: var(--color-text-primary);
    cursor: pointer;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 13px;
    transition: var(--transition-smooth);
}

.tg-btn { background-color: rgba(14, 165, 233, 0.03); }
.tg-btn:hover { background-color: rgba(14, 165, 233, 0.12); border-color: #0ea5e9; }
.vk-btn { background-color: rgba(99, 102, 241, 0.03); }
.vk-btn:hover { background-color: rgba(99, 102, 241, 0.12); border-color: #6366f1; }

.btn-arrow {
    font-size: 18px;
    opacity: 0.4;
    transition: var(--transition-smooth);
}

.source-btn:hover .btn-arrow {
    opacity: 1;
    transform: translateX(4px);
}

.sim-terminal {
    background-color: #040508;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-medium);
    overflow: hidden;
    height: 220px;
    display: flex;
    flex-direction: column;
}

.terminal-header {
    background-color: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--border-subtle);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.terminal-indicator-icon {
    font-size: 16px;
}

.terminal-title {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-secondary);
}

.terminal-content {
    padding: 16px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 11px;
    line-height: 1.5;
    color: #34d399;
    overflow-y: auto;
    flex-grow: 1;
}

.sql-cmd {
    color: #60a5fa;
    display: block;
    margin: 4px 0;
}

/* Канбан доска */
.kanban-board {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    height: 480px;
}

.kanban-column {
    background-color: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-large);
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.column-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.column-icon {
    font-size: 20px;
}

.icon-red { color: #f43f5e; }
.icon-orange { color: #f59e0b; }
.icon-green { color: var(--color-success); }

.spin-animation {
    animation: crmSpin 3s linear infinite;
}

@keyframes crmSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.pulse-animation {
    color: var(--color-accent);
    animation: crmPulse 2s ease-in-out infinite;
}

@keyframes crmPulse {
    0% { opacity: 0.4; }
    50% { opacity: 1; }
    100% { opacity: 0.4; }
}

.column-name {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-secondary);
}

.column-cards-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
    overflow-y: auto;
}

/* Стили карточек в канбане */
.sim-card {
    background-color: var(--bg-card-hover);
    border: 1px solid var(--border-subtle);
    padding: 16px;
    border-radius: var(--radius-medium);
    overflow: hidden;
    max-height: 200px;
    animation: cardEnter 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    transition: var(--transition-smooth);
}

@keyframes cardEnter {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.96);
        filter: blur(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes cardExit {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
        max-height: 200px;
        margin-bottom: 12px;
        padding: 16px;
    }
    to {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
        max-height: 0;
        margin-bottom: 0;
        padding-top: 0;
        padding-bottom: 0;
        border-width: 0;
    }
}

.sim-card.is-exiting {
    animation: cardExit 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    pointer-events: none;
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.card-source-badge {
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-tg { background-color: rgba(14, 165, 233, 0.1); color: #0ea5e9; }
.badge-vk { background-color: rgba(99, 102, 241, 0.1); color: #6366f1; }

.card-time {
    font-size: 10px;
    color: var(--color-text-muted);
}

.card-user {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 4px;
}

.card-action {
    font-size: 11px;
    color: var(--color-text-secondary);
    line-height: 1.4;
}

.card-status-bar {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-pill);
    margin-top: 12px;
    overflow: hidden;
}

.status-fill {
    height: 100%;
    width: 33%;
    transition: var(--transition-smooth);
}

.fill-new { background: #f43f5e; width: 33%; }
.fill-processing { background: #f59e0b; width: 66%; }
.fill-paid { background: var(--color-success); width: 100%; }

/* Блок Database Visualizer (Интерактивная БД) */
.db-visualizer-container {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 32px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-large);
    padding: 32px;
    overflow: hidden;
}

.db-tabs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.db-tab {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    border-radius: var(--radius-medium);
    border: 1px solid rgba(255, 255, 255, 0.02);
    background-color: rgba(255, 255, 255, 0.01);
    color: var(--color-text-secondary);
    cursor: pointer;
    font-family: var(--font-primary);
    text-align: left;
    transition: var(--transition-smooth);
}

.db-tab-icon-box {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-medium);
    background-color: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    transition: var(--transition-smooth);
}

.db-tab-icon-box span {
    font-size: 20px;
}

.db-tab-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.db-tab-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text-primary);
}

.db-tab-meta {
    font-size: 11px;
    color: var(--color-text-muted);
}

.db-tab:hover {
    background-color: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.06);
}

.db-tab:hover .db-tab-icon-box {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--color-text-primary);
}

.db-tab.active {
    background-color: var(--color-primary-glow);
    border-color: rgba(99, 102, 241, 0.25);
}

.db-tab.active .db-tab-icon-box {
    background-color: var(--color-primary);
    color: var(--color-text-primary);
}

.db-tab.active .db-tab-meta {
    color: #a5b4fc;
}

.db-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: #040507;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-large);
    padding: 24px;
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.6);
}

.db-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 14px;
}

.db-status-bar {
    display: flex;
    align-items: center;
    gap: 8px;
}

.db-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-text-muted);
}

.db-indicator.active {
    background-color: var(--color-success);
    box-shadow: 0 0 10px var(--color-success);
    animation: pulseActive 2s infinite;
}

@keyframes pulseActive {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

.db-status-text {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
}

.db-execution-badge {
    font-size: 11px;
    font-family: monospace;
    color: var(--color-text-muted);
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    padding: 4px 10px;
    border-radius: var(--radius-pill);
}

.db-translator-panel {
    background: linear-gradient(90deg, rgba(6, 182, 212, 0.04) 0%, transparent 100%);
    border-left: 3px solid var(--color-accent);
    padding: 16px;
    border-radius: 0 var(--radius-medium) var(--radius-medium) 0;
}

.translator-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.translator-title span:first-child {
    font-size: 16px;
}

.translator-desc {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

.db-sql-query {
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    padding: 12px 18px;
    border-radius: var(--radius-medium);
    color: var(--color-text-primary);
}

.sql-keyword { color: #f43f5e; font-weight: bold; }
.sql-table { color: #38bdf8; }

.db-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-medium);
    border: 1px solid var(--border-subtle);
    width: 100%;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
}

.db-rendered-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    text-align: left;
}

.db-rendered-table th {
    background-color: rgba(255, 255, 255, 0.03);
    color: var(--color-text-secondary);
    padding: 14px 18px;
    font-weight: 700;
    border-bottom: 1px solid var(--border-subtle);
}

.db-rendered-table td {
    padding: 14px 18px;
    color: var(--color-text-primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

/* Интерактивные внешние ключи */
.db-fk-badge {
    background-color: rgba(99, 102, 241, 0.1);
    color: #a5b4fc;
    border: 1px solid rgba(99, 102, 241, 0.25);
    padding: 4px 8px;
    border-radius: var(--radius-medium);
    font-size: 11px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: help;
    transition: var(--transition-smooth);
}

.db-fk-badge:hover {
    background-color: rgba(99, 102, 241, 0.2);
    border-color: var(--color-primary);
    transform: scale(1.05);
}

.db-ref-icon {
    font-size: 12px;
}

/* Семантические стили для рендеринга статусов СУБД */
.db-status-badge {
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.db-status-badge.status-confirmed {
    color: var(--color-success);
}
.db-status-badge.status-processing {
    color: #f59e0b;
}
.db-status-badge.status-new {
    color: #ef4444;
}

.db-rendered-table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.01);
}

.db-schema-note {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-medium);
    font-size: 13px;
    color: var(--color-text-secondary);
}

.db-schema-note span:first-child {
    color: var(--color-primary);
}

/* AI Guest Assistant (ИИ Чат-Симулятор) */
.ai-section {
    border-top: 1px solid var(--border-subtle);
}

.ai-grid {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 48px;
    align-items: center;
}

.ai-feature-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
}

.ai-feature-desc {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
}

.ai-prompts-box {
    background-color: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 24px;
    border-radius: var(--radius-large);
}

.prompt-instruction {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 16px;
}

.prompt-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.prompt-btn {
    text-align: left;
    background-color: var(--bg-base);
    border: 1px solid var(--border-subtle);
    padding: 14px 18px;
    border-radius: var(--radius-medium);
    color: var(--color-text-primary);
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.prompt-btn:hover {
    border-color: var(--color-primary);
    background-color: var(--color-primary-glow);
    transform: translateX(4px);
}

.ai-chat-mockup {
    background-color: #040508;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-large);
    overflow: hidden;
    height: 480px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--md-elevation-2);
}

.chat-device-header {
    background-color: var(--bg-card);
    border-bottom: 1px solid var(--border-subtle);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.chat-avatar {
    width: 36px;
    height: 36px;
    background-color: var(--color-primary-glow);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.chat-bot-name {
    font-size: 13px;
    font-weight: 700;
}

.chat-bot-status {
    font-size: 10px;
    color: var(--color-success);
    font-weight: 600;
}

.chat-conversation-area {
    flex-grow: 1;
    padding: 24px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    scroll-behavior: smooth;
}

/* Плавная пружинящая анимация появления сообщений */
.chat-message {
    padding: 14px 18px;
    border-radius: var(--radius-medium);
    font-size: 13px;
    line-height: 1.5;
    max-width: 85%;
    opacity: 0;
    transform: translateY(15px) scale(0.97);
    animation: messageReveal 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes messageReveal {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.msg-bot {
    background-color: var(--bg-card);
    color: var(--color-text-primary);
    border: 1px solid var(--border-subtle);
    align-self: flex-start;
    border-top-left-radius: 2px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.msg-guest {
    background-color: var(--color-primary);
    color: var(--color-text-primary);
    align-self: flex-end;
    border-top-right-radius: 2px;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
}

/* Высокотехнологичный индикатор набора текста (Typing Indicator) */
.chat-typing-indicator {
    background-color: var(--bg-card);
    border: 1px solid var(--border-subtle);
    align-self: flex-start;
    border-radius: var(--radius-medium);
    border-top-left-radius: 2px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 6px;
    animation: typingReveal 0.25s ease-out forwards;
}

@keyframes typingReveal {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.typing-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-primary);
    animation: typingBounce 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
    0%, 80%, 100% { transform: translateY(0); opacity: 0.4; }
    40% { transform: translateY(-6px); opacity: 1; filter: drop-shadow(0 0 4px var(--color-primary)); }
}

.chat-input-form {
    border-top: 1px solid var(--border-subtle);
    background-color: var(--bg-card);
    padding: 16px 24px;
    display: flex;
    gap: 12px;
}

.chat-text-input {
    flex-grow: 1;
    background-color: var(--bg-base);
    border: 1px solid var(--border-subtle);
    padding: 14px 18px;
    border-radius: var(--radius-medium);
    color: var(--color-text-primary);
    font-family: var(--font-primary);
    font-size: 13px;
    outline: none;
    transition: var(--transition-smooth);
}

.chat-text-input:focus {
    border-color: var(--color-primary);
}

.chat-submit-btn {
    width: 48px;
    height: 48px;
    background-color: var(--color-text-primary);
    color: var(--bg-base);
    border: none;
    border-radius: var(--radius-medium);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.chat-submit-btn:hover {
    background-color: #cbd5e1;
    transform: scale(1.05);
}

/* Калькулятор окупаемости */
.calc-box {
    background-color: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-large);
    padding: 48px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: center;
}

.calc-inputs {
    width: 100%;
}

.calc-input-group {
    margin-bottom: 32px;
}

.calc-input-group:last-child {
    margin-bottom: 0;
}

.range-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}

.range-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text-secondary);
}

.range-val {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text-primary);
}

.calc-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: var(--radius-pill);
    background: var(--color-secondary);
    outline: none;
    transition: var(--transition-smooth);
}

.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: var(--radius-pill);
    background: var(--color-text-primary);
    cursor: pointer;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
    transition: var(--transition-smooth);
    border: 2px solid var(--bg-card);
}

.calc-slider::-webkit-slider-thumb:hover {
    background: var(--color-primary);
    transform: scale(1.15);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.6);
}

.calc-outputs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.calc-output-card {
    background-color: var(--bg-card-hover);
    border: 1px solid var(--border-subtle);
    padding: 24px;
    border-radius: var(--radius-medium);
}

.highlight-card {
    border-color: rgba(99, 102, 241, 0.2);
    background-color: rgba(99, 102, 241, 0.02);
}

.output-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 12px;
}

.output-value {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: linear-gradient(135deg, #fff 0%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.output-description {
    font-size: 13px;
    line-height: 1.5;
    color: var(--color-text-secondary);
}

/* Дорожная карта (Roadmap) */
.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.roadmap-step {
    background-color: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 40px;
    border-radius: var(--radius-large);
    position: relative;
    transition: var(--transition-smooth);
}

.roadmap-step:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.roadmap-badge {
    background-color: var(--color-primary-glow);
    color: #a5b4fc;
    border: 1px solid rgba(99, 102, 241, 0.25);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 24px;
}

.roadmap-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 14px;
}

.roadmap-desc {
    font-size: 13px;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* Тарифы */
.pricing-card-wrapper {
    display: flex;
    justify-content: center;
}

.pricing-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 48px;
    border-radius: var(--radius-large);
    width: 100%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(11, 13, 19, 0.95) 100%);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-primary);
    color: var(--color-text-primary);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.plan-title {
    font-size: 24px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
}

.plan-price {
    font-size: 44px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.plan-desc {
    font-size: 14px;
    color: var(--color-text-secondary);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.5;
}

.plan-features {
    list-style: none;
    margin-bottom: 40px;
}

/* Сброс внешнего отступа, если список преимуществ является последним дочерним элементом */
.plan-features:last-child {
    margin-bottom: 0;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
}

.check {
    color: var(--color-success);
    font-size: 20px;
}

/* Подвал */
.main-footer {
    border-top: 1px solid var(--border-subtle);
    background-color: rgba(6, 7, 10, 0.85);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 48px 0;
}

.footer-desc {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-top: 12px;
    max-width: 320px;
    line-height: 1.5;
}

.copyright {
    font-size: 12px;
    color: var(--color-text-muted);
}

/* Тосты */
.landing-toast-container {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.landing-toast {
    background-color: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-left: 4px solid var(--color-success);
    color: var(--color-text-primary);
    padding: 16px 24px;
    border-radius: var(--radius-medium);
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
    animation: toastSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes toastSlideIn {
    from { transform: translateX(120%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.toast-fail {
    border-left-color: #f43f5e;
}

/* Модальные окна */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 6, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3000;
}

.modal-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius-large);
    width: 500px;
    max-width: 90%;
    box-shadow: var(--md-elevation-2);
    border: 1px solid var(--border-subtle);
    animation: zoomIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes zoomIn {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 16px;
    margin-bottom: 24px;
}

.modal-title-text {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.modal-close {
    cursor: pointer;
    font-size: 24px;
    color: var(--color-text-muted);
    transition: var(--transition-smooth);
    user-select: none;
}

.modal-close:hover {
    color: var(--color-text-primary);
}

.modal-lead-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.modal-form-desc {
    font-size: 13px;
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin-bottom: 12px;
}

.form-group-custom {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-custom label {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-text-secondary);
}

.form-group-custom input {
    background-color: var(--bg-base);
    border: 1px solid var(--border-subtle);
    padding: 14px;
    border-radius: var(--radius-medium);
    color: var(--color-text-primary);
    font-family: var(--font-primary);
    font-size: 13px;
    outline: none;
    transition: var(--transition-smooth);
}

.form-group-custom input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px var(--color-primary-glow);
}

.form-privacy-modal {
    font-size: 10px;
    color: var(--color-text-muted);
    line-height: 1.4;
    text-align: center;
}

/* ЗАЩИТА СЕТКИ ОТ ВЫХОДА КОНТЕНТА ЗА РАМКИ */
.comparison-card, 
.pain-card, 
.simulator-board-panel, 
.simulator-controls-panel, 
.db-panel, 
.ai-info-panel, 
.ai-chat-mockup {
    min-width: 0;
}

/* АДАПТИВНЫЙ СЛОЙ (RESPONSIVE LAYER) */
@media (max-width: 1024px) {
    .container {
        width: 100%;
        max-width: 100%;
        padding: 60px 20px;
    }

    /* Сетки перестраиваются в одну колонку */
    .pains-grid, 
    .comparison-grid, 
    .calc-box, 
    .roadmap-grid, 
    .simulator-grid, 
    .ai-grid, 
    .db-visualizer-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Адаптивная навигация (Drawer) */
    .mobile-nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        max-width: 85%;
        height: 100vh;
        background-color: rgba(11, 13, 19, 0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border-left: 1px solid rgba(255, 255, 255, 0.08);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        z-index: 999;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
        transform: translateX(100%);
        visibility: hidden;
        transition: var(--transition-smooth);
    }

    .nav-links.is-active {
        transform: translateX(0);
        visibility: visible;
    }

    .nav-item {
        font-size: 18px;
        font-weight: 600;
    }

    /* ВЕРТИКАЛЬНАЯ ОПТИМИЗАЦИЯ KANBAN-ДОСКИ */
    .kanban-board {
        display: flex;
        flex-direction: column !important;
        gap: 24px;
        height: auto;
        overflow-x: hidden !important;
        scrollbar-width: none;
    }

    .kanban-board::-webkit-scrollbar {
        display: none;
    }
    
    .kanban-column {
        width: 100% !important;
        height: auto !important;
        min-height: 180px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    }

    .column-cards-container {
        min-height: 80px;
    }

    /* ВЕРТИКАЛЬНАЯ ОПТИМИЗАЦИЯ ТАБОВ СУБД */
    .db-tabs {
        flex-direction: column !important;
        gap: 8px;
        width: 100%;
        overflow-x: hidden !important;
        scrollbar-width: none;
    }

    .db-tabs::-webkit-scrollbar {
        display: none;
    }

    .db-tab {
        width: 100% !important;
        min-width: 100% !important;
        white-space: normal !important;
    }

    .db-tab-info {
        white-space: normal !important;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 48px 20px;
    }

    /* Парящая шапка на мобильных без дробных сдвигов субпикселей */
    .main-header {
        top: 12px;
        left: 12px;
        --header-translate-x: 0px;
        width: calc(100% - 24px);
        height: 56px;
        border-radius: 16px;
    }

    .header-container {
        padding: 0 16px;
    }

    .tech-badge {
        display: none;
    }

    .brand-text {
        font-size: 15px;
    }

    .hero-section {
        padding-top: 120px;
        padding-bottom: 40px;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 32px;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 32px;
    }

    .btn {
        width: 100%;
        padding: 14px 24px;
    }

    /* Вертикальное выравнивание и центрирование блока преимуществ */
    .hero-badges {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        max-width: 320px;
        margin: 32px auto 0 auto;
        gap: 16px;
        padding: 0 8px;
    }

    .hero-badge-item {
        font-size: 13px;
        grid-template-columns: 20px 1fr;
        gap: 12px;
        width: 100%;
    }

    .hero-badge-item span:first-child {
        font-size: 18px;
        width: 20px;
        height: 20px;
    }

    .section-title {
        font-size: 26px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .comparison-card, .pain-card, .roadmap-step {
        padding: 24px;
    }

    /* ВЕРТИКАЛЬНАЯ ОПТИМИЗАЦИЯ ТАБЛИЦЫ СУБД */
    .db-table-wrapper {
        overflow-x: hidden !important;
        width: 100%;
        border: none;
    }

    .db-rendered-table {
        width: 100% !important;
        min-width: 100% !important;
        display: block !important;
    }

    .db-rendered-table thead {
        display: none !important;
    }

    .db-rendered-table tbody {
        display: block !important;
        width: 100% !important;
    }

    .db-rendered-table tr {
        display: block !important;
        background-color: rgba(255, 255, 255, 0.01) !important;
        border: 1px solid rgba(255, 255, 255, 0.05) !important;
        border-radius: var(--radius-medium) !important;
        padding: 16px !important;
        margin-bottom: 16px !important;
        width: 100% !important;
    }

    .db-rendered-table td {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 10px 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
        width: 100% !important;
        font-size: 13px !important;
        white-space: normal !important;
        text-align: right !important;
    }

    .db-rendered-table td:last-child {
        border-bottom: none !important;
    }

    .db-rendered-table td::before {
        content: attr(data-label) !important;
        font-weight: 700 !important;
        color: var(--color-text-secondary) !important;
        text-transform: uppercase !important;
        font-size: 11px !important;
        letter-spacing: 0.05em !important;
        text-align: left !important;
        margin-right: 16px !important;
        flex-shrink: 0 !important;
    }

    /* Мобильный вид калькулятора */
    .calc-box {
        padding: 24px;
        gap: 24px;
    }

    .range-label, .range-val {
        font-size: 13px;
    }

    .output-value {
        font-size: 26px;
    }

    .calc-output-card {
        padding: 20px;
    }

    /* ИИ чат-ассистент */
    .ai-chat-mockup {
        height: 420px;
    }

    .chat-conversation-area {
        padding: 16px;
        gap: 12px;
    }

    .chat-message {
        padding: 12px 14px;
        font-size: 12px;
    }

    .chat-input-form {
        padding: 12px 16px;
    }

    .prompt-btn {
        padding: 10px 14px;
        font-size: 12px;
    }

    /* Тарифы */
    .pricing-card {
        padding: 32px 24px;
    }

    .plan-price {
        font-size: 36px;
    }

    .plan-features li {
        font-size: 13px;
    }

    /* Модалки */
    .modal-card {
        padding: 24px;
        max-height: 90vh;
        overflow-y: auto;
    }

    /* Подвал */
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding: 32px 0;
    }

    .footer-desc {
        margin: 12px auto 0 auto;
    }
}
