/* PelviCore Institut Zagreb — landing v1
   Brand palette (sampled from gallery):
     --blue      #1E3AAE (deep cobalt — sofa in the clinic, MShape LED accent)
     --blue-dk   #16297F (hover)
     --blue-soft #EEF0FB (page tints)
     --sand      #F5EFE4 (warm cream walls, warms the clinical blue)
     --sand-2    #E8DDC9
     --cta       #C15A56 (warm terracotta rose — kontrast na plavu, ženstveno)
     --ink       #0B1230 (deep navy — u plavoj obitelji, ne crno)
   Font: Fraunces (display) + Inter (body/UI) — full HR diacritic coverage inc. đ.
   Mobile-first. Every mobile override lives inside @media. */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --blue: #1E3AAE;
  --blue-dk: #16297F;
  --blue-soft: #EEF0FB;
  --blue-line: #D8DEF3;
  --sand: #F5EFE4;
  --sand-2: #E8DDC9;
  --cta: #C15A56;
  --cta-dk: #A34844;
  --cta-soft: #F7E7E4;
  --ink: #0B1230;
  --ink-soft: #4A5169;
  --muted: #8890A6;
  --bg: #ffffff;
  --line: #E5E1D6;
  --gold: #C89A4A;

  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1160px;
  --shadow: 0 34px 60px -30px rgba(30, 58, 174, .28);
  --shadow-sm: 0 8px 22px -12px rgba(30, 58, 174, .18);

  --serif: "Fraunces", ui-serif, Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  font-weight: 500;
  overflow-x: clip;
}
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.015em;
  color: var(--ink);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* ===== Topbar ===== */
.topbar {
  background: #fff;
  border-bottom: 1px solid var(--blue-line);
  position: sticky; top: 0; z-index: 50;
}
.topbar .wrap {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  min-height: 66px; padding-top: 8px; padding-bottom: 8px;
}
/* Text wordmark stands in until the client logo file lands.
   .brand is sized so a logo <img> can drop in without a re-layout. */
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  min-height: 44px; padding: 4px 0; white-space: nowrap;
  color: var(--blue);
}
.brand .brand-mark {
  font-family: var(--serif); font-weight: 700; font-size: 1.4rem;
  letter-spacing: -.015em; line-height: 1; color: var(--blue);
  display: inline-flex; align-items: center; gap: 8px;
}
.brand .brand-mark::before {
  content: ""; width: 12px; height: 12px; border-radius: 3px;
  background: var(--blue); display: inline-block;
}
.brand .brand-sub {
  display: inline-block; padding-left: 10px; margin-left: 10px;
  border-left: 1px solid var(--blue-line);
  font-family: var(--sans); font-weight: 600; font-size: .72rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft);
}
.topbar-ctas { display: flex; align-items: center; gap: 10px; }
.tel {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-weight: 700; color: #fff; background: var(--blue);
  padding: 12px 18px; border-radius: 999px;
  font-size: 13px; line-height: 1; letter-spacing: .05em;
  transition: background .15s, transform .1s;
  min-height: 44px; text-transform: uppercase; white-space: nowrap;
}
.tel:hover { background: var(--blue-dk); transform: translateY(-1px); }
.tel svg { width: 16px; height: 16px; flex-shrink: 0; }
.tel-alt {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-weight: 700; color: var(--blue);
  background: transparent; border: 1.5px solid var(--blue);
  padding: 10px 16px; border-radius: 999px; font-size: .82rem; line-height: 1;
  transition: background .15s, color .15s, transform .1s;
  min-height: 44px; white-space: nowrap;
}
.tel-alt:hover { background: var(--blue-soft); }
.tel-alt svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ===== Hero ===== */
.hero {
  background: linear-gradient(180deg, var(--sand) 0%, #ffffff 90%);
  padding: 56px 0 76px;
}
.hero .wrap {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 52px; align-items: start;
}
.hero-copy { padding-top: 6px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-weight: 700;
  font-size: 13px; letter-spacing: .15em; text-transform: uppercase; color: var(--blue);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--blue); }
