/* ═══════════════════════════════════════════════════════════
   INSTORA — landing
   Paleta izvedena iz logotipa (tinta uzorkovana: #111765)
   ═══════════════════════════════════════════════════════════ */

:root {
  --navy: #111765;
  --navy-deep: #0B0E4A;
  --navy-soft: #2A2E8F;
  --cream: #FDFAF5;
  --cream-warm: #F7F2E9;
  --white: #FFFFFF;
  --accent: #FF6B4A;
  --accent-hi: #FF8064;
  --accent-ink: #B23C1C;
  --text: #2B2A33;
  --text-muted: #6B6A75;
  --line: #E9E2D6;
  --line-soft: #F0EAE0;

  --shadow: 0 8px 30px rgba(17, 23, 101, .08);
  --shadow-lg: 0 18px 50px rgba(17, 23, 101, .12);
  --r-card: 16px;
  --r-btn: 12px;

  --wrap: 1140px;
  --pad: 20px;
}

/* ── reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3 {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--navy-deep);
  margin: 0;
}

p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

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

:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 200;
  background: var(--navy);
  color: var(--cream);
  padding: 10px 16px;
  border-radius: var(--r-btn);
  font-weight: 600;
}
.skip:focus { left: 16px; }

/* ── layout ────────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad);
}
.wrap--narrow { max-width: 780px; }

.sec { padding: 72px 0; }
.sec--alt { background: var(--cream-warm); }

.eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 14px;
}

.sec__h2 {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  max-width: 20ch;
}

.sec__lead {
  margin-top: 18px;
  max-width: 60ch;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ── gumbi ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border: 0;
  border-radius: var(--r-btn);
  font: inherit;
  font-weight: 800;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  transition: transform .15s ease, background-color .15s ease, box-shadow .15s ease;
}
.btn--sm { padding: 11px 20px; font-size: 15px; }
.btn--full { width: 100%; }

.btn--accent {
  background: var(--accent);
  color: var(--navy);
  box-shadow: 0 6px 18px rgba(255, 107, 74, .28);
}
.btn--accent:hover { background: var(--accent-hi); transform: translateY(-1px); }
.btn--accent:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--navy);
  box-shadow: inset 0 0 0 2px rgba(17, 23, 101, .18);
}
.btn--ghost:hover { box-shadow: inset 0 0 0 2px var(--navy); }

/* ── navbar ────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 250, 245, .82);
  transition: box-shadow .2s ease, background-color .2s ease;
}
.nav.is-stuck {
  background: rgba(253, 250, 245, .88);
  box-shadow: 0 1px 0 var(--line), 0 6px 24px rgba(17, 23, 101, .05);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  backdrop-filter: saturate(180%) blur(12px);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 72px;
}

.nav__brand { flex: none; }
.nav__brand img { width: 132px; height: auto; }

.nav__links { display: none; }

.nav__right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
  color: var(--text-muted);
}
.lang a { padding: 4px 2px; }
.lang a:hover { color: var(--navy); }
.lang a[aria-current="true"] { color: var(--navy); }
.lang span { opacity: .45; }

.nav__cta { display: none; }

/* hamburger */
.burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
}
.burger__label {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.burger__bars { display: block; width: 22px; }
.burger__bars i {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .22s ease, opacity .18s ease;
}
.burger__bars i + i { margin-top: 5px; }
.burger[aria-expanded="true"] .burger__bars i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] .burger__bars i:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] .burger__bars i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobilni sheet */
.sheet {
  position: fixed;
  inset: 72px 0 0 0;
  z-index: 99;
  background: var(--cream);
  padding: 32px var(--pad) 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}
.sheet[hidden] { display: none; }
.sheet__nav { display: flex; flex-direction: column; }
.sheet__nav a {
  padding: 16px 0;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy-deep);
  border-bottom: 1px solid var(--line-soft);
}
.sheet__cta { margin-top: 26px; }
.lang--sheet { margin-top: 22px; justify-content: center; font-size: 15px; }

/* ── hero ──────────────────────────────────────────────── */
.hero { padding: 44px 0 64px; }

.hero__grid { display: grid; gap: 44px; }

.hero__h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  color: var(--navy-deep);
  margin-bottom: 20px;
}

