/* Usluga detail — Methodology ("Naš pristup") — MA merged dark band.
   Sits flush against the dark procedures section above (no top wave,
   no top padding) and uses a subtle hairline separator instead. The
   background is a gradient that starts at pine-deep (matching the
   procedures ending) and transitions to a warmer/lighter pine
   (#15534b) by the bottom — that's also the bottom wave's background
   color so the wave bleeds seamlessly into the next cream section.
   Grid is mirrored vs procedures: image on the left, text on the right.
   Bullets use small circular icon tiles instead of inline SVGs. */

.svc-detail-methodology{
  position:relative;
  overflow:hidden;
  background:linear-gradient(180deg, var(--pine-deep) 0%, #10443e 32%, #15534b 100%);
  padding:0 0 78px;
  color:#fff;
}

/* Soft sage glow in the top-left. */
.svc-detail-methodology::before{
  content:"";
  position:absolute;
  top:40px;left:-170px;
  width:480px;height:480px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(94,155,148,.2), transparent 70%);
  pointer-events:none;
}

.svc-detail-methodology .wrap{position:relative;z-index:1}

/* Hairline separator dividing procedures and methodology while both
   sit on the same dark band. */
.svc-detail-methodology-sep{
  height:1px;
  background:rgba(255,255,255,.09);
  margin:8px 0 64px;
}

/* Mirrored grid — image first (left), text second (right). */
.svc-detail-methodology .band-grid{
  display:grid;
  grid-template-columns:1.15fr 1fr;
  gap:56px;
  align-items:center;
}

/* --- Text column overrides for the dark gradient bg --- */
.svc-detail-methodology .band-grid h2{
  color:#fff;
  font-family:"Fraunces",serif;
  font-size:clamp(1.9rem, 3.2vw, 2.5rem);
  font-weight:300;
  margin:16px 0 14px;
  line-height:1.16;
  letter-spacing:-.015em;
}
.svc-detail-methodology .band-grid h2 em{
  color:var(--sage-300);
  font-weight:400;
  font-style:normal;
}
.svc-detail-methodology .band-grid > div > p{
  color:#bcd7d1;
  font-size:1.01rem;
  line-height:1.65;
  max-width:34em;
  margin:0 0 22px;
}

/* --- Bullet list with circular icon tiles --- */
.svc-detail-methodology .band-points{
  list-style:none;
  display:grid;
  gap:13px;
  margin:0;
  padding:0;
}
.svc-detail-methodology .band-points li{
  display:flex;
  align-items:flex-start;
  gap:13px;
  color:#dcebe7;
  font-family:"Hanken Grotesk",sans-serif;
  font-weight:500;
  font-size:.95rem;
  line-height:1.48;
  margin:0;
}

/* Override the global .band-points li svg sage-300 inline icon — the
   SVG is now wrapped in .band-pic and inherits color via currentColor. */
.svc-detail-methodology .band-points li > svg{display:none}

.svc-detail-methodology .band-pic{
  width:34px;height:34px;
  border-radius:50%;
  flex:none;
  margin-top:-2px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.13);
  color:var(--sage-300);
  display:flex;
  align-items:center;
  justify-content:center;
}
.svc-detail-methodology .band-pic svg{
  width:16px;height:16px;
  color:inherit;
}

/* --- Image column (visual composition: main + inset + badge) --- */
.svc-detail-methodology .band-visual{
  position:relative;
  isolation:isolate;
}

.svc-detail-methodology .band-img{
  position:relative;
  z-index:1;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 46px 92px -46px rgba(10,42,39,.52);
  outline:1px solid rgba(255,255,255,.1);
  outline-offset:-1px;
}
.svc-detail-methodology .band-img img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  display:block;
}

.svc-detail-methodology .band-inset{
  position:absolute;
  top:-26px;right:-30px;
  width:46%;
  z-index:2;
  border-radius:16px;
  overflow:hidden;
  box-shadow:var(--sh-md);
  border:5px solid var(--pine-deep);
  background:var(--pine-deep);
}
.svc-detail-methodology .band-inset img{
  width:100%;
  aspect-ratio:16/11;
  object-fit:cover;
  display:block;
}

.svc-detail-methodology .band-badge{
  position:absolute;
  bottom:-16px;left:20px;
  z-index:3;
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:100px;
  padding:9px 18px 9px 14px;
  display:inline-flex;align-items:center;gap:9px;
  font-family:"Hanken Grotesk",sans-serif;
  font-size:.78rem;font-weight:700;color:var(--pine);
  letter-spacing:.04em;
  box-shadow:var(--sh-md);
}
.svc-detail-methodology .band-badge-dot{
  width:8px;height:8px;border-radius:50%;
  background:var(--sage);
  box-shadow:0 0 0 4px rgba(94,155,148,.25);
}

/* --- Responsive --- */
@media(max-width:980px){
  .svc-detail-methodology{padding:0 0 64px}
  .svc-detail-methodology .band-grid{
    grid-template-columns:1fr;
    gap:52px;
  }
  /* On mobile, restore natural order: text on top, image below. */
  .svc-detail-methodology .band-visual{order:2}
  .svc-detail-methodology .band-grid > div:not(.band-visual){order:1}

  .svc-detail-methodology-sep{margin:8px 0 52px}

  .svc-detail-methodology .band-inset{top:-18px;right:-12px;width:38%;border-width:4px}
  .svc-detail-methodology .band-badge{bottom:-12px;left:12px;font-size:.7rem;padding:7px 14px 7px 11px}
}
@media(max-width:680px){
  .svc-detail-methodology{padding:0 0 56px}
  .svc-detail-methodology .band-visual{margin-bottom:22px}
  .svc-detail-methodology .band-inset{top:-14px;right:0;width:46%;border-width:3px}
  .svc-detail-methodology .band-badge{bottom:-10px;left:8px;font-size:.66rem}
}
