/* LeadMind Landing - Каталог бизнес-ниш */

:root {
  --primary-color: #6366F1;
  --primary-dark: #4F46E5;
  --accent-color: #16A34A;
  --text-dark: #111827;
  --text-gray: #666;
  --bg-light: #F7F8FB;
  --bg-white: #ffffff;
  --bg-card: #EEF2FF;
  --border-color: #E5E7EB;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #333;
  overflow-x: hidden;
  line-height: 1.6;
  background: var(--bg-light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}

.site-header {
  background: white;
  border-bottom: 1px solid var(--border-color);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
}

.brand-name {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-link {
  color: var(--text-dark);
  font-weight: 500;
  padding: 8px 16px;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color);
}

.navbar-nav .btn-primary {
  margin-left: 16px;
  padding: 8px 20px;
  font-size: 0.9375rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: var(--text-dark);
  line-height: 1.2;
}

section {
  padding: 80px 0;
}

.hero-section {
  background: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%);
  color: white;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  display: block;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.125rem;
  opacity: 0.95;
  margin-bottom: 2rem;
  font-weight: 400;
  line-height: 1.6;
}

.hero-note {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
  margin-top: 1rem;
  font-style: italic;
}

.hero-form {
  background: white;
  border-radius: 20px;
  padding: 32px;
  max-width: 500px;
  margin: 0 auto 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-form .form-label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.hero-form .form-control {
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.hero-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.15);
  outline: none;
}

.hero-form .form-check {
  margin: 20px 0;
}

.hero-form .form-check-input {
  border: 2px solid var(--border-color);
  width: 20px;
  height: 20px;
  margin-top: 0.15em;
}

.hero-form .form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.hero-form .form-check-label {
  color: var(--text-gray);
  font-size: 0.875rem;
  margin-left: 8px;
}

.hero-secondary-cta {
  color: white;
  text-decoration: underline;
  font-size: 1rem;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.hero-secondary-cta:hover {
  color: white;
  opacity: 0.8;
}

.interface-mockup {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 24px;
  margin-top: 40px;
  backdrop-filter: blur(10px);
}

.mockup-zoom {
  border: none;
  background: transparent;
  padding: 0;
  display: inline-block;
  width: 100%;
  cursor: zoom-in;
}

.mockup-zoom:focus-visible {
  outline: 3px solid rgba(99, 102, 241, 0.4);
  border-radius: 24px;
}

.mockup-image {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mockup-zoom:hover .mockup-image,
.mockup-zoom:focus-visible .mockup-image {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 35px 90px rgba(15, 23, 42, 0.55);
}

.mockup-hint {
  font-size: 0.9375rem;
  color: var(--text-gray);
}

.mockup-hint-inverse {
  color: rgba(255, 255, 255, 0.9);
}

.help-screenshot {
  max-width: 960px;
  margin: 0 auto;
}

.help-screenshot-image {
  border-radius: 24px;
  border: 1px solid rgba(99, 102, 241, 0.15);
}

.idea-preview-card {
  background: white;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.idea-preview-card h4 {
  font-size: 1.125rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.stats-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1;
  min-width: 120px;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.stat-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.badge-trend,
.badge-competition {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-trend {
  background: rgba(22, 163, 74, 0.1);
  color: var(--accent-color);
}

.badge-competition {
  background: rgba(99, 102, 241, 0.1);
  color: var(--primary-color);
}

.pack-list {
  background: rgba(99, 102, 241, 0.05);
  border-radius: 12px;
  padding: 16px;
  list-style: none;
}

.pack-list li {
  padding: 8px 0;
  color: white;
  font-size: 0.875rem;
  position: relative;
  padding-left: 24px;
}

.pack-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: 700;
}

.icp-card {
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 18px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.icp-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.15);
  transform: translateY(-5px);
}

.icp-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}

.icp-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.icp-text {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
}

.icp-note {
  text-align: center;
  margin-top: 40px;
  font-size: 1rem;
  color: var(--text-gray);
  font-style: italic;
}

.pain-card {
  background: white;
  border-radius: 18px;
  padding: 28px;
  height: 100%;
  position: relative;
  transition: all 0.3s ease;
  border: 2px solid var(--border-color);
}

.pain-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.15);
  transform: translateY(-5px);
}