.hero h1 {
  font-family: var(--serif); font-size: clamp(2rem, 4.6vw, 3.2rem);
  font-weight: 600; margin: 16px 0 18px; text-wrap: balance; line-height: 1.08;
  color: var(--ink);
}
.hero h1 em { font-style: italic; color: var(--blue); font-weight: 600; }
.hero .lede {
  font-size: 1.08rem; color: var(--ink-soft); max-width: 46ch; margin-bottom: 24px;
  text-wrap: pretty; font-weight: 500; line-height: 1.62;
}
.value-bullets {
  list-style: none; display: grid; gap: 10px; margin: 0 0 26px;
}
.value-bullets li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: .96rem; color: var(--ink); font-weight: 500; line-height: 1.5;
}
.value-bullets li::before {
  content: ""; min-width: 22px; height: 22px; border-radius: 50%;
  background-color: var(--blue-soft); flex-shrink: 0; margin-top: 2px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 9' fill='none'><path d='M1 4.5 4.2 7.6 10 1.4' stroke='%231E3AAE' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-position: center; background-repeat: no-repeat; background-size: 11px 9px;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--cta); color: #fff; padding: 16px 28px; border-radius: 12px;
  font-family: var(--sans); font-weight: 800; font-size: .95rem; letter-spacing: .06em;
  text-transform: uppercase; box-shadow: 0 12px 26px -12px rgba(193, 90, 86, .55);
  transition: background .15s, transform .1s;
}
.hero-cta:hover { background: var(--cta-dk); transform: translateY(-1px); }
.hero-friction { color: var(--muted); font-size: .88rem; margin-top: 12px; font-weight: 500; }
.hero-friction b { color: var(--ink); font-weight: 700; }
.hero-microproof {
  margin-top: 22px; font-size: .82rem; color: var(--ink-soft); font-weight: 500;
  display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
}
.hero-microproof span { display: inline-flex; align-items: center; gap: 6px; }
.hero-microproof span::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--blue);
}

/* ===== Form card (multi-step) ===== */
.form-card {
  background: #fff; border: 1px solid var(--blue-line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); overflow: hidden; position: relative;
}
.form-head {
  background: var(--blue); color: #fff; padding: 22px 26px 20px;
}
.form-head .kicker {
  font-family: var(--sans); font-weight: 700; font-size: .68rem; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,.75); margin-bottom: 6px;
}
.form-head h2 {
  font-family: var(--serif); font-size: 1.35rem; font-weight: 600;
  color: #fff; line-height: 1.2; letter-spacing: -.01em;
}
.form-head .sub {
  color: rgba(255,255,255,.82); font-size: .9rem; margin-top: 4px; font-weight: 500;
}
.progress {
  height: 4px; background: rgba(255,255,255,.15); position: relative; overflow: hidden;
}
.progress .bar {
  position: absolute; inset: 0 auto 0 0; width: 25%; background: var(--sand); transition: width .4s ease;
}
.form-body { padding: 22px 26px 26px; }

.step { display: none; }
.step.active { display: block; animation: stepIn .28s ease; }
@keyframes stepIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}
.step-q {
  font-family: var(--serif); font-size: 1.15rem; font-weight: 600; color: var(--ink);
  line-height: 1.3; letter-spacing: -.01em; margin-bottom: 14px; text-wrap: balance;
}
/* Auto-advance choice buttons (one question per screen) */
.choices { display: grid; gap: 10px; }
.choices .choice {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: #fff; border: 1.5px solid var(--blue-line); color: var(--ink);
  padding: 14px 16px; border-radius: 12px;
  font: inherit; font-weight: 600; font-size: .95rem; text-align: left;
  cursor: pointer; transition: border-color .15s, background .15s, transform .05s;
  width: 100%; min-height: 52px; line-height: 1.35;
}
.choices .choice:hover { border-color: var(--blue); background: var(--blue-soft); }
.choices .choice:active { transform: scale(.99); }
.choices .choice .arrow {
  color: var(--blue); font-weight: 800; font-size: 1.1rem; flex-shrink: 0;
  transition: transform .15s;
}
.choices .choice:hover .arrow { transform: translateX(3px); }

