/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #1a1a1a;
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 0;
}

/* Custom Properties */
:root {
  --primary-color: #1f2937;
  --primary-dark: #11171f;
  --secondary-color: #3b82f6;
  --accent-color: #84cc16;
  --text-primary: #111827;
  --text-secondary: #6b7280;
  --bg-light: #f9fafb;
  --bg-white: #ffffff;
  --border-color: #e5e7eb;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: white;
}

.btn-blue {
  background: var(--secondary-color);
  color: white;
  border: 2px solid var(--secondary-color);
  transition: all 0.3s ease;
}

.btn-blue:hover {
  background: #2563eb; /* Темнее на hover */
  border-color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* УЛУЧШЕННЫЙ МОБИЛЬНЫЙ ХЕДЕР */
header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 9999 !important;
  background: transparent !important;
  height: 80px !important;
  display: flex !important;
  align-items: center !important;
  visibility: visible !important;
  opacity: 1 !important;
  transition: all 0.3s ease !important;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(20px) !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1) !important;
}

header .container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  height: 80px !important;
}

.nav-wrapper {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  width: 100% !important;
  height: 80px !important;
}

.logo-container {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  z-index: 10001 !important;
}

.logo-icon {
  width: 50px !important;
  height: 50px !important;
  background: linear-gradient(135deg, #84cc16, #16a34a) !important;
  border-radius: 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 24px !important;
  color: white !important;
  box-shadow: 0 4px 15px rgba(132, 204, 22, 0.4) !important;
  transition: all 0.3s ease !important;
}

.logo-icon:hover {
  transform: scale(1.05) rotate(5deg) !important;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5) !important;
}

.logo-text {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  font-size: 22px !important;
  color: white !important;
  text-decoration: none !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
  transition: all 0.3s ease !important;
}

header.scrolled .logo-text {
  color: #1f2937 !important;
  text-shadow: none !important;
}

/* Десктопная навигация */
.desktop-nav {
  display: flex !important;
}

.desktop-nav ul {
  display: flex !important;
  list-style: none !important;
  gap: 32px !important;
  align-items: center !important;
  margin: 0 !important;
  padding: 0 !important;
}

.desktop-nav a {
  color: white !important;
  text-decoration: none !important;
  font-weight: 500 !important;
  font-size: 15px !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;
  transition: all 0.3s ease !important;
  position: relative !important;
}

