* {
  box-sizing: border-box;
}
body { 
  font-family: 'Inter', sans-serif; 
  letter-spacing: 0.03em; 
  margin: 0; 
  background-color: #F5F5F7; 
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
}
.container {
  max-width: 100%;
  overflow-x: hidden;
}
.bg-hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 4rem;
  overflow: hidden;
}
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.bg-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}
.bg-hero > .container {
  position: relative;
  z-index: 3;
}
.hero-text {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  line-height: 1.6;
  opacity: 0;
  animation: heroFadeIn 1s ease forwards;
}
.hero-btn {
  animation: heroGlow 1.2s ease forwards;
  animation-delay: 0.3s;
  opacity: 0;
}
.card { 
  transition: transform 0.3s ease, box-shadow 0.3s ease; 
  border-radius: 16px; 
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); 
  will-change: transform;
  max-width: 100%;
}
.card:hover { 
  transform: translateY(-4px); 
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15); 
}
.highlight-section {
  background: linear-gradient(180deg, #F7FAFE, #E5E7EB);
  padding: 3.5rem 1rem 3.5rem 1rem;
}
.highlight-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  animation: fadeInScale 0.6s ease forwards;
  max-width: 100%;
}
.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
.mission-stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: nowrap;
  gap: 1rem;
  overflow-x: auto;
  max-width: 100%;
  padding-bottom: 1rem;
}
.stat-item {
  text-align: center;
  flex: 0 0 200px;
  min-width: 0;
  background: linear-gradient(135deg, #F7FAFE, #E5E7EB);
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 1.5rem;
  transition: transform 0.3s ease;
  animation: fadeInUp 0.6s ease forwards;
}
.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.stat-item:nth-child(1) { animation-delay: 0.3s; }
.stat-item:nth-child(2) { animation-delay: 0.4s; }
.stat-item:nth-child(3) { animation-delay: 0.5s; }
.stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1A202C;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  margin-bottom: 0.5rem;
}
.btn { 
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1C2526, #2D3748);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.btn:hover { 
  transform: translateY(-2px);
  filter: brightness(0.9);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}