.field { margin-bottom: 12px; }
.field label {
  display: block; font-size: .78rem; font-weight: 700; margin-bottom: 6px;
  color: var(--ink); letter-spacing: .01em;
}
.field label .opt { color: var(--muted); font-weight: 500; margin-left: 4px; }
.field input {
  width: 100%; padding: 13px 15px;
  border: 1.5px solid var(--blue-line); border-radius: 10px;
  font: inherit; background: #fff; color: var(--ink);
  font-weight: 500; font-family: var(--sans);
}
.field input::placeholder { color: #a4acbf; font-weight: 500; }
.field input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(30, 58, 174, .14); }

.consent-text {
  font-size: .78rem; color: var(--muted); line-height: 1.5; margin: 8px 0 14px;
}
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  width: 100%; background: var(--cta); color: #fff; border: none;
  padding: 15px 22px; border-radius: 12px;
  font-family: var(--sans); font-weight: 800; font-size: .92rem; letter-spacing: .06em;
  cursor: pointer; transition: background .15s, transform .1s;
  box-shadow: 0 12px 26px -12px rgba(193, 90, 86, .55); text-transform: uppercase;
}
.btn-primary:hover { background: var(--cta-dk); transform: translateY(-1px); }
.btn-primary[disabled] { opacity: .65; cursor: not-allowed; transform: none; }
.step-back {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: none; color: var(--muted); font: inherit;
  font-size: .82rem; font-weight: 600; cursor: pointer; margin-top: 12px;
  padding: 6px 0;
}
.step-back:hover { color: var(--blue); }

/* ===== Trust strip ===== */
.trust-strip { background: var(--blue); color: #fff; }
.trust-strip .wrap {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  padding: 30px 22px; text-align: center;
}
.trust-item { padding: 6px 22px; position: relative; }
.trust-item + .trust-item::before {
  content: ""; position: absolute; left: 0; top: 14%; bottom: 14%;
  width: 1px; background: rgba(255,255,255,.16);
}
.trust-item .n {
  font-family: var(--serif); font-weight: 600; font-size: 2rem;
  color: var(--sand); line-height: 1; letter-spacing: -.02em; margin-bottom: 6px;
}
.trust-item .l { font-size: .9rem; color: #d8dcee; font-weight: 500; line-height: 1.4; }

/* ===== Sections ===== */
section.block { padding: 78px 0; }
section.block.soft { background: var(--sand); }
section.block.blue { background: var(--blue); color: #fff; }
section.block.blue h2, section.block.blue h3 { color: #fff; }
.sec-head { text-align: center; max-width: 780px; margin: 0 auto 44px; }
.sec-head .eyebrow { justify-content: center; display: inline-flex; margin-bottom: 12px; }
.block h2 {
  font-family: var(--serif); font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 600; text-align: center; margin-bottom: 12px;
  text-wrap: balance; line-height: 1.14;
}
.block .intro {
  text-align: center; color: var(--ink-soft); max-width: 66ch; margin: 0 auto;
  font-size: 1.02rem; text-wrap: pretty; font-weight: 500; line-height: 1.6;
}
.block.blue .intro { color: rgba(255,255,255,.85); }

/* Lead section (pain → solution) */
.lead-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center;
  max-width: 1080px; margin: 0 auto;
  min-width: 0;
}
.lead-grid > * { min-width: 0; }
.lead-grid .lead-copy .eyebrow { margin-bottom: 12px; }
.lead-grid .lead-copy h2 { text-align: left; margin-bottom: 16px; }
.lead-grid .lead-quote {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 500;
  color: var(--blue); line-height: 1.35; margin: 14px 0 18px;
  border-left: 3px solid var(--blue); padding-left: 18px;
  font-style: italic;
}
.lead-grid p.body {
  color: var(--ink-soft); font-size: 1.02rem; font-weight: 500; line-height: 1.66;
  text-wrap: pretty;
}
.lead-grid p.body + p.body { margin-top: 12px; }
.lead-grid .lead-visual img {
  aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius-lg);
  box-shadow: var(--shadow); width: 100%;
}

/* Proof (reviews) */
.reviews-note {
  text-align: center; font-size: .82rem; color: var(--muted); margin-top: 4px;
}
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 1080px; margin: 0 auto;
}
.review {
  background: #fff; border: 1px solid var(--blue-line); border-radius: var(--radius);
  padding: 24px 22px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 12px;
}
.review p {
  font-family: var(--serif); font-size: 1.02rem; font-weight: 500;
  color: var(--ink); font-style: italic; line-height: 1.5; flex: 1;
}
.review .who {
  font-family: var(--sans); font-size: .78rem; color: var(--muted); font-weight: 600;
  letter-spacing: .02em;
}

/* Benefits */
.benefits {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 1080px; margin: 0 auto;
}
.bcard {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); padding: 26px 22px; display: flex; flex-direction: column; gap: 10px;
}
.bcard .bicon {
  width: 42px; height: 42px; border-radius: 10px; background: var(--blue-soft);
  display: grid; place-items: center; color: var(--blue);
  border: 1px solid var(--blue-line); margin-bottom: 6px;
}
.bcard .bicon svg { width: 22px; height: 22px; }
.bcard h3 {
  font-family: var(--serif); font-size: 1.12rem; font-weight: 600;
  color: var(--ink); letter-spacing: -.015em; line-height: 1.28;
}
.bcard p {
  color: var(--ink-soft); font-size: .94rem; font-weight: 500; line-height: 1.55;
}

