:root {
    --bg-base: #0E0E10;
    --bg-card: rgba(255, 255, 255, 0.03);
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);
    --text-primary: #F5F5F7;
    --text-secondary: rgba(245, 245, 247, 0.7);
    --accent: #D29563;
    --accent-glow: rgba(210, 149, 99, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { 
    scroll-behavior: smooth; 
    overflow-x: hidden; 
    max-width: 100vw;   
}
body {
    background-color: var(--bg-base); color: var(--text-primary);
    font-family: 'Inter', sans-serif; -webkit-font-smoothing: antialiased; 
    overflow-x: hidden; 
    max-width: 100vw;   
}
h1, h2, h3, h4, h5 { font-family: 'Syne', sans-serif; }
.container { 
    max-width: 1400px; 
    margin: 0 auto; 
    padding: 0 40px; 
    overflow: hidden; 
}

/* ==========================================
   UI ЭЛЕМЕНТЫ
   ========================================== */
.btn-primary {
    display: inline-flex; align-items: center; gap: 12px; background: var(--accent); color: #0E0E10;
    font-family: 'Syne', sans-serif; font-weight: 700; font-size: 15px; padding: 18px 36px;
    border-radius: 8px; text-decoration: none; border: none; cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); box-shadow: 0 0 40px var(--accent-glow);
}
.btn-primary:hover { transform: scale(1.02); box-shadow: 0 0 60px rgba(210, 149, 99, 0.3); }
.btn-outline {
    display: inline-flex; align-items: center; gap: 12px; background: transparent; color: var(--text-primary);
    font-family: 'Syne', sans-serif; font-weight: 700; font-size: 15px; padding: 18px 36px;
    border-radius: 8px; text-decoration: none; border: 1px solid var(--border-hover); cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.section-label {
    font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--accent);
    margin-bottom: 24px; display: flex; align-items: center; gap: 12px;
}
.section-label::before { content: ''; width: 40px; height: 1px; background: var(--accent); }

/* ==========================================
   НАВИГАЦИЯ
   ========================================== */
nav { 
    position: fixed; top: 0; width: 100%; padding: 24px 0; z-index: 100; 
    background: rgba(14, 14, 16, 0.8); backdrop-filter: blur(20px); border-bottom: 1px solid transparent;
    transition: background 0.3s, border-color 0.3s;
}
nav.scrolled { background: rgba(14, 14, 16, 0.95); border-bottom-color: var(--border-subtle); }
.nav-inner { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; color: var(--text-primary); text-decoration: none; }
.logo span { color: var(--accent); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { color: var(--text-secondary); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.3s; }
.nav-links a:hover { color: var(--text-primary); }

.menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 101; }
.menu-toggle span { width: 24px; height: 2px; background: var(--text-primary); transition: all 0.3s; }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ==========================================
   HERO
   ========================================== */
.hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; position: relative; padding-top: 100px; }
.hero-text { max-width: 900px; }
.hero h1 { font-size: clamp(3.5rem, 8vw, 7.5rem); line-height: 0.9; font-weight: 800; letter-spacing: -0.04em; margin-bottom: 40px; background: linear-gradient(180deg, #FFFFFF 0%, #86868B 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-sub { font-size: 18px; line-height: 1.6; color: var(--text-secondary); max-width: 480px; margin-bottom: 60px; font-weight: 400; }

.hero-proof { margin-top: 80px; display: flex; align-items: center; gap: 40px; }
.proof-logos { display: flex; align-items: center; }
.proof-logo { width: 40px; height: 40px; border-radius: 50%; background: var(--bg-card); border: 1px solid var(--border-subtle); margin-right: -12px; display: flex; align-items: center; justify-content: center; font-family: 'Syne'; font-weight: 700; font-size: 12px; color: var(--text-secondary); }
.proof-text { font-size: 14px; color: var(--text-secondary); font-weight: 400; }
.proof-text strong { color: var(--text-primary); font-weight: 600; }

.deconstructed-ui { position: absolute; right: -5%; top: 50%; transform: translateY(-50%) perspective(1000px) rotateY(-15deg) rotateX(5deg); width: 55%; height: 70vh; z-index: -1; opacity: 0.6; }
.ui-layer { position: absolute; background: rgba(255, 255, 255, 0.02); border: 1px solid var(--border-subtle); backdrop-filter: blur(20px); border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.ui-layer-1 { width: 100%; height: 100%; top: 0; left: 0; filter: blur(8px); }
.ui-layer-2 { width: 60%; height: 40%; bottom: 10%; right: 10%; filter: blur(4px); display: flex; padding: 24px; flex-direction: column; gap: 12px; }
.ui-layer-3 { width: 30%; height: 20%; top: 15%; left: 15%; filter: blur(2px); }
.skeleton-line { height: 8px; background: rgba(255,255,255,0.05); border-radius: 4px; width: 80%; }
.skeleton-line.short { width: 40%; }
.skeleton-block { height: 60px; background: var(--accent-glow); border-radius: 8px; border: 1px solid rgba(210, 149, 99, 0.2); }

/* ==========================================
   БОЛЬ
   ========================================== */
.pain-section { padding: 160px 0; border-top: 1px solid var(--border-subtle); }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border-subtle); margin-top: 80px; }
.pain-card { background: var(--bg-base); padding: 60px 40px; transition: background 0.3s; }
.pain-card:hover { background: var(--bg-card); }
.pain-icon { font-size: 32px; margin-bottom: 24px; color: var(--accent); font-family: 'Syne'; font-weight: 800; }
.pain-card h3 { font-size: 24px; margin-bottom: 16px; letter-spacing: -0.02em; }
.pain-card p { font-size: 14px; line-height: 1.7; color: var(--text-secondary); font-weight: 400; }

/* ==========================================
   ЧТО ВНУТРИ (Фичи и Роадмап)
   ========================================== */
.features-section { padding: 160px 0; }
.feature-row { display: flex; gap: 80px; margin-bottom: 140px; align-items: center; }
.feature-row:last-of-type { margin-bottom: 0; }
.feature-row.reverse { flex-direction: row-reverse; }

.feature-visual { 
    flex: 1; min-height: 400px; background: var(--bg-card); border: 1px solid var(--border-subtle); 
    border-radius: 24px; position: relative; overflow: hidden; display: flex; align-items: center; 
    justify-content: center; padding: 24px;
}
.mockup-img {
    width: 100%; height: 100%; object-fit: contain; border-radius: 12px; 
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3)); transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.feature-visual:hover .mockup-img { transform: scale(1.02); }

.feature-content { flex: 1; }
.feature-number { font-family: 'Syne'; font-size: 80px; font-weight: 800; color: rgba(255,255,255,0.03); line-height: 1; margin-bottom: -20px; }
.feature-content h3 { font-size: 36px; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 24px; }
.feature-list { list-style: none; }
.feature-list li { font-size: 15px; color: var(--text-secondary); margin-bottom: 16px; padding-left: 24px; position: relative; line-height: 1.5; font-weight: 400; }
.feature-list li::before { content: ''; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }

/* Вектор развития (Roadmap) */
.feature-roadmap {
    margin-top: 140px; padding: 60px; background: var(--bg-card); border: 1px dashed var(--border-hover); 
    border-radius: 24px; text-align: center;
}
.feature-roadmap .feature-number { color: rgba(255,255,255,0.04); margin-bottom: -10px; }
.feature-roadmap h3 { font-size: 36px; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 16px; }
.roadmap-subtitle { font-size: 16px; color: var(--text-secondary); font-weight: 400; max-width: 500px; margin: 0 auto 48px auto; line-height: 1.5; }
.roadmap-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; list-style: none; text-align: left; }
.roadmap-list li { padding-left: 0; font-size: 14px; line-height: 1.6; color: var(--text-secondary); font-weight: 400; }
.roadmap-list li::before { display: none; }
.roadmap-list li strong { display: block; font-family: 'Syne', sans-serif; font-weight: 700; font-size: 18px; color: var(--text-primary); margin-bottom: 8px; }

/* ==========================================
   ПРОЦЕСС
   ========================================== */
.process-section { padding: 160px 0; border-top: 1px solid var(--border-subtle); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-top: 80px; position: relative; }
.process-grid::before { content: ''; position: absolute; top: 40px; left: 40px; right: 40px; height: 1px; background: var(--border-subtle); z-index: 0; }
.process-step { position: relative; z-index: 1; }
.step-number { width: 80px; height: 80px; background: var(--bg-base); border: 1px solid var(--border-hover); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Syne'; font-weight: 800; font-size: 24px; margin-bottom: 32px; transition: all 0.4s; }
.process-step:hover .step-number { border-color: var(--accent); color: var(--accent); box-shadow: 0 0 30px var(--accent-glow); }
.process-step h4 { font-size: 20px; margin-bottom: 12px; }
.process-step p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; font-weight: 400; }

