/* ============================================================
   CIJENE PAGE
   ============================================================ */

/* ── HERO ── */
.hero--cijene {
  background: #f5f5f5;
}

/* ══════════════════════════════════════════════════
   PRICING TOGGLE
   ══════════════════════════════════════════════════ */
.section-pricing {
  background: #ffffff;
  padding-top: 80px;
  padding-bottom: 120px;
}

.pricing__toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 60px;
}

.pricing__toggle-label {
  font-family: var(--font-mont);
  font-size: var(--fs-nav);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-default);
  color: #111111;
}

.pricing__toggle-label--dim { color: #999999; }

.pricing__switch {
  width: 46px;
  height: 26px;
  background: #111111;
  border-radius: 999px;
  position: relative;
  cursor: pointer;
  border: none;
  transition: background 0.25s ease;
}

.pricing__switch::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: #ffffff;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform 0.25s ease;
}

.pricing__switch.is-annual::after { transform: translateX(20px); }

.pricing__badge {
  font-family: var(--font-mont);
  font-size: 11px;
  font-weight: var(--fw-medium);
  color: #ffffff;
  background: #d9ceea;
  border-radius: 999px;
  padding: 4px 10px;
}

/* ── CARDS ROW ── */
.pricing__cards {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: stretch;
}

.pricing__card {
  flex: 1;
  max-width: 380px;
  border-radius: 12px;
  padding: 36px 32px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  border: 1px solid #e0e0e0;
  background: #ffffff;
  position: relative;
}

.pricing__card--featured {
  background: #111111;
  border-color: #111111;
}

.pricing__card--featured * { color: #ffffff !important; }
.pricing__card--featured .pricing__divider { background: rgba(255,255,255,0.15); }
.pricing__card--featured .pricing__feature { border-bottom-color: rgba(255,255,255,0.1); }

.pricing__card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mont);
  font-size: 11px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  background: #d9ceea;
  border-radius: 999px;
  padding: 5px 14px;
  white-space: nowrap;
}

.pricing__plan {
  font-family: var(--font-mont);
  font-size: calc(var(--fs-nav) * 1.1);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #d9ceea;
  margin-bottom: 12px;
}

.pricing__desc {
  font-family: var(--font-mont);
  font-size: calc(var(--fs-nav) * 0.96);
  font-weight: var(--fw-regular);
  color: #666666;
  line-height: 1.5;
  margin-bottom: 28px;
}

.pricing__price-wrap {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin-bottom: 8px;
}

.pricing__currency {
  font-family: var(--font-mont);
  font-size: 18px;
  font-weight: var(--fw-medium);
  color: #111111;
  padding-bottom: 6px;
}

.pricing__amount {
  font-family: var(--font-mont);
  font-size: 52px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: #111111;
  line-height: 1;
}

.pricing__period {
  font-family: var(--font-mont);
  font-size: calc(var(--fs-nav) * 0.9);
  color: #999999;
  padding-bottom: 8px;
}

.pricing__annual-note {
  font-family: var(--font-mont);
  font-size: calc(var(--fs-nav) * 0.88);
  color: #999999;
  margin-bottom: 28px;
}

.pricing__divider {
  width: 100%;
  height: 1px;
  background: #eeeeee;
  margin-bottom: 28px;
}

/* ── CTA BUTTON ── */
.pricing__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mont);
  font-size: var(--fs-nav);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-default);
  color: #ffffff;
  background: #111111;
  border: none;
  border-radius: 6px;
  padding: 13px 24px;
  cursor: pointer;
  overflow: hidden;
  line-height: 1.2;
  text-decoration: none;
  margin-bottom: 28px;
  transition: background 0.25s ease;
}

.pricing__card--featured .pricing__cta {
  background: #ffffff;
  color: #111111;
}

