.services-page {
  gap: 1.4rem;
}

.services-page__hero,
.services-intro,
.services-listing,
.services-journey,
.services-focus {
  width: 100%;
}

.services-page__hero-surface {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.08), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(180deg, var(--color-primary-dark) 0%, #8498a7 100%);
  padding: clamp(1.4rem, 2.4vw, 2.4rem) clamp(1.4rem, 2.4vw, 2.4rem) clamp(2.8rem, 5vw, 4.2rem);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.services-page__hero-copy {
  margin-top: clamp(4rem, 7vw, 6.4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.services-page__eyebrow,
.services-journey__eyebrow {
  margin: 0 0 0.85rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services-page__hero-copy h1 {
  margin: 0;
  color: var(--color-pure-white);
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  font-weight: 500;
}

.services-page__hero-copy h1 span {
  color: var(--color-primary-light);
  font-style: italic;
}

.services-page__hero-copy > p {
  margin: 1.2rem 0 0;
  max-width: 40ch;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 1.2vw, 1.2rem);
  line-height: 1.65;
}

.services-page__hero-highlights {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin: 1.5rem 0 0;
  padding: 0;
}

.services-page__hero-highlights li {
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.services-intro__surface,
.services-listing__surface,
.services-journey__surface,
.services-focus__surface {
  background: var(--color-pure-white);
  border-radius: var(--radius-2xl);
  padding: clamp(1.4rem, 2.8vw, 2.4rem) 0;
}

.services-intro__head {
  display: grid;
  grid-template-columns: minmax(320px, 1.1fr) minmax(320px, 0.9fr);
  gap: 1.8rem 2rem;
  align-items: start;
}

.services-intro__head h2,
.services-journey__intro h2,
.services-focus__content h2,
.service-row__summary h2 {
  margin: 0;
  color: var(--color-charcoal);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 500;
}

.services-intro__copy p,
.services-journey__intro p,
.services-focus__content > p,
.service-row__summary p,
.service-row__details p,
.service-step p,
.services-focus__points p {
  margin: 0;
  color: rgba(48, 48, 48, 0.72);
  font-size: 1.02rem;
  line-height: 1.7;
}

.services-intro__copy {
  display: grid;
  gap: 1rem;
}

.services-intro__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.services-intro__stat {
  padding: 1.4rem 1.2rem 0 0;
  border-top: 1px solid rgba(184, 212, 227, 0.32);
}

.services-intro__stat strong {
  display: block;
  color: var(--color-charcoal);
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 500;
}

.services-intro__stat p {
  margin: 0.8rem 0 0;
  color: rgba(48, 48, 48, 0.72);
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: 22ch;
}

.services-listing__surface {
  display: grid;
}

.service-row {
  display: grid;
  grid-template-columns: minmax(72px, 0.12fr) minmax(250px, 0.9fr) minmax(320px, 1fr);
  gap: 1.2rem 1.8rem;
  align-items: start;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(184, 212, 227, 0.28);
  text-decoration: none;
  transition: transform 220ms ease;
}

.service-row:hover {
  transform: translateY(-2px);
}

.service-row:first-child {
  padding-top: 0;
  border-top: 0;
}

.service-row:last-child {
  padding-bottom: 0;
}

.service-row__index {
  color: var(--color-primary-dark);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.service-row__summary {
  display: grid;
  gap: 0.75rem;
}

.service-row__summary h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.3rem);
  line-height: 1.02;
  color: var(--color-charcoal);
}

.service-row__details {
  display: grid;
  gap: 1rem;
}

.service-row__details ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
}

.service-row__details li {
  padding: 0.68rem 0.92rem;
  border-radius: 999px;
  background: rgba(184, 212, 227, 0.16);
  color: var(--color-charcoal);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1;
}

.services-journey__surface {
  background:
    radial-gradient(circle at 15% 18%, rgba(184, 212, 227, 0.16), transparent 22%),
    radial-gradient(circle at 82% 20%, rgba(184, 212, 227, 0.1), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 250, 0.94));
}

.services-journey__intro {
  max-width: 42rem;
}

.services-journey__eyebrow {
  color: var(--color-primary-dark);
}

.services-journey__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

/* Cardurile din „parcurs”, nu etapele din pagina de serviciu: numele clasei e
   comun, deci fără scop liniile de aici ajungeau și peste etape.

   Tot din cauza numelui comun, cardurile mosteneau si grila de doua coloane a
   etapelor — una ingusta pentru numar, alta pentru text. Aici nu exista numar,
   deci titlul era strans intr-o coloana de 3.4rem, se rupea pe trei randuri si
   se incaleca cu paragraful de alaturi. Cardul se aseaza pe un singur rand:
   titlu deasupra, text dedesubt. */
.services-journey__steps .service-step {
  display: block;
  padding: 1.3rem 1.15rem 0 0;
  border-top: 1px solid rgba(184, 212, 227, 0.32);
}

/* Linia verticala tine de etapele numerotate din pagina de serviciu; aici ar
   trece prin mijlocul titlului. */
.services-journey__steps .service-step::before {
  display: none;
}

.services-journey__steps .service-step h3,
.services-focus__points h3 {
  margin: 0;
  color: var(--color-charcoal);
  font-size: 1.2rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.services-journey__steps .service-step p,
.services-focus__points p {
  margin-top: 0.8rem;
}

.services-focus__surface {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(320px, 0.92fr);
  gap: 1.4rem 2rem;
  align-items: stretch;
}

.services-focus__media {
  margin: 0;
  min-height: clamp(22rem, 44vw, 34rem);
  border-radius: 2rem;
  overflow: hidden;
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.04)),
    var(--services-focus-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.services-focus__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services-focus__points {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.services-focus__points article {
  padding-top: 1rem;
  border-top: 1px solid rgba(184, 212, 227, 0.26);
}

.service-detail-page {
  gap: 1.4rem;
}

.service-detail-page__hero,
.service-detail-page__body,
.service-detail-page__related {
  width: 100%;
}

.service-detail-page__hero-surface {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.08), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(180deg, var(--color-primary-dark) 0%, #8498a7 100%);
  padding: clamp(1.4rem, 2.4vw, 2.4rem) clamp(1.4rem, 2.4vw, 2.4rem) clamp(2.6rem, 4.8vw, 4rem);
  box-shadow: var(--shadow-card);
}

.service-detail-page__hero-copy {
  margin-top: clamp(2.6rem, 5vw, 4.2rem);
  max-width: 44rem;
  color: var(--color-pure-white);
}

.service-detail-page__back {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
}

.service-detail-page__back::before {
  content: "←";
  margin-right: 0.45rem;
}

.service-detail-page__hero-copy h1 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  font-weight: 500;
}

.service-detail-page__hero-copy > p:last-child {
  margin: 1rem 0 0;
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
  line-height: 1.65;
}

.service-detail-page__body-surface,
.service-detail-page__related-surface {
  background: var(--color-pure-white);
  border-radius: var(--radius-2xl);
  padding: clamp(1.4rem, 2.8vw, 2.4rem) 0;
}

.service-detail-page__body-surface {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(260px, 0.72fr);
  gap: 1.4rem 2rem;
  /* Fără asta, coloana de text se întinde până la înălțimea casetei laterale,
     iar rândurile grilei din interior împrăștie paragrafele. */
  align-items: start;
}

.service-detail-page__article,
.service-detail-page__richtext {
  align-content: start;
}

.service-detail-page__article {
  display: grid;
  gap: 2rem;
}

.service-detail-page__related-head h2 {
  margin: 0;
  color: var(--color-charcoal);
  letter-spacing: -0.04em;
}

.service-detail-page__related-head h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.02;
  font-weight: 500;
}

.service-detail-page__copy {
  display: grid;
  gap: 1rem;
}

.service-detail-page__copy p,
.service-detail-page__related-card span {
  margin: 0;
  color: rgba(48, 48, 48, 0.72);
  font-size: 1rem;
  line-height: 1.7;
}

.service-detail-page__richtext {
  display: grid;
  gap: 1rem;
}

.service-detail-page__richtext > *:first-child {
  margin-top: 0;
}

.service-detail-page__richtext h2 {
  margin: 0 0 0.25rem;
  color: var(--color-charcoal);
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 500;
}

.service-detail-page__richtext h3 {
  margin: 1rem 0 0;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(184, 212, 227, 0.28);
  color: var(--color-charcoal);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.service-detail-page__richtext p,
.service-detail-page__richtext li,
.service-detail-page__richtext blockquote {
  color: rgba(48, 48, 48, 0.72);
  font-size: 1rem;
  line-height: 1.75;
}

.service-detail-page__richtext ul,
.service-detail-page__richtext ol {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.55rem;
}

.service-detail-page__richtext blockquote {
  margin: 0;
  padding: 0.9rem 1rem;
  border-left: 3px solid rgba(184, 212, 227, 0.6);
  background: rgba(248, 251, 253, 0.9);
  border-radius: 1rem;
}

.service-detail-page__richtext table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: inset 0 0 0 1px rgba(184, 212, 227, 0.22);
}

.service-detail-page__richtext th,
.service-detail-page__richtext td {
  padding: 0.8rem 0.9rem;
  border-bottom: 1px solid rgba(184, 212, 227, 0.18);
  text-align: left;
}

.service-detail-page__sidebar {
  display: grid;
  align-content: start;
  position: sticky;
  top: 1.2rem;
}

.service-detail-page__booking {
  overflow: hidden;
  padding: clamp(1.6rem, 2.4vw, 2.35rem);
  border-radius: 2rem;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.1), transparent 24%),
    linear-gradient(180deg, #97a7b3 0%, #8d9eab 100%);
  color: var(--color-pure-white);
  box-shadow: 0 18px 40px rgba(48, 48, 48, 0.12);
}