/* ==========================================
   МЕТРИКИ
   ========================================== */
.metrics-section { padding: 120px 0; border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
.metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.metric-value { font-family: 'Syne'; font-size: 48px; font-weight: 800; color: var(--accent); margin-bottom: 8px; }
.metric-label { font-size: 13px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.1em; }

/* ==========================================
   ОТЗЫВЫ
   ========================================== */
.testimonials-section { padding: 160px 0; }
.test-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 80px; }
.test-card { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 24px; padding: 48px; transition: border-color 0.3s; }
.test-card:hover { border-color: var(--border-hover); }
.test-quote { font-size: 16px; line-height: 1.7; color: var(--text-secondary); font-weight: 400; font-style: italic; margin-bottom: 32px; }
.test-author { display: flex; align-items: center; gap: 16px; }
.author-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--border-subtle); display: flex; align-items: center; justify-content: center; font-family: 'Syne'; font-weight: 700; color: var(--accent); }
.author-info h5 { font-size: 15px; font-weight: 600; }
.author-info p { font-size: 12px; color: var(--text-secondary); }

/* ==========================================
   ТАРИФЫ
   ========================================== */
.pricing-section { padding: 160px 0; border-top: 1px solid var(--border-subtle); }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; margin-top: 80px; }
.price-card { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 24px; padding: 48px 32px; display: flex; flex-direction: column; }
.price-card.featured { border-color: var(--accent); background: rgba(210, 149, 99, 0.03); box-shadow: 0 0 80px rgba(210, 149, 99, 0.05); position: relative; }
.price-card.featured::before { content: 'Популярный'; position: absolute; top: 24px; right: 24px; background: var(--accent); color: #0E0E10; font-size: 11px; font-weight: 700; padding: 6px 12px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.05em; }
.price-tier { font-size: 12px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--text-secondary); margin-bottom: 24px; }
.price-amount { font-family: 'Syne'; font-size: 48px; font-weight: 800; margin-bottom: 8px; }
.price-period { font-size: 14px; color: var(--text-secondary); margin-bottom: 32px; font-weight: 400; }

/* Теги лимитов и плашка доступа */
.price-specs { display: flex; gap: 8px; margin-bottom: 24px; }
.price-specs span { font-size: 12px; background: rgba(255,255,255,0.05); border: 1px solid var(--border-subtle); padding: 6px 12px; border-radius: 8px; color: var(--text-secondary); font-weight: 500; }
.price-full-access { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); border: 1px solid rgba(210, 149, 99, 0.2); background: rgba(210, 149, 99, 0.05); padding: 10px; border-radius: 8px; text-align: center; margin-bottom: 32px; font-weight: 700; }

.price-features { flex: 1; margin-bottom: 40px; }
.price-features li { font-size: 14px; color: var(--text-secondary); margin-bottom: 14px; display: flex; align-items: center; gap: 12px; font-weight: 400; list-style: none; }
.price-features li svg { width: 16px; height: 16px; fill: var(--accent); flex-shrink: 0; }

/* Подарок в тарифе Практика */
.featured-addon { color: var(--accent) !important; }
.featured-addon strong { color: var(--accent); }

/* Доп. модули внутри карты */
.price-addons { margin-top: 24px; padding-top: 20px; border-top: 1px dashed var(--border-subtle); }
.addon-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-secondary); margin-bottom: 10px; }
.addon-item { font-size: 13px; color: var(--text-secondary); font-weight: 400; margin-bottom: 6px; display: flex; justify-content: space-between; }
.addon-item span { color: var(--text-primary); font-weight: 500; }

/* Сноска масштабирования */
.price-scaling-note { margin-top: 16px; font-size: 10px; color: rgba(255,255,255,0.3); text-align: center; letter-spacing: 0.02em; }

/* Блок конструктора внизу тарифов */
.price-scaling { text-align: center; padding: 40px; background: var(--bg-card); border-radius: 20px; border: 1px dashed var(--border-hover); }

/* ==========================================
   ФОРМА ЗАЯВКИ
   ========================================== */
