/* ===========================================================
   NIKOLA NIVO — vizualni sistem "grafit + brušeni čelik"
   Identitet izveden iz logotipa: chrome NN monogram, zeleni
   potez, tamna grafitna podloga.

   Razlike u odnosu na raniju verziju (da se ne čita kao
   preslikan predložak):
   - podloga je neutralni grafit, ne zelenkasto crna
   - zelena je akcent (linije, oznake, gumbi), ne velike plohe
   - oštri rezovi (4-8px) umjesto zaobljenih kartica
   - display tipografija Space Grotesk + Inter za tekst
   - fotografije u hladnom čeličnom duotonu, ne u čistom sivom
   - metalni gradijent na ključnoj riječi naslova (kao logo)
   =========================================================== */

:root {
  /* --- podloge --- */
  --bg: #0b0c0e;
  --bg-2: #101216;
  --card: #15181c;
  --card-2: rgba(255, 255, 255, 0.04);

  /* --- brand zelena (potez iz logotipa) ---
     Namjerno prigušena: manje zasićenja od neonske varijante, da na
     tamnoj podlozi ne svijetli. Tekst na zelenoj plohi je bijel jer
     tamni ink na ovako dubokoj zelenoj pada ispod WCAG AA. --- */
  --green: #35835a;
  --green-hi: #74b795;
  --green-deep: #0d1f16;
  --green-ink: #ffffff; /* tekst na zelenoj plohi */

  /* --- brušeni čelik (chrome monogram) --- */
  --steel-1: #eef2f5;
  --steel-2: #98a2ab;
  --steel-3: #5b646d;
  /* Bez tamnih stopova — inače na tamnoj podlozi dijelovi slova
     "propadnu" i izgleda kao greška u iscrtavanju. */
  --chrome: linear-gradient(
    180deg,
    #ffffff 0%,
    #e7ecf0 26%,
    #9aa4ad 56%,
    #e2e8ec 78%,
    #b4bdc5 100%
  );

  /* --- signalna (problem / bolna točka) --- */
  --red: #d9503f;
  --red-soft: rgba(217, 80, 63, 0.34);

  --white: #f7f8f9;
  --gray: #868f98;
  --gray-2: #aab3bb;

  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.15);

  --r: 4px;
  --r-lg: 8px;
  --wrap: 1240px;
  --px: clamp(18px, 5vw, 60px);
  --py: clamp(60px, 6.4vw, 104px);

  /* Space Grotesk nosi naslove i brojke, Inter tekst. */
  --fd: "Space Grotesk", "Inter", system-ui, sans-serif;
  --f: "Inter", system-ui, -apple-system, sans-serif;

  /* hladni čelični duoton za sve fotografije */
  --photo: grayscale(1) contrast(1.08) sepia(0.22) hue-rotate(176deg) saturate(1.15);
}

* {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: var(--f);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Fini film zrna preko cijele stranice — daje dubinu tamnoj podlozi
   i skida "plastični" izgled ravnog crnog ekrana. */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}

@media (prefers-reduced-motion: reduce) {
  body::after {
    display: none;
  }
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: rgba(116, 183, 149, 0.32);
  color: var(--white);
}

/* tanki grafitni scrollbar umjesto sistemskog svijetlog */
html {
  scrollbar-color: #2c3137 var(--bg);
  scrollbar-width: thin;
}

:focus-visible {
  outline: 2px solid var(--green-hi);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 100;
  padding: 12px 18px;
  border-radius: var(--r);
  background: var(--green);
  color: var(--green-ink);
  font-size: 14px;
  font-weight: 700;
  transition: top 0.18s ease;
}

.skip:focus {
  top: 12px;
}

h1,
h2,
h3,
h4,
p,
ul,
figure {
  margin: 0;
}

/* Verzali s kvačicama (Č Š Ž Ć Đ) traže line-height >= 1.1 da
   dijakritika ne udari u red iznad. */