.service-detail-page__booking::before,
.service-detail-page__booking::after {
  content: "";
  position: absolute;
  inset: auto;
  border: 2px solid rgba(236, 245, 250, 0.28);
  border-radius: 50%;
  pointer-events: none;
}

.service-detail-page__booking::before {
  width: 34rem;
  height: 34rem;
  left: -8rem;
  top: -4rem;
}

.service-detail-page__booking::after {
  width: 26rem;
  height: 26rem;
  right: -7rem;
  bottom: -7rem;
}

.service-detail-page__booking-copy,
.service-detail-page__booking a {
  position: relative;
  z-index: 1;
}

.service-detail-page__booking-copy h3 {
  margin: 0;
  max-width: 11ch;
  font-family: var(--font-family);
  font-size: clamp(2.5rem, 4.2vw, 4.4rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  font-weight: 500;
}

.service-detail-page__booking-copy h3 span {
  color: var(--color-primary-light);
  font-style: italic;
}

.service-detail-page__booking-copy p {
  margin: 1.5rem 0 0;
  max-width: 23ch;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.02rem;
  line-height: 1.7;
}

.service-detail-page__booking a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 16.5rem);
  min-height: 3.9rem;
  margin-top: 1.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--color-charcoal);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-detail-page__booking a::after {
  content: "↗";
  margin-left: 0.7rem;
  font-size: 1.15rem;
  line-height: 1;
}