.form-section { padding: 160px 0; border-top: 1px solid var(--border-subtle); }
.form-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-top: 80px; align-items: start; }
.form-left p { font-size: 16px; line-height: 1.7; color: var(--text-secondary); font-weight: 400; margin-bottom: 32px; }
.form-left ul { list-style: none; }
.form-left li { font-size: 14px; color: var(--text-secondary); margin-bottom: 16px; padding-left: 24px; position: relative; font-weight: 400; }
.form-left li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

.demo-form { display: flex; flex-direction: column; gap: 32px; }
.form-group { position: relative; }
.form-input, .form-textarea {
    width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--border-hover);
    color: var(--text-primary); font-family: 'Inter'; font-size: 16px; padding: 12px 0; outline: none; transition: border-color 0.3s;
}
.form-input:focus, .form-textarea:focus { border-bottom-color: var(--accent); }
.form-textarea { resize: none; height: 100px; }
.form-label { position: absolute; top: 12px; left: 0; color: var(--text-secondary); font-size: 14px; pointer-events: none; transition: all 0.3s; }
.form-input:focus ~ .form-label, .form-input:not(:placeholder-shown) ~ .form-label,
.form-textarea:focus ~ .form-label, .form-textarea:not(:placeholder-shown) ~ .form-label {
    top: -16px; font-size: 11px; color: var(--accent); text-transform: uppercase; letter-spacing: 0.1em;
}

.policy-group { display: flex; gap: 12px; align-items: flex-start; }
.policy-checkbox { -webkit-appearance: none; appearance: none; width: 18px; height: 18px; border: 1px solid var(--border-hover); border-radius: 4px; background: transparent; cursor: pointer; flex-shrink: 0; margin-top: 2px; position: relative; }
.policy-checkbox:checked { background: var(--accent); border-color: var(--accent); }
.policy-checkbox:checked::after { content: '✓'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: #0E0E10; font-size: 12px; font-weight: 700; }
.policy-text { font-size: 12px; color: var(--text-secondary); line-height: 1.4; }
.policy-text a { color: var(--accent); text-decoration: none; }

.form-submit { margin-top: 8px; width: 100%; justify-content: center; }
.form-success { display: none; text-align: center; padding: 40px; background: var(--bg-card); border: 1px solid var(--accent); border-radius: 24px; }
.form-success h3 { color: var(--accent); margin-bottom: 8px; }

/* ==========================================
   FAQ
   ========================================== */
.faq-section { padding: 160px 0; border-top: 1px solid var(--border-subtle); }
.faq-list { max-width: 800px; margin: 80px auto 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-subtle); }
.faq-question { width: 100%; background: none; border: none; color: var(--text-primary); font-family: 'Syne'; font-size: 20px; font-weight: 600; text-align: left; padding: 30px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: color 0.3s; }
.faq-question:hover { color: var(--accent); }
.faq-icon { transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); font-size: 24px; }
.faq-item.active .faq-icon { transform: rotate(45deg); color: var(--accent); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s; }
.faq-answer-inner { padding-bottom: 30px; font-size: 15px; line-height: 1.8; color: rgba(245, 245, 247, 0.85); font-weight: 400; }

/* ==========================================
   CTA
   ========================================== */
.cta-section { padding: 0 0 200px 0; }
.cta-box { background: var(--accent); border-radius: 32px; padding: 100px; color: #0E0E10; position: relative; overflow: hidden; }
.cta-box h2 { font-size: 56px; font-weight: 800; line-height: 0.95; letter-spacing: -0.03em; margin-bottom: 40px; position: relative; z-index: 2; }
.btn-dark { background: #0E0E10; color: #fff; box-shadow: none; }
.btn-dark:hover { background: #2a2a2e; box-shadow: 0 20px 40px rgba(0,0,0,0.2); }
.cta-geometry { position: absolute; right: -10%; bottom: -30%; width: 600px; height: 600px; border: 1px solid rgba(0,0,0,0.1); border-radius: 50%; z-index: 1; pointer-events: none;}
.cta-geometry::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 70%; height: 70%; border: 1px solid rgba(0,0,0,0.1); border-radius: 50%; }

/* ==========================================
   FOOTER И ПЛАВАЮЩИЕ ЭЛЕМЕНТЫ
   ========================================== */
footer { padding: 80px 0 40px; border-top: 1px solid var(--border-subtle); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand p { font-size: 14px; color: var(--text-secondary); font-weight: 400; line-height: 1.6; margin-top: 16px; max-width: 300px; }
.footer-col h5 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-secondary); margin-bottom: 20px; }
.footer-col a { display: block; color: var(--text-secondary); text-decoration: none; font-size: 14px; margin-bottom: 12px; transition: color 0.3s; font-weight: 400; }
.footer-col a:hover { color: var(--text-primary); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 40px; border-top: 1px solid var(--border-subtle); }
.footer-copy { font-size: 13px; color: var(--text-secondary); font-weight: 400; }
.socials { display: flex; gap: 16px; }
.socials a { width: 36px; height: 36px; border: 1px solid var(--border-subtle); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--text-secondary); text-decoration: none; transition: all 0.3s; font-size: 14px; }
.socials a:hover { border-color: var(--accent); color: var(--accent); }