.desktop-nav a:hover {
  color: rgba(255, 255, 255, 0.8) !important;
  transform: translateY(-2px) !important;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.desktop-nav a:hover::after {
  width: 100%;
}

header.scrolled .desktop-nav a {
  color: #1f2937 !important;
  text-shadow: none !important;
}

header.scrolled .desktop-nav a:hover {
  color: var(--accent-color) !important;
}

/* МОБИЛЬНОЕ МЕНЮ */
.mobile-menu-toggle {
  display: none !important;
  background: none !important;
  border: none !important;
  cursor: pointer !important;
  padding: 8px !important;
  z-index: 10001 !important;
  position: relative !important;
}

.hamburger {
  width: 30px !important;
  height: 20px !important;
  position: relative !important;
  transform: rotate(0deg) !important;
  transition: 0.3s ease-in-out !important;
}

.hamburger span {
  display: block !important;
  position: absolute !important;
  height: 3px !important;
  width: 100% !important;
  background: white !important;
  border-radius: 2px !important;
  opacity: 1 !important;
  left: 0 !important;
  transform: rotate(0deg) !important;
  transition: 0.25s ease-in-out !important;
}

header.scrolled .hamburger span {
  background: #1f2937 !important;
}

.hamburger span:nth-child(1) {
  top: 0px !important;
}

.hamburger span:nth-child(2) {
  top: 8px !important;
}

.hamburger span:nth-child(3) {
  top: 16px !important;
}

/* Анимация гамбургера при открытии */
.mobile-menu-toggle.active .hamburger span:nth-child(1) {
  top: 8px !important;
  transform: rotate(135deg) !important;
}

.mobile-menu-toggle.active .hamburger span:nth-child(2) {
  opacity: 0 !important;
  left: -60px !important;
}

.mobile-menu-toggle.active .hamburger span:nth-child(3) {
  top: 8px !important;
  transform: rotate(-135deg) !important;
}

/* Мобильное меню */
.mobile-nav {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100vh !important;
  background: linear-gradient(135deg, rgba(31, 41, 55, 0.98), rgba(59, 130, 246, 0.95)) !important;
  backdrop-filter: blur(20px) !important;
  z-index: 10000 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  transform: translateX(-100%) !important;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

.mobile-nav.active {
  transform: translateX(0) !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.mobile-nav ul {
  list-style: none !important;
  text-align: center !important;
  padding: 0 !important;
  margin: 0 !important;
}

.mobile-nav li {
  margin: 2rem 0 !important;
  transform: translateY(50px) !important;
  opacity: 0 !important;
  transition: all 0.3s ease !important;
}

.mobile-nav.active li {
  transform: translateY(0) !important;
  opacity: 1 !important;
}

.mobile-nav.active li:nth-child(1) { transition-delay: 0.1s !important; }
.mobile-nav.active li:nth-child(2) { transition-delay: 0.2s !important; }
.mobile-nav.active li:nth-child(3) { transition-delay: 0.3s !important; }
.mobile-nav.active li:nth-child(4) { transition-delay: 0.4s !important; }
.mobile-nav.active li:nth-child(5) { transition-delay: 0.5s !important; }

.mobile-nav a {
  color: white !important;
  text-decoration: none !important;
  font-size: 2rem !important;
  font-weight: 600 !important;
  font-family: 'Poppins', sans-serif !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
  transition: all 0.3s ease !important;
  display: inline-block !important;
  padding: 1rem 2rem !important;
  border-radius: 1rem !important;
  position: relative !important;
  overflow: hidden !important;
}

.mobile-nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  transform: scale(1.05) !important;
  color: var(--accent-color) !important;
}

.mobile-nav a:hover::before {
  left: 100%;
}

.mobile-nav .btn {
  background: linear-gradient(135deg, var(--accent-color), #059669) !important;
  color: white !important;
  padding: 1rem 2rem !important;
  font-size: 1.2rem !important;
  border-radius: 2rem !important;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3) !important;
  border: none !important;
  text-shadow: none !important;
}

.mobile-nav .btn:hover {
  background: linear-gradient(135deg, #059669, var(--accent-color)) !important;
  box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4) !important;
}

/* Мобильная адаптация */
@media (max-width: 1024px) {
  .desktop-nav {
    display: none !important;
  }
  
  .mobile-menu-toggle {
    display: block !important;
  }
  
  header {
    height: 70px !important;
  }
  
  header .container {
    height: 70px !important;
    padding: 0 16px !important;
  }
  
  .logo-icon {
    width: 45px !important;
    height: 45px !important;
    font-size: 20px !important;
  }
  
  .logo-text {
    font-size: 20px !important;
  }
}

@media (max-width: 480px) {
  header {
    height: 65px !important;
  }
  
  header .container {
    height: 65px !important;
    padding: 0 12px !important;
  }
  
  .logo-icon {
    width: 40px !important;
    height: 40px !important;
    font-size: 18px !important;
  }
  
  .logo-text {
    font-size: 18px !important;
  }
  
  .mobile-nav a {
    font-size: 1.5rem !important;
    padding: 0.8rem 1.5rem !important;
  }
}

/* Animated Background */
.floating-shapes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.shape {
  position: absolute;
  background: linear-gradient(45deg, rgba(31, 41, 55, 0.1), rgba(59, 130, 246, 0.1));
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.shape:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.shape:nth-child(2) {
  width: 120px;
  height: 120px;
  top: 20%;
  right: 10%;
  animation-delay: 2s;
}

.shape:nth-child(3) {
  width: 60px;
  height: 60px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: white;
  padding-top: 0;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(31, 41, 55, 0.1) 0%,
    rgba(59, 130, 246, 0.1) 50%,
    rgba(16, 185, 129, 0.1) 100%
  ),
  url('/images/hero-img.jpg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  animation: subtle-zoom 20s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(31, 41, 55, 0.90) 0%,
    rgba(59, 130, 246, 0.80) 50%,
    rgba(17, 23, 31, 0.85) 100%
  );
  z-index: 2;
}

.hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float-particles 8s ease-in-out infinite;
}

.particle:nth-child(1) {
  width: 4px;
  height: 4px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 6s;
}

.particle:nth-child(2) {
  width: 6px;
  height: 6px;
  top: 60%;
  left: 80%;
  animation-delay: 2s;
  animation-duration: 8s;
}

.particle:nth-child(3) {
  width: 3px;
  height: 3px;
  top: 80%;
  left: 20%;
  animation-delay: 4s;
  animation-duration: 7s;
}

.particle:nth-child(4) {
  width: 5px;
  height: 5px;
  top: 30%;
  left: 70%;
  animation-delay: 1s;
  animation-duration: 9s;
}

.particle:nth-child(5) {
  width: 4px;
  height: 4px;
  top: 70%;
  left: 60%;
  animation-delay: 3s;
  animation-duration: 6s;
}

@keyframes subtle-zoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

@keyframes float-particles {
  0%, 100% { 
    transform: translateY(0px) translateX(0px) rotate(0deg);
    opacity: 0.3;
  }
  25% { 
    transform: translateY(-20px) translateX(10px) rotate(90deg);
    opacity: 0.6;
  }
  50% { 
    transform: translateY(-40px) translateX(-5px) rotate(180deg);
    opacity: 0.8;
  }
  75% { 
    transform: translateY(-20px) translateX(-15px) rotate(270deg);
    opacity: 0.4;
  }
}

.hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
  max-width: 1000px;
  padding: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2rem;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  animation: glow-pulse 3s ease-in-out infinite;
}