.service-detail-page__booking a:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(48, 48, 48, 0.16);
}

.service-detail-page__related-head p {
  margin: 0 0 0.75rem;
  color: var(--color-primary-dark);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-detail-page__related-head {
  max-width: 46rem;
}

.service-detail-page__related-head h2 {
  max-width: 12ch;
}

.service-detail-page__related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
  margin-top: 1.85rem;
}

.service-detail-page__related-card {
  position: relative;
  overflow: hidden;
  min-height: 13.5rem;
  padding: 1.45rem;
  border: 1px solid rgba(184, 212, 227, 0.28);
  border-radius: 1.65rem;
  background:
    radial-gradient(circle at 85% 18%, rgba(184, 212, 227, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(248, 251, 253, 0.98), rgba(255, 255, 255, 0.98));
  text-decoration: none;
  display: grid;
  align-content: space-between;
  gap: 1.2rem;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-detail-page__related-card::after {
  content: "↗";
  position: absolute;
  right: 1.2rem;
  bottom: 1.1rem;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  background: rgba(184, 212, 227, 0.2);
  color: var(--color-charcoal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  line-height: 1;
}

.service-detail-page__related-card:hover {
  transform: translateY(-3px);
  border-color: rgba(155, 169, 181, 0.48);
  box-shadow: 0 18px 36px rgba(48, 48, 48, 0.08);
}

.service-detail-page__related-card strong {
  color: var(--color-charcoal);
  max-width: 12ch;
  font-size: clamp(1.35rem, 1.5vw, 1.6rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.service-detail-page__related-card span {
  max-width: 25ch;
  padding-right: 3rem;
}

@media (max-width: 1200px) {
  .services-intro__head,
  .services-focus__surface,
  .service-row,
  .service-detail-page__body-surface {
    grid-template-columns: 1fr;
  }

  .services-journey__steps,
  .service-detail-page__related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* Pe o singură coloană nu mai are lângă ce sta lipit. */
  .service-detail-page__sidebar {
    position: static;
  }
}

@media (max-width: 860px) {
  .services-page__hero-surface {
    padding: 0.95rem 1rem 2.1rem;
    border-radius: 1.25rem;
  }

  .services-page__hero-copy {
    margin-top: 2.8rem;
  }

  .services-page__hero-copy h1 {
    max-width: 12ch;
  }

  .services-intro__stats,
  .services-journey__steps {
    grid-template-columns: 1fr;
  }

  .service-row {
    gap: 0.8rem;
  }

  .services-focus__media {
    min-height: 18rem;
    border-radius: 1.4rem;
  }

  .service-detail-page__hero-surface {
    padding: 0.95rem 1rem 2rem;
    border-radius: 1.25rem;
  }

  .service-detail-page__booking {
    border-radius: 1.5rem;
  }

  .service-detail-page__booking::before {
    width: 24rem;
    height: 24rem;
    left: -8rem;
    top: -2rem;
  }

  .service-detail-page__booking::after {
    width: 18rem;
    height: 18rem;
    right: -5rem;
    bottom: -5rem;
  }

  .service-detail-page__related-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .services-page__hero-copy h1 {
    font-size: clamp(2.4rem, 13vw, 3.5rem);
  }

  .services-page__hero-highlights li {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* --- Pagina de serviciu: blocuri de conținut ------------------------------ */

/* Fotografia serviciului stă în coloana laterală, sub cardul de programare. */
.service-detail-page__sidebar-media {
  margin: 1rem 0 0;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(184, 212, 227, 0.42);
  box-shadow: var(--shadow-card);
}

.service-detail-page__sidebar-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-detail-page__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.3rem 0 0;
  padding: 0;
  list-style: none;
}

.service-detail-page__tags li {
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.92rem;
  font-weight: 600;
}

/* Sub-navigație */

.service-nav {
  position: sticky;
  top: 0.6rem;
  z-index: 6;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  padding: 0.4rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(184, 212, 227, 0.42);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-card);
  width: max-content;
  max-width: 100%;
  overflow-x: auto;
}

.service-nav a {
  padding: 0.55rem 1rem;
  border-radius: var(--radius-pill);
  color: rgba(48, 48, 48, 0.7);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 200ms ease, color 200ms ease;
}

.service-nav a:hover {
  color: var(--color-charcoal);
  background: rgba(184, 212, 227, 0.3);
}

.service-nav a.is-active {
  background: var(--color-charcoal);
  color: var(--color-pure-white);
}

/* Carduri „Ce presupune” */

/* Bandă proprie, pe toată lățimea: în coloana articolului încăpeau doar două
   carduri pe rând, iar al treilea rămânea singur sub ele. */
.service-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
  gap: 1rem;
}

.service-highlight {
  display: grid;
  gap: 0.55rem;
  align-content: start;
  padding: 1.3rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(184, 212, 227, 0.42);
  background: rgba(248, 251, 253, 0.9);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.service-highlight:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.service-highlight__mark {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: var(--color-primary);
  color: var(--color-charcoal);
}

.service-highlight__mark svg {
  width: 1.15rem;
  height: 1.15rem;
}

.service-highlight h3 {
  margin: 0;
  color: var(--color-charcoal);
  font-size: 1.18rem;
  line-height: 1.22;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.service-highlight p {
  margin: 0;
  color: rgba(48, 48, 48, 0.72);
  font-size: 0.98rem;
  line-height: 1.65;
}

/* Caseta „Pe scurt” */

.service-facts {
  display: grid;
  gap: 0.1rem;
  margin: 1rem 0 0;
  padding: 1.1rem 1.3rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(184, 212, 227, 0.42);
  background: var(--color-pure-white);
}

.service-facts > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(184, 212, 227, 0.32);
}

.service-facts > div:last-child {
  border-bottom: 0;
}

.service-facts dt {
  color: rgba(48, 48, 48, 0.62);
  font-size: 0.9rem;
  font-weight: 600;
}

.service-facts dd {
  margin: 0;
  color: var(--color-charcoal);
  font-size: 0.98rem;
  font-weight: 700;
  text-align: right;
}

/* Etape */

.service-steps__surface,
.service-gallery__surface,
.service-faq__surface {
  background: var(--color-pure-white);
  border-radius: var(--radius-2xl);
  padding: clamp(1.4rem, 2.8vw, 2.4rem);
}

.service-steps__head p,
.service-gallery__head p,
.service-faq__head p {
  margin: 0 0 0.5rem;
  color: var(--color-primary-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-steps__head h2,
.service-gallery__head h2,
.service-faq__head h2 {
  margin: 0 0 1.6rem;
  color: var(--color-charcoal);
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 500;
}

.service-steps__list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.service-step {
  position: relative;
  display: grid;
  grid-template-columns: 3.4rem minmax(0, 1fr);
  gap: 1.1rem;
  padding: 0 0 1.6rem;
}

/* Linia care leagă etapele trece prin spatele cifrelor, nu între ele: pornește
   din marginea de sus a rândului și se oprește exact unde începe următorul,
   deci cercurile opace o acoperă și pare una singură, continuă. Ultima etapă nu
   o continuă, așa că linia se oprește sub cifra dinaintea ei. */
.service-step::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1.7rem;
  width: 2px;
  background: rgba(184, 212, 227, 0.75);
  z-index: 0;
}

.service-step:last-child {
  padding-bottom: 0;
}

.service-step:last-child::before {
  display: none;
}

.service-step__number {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 999px;
  background: var(--color-charcoal);
  color: var(--color-pure-white);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.service-step__copy {
  padding-top: 0.55rem;
}

.service-step__copy h3 {
  margin: 0;
  color: var(--color-charcoal);
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.service-step__duration {
  margin: 0.3rem 0 0;
  color: var(--color-primary-dark);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-step__copy > p:last-child {
  margin: 0.5rem 0 0;
  color: rgba(48, 48, 48, 0.72);
  font-size: 1rem;
  line-height: 1.7;
}

/* Galerie */

.service-gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 14rem), 1fr));
  gap: 0.8rem;
}

.service-gallery__item {
  padding: 0;
  border: 1px solid rgba(184, 212, 227, 0.42);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: none;
  cursor: zoom-in;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.service-gallery__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.service-gallery__item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(20, 26, 32, 0.86);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

.lightbox__close {
  position: absolute;
  top: clamp(0.8rem, 2vw, 1.6rem);
  right: clamp(0.8rem, 2vw, 1.6rem);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.24);
}

/* Întrebări frecvente pe serviciu */

.service-faq__list {
  display: grid;
  gap: 0.6rem;
}

@media (max-width: 600px) {
  .service-step {
    grid-template-columns: 2.6rem minmax(0, 1fr);
    gap: 0.9rem;
  }

  .service-step__number {
    width: 2.6rem;
    height: 2.6rem;
    font-size: 0.88rem;
  }

  .service-step::before {
    left: 1.3rem;
  }
}

.service-highlights__title {
  margin: 0 0 1.1rem;
  color: var(--color-charcoal);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 500;
}
