/* ============================================================
   USLUGE V2 — Editorial list style
   ============================================================ */

.hero--usluge-v2 {
  background: #ffffff;
  height: 580px;
}

.hero--usluge-v2 .h1-mont,
.hero--usluge-v2 .h1-dutch,
.hero--usluge-v2 .bh1,
.hero--usluge-v2 .hero__sub { color: #111111; }

.hero--usluge-v2 .nav__link,
.hero--usluge-v2 .nav__brand { color: #111111; }

.hero--usluge-v2 .dropdown-icon { filter: brightness(0); }
.hero--usluge-v2 .nav__link::after { background: #111111; }
.hero--usluge-v2 .hero__heading-mobile-only { display: none; }

/* ══════════════════════════════════════════════════
   ACCORDION SERVICE LIST
   ══════════════════════════════════════════════════ */
.section-usluge-v2 {
  background: #ffffff;
  padding-top: 0;
  padding-bottom: 60px;
}

.usluge-v2__item {
  border-bottom: 1px solid #e0e0e0;
  overflow: hidden;
}

.usluge-v2__item:first-child {
  border-top: 1px solid #e0e0e0;
}

.usluge-v2__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 0;
  cursor: pointer;
  user-select: none;
  gap: 40px;
  width: 100%;
}

.usluge-v2__trigger-left {
  display: flex;
  align-items: center;
  gap: 32px;
}

.usluge-v2__num {
  font-family: var(--font-mont);
  font-size: calc(var(--fs-nav) * 0.9);
  font-weight: var(--fw-medium);
  color: #999999;
  letter-spacing: 0.06em;
  min-width: 28px;
}

.usluge-v2__title {
  font-family: var(--font-mont);
  font-size: var(--fs-h2-mont);
  font-weight: 400;
  letter-spacing: -0.07em;
  color: #111111;
  line-height: 1;
  margin: 0;
  transition: color 0.25s ease;
}

.usluge-v2__title em {
  font-family: var(--font-dutch);
  font-size: var(--fs-h2-dutch);
  font-style: italic;
  letter-spacing: var(--ls-default);
}

.usluge-v2__item:hover .usluge-v2__title,
.usluge-v2__item.is-open .usluge-v2__title { color: #d9ceea; }

.usluge-v2__trigger-right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

.usluge-v2__tags {
  display: flex;
  gap: 8px;
}

.usluge-v2__tag {
  font-family: var(--font-mont);
  font-size: 11px;
  font-weight: var(--fw-medium);
  color: #888888;
  background: #f4f4f4;
  border-radius: 4px;
  padding: 5px 10px;
  white-space: nowrap;
}

.usluge-v2__arrow {
  width: 36px;
  height: 36px;
  border: 1px solid #d0d0d0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.35s ease;
}

.usluge-v2__arrow svg {
  width: 14px;
  height: 14px;
  stroke: #111111;
  transition: stroke 0.25s ease;
}

.usluge-v2__item.is-open .usluge-v2__arrow {
  background: #111111;
  border-color: #111111;
  transform: rotate(45deg);
}

.usluge-v2__item.is-open .usluge-v2__arrow svg { stroke: #ffffff; }

/* ── Expanded content ── */
.usluge-v2__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}

.usluge-v2__item.is-open .usluge-v2__body { max-height: 600px; }

.usluge-v2__content {
  display: grid;
  grid-template-columns: 2fr 0.6fr;
  gap: 60px;
  padding: 0 0 48px 60px;
}

.usluge-v2__desc {
  font-family: var(--font-mont);
  font-size: calc(var(--fs-p) * 0.96);
  font-weight: var(--fw-regular);
  color: #555555;
  line-height: 1.7;
  margin: 0;
}

.usluge-v2__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.usluge-v2__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mont);
  font-size: calc(var(--fs-nav) * 0.96);
  font-weight: var(--fw-regular);
  color: #333333;
}

.usluge-v2__feature::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d9ceea;
  flex-shrink: 0;
}

.usluge-v2__feature-cta {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mont);
  font-size: var(--fs-nav);
  font-weight: var(--fw-semibold);
  color: #111111;
  letter-spacing: var(--ls-default);
  text-decoration: none;
  position: relative;
}

.usluge-v2__feature-cta::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #111111;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.usluge-v2__feature-cta:hover::after {
  transform: scaleX(0);
  transform-origin: right;
}

.usluge-v2__feature-cta svg {
  width: 14px;
  height: 14px;
}

/* ══════════════════════════════════════════════════
   STATS STRIP
   ══════════════════════════════════════════════════ */
.section-stats {
  background: #111111;
  padding: 70px 0;
}

.stats__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stats__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 40px;
  border-right: 1px solid rgba(255,255,255,0.12);
}

.stats__item:first-child { padding-left: 0; }
.stats__item:last-child { border-right: none; }

.stats__num {
  font-family: var(--font-dutch);
  font-size: 60px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: #ffffff;
  line-height: 1;
}

.stats__label {
  font-family: var(--font-mont);
  font-size: calc(var(--fs-nav) * 0.96);
  font-weight: var(--fw-regular);
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}

/* ── Toggle — FAQ style, no bg, rotates 45deg on open ── */
.usluge-v2__toggle {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mont);
  font-size: 22px;
  font-weight: 300;
  color: #111111;
  line-height: 1;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.usluge-v2__item.is-open .usluge-v2__toggle {
  transform: rotate(45deg);
}

/* Remove old arrow styles */
.usluge-v2__arrow { display: none; }


/* ══════════════════════════════════════════════════
   CTA STATS BOXES — usluge-v2 only
   ══════════════════════════════════════════════════ */
.cta__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  width: 1372px;
  margin: -20px auto 50px;
}

.cta__stat-box {
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 12px;
  padding: 20px 24px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 16px;
  background: transparent;
}

.cta__stat-num {
  font-family: var(--font-dutch);
  font-size: 42px;
  font-style: italic;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
}

.cta__stat-label {
  font-family: var(--font-mont);
  font-size: calc(var(--fs-nav) * 0.92);
  font-weight: var(--fw-regular);
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
  letter-spacing: var(--ls-default);
}


/* ── SCROLL ANIMATIONS ── */
.section-usluge-v2.will-animate {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}
.section-usluge-v2.anim-visible {
  opacity: 1;
  transform: translateY(0);
}
