/* ============================================================
   Medixon — Landing page styles
   Neutral-clinical, premium. Brand: Clinical Blue.
   Self-contained (no Bootstrap / jQuery). See docs/social-media-brand-guide.
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Neutrals */
  --bg: #f6f8fb;
  --white: #ffffff;
  --ink: #0f172a;     /* headings  */
  --body: #475569;    /* body text */
  --muted: #94a3b8;   /* hints     */
  --border: #e2e8f0;  /* dividers  */
  --dark: #0b1120;    /* dark band */

  /* Brand — Clinical Blue */
  --brand-50:  #eff4fb;
  --brand-100: #dbe6f5;
  --brand-300: #90add9;
  --brand-500: #3c63ab;
  --brand-600: #2d4d8f;
  --brand-700: #274074;
  --brand-900: #1d2c49;

  /* Semantic */
  --emerald: #059669;
  --amber:   #d97706;
  --rose:    #be3357;

  /* Depth */
  --shadow-card: 0 12px 28px -14px rgba(16, 24, 40, 0.18);
  --shadow-lift: 0 20px 44px -24px rgba(16, 24, 40, 0.24);
  --shadow-hero: 0 44px 90px -42px rgba(16, 24, 40, 0.34);
  --ring: 0 0 0 4px rgba(45, 77, 143, 0.14);

  /* Radii */
  --r-sm: 12px;
  --r:    16px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-2xl: 32px;

  /* Type */
  --font-display: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Layout */
  --container: 1160px;
  --gutter: 24px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 8px; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 700;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding: 96px 0; }
.section--tight { padding: 72px 0; }
.center { text-align: center; }
.tnum { font-variant-numeric: tabular-nums; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-600);
  margin-bottom: 14px;
}
.section-head { max-width: 640px; margin: 0 auto 56px; }
.section-head.center { margin-inline: auto; }
.section-title { font-size: clamp(28px, 4vw, 42px); }
.section-sub {
  margin-top: 18px;
  font-size: 18px;
  color: var(--body);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15.5px;
  line-height: 1;
  padding: 15px 26px;
  border-radius: 999px;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--brand-600);
  color: #fff;
  box-shadow: 0 14px 26px -12px rgba(45, 77, 143, 0.6);
}
.btn--primary:hover { background: var(--brand-700); transform: translateY(-2px); box-shadow: 0 20px 34px -14px rgba(45,77,143,.6); }

.btn--ghost {
  background: var(--white);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--border), var(--shadow-card);
}
.btn--ghost:hover { transform: translateY(-2px); box-shadow: inset 0 0 0 1px var(--brand-300), var(--shadow-lift); }

.btn--light {
  background: rgba(255,255,255,.14);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.28);
  backdrop-filter: blur(6px);
}
.btn--light:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }

