/* ================================================================
   КОНТАКТЫ — Серебристый металл
   ================================================================ */

.contacts-section {
  padding: 80px 20px;
  background: linear-gradient(160deg, #3a3f4b 0%, #2c3039 40%, #3b404c 100%);
  font-family: 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.contacts-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.contacts-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #d0d5dc;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 24px;
  border-radius: 6px;
  margin-bottom: 20px;
}

.contacts-title {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 32px;
  line-height: 1.3;
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.contacts-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contacts-card:hover {
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.05) 100%);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.contacts-card i {
  font-size: 20px;
  color: #b8c0cc;
  width: 24px;
  text-align: center;
}


/* ================================================================
   ПРОГРАММА КУРСА — Серебристые карточки, 2 в ряд
   ================================================================ */

.program-section {
  padding: 100px 20px;
  background: #eef0f3;
  font-family: 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: #4a5060;
  line-height: 1.7;
}

.program-container {
  max-width: 1000px;
  margin: 0 auto;
}

/* ---------- Шапка ---------- */

.program-header {
  text-align: center;
  margin-bottom: 50px;
}

.program-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #3a4050;
  background: #ffffff;
  border: 1px solid #d8dbe2;
  padding: 8px 24px;
  border-radius: 6px;
  margin-bottom: 24px;
}

.program-title {
  font-size: 34px;
  font-weight: 800;
  color: #1a1f2e;
  line-height: 1.3;
  margin: 0 auto 14px;
  max-width: 550px;
}

.program-subtitle {
  font-size: 15px;
  color: #6b7280;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---------- Сетка 2 в ряд ---------- */

.program-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 50px;
}

/* ---------- Карточка ---------- */

.program-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(145deg, #f5f6f8 0%, #eaecf0 100%);
  border: 1px solid #d8dbe2;
  border-radius: 14px;
  padding: 28px 26px 24px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.program-card:hover {
  background: linear-gradient(145deg, #ffffff 0%, #f0f2f5 100%);
  border-color: #c0c5d0;
  transform: translateY(-3px);
}

.program-card__number {
  font-size: 28px;
  font-weight: 800;
  color: #c8cdd6;
  line-height: 1;
  margin-bottom: 14px;
  transition: color 0.3s;
}

.program-card:hover .program-card__number {
  color: #a8aeb8;
}

.program-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1f2e;
  margin: 0 0 10px;
  line-height: 1.4;
}

.program-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.7;
  margin: 0 0 18px;
  flex-grow: 1;
}

.program-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #3a4050;
  transition: gap 0.3s, color 0.3s;
}

.program-card:hover .program-card__link {
  gap: 10px;
  color: #1a1f2e;
}

.program-card__link i {
  font-size: 12px;
  transition: transform 0.3s;
}

.program-card:hover .program-card__link i {
  transform: translateX(3px);
}

/* ---------- Кнопка ---------- */

.program-actions {
  text-align: center;
}

.program-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 36px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
}

.program-btn i {
  font-size: 14px;
  transition: transform 0.3s;
}

.program-btn:hover i {
  transform: translateX(3px);
}

.program-btn--primary {
  background: #3a3f4b;
  color: #ffffff;
}

.program-btn--primary:hover {
  background: #2c3039;
  transform: translateY(-2px);
}


/* ================================================================
   АДАПТИВ
   ================================================================ */

@media (max-width: 700px) {
  .contacts-grid {
    grid-template-columns: 1fr;
  }
  .contacts-title { font-size: 26px; }
  .program-grid {
    grid-template-columns: 1fr;
  }
  .program-title { font-size: 26px; }
  .program-section { padding: 60px 16px; }
  .contacts-section { padding: 60px 16px; }
}