h1 {
  font-family: var(--fd);
  font-size: clamp(42px, 6.8vw, 82px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.028em;
  text-transform: uppercase;
  text-wrap: balance;
}

h2 {
  font-family: var(--fd);
  font-size: clamp(31px, 4.7vw, 58px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.024em;
  text-transform: uppercase;
  text-wrap: balance;
}

h3 {
  font-family: var(--fd);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

h4 {
  font-family: var(--fd);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--px);
}

.wrap.narrow {
  max-width: 880px;
}

.sec {
  padding: var(--py) 0;
  scroll-margin-top: 74px;
}

.center {
  text-align: center;
}

.copy {
  margin-top: 18px;
  max-width: 58ch;
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray);
}

.copy.wide {
  max-width: 70ch;
}

.copy.center {
  margin-left: auto;
  margin-right: auto;
}

.copy.strong {
  color: var(--white);
  font-weight: 600;
}

.copy.big {
  font-size: 19px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.55;
}

.copy b {
  color: var(--white);
}

.hl {
  color: var(--green-hi);
}

.hl-red {
  color: var(--red);
}

.mark {
  color: var(--green-hi);
}

.mark-red {
  color: var(--red);
}

/* ---- Oznake sekcija ------------------------------------------
   Mala oznaka s blagom podlogom i okvirom. Vidljivija od same
   crtice, a podloga se tonira po varijanti. */

.pill {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  width: fit-content;
  margin-bottom: 18px;
  padding: 6px 10px;
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.05);
  font-family: var(--fd);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel-2);
}

.pill-green {
  color: var(--green-hi);
  border-color: rgba(116, 183, 149, 0.32);
  background: rgba(116, 183, 149, 0.1);
}

.pill-red {
  color: var(--red);
  border-color: var(--red-soft);
  background: rgba(217, 80, 63, 0.1);
}

.pill-dark,
.pill-out {
  color: var(--steel-2);
  border-color: var(--line-2);
  background: rgba(255, 255, 255, 0.05);
}

/* oznaka iznad centriranog naslova */
.pill.mid {
  align-self: center;
  margin-left: auto;
  margin-right: auto;
}

/* ---- Gumbi ---------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 16px 30px;
  border: 1px solid transparent;
  border-radius: var(--r);
  font-family: var(--fd);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.18s ease, border-color 0.18s ease,
    color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.btn-green {
  background: linear-gradient(180deg, #347e57, #276244);
  color: var(--green-ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 12px 26px -14px rgba(53, 131, 90, 0.5);
}

.btn-green:hover {
  background: linear-gradient(180deg, #2f7550, #23583d);
  transform: translateY(-1px);
}

/* Strelica na glavnim CTA gumbima — na hover se pomakne naprijed. */
.btn-green:not(.btn-sm)::after {
  content: "";
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background: currentColor;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E") center / contain no-repeat;
}

.btn-green:hover::after,
.btn-green:focus-visible::after {
  transform: translateX(4px);
}

.btn-ghost {
  border-color: var(--line-2);
  color: var(--white);
}

.btn-ghost:hover {
  border-color: var(--steel-2);
  background: rgba(255, 255, 255, 0.04);
}

.btn-dark {
  background: #05070a;
  border-color: var(--line-2);
  color: var(--white);
}

.btn-dark:hover {
  background: #000;
  border-color: var(--green);
}

.btn-sm {
  min-height: 42px;
  padding: 11px 20px;
  font-size: 12px;
}

.btn-full {
  display: flex;
  width: 100%;
  margin-top: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

/* ---- Header --------------------------------------------------- */

.hdr {
  position: sticky; /* ujedno sidro za mobilni nav panel */
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 13px var(--px);
  background: rgba(11, 12, 14, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Logo je kvadrat s natpisom; na 38px natpis je nečitak, pa
   zumiramo samo NN monogram — ime ionako stoji pored. */
.logo-mark {
  display: block;
  width: 38px;
  height: 38px;
  overflow: hidden;
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  background: #1a1c1f;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.75);
  transform-origin: 50% 0;
}

.logo-text {
  font-family: var(--fd);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: clamp(16px, 2.2vw, 30px);
}

.nav a {
  font-family: var(--fd);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel-2);
  transition: color 0.18s ease;
}

.nav a:hover {
  color: var(--white);
}

.nav .nav-cta {
  display: none;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 10px;
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  background: transparent;
  cursor: pointer;
}

.burger span {
  display: block;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.22s ease, opacity 0.18s ease;
}

.burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ---- Hero ----------------------------------------------------- */

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: min(90vh, 850px);
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Hero fotka je visoka — 2% drži lice u kadru na svim visinama. */
  object-position: 66% 2%;
  filter: var(--photo) brightness(0.66);
}

.hero-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(11, 12, 14, 0.96) 0%, rgba(11, 12, 14, 0.85) 42%, rgba(11, 12, 14, 0.25) 80%),
    linear-gradient(0deg, rgba(11, 12, 14, 0.97) 2%, rgba(11, 12, 14, 0) 48%);
}