.pain-number {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.pain-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
  padding-right: 50px;
}

.pain-text {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
}

.conclusion-text {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.6;
  text-align: center;
  margin-top: 40px;
}

.steps-container {
  max-width: 900px;
  margin: 0 auto;
}

.step-item {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.step-text {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
}

.step-note {
  font-size: 0.875rem;
  color: var(--text-gray);
  margin-top: 8px;
  font-style: italic;
  line-height: 1.6;
}

.anti-list-section {
  padding: 60px 0;
  background: var(--bg-light);
}

.anti-list-box {
  background: white;
  border: 3px solid var(--primary-color);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
}

.anti-list-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.anti-list-text {
  font-size: 1.125rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin: 0;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.package-card {
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 18px;
  padding: 28px;
  transition: all 0.3s ease;
}

.package-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.15);
  transform: translateY(-5px);
}

.package-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.package-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.package-text {
  font-size: 0.9375rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
}

.idea-card {
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 18px;
  padding: 28px;
  height: 100%;
  transition: all 0.3s ease;
}

.idea-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.2);
  transform: translateY(-5px);
}

.idea-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.idea-description {
  font-size: 0.9375rem;
  color: var(--text-gray);
  margin-bottom: 16px;
  line-height: 1.5;
}

.idea-stats {
  margin-bottom: 20px;
}

.idea-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
}

.idea-stat:last-child {
  border-bottom: none;
}

.idea-stat-label {
  font-size: 0.875rem;
  color: var(--text-gray);
}

.idea-stat-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
}

.difference-list {
  max-width: 800px;
  margin: 0 auto;
}

.difference-item {
  background: white;
  border-left: 4px solid var(--primary-color);
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.difference-item:hover {
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.15);
  transform: translateX(4px);
}

.difference-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.difference-text {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
}

.pricing-table-container {
  overflow-x: auto;
  margin: 40px 0;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  padding-top: 30px;
}

.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: white;
  border-radius: 20px;
  overflow: hidden;
}

.pricing-table thead th {
  background: var(--bg-light);
  padding: 28px 20px;
  border-bottom: 2px solid var(--border-color);
  font-weight: 700;
  text-align: center;
  vertical-align: top;
}

.pricing-table thead th:first-child {
  text-align: left;
  border-top-left-radius: 20px;
}

.pricing-table thead th:last-child {
  border-top-right-radius: 20px;
}

.feature-column {
  width: 30%;
  min-width: 200px;
  font-size: 1rem;
  color: var(--text-dark);
}

.plan-column {
  width: 17.5%;
  min-width: 150px;
  position: relative;
}

.plan-column-featured {
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.05) 0%, rgba(99, 102, 241, 0.02) 100%);
  border-left: 2px solid var(--primary-color);
  border-right: 2px solid var(--primary-color);
}

.plan-header {
  text-align: center;
}

.plan-name {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.plan-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 4px;
}

.plan-period {
  font-size: 0.875rem;
  color: var(--text-gray);
  display: block;
}

.plan-badge {
  background: var(--accent-color);
  color: white;
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
  display: inline-block;
  margin-bottom: 12px;
}

.pricing-table tbody tr {
  border-bottom: 1px solid var(--border-color);
}

.pricing-table tbody tr:last-child {
  border-bottom: none;
}

.pricing-table tbody td {
  padding: 20px;
  text-align: center;
  vertical-align: middle;
}

.pricing-table tbody td:first-child {
  text-align: left;
}

.feature-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-dark);
}

