/* ==========================================================================
   TableMask — Syntax Labs (Obsidian Style Theme)
   ========================================================================== */

/* 1. Импорт современных шрифтов */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* 2. Глобальные переменные UI */
:root {
    --bg-main: #111113;
    --bg-panel: #1a1a1e;
    --bg-input: #0b0b0c;
    --border-color: #26262b;
    
    --text-main: #e3e3e6;
    --text-muted: #7c7c85;
    
    --accent-lime: #a3e635;
    --accent-lime-dim: rgba(163, 230, 53, 0.1);
    --border-lime: rgba(163, 230, 53, 0.25);
    
    --btn-primary: #2563eb;
    --btn-primary-hover: #1d4ed8;

    --accent-blue: #60a5fa;
    --accent-blue-dim: rgba(59, 130, 246, 0.1);
    --border-blue: rgba(59, 130, 246, 0.25);

    --accent-amber: #fbbf24;
    --accent-amber-dim: rgba(251, 191, 36, 0.1);
    --border-amber: rgba(251, 191, 36, 0.25);
    
    /* Layout */
    --page-max-width: 1200px;
    --page-gutter: 24px;
    
    /* Шрифтовая система */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    --font-mono: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
}

/* 3. Сброс базовых стилей */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-sans);
    font-size: 14px;
    line-height: 1.5;
    height: auto;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-font-smoothing: antialiased;
}

.landing-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.page-container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    width: 100%;
    padding-left: var(--page-gutter);
    padding-right: var(--page-gutter);
}

/* 4. Шапка приложения (Header) */
.app-header {
    background-color: var(--bg-panel);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.app-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding-top: 14px;
    padding-bottom: 14px;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    flex-shrink: 0;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-left: auto;
}

.user-profile {
    display: flex;
    align-items: center;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    object-fit: cover;
    flex-shrink: 0;
}

.user-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-main);
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sign-out-link {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: color 0.15s ease;
}

.sign-out-link:hover {
    color: var(--text-main);
    text-decoration: underline;
}

.nav-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 6px;
    transition: color 0.15s ease, background-color 0.15s ease;
}

.nav-link:hover {
    color: var(--text-main);
    background-color: rgba(255, 255, 255, 0.04);
}

.nav-link:focus-visible {
    outline: 2px solid var(--accent-lime);
    outline-offset: 2px;
}

#top,
#demo,
#pricing,
#cookbook,
#faq {
    scroll-margin-top: 72px;
}

.logo-zone {
    display: flex;
    flex-direction: column;
}

.brand {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.logo-zone .product-name {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.version {
    font-size: 10px;
    font-weight: 700;
    color: var(--accent-lime);
    background-color: var(--accent-lime-dim);
    padding: 1px 5px;
    border-radius: 4px;
    margin-left: 4px;
    vertical-align: middle;
}

/* 4.1 Hero Section */
.hero-section {
    text-align: center;
    padding: 72px var(--page-gutter) 48px;
    max-width: var(--page-max-width);
    margin: 0 auto;
    width: 100%;
}

.hero-title {
    font-family: var(--font-sans);
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.15;
    color: var(--text-main);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto 32px;
}

.trust-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    background-color: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-lime);
    letter-spacing: 0.2px;
}

/* 4.2 Demo Section */
.demo-section {
    padding: 0 var(--page-gutter) 64px;
    max-width: var(--page-max-width);
    margin: 0 auto;
    width: 100%;
}