/* Tanka zelena nit na dnu heroja — potpis brenda, ne ukras. */
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--green) 0%, rgba(53, 131, 90, 0) 45%);
}

.hero-in {
  position: relative;
  padding-top: clamp(70px, 12vw, 130px);
  padding-bottom: clamp(34px, 4vw, 56px);
}

.hero h1 {
  max-width: 17ch;
}

/* Na desktopu naslov mora stati u lijevu polovicu — inače drugi red
   prelazi preko lica na fotografiji. */
/* em, ne ch: ch ovisi o tome je li font već učitan, pa je naslov
   znao skočiti s tri na četiri reda ("VRATI" sam u redu). */
@media (min-width: 981px) {
  .hero h1 {
    max-width: 6.9em;
  }

  .lede {
    max-width: 34ch;
  }
}

/* Chrome riječ u naslovu — isti materijal kao NN monogram u logotipu.
   Zamjenjuje raniji outline efekt. */
.ghost {
  background: var(--chrome);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  /* Kad se naslov prelomi, svaki red dobija cijeli gradijent —
     bez toga drugi red ispadne tamniji od prvog. */
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.lede {
  margin-top: 22px;
  max-width: 46ch;
  font-size: 17px;
  line-height: 1.65;
  color: var(--gray-2);
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 5vw, 64px);
  margin-top: clamp(38px, 5vw, 64px);
  padding-top: 24px;
  border-top: 1px solid var(--line-2);
}

/* align-content drži opis odmah ispod broja i kad je susjedni
   opis u dva reda (inače se red rasteže i opis "pobjegne" dolje). */
.stat-row > div {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  align-content: flex-start;
  gap: 7px;
  max-width: 220px;
}

.stat-row b {
  font-family: var(--fd);
  font-size: clamp(32px, 3.6vw, 46px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  background: var(--chrome);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-row i {
  font-family: var(--fd);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--green-hi);
  text-transform: uppercase;
}

.stat-row span {
  width: 100%;
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--gray);
}

/* ---- Traka ispod heroja ----------------------------------------
   Tihi čelični natpisi koji polako klize. Dva identična seta jedan
   do drugog — pomak od -50% vraća traku točno na početak. */

.ticker {
  position: relative;
  overflow: hidden;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.ticker-track {
  display: flex;
  width: max-content;
}

.ticker-set {
  display: flex;
  flex-shrink: 0;
}

.ticker span {
  display: inline-flex;
  align-items: center;
  font-family: var(--fd);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--steel-2);
}

/* zeleni romb između stavki — odjek poteza iz logotipa */
.ticker span::after {
  content: "";
  width: 5px;
  height: 5px;
  margin: 0 clamp(26px, 3vw, 44px);
  background: var(--green-hi);
  transform: rotate(45deg);
  opacity: 0.7;
}

@media (prefers-reduced-motion: no-preference) {
  .ticker-track {
    animation: ticker 48s linear infinite;
  }

  .ticker:hover .ticker-track {
    animation-play-state: paused;
  }
}

@keyframes ticker {
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

/* ---- Split layout --------------------------------------------- */

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: clamp(28px, 3.6vw, 54px);
  align-items: center;
}

.split-rev > *:first-child {
  order: 2;
}

.shot {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
}

.shot img {
  width: 100%;
  height: clamp(280px, 32vw, 430px);
  object-fit: cover;
  object-position: 50% 22%;
  filter: var(--photo);
}