.btn--block { width: 100%; justify-content: center; }
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Navbar ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
  padding: 18px 0;
}
.nav.scrolled {
  background: rgba(246, 248, 251, 0.82);
  backdrop-filter: saturate(160%) blur(12px);
  box-shadow: 0 1px 0 var(--border), 0 12px 30px -22px rgba(16,24,40,.4);
  padding: 12px 0;
}
.nav__inner { display: flex; align-items: center; gap: 24px; }
.nav__logo { display: flex; align-items: center; gap: 9px; }
.nav__mark { height: 30px; width: auto; }
.nav__word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.nav__links a {
  font-weight: 500;
  font-size: 15px;
  color: var(--body);
  padding: 9px 14px;
  border-radius: 999px;
  transition: color .2s ease, background .2s ease;
}
.nav__links a:hover { color: var(--ink); background: rgba(45,77,143,.07); }
.nav__cta { margin-left: 8px; }
.nav__toggle { display: none; padding: 8px; border-radius: 10px; color: var(--ink); }
.nav__toggle svg { width: 26px; height: 26px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 168px 0 90px;
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  z-index: 0;
  width: 760px; height: 760px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: .55;
  pointer-events: none;
}
.hero__glow--a {
  top: -260px; left: 50%; transform: translateX(-50%);
  background: radial-gradient(circle at center, rgba(45,77,143,.20), transparent 62%);
  animation: glowPulse 9s ease-in-out infinite;
}
.hero__glow--b {
  bottom: -340px; right: -160px;
  width: 560px; height: 560px;
  background: radial-gradient(circle at center, rgba(60,99,171,.16), transparent 62%);
  animation: glowPulseB 11s ease-in-out infinite;
}
.hero .container { position: relative; z-index: 1; }
.hero__content { max-width: 760px; margin: 0 auto; text-align: center; }
.hero__mark {
  width: auto; height: 60px;
  margin: 0 auto 22px;
  animation: floatY 6s ease-in-out infinite;
  transition: transform .3s ease;
}
.hero__mark:hover { transform: scale(1.08) rotate(-3deg); }
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--brand-700);
  background: var(--white);
  padding: 7px 14px 7px 9px;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px var(--border), var(--shadow-card);
  margin-bottom: 26px;
}
.hero__pill .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 0 3px rgba(5,150,105,.18);
}
.hero__title {
  font-size: clamp(34px, 5.4vw, 60px);
  letter-spacing: -0.03em;
}
.hero__title .accent {
  background: linear-gradient(120deg, var(--brand-600), var(--brand-500));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__bio {
  margin: 24px auto 0;
  max-width: 600px;
  font-size: 19px;
  color: var(--body);
}
.hero__actions {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__note {
  margin-top: 18px;
  font-size: 13.5px;
  color: var(--muted);
}

/* Hero app shot */
.hero__shot {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  margin: 64px auto 0;
  animation: floatY 7s ease-in-out infinite;
}
/* MacBook mockup */
.macbook {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
  will-change: transform;
}
.macbook:hover { transform: translateY(-8px) scale(1.012); }
.macbook__lid {
  position: relative;
  background: linear-gradient(155deg, #3a3a3c, #18181a);
  border-radius: 22px;
  padding: 26px 14px 14px;
  box-shadow:
    inset 0 0 0 2px #0c0c0d,
    inset 0 1px 0 1px rgba(255,255,255,.06),
    var(--shadow-hero);
  transition: box-shadow .5s ease;
}
.macbook:hover .macbook__lid {
  box-shadow:
    inset 0 0 0 2px #0c0c0d,
    inset 0 1px 0 1px rgba(255,255,255,.08),
    0 64px 120px -46px rgba(16,24,40,.5);
}
.macbook__camera {
  position: absolute;
  top: 12px; left: 50%; transform: translateX(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #0a0a0a;
  box-shadow: inset 0 0 0 1px #2c2c2e, 0 0 2px rgba(120,160,220,.5);
}
.macbook__screen {
  border-radius: 5px;
  overflow: hidden;
  background: #000;
  line-height: 0;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.6);
}
.macbook__screen img { width: 100%; height: auto; display: block; }
/* base / deck */
.macbook__base {
  position: relative;
  width: 112%;
  left: 50%;
  transform: translateX(-50%);
  height: 20px;
  background: linear-gradient(180deg, #e2e4e9 0%, #c2c6cd 38%, #9da2ab 100%);
  border-radius: 0 0 16px 16px;
  box-shadow: 0 26px 34px -20px rgba(16,24,40,.55);
}
.macbook__base::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #f4f5f7 12%, #f4f5f7 88%, transparent);
}
.macbook__notch {
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 16%; height: 9px;
  background: linear-gradient(180deg, #aeb2ba, #c7cbd1);
  border-radius: 0 0 9px 9px;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes glowPulse {
  0%, 100% { opacity: .45; transform: translateX(-50%) scale(1); }
  50% { opacity: .65; transform: translateX(-50%) scale(1.08); }
}
@keyframes glowPulseB {
  0%, 100% { opacity: .4; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.1); }
}
.hero__shot::after {
  content: "";
  position: absolute;
  left: 6%; right: 6%; bottom: -28px; height: 60px;
  background: radial-gradient(ellipse at center, rgba(16,24,40,.18), transparent 70%);
  filter: blur(8px);
  z-index: -1;
}

/* ---------- Trust strip ---------- */
.trust { padding: 26px 0 6px; }
.trust__label {
  text-align: center;
  font-size: 12.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
}
.trust__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 46px;
}
.trust__row img { height: 30px; width: auto; opacity: .5; filter: grayscale(1); transition: opacity .2s; }
.trust__row img:hover { opacity: .8; }

/* ---------- Feature cards (benefits) ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 34px 30px;
  box-shadow: inset 0 0 0 1px var(--border), var(--shadow-card);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: inset 0 0 0 1px var(--brand-100), var(--shadow-lift); }
.card__icon {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: var(--brand-50);
  color: var(--brand-600);
  margin-bottom: 22px;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 20px; margin-bottom: 10px; }
.card p { font-size: 15.5px; }

/* ---------- Feature split rows ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}
.split + .split { margin-top: 110px; }
.split--rev .split__text { order: 2; }
.split__text .section-title { font-size: clamp(26px, 3.2vw, 34px); }
.split__list { margin-top: 26px; display: grid; gap: 16px; }
.split__list li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  font-size: 16px;
  color: var(--body);
}
.split__list .tick {
  flex: none;
  width: 26px; height: 26px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--brand-50);
  color: var(--brand-600);
  margin-top: 1px;
}
.split__list .tick svg { width: 15px; height: 15px; }
.split__media {
  position: relative;
  border-radius: var(--r-xl);
  background: linear-gradient(160deg, var(--brand-50), var(--white));
  padding: 22px;
  box-shadow: inset 0 0 0 1px var(--border), var(--shadow-card);
}
.split__media img {
  border-radius: var(--r-lg);
  width: 100%;
  box-shadow: var(--shadow-lift);
}

/* ---------- Stats band ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background: var(--white);
  border-radius: var(--r-2xl);
  padding: 44px 36px;
  box-shadow: inset 0 0 0 1px var(--border), var(--shadow-card);
}
.stat { text-align: center; }
.stat__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 4vw, 44px);
  color: var(--brand-600);
  letter-spacing: -0.02em;
}
.stat__label { margin-top: 6px; font-size: 14.5px; color: var(--body); }

/* ---------- How it works (steps) ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  counter-reset: step;
}
.step {
  position: relative;
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 36px 30px;
  box-shadow: inset 0 0 0 1px var(--border), var(--shadow-card);
}
.step__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--brand-600);
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--brand-50);
  margin-bottom: 22px;
}
.step h3 { font-size: 19px; margin-bottom: 10px; }
.step p { font-size: 15px; }

/* ---------- Pricing ---------- */
.switcher {
  display: inline-flex;
  gap: 4px;
  padding: 5px;
  background: var(--white);
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px var(--border), var(--shadow-card);
  margin: 0 auto 48px;
}
.switcher__btn {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--body);
  padding: 11px 22px;
  border-radius: 999px;
  transition: color .2s, background .2s, box-shadow .2s;
}
.switcher__btn.is-active {
  color: #fff;
  background: var(--brand-600);
  box-shadow: 0 10px 20px -10px rgba(45,77,143,.65);
}
.switcher__save {
  font-size: 11px;
  font-weight: 700;
  color: var(--emerald);
  background: rgba(5,150,105,.1);
  padding: 2px 7px;
  border-radius: 999px;
  margin-left: 7px;
  letter-spacing: .02em;
}
.switcher__btn.is-active .switcher__save { color: #fff; background: rgba(255,255,255,.22); }

.plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 420px));
  gap: 26px;
  justify-content: center;
  align-items: stretch;
}
.plan {
  position: relative;
  background: var(--white);
  border-radius: var(--r-2xl);
  padding: 38px 34px;
  box-shadow: inset 0 0 0 1px var(--border), var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.plan--featured {
  box-shadow: inset 0 0 0 1.5px var(--brand-600), var(--shadow-hero);
}
.plan__badge {
  position: absolute;
  top: -13px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .04em;
  color: #fff;
  background: var(--brand-600);
  padding: 6px 16px;
  border-radius: 999px;
  box-shadow: 0 10px 20px -10px rgba(45,77,143,.7);
}
.plan__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--brand-600);
}
.plan__desc { margin-top: 6px; font-size: 14.5px; color: var(--muted); }
.plan__price {
  margin: 22px 0 4px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.plan__amount {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 46px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.plan__cur { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--ink); }
.plan__per { font-size: 15px; color: var(--muted); }
.plan__divider { height: 1px; background: var(--border); margin: 26px 0; }
.plan__list { display: grid; gap: 14px; margin-bottom: 30px; }
.plan__list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; }
.plan__list .tick {
  flex: none; width: 22px; height: 22px;
  display: grid; place-items: center; border-radius: 50%;
  background: var(--brand-50); color: var(--brand-600); margin-top: 1px;
}
.plan__list .tick svg { width: 13px; height: 13px; }
.plan__list li.off { color: var(--muted); }
.plan__list li.off .tick { background: #f1f5f9; color: var(--muted); }
.plan__cta { margin-top: auto; }
.plan__amount[data-hidden], .price-hidden { display: none; }

.pricing__note {
  margin-top: 40px;
  text-align: center;
  font-size: 15.5px;
  color: var(--body);
}
.pricing__note a { color: var(--brand-600); font-weight: 600; }
.pricing__note a:hover { color: var(--brand-700); }

/* ---------- Testimonials ---------- */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.quote {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 32px 30px;
  box-shadow: inset 0 0 0 1px var(--border), var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.quote__mark { color: var(--brand-300); margin-bottom: 16px; }
.quote__mark svg { width: 34px; height: 34px; }
.quote p {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.quote__by { display: flex; align-items: center; gap: 13px; margin-top: 26px; }
.quote__by img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; box-shadow: inset 0 0 0 1px var(--border); }
.quote__name { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--ink); }
.quote__role { font-size: 13.5px; color: var(--muted); }

/* ---------- CTA band ---------- */
.ctaband {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--brand-700), var(--brand-900));
  border-radius: var(--r-2xl);
  padding: 72px 40px;
  text-align: center;
  box-shadow: var(--shadow-hero);
}
.ctaband::before, .ctaband::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
}
.ctaband::before { width: 360px; height: 360px; top: -160px; left: -80px; background: rgba(255,255,255,.10); }
.ctaband::after { width: 320px; height: 320px; bottom: -180px; right: -60px; background: rgba(144,173,217,.18); }
.ctaband > * { position: relative; z-index: 1; }
.ctaband h2 { color: #fff; font-size: clamp(26px, 3.6vw, 38px); }
.ctaband p { color: rgba(255,255,255,.78); max-width: 560px; margin: 18px auto 0; font-size: 18px; }
.ctaband .btn { margin-top: 32px; }

/* ---------- Contact / demo ---------- */
.demo { position: relative; }
.demo__card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--r-2xl);
  padding: 48px 44px;
  box-shadow: inset 0 0 0 1px var(--border), var(--shadow-hero);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.field input, .field select {
  font: inherit;
  font-size: 15.5px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  transition: border-color .2s, box-shadow .2s, background .2s;
  width: 100%;
}
.field input::placeholder { color: var(--muted); }
.field input:focus, .field select:focus {
  outline: none;
  background: #fff;
  border-color: var(--brand-300);
  box-shadow: var(--ring);
}
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px;
}
.form-actions { margin-top: 24px; }
.contact-result:not(:empty) { margin-top: 22px; }
.alert {
  border-radius: var(--r-sm);
  padding: 14px 18px;
  font-size: 15px;
  font-weight: 500;
}
.alert-success { background: rgba(5,150,105,.1); color: #047857; box-shadow: inset 0 0 0 1px rgba(5,150,105,.25); }
.alert-danger { background: rgba(190,51,87,.08); color: var(--rose); box-shadow: inset 0 0 0 1px rgba(190,51,87,.25); }
.form-error { color: var(--rose); font-size: 13px; font-weight: 500; }
.field input.invalid, .field select.invalid { border-color: var(--rose); box-shadow: 0 0 0 4px rgba(190,51,87,.12); }

/* ---------- Consultation page ---------- */
.nav__back {
  margin-left: auto;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--body);
  transition: color .2s ease;
}
.nav__back:hover { color: var(--brand-600); }
.konsultacije { position: relative; overflow: hidden; padding-top: 150px; }
.konsultacije .section-head { margin-bottom: 28px; }
.konsultacije__points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 30px;
  margin: 0 auto 38px;
  max-width: 700px;
}
.konsultacije__points li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  color: var(--body);
}
.konsultacije__points .tick {
  flex: none;
  width: 24px; height: 24px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--brand-50);
  color: var(--brand-600);
}
.konsultacije__points .tick svg { width: 14px; height: 14px; }