.pricing__cta:hover { background: #333333; }
.pricing__card--featured .pricing__cta:hover { background: #eeeeee; }

.pricing__cta .btn-track { position: relative; display: block; height: 1.2em; overflow: hidden; }
.pricing__cta .btn-track__inner { display: block; transition: transform 0.4s cubic-bezier(0.7,0,0.2,1); }
.pricing__cta .btn-track__inner > span { display: block; height: 1.2em; line-height: 1.2; }
.pricing__cta:hover .btn-track__inner { transform: translateY(-1.2em); }

/* ── FEATURES LIST ── */
.pricing__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pricing__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid #f0f0f0;
  font-family: var(--font-mont);
  font-size: calc(var(--fs-nav) * 0.96);
  font-weight: var(--fw-regular);
  color: #333333;
  line-height: 1.4;
}

.pricing__feature:last-child { border-bottom: none; }

.pricing__check {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 1px;
}

/* ══════════════════════════════════════════════════
   COMPARE TABLE
   ══════════════════════════════════════════════════ */
.section-compare {
  background: #f6f6f6;
  padding-top: 90px;
  padding-bottom: 90px;
}

.compare__heading {
  margin: 0 0 50px 0;
  font-weight: 400;
  text-align: center;
}

.compare__heading .h2-mont {
  font-family: var(--font-mont);
  font-size: var(--fs-h2-mont);
  font-weight: 400;
  letter-spacing: -0.07em;
  color: #111111;
}

.compare__heading .h2-dutch {
  font-family: var(--font-dutch);
  font-size: var(--fs-h2-dutch);
  font-style: italic;
  letter-spacing: var(--ls-default);
  color: #111111;
}

.compare__table {
  width: 100%;
  border-collapse: collapse;
}

.compare__table th {
  font-family: var(--font-mont);
  font-size: var(--fs-nav);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-default);
  color: #111111;
  padding: 16px 20px;
  text-align: left;
  border-bottom: 2px solid #dddddd;
}

.compare__table th:not(:first-child) { text-align: center; }

.compare__table td {
  font-family: var(--font-mont);
  font-size: calc(var(--fs-nav) * 0.96);
  font-weight: var(--fw-regular);
  color: #444444;
  padding: 14px 20px;
  border-bottom: 1px solid #e8e8e8;
}

.compare__table td:not(:first-child) { text-align: center; }

.compare__table tr:last-child td { border-bottom: none; }

.compare__table tbody tr:hover td { background: rgba(0,0,0,0.02); }

.compare__check { color: #111111; font-size: 16px; }
.compare__dash  { color: #cccccc; font-size: 16px; }

/* ══════════════════════════════════════════════════
   CUSTOM PRICING CTA
   ══════════════════════════════════════════════════ */
.section-custom {
  background: #ffffff;
  padding-top: 90px;
  padding-bottom: 90px;
}

.custom__box {
  background: #111111;
  border-radius: 12px;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1372px;
  margin: 0 auto;
  box-sizing: border-box;
}

.custom__text h2 {
  font-family: var(--font-mont);
  font-size: var(--fs-h2-mont);
  font-weight: 400;
  letter-spacing: -0.07em;
  color: #ffffff;
  margin: 0 0 16px 0;
}

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

.custom__text p {
  font-family: var(--font-mont);
  font-size: calc(var(--fs-p) * 0.96);
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  max-width: 500px;
  margin: 0;
}

.custom__btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mont);
  font-size: var(--fs-nav);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-default);
  color: #111111;
  background: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 14px 30px;
  cursor: pointer;
  overflow: hidden;
  line-height: 1.2;
  text-decoration: none;
}

.custom__btn .btn-track { position: relative; display: block; height: 1.2em; overflow: hidden; }
.custom__btn .btn-track__inner { display: block; transition: transform 0.4s cubic-bezier(0.7,0,0.2,1); }
.custom__btn .btn-track__inner > span { display: block; height: 1.2em; line-height: 1.2; }
.custom__btn:hover .btn-track__inner { transform: translateY(-1.2em); }