/* hairline okvir preko fotke — drži kadar "uokviren", ne zaobljen */
.shot::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--line);
  border-radius: inherit;
  pointer-events: none;
}

.stack {
  display: grid;
  gap: 16px;
}

/* Jedan veliki kadar umjesto dva mala — visina prati tekst pored. */
.stack .shot img {
  height: clamp(320px, 34vw, 470px);
  object-position: 50% 18%;
}

/* Gym kadar: lice je uz lijevi rub i blizu vrha. */
.stack .shot img.gym {
  object-position: 8% 10%;
}

/* Uspravni kadar s leđa — tamna pozadina fotke se stapa sa stranicom,
   pa okvir smije biti viši od teksta pored. */
.stack .shot-tall img {
  height: clamp(340px, 46vw, 620px);
}

.stack .shot img.back {
  object-position: 50% 22%;
}

/* Kartica "tvoja nedelja" preko fotke: vizualno ponavlja poruku
   "tri treninga ako realno možeš tri". */
.week {
  position: absolute;
  left: clamp(14px, 2vw, 24px);
  bottom: clamp(14px, 2vw, 24px);
  display: grid;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  background: rgba(13, 15, 18, 0.72);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  backdrop-filter: blur(14px) saturate(1.2);
  box-shadow: 0 20px 44px -24px rgba(0, 0, 0, 0.9);
}

.week-label {
  font-family: var(--fd);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel-2);
}

.week-days {
  display: flex;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.week-days li {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line-2);
  border-radius: 2px;
  font-family: var(--fd);
  font-size: 11px;
  font-weight: 700;
  color: var(--gray);
}

.week-days li.on {
  border-color: transparent;
  background: linear-gradient(180deg, #347e57, #276244);
  color: var(--green-ink);
}

.week-note {
  font-size: 13px;
  color: var(--gray-2);
}

.week-note b {
  color: var(--white);
}

/* ---- Kartice --------------------------------------------------- */

.card {
  position: relative;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.card-red::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 24px;
  width: 2px;
  height: 26px;
  background: var(--red);
}

.card h3 {
  margin-top: 14px;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.card p {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray);
}

.num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line-2);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.03);
  font-family: var(--fd);
  font-size: 13px;
  font-weight: 700;
  color: var(--steel-1);
}

.num-red {
  border-color: var(--red-soft);
  color: var(--red);
}

.cards-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 28px;
}

/* ---- Checklist ------------------------------------------------- */

.checks {
  display: grid;
  gap: 12px;
  margin-top: 20px;
  padding: 0;
  list-style: none;
}

.checks li {
  position: relative;
  padding-left: 32px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

/* kvačica bez okvira — mirnije od punog zelenog kvadrata */
.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  background: var(--green-hi);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / contain no-repeat;
}

.checks.small li {
  font-weight: 400;
  color: var(--gray-2);
}

/* ---- Rezultati ------------------------------------------------
   Nije više puna zelena ploha nego grafitni panel s hairline
   rubovima i tihim zelenim sjajem. */

.green-sec {
  position: relative;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.green-sec::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -220px;
  width: min(900px, 130vw);
  height: 420px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(53, 131, 90, 0.22), rgba(53, 131, 90, 0) 68%);
  pointer-events: none;
}

.green-sec .wrap {
  position: relative;
}

.green-sec h2 {
  margin-top: 4px;
}

.green-sec .copy {
  color: var(--gray-2);
}

.tgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
  margin: 36px 0 32px;
}

/* Kartice ostaju čitljive širine i centrirane bez obzira koliko ih
   ima (1, 2 ili 3) — umjesto da se razvuku preko cijelog grida. */
.tgrid-fit {
  grid-template-columns: repeat(auto-fit, minmax(260px, 420px));
  justify-content: center;
}

.tcard {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--card);
}

.ba {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  aspect-ratio: 4 / 3;
}

/* Pre/posle fotke izrezane su na isti torzo-kadar (omjer 0.72 po
   slici), pa okvir prati taj omjer: 2 x 0.72 = 1.44 = 36/25. */
