/* --- USLUGI.CSS (Detailed scroll snap view) --- */
.services-body {
  overflow: hidden; /* Hide main body scroll to allow snap-container to scroll */
  background-color: var(--bg-color);
}

.u-navbar {
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.back-link {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s, transform 0.3s;
}
.back-link:hover {
  color: var(--primary);
  transform: translateX(-5px);
}

.snap-container {
  height: 100vh;
  width: 100%;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Hide scrollbar Firefox */
}
.snap-container::-webkit-scrollbar {
  display: none; /* Hide scrollbar Chrome/Safari */
}

.snap-section {
  height: 100vh;
  width: 100%;
  scroll-snap-align: start;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

/* Alternate Backgrounds subtly */
.snap-section:nth-child(even) { background-color: #0A0A0A; }
.snap-section:nth-child(odd) { background-color: #050505; }

.u-bg-num {
  position: absolute;
  right: -5%;
  bottom: -10%;
  font-family: var(--font-display);
  font-size: 40vw;
  line-height: 0.8;
  color: rgba(255,255,255,0.02);
  z-index: 0;
  pointer-events: none;
}

.u-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  z-index: 2;
  margin-top: 60px; /* Offset for navbar */
}

.u-left, .u-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.u-icon i {
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.u-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 3px;
  color: var(--text-dim);
  text-transform: uppercase;
}

.u-head {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}

.u-story {
  font-size: 1.1rem;
  color: var(--text-dim);
  line-height: 1.8;
}

.u-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  padding: 30px;
  border-radius: 8px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.u-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 3px; height: 100%;
}

.process-card::before { background: var(--secondary); }
.signals-card::before { background: #F59E0B; }
.benefit-card::before { background: var(--primary); }

.u-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 1px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.u-card p {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .u-layout { grid-template-columns: 1fr; gap: 40px; margin-top: 100px; }
  .u-head { font-size: 3rem; }
  .u-bg-num { font-size: 50vw; top: 0; right: 0; bottom: auto; }
  .snap-container { scroll-snap-type: none; overflow-y: auto; } /* Disable snap on mobile for better reading */
  .snap-section { height: auto; min-height: 100vh; padding: 120px 0 60px; }
}

@media (max-width: 768px) {
  .u-head { font-size: 2.5rem; }
  .u-icon i { font-size: 3rem; }
}