#scrollTopBtn {
    position: fixed; bottom: 40px; right: 40px; width: 50px; height: 50px; border-radius: 50%; 
    background: var(--bg-card); border: 1px solid var(--border-hover); color: var(--text-primary); 
    cursor: pointer; opacity: 0; visibility: hidden; transition: all 0.3s; z-index: 99; font-size: 20px; 
    display: flex; align-items: center; justify-content: center;
}
#scrollTopBtn:hover { border-color: var(--accent); color: var(--accent); }

.mobile-sticky-cta {
    display: none; position: fixed; bottom: 0; left: 0; right: 0; 
    background: var(--bg-base); border-top: 1px solid var(--border-subtle); 
    padding: 16px; z-index: 98; text-align: center;
}
.mobile-sticky-cta .btn-primary { width: 100%; justify-content: center; }

/* ==========================================
   КОНТАКТЫ (ПОЛНОСТЬЮ ИСПРАВЛЕННЫЕ СТИЛИ)
   ========================================== */
.contact-section {
    padding: 160px 0;
    border-top: 1px solid var(--border-subtle);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 60px;
    align-items: start;
}

/* Левая колонка */
.contact-info h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}
.contact-info .hero-sub {
    margin-bottom: 48px;
}

/* Список контактов */
.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.contact-list li {
    display: flex;
    gap: 20px;
    align-items: flex-start; /* Иконка и текст стоят ровно */
}
.contact-icon {
    color: var(--text-secondary);
    flex-shrink: 0; /* Иконка не сжимается */
    margin-top: 2px; /* Микро-выравнивание */
}
.contact-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: 6px;
}
.contact-value {
    display: block; /* Каждая ссылка с новой строки */
    font-family: 'Syne', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s;
    word-break: break-word;
}
a.contact-value:hover {
    color: var(--accent);
}

/* Ряд ссылок внутри пункта */
.contact-links-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 4px; /* Небольшой отступ сверху внутри пункта */
}

