/* ИнвестПро — Стили */
:root {
  --primary: #1A56DB; --primary-dark: #1245B8; --primary-light: #EBF1FF;
  --accent: #16A34A; --accent-light: #DCFCE7;
  --dark: #0F172A; --gray-700: #334155; --gray-500: #64748B; --gray-300: #CBD5E1; --gray-100: #F1F5F9;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08); --shadow: 0 4px 16px rgba(0,0,0,0.10); --shadow-lg: 0 8px 32px rgba(0,0,0,0.13);
  --radius: 12px; --radius-lg: 20px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; color: #1E293B; background: #fff; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: #1A56DB; text-decoration: none; transition: color .22s ease; }
a:hover { color: #1245B8; }
ul { list-style: none; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ШАПКА */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.96); backdrop-filter: blur(12px); border-bottom: 1px solid #CBD5E1; box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 32px; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.25rem; color: #0F172A; letter-spacing: -0.02em; flex-shrink: 0; }
.nav-logo .logo-icon { width: 36px; height: 36px; background: #1A56DB; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: white; font-weight: 800; }
.nav-logo:hover { color: #1A56DB; }
.nav-links { display: flex; align-items: center; gap: 4px; flex: 1; }
.nav-links a { color: #334155; font-weight: 500; font-size: 0.9rem; padding: 8px 12px; border-radius: 8px; transition: background .22s, color .22s; }
.nav-links a:hover, .nav-links a.active { color: #1A56DB; background: #EBF1FF; }
.nav-cta { display: flex; align-items: center; gap: 10px; }

/* КНОПКИ */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 20px; border-radius: 10px; font-weight: 600; font-size: 0.9rem; cursor: pointer; transition: all .22s; border: none; white-space: nowrap; font-family: inherit; }
.btn-primary { background: #1A56DB; color: #fff; }
.btn-primary:hover { background: #1245B8; color: #fff; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(26,86,219,0.3); }
.btn-outline { background: transparent; color: #1A56DB; border: 1.5px solid #1A56DB; }
.btn-outline:hover { background: #EBF1FF; color: #1A56DB; }
.btn-accent { background: #16A34A; color: #fff; }
.btn-accent:hover { background: #138A3E; color: #fff; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(22,163,74,0.3); }
.btn-lg { padding: 14px 28px; font-size: 1rem; border-radius: 12px; }
.btn-sm { padding: 7px 14px; font-size: 0.82rem; }

/* БУРГЕР */
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.burger span { display: block; width: 24px; height: 2px; background: #334155; border-radius: 2px; transition: all .22s; }

/* СЕКЦИИ */
section { padding: 80px 0; }
section.tight { padding: 48px 0; }
.bg-gray { background: #F1F5F9; }
.section-label { display: inline-block; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #1A56DB; background: #EBF1FF; padding: 4px 12px; border-radius: 100px; margin-bottom: 14px; }
.section-title { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 800; line-height: 1.2; letter-spacing: -0.03em; color: #0F172A; margin-bottom: 16px; }
.section-subtitle { font-size: 1.05rem; color: #64748B; max-width: 560px; line-height: 1.7; }
.section-header { margin-bottom: 48px; }

/* HERO */
.hero { background: linear-gradient(135deg, #F0F5FF 0%, #fff 50%, #F0FDF4 100%); padding: 96px 0 80px; overflow: hidden; position: relative; }
.hero::before { content: ''; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(26,86,219,0.06) 0%, transparent 70%); border-radius: 50%; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 64px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: #DCFCE7; color: #16A34A; font-size: 0.82rem; font-weight: 600; padding: 6px 14px; border-radius: 100px; margin-bottom: 20px; }
.hero-badge .dot { width: 7px; height: 7px; background: #16A34A; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.04em; color: #0F172A; margin-bottom: 20px; }
.hero h1 span { color: #1A56DB; }
.hero-desc { font-size: 1.1rem; color: #334155; margin-bottom: 36px; max-width: 480px; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 32px; margin-top: 48px; padding-top: 32px; border-top: 1px solid #CBD5E1; }
.stat-num { font-size: 1.75rem; font-weight: 800; color: #0F172A; letter-spacing: -0.03em; }
.stat-label { font-size: 0.82rem; color: #64748B; margin-top: 2px; }
.hero-visual { position: relative; }
.hero-card { background: #fff; border-radius: 20px; box-shadow: var(--shadow-lg); padding: 28px; border: 1px solid #F1F5F9; }
.hero-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.hero-card-title { font-weight: 700; font-size: 0.95rem; color: #0F172A; }
.badge-green { background: #DCFCE7; color: #16A34A; font-size: 0.78rem; font-weight: 700; padding: 3px 10px; border-radius: 100px; }
.hero-chart-bars { display: flex; align-items: flex-end; gap: 8px; height: 100px; margin-bottom: 16px; }
.bar { flex: 1; border-radius: 6px 6px 0 0; background: #EBF1FF; }
.bar.active { background: #1A56DB; }
.hero-card-footer { display: flex; align-items: center; justify-content: space-between; font-size: 0.82rem; color: #64748B; }
.hero-card-footer strong { color: #16A34A; font-size: 1.1rem; }
.float-card { position: absolute; background: #fff; border-radius: 12px; box-shadow: var(--shadow); padding: 14px 18px; display: flex; align-items: center; gap: 12px; font-size: 0.85rem; font-weight: 600; border: 1px solid #F1F5F9; }
.float-card.card-1 { top: -20px; right: -20px; animation: floatAnim 4s ease-in-out infinite; }
.float-card.card-2 { bottom: -10px; left: -20px; animation: floatAnim 4s ease-in-out infinite 2s; }
@keyframes floatAnim { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.float-icon { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.float-icon.blue { background: #EBF1FF; }
.float-icon.green { background: #DCFCE7; }

/* КУРСЫ */
.courses-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.course-card { background: #fff; border-radius: 20px; border: 1px solid #F1F5F9; box-shadow: var(--shadow-sm); overflow: hidden; transition: transform .22s, box-shadow .22s; display: flex; flex-direction: column; }
.course-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.course-cover { height: 160px; display: flex; align-items: center; justify-content: center; font-size: 3rem; position: relative; }
.course-cover.blue { background: linear-gradient(135deg, #EBF1FF, #DBEAFE); }
.course-cover.green { background: linear-gradient(135deg, #DCFCE7, #BBF7D0); }
.course-cover.orange { background: linear-gradient(135deg, #FEF3C7, #FDE68A); }
.course-cover.purple { background: linear-gradient(135deg, #F3E8FF, #E9D5FF); }
.course-badge { position: absolute; top: 12px; right: 12px; font-size: 0.75rem; font-weight: 700; padding: 4px 10px; border-radius: 100px; background: #fff; color: #16A34A; }
.course-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.course-level { font-size: 0.78rem; font-weight: 600; color: #64748B; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; }
.course-title { font-size: 1.05rem; font-weight: 700; color: #0F172A; margin-bottom: 10px; line-height: 1.4; }
.course-desc { font-size: 0.88rem; color: #64748B; line-height: 1.6; flex: 1; margin-bottom: 16px; }
.course-meta { display: flex; gap: 16px; font-size: 0.82rem; color: #64748B; margin-bottom: 20px; }

/* БЛОГ */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; }
.blog-card { background: #fff; border-radius: 20px; border: 1px solid #F1F5F9; box-shadow: var(--shadow-sm); overflow: hidden; transition: transform .22s, box-shadow .22s; display: block; color: inherit; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-cover { height: 200px; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; position: relative; }
.blog-cover.theme-1 { background: linear-gradient(135deg, #EBF1FF, #C7D8FF); }
.blog-cover.theme-2 { background: linear-gradient(135deg, #DCFCE7, #A7F3D0); }
.blog-cover.theme-3 { background: linear-gradient(135deg, #FEF3C7, #FDE68A); }
.blog-cover.theme-4 { background: linear-gradient(135deg, #FCE7F3, #FBCFE8); }
.blog-cover.theme-5 { background: linear-gradient(135deg, #F3E8FF, #DDD6FE); }
.blog-cat { position: absolute; top: 14px; left: 14px; font-size: 0.75rem; font-weight: 700; padding: 4px 10px; border-radius: 100px; background: #fff; color: #1A56DB; }
.blog-body { padding: 24px; }
.blog-meta { display: flex; align-items: center; gap: 12px; font-size: 0.8rem; color: #64748B; margin-bottom: 12px; flex-wrap: wrap; }
.author-pic { width: 26px; height: 26px; border-radius: 50%; background: #EBF1FF; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700; color: #1A56DB; flex-shrink: 0; }
.blog-title { font-size: 1.05rem; font-weight: 700; color: #0F172A; line-height: 1.4; margin-bottom: 10px; transition: color .22s; }
.blog-card:hover .blog-title { color: #1A56DB; }
.blog-excerpt { font-size: 0.88rem; color: #64748B; line-height: 1.6; margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.read-more { font-size: 0.85rem; font-weight: 600; color: #1A56DB; display: inline-flex; align-items: center; gap: 4px; }
.read-more::after { content: '→'; transition: transform .22s; }
.blog-card:hover .read-more::after { transform: translateX(4px); }

/* КОМАНДА */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.expert-card { background: #fff; border-radius: 20px; border: 1px solid #F1F5F9; box-shadow: var(--shadow-sm); padding: 28px 24px; text-align: center; transition: transform .22s, box-shadow .22s; }
.expert-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.expert-avatar { width: 88px; height: 88px; border-radius: 50%; margin: 0 auto 16px; background: #EBF1FF; display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: 800; color: #1A56DB; box-shadow: 0 0 0 4px #EBF1FF, 0 0 0 6px #CBD5E1; }
.expert-name { font-size: 1.05rem; font-weight: 700; color: #0F172A; margin-bottom: 4px; }
.expert-role { font-size: 0.85rem; color: #1A56DB; font-weight: 600; margin-bottom: 10px; }
.expert-bio { font-size: 0.85rem; color: #64748B; line-height: 1.6; margin-bottom: 16px; }
.expert-tags { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
.tag { font-size: 0.75rem; font-weight: 600; padding: 3px 10px; border-radius: 100px; background: #F1F5F9; color: #334155; }

/* КОНСУЛЬТАНТЫ */
.consultants-list { display: flex; flex-direction: column; gap: 20px; }
.consultant-card { background: #fff; border-radius: 20px; border: 1px solid #F1F5F9; box-shadow: var(--shadow-sm); padding: 28px; display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: start; transition: transform .22s, box-shadow .22s; }
.consultant-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.consultant-avatar { width: 72px; height: 72px; border-radius: 50%; background: #EBF1FF; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; font-weight: 800; color: #1A56DB; flex-shrink: 0; }
.consultant-name { font-weight: 700; font-size: 1.05rem; color: #0F172A; margin-bottom: 4px; }
.consultant-role { font-size: 0.85rem; color: #1A56DB; font-weight: 600; margin-bottom: 8px; }
.consultant-desc { font-size: 0.88rem; color: #64748B; line-height: 1.6; margin-bottom: 12px; }
.consultant-price { font-weight: 700; font-size: 1.1rem; color: #0F172A; white-space: nowrap; }
.consultant-price span { font-size: 0.82rem; color: #64748B; font-weight: 400; display: block; margin-top: 4px; }

/* ИНСТРУМЕНТЫ */
.tools-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; }
.tool-card { background: #fff; border-radius: 20px; border: 1px solid #F1F5F9; box-shadow: var(--shadow-sm); padding: 28px; transition: transform .22s, box-shadow .22s; }
.tool-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.tool-icon { width: 52px; height: 52px; border-radius: 14px; background: #EBF1FF; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 16px; }
.tool-title { font-size: 1.05rem; font-weight: 700; color: #0F172A; margin-bottom: 8px; }
.tool-desc { font-size: 0.88rem; color: #64748B; line-height: 1.6; margin-bottom: 20px; }
.calc-form { display: flex; flex-direction: column; gap: 14px; }
.calc-field { display: flex; flex-direction: column; gap: 5px; }
.calc-field label { font-size: 0.82rem; font-weight: 600; color: #334155; }
.calc-field input, .calc-field select { width: 100%; padding: 10px 14px; border: 1.5px solid #CBD5E1; border-radius: 8px; font-size: 0.95rem; color: #0F172A; background: #fff; transition: border-color .22s; outline: none; font-family: inherit; }
.calc-field input:focus, .calc-field select:focus { border-color: #1A56DB; }
.calc-result { background: #EBF1FF; border-radius: 10px; padding: 16px; text-align: center; margin-top: 8px; }
.calc-result-label { font-size: 0.8rem; color: #64748B; margin-bottom: 4px; }
.calc-result-value { font-size: 1.5rem; font-weight: 800; color: #1A56DB; letter-spacing: -0.02em; }

/* CTA ФОРМА */
.lead-form-section { background: linear-gradient(135deg, #1A56DB 0%, #2563EB 100%); color: #fff; padding: 80px 0; }
.lead-form-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.lead-form-text h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; line-height: 1.2; margin-bottom: 16px; letter-spacing: -0.03em; }
.lead-form-text p { font-size: 1rem; opacity: 0.85; line-height: 1.7; }
.lead-form { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 20px; padding: 32px; backdrop-filter: blur(10px); }
.form-row { display: flex; flex-direction: column; gap: 5px; margin-bottom: 16px; }
.form-row label { font-size: 0.85rem; font-weight: 600; opacity: 0.9; }
.form-row input, .form-row select, .form-row textarea { padding: 12px 16px; border-radius: 10px; border: 1.5px solid rgba(255,255,255,0.3); background: rgba(255,255,255,0.15); color: #fff; font-size: 0.95rem; font-family: inherit; outline: none; transition: border-color .22s; }
.form-row input::placeholder, .form-row textarea::placeholder { color: rgba(255,255,255,0.55); }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.2); }
.form-row select option { color: #0F172A; background: white; }
.form-privacy { font-size: 0.78rem; opacity: 0.65; margin-top: 12px; line-height: 1.5; }

/* ПОДВАЛ */
.site-footer { background: #0F172A; color: rgba(255,255,255,0.7); padding: 64px 0 32px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .nav-logo { color: #fff; margin-bottom: 16px; display: inline-flex; }
.footer-desc { font-size: 0.88rem; line-height: 1.7; max-width: 280px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.social-btn { width: 38px; height: 38px; border-radius: 8px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: background .22s; color: rgba(255,255,255,0.7); }
.social-btn:hover { background: rgba(255,255,255,0.15); color: white; }
.footer-col h4 { font-size: 0.9rem; font-weight: 700; color: #fff; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 0.88rem; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; font-size: 0.82rem; opacity: 0.5; flex-wrap: wrap; gap: 12px; }

/* УТИЛИТЫ */
.text-center { text-align: center; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: #64748B; margin-bottom: 32px; }
.breadcrumb a { color: #64748B; }
.breadcrumb a:hover { color: #1A56DB; }
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; }
.pagination a, .pagination span { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 8px; font-size: 0.9rem; font-weight: 600; border: 1.5px solid #CBD5E1; color: #334155; transition: all .22s; }
.pagination a:hover { border-color: #1A56DB; color: #1A56DB; background: #EBF1FF; }
.pagination span.active { background: #1A56DB; color: white; border-color: #1A56DB; }
.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-tab { padding: 8px 18px; border-radius: 100px; font-size: 0.88rem; font-weight: 600; border: 1.5px solid #CBD5E1; color: #64748B; background: #fff; cursor: pointer; transition: all .22s; }
.filter-tab:hover, .filter-tab.active { background: #1A56DB; color: #fff; border-color: #1A56DB; }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.step-card { text-align: center; padding: 24px; }
.step-num { width: 52px; height: 52px; border-radius: 50%; background: #1A56DB; color: #fff; font-size: 1.3rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.step-title { font-weight: 700; color: #0F172A; margin-bottom: 8px; font-size: 1rem; }
.step-desc { font-size: 0.88rem; color: #64748B; line-height: 1.6; }
.principles-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.principle-card { background: #fff; border-radius: 20px; border: 1px solid #F1F5F9; padding: 28px; }
.principle-icon { font-size: 2rem; margin-bottom: 12px; }
.principle-title { font-weight: 700; color: #0F172A; margin-bottom: 8px; }
.principle-desc { font-size: 0.88rem; color: #64748B; line-height: 1.6; }
.quiz-question h4 { font-weight: 700; color: #0F172A; margin-bottom: 12px; font-size: 0.95rem; }
.quiz-options { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.quiz-option { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 8px; border: 1.5px solid #CBD5E1; cursor: pointer; transition: all .22s; font-size: 0.88rem; color: #334155; }
.quiz-option:hover { border-color: #1A56DB; background: #EBF1FF; color: #1A56DB; }
.quiz-option input[type=radio] { accent-color: #1A56DB; }
.quiz-result { background: #EBF1FF; border-radius: 10px; padding: 20px; display: none; }
.quiz-result.show { display: block; }
.quiz-result-type { font-size: 1.1rem; font-weight: 800; color: #1A56DB; margin-bottom: 6px; }
.quiz-result-desc { font-size: 0.88rem; color: #334155; line-height: 1.6; }

/* МИССИЯ / УТП */
.mission-section { background: #0F172A; padding: 96px 0; }
.mission-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.mission-label { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: #16A34A; margin-bottom: 20px; }
.mission-heading { font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 800; color: #fff; line-height: 1.25; letter-spacing: -0.03em; margin-bottom: 24px; }
.mission-heading em { font-style: normal; color: #4ADE80; }
.mission-text { font-size: 1rem; color: #94A3B8; line-height: 1.75; margin-bottom: 16px; }
.mission-text strong { color: #fff; }
.mission-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mission-pillar { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 24px; transition: background 0.22s; }
.mission-pillar:hover { background: rgba(255,255,255,0.08); }
.mission-pillar-icon { font-size: 1.8rem; margin-bottom: 12px; }
.mission-pillar-title { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.mission-pillar-text { font-size: 0.83rem; color: #94A3B8; line-height: 1.65; }
@media (max-width: 1024px) { .mission-inner { gap: 48px; } }
@media (max-width: 768px) { .mission-inner { grid-template-columns: 1fr; gap: 48px; } .mission-pillars { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .mission-pillars { grid-template-columns: 1fr; } .mission-section { padding: 64px 0; } }

/* АДАПТИВНОСТЬ */
@media (max-width: 1024px) { .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 768px) {
  section { padding: 56px 0; }
  .nav-links { display: none; }
  .nav-cta .btn-outline { display: none; }
  .burger { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: white; border-bottom: 1px solid #CBD5E1; padding: 16px 24px; gap: 4px; box-shadow: var(--shadow); }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero-stats { gap: 20px; }
  .lead-form-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .consultant-card { grid-template-columns: 1fr; }
  .consultant-avatar { margin: 0 auto; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 1.9rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-lg { width: 100%; justify-content: center; }
  .courses-grid, .blog-grid, .tools-grid { grid-template-columns: 1fr; }
}