.tcard .ba:has(.ba-img) {
  aspect-ratio: 36 / 25;
}

.ba span {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  font-family: var(--fd);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel-2);
}

.ba-img {
  position: relative;
  overflow: hidden;
}

.ba-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: var(--photo);
}

.ba-img span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 5px 9px;
  border-radius: 2px;
  background: rgba(5, 7, 10, 0.72);
  backdrop-filter: blur(4px);
  color: var(--steel-1);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ba-img span.after {
  background: var(--green);
  color: var(--green-ink);
}

.tbody {
  padding: 20px;
}

.tnums {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  align-items: baseline;
}

.tnums b {
  font-family: var(--fd);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--green-hi);
}

.tnums i {
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  color: var(--steel-2);
}

.tchips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}

.tchips span {
  padding: 5px 10px;
  border: 1px solid var(--line-2);
  border-radius: 2px;
  font-size: 12px;
  color: var(--gray-2);
}

.tbody p {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--gray);
}

/* ---- Numerisani grid (01–06) ----------------------------------- */

.nsplit {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(300px, 1.4fr);
  gap: clamp(32px, 4.5vw, 72px);
  align-items: start;
}

.nsplit-head {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.nsplit-head .copy {
  margin-bottom: 30px;
}

.nsteps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.nstep {
  display: flex;
  flex-direction: column;
  min-height: 212px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  transition: border-color 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.nstep:hover {
  border-color: var(--line-2);
  transform: translateY(-3px);
}

.nnum {
  font-family: var(--fd);
  font-size: clamp(34px, 3.4vw, 46px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  background: var(--chrome);
  -webkit-background-clip: text;
  background-clip: text;
  opacity: 0.42;
}

.nstep h3 {
  margin-top: auto;
  padding-top: 28px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.nstep p {
  margin-top: 9px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray);
}

/* zadnji korak — zeleni rub umjesto pune zelene plohe */
.nstep.is-green {
  border-color: rgba(53, 131, 90, 0.5);
  background: linear-gradient(180deg, rgba(53, 131, 90, 0.16), rgba(53, 131, 90, 0.02));
}

.nstep.is-green .nnum {
  background: none;
  -webkit-text-fill-color: var(--green-hi);
  color: var(--green-hi);
  opacity: 1;
}

.nstep.is-green p {
  color: var(--gray-2);
}

/* ---- Aplikacija ------------------------------------------------ */

.feat {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.feat > div {
  padding: 17px;
  border: 1px solid var(--line);
  border-left: 2px solid rgba(53, 131, 90, 0.45);
  border-radius: 0 var(--r) var(--r) 0;
  background: var(--card-2);
}

.feat h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.feat p {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--gray);
}

.phones {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 3vw, 40px);
  justify-content: center;
  align-items: flex-start;
}

/* Tihi zeleni sjaj iza telefona — daje im podlogu bez kartice.
   Ne smije biti širi od roditelja, inače na mobitelu gura stranicu
   u horizontalni scroll. */
.phones::before {
  content: "";
  position: absolute;
  inset: 10% 0;
  background: radial-gradient(ellipse at center, rgba(53, 131, 90, 0.28), rgba(53, 131, 90, 0) 68%);
  pointer-events: none;
}

.phone {
  position: relative;
  flex: 1 1 200px;
  max-width: 250px;
}

/* Telefoni su izrezani iz screenshotova s prozirnim uglovima,
   pa stoje slobodno na podlozi umjesto u sivom okviru. */
.phone-crop img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 34px 38px rgba(0, 0, 0, 0.7));
}

.phone-2 {
  transform: translateY(44px);
}

.phone figcaption {
  margin-top: 22px;
  font-family: var(--fd);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  color: var(--gray);
}

/* ---- Programi -------------------------------------------------- */

.progs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.prog {
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 2.6vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
}

.prog-main {
  position: relative;
  border-color: rgba(53, 131, 90, 0.45);
  background: linear-gradient(180deg, rgba(53, 131, 90, 0.13), rgba(53, 131, 90, 0.015));
}

