/* ARCADIAN — Paketi, Usklađenost, pravne stranice */

/* ============ PLANS (bez cijena) ============ */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.plan {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px 28px; display: flex; flex-direction: column; position: relative;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), border-color .2s;
}
.plan:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.plan--featured { border-color: color-mix(in srgb, var(--gold) 55%, var(--line)); box-shadow: var(--shadow-md); }
.plan--featured::before {
  content: "Najčešći izbor"; position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase;
  background: var(--gold); color: var(--navy); border-radius: 100px; padding: 4px 13px; font-weight: 700; white-space: nowrap;
}
.plan__name { font-family: var(--font-display); font-weight: 800; font-size: 24px; color: var(--navy); letter-spacing: -.01em; }
.plan__for { font-size: 13.5px; color: var(--ink-3); margin-top: 6px; min-height: 2.6em; }
.plan__divider { height: 1px; background: var(--line); margin: 22px 0; }
.plan__list { list-style: none; padding: 0; margin: 0 0 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.plan__list li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; color: var(--ink); line-height: 1.45; }
.plan__check { width: 19px; height: 19px; flex: none; border-radius: 50%; background: color-mix(in srgb, var(--gold) 18%, transparent); display: grid; place-items: center; margin-top: 1px; }
.plan__check svg { width: 11px; height: 11px; color: var(--gold-deep); }
.plan__prev { font-size: 13.5px; color: var(--ink-3); font-style: italic; }
.plan__btn { margin-top: auto; }
@media (max-width: 900px) { .plans { grid-template-columns: 1fr; } }

/* pricing logic block */
.howprice { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,4vw,56px); align-items: center; }
.howprice__points { display: flex; flex-direction: column; gap: 2px; }
.howprice__row { display: flex; gap: 13px; padding: 15px 0; border-top: 1px solid var(--line); align-items: flex-start; }
.howprice__row:first-child { border-top: 0; }
.howprice__row .n { font-family: var(--font-mono); font-size: 12px; color: var(--gold-deep); flex: none; margin-top: 2px; }
@media (max-width: 760px) { .howprice { grid-template-columns: 1fr; } }

/* addons */
.addons { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.addon { display: flex; gap: 13px; align-items: flex-start; padding: 18px 20px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); }
.addon__ic { flex: none; color: var(--gold-deep); margin-top: 1px; }
.addon h4 { font-size: 16px; font-stretch: 103%; margin-bottom: 3px; }
.addon p { font-size: 13.5px; color: var(--ink-2); }
@media (max-width: 700px) { .addons { grid-template-columns: 1fr; } }

/* ============ FAQ ============ */
.eunote { display: flex; gap: 16px; align-items: flex-start; border: 1px solid color-mix(in srgb, var(--gold) 32%, var(--line)); background: color-mix(in srgb, var(--gold) 5%, var(--card)); border-radius: var(--radius-lg); padding: clamp(20px,2.6vw,28px) clamp(22px,3vw,32px); }
.eunote__ic { width: 38px; height: 38px; flex: none; display: grid; place-items: center; border-radius: 10px; background: color-mix(in srgb, var(--gold) 14%, transparent); }
.eunote p { font-size: 16px; color: var(--ink-2); line-height: 1.65; margin: 0; max-width: 86ch; }
.eunote strong { color: var(--ink); font-weight: 700; }
.faq { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px,3vw,38px); background: var(--card); }
.faq__q { font-family: var(--font-display); font-weight: 800; font-size: clamp(19px,2.2vw,24px); color: var(--ink); letter-spacing: -.01em; margin-bottom: 16px; }
.faq__a p { font-size: clamp(15.5px,1.5vw,17px); color: var(--ink-2); line-height: 1.7; margin-bottom: 12px; max-width: 70ch; }
.faq__a p:last-child { margin-bottom: 0; }

/* ============ PROSE (pravne stranice) ============ */
.prose { max-width: none; }
.prose h2 { font-size: clamp(20px, 2.4vw, 26px); margin: 38px 0 12px; }
.prose h2:first-child { margin-top: 0; }
.prose p { font-size: 16px; color: var(--ink-2); line-height: 1.7; margin-bottom: 14px; }
.prose ul { margin: 0 0 18px; padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 9px; }
.prose ul li { position: relative; padding-left: 22px; font-size: 15.5px; color: var(--ink-2); line-height: 1.55; }
.prose ul li::before { content: ""; position: absolute; left: 3px; top: 9px; width: 7px; height: 7px; border: 1.6px solid var(--gold); transform: rotate(45deg); }
.prose a { color: var(--gold-deep); border-bottom: 1px solid color-mix(in srgb, var(--gold) 40%, transparent); }
.prose__note { font-size: 13.5px; color: var(--ink-3); margin-top: 32px; padding-top: 16px; border-top: 1px solid var(--line); }
.legal-id { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px 26px; margin: 26px 0 8px; }
.legal-id .kv__k { color: var(--gold-deep); }
.legal-id p { font-family: var(--font-mono); font-size: 13.5px; color: var(--ink-2); line-height: 1.7; margin: 0; }
.prose__draft { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-deep); background: color-mix(in srgb, var(--gold) 13%, transparent); border-radius: 100px; padding: 5px 13px; margin-bottom: 26px; }

/* ============ RAZINE HITNOSTI (uvjeti podrške) ============ */
.lvls { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 22px 0 26px; }
.lvl { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px 22px 24px; background: var(--card); display: flex; flex-direction: column; }
.lvl__name { font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--ink); letter-spacing: -.01em; }
.lvl:first-child .lvl__name { color: var(--gold-deep); }
.lvl__tag { font-size: 13px; color: var(--ink-3); margin: 5px 0 14px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.lvl p { font-size: 14.5px; color: var(--ink-2); line-height: 1.6; margin: 0; max-width: none; }
.lvl__time { display: flex; flex-direction: column; gap: 2px; font-family: var(--font-display); font-weight: 800; font-size: 19px; color: var(--ink); letter-spacing: -.01em; margin-bottom: 14px; }
.lvl:first-child .lvl__time { color: var(--gold-deep); }
.lvl__timek { font-family: var(--font-body); font-weight: 500; font-size: 12px; letter-spacing: 0; text-transform: none; color: var(--ink-3); }
@media (max-width: 720px) { .lvls { grid-template-columns: 1fr; } }