/* Differentiators */
.diffs {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 24px;
  max-width: 900px; margin: 0 auto;
}
.diff {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 18px; background: #fff; border: 1px solid var(--line); border-radius: 12px;
}
.diff .num {
  min-width: 32px; height: 32px; border-radius: 50%;
  background: var(--blue); color: #fff; display: grid; place-items: center;
  font-family: var(--serif); font-weight: 600; font-size: .95rem; flex-shrink: 0;
}
.diff h4 {
  font-family: var(--sans); font-weight: 700; font-size: .96rem;
  color: var(--ink); margin-bottom: 4px; letter-spacing: 0;
}
.diff p { color: var(--ink-soft); font-size: .9rem; line-height: 1.5; font-weight: 500; }

/* How it works */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  max-width: 1000px; margin: 0 auto;
}
.step-item {
  background: #fff; border: 1px solid var(--blue-line); border-radius: var(--radius);
  padding: 28px 24px 26px; text-align: left; position: relative; box-shadow: var(--shadow-sm);
  display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto;
  column-gap: 14px; row-gap: 8px;
}
.step-item .n {
  grid-row: 1 / 3; grid-column: 1;
  font-family: var(--serif); font-weight: 600; font-size: 2rem;
  color: var(--blue); line-height: 1; letter-spacing: -.02em; align-self: start;
  min-width: 44px;
}
.step-item h3 {
  grid-row: 1; grid-column: 2;
  font-family: var(--serif); font-size: 1.05rem; font-weight: 600;
  color: var(--ink); letter-spacing: -.01em; line-height: 1.3;
}
.step-item p {
  grid-row: 2; grid-column: 2;
  color: var(--ink-soft); font-size: .92rem; line-height: 1.55; font-weight: 500;
}
.steps-note { text-align: center; color: var(--ink-soft); font-size: .92rem; margin-top: 28px; }

/* Offer */
.offer-card {
  max-width: 780px; margin: 0 auto;
  background: #fff; border: 1px solid var(--blue-line); border-radius: var(--radius-lg);
  padding: 40px 44px; box-shadow: var(--shadow); text-align: center;
  border-top: 6px solid var(--cta);
}
.offer-card h2 { margin-bottom: 12px; }
.offer-card .offer-lede {
  color: var(--ink-soft); font-size: 1rem; line-height: 1.6; max-width: 60ch;
  margin: 0 auto 22px; font-weight: 500;
}
.offer-card ul {
  list-style: none; display: grid; gap: 10px; text-align: left;
  max-width: 480px; margin: 0 auto 26px;
}
.offer-card ul li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: .96rem; color: var(--ink); font-weight: 600;
}
.offer-card ul li::before {
  content: ""; min-width: 22px; height: 22px; border-radius: 50%;
  background-color: var(--blue-soft); flex-shrink: 0; margin-top: 2px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 9' fill='none'><path d='M1 4.5 4.2 7.6 10 1.4' stroke='%231E3AAE' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-position: center; background-repeat: no-repeat; background-size: 11px 9px;
}
.offer-card .offer-cta { margin-top: 4px; }
.offer-card .offer-friction { color: var(--muted); font-size: .88rem; margin-top: 14px; font-weight: 500; }