/* zelena nit po vrhu istaknutog programa */
.prog-main::before {
  content: "";
  position: absolute;
  left: -1px;
  right: -1px;
  top: -1px;
  height: 2px;
  background: linear-gradient(90deg, var(--green-hi), rgba(53, 131, 90, 0));
}

/* Naziv paketa je nosilac kartice: velik, verzalan, uz zelenu nit
   na istaknutom programu. Opis ispod ide tiše i manjim slovima. */
.prog-name {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--white);
}

.prog-main .prog-name {
  color: var(--green-hi);
}

.prog-badge {
  position: absolute;
  top: clamp(22px, 2.6vw, 34px);
  right: clamp(22px, 2.6vw, 34px);
  padding: 6px 10px;
  border-radius: 2px;
  background: linear-gradient(180deg, #347e57, #276244);
  font-family: var(--fd);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-ink);
}

/* naslov ne smije ući pod oznaku */
.prog-main .prog-name {
  padding-right: 120px;
}

.prog-sub {
  margin-top: 12px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--gray-2);
}

.prog-lede {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray);
}

.prog .checks {
  margin-bottom: 30px;
}

.phases {
  display: grid;
  gap: 18px;
  margin: 26px 0 30px;
}

.phases > div {
  padding-left: 16px;
  border-left: 1px solid var(--line-2);
}

.phases h4 {
  color: var(--green-hi);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
}

.phases p {
  margin-top: 7px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray);
}

/* ---- O meni ----------------------------------------------------- */

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.tags span {
  padding: 8px 13px;
  border: 1px solid var(--line-2);
  border-radius: 2px;
  font-family: var(--fd);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-2);
}

.certs {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.certs .checks {
  margin-top: 16px;
}

.grid-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.grid-photos img {
  width: 100%;
  height: clamp(210px, 26vw, 330px);
  border-radius: var(--r-lg);
  object-fit: cover;
  filter: var(--photo);
}

.grid-photos .span2 {
  display: block;
  grid-column: span 2;
}

.grid-photos .span2 img {
  display: block;
  height: clamp(200px, 24vw, 300px);
  object-position: 50% 30%;
}

.grid-photos .span2 img.gym {
  object-position: 50% 6%;
}

/* ---- FAQ --------------------------------------------------------
   Hairline redovi umjesto punih zelenih blokova. */

.faq {
  display: grid;
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
  transition: background-color 0.2s ease;
}

.faq details[open] {
  background: rgba(255, 255, 255, 0.018);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 20px 24px 22px;
  cursor: pointer;
  list-style: none;
  font-family: var(--fd);
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--white);
  transition: color 0.18s ease;
}

.faq summary:hover {
  color: var(--green-hi);
}

.faq summary::-webkit-details-marker {
  display: none;
}

/* zeleni marker lijevo od otvorenog pitanja */
.faq details {
  position: relative;
}

.faq details::before {
  content: "";
  position: absolute;
  left: 0;
  top: 26px;
  width: 2px;
  height: 0;
  background: var(--green-hi);
  transition: height 0.22s ease;
}

.faq details[open]::before {
  height: 22px;
}

.faq summary::after {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: currentColor;
  transition: transform 0.24s ease;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / contain no-repeat;
}

.faq details[open] summary::after {
  transform: rotate(135deg);
}

.faq p {
  padding: 0 22px 26px;
  max-width: 68ch;
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray);
}

/* ---- Mid-page CTA ----------------------------------------------- */

.mid-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(52px, 5vw, 76px) 0;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}

.mid-cta::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -160px;
  width: min(760px, 120vw);
  height: 360px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(53, 131, 90, 0.3), rgba(53, 131, 90, 0) 70%);
  pointer-events: none;
}

.mid-cta .wrap {
  position: relative;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  border: 1px solid rgba(53, 131, 90, 0.45);
  border-radius: var(--r);
  background: rgba(53, 131, 90, 0.1);
  color: var(--green-hi);
}

.mid-cta .btn {
  margin-top: 32px;
}

/* ---- Prijava ---------------------------------------------------- */

.cta-sec {
  position: relative;
  overflow: hidden;
}

.cta-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 24%;
  filter: var(--photo) brightness(0.4);
}

