/* ============================================
   SERVICES — HORIZONTAL SCROLL PANELS
   ============================================ */

.services-section {
  position: relative;
  height: 400vh;
  background: transparent;
}

.services-track-wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.services-track {
  display: flex;
  width: 300vw;
  height: 100%;
  will-change: transform;
}

.service-panel {
  width: 100vw;
  height: 100vh;
  padding: 80px 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.panel-content {
  display: grid;
  grid-template-columns: 55% 40%;
  gap: 5%;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

.panel-left {
  display: flex;
  flex-direction: column;
}

.panel-tag {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--grey);
  margin-bottom: 32px;
}

.panel-headline {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.9;
  color: var(--white);
  text-transform: uppercase;
}

.panel-body {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--grey);
  max-width: 500px;
  margin-top: 32px;
  line-height: 1.65;
}

.panel-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 32px;
}

.bullet {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--white);
}

/* Panel graphic */
.panel-graphic {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.panel-graphic .graphic-label {
  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.15);
  text-align: center;
  padding: 16px;
}

/* Ghost number */
.ghost-number {
  position: absolute;
  right: -2vw;
  bottom: -0.1em;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 32vw;
  color: var(--white);
  opacity: 0.03;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