/* Правая колонка (Оранжевый CTA) */
.contact-cta .cta-box {
    height: 100%; /* Растягиваем на высоту левой части */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Центрируем текст внутри плашки */
    padding: 80px;
}
.cta-subtitle {
    font-size: 18px;
    color: #0E0E10;
    opacity: 0.8;
    margin-bottom: 40px;
    max-width: 400px;
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

/* ==========================================
   АНИМАЦИИ
   ========================================== */
.reveal { opacity: 0; transform: translateY(40px); transition: all 1s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; } .delay-2 { transition-delay: 0.2s; } .delay-3 { transition-delay: 0.3s; }

/* ==========================================
   АДАПТИВ
   ========================================== */
@media (max-width: 1024px) {
    .deconstructed-ui { display: none; }
    .pain-grid, .metrics-grid, .form-layout, .test-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
    .feature-row, .feature-row.reverse { flex-direction: column; gap: 40px; }
    .feature-visual { min-height: 250px; width: 100%; }
    .process-grid { grid-template-columns: 1fr 1fr; } .process-grid::before { display: none; }
    .cta-box { padding: 60px 40px; } .cta-box h2 { font-size: 36px; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    
    .menu-toggle { display: flex; }
    .nav-links { 
        position: fixed; top: 0; right: -100%; width: 100%; height: 100vh; 
        background: rgba(14, 14, 16, 0.98); backdrop-filter: blur(30px);
        flex-direction: column; justify-content: center; align-items: center; gap: 40px;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .nav-links.active { right: 0; }
    .nav-links a { font-size: 24px; }

    .feature-roadmap { margin-top: 80px; padding: 40px 24px; }
    .roadmap-list { grid-template-columns: 1fr; gap: 24px; text-align: left; }
    
    /* Контакт и CTA */
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .contact-cta .cta-box { min-height: auto; padding: 60px 40px; }
    .contact-cta .cta-box h2 { font-size: 32px; }
}

@media (max-width: 768px) {
    /* Базовые отступы и шрифты */
    .container { padding: 0 20px; }
    
    .mobile-sticky-cta { display: block; }
    body { padding-bottom: 90px; }
    #scrollTopBtn { bottom: 110px; right: 20px; width: 44px; height: 44px; font-size: 18px; }

    /* Уменьшаем глобальные отсупы секций со 160px до 80px */
    .pain-section, .features-section, .process-section, .testimonials-section, 
    .pricing-section, .form-section, .faq-section, .contact-section { padding: 80px 0; }
    .metrics-section { padding: 60px 0; }
    
    /* Герой */
    .hero { min-height: auto; padding-top: 120px; padding-bottom: 60px; }
    .hero h1 { font-size: clamp(2.5rem, 10vw, 3.5rem); margin-bottom: 24px; }
    .hero-sub { font-size: 16px; margin-bottom: 40px; }
    .hero-proof { flex-direction: column; align-items: flex-start; gap: 20px; margin-top: 48px; }

    /* Боль */
    .pain-grid { margin-top: 48px; gap: 0; }
    .pain-card { padding: 40px 20px; border-bottom: 1px solid var(--border-subtle); }
    .pain-card:last-child { border-bottom: none; }
    .pain-icon { font-size: 28px; margin-bottom: 16px; }

    /* Фичи */
    .feature-row { margin-bottom: 80px; gap: 24px; }
    .feature-number { font-size: 60px; margin-bottom: -10px; }
    .feature-content h3 { font-size: 28px; margin-bottom: 16px; }
    .feature-list li { font-size: 14px; margin-bottom: 12px; }
    .feature-roadmap { margin-top: 80px; padding: 32px 20px; }
    .feature-roadmap h3 { font-size: 28px; }

    /* Процесс */
    .process-grid { grid-template-columns: 1fr; gap: 40px; margin-top: 48px; }
    .step-number { width: 60px; height: 60px; font-size: 20px; margin-bottom: 20px; }

    /* Метрики */
    .metrics-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .metric-value { font-size: 36px; }
    .metric-label { font-size: 11px; }

    /* Отзывы */
    .test-grid { margin-top: 48px; gap: 16px; }
    .test-card { padding: 32px 20px; }
    .test-quote { font-size: 15px; margin-bottom: 24px; }

    /* Тарифы */
    .pricing-grid { margin-top: 48px; gap: 16px; }
    .price-card { padding: 36px 20px; }
    .price-amount { font-size: 40px; }
    .price-specs { flex-wrap: wrap; }

    /* Форма */
    .form-layout { margin-top: 48px; gap: 48px; }
    .btn-primary, .btn-outline { padding: 16px 24px; font-size: 14px; } 

    /* FAQ */
    .faq-list { margin-top: 48px; }
    .faq-question { font-size: 18px; padding: 24px 0; }
    .faq-icon { font-size: 20px; }
    .faq-answer-inner { font-size: 14px; padding-bottom: 24px; }

    /* Контакты */
    .contact-section { padding-bottom: 120px; }
    .contact-list { gap: 24px; }
    .contact-value { font-size: 16px; }
    .contact-links-row { flex-wrap: wrap; gap: 8px; } 
    .contact-cta .cta-box { padding: 48px 24px; height: auto; }
    .contact-cta .cta-box h2 { font-size: 28px; margin-bottom: 16px; }
    .cta-subtitle { font-size: 15px; margin-bottom: 32px; }
    
    /* СКРЫВАЕМ ДЕКОРАТИВНЫЕ ЭЛЕМЕНТЫ, КОТОРЫЕ ВЫЛЕЗАЮТ ЗА КРАЙ */
    .cta-geometry { display: none; } 

    /* Футер */
    footer { padding: 60px 0 32px; }
    .footer-brand p { max-width: 100%; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero h1 { font-size: 2.2rem; }
    .hero-sub { font-size: 15px; }
    
    /* Чтобы кнопки не вылезали за экран */
    .btn-primary, .btn-outline { width: 100%; justify-content: center; padding: 18px 20px; box-sizing: border-box; }
    
    /* Тарифы */
    .price-specs { flex-wrap: wrap; }
    
    /* CTA */
    .cta-box { padding: 48px 24px; border-radius: 24px; }
    .cta-box h2 { font-size: 28px; }
}