:root {
  --ink: #292558;
  --purple: #3d2fa8;
  --teal: #18c2bd;
  --coral: #ff665d;
  --paper: #fffaf5;
  --muted: #68657d;
  --line: rgba(61, 47, 168, .12);
  --shadow: 0 24px 70px rgba(55, 37, 96, .12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
  background: #fff9f3 url("pozadina.png") center top / cover fixed no-repeat;
}

a { color: var(--purple); }

.shell { width: min(1120px, calc(100% - 36px)); margin-inline: auto; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255,255,255,.75);
  background: rgba(255, 250, 245, .82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); text-decoration: none; font-size: 22px; font-weight: 850; letter-spacing: -.04em; }
.brand img { width: 48px; height: 48px; object-fit: contain; }
.links { display: flex; align-items: center; gap: 8px; }
.links a { padding: 10px 14px; border-radius: 999px; color: var(--ink); text-decoration: none; font-size: 14px; font-weight: 700; }
.links a:hover, .links a.active { color: var(--purple); background: rgba(61, 47, 168, .08); }

.hero { padding: 86px 0 42px; text-align: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 8px 13px; border-radius: 999px; color: var(--purple); background: rgba(255,255,255,.8); border: 1px solid var(--line); font-size: 13px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
h1 { max-width: 900px; margin: 20px auto 18px; font-size: clamp(42px, 7vw, 76px); line-height: 1.03; letter-spacing: -.055em; }
.hero p { max-width: 700px; margin: 0 auto; color: var(--muted); font-size: clamp(17px, 2vw, 20px); }
.accent { color: var(--coral); }

.card { margin: 36px auto 90px; padding: clamp(26px, 5vw, 58px); border: 1px solid rgba(255,255,255,.9); border-radius: 32px; background: rgba(255,255,255,.86); box-shadow: var(--shadow); backdrop-filter: blur(12px); }
.content { max-width: 860px; }
.content h2 { margin: 42px 0 12px; font-size: clamp(24px, 3vw, 32px); line-height: 1.2; letter-spacing: -.035em; }
.content h2:first-child { margin-top: 0; }
.content h3 { margin: 26px 0 8px; font-size: 19px; }
.content p, .content li { color: #555269; }
.content ul { padding-left: 22px; }
.content li + li { margin-top: 7px; }
.meta { margin-bottom: 30px; padding: 15px 18px; border-radius: 16px; background: rgba(24,194,189,.09); color: #276e70; font-size: 14px; }

.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 30px; }
.feature { padding: 26px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.72); }
.feature .icon { width: 44px; height: 44px; display: grid; place-items: center; margin-bottom: 18px; border-radius: 14px; background: rgba(24,194,189,.12); font-size: 22px; }
.feature:nth-child(2n) .icon { background: rgba(255,102,93,.12); }
.feature:nth-child(3n) .icon { background: rgba(61,47,168,.10); }
.feature h3 { margin: 0 0 8px; font-size: 19px; }
.feature p { margin: 0; color: var(--muted); font-size: 15px; }

.actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 30px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 22px; border-radius: 15px; color: #fff; background: var(--purple); text-decoration: none; font-weight: 800; box-shadow: 0 12px 25px rgba(61,47,168,.18); }
.button.alt { color: var(--ink); background: rgba(255,255,255,.8); border: 1px solid var(--line); box-shadow: none; }
.contact-box { margin-top: 28px; padding: 28px; border-radius: 22px; background: linear-gradient(135deg, var(--purple), #5545c9); color: #fff; }
.contact-box h2, .contact-box p { color: #fff; margin-top: 0; }
.contact-box a { color: #fff; font-weight: 800; }
.faq { border-top: 1px solid var(--line); }
details { padding: 18px 0; border-bottom: 1px solid var(--line); }
summary { cursor: pointer; font-weight: 800; }
details p { margin: 10px 0 0; }

.steps { counter-reset: step; list-style: none; padding: 0 !important; }
.steps li { position: relative; min-height: 48px; padding-left: 58px; }
.steps li::before { counter-increment: step; content: counter(step); position: absolute; left: 0; top: 0; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; color: #fff; background: var(--coral); font-weight: 900; }

footer { padding: 30px 0 42px; border-top: 1px solid var(--line); background: rgba(255,250,245,.62); }
.footer-inner { display: flex; justify-content: space-between; gap: 24px; color: var(--muted); font-size: 14px; }
.footer-inner p { margin: 0; }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-links a { color: var(--muted); text-decoration: none; }

@media (max-width: 760px) {
  body { background-attachment: scroll; }
  .nav { min-height: 72px; }
  .brand img { width: 42px; height: 42px; }
  .links { gap: 2px; }
  .links a { padding: 8px; font-size: 12px; }
  .links a:first-child { display: none; }
  .hero { padding-top: 60px; }
  .grid { grid-template-columns: 1fr; }
  .card { border-radius: 24px; margin-bottom: 55px; }
  .footer-inner { flex-direction: column; }
}