.hero-badge i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

@keyframes glow-pulse {
  0%, 100% { 
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
  }
  50% { 
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.5);
  }
}

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.footer-section a {
  color: #d1d5db;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  text-align: center;
  color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    gap: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .security-badges {
    gap: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .process-steps {
    gap: 2rem;
  }
  
  .process-step {
    padding: 2rem 1.5rem;
  }
  
  .faq-question {
    padding: 1.5rem;
    font-size: 1.1rem;
  }
  
  .faq-answer-content {
    padding: 0 1.5rem 1.5rem;
  }
}

/* Loading Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Pulse Animation for CTAs */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(31, 41, 55, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(31, 41, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(31, 41, 55, 0); }
}

.btn-primary.pulse {
  animation: pulse 2s infinite;
};
  margin: 3rem 0;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  min-width: 150px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #84cc16;
  display: block;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.security-badges {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.badge:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.badge i {
  color: #fff;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.hero .btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.hero .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hero .btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.hero .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}

.scroll-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  animation: bounce-arrow 2s ease-in-out infinite;
  transition: all 0.3s ease;
}

.scroll-arrow:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

@keyframes bounce-arrow {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Features Section */
.features {
  padding: 6rem 0;
  background: var(--bg-light);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: white;
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
  font-size: 1.5rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-secondary);
}

/* УЛУЧШЕННЫЙ ПРОЦЕСС С ДЕКОРАЦИЯМИ */
.process {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

/* Декоративные элементы для процесса */
.process::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  animation: rotate-slow 30s linear infinite;
}

.process::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  animation: rotate-slow 40s linear infinite reverse;
}

@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.process .container {
  position: relative;
  z-index: 2;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
  position: relative;
}

/* Соединительные линии между шагами */
.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-color), var(--accent-color));
  border-radius: 2px;
  z-index: 1;
}

@media (max-width: 768px) {
  .process-steps::before {
    display: none;
  }
}

.process-step {
  text-align: center;
  position: relative;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 3;
}

.process-step:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Декоративные углы */
.process-step::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 15px;
  width: 30px;
  height: 30px;
  border-left: 3px solid var(--accent-color);
  border-top: 3px solid var(--accent-color);
  border-radius: 8px 0 0 0;
}

.process-step::after {
  content: '';
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  border-right: 3px solid var(--secondary-color);
  border-bottom: 3px solid var(--secondary-color);
  border-radius: 0 0 8px 0;
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 4;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
  transition: all 0.3s ease;
}

.process-step:hover .step-number {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
}

/* Пульсирующий эффект для номеров */
.step-number::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border-radius: 50%;
  background: inherit;
  opacity: 0.3;
  animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.process-step h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
}

.process-step p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1.1rem;
}

