/* Общие стили */
body {
  background-color: #0a0a0a;
  color: #ffffff;
  font-family: system-ui, -apple-system, sans-serif;
}
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* === ХЕДЕР === */
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(to bottom right, #3b82f6, #7c3aed);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}
.logo-svg {
  width: 24px;
  height: 24px;
  color: white;
}
.logo-text {
  font-weight: bold;
  font-size: 20px;
  color: white;
}
.logo-accent {
  color: #3b82f6;
}
.desktop-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.menu-item {
  color: #d1d5db;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s;
}
.menu-item:hover {
  color: white;
}
.profile-btn {
  padding: 10px 20px;
  border-radius: 50px;
  background: white;
  color: black;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s;
}
.profile-btn:hover {
  background: #f0f0f0;
  transform: scale(1.05);
}

/* === ГЕРОЙ === */
.hero-section {
  position: relative;
  padding-top: 3rem;
  padding-bottom: 5rem;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .hero-section {
    padding-top: 5rem;
    padding-bottom: 8rem;
  }
}
.hero-background-grid {
  position: absolute;
  inset: 0;
  background-size: 40px 40px;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
  z-index: 0;
}
.hero-background-glow {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background-color: rgba(59, 130, 246, 0.2);
  border-radius: 50%;
  filter: blur(120px);
  z-index: -10;
}
.hero-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 10;
  text-align: center;
}
@media (min-width: 640px) {
  .hero-container { padding: 0 1.5rem; }
}
@media (min-width: 1024px) {
  .hero-container { padding: 0 2rem; }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(59, 130, 246, 0.3);
  background-color: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 2rem;
  animation: fadeInUp 0.6s ease-out;
}
.badge-pulse {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #3b82f6;
  margin-right: 0.5rem;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.hero-title {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  animation: fadeInUp 0.6s ease-out 0.1s both;
}
@media (min-width: 768px) {
  .hero-title { font-size: 4.5rem; }
}
.hero-description {
  margin-top: 1rem;
  max-width: 42rem;
  margin: 1rem auto 2.5rem;
  font-size: 1.25rem;
  color: #9ca3af;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}
.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  animation: fadeInUp 0.6s ease-out 0.3s both;
}
@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}
.btn-primary {
  padding: 1rem 2rem;
  border-radius: 9999px;
  background-color: #2563eb;
  color: white;
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(14, 165, 233, 0.3);
}
.btn-primary:hover {
  background-color: #3b82f6;
  box-shadow: 0 0 30px rgba(14, 165, 233, 0.5);
}
.btn-secondary {
  padding: 1rem 2rem;
  border-radius: 9999px;
  border: 1px solid #374151;
  color: #d1d5db;
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
}
.btn-secondary:hover {
  border-color: #6b7280;
  color: white;
  background-color: rgba(255, 255, 255, 0.1);
}
.hero-stats {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  border-top: 1px solid #1f2937;
  padding-top: 2.5rem;
  animation: fadeInUp 0.6s ease-out 0.4s both;
}
@media (min-width: 768px) {
  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}
.stat-item { text-align: center; }
.stat-number {
  font-size: 1.875rem;
  font-weight: bold;
  color: white;
}
.stat-label {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 0.25rem;
}
.text-highlight-gradient {
  background: linear-gradient(to right, #38bdf8, #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === УСЛУГИ === */
.services-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .services-container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .services-container { padding: 0 2rem; } }
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}
.services-title {
  font-size: 1.875rem;
  font-weight: bold;
  color: white;
  margin: 0;
}
@media (min-width: 768px) {
  .services-title { font-size: 2.25rem; }
}
.services-view-all {
  display: none;
  align-items: center;
  color: #3b82f6;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}
.services-view-all:hover { color: #60a5fa; }
@media (min-width: 768px) {
  .services-view-all { display: flex; }
}
.view-all-icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 0.5rem;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  background-color: rgba(17, 24, 39, 0.5);
  border: 1px solid #1f2937;
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}
.service-card:hover {
  border-color: rgba(59, 130, 246, 0.5);
  transform: translateY(-2px);
}
.service-card-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}
.service-number {
  color: #3b82f6;
  font-weight: bold;
  font-size: 1.125rem;
}
.service-name {
  color: #e5e7eb;
  font-weight: 500;
  transition: color 0.3s ease;
}
.service-card:hover .service-name {
  color: white;
}
.service-toggle-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-left: 12px;
}
.service-toggle-btn:hover {
  background: rgba(59, 130, 246, 0.2);
  transform: scale(1.1);
}