/* ---------- Footer ---------- */
.footer { padding: 64px 0 40px; }
.footer__top {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}
.footer__lockup { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer__lockup img { height: 30px; width: auto; }
.footer__lockup span { font-family: var(--font-display); font-weight: 700; font-size: 20px; letter-spacing: -0.02em; color: var(--ink); }
.footer__brand p { font-size: 15px; color: var(--muted); max-width: 320px; }
.footer__cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer__col h4 { font-family: var(--font-display); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.footer__col a { display: block; font-size: 15px; color: var(--body); padding: 5px 0; transition: color .2s; }
.footer__col a:hover { color: var(--brand-600); }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  font-size: 14px;
  color: var(--muted);
}
.footer__social { display: flex; align-items: center; gap: 8px; }
.footer__social a { display: inline-flex; align-items: center; gap: 7px; color: var(--body); transition: color .2s; }
.footer__social a:hover { color: var(--brand-600); }
.footer__social svg { width: 18px; height: 18px; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Preloader ---------- */
body.preloading { overflow: hidden; }
.preloader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  background: var(--bg);
  transition: opacity .6s ease, visibility .6s ease;
}
.preloader.loaded { opacity: 0; visibility: hidden; }
.preloader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  animation: preIn .5s ease both;
}
.preloader__mark {
  width: 62px; height: auto;
  animation: prePulse 1.4s ease-in-out infinite;
  filter: drop-shadow(0 10px 22px rgba(45,77,143,.28));
}
.preloader__word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.preloader__bar {
  position: relative;
  width: 180px; height: 4px;
  border-radius: 999px;
  background: var(--brand-100);
  overflow: hidden;
}
.preloader__bar span {
  position: absolute;
  top: 0; left: 0; height: 100%;
  width: 42%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-700));
  animation: preBar 1.15s cubic-bezier(.65,0,.35,1) infinite;
}
@keyframes preIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@keyframes prePulse { 0%, 100% { transform: scale(1); opacity: .85; } 50% { transform: scale(1.12); opacity: 1; } }
@keyframes preBar { 0% { left: -45%; } 100% { left: 100%; } }

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(246,248,251,.97);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 40px;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.mobile-menu.open { transform: none; }
.mobile-menu a:not(.btn) {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--ink);
  padding: 14px 4px;
  border-bottom: 1px solid var(--border);
}
.mobile-menu .btn {
  margin-top: 28px;
  align-self: stretch;
  justify-content: center;
  font-size: 17px;
  padding: 18px 26px;
  color: #fff;
}
.mobile-menu__close { position: absolute; top: 24px; right: 24px; padding: 8px; color: var(--ink); }
.mobile-menu__close svg { width: 30px; height: 30px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: inline-flex; margin-left: auto; }
  .cards, .steps, .quotes { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split--rev .split__text { order: 0; }
  .split + .split { margin-top: 72px; }
  .plans { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .section { padding: 72px 0; }
  .hero { padding: 140px 0 64px; }
  .demo__card { padding: 32px 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .ctaband { padding: 52px 24px; }
  .stats { padding: 32px 22px; }
  .trust__row { gap: 30px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
