/* Minimal styling to echo the screenshot tone */
body {
  font-family: Arial, sans-serif;
}
:root {
  --dark: #141414;
  --red: #d32d2d;
}
.gradient-dark {
  background: radial-gradient(100% 100% at 0% 0%, #2b2b2b 0%, #141414 60%, #0d0d0d 100%);
}
#why span {
  font-size: 1.1rem;
  line-height: 1.5;
}

.adv-icon {
  width: 28px;
  height: 28px;
  margin-top: 3px;
}
.promo-tile { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.15); }

.service-card {
  background: var(--bg-img) center/cover no-repeat;
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  min-height: 200px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card .card-body {
  position: relative;
  z-index: 2;
  transition: background 0.3s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4); /* затемнение фона */
  z-index: 1;
  transition: background 0.3s ease;
}
/* 🔥 Эффект при наведении */
.service-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.service-card:hover::before {
  background: rgba(0,0,0,0.6);
}

.service-card:hover .btn-danger {
  background-color: #c82333;
  border-color: #bd2130;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
}

.benefit .fw-semibold{ font-size: 1rem; }
.btn-danger{ background-color: var(--red); border-color: var(--red); }
header .nav-link{ color:#333; }
header .nav-link:hover{ color: var(--red); }
footer a{ text-decoration:none; }