/* === ПРЕИМУЩЕСТВА === */
.benefits-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .benefits-container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .benefits-container { padding: 0 2rem; } }
.benefits-title {
  font-size: 1.875rem;
  font-weight: bold;
  color: white;
  margin-bottom: 3rem;
  text-align: left;
}
@media (min-width: 768px) { .benefits-title { font-size: 2.25rem; } }
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .benefits-grid { grid-template-columns: repeat(3, 1fr); } }
.benefit-card {
  background-color: rgba(17, 24, 39, 0.3);
  border: 1px solid #1f2937;
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all 0.3s ease;
}
.benefit-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
}
.benefit-icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: rgba(59, 130, 246, 0.1);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
  margin-bottom: 1.5rem;
}
.benefit-heading {
  font-size: 1.25rem;
  font-weight: bold;
  color: white;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}
.benefit-description {
  color: #9ca3af;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

/* === ПРОЦЕСС РАБОТЫ === */
.process-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .process-container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .process-container { padding: 0 2rem; } }
.process-main-title,
.process-subtitle {
  font-size: 1.875rem;
  font-weight: bold;
  color: white;
  margin-bottom: 0.5rem;
}
.process-subtitle {
  color: #6b7280;
  margin-bottom: 3rem;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .process-main-title,
  .process-subtitle { font-size: 2.25rem; }
}
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(3, 1fr); } }
.process-card {
  background-color: black;
  border: 1px solid #1f2937;
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
}
.process-card:hover {
  border-color: rgba(59, 130, 246, 0.5);
}
.process-number {
  font-size: 2.25rem;
  font-weight: bold;
  color: white;
  margin-bottom: 1rem;
}
.process-card-title {
  font-size: 1.125rem;
  font-weight: bold;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.process-card-description {
  color: #9ca3af;
  font-size: 0.75rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.process-card-additional {
  color: #6b7280;
  font-size: 0.75rem;
  line-height: 1.6;
  margin: 0;
}
.process-banner {
  background-color: #2563eb;
  border-radius: 0.75rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 768px) {
  .process-banner {
    flex-direction: row;
    padding: 1.5rem;
  }
}
.banner-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}
.banner-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white;
}
.banner-text {
  color: white;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .banner-text { font-size: 1rem; }
}
.banner-link {
  color: white;
  font-weight: bold;
  font-size: 0.875rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}
.banner-link:hover { opacity: 0.8; }
.link-arrow {
  width: 1rem;
  height: 1rem;
  margin-left: 0.5rem;
}