/* About */
.about {
  display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center;
  max-width: 1080px; margin: 0 auto;
}
.about .about-visual img {
  aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-lg);
  box-shadow: var(--shadow); width: 100%;
}
.about h2 { text-align: left; margin-bottom: 14px; }
.about p {
  color: var(--ink-soft); font-size: 1.02rem; line-height: 1.66; font-weight: 500;
  text-wrap: pretty;
}
.about p + p { margin-top: 12px; }
.about .about-meta {
  margin-top: 22px; display: grid; gap: 10px;
  border-top: 1px solid var(--blue-line); padding-top: 20px;
}
.about .about-meta div { display: flex; gap: 12px; align-items: center; font-size: .92rem; }
.about .about-meta b {
  color: var(--blue); font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; font-size: .74rem; min-width: 110px;
}
.about .about-meta span { color: var(--ink); font-weight: 500; }

/* Archetypes */
.arch-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  max-width: 1080px; margin: 0 auto;
}
.arch {
  background: #fff; border: 1px solid var(--blue-line); border-radius: var(--radius);
  padding: 26px 24px; display: flex; flex-direction: column; gap: 12px;
  box-shadow: var(--shadow-sm);
}
.arch .tag {
  align-self: flex-start;
  background: var(--blue-soft); color: var(--blue);
  font-family: var(--sans); font-weight: 700; font-size: 13px;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px;
}
.arch blockquote {
  font-family: var(--serif); font-size: 1.02rem; font-weight: 500; color: var(--ink);
  font-style: italic; line-height: 1.45; border-left: 3px solid var(--blue);
  padding-left: 14px;
}
.arch p { color: var(--ink-soft); font-size: .92rem; line-height: 1.55; font-weight: 500; }

/* FAQ */
.faq { max-width: 800px; margin: 0 auto; display: grid; gap: 12px; }
.faq details {
  background: #fff; border: 1px solid var(--blue-line); border-radius: 14px;
  padding: 4px 22px; box-shadow: var(--shadow-sm);
}
.faq summary {
  cursor: pointer; font-weight: 700; padding: 18px 0; list-style: none;
  font-size: 1rem; color: var(--ink);
  display: flex; justify-content: space-between; gap: 12px; align-items: center;
  font-family: var(--sans); letter-spacing: -.005em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; color: var(--blue); font-weight: 700; font-size: 1.7rem;
  line-height: 1; width: 26px; text-align: center; flex-shrink: 0;
}
.faq details[open] summary::after { content: "–"; }
.faq details p {
  color: var(--ink-soft); padding: 0 0 18px; text-wrap: pretty;
  font-weight: 500; line-height: 1.65; font-size: .96rem;
}