.btn:active { 
  transform: scale(0.98);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
img { 
  max-width: 100%;
  height: auto;
  opacity: 0; 
  animation: fadeIn 0.7s ease forwards; 
}
.number-badge { 
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
  width: 24px; 
  height: 24px; 
  background: linear-gradient(135deg, #2D3748, #5A6B8C); 
  color: white; 
  border-radius: 50%; 
  font-size: 0.9rem; 
  font-weight: 600; 
  margin-right: 0.5rem; 
}
.telegram-section {
  background: #F5F5F7;
  padding: 4rem 1rem;
  overflow: hidden;
}
.telegram-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}
.telegram-card:nth-child(1) { animation-delay: 0.2s; }
.telegram-card:nth-child(2) { animation-delay: 0.4s; }
.telegram-card:nth-child(3) { animation-delay: 0.6s; }
.telegram-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
.telegram-img {
  border-radius: 16px;
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  aspect-ratio: 16/9;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.telegram-img:hover {
  transform: scale(1.05);
  filter: brightness(0.95);
}
.telegram-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #1A202C;
  margin-bottom: 0.75rem;
}
.telegram-card p {
  font-size: 1rem;
  color: #6B7280;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.telegram-card .btn {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
}
.benefits-section {
  background: linear-gradient(180deg, #F7FAFE, #E5E7EB);
}
.benefits-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  max-width: 100%;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}
.benefits-card:nth-child(1) { animation-delay: 0.2s; }
.benefits-card:nth-child(2) { animation-delay: 0.3s; }
.benefits-card:nth-child(3) { animation-delay: 0.4s; }
.benefits-card:nth-child(4) { animation-delay: 0.5s; }
.benefits-card:nth-child(5) { animation-delay: 0.6s; }
.benefits-card:nth-child(6) { animation-delay: 0.7s; }
.benefits-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.benefits-card .number-badge {
  background: linear-gradient(135deg, #1E3A8A, #3B82F6);
}
.how-we-work-section {
  background: linear-gradient(180deg, #111827, #1F2937);
}
.how-we-work-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  max-width: 100%;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}
.how-we-work-card:nth-child(1) { animation-delay: 0.2s; }
.how-we-work-card:nth-child(2) { animation-delay: 0.3s; }
.how-we-work-card:nth-child(3) { animation-delay: 0.4s; }
.how-we-work-card:nth-child(4) { animation-delay: 0.5s; }
.how-we-work-card:nth-child(5) { animation-delay: 0.6s; }
.how-we-work-card:nth-child(6) { animation-delay: 0.7s; }
.how-we-work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}
.how-we-work-card .number-badge {
  background: linear-gradient(135deg, #D97706, #FBBF24);
}
.how-we-work-card p, .how-we-work-card a {
  color: #E5E7EB;
  line-height: 1.6;
}
.how-we-work-card a:hover {
  color: #FBBF24;
}
.key-info-section {
  background: linear-gradient(180deg, #E5E7EB, #D1D5DB);
}
.key-info-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  max-width: 100%;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}
.key-info-card:nth-child(1) { animation-delay: 0.2s; }
.key-info-card:nth-child(2) { animation-delay: 0.3s; }
.key-info-card:nth-child(3) { animation-delay: 0.4s; }
.key-info-card:nth-child(4) { animation-delay: 0.5s; }
.key-info-card:nth-child(5) { animation-delay: 0.6s; }
.key-info-card:nth-child(6) { animation-delay: 0.7s; }
.key-info-card:nth-child(7) { animation-delay: 0.8s; }
.key-info-card:nth-child(8) { animation-delay: 0.9s; }
.key-info-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.key-info-card .number-badge {
  background: #FFFFFF;
  color: #1F2937;
}
.social-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
  margin-right: 0.75rem;
}
.social-icon:hover {
  transform: scale(1.1);
}
.timer-section {
  background: linear-gradient(180deg, #F7FAFE, #E5E7EB);
  padding: 3.5rem 1rem;
}
.timer-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  padding: 2rem;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  animation: fadeInScale 0.6s ease forwards;
}
.timer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}
.timer {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
}
.timer-block {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 1rem;
  min-width: 60px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.timer-block:hover {
  transform: scale(1.05);
}
.timer-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #3B82F6;
  font-family: 'Inter', monospace;
}
.timer-label {
  font-size: 0.8rem;
  color: #374151;
  margin-top: 0.25rem;
}
.requests-block {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 1rem;
  min-width: 100px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  margin: 0.5rem 0;
}
.requests-block:hover {
  transform: scale(1.05);
}
.requests-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #3B82F6;
  font-family: 'Inter', monospace;
}
.requests-label {
  font-size: 0.8rem;
  color: #374151;
  margin-top: 0.25rem;
}
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(2px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease forwards;
  overflow-x: hidden;
}
.popup-content {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  max-width: calc(100% - 2rem);
  width: 90%;
  max-height: 80vh;
  padding: 2rem;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  animation: fadeInScale 0.4s ease forwards;
  overflow-y: auto;
}
.popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 24px;
  height: 24px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}
.popup-close:hover {
  background: rgba(0, 0, 0, 0.2);
}
.popup-close::before, .popup-close::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 2px;
  background: #1A202C;
  transform: rotate(45deg);
}
.popup-close::after {
  transform: rotate(-45deg);
}
.popup-content h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #1A202C;
  margin-bottom: 1.5rem;
  text-align: center;
}
.popup-content p {
  font-size: 1rem;
  color: #374151;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.popup-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.contact-section {
  background: linear-gradient(180deg, #F7FAFE, #E5E7EB);
  padding: 3.5rem 1rem;
}
.contact-form {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  padding: 2rem;
  max-width: calc(100% - 2rem);
  margin: 0 auto;
  animation: fadeInScale 0.6s ease forwards;
}
.contact-form h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #1A202C;
  margin-bottom: 1.5rem;
  text-align: center;
}
.contact-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  font-size: 1rem;
  color: #1A202C;
  background: rgba(255, 255, 255, 0.8);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #3B82F6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}
