.services-hero-section {
  min-height: 88vh;
  padding-top: 120px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 85% 35%, rgba(255,200,0,.15), transparent 30%),
    linear-gradient(to bottom, #050505, #0c0c0c);
  overflow: hidden;
}

.services-hero-layout {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 90px;
  align-items: center;
}

.breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 30px;
  color: rgba(255,255,255,.55);
  font-size: 14px;
}

.breadcrumb a {
  color: rgba(255,255,255,.7);
  transition: .3s ease;
}

.breadcrumb a:hover {
  color: var(--primary);
}

.services-hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(62px, 8vw, 118px);
  line-height: .9;
  margin-bottom: 34px;
}

.services-hero-content h1::first-line {
  color: var(--primary);
}

.services-hero-subtitle {
  max-width: 620px;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.6;
  color: rgba(255,255,255,.82);
}

.services-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 42px 0 34px;
}

.services-hero-trust {
  max-width: 620px;
  padding-left: 20px;
  border-left: 4px solid var(--primary);
  color: rgba(255,255,255,.68);
  font-size: 16px;
  line-height: 1.8;
}

.services-hero-trust strong {
  color: var(--primary);
}

/* RIGHT SIDE */
.services-hero-panel {
  position: relative;
}

.publishing-stack {
  display: grid;
  gap: 20px;
}

.stack-card {
  padding: 30px;
  border-radius: 24px;
  background: rgba(15, 15, 15, 0.65); /* Premium dark transparent glass */
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--white);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.stack-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 200, 0, 0.35);
  background: rgba(20, 20, 20, 0.75);
}

.stack-card span {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 12px;
  color: var(--primary);
  text-transform: uppercase;
}

.stack-card h3 {
  font-size: 26px;
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
}

.stack-card p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
}

/* DESKTOP OFFSET ROTATION (1201px and above) */
@media (min-width: 1201px) {
  .publishing-stack {
    transform: rotate(-1deg); /* Reduced rotation to keep it clean */
  }

  .stack-card:nth-child(2) {
    transform: translateX(16px); /* Minimized staggering to prevent overflow */
  }

  .stack-card:nth-child(3) {
    transform: translateX(32px); /* Minimized staggering to prevent overflow */
  }

  .stack-card:nth-child(2):hover {
    transform: translateX(16px) translateY(-6px);
  }

  .stack-card:nth-child(3):hover {
    transform: translateX(32px) translateY(-6px);
  }
}

/* RESPONSIVE & LAPTOP VIEWPORTS */
@media (max-width: 1200px) {
  .services-hero-layout {
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .services-hero-section {
    min-height: auto;
    padding: 130px 0 90px;
  }

  .services-hero-layout {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .breadcrumb,
  .services-hero-buttons {
    justify-content: center;
  }

  .services-hero-subtitle,
  .services-hero-trust {
    margin-left: auto;
    margin-right: auto;
  }

  .services-hero-trust {
    text-align: left;
  }

  .publishing-stack {
    max-width: 580px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .services-hero-content h1 {
    font-size: 54px;
  }

  .services-hero-buttons {
    flex-direction: column;
  }

  .stack-card {
    padding: 24px;
  }
}