.info-icon {
  color: var(--primary-color);
  font-size: 0.875rem;
  margin-left: 6px;
  cursor: help;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.info-icon:hover {
  opacity: 1;
}

.tooltip {
  z-index: 1080;
}

.tooltip-inner {
  max-width: 400px;
  padding: 12px 16px;
  font-size: 0.875rem;
  line-height: 1.5;
  text-align: left;
  background-color: var(--text-dark);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.tooltip.show {
  opacity: 1;
}

.tooltip .tooltip-arrow {
  display: none;
}

.plan-value {
  font-size: 0.9375rem;
  color: var(--text-gray);
}

.plan-value-featured {
  background: linear-gradient(90deg, rgba(99, 102, 241, 0.03) 0%, rgba(99, 102, 241, 0.05) 50%, rgba(99, 102, 241, 0.03) 100%);
}

.plan-value i.bi-check-circle-fill {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.plan-value i.bi-x-circle {
  color: #D1D5DB;
  font-size: 1.25rem;
}

.action-row td {
  padding: 28px 20px;
  background: var(--bg-light);
}

.action-row .plan-value-featured {
  background: linear-gradient(90deg, rgba(99, 102, 241, 0.08) 0%, rgba(99, 102, 241, 0.12) 50%, rgba(99, 102, 241, 0.08) 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.2);
  transform: translateY(-8px);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--accent-color);
  color: white;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.pricing-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.pricing-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.pricing-period {
  font-size: 0.875rem;
  color: var(--text-gray);
  margin-bottom: 24px;
  display: block;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
  text-align: left;
}

.pricing-features li {
  padding: 10px 0;
  font-size: 0.9375rem;
  color: var(--text-gray);
  position: relative;
  padding-left: 28px;
}

.pricing-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: 700;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary-color);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.1);
}