/* === "БЕЗ ПРЕДОПЛАТЫ" === */
.no-prepay-section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.no-prepay-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.no-prepay-header {
  margin-bottom: 4rem;
  text-align: center;
}
.no-prepay-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin: 0 0 0.5rem;
}
.no-prepay-subtitle {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}
.step-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}
.step-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-4px);
}
.step-number {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 2rem;
  height: 2rem;
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: white;
}
.step-icon {
  width: 5rem;
  height: 5rem;
  margin: 1rem auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60a5fa;
}
.step-icon svg { width: 100%; height: 100%; }
.step-icon-text {
  font-size: 1.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.step-text {
  color: #9ca3af;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}
.step-text strong {
  color: #60a5fa;
  display: block;
  margin-bottom: 0.5rem;
}

/* === ПАРТНЁРСКАЯ ПРОГРАММА === */
.partner-section {
  padding: 5rem 0;
  background: rgba(10, 10, 10, 0.9);
}
.partner-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.partner-title {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 3rem;
  text-align: center;
}
.partner-content {
  display: flex;
  align-items: center;
  gap: 4rem;
  justify-content: center;
}
.partner-image {
  flex-shrink: 0;
}
.partner-numbers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  width: 180px;
  height: 180px;
}
.p-num {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 900;
  border-radius: 1rem;
}
.p-num-1 { background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%); color: white; }
.p-num-2 { background: linear-gradient(135deg, #60a5fa 0%, #93c5fd 100%); color: white; }
.p-num-3 { background: linear-gradient(135deg, #93c5fd 0%, #bfdbfe 100%); color: #1e40af; }
.p-num-4 { background: linear-gradient(135deg, #bfdbfe 0%, #dbeafe 100%); color: #1e40af; }
.partner-benefits {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.partner-benefit {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.benefit-num {
  font-size: 1.125rem;
  font-weight: 700;
  color: #3b82f6;
  min-width: 2rem;
}
.benefit-text {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  line-height: 1.4;
}

/* === МОДАЛЬНЫЕ ОКНА === */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.modal-content {
  background: rgba(17, 24, 39, 0.8);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 1rem;
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
  position: relative;
  animation: fadeInUp 0.4s ease;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: #9ca3af;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.2s ease;
}
.modal-close:hover { color: #ef4444; }
.modal-content h3 {
  color: white;
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.5rem;
}
.modal-content p {
  color: #d1d5db;
  line-height: 1.6;
  margin: 0.75rem 0;
}

/* === МОБИЛЬНОЕ МЕНЮ === */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: white;
  margin: 3px 0;
  border-radius: 2px;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  padding: 8px 0;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: #3b82f6; }
.mobile-profile-btn {
  display: inline-block;
  padding: 8px 20px;
  color: black;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  width: max-content;
}

@media (max-width: 767px) {
  .desktop-menu { display: none; }
  .mobile-menu-toggle { display: flex; }
  .header-content { height: auto; padding: 12px 0; }
  .footer-content {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }
  .footer-brand {
    grid-column: 1 / -1 !important;
    text-align: center;
  }
  .footer-logo { justify-content: center; margin-bottom: 12px; }
  .footer-description { text-align: center; max-width: 500px; margin: 0 auto; }
  .footer-column { text-align: center; }
  .footer-links { justify-content: center; }
  .footer-links li { display: inline-block; margin: 0 8px; }
  .footer-bottom {
    flex-direction: column !important;
    gap: 12px;
    text-align: center;
  }
  .copyright { text-align: center; }
  .site-footer { padding-top: 2.5rem; padding-bottom: 1.5rem; }
  .footer-container { padding: 0 1rem; }
  /* Секции */
  .steps-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .partner-content { flex-direction: column; gap: 2.5rem; }
  .partner-title { font-size: 1.5rem; }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .hero-buttons a {
    width: 80%;
    text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2.5rem;
  }
  .footer-brand {
    grid-column: span 2 !important;
    text-align: center;
  }
  .footer-logo { justify-content: center; }
  .footer-description { text-align: center; }
}
@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .no-prepay-title,
  .no-prepay-subtitle { font-size: 1.75rem; }
  .hero-title { font-size: 2.5rem; }
  .services-grid,
  .benefits-grid,
  .process-grid { grid-template-columns: 1fr; }
}
/* =========================================
   ФУТЕР
   ========================================= */
.site-footer {
    padding-top: 4rem;
    padding-bottom: 2rem;
}
.footer-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}
@media (min-width: 640px) {
    .footer-container {
        padding: 0 1.5rem;
    }
}
@media (min-width: 1024px) {
    .footer-container {
        padding: 0 2rem;
    }
}
/* Основное содержимое футера */
.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5rem;
    margin-bottom: 3rem;
}
@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}
/* Бренд-блок */
.footer-brand {
    grid-column: 1 / -1;
}
@media (min-width: 768px) {
    .footer-brand {
        grid-column: span 1;
    }
}
.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}
.logo-icon {
    width: 2rem;
    height: 2rem;
    background-color: #2563eb;
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
}
.logo-svg {
    width: 1.25rem;
    height: 1.25rem;
    color: white;
}
.logo-text {
    font-weight: bold;
    font-size: 1.25rem;
    color: white;
}
.logo-accent {
    color: #3b82f6;
}
.footer-description {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}
/* Колонки футера */
.footer-column {
    margin-bottom: 0;
}
.footer-title {
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
    font-size: 1rem;
}
.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.footer-links li {
    margin: 0;
}
.footer-link {
    color: #9ca3af;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-link:hover {
    color: #3b82f6;
}
.footer-links:not(:has(a)) li {
    color: #9ca3af;
    font-size: 0.875rem;
    line-height: 1.5;
}
/* Нижняя часть футера */
.footer-bottom {
    border-top: 1px solid #1f2937;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}
.copyright {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
}
/* =========================================
   СЛАЙДЕР САЙТОВ
   ========================================= */
.slider-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.slider-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
}

.slider-header {
    text-align: center;
    margin-bottom: 3rem;
}

.slider-title {
    font-size: 2.25rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.slider-subtitle {
    font-size: 1.125rem;
    color: #9ca3af;
    margin-bottom: 2rem;
}

.slider-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    margin: 0 auto;
    max-width: 800px; /* Ограничиваем ширину контейнера */
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slider-slide {
    flex: 0 0 100%; /* Каждый слайд занимает 100% ширины */
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.slider-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

.slider-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.slider-image {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}



.slider-image-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
}

.slider-content {
    padding: 2rem;
    text-align: center;
}

.slider-site-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
}

.slider-site-description {
    color: #9ca3af;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.slider-site-year {
    color: #3b82f6;
    font-size: 1rem;
    font-weight: 600;
}

.slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.slider-btn {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: rgba(59, 130, 246, 0.2);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 1rem;
}

.slider-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #3b82f6;
    transform: scale(1.2);
}

.slider-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Адаптивность */
@media (max-width: 768px) {
    .slider-wrapper {
        margin: 0 1rem;
    }
    
    .slider-image {
        height: 250px;
    }
    
    .slider-card {
        max-width: 100%;
    }
}