/* Full-stop CTA band */
.ctaband {
  background: linear-gradient(130deg, var(--blue) 0%, var(--blue-dk) 100%);
  color: #fff; text-align: center; position: relative; overflow: hidden;
}
.ctaband::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(720px 320px at 50% 0%, rgba(245, 239, 228, .16), transparent 70%);
}
.ctaband .wrap { padding: 72px 22px; position: relative; }
.ctaband h2 { color: #fff; font-size: clamp(1.8rem, 3.2vw, 2.6rem); margin-bottom: 18px; }
.ctaband ul {
  list-style: none; display: grid; gap: 10px; max-width: 620px; margin: 0 auto 28px;
  text-align: left;
}
.ctaband ul li {
  display: flex; gap: 12px; align-items: flex-start;
  color: rgba(255,255,255,.9); font-size: 1rem; font-weight: 500; line-height: 1.55;
}
.ctaband ul li::before {
  content: ""; min-width: 22px; height: 22px; border-radius: 50%;
  background-color: rgba(255,255,255,.14); flex-shrink: 0; margin-top: 2px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 9' fill='none'><path d='M1 4.5 4.2 7.6 10 1.4' stroke='%23ffffff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-position: center; background-repeat: no-repeat; background-size: 11px 9px;
}
.ctaband .final-cta {
  display: inline-flex; align-items: center; gap: 10px; background: var(--cta); color: #fff;
  padding: 17px 34px; border-radius: 12px;
  font-family: var(--sans); font-weight: 800; font-size: .96rem; letter-spacing: .06em;
  text-transform: uppercase; box-shadow: 0 14px 30px -12px rgba(193, 90, 86, .6);
  transition: background .15s, transform .1s;
}
.ctaband .final-cta:hover { background: var(--cta-dk); transform: translateY(-1px); }
.ctaband .final-friction { color: rgba(255,255,255,.72); font-size: .88rem; margin-top: 14px; font-weight: 500; }

/* Footer */
footer { background: #050820; color: #a0a7c0; font-size: .9rem; }
footer .wrap {
  padding: 44px 22px 26px;
  display: grid; grid-template-columns: 1.2fr .9fr .9fr; gap: 30px;
}
footer a { color: #fff; }
footer .ft-head {
  font-weight: 800; color: #fff; margin-bottom: 12px; display: block;
  font-size: 13px; letter-spacing: .14em; text-transform: uppercase; font-family: var(--sans);
}
footer .contact-line { display: block; line-height: 1.85; color: #d8dcee; }
footer .contact-line a {
  color: #fff; border-bottom: 1px solid rgba(216,220,238,.25);
  transition: border-color .15s;
}
footer .contact-line a:hover { border-bottom-color: var(--sand); }
footer .ft-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
footer .ft-brand .mark {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--blue); color: #fff; font-weight: 800;
  display: grid; place-items: center; font-family: var(--serif);
}
footer .ft-brand b { color: #fff; font-size: 1.1rem; font-weight: 600; font-family: var(--serif); }
footer p.ft-desc { color: #a0a7c0; line-height: 1.55; font-weight: 500; margin-top: 4px; }
footer .legal {
  grid-column: 1 / -1; border-top: 1px solid #14192f; padding-top: 22px;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: 13px; color: #6b7290; margin-top: 8px;
}

/* Sticky mobile call button */
.sticky-call {
  display: none; position: fixed; bottom: 14px; left: 14px; right: 14px; z-index: 60;
  background: var(--cta); color: #fff; font-weight: 800; padding: 15px 18px;
  border-radius: 14px; text-align: center;
  box-shadow: 0 14px 30px -10px rgba(193, 90, 86, .5);
  font-size: .92rem; letter-spacing: .06em; text-transform: uppercase;
}
.sticky-call:hover { background: var(--cta-dk); }

/* ===== Mobile ===== */
@media (max-width: 960px) {
  .hero { padding: 32px 0 40px; }
  .hero .wrap { grid-template-columns: 1fr; gap: 26px; }
  .hero .lede { max-width: none; }
  /* Forma iznad copyja na mobitelu */
  .hero-form-slot { order: -1; }
  .value-bullets li { font-size: .94rem; }

  .trust-strip .wrap { grid-template-columns: 1fr; gap: 20px; padding: 26px 22px; }
  .trust-item + .trust-item::before { display: none; }
  .trust-item { padding: 12px 0; border-top: 1px solid rgba(255,255,255,.14); }
  .trust-item:first-child { border-top: 0; }

  .lead-grid { grid-template-columns: 1fr; gap: 26px; }
  .lead-grid .lead-copy h2 { text-align: center; }
  .lead-grid .lead-copy .eyebrow { justify-content: center; display: inline-flex; margin-left: 50%; transform: translateX(-50%); }
  .lead-grid .lead-quote { border-left-width: 3px; text-align: left; }

  .reviews-grid { grid-template-columns: 1fr; }
  .benefits { grid-template-columns: 1fr; }
  .diffs { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .arch-grid { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; gap: 24px; }
  .about h2 { text-align: center; }

  .offer-card { padding: 30px 24px; }

  footer .wrap { grid-template-columns: 1fr; gap: 24px; }

  .topbar .brand .brand-sub { display: none; }
  .tel { padding: 10px 14px; font-size: 13px; letter-spacing: .04em; }
  .tel-alt { padding: 0; width: 44px; height: 44px; justify-content: center; gap: 0; }
  .tel-alt span { display: none; }
  .topbar-ctas { gap: 6px; }

  .sticky-call { display: block; }
  body { padding-bottom: 82px; }
  section.block { padding: 52px 0; }
  .sec-head { margin-bottom: 32px; }
}

@media (max-width: 520px) {
  .hero h1 { font-size: 1.85rem; line-height: 1.14; }
  .form-body { padding: 20px 20px 22px; }
  .form-head { padding: 20px 20px 18px; }
  .form-head h2 { font-size: 1.2rem; }
  .step-q { font-size: 1.05rem; }
  .choices .choice { padding: 13px 14px; font-size: .92rem; min-height: 50px; }
  .offer-card { padding: 26px 20px; }
  .step-item { padding: 22px 20px 20px; }
  .arch { padding: 22px 20px; }
}

/* ===== Pain-point tabs (Lead Section) ===== */
.paintabs {
  background: #fff;
  border: 1px solid var(--blue-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  min-width: 0;
  max-width: 100%;
}
.paintabs-panels, .painpanel, .painpanel-quote, .painpanel-body, .painpanel-list li { min-width: 0; word-wrap: break-word; overflow-wrap: break-word; }
.paintab { min-width: 0; }
.paintab-title, .paintab-sub { word-wrap: break-word; overflow-wrap: break-word; }
.paintabs-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--blue-soft);
  border-bottom: 1px solid var(--blue-line);
}
.paintab {
  appearance: none;
  background: transparent;
  border: none;
  border-right: 1px solid var(--blue-line);
  padding: 16px 14px;
  font-family: var(--sans);
  text-align: left;
  cursor: pointer;
  color: var(--ink-soft);
  transition: background .15s, color .15s;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-height: 88px;
  justify-content: center;
  position: relative;
}
.paintab:last-child { border-right: none; }
.paintab:hover { background: rgba(30, 58, 174, .06); color: var(--ink); }
.paintab:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: -3px;
  z-index: 1;
}
.paintab-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}
.paintab-title {
  font-family: var(--serif);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.01em;
  line-height: 1.18;
}
.paintab-sub {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  line-height: 1.3;
}
.paintab.is-active {
  background: #fff;
  color: var(--blue);
}
.paintab.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 3px;
  background: var(--blue);
}
.paintab.is-active .paintab-eyebrow { color: var(--blue); }
.paintab.is-active .paintab-title { color: var(--blue); }
.paintab.is-active .paintab-sub { color: var(--ink); }
.paintabs-panels { padding: 26px 28px 28px; }
.painpanel[hidden] { display: none; }
.painpanel { animation: painpanelIn .3s ease; }
@keyframes painpanelIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: none; }
}
.painpanel-quote {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--blue);
  line-height: 1.4;
  margin-bottom: 14px;
  border-left: 3px solid var(--blue);
  padding-left: 16px;
  font-style: italic;
  text-wrap: pretty;
}
.painpanel-body {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.62;
  font-weight: 500;
  margin-bottom: 16px;
  text-wrap: pretty;
}
.painpanel-list {
  list-style: none;
  display: grid;
  gap: 8px;
  margin: 0;
}
.painpanel-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .94rem;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.45;
}
.painpanel-list li::before {
  content: "";
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: var(--blue-soft);
  flex-shrink: 0;
  margin-top: 3px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 9' fill='none'><path d='M1 4.5 4.2 7.6 10 1.4' stroke='%231E3AAE' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 9px 7px;
}

@media (max-width: 720px) {
  .paintabs-nav { grid-template-columns: 1fr; }
  .paintab {
    border-right: none;
    border-bottom: 1px solid var(--blue-line);
    min-height: 68px;
    padding: 14px 16px;
  }
  .paintab:last-child { border-bottom: none; }
  .paintab.is-active::after {
    left: 0; right: auto; top: 0; bottom: 0; width: 3px; height: auto;
  }
  .paintabs-panels { padding: 22px 22px 24px; }
  .painpanel-quote { font-size: 1.05rem; padding-left: 14px; }
}

