:root {
  --grad: linear-gradient(0.75turn, rgba(86,207,216,1) 0%, rgba(0,212,255,1) 100%);
  --hover: #2fb7c4;
}

/* Блоки */
.info-block {
  position: relative;
  margin-bottom: 24px;
  padding: 8px 12px 8px 16px;
}

/* Плавное появление полоски */
.info-block::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: var(--grad);
  border-radius: 4px;
  opacity: 0;
  transform: scaleY(0.6);
  transform-origin: top;
  animation: stripeFade 0.6s ease forwards;
}
@keyframes stripeFade {
  from { opacity: 0; transform: scaleY(0.6); }
  to   { opacity: 1; transform: scaleY(1); }
}

.info-block-inner {
  margin-left: 14px;
}

/* Заголовки */
.hero-title,
.info-title {
  margin-bottom: 18px;
  display: inline-block;
  position: relative;
  z-index: 2;
}

/* Кнопки */
.btn,
.btn-vk {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff !important;
  background: var(--grad);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
  transition: 0.2s ease;
  white-space: nowrap;
}
.btn:hover,
.btn-vk:hover {
  background: var(--hover) !important;
  color: #ffffff !important;
}

/* Micro‑press */
.btn:active,
.btn-secondary:active,
.btn-vk:active {
  transform: scale(0.96);
  box-shadow: 0 4px 10px rgba(0,0,0,0.18);
}

/* Вторая кнопка */
.btn-secondary {
  background: transparent;
  border: 1px solid rgba(86,207,216,1);
  color: #000000 !important;
}
.btn-secondary:hover {
  background: var(--hover) !important;
  color: #ffffff !important;
  border-color: var(--hover) !important;
}
#allrecords a.btn-secondary:hover {
  color: #ffffff !important;
}

/* Списки */
.info-list {
  margin: 6px 0 0;
  padding-left: 18px;
  font-size: 15px;
}
.info-list li {
  margin-bottom: 4px;
}
.accent {
  font-weight: 600;
}

/* Адаптив */
@media (max-width: 600px) {
  .contact-row { flex-direction: column; }
  .btn, .btn-secondary, .btn-vk { width: 100%; }
}
