/* ============================
   Lazy Block: services-hero
   ============================ */

.services-hero {
  position: relative;
  background: #0a0e1a;
  color: var(--color-white);
  padding: 96px 0 80px;
  overflow: hidden;
}

.services-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/bg/104.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.services-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(255, 255, 255, 0.03) 20px,
    rgba(255, 255, 255, 0.03) 21px
  );
  z-index: 2;
  pointer-events: none;
}

.services-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 14, 26, 0.78) 0%, rgba(10, 14, 26, 0.92) 100%);
  z-index: 1;
}

.services-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--color-accent) 20%, var(--color-accent) 80%, transparent 100%);
  z-index: 4;
}

.services-hero__container {
  position: relative;
  z-index: 3;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.services-hero__container::before,
.services-hero__container::after {
  content: '';
  position: absolute;
  width: 48px;
  height: 24px;
  opacity: 0.85;
}
.services-hero__container::before {
  top: 0;
  left: var(--container-padding);
  border-top: 3px solid var(--color-accent);
  border-left: 3px solid var(--color-accent);
}
.services-hero__container::after {
  bottom: 0;
  right: var(--container-padding);
  border-bottom: 3px solid var(--color-accent);
  border-right: 3px solid var(--color-accent);
}

/* Badge */
.services-hero__badge {
  position: relative;
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 18px 8px 22px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 28px;
}
.services-hero__badge::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--color-accent);
}

.services-hero__title {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.05;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.services-hero__subtitle {
  font-family: var(--font-body);
  font-size: var(--text-xl);
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  max-width: 620px;
  line-height: 1.55;
}

/* Quick-facts strip inside hero */
.services-hero__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.services-hero__fact {
  padding: 20px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.services-hero__fact:last-child { border-right: none; }

.services-hero__fact-value {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 6px;
}

.services-hero__fact-value-accent { color: var(--color-accent-light); }

.services-hero__fact-label {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Animate */
.services-hero__animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.services-hero__animate--visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .services-hero__title { font-size: 38px; line-height: 1.08; }
}

@media (max-width: 767px) {
  .services-hero { padding: 64px 0 52px; }
  .services-hero__container { padding: 0 var(--container-padding-mobile); }
  .services-hero__container::before { left: var(--container-padding-mobile); }
  .services-hero__container::after { right: var(--container-padding-mobile); }
  .services-hero__subtitle { font-size: var(--text-base); }
  .services-hero__facts { grid-template-columns: 1fr; }
  .services-hero__fact { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .services-hero__fact:last-child { border-bottom: none; }
}

@media (max-width: 600px) {
  .services-hero__title { font-size: 28px; line-height: 1.1; }
}

@media (max-width: 375px) {
  .services-hero__title { font-size: 22px; line-height: 1.14; }
}
