/* USLUGY HERO — iLogist v2 */
:root {
  --us-dk:  #07090d;
  --us-dk2: #0d1117;
  --us-gd:  #ef9f27;
  --us-gd-dim: rgba(239,159,39,0.1);
  --us-gd-b:   rgba(239,159,39,0.25);
  --us-w08: rgba(255,255,255,0.08);
  --us-w40: rgba(255,255,255,0.4);
  --us-w60: rgba(255,255,255,0.6);
  --us-D: 'Bebas Neue', sans-serif;
  --us-S: 'Poppins', sans-serif;
}

/* HERO */
.us-hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--us-dk);
  font-family: var(--us-S);
  color: #fff;
}
.us-hero-bg {
  position: absolute; inset: 0;
  background-image: url('../images/services_bg.webp');
  background-size: cover;
  background-position: center;
  animation: usz 20s ease-in-out infinite alternate;
  filter:brightness(0.45) saturate(0.7);
}
@keyframes usz { from { transform: scale(1.02); } to { transform: scale(1.07); } }
.us-hero-ov {
  position: absolute; inset: 0;
  background: linear-gradient(110deg,rgba(7,9,13,0.67) 38%,rgba(7,9,13,0.62) 65%,rgba(7,9,13,0.1) 100%);
}
.us-hero-glow {
  position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(239,159,39,0.07) 0%, transparent 70%);
  pointer-events: none; z-index: 1;
}
.us-hero-inner {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto; width: 100%;
  padding: 120px 48px 40px;
  flex: 1;
  display: flex; flex-direction: column; justify-content: center;
}
.us-badge {
  display: inline-flex; align-self: flex-start; align-items: center; gap: 7px;
  background: var(--us-gd-dim);
  border: 1px solid var(--us-gd-b);
  color: var(--us-gd);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 14px; margin-bottom: 18px;
}
.us-pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--us-gd);
  animation: usp 2s infinite;
}
@keyframes usp { 0%,100%{opacity:1} 50%{opacity:0.3} }

.us-hero h1 {
  font-family: var(--us-D);
  font-size: clamp(36px, 7vw, 72px);
  line-height: 0.9; color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 12px; font-weight: 400;
  overflow-wrap: break-word; word-break: break-word;
}
.us-hero h1 em { font-style: normal; color: var(--us-gd); }
.us-hero-sub {
  font-size: 16px; font-weight: 300;
  color: var(--us-w60); line-height: 1.7;
  max-width: 580px; margin-bottom: 32px;
}
.us-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-usg {
  background: var(--us-gd); color: var(--us-dk);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 14px 28px; border: none; cursor: pointer;
  transition: opacity .2s;
  text-decoration: none; display: inline-block;
}
.btn-usg:hover { opacity: 0.88; color: var(--us-dk); text-decoration: none; }
.btn-uso {
  background: transparent; color: #fff;
  font-size: 12px; font-weight: 600;
  padding: 14px 28px;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer; transition: border-color .2s;
  text-decoration: none; display: inline-block;
}
.btn-uso:hover { border-color: rgba(255,255,255,0.5); color: #fff; text-decoration: none; }

/* STATS BAR */
.us-stats {
  position: relative; z-index: 2;
  background: var(--us-dk2);
  border-top: 2px solid var(--us-gd);
  display: grid; grid-template-columns: repeat(4,1fr);
  font-family: var(--us-S);
}
.us-stat {
  padding: 20px 24px; text-align: center;
  border-right: 1px solid var(--us-w08);
  transition: background .2s; color: #fff;
}
.us-stat:last-child { border-right: none; }
.us-stat:hover { background: rgba(239,159,39,0.04); }
.us-stat-n {
  font-family: var(--us-D);
  font-size: 32px; color: var(--us-gd);
  letter-spacing: 0.04em; line-height: 1; font-weight: 400;
}
.us-stat-l {
  font-size: 11px; color: var(--us-w40);
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-top: 4px; line-height: 1.4;
}

/* MOBILE */
@media (max-width: 991px) {
  .us-hero-inner { padding: 100px 24px 40px; }
  .us-stats { grid-template-columns: repeat(2,1fr); }
  .us-stat:nth-child(2) { border-right: none; }
  .us-stat:nth-child(3),
  .us-stat:nth-child(4) { border-top: 1px solid var(--us-w08); }
}
@media (max-width: 575px) {
  .us-hero-bg { animation: none; transform: none; }
}
