.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  background: var(--dark);
  overflow: hidden;
}

.hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero__slide.is-active { opacity: 1; }

.hero__slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 18, 16, 0.72) 0%, rgba(20, 18, 16, 0.35) 40%, rgba(20, 18, 16, 0.9) 100%), linear-gradient(90deg, rgba(20, 18, 16, 0.7), transparent 60%);
}

.hero__content {
  position: relative;
  z-index: 5;
  padding-bottom: clamp(60px, 8vw, 110px);
  padding-top: 150px;
  width: 100%;
}

.hero h1 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: clamp(38px, 6vw, 80px);
  font-weight: 800;
  margin: 20px 0 24px;
  max-width: 17ch;
  letter-spacing: -0.02em;
  line-height: 1.02;
}

.hero h1 span { color: var(--accent-bright); }

.hero__lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 1.6vw, 19px);
  max-width: 54ch;
  font-weight: 300;
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
  align-items: center;
}

.services {
  background: var(--dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.services__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.services__head h2 { color: var(--white); }

.services__controls { display: flex; gap: 12px; }

.services__track {
  display: flex;
  gap: 2px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 44px 0 12px;
  scroll-padding-left: 32px;
  scrollbar-width: none;
}

.services__track::-webkit-scrollbar { display: none; }

.services__spacer { flex: 0 0 30px; }

.service-card {
  flex: 0 0 270px;
  scroll-snap-align: start;
  position: relative;
  height: clamp(400px, 48vw, 520px);
  overflow: hidden;
  background: #0f0e0c;
  cursor: pointer;
  transition: flex-basis 0.6s var(--ease-out);
}

.service-card.is-hovered { flex-basis: 380px; }

.service-card.is-dimmed { flex-basis: 216px; }

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out), opacity 0.6s ease;
  opacity: 0.62;
}

.service-card.is-hovered img {
  opacity: 0.85;
  transform: scale(1.06);
}

.service-card.is-dimmed img { opacity: 0.48; }

.service-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 11, 9, 0.25) 0%, rgba(12, 11, 9, 0.05) 40%, rgba(12, 11, 9, 0.9) 100%);
}

.service-card__num {
  position: absolute;
  top: 22px;
  left: 22px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.75);
}

.service-card__body {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}

.service-card__rule {
  height: 2px;
  width: 34px;
  background: var(--accent-bright);
  margin-top: 14px;
}

.stats {
  background: var(--dark);
  color: var(--white);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  max-width: 1400px;
  margin: 0 auto;
  align-items: stretch;
}

.stats__nums {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: clamp(40px, 4vw, 58px) clamp(24px, 3vw, 40px);
}

.stat-item {
  padding: 22px clamp(14px, 2vw, 28px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stat-item__val {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 3.6vw, 54px);
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-item__unit {
  color: var(--accent-bright);
  font-size: 0.4em;
  vertical-align: super;
  margin-left: 3px;
  font-weight: 700;
}

.stat-item__lab {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 12px;
  line-height: 1.5;
}

.stats__countries {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding: clamp(40px, 4vw, 58px) clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stats__countries-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.stats__country-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px clamp(20px, 3vw, 44px);
  margin-top: clamp(22px, 2.4vw, 32px);
}

.stats__country-list span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 2.9vw, 42px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--accent-bright);
}

.contact {
  position: relative;
  background: var(--dark);
  color: var(--white);
  overflow: hidden;
}

.contact__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
}

.contact__bg-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(20, 18, 16, 0.94), rgba(20, 18, 16, 0.66));
}

.contact__inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: clamp(40px, 6vw, 84px);
  align-items: start;
}

.contact h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 52px);
  margin: 16px 0 22px;
  max-width: 18ch;
  line-height: 1.05;
}
