/* ============================================
   Панель мониторинга CRM — Стили сайта
   ============================================ */

/* === Сброс и переменные === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
  --primary: #4F46E5;
  --primary-dark: #3730A3;
  --primary-light: #818CF8;
  --primary-soft: #EEF2FF;
  --secondary: #0D9488;
  --secondary-light: #14B8A6;
  --accent: #8B5CF6;
  --success: #10B981;
  --warning: #F59E0B;
  --danger: #EF4444;
  --dark: #0F172A;
  --dark-2: #1E293B;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow: 0 4px 20px rgba(79,70,229,0.10);
  --shadow-lg: 0 12px 48px rgba(79,70,229,0.12);
  --shadow-xl: 0 20px 60px rgba(79,70,229,0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

body {
  font-family: "Inter", -apple-system, sans-serif;
  background: var(--gray-50);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* === Типография === */
h1, h2, h3, h4, h5 { line-height: 1.2; font-weight: 700; }

/* === Контейнер === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

/* === Градиентный текст === */
.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === Шапка === */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
  z-index: 1000;
  transition: all 0.3s ease;
}
.header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.header-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 1.1rem; color: var(--dark); text-decoration: none;
}
.header-logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.1rem;
}
.header-nav {
  display: flex; align-items: center; gap: 8px;
}
.header-nav a {
  color: var(--gray-600); text-decoration: none; font-size: 0.9rem;
  font-weight: 500; padding: 8px 16px; border-radius: 8px;
  transition: all 0.2s ease;
}
.header-nav a:hover { color: var(--primary); background: var(--primary-soft); }
.header-nav a.active { color: var(--primary); background: var(--primary-soft); }
.header-btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white !important; font-weight: 600 !important;
  padding: 10px 24px !important; border-radius: 100px !important;
  box-shadow: 0 4px 12px rgba(79,70,229,0.30);
}
.header-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(79,70,229,0.35) !important; background: linear-gradient(135deg, #4338CA, #3730A3) !important; color: white !important; }

/* === Mobile menu toggle === */
.mobile-toggle { display: none; background: none; border: none; font-size: 1.5rem; color: var(--dark); cursor: pointer; }

/* === Кнопки === */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; border-radius: 100px; font-weight: 600;
  font-size: 0.95rem; text-decoration: none; cursor: pointer;
  border: none; transition: all 0.3s ease; font-family: inherit;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white; box-shadow: 0 6px 20px rgba(79,70,229,0.30);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(79,70,229,0.40); }
.btn-secondary {
  background: var(--white); color: var(--primary); border: 2px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { border-color: var(--primary); transform: translateY(-3px); box-shadow: var(--shadow); }
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* === Секции === */
.section {
  padding: 100px 0;
}
.section-header {
  text-align: center; max-width: 720px; margin: 0 auto 60px;
}
.section-tag {
  display: inline-block; padding: 6px 16px; border-radius: 100px;
  background: var(--primary-soft); color: var(--primary); font-size: 0.8rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.section-title {
  font-size: 2.5rem; color: var(--dark); margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.1rem; color: var(--gray-500); line-height: 1.7;
}

/* === HERO === */
.hero {
  padding: 160px 0 100px;
  background: linear-gradient(180deg, #EEF2FF 0%, #FFFFFF 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; top: -40%; right: -20%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(79,70,229,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute; bottom: -30%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(13,148,136,0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 1;
  text-align: center; max-width: 800px; margin: 0 auto;
}
.hero-title {
  font-size: 3.5rem; font-weight: 800; margin-bottom: 20px;
  line-height: 1.15;
}
.hero-subtitle {
  font-size: 1.2rem; color: var(--gray-600);
  max-width: 640px; margin: 0 auto 40px; line-height: 1.7;
}
.hero-actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 50px;
}
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  max-width: 800px; margin: 0 auto;
}
.hero-stat {
  background: var(--white); border-radius: var(--radius); padding: 20px;
  box-shadow: var(--shadow); text-align: center;
}
.hero-stat-num {
  font-size: 1.8rem; font-weight: 800; color: var(--primary);
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: 0.8rem; color: var(--gray-500); font-weight: 500;
}

/* === Проблема === */
.problems-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.problem-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  transition: all 0.3s ease; position: relative;
}
.problem-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.problem-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 16px;
}
.problem-card h4 { font-size: 1.1rem; margin-bottom: 8px; color: var(--dark); }
.problem-card p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.6; }
.problem-card .problem-cost {
  display: inline-block; margin-top: 12px; padding: 4px 12px;
  border-radius: 6px; font-size: 0.8rem; font-weight: 600;
}