.hero__sub {
  font-size: 1.12rem;
  color: var(--text-muted);
  max-width: 46ch;
  margin-bottom: 32px;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ── chat demo ─────────────────────────────────────────── */
.hero__demo { display: flex; justify-content: center; }

.chat {
  width: 100%;
  max-width: 380px;
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.chat__head {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line-soft);
}
.chat__avatar {
  width: 36px;
  height: 36px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--cream-warm);
  color: var(--navy);
}
.chat__avatar svg { width: 20px; height: 20px; }
.chat__id { display: flex; flex-direction: column; line-height: 1.25; }
.chat__id b { font-weight: 800; font-size: 15px; color: var(--navy-deep); }
.chat__id em {
  font-style: normal;
  font-size: 12px;
  color: var(--text-muted);
}

.chat__body {
  height: 430px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 42px);
  mask-image: linear-gradient(to bottom, transparent 0, #000 42px);
  transition: opacity .5s ease;
}
.chat__body.is-fading { opacity: 0; }

.msg { max-width: 84%; }
.msg--user { align-self: flex-end; }
.msg--bot { align-self: flex-start; }

.bub {
  padding: 11px 14px;
  border-radius: 16px;
  font-size: 14.5px;
  line-height: 1.5;
}
.msg--user .bub {
  background: var(--navy);
  color: var(--cream);
  border-bottom-right-radius: 5px;
}
.msg--bot .bub {
  background: var(--cream);
  color: var(--text);
  border: 1px solid var(--line-soft);
  border-bottom-left-radius: 5px;
}

/* animacija ulaska */
.msg {
  animation: msgIn .34s cubic-bezier(.2, .7, .3, 1) both;
}
@keyframes msgIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

/* typing indikator */
.typing { display: inline-flex; gap: 4px; padding: 14px; }
.typing i {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  opacity: .5;
  animation: dot 1.1s infinite ease-in-out;
}
.typing i:nth-child(2) { animation-delay: .16s; }
.typing i:nth-child(3) { animation-delay: .32s; }
@keyframes dot {
  0%, 60%, 100% { transform: translateY(0); opacity: .35; }
  30% { transform: translateY(-4px); opacity: .9; }
}

/* kartica proizvoda u chatu */
.pcard {
  background: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  border-bottom-left-radius: 5px;
  overflow: hidden;
}
.pcard__media {
  height: 96px;
  background: #EFEAE1;
  display: grid;
  place-items: center;
  color: #B8AF9F;
}
.pcard__media svg { width: 30px; height: 30px; }
.pcard__info { padding: 12px 14px; }
.pcard__row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.pcard__name { font-weight: 800; color: var(--navy-deep); font-size: 14.5px; }
.pcard__price { font-weight: 800; color: var(--navy); font-size: 14.5px; margin-left: auto; }
.pcard__badge {
  display: inline-block;
  margin-top: 6px;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(17, 23, 101, .07);
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .03em;
}
.pcard__text {
  margin-top: 9px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
}

/* sažetak narudžbe */
.ocard {
  background: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  border-bottom-left-radius: 5px;
  padding: 13px 14px;
}
.ocard__t {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.ocard__l { font-size: 14px; }
.ocard__l + .ocard__l { margin-top: 3px; }
.ocard__btn {
  display: block;
  margin-top: 11px;
  padding: 10px;
  border-radius: 10px;
  background: var(--accent);
  color: var(--navy);
  font-weight: 800;
  font-size: 14px;
  text-align: center;
}

.chat__foot {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border-top: 1px solid var(--line-soft);
}
.chat__fake {
  flex: 1;
  font-size: 14px;
  color: #A9A5B0;
}
.chat__send {
  width: 32px; height: 32px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--cream-warm);
  color: var(--navy);
}
.chat__send svg { width: 16px; height: 16px; }

/* ── trust bar ─────────────────────────────────────────── */
.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 242, 233, .5);
}
.trust__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 26px;
  padding-block: 18px;
}
.trust__item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}
.trust__item--name { font-weight: 800; color: var(--navy); }
.trust__ico { width: 15px; height: 15px; color: var(--navy); opacity: .55; }