/* ── Hero text black ── */
.hero--cijene .h1-mont,
.hero--cijene .h1-dutch,
.hero--cijene .bh1,
.hero--cijene .hero__sub {
  color: #111111;
}

/* ── Hero height ── */
.hero--cijene {
  height: 600px;
}

/* ── Nav black text on white bg ── */
.hero--cijene .nav__link,
.hero--cijene .nav__brand {
  color: #111111;
}

.hero--cijene .nav__link::after {
  background: #111111;
}

.hero--cijene .nav__cta {
  background: #d9ceea;
  color: #111111;
}

/* ── Dropdown icons black ── */
.hero--cijene .dropdown-icon {
  filter: brightness(0);
}

/* Growth CTA dark text */
.pricing__cta--dark {
  color: #111111 !important;
}

/* ══════════════════════════════════════════════════
   PRICE TYPE SELECTOR
   ══════════════════════════════════════════════════ */
.section-pricetype {
  background: #f5f5f5;
  padding-top: 80px;
  padding-bottom: 60px;
}

.pricetype__boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  width: 1372px;
  margin: 0 auto;
}

.pricetype__box {
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #e0e0e0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-sizing: border-box;
  background: #ffffff;
}

.pricetype__cta-wrap {
  margin-top: auto;
  padding-top: 24px;
}

.pricetype__box--dark {
  background: #111111;
  border-color: #111111;
}

.pricetype__label {
  font-family: var(--font-mont);
  font-size: calc(var(--fs-nav) * 0.96);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #d9ceea;
}

.pricetype__box--dark .pricetype__label { color: rgba(255,255,255,0.5); }

.pricetype__title {
  font-family: var(--font-mont);
  font-size: calc(var(--fs-h2-mont) * 0.7191);
  font-weight: 600;
  letter-spacing: -0.07em;
  color: #111111;
  margin: 0;
  line-height: 1.1;
}

.pricetype__box--dark .pricetype__title { color: #ffffff; }

.pricetype__from {
  font-family: var(--font-mont);
  font-size: calc(var(--fs-nav) * 1.05);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-default);
  color: #d9ceea;
  margin-bottom: 16px;
}

.pricetype__box--dark .pricetype__from { color: rgba(255,255,255,0.6); }

.pricetype__desc {
  font-family: var(--font-mont);
  font-size: calc(var(--fs-p) * 0.816);
  font-weight: var(--fw-regular);
  color: #666666;
  line-height: 1.6;
  margin: 0;
}

.pricetype__box--dark .pricetype__desc { color: rgba(255,255,255,0.65); }

.pricetype__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mont);
  font-size: var(--fs-nav);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-default);
  color: #111111;
  background: #d9ceea;
  border: none;
  border-radius: 6px;
  padding: 12px 24px;
  cursor: pointer;
  overflow: hidden;
  line-height: 1.2;
  text-decoration: none;
  width: 100%;
  box-sizing: border-box;
}

.pricetype__box--dark .pricetype__cta {
  background: #d9ceea;
  color: #111111;
}

.pricetype__cta .btn-track { position: relative; display: block; height: 1.2em; overflow: hidden; }
.pricetype__cta .btn-track__inner { display: block; transition: transform 0.4s cubic-bezier(0.7,0,0.2,1); }
.pricetype__cta .btn-track__inner > span { display: block; height: 1.2em; line-height: 1.2; }
.pricetype__cta:hover .btn-track__inner { transform: translateY(-1.2em); }

/* ── Checkmark list ── */
.pricetype__checks {
  list-style: none;
  padding: 0;
  margin: 8px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricetype__check-item {
  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;
  line-height: 1.4;
}

.pricetype__box--dark .pricetype__check-item { color: rgba(255,255,255,0.85); }

.pricetype__tick {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ── Info icon + tooltip ── */
.pricetype__info-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 4px;
}

.pricetype__info-icon {
  width: 15px;
  height: 15px;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.pricetype__info-icon:hover { opacity: 1; }

.pricetype__tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #111111;
  color: #ffffff;
  font-family: var(--font-mont);
  font-size: 12px;
  font-weight: var(--fw-regular);
  line-height: 1.5;
  padding: 10px 14px;
  border-radius: 8px;
  width: 240px;
  white-space: normal;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 100;
}

.pricetype__tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #111111;
}

