/* ============================================================
   RESET — Ivana Njanja
   ============================================================ */
:root {
  --ink: #1a0538;
  --plum: #2b0f52;
  --purple: #512d84;
  --violet: #774cb3;
  --lavender: #b794e7;
  --lilac: #dfc9ff;
  --mist: #c6adec;       /* sekcije sa šarom */
  --cream: #cfb9f0;      /* pozadina stranice */
  --surface: #e8dcfb;    /* kartice */
  --surface-2: #c2a7ea;  /* naizmenične sekcije */
  --white: #fff;
  --text: #2a2238;
  --muted: #6b6280;
  --line: rgba(26, 5, 56, .1);

  --f-body: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --f-display: "Bricolage Grotesque", "Manrope", system-ui, sans-serif;

  --r-sm: 12px;
  --r: 22px;
  --r-lg: 34px;
  --shadow: 0 22px 48px -26px rgba(26, 5, 56, .32);
  --gutter: clamp(16px, 4vw, 40px);
  --nav-h: 110px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; }
}
body {
  margin: 0;
  font: 500 18.5px/1.7 var(--f-body);
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3 { margin: 0; color: var(--ink); line-height: 1.1; }
p { margin: 0 0 1em; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
[hidden] { display: none !important; }

.wrap { width: 100%; max-width: 1180px; margin-inline: auto; padding-inline: var(--gutter); }
.skip { position: absolute; left: -999px; top: 8px; z-index: 100; background: var(--ink); color: #fff; padding: 8px 14px; border-radius: 8px; }
.skip:focus { left: 8px; }
:focus-visible { outline: 3px solid var(--violet); outline-offset: 3px; border-radius: 6px; }

/* ---------- type helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--violet); margin-bottom: 1rem;
}
.eyebrow--light { color: var(--lavender); }
.dot { width: 8px; height: 8px; border-radius: 50%; background: #3ddc84; box-shadow: 0 0 0 0 rgba(61, 220, 132, .6); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(61, 220, 132, 0); } 100% { box-shadow: 0 0 0 0 rgba(61, 220, 132, 0); } }
.h2 { font-family: var(--f-display); font-weight: 800; font-size: clamp(2rem, 4.4vw, 3.3rem); letter-spacing: -.02em; margin-bottom: 1.2rem; }
.h2--light { color: #fff; }
.lead { font-size: clamp(1.08rem, 1.5vw, 1.22rem); color: #5c5372; max-width: 58ch; line-height: 1.6; }

/* ---------- buttons ---------- */
.btn {
  --bg: var(--violet);
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  padding: .95em 1.6em; border-radius: 999px; border: 0;
  background: var(--bg); color: #fff; font-weight: 800; text-decoration: none; letter-spacing: .01em;
  box-shadow: 0 10px 24px -10px rgba(119, 76, 179, .8);
  transition: transform .2s, box-shadow .2s, background .2s;
}
.btn:hover { transform: translateY(-2px); background: var(--purple); box-shadow: 0 16px 30px -12px rgba(81, 45, 132, .9); }
.btn--sm { padding: .6em 1.15em; font-size: .92rem; }
.btn--lg { padding: 1.1em 2em; font-size: 1.05rem; }
.btn--block { width: 100%; }
.btn--ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 2px var(--line); }
.btn--ghost:hover { background: var(--mist); box-shadow: inset 0 0 0 2px var(--lavender); }
.btn--light { background: var(--surface); color: var(--ink); box-shadow: 0 14px 30px -12px rgba(0, 0, 0, .5); }
.btn--light:hover { background: var(--lilac); }
.ghost-link {
  display: inline-flex; align-items: center; gap: .6rem; padding: .7rem 1.25rem .7rem .7rem;
  border-radius: 999px; text-decoration: none; font-weight: 700; color: var(--ink);
  background: rgba(255, 255, 255, .45); box-shadow: inset 0 0 0 1.5px rgba(81, 45, 132, .18);
  transition: background .25s, box-shadow .25s, transform .25s;
}
.ghost-link__icon {
  display: grid; place-items: center; width: 2rem; height: 2rem; border-radius: 50%;
  background: var(--violet); color: #fff; font-size: 1rem; transition: transform .25s;
}
.ghost-link:hover { background: rgba(255, 255, 255, .8); box-shadow: inset 0 0 0 1.5px var(--violet); }
.ghost-link:hover .ghost-link__icon { transform: translateY(3px); }
.round {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  border: 0; background: rgba(255, 255, 255, .12); color: #fff; font-size: 1.1rem; transition: background .2s;
}
.round:hover { background: rgba(255, 255, 255, .25); }

/* ---------- nav + section tabs ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  padding-top: env(safe-area-inset-top, 0px);
  background: rgba(207, 185, 240, .88); backdrop-filter: saturate(160%) blur(14px); -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .3s, background .3s;
}
.nav.is-scrolled { border-color: var(--line); background: rgba(207, 185, 240, .96); }
.nav__inner { height: 60px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: flex; align-items: baseline; gap: .5rem; text-decoration: none; }
.brand__mark { font-family: var(--f-display); font-weight: 800; font-size: 1.45rem; letter-spacing: -.02em; color: var(--ink); }
.brand__by { font-size: .8rem; color: var(--muted); font-weight: 600; }
@media (max-width: 380px) { .brand__by { display: none; } }

.tabs { border-top: 1px solid rgba(26, 5, 56, .08); }
.tabs__track {
  max-width: none;
  display: flex; gap: .4rem; overflow-x: auto; scroll-behavior: smooth; scrollbar-width: none;
  padding-block: .6rem;
  mask-image: linear-gradient(90deg, transparent 0, #000 var(--gutter), #000 calc(100% - var(--gutter)), transparent 100%);
}
.tabs__track::-webkit-scrollbar { display: none; }
.tabs__track a {
  flex: none; display: inline-flex; align-items: center; gap: .45em;
  padding: .5rem 1rem; border-radius: 999px; text-decoration: none; white-space: nowrap;
  font-size: .88rem; font-weight: 700; color: var(--purple);
  background: var(--surface); box-shadow: inset 0 0 0 1px rgba(81, 45, 132, .14);
  transition: background .25s, color .25s, box-shadow .25s, transform .25s;
}
.tabs__track a::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--lavender);
  transition: background .25s, transform .25s;
}
.tabs__track a:hover { transform: translateY(-1px); background: #fff; box-shadow: inset 0 0 0 1px var(--lavender), 0 6px 14px -10px rgba(26, 5, 56, .5); }
.tabs__track a.is-active {
  color: #fff; background: linear-gradient(135deg, var(--ink), var(--purple));
  box-shadow: 0 8px 18px -8px rgba(26, 5, 56, .7);
}
.tabs__track a.is-active::before { background: #7ff0a4; transform: scale(1.15); }
@media (min-width: 1100px) { .tabs__track { justify-content: center; mask-image: none; } }
@media (max-width: 600px) { .tabs__track a { font-size: .82rem; padding: .45rem .85rem; } }

/* ---------- hero ---------- */
.hero { position: relative; padding-top: clamp(24px, 5vw, 60px); padding-bottom: clamp(40px, 6vw, 72px); overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2rem; align-items: center; }
.hero__title { margin-bottom: 1.2rem; }
.hero__word {
  display: block; font-family: var(--f-display); font-weight: 800;
  font-size: clamp(4.5rem, 13vw, 10rem); line-height: .85; letter-spacing: -.05em;
  background: linear-gradient(100deg, var(--ink) 20%, var(--violet) 90%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__sub { display: block; margin-top: .6rem; font-size: clamp(1.1rem, 2vw, 1.45rem); font-weight: 800; color: var(--purple); letter-spacing: -.01em; }
.hero__hook { font-size: clamp(1.2rem, 2vw, 1.5rem); color: var(--purple); font-weight: 600; line-height: 1.45; margin-bottom: .9rem; }
.hero__hook strong {
  position: relative; display: inline-block; color: var(--ink); font-weight: 800;
  font-family: var(--f-display); font-size: 1.12em; letter-spacing: -.01em;
}
.hero__hook strong::after {
  content: ""; position: absolute; left: -.12em; right: -.12em; bottom: .02em; height: .36em;
  border-radius: 999px; background: linear-gradient(90deg, var(--lavender), #d7bff7);
  z-index: -1;
}
.hero__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.6rem; margin: 1.8rem 0 2rem; }

.countdown { display: inline-flex; flex-wrap: wrap; align-items: center; gap: .8rem 1.1rem; padding: .7rem 1.1rem; border-radius: var(--r); background: var(--surface); box-shadow: 0 1px 0 var(--line), 0 12px 30px -20px rgba(26, 5, 56, .4); }
.countdown__label { font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); }
.countdown__units { display: flex; gap: .9rem; }
.countdown__units span { display: flex; flex-direction: column; align-items: center; font-size: .68rem; color: var(--muted); font-weight: 700; min-width: 2.6ch; }
.countdown__units b { font-family: var(--f-display); font-size: 1.6rem; line-height: 1; color: var(--ink); font-variant-numeric: tabular-nums; }

.hero__visual { position: relative; justify-self: center; width: min(100%, 418px); }
.hero__visual img { position: relative; z-index: 1; width: 100%; filter: drop-shadow(0 30px 40px rgba(26, 5, 56, .25)); }
.hero__blob {
  position: absolute; inset: 10% -8% 2% -8%; border-radius: 48% 52% 42% 58% / 55% 45% 55% 45%;
  background: radial-gradient(circle at 35% 25%, #7a56b8, var(--purple) 55%, var(--ink) 100%);
  animation: morph 12s ease-in-out infinite alternate;
}
@keyframes morph { to { border-radius: 58% 42% 55% 45% / 42% 58% 42% 58%; transform: rotate(8deg); } }
.chip {
  position: absolute; z-index: 2; padding: .55rem .9rem; border-radius: 999px;
  background: var(--surface); box-shadow: var(--shadow); font-size: .85rem; font-weight: 600; white-space: nowrap;
  animation: float 5s ease-in-out infinite;
}
.chip b { color: var(--violet); font-weight: 800; }
.chip--a { top: 24%; left: -8%; }
.chip--b { top: 52%; right: -6%; animation-delay: -1.6s; }
.chip--c { bottom: 12%; left: 0; animation-delay: -3.2s; }
@keyframes float { 50% { transform: translateY(-10px); } }

.facts {
  list-style: none; margin: clamp(1.6rem, 4vw, 2.6rem) 0 0; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem;
}
.facts li {
  display: inline-flex; align-items: center; gap: .5em;
  padding: .55rem 1.1rem; border-radius: 999px;
  background: var(--surface); color: var(--purple); font-size: .95rem; font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(81, 45, 132, .12);
}
.facts li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--lavender); }

@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { order: -1; width: min(72%, 320px); }
  .chip { font-size: .75rem; }
  .chip--a { left: -18%; }
  .chip--b { right: -16%; }
}

/* ---------- sections ---------- */
.section { padding-block: clamp(64px, 10vw, 120px); }
.section-head { max-width: 760px; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--row { max-width: none; display: flex; justify-content: space-between; align-items: end; gap: 1rem; flex-wrap: wrap; }
.section-head--row .h2 { margin-bottom: 0; }

.checks { list-style: none; padding: 0; margin: 1.4rem 0 2rem; display: grid; gap: .7rem; }
.checks li { position: relative; padding-left: 2.2rem; font-size: 1.08rem; font-weight: 600; color: var(--ink); line-height: 1.5; }
.checks li::before {
  content: ""; position: absolute; left: 0; top: .18em; width: 1.45rem; height: 1.45rem; border-radius: 50%;
  background: var(--violet) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E") center/62% no-repeat;
}
.checks--sm { margin: 1.2rem 0 0; gap: .5rem; }
.checks--sm li { font-size: .98rem; padding-left: 2rem; }
.checks--sm li::before { width: 1.3rem; height: 1.3rem; }

/* ---------- blaga šara u pozadini ---------- */
.pattern-bg { position: relative; isolation: isolate; background: var(--mist); }
.pattern-bg .pain-list li, .pattern-bg .shift__col, .pattern-bg .shift__figure { position: relative; z-index: 1; }
.pattern-bg::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: url("../img/pattern.webp") no-repeat center / cover;
  opacity: .1;
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
}

/* ---------- pains ---------- */
.pains__grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.pain-list { list-style: none; padding: 0; margin: 2rem 0 0; display: grid; gap: 1rem; }
.pain-list li {
  display: flex; gap: 1.1rem; align-items: flex-start; padding: 1.3rem 1.4rem; border-radius: var(--r);
  background: var(--surface); font-size: 1.1rem; font-weight: 600; color: var(--ink);
  box-shadow: 0 18px 34px -22px rgba(26, 5, 56, .55), 0 2px 0 rgba(255, 255, 255, .5) inset;
  transition: transform .25s, box-shadow .25s;
}
.pain-list li:hover { transform: translateY(-3px) translateX(4px); box-shadow: 0 26px 44px -24px rgba(26, 5, 56, .6); }
.pain-list span { flex: none; font-family: var(--f-display); font-weight: 800; color: var(--lavender); font-size: 1.1rem; line-height: 1.6; }
.pains__img img { border-radius: var(--r-lg); aspect-ratio: 4/5; object-fit: cover; width: 100%; box-shadow: var(--shadow); }
@media (max-width: 860px) { .pains__grid { grid-template-columns: 1fr; } .pains__img { max-width: 420px; } }

/* ---------- reality ---------- */
.reality { background: linear-gradient(170deg, var(--ink), var(--plum)); color: rgba(255, 255, 255, .8); border-radius: var(--r-lg); margin-inline: clamp(8px, 1.5vw, 20px); }
.reality .h2 { max-width: 20ch; }
.reality__grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.reality__img { margin: 0; border-radius: var(--r-lg); overflow: hidden; background: linear-gradient(160deg, rgba(183, 148, 231, .35), rgba(255, 255, 255, .06)); box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .6); }
.reality__img img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center 25%; }
.timeline { list-style: none; counter-reset: t; padding: 0; margin: 2.5rem 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.timeline li { counter-increment: t; position: relative; padding: 3.4rem 1.3rem 1.4rem; border-radius: var(--r); background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .08); }
.timeline li::before { content: "0" counter(t); position: absolute; top: 1.1rem; left: 1.3rem; font-family: var(--f-display); font-weight: 800; color: var(--lavender); }
.timeline li:not(:last-child)::after { content: ""; position: absolute; top: 1.75rem; left: 3.6rem; right: -1.2rem; height: 1px; background: linear-gradient(90deg, rgba(183, 148, 231, .6), transparent); }
.timeline b { display: block; color: #fff; font-size: 1.08rem; margin-bottom: .35rem; }
.reality__note { max-width: 62ch; font-size: 1.12rem; margin: 0; }
.reality__note strong { color: var(--lilac); }
.timeline li::after { display: none; }
@media (max-width: 1000px) { .reality__grid { grid-template-columns: 1fr; } .reality__img { max-width: 420px; margin-inline: auto; } }
@media (max-width: 520px) { .timeline { grid-template-columns: 1fr; } }

/* ---------- solution ---------- */
.solution { background: var(--surface-2); }
.solution__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.solution__img { position: relative; margin: 0; }
.solution__img::before { content: ""; position: absolute; inset: 10% 8% -4% -4%; border-radius: var(--r-lg); background: var(--lilac); transform: rotate(-3deg); }
.solution__img img { position: relative; width: 100%; }
@media (max-width: 860px) { .solution__grid { grid-template-columns: 1fr; } .solution__img { max-width: 360px; margin-inline: auto; } }

/* ---------- phases ---------- */
.phases { background: var(--mist); }
.phases__grid { display: grid; grid-template-columns: 300px 1fr 240px; gap: clamp(1.2rem, 3vw, 2.5rem); align-items: stretch; }
.phase-tabs { position: relative; display: grid; gap: .6rem; align-content: start; }
.phase-tabs button {
  text-align: left; padding: 1.1rem 1.2rem; border-radius: var(--r); border: 0;
  background: transparent; color: var(--ink); display: grid; gap: .1rem; transition: background .25s, color .25s;
}
.phase-tabs button:hover { background: rgba(255, 255, 255, .7); }
.phase-tabs button[aria-selected="true"] { background: var(--ink); color: #fff; box-shadow: var(--shadow); }
.phase-tabs__wk { font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; opacity: .6; }
.phase-tabs__t { font-weight: 800; font-size: 1.08rem; }
.phase-progress { height: 4px; border-radius: 4px; background: rgba(26, 5, 56, .1); margin-top: .8rem; overflow: hidden; }
.phase-progress span { display: block; height: 100%; width: 33.3%; background: var(--violet); border-radius: inherit; transition: width .4s ease; }

.phase-panel { background: var(--surface); border-radius: var(--r-lg); padding: clamp(1.6rem, 3.5vw, 2.8rem); box-shadow: 0 1px 0 var(--line); height: 100%; animation: fade .45s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(10px); } }
.phase-panel__n { font-family: var(--f-display); font-weight: 800; font-size: 3.5rem; line-height: 1; color: var(--lilac); margin-bottom: .6rem; }
.phase-panel h3 { font-family: var(--f-display); font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 1rem; }
.phase-panel p { color: var(--muted); }
.phases__img { margin: 0; border-radius: var(--r-lg); background: var(--lilac); display: flex; align-items: flex-end; justify-content: center; overflow: hidden; }
.phases__img img { max-height: 460px; width: auto; }
@media (max-width: 1000px) {
  .phases__grid { grid-template-columns: 1fr; }
  .phases__img { display: none; }
  .phase-tabs { grid-template-columns: repeat(3, 1fr); }
  .phase-progress { grid-column: 1 / -1; margin-top: 0; }
  .phase-tabs button { padding: .8rem; }
  .phase-tabs__t { font-size: .92rem; line-height: 1.25; }
}
@media (max-width: 480px) { .phase-tabs__wk { font-size: .62rem; letter-spacing: .04em; } .phase-tabs__t { font-size: .8rem; } }

/* ---------- perks ---------- */
.perks { background: linear-gradient(180deg, var(--mist) 0%, #dbc9f4 100%); }
.perks .eyebrow { color: var(--purple); }
.perks .lead { color: #584c73; margin-inline: auto; }
.perks__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; }
.perk {
  grid-column: span 2; position: relative; display: flex; flex-direction: column; gap: .55rem;
  padding: 1.6rem; border-radius: var(--r); overflow: hidden;
  background: linear-gradient(160deg, #56397f, #45296d); color: rgba(255, 255, 255, .78);
  box-shadow: var(--shadow); transition: transform .3s, box-shadow .3s;
}
.perk:hover { transform: translateY(-4px); box-shadow: 0 30px 56px -30px rgba(26, 5, 56, .6); }
.perk h3 { color: #fff; font-size: 1.2rem; line-height: 1.3; }
.perk p { margin: 0; font-size: 1rem; line-height: 1.6; }
.perk__icon {
  display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: .5rem; border-radius: 50%;
  background: rgba(255, 255, 255, .1); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18); color: #7ff0a4;
}
.perk__icon svg { width: 20px; height: 20px; }
.perk .perk__big { font-family: var(--f-display); font-weight: 800; font-size: 3rem; line-height: 1; color: #fff; margin: 0 0 .2rem !important; }
.perk .perk__big small { font-size: 1rem; margin-left: .25rem; color: var(--lilac); }

.perk--structure { grid-column: span 4; flex-direction: row; align-items: center; gap: 1.5rem; }
.perk--time { grid-column: span 2; }
.perk__copy { display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.mini-phases { list-style: none; margin: 0; padding: 0 0 0 1.4rem; display: grid; gap: .5rem; flex: 1; max-width: 260px; position: relative; }
.mini-phases::before { content: ""; position: absolute; left: .35rem; top: 1rem; bottom: 1rem; width: 1px; background: rgba(255, 255, 255, .25); }
.mini-phases li { position: relative; padding: .7rem .9rem; border-radius: 10px; background: rgba(255, 255, 255, .08); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .14); font-size: .88rem; color: #fff; }
.mini-phases li::before { content: ""; position: absolute; left: -1.3rem; top: 1rem; width: 9px; height: 9px; border-radius: 50%; background: #9c86bd; box-shadow: 0 0 0 3px rgba(255, 255, 255, .12); }
.mini-phases li.is-open::before { background: #7ff0a4; }
.mini-phases li span { display: block; }
.mini-phases i { display: block; height: 4px; margin-top: .45rem; border-radius: 4px; background: rgba(255, 255, 255, .28); }
.mini-phases i:nth-of-type(1) { width: 70%; } .mini-phases i:nth-of-type(2) { width: 50%; } .mini-phases i:nth-of-type(3) { width: 85%; }

.perk--photo, .perk--viber { grid-column: span 3; flex-direction: row; align-items: stretch; padding: 0; gap: 0; }
.perk--photo .perk__copy, .perk--viber .perk__copy { padding: 1.6rem; justify-content: center; }
.perk--photo img { width: 46%; object-fit: cover; }
.perk--viber img { width: 44%; align-self: flex-end; object-fit: contain; object-position: bottom; margin-top: 1rem; }

.perks__cta { display: flex; justify-content: center; margin-top: 2.2rem; }

@media (max-width: 960px) {
  .perks__grid { grid-template-columns: repeat(2, 1fr); }
  .perk, .perk--time { grid-column: span 1; }
  .perk--structure, .perk--photo, .perk--viber { grid-column: span 2; }
}
@media (max-width: 600px) {
  .perks__grid { grid-template-columns: 1fr; }
  .perk, .perk--time, .perk--structure, .perk--photo, .perk--viber { grid-column: auto; }
  .perk--structure, .perk--photo, .perk--viber { flex-direction: column; align-items: stretch; }
  .mini-phases { max-width: none; }
  .perk--photo img { width: 100%; height: 200px; }
  .perk--viber img { width: 70%; align-self: center; }
}

/* ---------- shift ---------- */
.shift__wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; align-items: stretch; }
.shift__col { position: relative; height: 100%; display: flex; flex-direction: column; justify-content: center; border-radius: var(--r-lg); padding: clamp(1.6rem, 3vw, 2.2rem); }
.shift__col h3 { font-size: .82rem; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 1.4rem; }
.shift__arrow {
  position: absolute; z-index: 5; right: -.6rem; top: 50%; translate: 50% -50%;
  width: 2.4rem; height: 2.4rem; border-radius: 50%; display: grid; place-items: center;
  background: var(--cream); color: var(--violet); font-size: 1.15rem; line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(81, 45, 132, .18);
}
.shift__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; }
.shift__col li { display: flex; gap: .8rem; align-items: center; font-size: 1.06rem; font-weight: 600; }
.shift__col li::before { flex: none; display: grid; place-items: center; width: 1.5rem; height: 1.5rem; border-radius: 50%; font-size: .8rem; font-weight: 800; }
.shift__col--before { background: var(--surface); color: var(--muted); box-shadow: 0 20px 40px -26px rgba(26, 5, 56, .5); }
.shift__col--before h3 { color: var(--muted); }
.shift__col--before li::before { content: "✕"; background: #ece3f8; color: #a192b8; }
.shift__col--after { background: var(--ink); color: #fff; box-shadow: var(--shadow); }
.shift__col--after h3 { color: var(--lavender); }
.shift__col--after li::before { content: "✓"; background: var(--violet); color: #fff; }
.shift__figure {
  position: relative; margin: 0; aspect-ratio: 4 / 5; border-radius: var(--r-lg); overflow: hidden;
  background: linear-gradient(160deg, #e0d0f8, var(--lavender)); box-shadow: var(--shadow);
}
.shift__figure img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 12%; }
@media (max-width: 900px) {
  .shift__wrap { grid-template-columns: 1fr 1fr; }
  .shift__figure { grid-column: 1 / -1; aspect-ratio: 16 / 10; }
}
@media (max-width: 620px) {
  .shift { padding-block: clamp(48px, 9vw, 64px); }
  .shift .section-head { margin-bottom: 1.5rem; }
  .shift__wrap { grid-template-columns: 1fr; gap: .8rem; }
  .shift__col { padding: 1.2rem 1.1rem; }
  .shift__col h3 { margin-bottom: .9rem; }
  .shift__col ul { gap: .6rem; }
  .shift__col li { font-size: .98rem; gap: .65rem; }
  .shift__col li::before { width: 1.35rem; height: 1.35rem; }
  .shift__figure { grid-column: auto; aspect-ratio: 16 / 10; }
  .shift__arrow { display: none; }
}

/* ---------- about ---------- */
.about { background: var(--surface-2); }
.about__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.about__card {
  margin: 0; padding: 2rem 1.6rem 1.6rem; border-radius: var(--r-lg); text-align: center;
  background: #dfc9ff;
  box-shadow: 0 40px 80px -50px rgba(26, 5, 56, .5);
}
.about__card img { width: min(100%, 340px); margin-inline: auto; }
.about__card figcaption { display: grid; gap: .2rem; margin: .6rem 0 1.4rem; }
.about__name { font-family: var(--f-display); font-weight: 800; font-size: clamp(2rem, 4vw, 2.6rem); color: var(--ink); letter-spacing: -.02em; line-height: 1.1; }
.about__role { font-size: .75rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--purple); }
.about__copy p { color: var(--muted); }
.about blockquote {
  margin: 1.8rem 0 0; padding: 1.2rem 0 1.2rem 1.4rem; border-left: 4px solid var(--violet);
  font-family: var(--f-display); font-weight: 600; font-size: clamp(1.2rem, 2vw, 1.5rem); line-height: 1.35; color: var(--ink);
}
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem; margin: 0; }
.stats div { padding: .9rem .5rem; border-radius: var(--r); background: rgba(255, 255, 255, .55); }
.stats dt { font-family: var(--f-display); font-weight: 800; font-size: 2rem; line-height: 1; color: var(--purple); }
.stats dd { margin: .35rem 0 0; font-size: .86rem; font-weight: 700; color: var(--muted); line-height: 1.3; }
@media (max-width: 860px) { .about__grid { grid-template-columns: 1fr; } .about__card { max-width: 460px; margin-inline: auto; } }

/* ---------- testimonials ---------- */
.voices { background: linear-gradient(180deg, var(--plum), var(--ink)); overflow: hidden; }
.voices__sub { color: rgba(255, 255, 255, .72); margin: 0; font-size: 1.08rem; }

.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; margin-bottom: 1.1rem; }
.quote { margin: 0; padding: 1.8rem; border-radius: var(--r-lg); background: linear-gradient(160deg, rgba(183, 148, 231, .18), rgba(255, 255, 255, .04)); border: 1px solid rgba(255, 255, 255, .1); display: flex; flex-direction: column; }
.quote__big { font-family: var(--f-display); font-weight: 800; font-size: 2.6rem; line-height: 1; color: var(--lilac); margin-bottom: 1rem; letter-spacing: -.02em; }
.quote blockquote { margin: 0 0 1.2rem; color: #fff; font-size: 1.15rem; font-weight: 600; line-height: 1.5; flex: 1; }
.quote figcaption { color: var(--lavender); font-weight: 800; font-size: .98rem; }
.quote figcaption::before { content: "— "; }
@media (max-width: 860px) { .quotes { grid-template-columns: 1fr; } }

.wall { position: relative; columns: 3 260px; column-gap: 1.1rem; max-height: 1100px; overflow: hidden; transition: max-height .6s ease; }
.wall::after { content: ""; position: absolute; inset: auto 0 0; height: 260px; background: linear-gradient(transparent, var(--ink)); pointer-events: none; transition: opacity .3s; }
.wall.is-open { max-height: none; }
.wall.is-open::after { opacity: 0; }
.voice {
  display: block; width: 100%; margin: 0 0 1.1rem; break-inside: avoid; border: 0; padding: 0;
  border-radius: var(--r); overflow: hidden; background: #0e0420;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .1), 0 18px 40px -24px rgba(0, 0, 0, .8); transition: transform .3s, box-shadow .3s;
}
.voice:hover { transform: translateY(-4px); box-shadow: 0 0 0 2px var(--lavender), 0 22px 44px -22px rgba(0, 0, 0, .9); }
.voice img { width: 100%; height: auto; }
.wall__more { display: flex; justify-content: center; margin-top: 1.6rem; }
.wall.is-open + .wall__more { display: none; }
@media (max-width: 600px) { .wall { columns: 1; max-height: 900px; } }

.lightbox { border: 0; padding: 0; background: transparent; max-width: 100vw; max-height: 100dvh; width: 100vw; height: 100dvh; }
.lightbox::backdrop { background: rgba(16, 3, 34, .9); backdrop-filter: blur(6px); }
.lightbox[open] { display: grid; place-items: center; }
.lightbox img { max-width: min(92vw, 520px); max-height: 86dvh; width: auto; border-radius: var(--r); object-fit: contain; }
.lightbox__close { position: fixed; top: calc(16px + env(safe-area-inset-top, 0px)); right: 16px; }
.lightbox__nav { position: fixed; top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev { left: 16px; }
.lightbox__nav--next { right: 16px; }

/* ---------- checkout ---------- */
.checkout { background: var(--mist); }
.checkout__card {
  display: grid; grid-template-columns: .9fr 1.1fr; max-width: 1040px; margin-inline: auto;
  border-radius: var(--r-lg); overflow: hidden; background: var(--surface);
  box-shadow: 0 0 0 1px var(--line), 0 50px 100px -50px rgba(26, 5, 56, .5);
}

/* order summary */
.order { display: flex; flex-direction: column; gap: 1.4rem; padding: clamp(1.6rem, 3.5vw, 2.6rem); color: rgba(255, 255, 255, .8);
  background: radial-gradient(circle at 0% 0%, rgba(119, 76, 179, .55), transparent 55%), linear-gradient(160deg, var(--ink), var(--plum)); }
.order__product { display: flex; align-items: center; gap: 1rem; }
.order__thumb { flex: none; width: 76px; height: 76px; border-radius: 18px; overflow: hidden; background: radial-gradient(circle at 50% 80%, var(--lavender), var(--lilac)); display: flex; align-items: flex-end; justify-content: center; }
.order__thumb img { height: 120%; width: auto; max-width: none; object-fit: cover; object-position: top; }
.order__kicker { margin: 0; font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; color: var(--lavender); }
.order__name { color: #fff; font-family: var(--f-display); font-size: 2rem; letter-spacing: -.02em; }
.order__start { margin: .2rem 0 0; font-size: .95rem; font-weight: 700; color: var(--lilac); }
.checks--light li { color: rgba(255, 255, 255, .88); }
.order .checks { margin: 0; }
.order__lines { margin: auto 0 0; padding-top: 1.2rem; border-top: 1px solid rgba(255, 255, 255, .14); display: grid; gap: .55rem; }
.order__lines div { display: flex; justify-content: space-between; gap: 1rem; font-size: 1.02rem; }
.order__lines dt { color: rgba(255, 255, 255, .72); }
.order__lines dd { margin: 0; font-weight: 700; color: #fff; font-variant-numeric: tabular-nums; }
.order__lines .order__total { margin-top: .4rem; padding-top: .8rem; border-top: 1px dashed rgba(255, 255, 255, .2); align-items: baseline; }
.order__total dt { color: #fff; font-weight: 800; }
.order__total dd { font-family: var(--f-display); font-weight: 800; font-size: 2.2rem; line-height: 1; }
.order__needs { margin: 0; padding: .9rem 1.1rem; border-radius: var(--r-sm); background: rgba(255, 255, 255, .07); font-size: .95rem; }
.order__needs b { color: #fff; }

/* form */
.pay { padding: clamp(1.6rem, 3.5vw, 2.6rem); display: grid; gap: 1.6rem; align-content: start; }
.pay__step { border: 0; margin: 0; padding: 0; min-width: 0; }
.pay__step legend { display: flex; align-items: center; gap: .6rem; padding: 0; margin-bottom: .9rem; font-weight: 800; color: var(--ink); font-size: 1.05rem; }
.pay__num { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: var(--mist); color: var(--violet); font-size: .82rem; font-weight: 800; }
.pay__grid { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.field { display: grid; gap: .35rem; }
.field--full { grid-column: 1 / -1; }
.field > span { font-size: .92rem; font-weight: 700; color: var(--ink); }
.field em { font-style: normal; font-weight: 500; color: var(--muted); }
.field input {
  width: 100%; font: inherit; font-size: 1rem; color: var(--ink); padding: .8rem 1rem; border-radius: var(--r-sm);
  border: 1.5px solid rgba(26, 5, 56, .16); background: #dccaf6; transition: border-color .2s, background .2s, box-shadow .2s;
}
.field input::placeholder { color: #b3abc0; }
.field input:hover { border-color: rgba(26, 5, 56, .22); }
.field input:focus { outline: none; border-color: var(--violet); background: var(--surface); box-shadow: 0 0 0 4px rgba(119, 76, 179, .15); }
.field input[aria-invalid] { border-color: #d64545; background: #fff6f6; }

.addon {
  position: relative; display: grid; grid-template-columns: 64px 1fr auto; align-items: center; gap: .9rem;
  padding: .8rem 3.2rem .8rem .8rem; border-radius: var(--r); cursor: pointer;
  border: 2px dashed var(--lavender); background: var(--mist); transition: border-color .2s, background .2s;
}
.addon:has(input:checked) { border-style: solid; border-color: var(--violet); background: #efe4ff; }
.addon input { position: absolute; opacity: 0; pointer-events: none; }
.addon__img { width: 64px; height: 64px; border-radius: 12px; object-fit: cover; }
.addon__text { display: grid; line-height: 1.35; }
.addon__text b { color: var(--ink); }
.addon__text small { color: var(--muted); font-size: .95rem; }
.addon__price { font-weight: 800; color: var(--violet); white-space: nowrap; }
.addon__check { position: absolute; right: 1rem; top: 50%; translate: 0 -50%; width: 24px; height: 24px; border-radius: 7px; border: 2px solid var(--violet); background: var(--surface); display: grid; place-items: center; }
.addon input:checked ~ .addon__check { background: var(--violet); }
.addon input:checked ~ .addon__check::after { content: "✓"; color: #fff; font-weight: 800; font-size: .85rem; }
.addon:has(input:focus-visible) { outline: 3px solid var(--violet); outline-offset: 3px; }

.methods { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; margin-bottom: .9rem; }
.method { position: relative; cursor: pointer; }
.method input { position: absolute; opacity: 0; pointer-events: none; }
.method__body { display: grid; gap: .35rem; height: 100%; padding: .85rem 1rem .85rem 2.6rem; border-radius: var(--r-sm); border: 1.5px solid var(--line); background: var(--surface); transition: border-color .2s, box-shadow .2s; }
.method__body::before { content: ""; position: absolute; left: 1rem; top: 1.05rem; width: 16px; height: 16px; border-radius: 50%; border: 2px solid rgba(26, 5, 56, .25); background: var(--surface); transition: border .2s; box-sizing: border-box; }
.method input:checked + .method__body { border-color: var(--violet); box-shadow: 0 0 0 3px rgba(119, 76, 179, .14); }
.method input:checked + .method__body::before { border: 5px solid var(--violet); }
.method input:focus-visible + .method__body { outline: 3px solid var(--violet); outline-offset: 2px; }
.method b { color: var(--ink); font-size: 1.02rem; }
.method small { color: var(--muted); font-size: .9rem; }
.method__brands { display: flex; gap: .35rem; }
.method__brands img { height: 20px; width: auto; border-radius: 4px; box-shadow: 0 0 0 1px var(--line); }

.card-box__frame { display: grid; gap: .6rem; padding: .9rem; border-radius: var(--r-sm); background: #dccaf6; border: 1.5px dashed rgba(26, 5, 56, .14); }
.card-box__split { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.card-box__row { display: flex; justify-content: space-between; gap: .5rem; padding: .8rem 1rem; border-radius: 10px; background: var(--surface); box-shadow: 0 0 0 1px var(--line); font-size: .95rem; color: #b3abc0; }
.card-box__row span:first-child { color: var(--muted); font-weight: 600; }
.card-box__note { margin: .7rem 0 0; font-size: .9rem; color: var(--muted); }
.bank-box p { margin: 0; padding: 1rem 1.1rem; border-radius: var(--r-sm); background: var(--mist); color: var(--text); font-size: 1rem; }

.pay__error { margin: -.6rem 0 0; padding: .7rem 1rem; border-radius: var(--r-sm); background: #fff1f1; color: #b42323; font-size: .9rem; font-weight: 600; }
.pay__submit { font-size: 1.1rem; }
.pay__submit [data-total] { font-variant-numeric: tabular-nums; }
.pay__secure { margin: -.8rem 0 0; text-align: center; font-size: .88rem; color: var(--muted); }

@media (max-width: 900px) { .checkout__card { grid-template-columns: 1fr; } .order__lines { margin-top: 0; } }
.nowrap { white-space: nowrap; }
@media (max-width: 480px) {
  .pay__grid, .methods { grid-template-columns: 1fr; }
  .addon { grid-template-columns: 56px 1fr; align-items: start; padding: .9rem 2.8rem .9rem .9rem; }
  .addon__img { width: 56px; height: 56px; }
  .addon__text small { display: none; }
  .addon__price { grid-column: 2; margin-top: -.5rem; }
  .addon__check { top: 1.1rem; translate: 0 0; right: .9rem; }
  .card-box__row { flex-direction: column; gap: .15rem; }
}

/* ---------- faq ---------- */
.faq { background: var(--surface-2); }
.faq__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.faq__list { display: grid; gap: .7rem; }
.faq details { border-radius: var(--r); background: #dccaf6; transition: background .2s; }
.faq details[open] { background: #d3bdf3; }
.faq summary { list-style: none; cursor: pointer; padding: 1.2rem 3.6rem 1.2rem 1.4rem; font-size: 1.08rem; font-weight: 800; color: var(--ink); position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 1.2rem; top: 50%; translate: 0 -50%; width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; background: var(--surface); color: var(--violet); font-size: 1.3rem; transition: rotate .25s; }
.faq details[open] summary::after { rotate: 45deg; }
.faq details p { padding: 0 1.4rem 1.3rem; margin: 0; color: #5c5372; font-size: 1.04rem; }
@media (max-width: 860px) { .faq__grid { grid-template-columns: 1fr; } }

/* ---------- final + footer ---------- */
.final { padding: 0 clamp(8px, 1.5vw, 20px) clamp(8px, 1.5vw, 20px); background: var(--surface-2); }
.final__inner {
  text-align: center; padding-block: clamp(64px, 10vw, 110px); border-radius: var(--r-lg);
  background: radial-gradient(circle at 20% 0%, var(--violet), transparent 50%), radial-gradient(circle at 90% 100%, var(--purple), transparent 50%), var(--ink);
  max-width: none;
}
.final h2 { color: #fff; font-family: var(--f-display); font-size: clamp(2.2rem, 6vw, 4.5rem); letter-spacing: -.03em; margin-bottom: .8rem; }
.final p { color: var(--lilac); font-weight: 700; margin-bottom: 2rem; }
.footer { background: var(--surface-2); padding-block: 1.8rem calc(1.8rem + env(safe-area-inset-bottom, 0px)); font-size: .95rem; color: var(--muted); }
.footer__inner { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer a { text-decoration: none; font-weight: 700; }
.footer__links { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.nav__links a[aria-current="page"] { opacity: 1; box-shadow: inset 0 -2px 0 var(--violet); }

/* ---------- mobile sticky CTA ---------- */
.sticky-cta {
  position: fixed; left: 10px; right: 10px; bottom: calc(10px + env(safe-area-inset-bottom, 0px)); z-index: 40;
  display: none; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .7rem .7rem .7rem 1.1rem; border-radius: 999px; background: var(--ink); color: #fff;
  box-shadow: 0 16px 40px -10px rgba(26, 5, 56, .6);
  transform: translateY(150%); transition: transform .35s ease;
}
.sticky-cta.is-visible { transform: none; }
.sticky-cta div { display: grid; line-height: 1.2; }
.sticky-cta small { color: var(--lavender); font-size: .75rem; }
@media (max-width: 820px) { .sticky-cta { display: flex; } }

/* ---------- print / PDF ---------- */
@media print {
  @page { size: 1280px 1800px; margin: 0; }
  html, body { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  .nav { position: static; backdrop-filter: none; }
  .sticky-cta, .skip, .lightbox, .wall__more, .hero__cta .link-arrow { display: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .wall { max-height: none !important; }
  .wall::after { display: none; }
  .section, .pain-list li, .timeline li, .perk, .quote, .voice, .checkout__card, .faq details, .shift__col { break-inside: avoid; }
  .phase-panel[hidden] { display: block !important; margin-top: 1rem; height: auto; }
  .phase-tabs { display: none; }
  .phases__grid { grid-template-columns: 1fr 240px; }
  .phase-panels { display: grid; gap: 1rem; }
  .faq details:not([open]) > *:not(summary) { display: block; }
}

/* ---------- reveal ---------- */
.reveal {
  opacity: 0;
  transition: opacity .9s cubic-bezier(.16, 1, .3, 1), transform 1.1s cubic-bezier(.16, 1, .3, 1);
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}
.reveal--up { transform: translate3d(0, 44px, 0); }
.reveal--left { transform: translate3d(-56px, 0, 0); }
.reveal--right { transform: translate3d(56px, 0, 0); }
.reveal--zoom { transform: translate3d(0, 30px, 0) scale(.94); }
.reveal.is-in { opacity: 1; transform: none; }
/* Bez animacija: samo fade, bez pomeranja */
.reduce-motion .reveal { transform: none !important; transition: opacity 1s ease; transition-delay: var(--d, 0ms); }
.pains__img img, .solution__img img, .phases__img img, .hero__visual img { will-change: transform; }
@media (max-width: 600px) {
  .reveal--left, .reveal--right { transform: translate3d(0, 36px, 0); }
}