/* === Схема работы === */
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  position: relative;
}
.steps::before {
  content: ""; position: absolute; top: 48px; left: 12%; right: 12%;
  height: 2px; background: linear-gradient(90deg, var(--primary), var(--secondary));
  z-index: 0;
}
.step-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px 24px;
  box-shadow: var(--shadow); border: 1px solid var(--gray-100);
  text-align: center; position: relative; z-index: 1;
  transition: all 0.3s ease;
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.2rem; margin: 0 auto 16px;
}
.step-icon { font-size: 1.8rem; margin-bottom: 12px; }
.step-card h4 { font-size: 1rem; margin-bottom: 8px; }
.step-card p { font-size: 0.85rem; color: var(--gray-500); }

/* === Цифры (stats bar) === */
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.stat-block {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px 24px; text-align: center;
  box-shadow: var(--shadow); border: 1px solid var(--gray-100);
}
.stat-block-num {
  font-size: 2.8rem; font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-block-label { font-size: 0.9rem; color: var(--gray-500); margin-top: 4px; }

/* === Аккордеон когорт === */
.accordion { max-width: 800px; margin: 0 auto; }
.accordion-item {
  background: var(--white); border-radius: var(--radius);
  margin-bottom: 12px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100); overflow: hidden;
}
.accordion-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; cursor: pointer; font-weight: 600;
  font-size: 1rem; transition: all 0.2s;
}
.accordion-header:hover { background: var(--gray-50); }
.accordion-header .arrow { transition: transform 0.3s ease; font-size: 0.9rem; color: var(--gray-400); }
.accordion-item.open .arrow { transform: rotate(180deg); }
.accordion-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
}
.accordion-item.open .accordion-body {
  max-height: 400px; padding: 0 24px 20px;
}
.accordion-body p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.7; }
.accordion-body .tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.accordion-body .tag {
  padding: 4px 12px; border-radius: 6px;
  background: var(--primary-soft); color: var(--primary);
  font-size: 0.8rem; font-weight: 500;
}
.accordion-badge {
  padding: 3px 10px; border-radius: 6px; font-size: 0.7rem;
  font-weight: 600; text-transform: uppercase; margin-left: 8px;
}
.badge-new { background: #DCFCE7; color: #059669; }
.badge-hot { background: #FEE2E2; color: #DC2626; }

/* === Таблица метрик (Features) === */
.metrics-table-wrap {
  overflow-x: auto; border-radius: var(--radius-lg);
  box-shadow: var(--shadow); border: 1px solid var(--gray-200);
}
.metrics-table {
  width: 100%; border-collapse: collapse; font-size: 0.9rem;
}
.metrics-table th {
  background: var(--dark); color: white; padding: 16px 20px;
  text-align: left; font-weight: 600; white-space: nowrap;
}
.metrics-table td {
  padding: 14px 20px; border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700);
}
.metrics-table tr:hover td { background: var(--gray-50); }
.metrics-table .badge {
  display: inline-block; padding: 3px 10px; border-radius: 6px;
  font-size: 0.75rem; font-weight: 600;
}
.badge-green { background: #DCFCE7; color: #059669; }
.badge-yellow { background: #FEF3C7; color: #D97706; }
.badge-red { background: #FEE2E2; color: #DC2626; }
.badge-gray { background: var(--gray-100); color: var(--gray-500); }

/* === Карточки метрик (Features) === */
.cohort-section { margin-bottom: 48px; }
.cohort-header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
}
.cohort-header h3 { font-size: 1.3rem; }
.cohort-icon { width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: white;
}
.metrics-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.metric-chip {
  background: var(--white); border-radius: 8px; padding: 12px 16px;
  border: 1px solid var(--gray-100); font-size: 0.85rem; color: var(--gray-700);
  display: flex; align-items: center; gap: 8px; transition: all 0.2s;
}
.metric-chip:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.metric-chip .dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

/* === Таблица сравнения менеджеров === */
.manager-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.manager-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.manager-table th {
  background: var(--dark); color: white; padding: 14px 16px; text-align: left; font-weight: 600;
}
.manager-table td { padding: 12px 16px; border-bottom: 1px solid var(--gray-100); color: var(--gray-700); }
.manager-table tr:last-child td { border-bottom: none; }
.manager-table .rank-1 { background: #FEF9C3; font-weight: 600; }
.manager-table .rank-2 { background: #F3F4F6; }
.manager-table .rank-3 { background: #FEE2E2; }
.status-up { color: var(--success); font-weight: 600; }
.status-mid { color: var(--warning); font-weight: 600; }
.status-down { color: var(--danger); font-weight: 600; }

/* === Гипотезы === */
.hypothesis-cards { display: grid; gap: 20px; max-width: 800px; margin: 0 auto; }
.hypothesis-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 28px 32px; box-shadow: var(--shadow);
  border: 1px solid var(--gray-100); border-left: 4px solid var(--primary);
  transition: all 0.3s ease;
}
.hypothesis-card:hover { transform: translateX(6px); box-shadow: var(--shadow-lg); }
.hypothesis-card .h-top {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px;
}
.hypothesis-card .h-title { font-weight: 700; font-size: 1rem; }
.hypothesis-card .h-complexity {
  padding: 3px 10px; border-radius: 6px; font-size: 0.75rem; font-weight: 600;
}
.h-easy { background: #DCFCE7; color: #059669; }
.h-medium { background: #FEF3C7; color: #D97706; }
.h-hard { background: #FEE2E2; color: #DC2626; }
.hypothesis-card .h-row { display: flex; gap: 8px; margin-bottom: 6px; font-size: 0.9rem; color: var(--gray-600); }
.hypothesis-card .h-label { font-weight: 600; color: var(--gray-700); min-width: 80px; }
.hypothesis-card .h-result {
  margin-top: 12px; padding: 10px 16px; border-radius: 8px;
  background: #DCFCE7; font-weight: 600; font-size: 0.9rem; color: #059669;
  display: flex; justify-content: space-between;
}

/* === Сценарий встречи === */
.timeline { max-width: 600px; margin: 0 auto; }
.timeline-item {
  display: flex; gap: 20px; margin-bottom: 16px;
  position: relative; padding-left: 36px;
}
.timeline-item::before {
  content: ""; position: absolute; left: 12px; top: 8px; bottom: -8px;
  width: 2px; background: var(--gray-200);
}
.timeline-item:last-child::before { display: none; }
.timeline-dot {
  position: absolute; left: 0; top: 6px;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--primary); border: 3px solid var(--primary-soft);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 0.7rem; font-weight: 700;
}
.timeline-time { font-weight: 700; color: var(--primary); font-size: 0.85rem; min-width: 80px; }
.timeline-text { font-size: 0.9rem; color: var(--gray-600); }

/* === Цены === */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 40px 32px; box-shadow: var(--shadow);
  border: 1px solid var(--gray-100); text-align: center;
  position: relative; transition: all 0.3s ease;
}
.pricing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.pricing-card.featured {
  border: 2px solid var(--primary);
  box-shadow: 0 12px 48px rgba(79,70,229,0.15);
  transform: scale(1.03);
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-8px); }
.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  padding: 6px 20px; border-radius: 100px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white; font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pricing-name { font-size: 1.2rem; font-weight: 700; margin-bottom: 4px; }
.pricing-desc { font-size: 0.85rem; color: var(--gray-500); margin-bottom: 20px; }
.pricing-price {
  font-size: 2.8rem; font-weight: 800; color: var(--dark); margin-bottom: 4px;
}
.pricing-price span { font-size: 1rem; font-weight: 500; color: var(--gray-400); }
.pricing-period { font-size: 0.85rem; color: var(--gray-400); margin-bottom: 24px; }
.pricing-features { text-align: left; margin-bottom: 28px; }
.pricing-features li {
  list-style: none; padding: 8px 0; font-size: 0.9rem; color: var(--gray-600);
  display: flex; align-items: center; gap: 10px;
}
.pricing-features li i { color: var(--success); width: 18px; }

/* === FAQ === */
.faq-grid { max-width: 720px; margin: 0 auto; }
.faq-item {
  background: var(--white); border-radius: var(--radius);
  margin-bottom: 12px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100); overflow: hidden; cursor: pointer;
}
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; font-weight: 600; font-size: 0.95rem;
  transition: all 0.2s ease;
}
.faq-question:hover { background: var(--gray-50); }
.faq-question i { transition: transform 0.3s ease; color: var(--gray-400); }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer {
  max-height: 300px; padding: 0 24px 20px;
}
.faq-answer p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.7; }

/* === Форма === */
.form-section { background: var(--dark); padding: 80px 0; }
.form-section .section-title { color: white; }
.form-section .section-subtitle { color: var(--gray-400); }
.form-card {
  max-width: 600px; margin: 0 auto; background: var(--white);
  border-radius: var(--radius-xl); padding: 48px;
  box-shadow: var(--shadow-xl);
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--gray-700); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 16px; border-radius: 10px;
  border: 2px solid var(--gray-200); font-size: 0.95rem;
  font-family: inherit; transition: all 0.2s ease;
  background: var(--gray-50);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(79,70,229,0.10);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-btn {
  width: 100%; padding: 16px; border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white; font-weight: 700; font-size: 1rem; border: none;
  cursor: pointer; transition: all 0.3s ease; font-family: inherit;
}
.form-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(79,70,229,0.35); }
.form-note { text-align: center; font-size: 0.8rem; color: var(--gray-400); margin-top: 16px; }

/* === Footer === */
.footer {
  background: var(--dark-2); color: var(--gray-400); padding: 60px 0 30px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-top: 12px; max-width: 300px; }
.footer-col h4 { color: white; font-size: 0.9rem; margin-bottom: 16px; }
.footer-col a { display: block; color: var(--gray-400); text-decoration: none;
  font-size: 0.85rem; margin-bottom: 10px; transition: all 0.2s; }
.footer-col a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid var(--gray-700); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem;
}