.contact-form input[type="checkbox"] {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid #E2E8F0;
  vertical-align: middle;
  margin-right: 0.5rem;
}
.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}
.contact-form .form-group {
  margin-bottom: 1.5rem;
}
.contact-form .submit-btn {
  display: block;
  width: 100%;
  padding: 0.75rem;
  background: linear-gradient(135deg, #1C2526, #2D3748);
  color: white;
  border: none;
  border-radius: 16px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.contact-form .submit-btn:hover {
  transform: translateY(-2px);
  filter: brightness(0.9);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}
.contact-form .submit-btn:active {
  transform: scale(0.98);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.contact-form .submit-btn.loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid white;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.contact-form .privacy-text {
  font-size: 0.8rem;
  color: #6B7280;
  line-height: 1.5;
  margin-top: 1.5rem;
  text-align: center;
}
.contact-form .privacy-consent-label {
  font-size: 0.85rem;
  color: #374151;
  display: flex;
  align-items: center;
  margin: 0.75rem 0;
}
.form-error {
  color: #EF4444;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 0.25rem;
  display: none;
  align-items: center;
  gap: 0.25rem;
}
.form-error::before {
  content: '⚠';
}
.form-success {
  display: none;
  position: fixed;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 1rem 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  color: #1A202C;
  font-weight: 600;
  animation: fadeInScale 0.4s ease forwards;
  z-index: 1001;
}
.header-logo {
  position: relative;
  overflow: hidden;
}
.header-logo::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -100%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: rotate(45deg);
  animation: logoShine 3s ease-in-out infinite;
}
.header-title {
  position: relative;
  overflow: hidden;
}
.header-title::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -100%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: rotate(45deg);
  animation: logoShine 3s ease-in-out infinite;
}
@keyframes logoShine {
  0% { left: -100%; }
  10% { left: 100%; }
  100% { left: 100%; }
}
@keyframes fadeIn { 
  to { opacity: 1; } 
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroGlow {
  from { opacity: 0; transform: scale(0.95); box-shadow: 0 0 0 rgba(59, 130, 246, 0); }
  to { opacity: 1; transform: scale(1); box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@media (max-width: 640px) {
  .bg-hero {
    height: 400px;
    padding-bottom: 2rem;
    position: relative;
    overflow: hidden;
  }
  .bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  h1 { font-size: 1.5rem; }
  .bg-hero h2.hero-text { 
    font-size: 1.25rem;
  }
  h3 { font-size: 1.25rem; }
  p { font-size: 0.9rem; line-height: 1.6; }
  .btn { 
    padding: 0.6rem 1.2rem; 
    font-size: 0.9rem; 
    min-width: 120px; 
  }
  .container { padding-left: 0.75rem; padding-right: 0.75rem; }
  .number-badge { width: 20px; height: 20px; font-size: 0.8rem; }
  .highlight-section, .timer-section { padding: 2rem 0.75rem; }
  .highlight-card, .timer-card { padding: 1.25rem; }
  .stat-item { 
    flex: 0 0 160px;
    padding: 1rem; 
  }
  .stat-number { font-size: 1.25rem; }
  .timer { gap: 0.5rem; }
  .timer-block, .requests-block { 
    min-width: 50px; 
    padding: 0.6rem; 
  }
  .timer-value, .requests-value { font-size: 1.25rem; }
  .timer-label, .requests-label { font-size: 0.7rem; }
  .telegram-section { padding: 2rem 0.75rem; }
  .telegram-card { padding: 1rem; }
  .telegram-img { 
    max-height: 140px; 
    aspect-ratio: 16/9; 
  }
  .telegram-card h3 { font-size: 1.25rem; }
  .telegram-card p { font-size: 0.9rem; }
  .social-icon { width: 24px; height: 24px; }
  .popup-content {
    padding: 1.25rem;
    max-height: 90vh;
    max-width: calc(100% - 1rem);
  }
  .popup-content h2 {
    font-size: 1.5rem;
  }
  .popup-content p {
    font-size: 0.9rem;
  }
  .contact-section { padding: 2rem 0.75rem; }
  .contact-form { 
    padding: 1.25rem; 
    max-width: calc(100% - 1rem); 
  }
  .contact-form h2 { font-size: 1.5rem; }
  .contact-form input,
  .contact-form select,
  .contact-form textarea { 
    font-size: 0.9rem; 
    padding: 0.8rem; 
  }
  .contact-form .submit-btn { 
    padding: 0.6rem; 
    font-size: 0.9rem; 
  }
  .contact-form .privacy-text {
    font-size: 0.8rem;
  }
  .contact-form .privacy-consent-label {
    font-size: 0.8rem;
  }
  .form-success { 
    padding: 0.75rem 1.5rem; 
    font-size: 0.9rem; 
    max-width: calc(100% - 1rem);
  }
  .telegram-card:nth-child(1) { animation-delay: 0.2s; }
  .telegram-card:nth-child(2) { animation-delay: 0.4s; }
  .telegram-card:nth-child(3) { animation-delay: 0.6s; }
  .benefits-card:nth-child(1) { animation-delay: 0.2s; }
  .benefits-card:nth-child(2) { animation-delay: 0.3s; }
  .benefits-card:nth-child(3) { animation-delay: 0.4s; }
  .benefits-card:nth-child(4) { animation-delay: 0.5s; }
  .benefits-card:nth-child(5) { animation-delay: 0.6s; }
  .benefits-card:nth-child(6) { animation-delay: 0.7s; }
  .how-we-work-card:nth-child(1) { animation-delay: 0.2s; }
  .how-we-work-card:nth-child(2) { animation-delay: 0.3s; }
  .how-we-work-card:nth-child(3) { animation-delay: 0.4s; }
  .how-we-work-card:nth-child(4) { animation-delay: 0.5s; }
  .how-we-work-card:nth-child(5) { animation-delay: 0.6s; }
  .how-we-work-card:nth-child(6) { animation-delay: 0.7s; }
  .key-info-card:nth-child(1) { animation-delay: 0.2s; }
  .key-info-card:nth-child(2) { animation-delay: 0.3s; }
  .key-info-card:nth-child(3) { animation-delay: 0.4s; }
  .key-info-card:nth-child(4) { animation-delay: 0.5s; }
  .key-info-card:nth-child(5) { animation-delay: 0.6s; }
  .key-info-card:nth-child(6) { animation-delay: 0.7s; }
  .key-info-card:nth-child(7) { animation-delay: 0.8s; }
  .key-info-card:nth-child(8) { animation-delay: 0.9s; }
}
@media (min-width: 641px) and (max-width: 1024px) {
  .container { padding-left: 1rem; padding-right: 1rem; }
  .highlight-section, .timer-section, .telegram-section { padding: 3rem 1rem; }
  .highlight-card, .timer-card, .contact-form { padding: 1.5rem; }
  .stat-item { flex: 0 0 200px; }
  .timer-block, .requests-block { min-width: 60px; }
  .telegram-img { max-height: 160px; aspect-ratio: 16/9; }
  .telegram-card { padding: 1.25rem; }
  .telegram-card h3 { font-size: 1.5rem; }
  .telegram-card p { font-size: 1rem; }
  .popup-content, .contact-form { max-width: calc(100% - 2rem); }
  .btn { padding: 0.7rem 1.5rem; font-size: 1rem; }
  .telegram-card:nth-child(1) { animation-delay: 0.2s; }
  .telegram-card:nth-child(2) { animation-delay: 0.4s; }
  .telegram-card:nth-child(3) { animation-delay: 0.6s; }
  .benefits-card:nth-child(1) { animation-delay: 0.2s; }
  .benefits-card:nth-child(2) { animation-delay: 0.3s; }
  .benefits-card:nth-child(3) { animation-delay: 0.4s; }
  .benefits-card:nth-child(4) { animation-delay: 0.5s; }
  .benefits-card:nth-child(5) { animation-delay: 0.6s; }
  .benefits-card:nth-child(6) { animation-delay: 0.7s; }
  .how-we-work-card:nth-child(1) { animation-delay: 0.2s; }
  .how-we-work-card:nth-child(2) { animation-delay: 0.3s; }
  .how-we-work-card:nth-child(3) { animation-delay: 0.4s; }
  .how-we-work-card:nth-child(4) { animation-delay: 0.5s; }
  .how-we-work-card:nth-child(5) { animation-delay: 0.6s; }
  .how-we-work-card:nth-child(6) { animation-delay: 0.7s; }
  .key-info-card:nth-child(1) { animation-delay: 0.2s; }
  .key-info-card:nth-child(2) { animation-delay: 0.3s; }
  .key-info-card:nth-child(3) { animation-delay: 0.4s; }
  .key-info-card:nth-child(4) { animation-delay: 0.5s; }
  .key-info-card:nth-child(5) { animation-delay: 0.6s; }
  .key-info-card:nth-child(6) { animation-delay: 0.7s; }
  .key-info-card:nth-child(7) { animation-delay: 0.8s; }
  .key-info-card:nth-child(8) { animation-delay: 0.9s; }
}