/* ── koraci ────────────────────────────────────────────── */
.steps {
  display: grid;
  gap: 20px;
  margin-top: 40px;
  list-style: none;
}
.step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-card);
  padding: 30px 26px 26px;
  box-shadow: var(--shadow);
}
.step__n {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 11px;
  background: var(--navy);
  color: var(--cream);
  font-weight: 800;
  font-size: 17px;
  margin-bottom: 18px;
}
.step__t { font-size: 1.2rem; margin-bottom: 10px; }
.step__p { color: var(--text-muted); font-size: 1rem; }

/* ── feature grid ──────────────────────────────────────── */
.grid {
  display: grid;
  gap: 20px;
  margin-top: 40px;
}
.card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-card);
  padding: 28px 26px;
  box-shadow: var(--shadow);
}
.card__ico {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--cream-warm);
  color: var(--navy);
  margin-bottom: 18px;
}
.card__ico svg { width: 22px; height: 22px; }
.card__t { font-size: 1.13rem; margin-bottom: 10px; }
.card__p { color: var(--text-muted); font-size: .98rem; }

/* ── platforme ─────────────────────────────────────────── */
.plats {
  display: grid;
  gap: 18px;
  margin-top: 40px;
}
.plat {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-card);
  padding: 26px 24px;
  box-shadow: var(--shadow);
}
.plat__t {
  font-size: 1.08rem;
  margin-bottom: 10px;
  color: var(--navy);
}
.plat__p { color: var(--text-muted); font-size: .95rem; }

/* CroFaktura kartica */
.cf {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 32px 28px;
  box-shadow: var(--shadow);
}
.cf__tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-bottom: 8px;
}
.cf__t { font-size: 1.4rem; margin-bottom: 12px; }
.cf__p { color: var(--text-muted); max-width: 62ch; }
.cf__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-weight: 800;
  color: var(--navy);
  border-bottom: 2px solid rgba(17, 23, 101, .18);
  padding-bottom: 2px;
}
.cf__link:hover { border-bottom-color: var(--navy); }
.cf__link svg { width: 15px; height: 15px; }
.cf__mark {
  flex: none;
  width: 92px; height: 92px;
  display: none;
  place-items: center;
  border-radius: 18px;
  background: var(--cream-warm);
  color: var(--navy);
  opacity: .8;
}
.cf__mark svg { width: 40px; height: 40px; }

/* ── band ──────────────────────────────────────────────── */
.band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--cream);
  padding: 60px 0;
}
.band__inner { max-width: 760px; }
.band__t {
  color: var(--cream);
  font-size: clamp(1.5rem, 3.4vw, 2.1rem);
  margin-bottom: 16px;
}
.band__p { color: rgba(253, 250, 245, .78); }
.band__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 22px;
  font-weight: 800;
  color: var(--cream);
  border-bottom: 2px solid rgba(253, 250, 245, .3);
  padding-bottom: 2px;
}
.band__link:hover { border-bottom-color: var(--cream); }
.band__link svg { width: 15px; height: 15px; }

/* ── FAQ ───────────────────────────────────────────────── */
.faq { margin-top: 36px; }
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__q {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 0;
  cursor: pointer;
  font-weight: 800;
  font-size: 1.06rem;
  color: var(--navy-deep);
  list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: "";
  margin-left: auto;
  flex: none;
  width: 12px; height: 12px;
  border-right: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform .2s ease;
}
.faq__item[open] .faq__q::after { transform: rotate(-135deg) translate(-3px, -3px); }
.faq__a {
  padding: 0 0 24px;
  color: var(--text-muted);
  max-width: 68ch;
}

/* ── završni CTA ───────────────────────────────────────── */
.cta {
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--cream);
  padding: 72px 0;
}
.cta__grid { display: grid; gap: 40px; }
.cta__h2 {
  color: var(--cream);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  margin-bottom: 16px;
  max-width: 18ch;
}
.cta__p { color: rgba(253, 250, 245, .76); max-width: 46ch; }

.form {
  background: var(--white);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 20px 50px rgba(5, 8, 40, .28);
}
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 6px;
}
.field input,
.field select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-btn);
  background: var(--cream);
  color: var(--text);
  font: inherit;
  font-size: 16px;
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B6A75' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 40px;
}
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(17, 23, 101, .12);
}
.field input:user-invalid,
.field select:user-invalid { border-color: var(--accent-ink); }