/* === Page Hero (inner pages) === */
.page-hero {
  padding: 140px 0 60px;
  background: linear-gradient(180deg, #EEF2FF 0%, #FFFFFF 100%);
  text-align: center;
}
.page-hero h1 { font-size: 2.8rem; margin-bottom: 12px; }
.page-hero p { font-size: 1.1rem; color: var(--gray-500); max-width: 600px; margin: 0 auto; }

/* === Блок «ключевой инсайт» === */
.insight-block {
  max-width: 700px; margin: 40px auto;
  padding: 32px 40px; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #EEF2FF, #F0FDFA);
  border-left: 4px solid var(--primary);
}
.insight-block p { font-size: 1rem; color: var(--gray-700); line-height: 1.7; font-style: italic; }

/* === Адаптив === */
@media (max-width: 1024px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .problems-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-8px); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .mobile-toggle { display: block; }
  .header-nav.open { display: flex; flex-direction: column; position: absolute; top: 72px;
    left: 0; right: 0; background: white; padding: 16px; border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg); }
  .hero-title { font-size: 2.2rem; }
  .hero { padding: 120px 0 60px; }
  .section-title { font-size: 1.8rem; }
  .section { padding: 60px 0; }
  .problems-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .metrics-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 2rem; }
  .pricing-grid { max-width: 100%; }
  .form-card { padding: 28px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.8rem; }
  .hero-stats { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
}