.demo-label {
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

/* 5. Основной Двухколоночный Лейаут */
.app-container {
    display: flex;
    gap: 20px;
    height: 600px;
    width: 100%;
}

.panel {
    flex: 1;
    background-color: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.panel-header {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1c1c21;
}

.panel-header h2 {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.panel-tabs {
    display: flex;
    gap: 0;
    padding: 0 16px;
    background-color: #1c1c21;
    border-bottom: 1px solid var(--border-color);
}

.tab-btn {
    font-family: var(--font-sans);
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    padding: 10px 14px;
    margin-bottom: -1px;
    transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.tab-btn:hover {
    color: var(--text-main);
    background-color: rgba(255, 255, 255, 0.02);
}

.tab-btn.active {
    color: var(--text-main);
    border-bottom-color: var(--accent-lime);
    background-color: rgba(163, 230, 53, 0.04);
}

.output-content {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 0;
}

.output-view {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.output-view.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

.unmask-zone {
    position: absolute;
    inset: 0;
}

.unmask-zone.is-active {
    position: relative;
}

#ai-response-input {
    flex: 1;
    min-height: 0;
}

.unmask-result {
    flex: 1;
    min-height: 0;
    border-top: 1px solid var(--border-color);
    background-color: #1a1a1f;
}

/* 6. Рабочие зоны (Ввод / Вывод данных) */
textarea, .output-display {
    flex: 1;
    background-color: var(--bg-input);
    border: none;
    color: var(--text-main);
    /* Здесь строго моноширинный для сохранения структуры кода/таблиц */
    font-family: var(--font-mono) !important;
    font-size: 13px;
    line-height: 1.6;
    padding: 20px;
    resize: none;
    outline: none;
    overflow-y: auto;
    white-space: pre-wrap;
    word-break: break-all;
}

textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.4;
}

/* Кастомный плейсхолдер для div (Output) */
.output-display:empty:before {
    content: attr(data-placeholder);
    color: var(--text-muted);
    opacity: 0.4;
}

/* 7. Подвалы панелей (Настройки и Статус) */
.settings-bar, .status-bar {
    padding: 14px 16px;
    border-top: 1px solid var(--border-color);
    background-color: #141417;
}

.settings-bar h3 {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.filters-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.custom-rules-zone {
    margin-top: 16px;
}

.custom-rules-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 6px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

#custom-keywords {
    width: 100%;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    font-family: var(--font-sans);
    padding: 8px 12px;
    border-radius: 6px;
    outline: none;
    font-size: 13px;
    transition: border-color 0.15s ease;
}

#custom-keywords::placeholder {
    color: var(--text-muted);
    opacity: 0.5;
}

#custom-keywords:focus {
    border-color: var(--text-muted);
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.status-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.loading-indicator {
    display: none;
    color: var(--btn-primary);
    font-weight: 600;
}

.secure-badge {
    color: var(--accent-lime);
    background-color: var(--accent-lime-dim);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    border: 1px solid var(--border-lime);
}

/* 8. Кнопки (UI Elements) */
.btn {
    font-family: var(--font-sans);
    padding: 6px 14px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    font-size: 12px;
    transition: all 0.15s ease;
}

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

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

.btn-secondary {
    background-color: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    color: var(--text-main);
    border-color: var(--text-muted);
    background-color: rgba(255, 255, 255, 0.02);
}

/* 9. Чекбоксы (Управление фильтрами) */
.checkbox-container {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-main);
    user-select: none;
}

.checkbox-container input {
    cursor: pointer;
    accent-color: var(--accent-lime); /* Современное управление цветом чекбокса */
    width: 14px;
    height: 14px;
}

/* 10. 🛡️ Теги Маскировки Данных (Вывод) */
.mask-tag {
    font-family: var(--font-sans); /* Сам тег внутри моно-текста делаем аккуратным сансом */
    background-color: var(--accent-lime-dim);
    color: var(--accent-lime);
    border: 1px solid var(--border-lime);
    border-radius: 4px;
    padding: 0px 6px;
    margin: 0 2px;
    font-size: 11px;
    font-weight: 600;
    display: inline-block;
    vertical-align: middle;
    user-select: all; /* Позволяет выделить весь тег целиком при клике */
    letter-spacing: 0.5px;
}

.mask-tag[data-type="name"] {
    background-color: var(--accent-amber-dim);
    color: var(--accent-amber);
    border-color: var(--border-amber);
}

.mask-tag[data-type="custom"] {
    background-color: var(--accent-blue-dim);
    color: var(--accent-blue);
    border-color: var(--border-blue);
}

/* 11. Landing — Shared Section Styles */
.section-title {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-align: center;
    color: var(--text-main);
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

/* 12. Pricing Section */
.pricing-section {
    padding: 80px var(--page-gutter);
    max-width: var(--page-max-width);
    margin: 0 auto;
    width: 100%;
    border-top: 1px solid var(--border-color);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    align-items: stretch;
}

.price-card {
    position: relative;
    background-color: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
}

.price-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-main);
}

.price-card .price {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--text-main);
    margin-bottom: 8px;
}

.card-desc {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.5;
}

.features-list {
    list-style: none;
    flex: 1;
    margin-bottom: 28px;
}

.features-list li {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.5;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

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

.features-list li strong {
    color: var(--text-main);
}

.card-btn {
    width: 100%;
    padding: 10px 16px;
    font-size: 13px;
}

.pro-card {
    border-color: var(--accent-lime);
    background: linear-gradient(180deg, rgba(163, 230, 53, 0.06) 0%, var(--bg-panel) 40%);
    box-shadow: 0 0 0 1px var(--border-lime), 0 16px 48px rgba(0, 0, 0, 0.35);
}

.pro-card .badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-lime);
    color: #111113;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 999px;
    white-space: nowrap;
}

.price-zone {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-bottom: 8px;
}

.pro-card .price {
    font-size: 48px;
    color: var(--accent-lime);
}

.old-price {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.7;
}