.pricetype__info-wrap:hover .pricetype__tooltip { opacity: 1; }

/* ── Right box dark — white checks + info ── */
.pricetype__box--dark .pricetype__tick {
  filter: brightness(0) invert(1);
}

.pricetype__box--dark .pricetype__info-icon {
  filter: brightness(0) invert(1);
}

.pricetype__box--dark .pricetype__tooltip {
  background: #ffffff;
  color: #111111;
}

.pricetype__box--dark .pricetype__tooltip::after {
  border-top-color: #ffffff;
}

.pricetype__cta .btn-track {
  position: relative;
  display: block;
  height: 1.2em;
  overflow: hidden;
}

.pricetype__cta .btn-track__inner {
  display: block;
  transition: transform 0.4s cubic-bezier(0.7, 0, 0.2, 1);
}

.pricetype__cta .btn-track__inner > span {
  display: block;
  height: 1.2em;
  line-height: 1.2;
}

.pricetype__cta:hover .btn-track__inner {
  transform: translateY(-1.2em);
}

/* ── Third full-width box ── */
.pricetype__box--wide {
  grid-column: 1 / -1;
  flex-direction: column;
  background: transparent;
  padding: 28px 32px;
}

.pricetype__wide-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
}



/* ── Social box expand ── */.pricetype__wide-left {
  flex: 1;
  min-width: 0;
}

.pricetype__wide-left .pricetype__title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pricetype__wide-right {
  flex-shrink: 0;
}

.pricetype__expand {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  width: 100%;
}

.pricetype__expand.is-open {
  max-height: 800px;
}

.pricetype__tiers {
  display: grid;
  grid-template-columns: repeat(3, 380px);
  gap: 14px;
  padding-top: 28px;
  justify-content: center;
}

.pricetype__tier {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  background: #ffffff;
}

.pricetype__tier--featured {
  background: #111111;
  border-color: #111111;
}

.pricetype__tier--featured .pricetype__plan { color: rgba(255,255,255,0.6); }
.pricetype__tier--featured .pricing__amount,
.pricetype__tier--featured .pricing__currency,
.pricetype__tier--featured .pricing__period { color: #ffffff; }
.pricetype__tier--featured .pricing__feature { color: #ffffff; border-bottom-color: rgba(255,255,255,0.1); }

.pricetype__tier-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 20px;
}

.pricetype__toggle-btn {
  background: #d9ceea;
  color: #111111;
}

/* ── Social compare table — Growth column dark ── */
.compare__table--social th.compare__th--dark {
  background: #111111;
  color: #ffffff;
}

.compare__table--social td.compare__td--dark {
  background: #111111;
  color: #ffffff;
}

.section-benefiti { background: #f5f5f5; }

.pricetype__box--wide { width: 1372px; margin: 0 auto; }

/* Box 5 light override */
.bn-box--light {
  background: #eeeeee !important;
}

.bn-box--light .bn-box__header,
.bn-box--light .bn-box__header span {
  color: #111111 !important;
}

.bn-box--light .bn-box__pre,
.bn-box--light .bn-box__post,
.bn-box--light .bn-box__cta {
  color: #111111 !important;
}

.bn-box--light .bn-box__cta {
  background: #111111 !important;
  color: #ffffff !important;
}

/* Remove top padding from testimonials on cijene page */
.section-tests {
  padding-top: 0;
}

.section-faq { padding-top: 0; }

.section-tests { padding-top: 50px; }
.section-faq { padding-top: 80px; }