.faq-question {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.faq-answer {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
}

.story-section {
  padding: 80px 0;
}

.story-content p {
  font-size: 1.0625rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.pain-intro {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 24px;
  margin-top: 32px;
}

.pain-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 32px 0;
}

.pain-card-item {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.pain-card-item:hover {
  border-color: var(--primary-color);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.15);
}

.pain-icon {
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1;
}

.pain-card-text {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.story-content ul {
  margin: 20px 0;
  padding-left: 24px;
}

.story-content ul li {
  font-size: 1.0625rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 12px;
}

.highlight-text {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.6;
  margin: 28px 0;
}

.solution-box {
  background: var(--bg-card);
  border-left: 4px solid var(--primary-color);
  padding: 24px;
  border-radius: 12px;
  margin-top: 28px;
}

.solution-box p {
  margin: 0;
  font-size: 1.0625rem;
  color: var(--text-dark);
  line-height: 1.7;
}

.plan-ready-badge {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(22, 163, 74, 0.1);
  color: var(--accent-color);
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 9999px;
}

.plan-note {
  font-size: 0.8125rem;
  color: var(--text-gray);
  margin-top: 12px;
  font-style: italic;
  line-height: 1.5;
}

.pricing-form-container {
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.pricing-form-container h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.pricing-subtitle {
  text-align: center;
  font-size: 1.0625rem;
  color: var(--text-gray);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-faq {
  margin-top: 60px;
}

.pricing-faq-item {
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 16px;
}

.pricing-faq-item h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.pricing-faq-item p {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
}

.pricing-card-featured {
  position: relative;
  border-color: var(--primary-color);
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.2);
  transform: scale(1.05);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1.125rem;
}

.final-cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
}

.final-cta-section .section-title {
  color: white;
}

.final-form {
  background: white;
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 14px 32px;
  font-size: 1.0625rem;
  font-weight: 600;
  border-radius: 9999px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
  color: white;
}

.btn-secondary {
  background: white;
  color: var(--primary-color);
  padding: 14px 32px;
  font-size: 1.0625rem;
  font-weight: 600;
  border-radius: 9999px;
  border: 2px solid var(--primary-color);
  transition: all 0.3s ease;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.form-label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-control {
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.15);
  outline: none;
}

.form-text {
  font-size: 0.875rem;
  color: var(--text-gray);
  margin-top: 4px;
}

.form-check-input {
  border: 2px solid var(--border-color);
  width: 20px;
  height: 20px;
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.form-check-label {
  font-size: 0.875rem;
  color: var(--text-gray);
  margin-left: 8px;
}

.modal-content {
  border-radius: 20px;
  border: none;
}

.modal-header {
  border-bottom: 2px solid var(--border-color);
  padding: 24px 32px;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.modal-body {
  padding: 32px;
}

.modal-footer {
  border-top: 2px solid var(--border-color);
  padding: 24px 32px;
}

.selected-tariff-info {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 16px;
}

.selected-tariff-info p {
  margin: 0;
  color: var(--text-dark);
  font-size: 0.9375rem;
}

.tariff-display {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-color);
}

.preview-section {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
}

.preview-section h5 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.preview-section p {
  font-size: 0.9375rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
}

.preview-section ul {
  margin: 12px 0 0 0;
  padding-left: 20px;
}

.preview-section ul li {
  font-size: 0.9375rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 8px;
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .package-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  
  .hero-section {
    padding: 60px 0 50px;
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.75rem;
    margin-bottom: 40px;
  }
  
  .hero-form {
    padding: 24px;
  }
  
  .final-form {
    padding: 28px 20px;
  }
  
  .modal-body {
    padding: 24px 20px;
  }
  
  .package-grid {
    gap: 16px;
  }
  
  .stats-row {
    flex-direction: column;
  }
  
  .stat-item {
    min-width: 100%;
  }
  
  .pain-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-table-container {
    margin: 20px -15px;
    border-radius: 0;
    -webkit-overflow-scrolling: touch;
    position: relative;
  }
  
  .pricing-table-container::before {
    content: '← Прокрутите, чтобы увидеть все тарифы →';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    color: var(--text-gray);
    background: white;
    padding: 4px 12px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    white-space: nowrap;
    z-index: 10;
  }
  
  .pricing-table {
    font-size: 0.75rem;
    min-width: 800px;
  }
  
  .pricing-table thead th {
    padding: 12px 8px;
    font-size: 0.75rem;
  }
  
  .pricing-table tbody td {
    padding: 12px 8px;
    font-size: 0.75rem;
  }
  
  .feature-column {
    min-width: 180px;
    position: sticky;
    left: 0;
    background: white;
    z-index: 5;
    box-shadow: 2px 0 8px rgba(0,0,0,0.05);
  }
  
  .pricing-table thead th:first-child {
    background: var(--bg-light);
  }
  
  .plan-column {
    min-width: 140px;
  }
  
  .plan-name {
    font-size: 1rem;
  }
  
  .plan-price {
    font-size: 1.25rem;
  }
  
  .plan-period {
    font-size: 0.75rem;
  }
  
  .plan-badge {
    font-size: 0.625rem;
    padding: 4px 10px;
  }
  
  .feature-name {
    font-size: 0.8125rem;
  }
  
  .plan-value {
    font-size: 0.8125rem;
  }
  
  .action-row .btn {
    font-size: 0.875rem;
    padding: 10px 16px;
    height: auto;
  }
}

.site-footer {
  background: var(--text-dark);
  color: white;
  padding: 60px 0 30px;
  margin-top: 80px;
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: white;
}

.footer-copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .site-footer {
    padding: 40px 0 20px;
  }
  
  .footer-links {
    margin-top: 20px;
  }
}

/* Стили для стрелок карусели */
.carousel-control-prev,
.carousel-control-next {
  width: 60px;
  height: 60px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  background: rgba(99, 102, 241, 0.9);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.carousel-control-prev {
  left: 20px;
}

.carousel-control-next {
  right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: rgba(79, 70, 229, 1);
  transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 24px;
  height: 24px;
  background-size: 24px 24px;
  filter: brightness(0) invert(1);
}

.carousel-indicators {
  margin-bottom: 1.5rem;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(99, 102, 241, 0.5);
  border: none;
  transition: all 0.3s ease;
}

.carousel-indicators button.active {
  background-color: var(--primary-color);
  width: 32px;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .carousel-control-prev,
  .carousel-control-next {
    width: 50px;
    height: 50px;
  }
  
  .carousel-control-prev {
    left: 10px;
  }
  
  .carousel-control-next {
    right: 10px;
  }
  
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 20px;
    height: 20px;
    background-size: 20px 20px;
  }
}