.period {
    display: block;
    width: 100%;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

/* 12.1 AI Privacy Cookbook */
.cookbook-section {
    padding: 80px var(--page-gutter);
    max-width: var(--page-max-width);
    margin: 0 auto;
    width: 100%;
    border-top: 1px solid var(--border-color);
}

.cookbook-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.guide-card {
    background-color: #1e1e24;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
    display: flex;
    flex-direction: column;
}

.guide-card:hover {
    border-color: rgba(163, 230, 53, 0.35);
    background-color: #222228;
    transform: translateY(-2px);
}

.guide-meta {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--accent-lime);
    margin-bottom: 12px;
}

.guide-card h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.4;
    margin-bottom: 10px;
}

.guide-card > p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
    flex: 1;
    margin-bottom: 16px;
}

.read-more {
    font-size: 13px;
    font-weight: 600;
    color: var(--btn-primary);
    transition: color 0.15s ease;
}

.guide-card:hover .read-more {
    color: #93c5fd;
}

.guide-content-hidden {
    display: none;
}

/* Reader Modal */
.reader-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.reader-modal.is-open {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 700px;
    max-height: 85vh;
    overflow-y: auto;
    background-color: #16161a;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 28px 32px 32px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
}

.close-btn {
    position: sticky;
    top: 0;
    float: right;
    font-family: var(--font-sans);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
    margin-bottom: 8px;
}

.close-btn:hover {
    color: var(--text-main);
    border-color: var(--text-muted);
    background-color: rgba(255, 255, 255, 0.06);
}

.reader-body {
    clear: both;
    padding-top: 8px;
}

.reader-body h2 {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--text-main);
    line-height: 1.25;
    margin-bottom: 20px;
}

.reader-body h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-main);
    margin: 28px 0 12px;
    line-height: 1.35;
}

.reader-body p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.reader-body ul {
    margin: 0 0 16px 20px;
    color: var(--text-muted);
}

.reader-body li {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 8px;
}

.reader-body strong {
    color: var(--text-main);
    font-weight: 600;
}

.reader-body em {
    color: #c4c4cc;
    font-style: italic;
}

.reader-body code {
    font-family: var(--font-mono);
    font-size: 13px;
    background-color: rgba(163, 230, 53, 0.08);
    color: var(--accent-lime);
    border: 1px solid var(--border-lime);
    border-radius: 4px;
    padding: 1px 6px;
}

/* 13. FAQ Section */
.faq-section {
    padding: 80px var(--page-gutter);
    max-width: var(--page-max-width);
    margin: 0 auto;
    width: 100%;
    border-top: 1px solid var(--border-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.faq-item {
    background-color: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 24px;
}

.faq-item h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 10px;
    line-height: 1.4;
}

.faq-item p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-muted);
}

/* 14. Footer */
.app-footer {
    margin-top: auto;
    border-top: 1px solid var(--border-color);
    background-color: #0e0e10;
}

.app-footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-top: 32px;
    padding-bottom: 32px;
}

.app-footer p {
    color: var(--text-muted);
    font-size: 13px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.15s ease;
}

.footer-links a:hover {
    color: var(--text-main);
}

/* 16. Legal Pages */
.legal-page {
    min-height: 100vh;
}

.legal-content {
    flex: 1;
    padding-top: 56px;
    padding-bottom: 80px;
    max-width: 760px;
}

.legal-eyebrow {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-lime);
    margin-bottom: 12px;
}

.legal-title {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.8px;
    color: var(--text-main);
    margin-bottom: 10px;
    line-height: 1.2;
}

.legal-updated {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.legal-intro {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border-color);
}

.legal-section {
    margin-bottom: 32px;
}

.legal-section h2 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 12px;
    line-height: 1.35;
}

.legal-section p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-muted);
}

.legal-list {
    margin-top: 12px;
    padding-left: 20px;
    color: var(--text-muted);
}

.legal-list li {
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 12px;
}

.legal-list li strong {
    color: var(--text-main);
    font-weight: 600;
}

.legal-link {
    color: var(--accent-lime);
    text-decoration: none;
    transition: opacity 0.15s ease;
}

.legal-link:hover {
    opacity: 0.85;
    text-decoration: underline;
}

.footer-links a[aria-current="page"] {
    color: var(--text-main);
}

/* 15. Responsive */
@media (max-width: 900px) {
    .app-container {
        flex-direction: column;
        height: auto;
        min-height: 600px;
    }

    .panel {
        min-height: 400px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .pricing-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .app-header-inner {
        flex-wrap: wrap;
        align-items: center;
        gap: 12px;
    }

    .header-nav {
        width: 100%;
        justify-content: flex-start;
    }

    .header-right {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 540px) {
    .hero-section {
        padding: 48px 20px 32px;
    }

    .hero-title {
        font-size: 28px;
        letter-spacing: -0.5px;
    }

    .section-title {
        font-size: 26px;
    }

    .legal-title {
        font-size: 28px;
    }

    .legal-content {
        padding-top: 40px;
        padding-bottom: 56px;
    }

    .app-footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}