/* Testimonials */
.testimonials {
  padding: 6rem 0;
  background: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 1rem;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.star {
  color: #fbbf24;
  font-size: 1.2rem;
}

.testimonial-text {
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
}

.author-info h4 {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.author-info p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* КРАСИВЫЙ FAQ С ДЕКОРАЦИЯМИ */
.faq {
  padding: 6rem 0;
  background: linear-gradient(135deg, #1f2937 0%, #374151 50%, #1f2937 100%);
  position: relative;
  overflow: hidden;
}

/* Декоративные элементы для FAQ */
.faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(16, 185, 129, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
  animation: gradient-shift 15s ease-in-out infinite alternate;
}

@keyframes gradient-shift {
  0% {
    transform: scale(1) rotate(0deg);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.1) rotate(5deg);
    opacity: 1;
  }
}

.faq .section-header {
  position: relative;
  z-index: 2;
}

.faq .section-title {
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.faq .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.faq-item {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.faq-item.active {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 15px 50px rgba(16, 185, 129, 0.2);
  border-color: var(--accent-color);
}

.faq-question {
  width: 100%;
  padding: 2rem 2.5rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.faq-question:hover {
  color: var(--secondary-color);
}

.faq-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer-content {
  padding: 0 2.5rem 2rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.1rem;
  border-top: 1px solid rgba(16, 185, 129, 0.2);
  margin-top: 1rem;
  padding-top: 2rem;
}


/* CTA Section */
.cta {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  text-align: center;
}

.cta h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-white {
  background: white;
  color: var(--primary-color);
}

.btn-white:hover {
  background: var(--bg-light);
}

/* Footer */
footer {
  background: var(--text-primary);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.footer-section a {
  color: #d1d5db;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: white;
}

.footer-section p {
  color: #d1d5db;
  margin-bottom: 0.5rem;
}

.footer-section p i {
  margin-right: 0.5rem;
  color: var(--accent-color);
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  text-align: center;
  color: #9ca3af;
  font-size: 0.9rem;
}

/* Social Media Links */
.footer-section a[href*="facebook"],
.footer-section a[href*="twitter"],
.footer-section a[href*="linkedin"] {
  display: inline-block;
  color: #d1d5db;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.footer-section a[href*="facebook"]:hover {
  color: #1877f2;
}

.footer-section a[href*="twitter"]:hover {
  color: #1da1f2;
}

.footer-section a[href*="linkedin"]:hover {
  color: #0077b5;
}

/* Print Styles */
@media print {
  header,
  .floating-shapes,
  .hero-particles,
  .mobile-nav,
  .hero-scroll-indicator,
  .cta,
  footer {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
    color: #000;
    background: #fff;
  }
  
  .container {
    max-width: none;
    padding: 0;
  }
  
  .section-title {
    font-size: 18pt;
    margin-bottom: 12pt;
  }
  
  .feature-card,
  .process-step,
  .testimonial-card,
  .faq-item {
    break-inside: avoid;
    margin-bottom: 12pt;
  }
}

/* Loading Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Pulse Animation for CTAs */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(31, 41, 55, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(31, 41, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(31, 41, 55, 0); }
}

.btn-primary.pulse {
  animation: pulse 2s infinite;
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  :root {
    --primary-color: #000000;
    --text-primary: #000000;
    --text-secondary: #333333;
    --bg-light: #ffffff;
    --border-color: #000000;
  }
  
  .btn-primary {
    background: #000000;
    border: 2px solid #000000;
  }
  
  .feature-card,
  .process-step,
  .testimonial-card,
  .faq-item {
    border: 2px solid #000000;
  }
}

/* Focus Styles for Better Accessibility */
input:focus,
select:focus,
textarea:focus {
  outline: 3px solid var(--accent-color);
  outline-offset: 2px;
}

button.faq-question:focus {
  outline: none;
}

/* Skip to main content link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary-color);
  color: white;
  padding: 8px;
  text-decoration: none;
  z-index: 10000;
  border-radius: 4px;
}

.skip-link:focus {
  top: 6px;
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
/* Simple Footer Disclaimer Styles */

.footer-disclaimer {
  background: var(--text-primary);
  border-top: 1px solid #374151;
  padding: 2rem 0;
}

.disclaimer-content {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.disclaimer-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.disclaimer-title i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.disclaimer-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.7;
  text-align: justify;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .footer-disclaimer {
    padding: 1.5rem 0;
  }
  
  .disclaimer-title {
    font-size: 1.2rem;
    flex-direction: column;
    gap: 0.3rem;
  }
  
  .disclaimer-text {
    font-size: 0.9rem;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .disclaimer-text {
    font-size: 0.85rem;
  }
}