.form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form__note {
  margin-top: 12px;
  font-size: 12.5px;
  color: var(--text-muted);
  text-align: center;
}
.form__msg {
  margin-top: 18px;
  padding: 18px;
  border-radius: 14px;
  background: var(--cream-warm);
  border: 1px solid var(--line);
}
.form__msg[hidden] { display: none; }
.form__msg b { display: block; color: var(--navy-deep); margin-bottom: 4px; }
.form__msg span { color: var(--text-muted); font-size: .95rem; }
.form__msg.is-err { background: #FDF0EC; border-color: #F4CFC3; }

/* ── footer ────────────────────────────────────────────── */
.foot {
  background: var(--navy-deep);
  color: rgba(253, 250, 245, .7);
  padding: 60px 0 32px;
  font-size: .95rem;
}
.foot__top { display: grid; gap: 36px; }
.foot__brand img { width: 120px; }
.foot__tag { margin-top: 14px; max-width: 34ch; }
.foot__h {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 14px;
}
.foot__h--gap { margin-top: 26px; }
.foot__col li + li { margin-top: 8px; }
.foot__col a:hover { color: var(--cream); }

.foot__certs {
  margin-top: 44px;
  padding-top: 30px;
  border-top: 1px solid rgba(253, 250, 245, .12);
  display: grid;
  gap: 30px;
}
.foot__h--certs { margin-bottom: 16px; }
.foot__badges {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  min-height: 60px;
}
.foot__badges img { width: auto; opacity: .9; }
.badge--sq { height: 64px; }
.badge--wide { height: 32px; }

/* tekstualni badge — dok ne stigne službeni logo */
.tbadge {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  height: 60px;
  padding: 0 16px;
  border: 1px solid rgba(253, 250, 245, .28);
  border-radius: 10px;
}
.tbadge b {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--cream);
  line-height: 1;
}
.tbadge em {
  font-style: normal;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(253, 250, 245, .55);
  line-height: 1;
}

.foot__legal {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(253, 250, 245, .12);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  align-items: center;
  font-size: .88rem;
}
.foot__legallinks { display: flex; gap: 20px; margin-left: auto; }
.foot__legallinks a { border-bottom: 1px solid rgba(253, 250, 245, .25); }
.foot__legallinks a:hover { color: var(--cream); border-bottom-color: var(--cream); }

/* ── pravne stranice ───────────────────────────────────── */
.doc { padding: 56px 0 80px; }
.doc h1 { font-size: clamp(1.9rem, 5vw, 2.6rem); margin-bottom: 20px; }
.doc p { color: var(--text-muted); margin-bottom: 16px; max-width: 68ch; }
.doc__back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  font-weight: 800;
  color: var(--navy);
}

/* ═══ 640px ═══════════════════════════════════════════════ */
@media (min-width: 640px) {
  :root { --pad: 28px; }
  .sec { padding: 88px 0; }
  .hero { padding: 60px 0 80px; }
  .steps, .grid, .plats { grid-template-columns: repeat(2, 1fr); }
  .foot__top { grid-template-columns: repeat(2, 1fr); }
  .cta__grid { gap: 48px; }
  .form { padding: 32px 30px; }
}

/* ═══ 1024px ══════════════════════════════════════════════ */
@media (min-width: 1024px) {
  :root { --pad: 32px; }
  body { font-size: 17px; }

  .sec { padding: 104px 0; }
  .hero { padding: 72px 0 96px; }

  .nav__links {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: 22px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-muted);
  }
  .nav__links a:hover { color: var(--navy); }
  .nav__cta { display: inline-flex; }
  .burger { display: none; }
  .sheet { display: none !important; }

  .hero__grid {
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 56px;
  }
  .hero__demo { justify-content: flex-end; }

  .steps { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .plats { grid-template-columns: repeat(4, 1fr); gap: 20px; }

  .cf__mark { display: grid; }

  .cta__grid { grid-template-columns: 1fr 1fr; align-items: center; }

  .foot__top { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
  .foot__certs { grid-template-columns: auto auto; justify-content: start; gap: 72px; }
}

/* ═══ smanjeno gibanje ════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .chat__body {
    height: auto;
    max-height: none;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .chat__body.is-fading { opacity: 1; }
}