.cta-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 12, 14, 0.97) 0%, rgba(11, 12, 14, 0.86) 55%, rgba(11, 12, 14, 0.62) 100%);
}

.cta-in {
  position: relative;
  align-items: start;
}

/* Naslov prijave je dugačka rečenica — u punoj h2 veličini ispadne
   pet redova verzala. */
.cta-title {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.1;
}

.next {
  display: grid;
  gap: 0;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  max-width: 52ch;
  border-top: 1px solid var(--line);
}

.next li {
  display: flex;
  gap: 18px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.next b {
  flex-shrink: 0;
  min-width: 22px;
  font-variant-numeric: tabular-nums;
  font-family: var(--fd);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--green-hi);
}

.next span {
  font-size: 15px;
  line-height: 1.55;
  color: var(--gray);
}

.next strong {
  font-weight: 600;
  color: var(--white);
}

.form {
  display: grid;
  gap: 15px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  background: rgba(16, 18, 22, 0.92);
  backdrop-filter: blur(8px);
  box-shadow: 0 30px 70px -40px rgba(0, 0, 0, 0.9);
}

.form h3 {
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.form label {
  display: grid;
  gap: 7px;
}

.form label span {
  font-family: var(--fd);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel-2);
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  background: #0a0c0f;
  color: var(--white);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.form textarea {
  resize: vertical;
}

/* Vlastita strelica — sistemska na Windowsu razbija stil forme. */
.form select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2398a2ab' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 17px;
}

.form select option {
  background: #0a0c0f;
  color: var(--white);
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--green-hi);
  box-shadow: 0 0 0 3px rgba(116, 183, 149, 0.14);
}

.form .btn-full {
  margin-top: 6px;
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form label em {
  font-style: normal;
  color: var(--gray);
}

.form-note {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  color: var(--gray);
}

.ok {
  padding: 12px 14px;
  border: 1px solid var(--green-hi);
  border-radius: var(--r);
  font-size: 14px;
  color: var(--green-hi);
}

.ok.is-warn {
  border-color: var(--red);
  color: var(--red);
}

/* ---- P.S. -------------------------------------------------------- */

.ps-sec {
  padding: clamp(50px, 5vw, 76px) 0;
  text-align: center;
}

.ps-title {
  font-size: clamp(44px, 5.6vw, 70px);
  letter-spacing: -0.04em;
}

.ps-sec .copy {
  margin-top: 24px;
  max-width: 62ch;
  font-size: 17px;
}

.ps-sec .copy i {
  font-style: italic;
  color: var(--white);
}

.ps-sec .btn {
  margin-top: 32px;
}

/* ---- Footer ------------------------------------------------------ */

.ftr {
  position: relative;
  overflow: hidden;
  padding: clamp(40px, 5vw, 64px) 0 0;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}

.ftr-in {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 32px;
  align-items: center;
  justify-content: space-between;
}

.ftr-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px clamp(18px, 2.4vw, 32px);
}

.ftr-nav a {
  font-family: var(--fd);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel-2);
  transition: color 0.18s ease;
}

.ftr-nav a:hover {
  color: var(--white);
}

/* crta samo preko širine sadržaja, ne preko paddinga .wrap */
.ftr-base {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
  margin-top: 36px;
  padding-top: 22px;
  background: linear-gradient(var(--line), var(--line)) top center / calc(100% - 2 * var(--px)) 1px no-repeat;
}

.ftr-base p {
  font-family: var(--fd);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
}

/* Veliki čelični potpis na dnu — odrezan rubom stranice, kao žig. */
.ftr-mark {
  margin: clamp(18px, 3vw, 34px) 0 0;
  font-family: var(--fd);
  font-size: clamp(48px, 15.5vw, 236px);
  font-weight: 700;
  line-height: 0.74;
  letter-spacing: -0.04em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  background: linear-gradient(180deg, rgba(238, 242, 245, 0.16), rgba(238, 242, 245, 0.02) 78%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  user-select: none;
}

/* ---- Sticky mobile CTA ------------------------------------------- */

.sticky {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: var(--r);
  background: linear-gradient(180deg, #347e57, #276244);
  color: var(--green-ink);
  font-family: var(--fd);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.6);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.sticky.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

/* ---- Scroll reveal ------------------------------------------------
   Blokovi ulaze u kadar uz blagi pomak. Smjer dodjeljuje script.js:
   stupci u .split sekcijama dolaze bočno (lijevo/desno), ostalo
   se podiže. Bočni pomak radi samo na širokom ekranu — kad layout
   padne u jedan stupac, sve ide vertikalno da nema horizontalne
   trzavice. */

.reveal {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition: opacity 0.85s cubic-bezier(0.16, 0.84, 0.28, 1),
    transform 0.85s cubic-bezier(0.16, 0.84, 0.28, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

/* Slike/okviri dobiju i blagi zoom-out — daje dubinu bez skakanja. */
.reveal-media {
  transform: translate3d(0, 30px, 0) scale(1.04);
}

@media (min-width: 981px) {
  .reveal-l {
    transform: translate3d(-56px, 0, 0);
  }

  .reveal-r {
    transform: translate3d(56px, 0, 0);
  }

  .reveal-l.reveal-media {
    transform: translate3d(-56px, 0, 0) scale(1.04);
  }

  .reveal-r.reveal-media {
    transform: translate3d(56px, 0, 0) scale(1.04);
  }
}

/* Mora ići iza pomaka iznad: .reveal-l.reveal-media ima istu
   specifičnost, pa bi inače slika ostala trajno pomaknuta. */
.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-media,
  .reveal-l,
  .reveal-r {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---- Responsive ---------------------------------------------------- */

@media (max-width: 980px) {
  .burger {
    display: flex;
  }

  .hdr-cta {
    display: none;
  }

  /* Nav postaje panel ispod headera; otvara ga .burger. */
  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    gap: 0;
    padding: 8px var(--px) 18px;
    background: rgba(11, 12, 14, 0.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
  }

  .nav:not(.is-open) {
    display: none;
  }

  .nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
  }

  .nav .nav-cta {
    display: block;
    margin-top: 16px;
    padding: 16px 20px;
    border-bottom: 0;
    border-radius: var(--r);
    background: linear-gradient(180deg, #347e57, #276244);
    color: var(--green-ink);
    text-align: center;
  }

  .split-rev > *:first-child {
    order: 0;
  }

  .phone-2 {
    transform: none;
  }

  .nsplit {
    grid-template-columns: 1fr;
  }

  .nsplit-head {
    position: static;
  }
}

@media (max-width: 700px) {
  body {
    padding-bottom: 70px;
  }

  .sticky {
    display: flex;
  }

  .hero {
    min-height: auto;
  }

  .hero-img {
    object-position: 68% 16%;
  }

  .hero-fade {
    background: linear-gradient(0deg, rgba(11, 12, 14, 0.97) 14%, rgba(11, 12, 14, 0.6) 60%, rgba(11, 12, 14, 0.9) 100%);
  }

  .hero-in {
    padding-top: clamp(180px, 48vw, 300px);
  }

  .row .btn {
    width: 100%;
  }

  .stat-row {
    gap: 20px;
  }

  .stat-row > div {
    max-width: none;
    width: 100%;
  }

  .shot img {
    height: clamp(280px, 62vw, 380px);
  }

  .stack .shot-tall img {
    height: clamp(380px, 110vw, 480px);
  }

  /* dva telefona jedan uz drugi umjesto dva ekrana visine */
  .phones {
    flex-wrap: nowrap;
    gap: 14px;
  }

  .phone {
    flex: 1 1 0;
    min-width: 0;
  }

  .phone figcaption {
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .prog-badge {
    position: static;
    align-self: flex-start;
    margin-bottom: 16px;
  }

  .prog-main .prog-name {
    padding-right: 0;
  }

  .ticker {
    padding: 14px 0;
  }

  .ticker span {
    font-size: 11px;
  }

  .ftr-in {
    flex-direction: column;
    align-items: flex-start;
  }

  .faq summary {
    padding: 20px 12px 20px 18px;
  }

  .faq p {
    padding: 0 18px 22px;
  }
}
