/* =========================================================
   SLM Instalacije — vodoinstalaterske usluge
   ========================================================= */

:root {
  --navy-950: #03152b;
  --navy-900: #041b35;
  --navy-800: #072a50;
  --navy-700: #0a3a6c;
  --blue-600: #0b5aa6;
  --blue-500: #1677d6;
  --aqua-400: #3cc6ff;
  --aqua-300: #7fdcff;
  --aqua-100: #dcf4ff;
  --red-500: #e0372c;
  --red-400: #ff5445;
  --paper: #f2f7fc;
  --white: #fff;
  --ink: #0a1f38;
  --muted: #56697f;
  --line: rgba(10, 31, 56, .1);

  --f-display: "Unbounded", system-ui, -apple-system, sans-serif;
  --f-body: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;

  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-io: cubic-bezier(.65, 0, .35, 1);
  --ease-back: cubic-bezier(.34, 1.56, .64, 1);

  --gutter: clamp(20px, 5vw, 56px);
  --header-h: 72px;
  --safe-t: env(safe-area-inset-top, 0px);
  --safe-b: env(safe-area-inset-bottom, 0px);
  --wave-h: clamp(70px, 11vw, 150px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + var(--safe-t));
}
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
}
@supports (overflow: clip) { body { overflow-x: clip; } }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }
h1, h2, h3, p { margin: 0; }
h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }
ul, ol { margin: 0; padding: 0; list-style: none; }
em { font-style: normal; }
::selection { background: var(--aqua-400); color: var(--navy-900); }
:focus-visible { outline: 3px solid var(--aqua-400); outline-offset: 3px; border-radius: 8px; }
.html-lock, .html-lock body { overflow: hidden; }

.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 var(--gutter); }
.section { position: relative; padding: clamp(84px, 12vw, 150px) 0; }

/* ---------- Loader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 200;
  background: radial-gradient(120% 80% at 50% 40%, var(--navy-800), var(--navy-950));
  display: grid; place-items: center;
  transition: transform 1s var(--ease-io);
}
.no-js .loader, .skip-loader .loader { display: none; }
.loader__wave {
  position: absolute; left: 0; right: 0; top: 100%;
  width: 100%; height: 90px; margin-top: -1px;
  fill: var(--navy-950);
}
.loader.is-done { transform: translateY(calc(-100% - 100px)); }
.loader__stage { position: relative; width: 160px; height: 160px; display: grid; place-items: center; }
.loader__drop {
  position: absolute; left: 50%; top: 50%;
  width: 26px; height: 26px; margin: -13px 0 0 -13px;
  background: linear-gradient(135deg, var(--aqua-300), var(--blue-500));
  border-radius: 0 50% 50% 50%;
  transform: translateY(-46vh) rotate(45deg);
  animation: drop-fall .62s cubic-bezier(.55, 0, 1, .45) .1s forwards;
  box-shadow: 0 0 24px rgba(60, 198, 255, .6);
}
@keyframes drop-fall {
  80% { transform: translateY(0) rotate(45deg) scale(1); opacity: 1; }
  100% { transform: translateY(6px) rotate(45deg) scale(.2, .2); opacity: 0; }
}
.loader__ring {
  position: absolute; left: 50%; top: 50%;
  width: 160px; height: 160px; margin: -80px 0 0 -80px;
  border-radius: 50%;
  border: 2px solid var(--aqua-400);
  opacity: 0; transform: scale(.05);
  animation: ring-out 1.3s var(--ease-out) forwards;
}
.loader__ring:nth-of-type(2) { animation-delay: .7s; }
.loader__ring:nth-of-type(3) { animation-delay: .86s; }
.loader__ring:nth-of-type(4) { animation-delay: 1.02s; }
@keyframes ring-out {
  0% { opacity: .9; transform: scale(.05); }
  100% { opacity: 0; transform: scale(1.9); }
}
.loader__logo {
  width: 124px; height: 124px; border-radius: 50%;
  opacity: 0; transform: scale(.4);
  animation: logo-pop .8s var(--ease-back) .82s forwards;
  box-shadow: 0 0 0 4px #fff, 0 20px 50px rgba(0, 0, 0, .45);
}
@keyframes logo-pop { to { opacity: 1; transform: scale(1); } }

/* ---------- Progress ---------- */
.progress {
  position: fixed; left: 0; right: 0; top: 0; z-index: 120;
  height: 3px; pointer-events: none;
}
.progress span {
  display: block; height: 100%; width: 100%;
  transform-origin: 0 50%; transform: scaleX(var(--p, 0));
  background: linear-gradient(90deg, var(--aqua-300), var(--aqua-400), var(--blue-500));
  box-shadow: 0 0 12px var(--aqua-400);
}

/* ---------- Header ---------- */
.header {
  position: fixed; left: 0; right: 0; top: 0; z-index: 100;
  padding-top: var(--safe-t);
  transition: background .4s ease, box-shadow .4s ease, transform .5s var(--ease-out);
}
.header::before {
  content: ""; position: absolute; inset: 0;
  background: rgba(4, 27, 53, .88);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  backdrop-filter: saturate(160%) blur(18px);
  opacity: 0; transition: opacity .4s ease;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.header.is-scrolled::before { opacity: 1; }
.header__inner {
  position: relative;
  height: var(--header-h);
  max-width: 1320px; margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex; align-items: center; gap: 16px;
  color: #fff;
}
.brand { display: flex; align-items: center; gap: 11px; margin-right: auto; }
.brand__logo {
  width: 44px; height: 44px; border-radius: 50%;
  box-shadow: 0 0 0 2px #fff, 0 6px 16px rgba(0, 0, 0, .35);
  transition: transform .6s var(--ease-back);
}
.brand:hover .brand__logo { transform: rotate(-12deg) scale(1.06); }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__text b { font-family: var(--f-display); font-weight: 800; font-size: 19px; letter-spacing: .02em; }
.brand__text small { font-size: 11px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; opacity: .72; margin-top: 4px; }

.nav { display: none; }
.header__call {
  display: inline-flex; align-items: center; gap: 10px;
  height: 46px; padding: 0 5px;
  border-radius: 999px;
  background: var(--red-500);
  box-shadow: 0 8px 22px -6px rgba(224, 55, 44, .7);
  font-weight: 700; font-size: 15px;
  transition: background .3s ease;
}
.header__call:hover { background: var(--red-400); }
.header__call-ico {
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .16);
}
.header__call-ico svg { width: 18px; height: 18px; animation: ring 3.2s ease-in-out infinite; }
.header__call-num { display: none; }

.burger {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-content: center; gap: 5px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .16);
  position: relative; z-index: 2;
}
.burger span {
  display: block; width: 20px; height: 2px; border-radius: 2px; background: #fff;
  transition: transform .5s var(--ease-out), opacity .3s ease, width .4s var(--ease-out);
}
.burger span:nth-child(2) { width: 14px; margin-left: auto; }
.menu-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-open .burger span:nth-child(2) { opacity: 0; transform: translateX(8px); }
.menu-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 560px) {
  .header__call { padding: 0 20px 0 5px; }
  .header__call-num { display: inline; }
}
@media (min-width: 1040px) {
  .burger { display: none; }
  .nav { display: flex; gap: 4px; margin-right: 12px; }
  .nav a {
    position: relative; padding: 10px 14px;
    font-weight: 600; font-size: 15px; opacity: .82;
    transition: opacity .3s ease;
  }
  .nav a::after {
    content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px;
    border-radius: 2px; background: var(--aqua-400);
    transform: scaleX(0); transform-origin: right; transition: transform .45s var(--ease-out);
  }
  .nav a:hover, .nav a.is-active { opacity: 1; }
  .nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); transform-origin: left; }
}

/* ---------- Mobile menu ---------- */
.menu {
  position: fixed; inset: 0; z-index: 90;
  background:
    radial-gradient(90% 60% at 100% 0%, rgba(60, 198, 255, .22), transparent 60%),
    linear-gradient(170deg, var(--navy-800), var(--navy-950));
  color: #fff;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: calc(var(--header-h) + var(--safe-t) + 28px) var(--gutter) calc(32px + var(--safe-b));
  clip-path: circle(0 at calc(100% - var(--gutter) - 23px) calc(var(--safe-t) + var(--header-h) / 2));
  -webkit-clip-path: circle(0 at calc(100% - var(--gutter) - 23px) calc(var(--safe-t) + var(--header-h) / 2));
  transition: clip-path .8s var(--ease-io), -webkit-clip-path .8s var(--ease-io), visibility 0s linear .8s;
  visibility: hidden;
  overflow: hidden;
}
.menu-open .menu {
  clip-path: circle(150% at calc(100% - var(--gutter) - 23px) calc(var(--safe-t) + var(--header-h) / 2));
  -webkit-clip-path: circle(150% at calc(100% - var(--gutter) - 23px) calc(var(--safe-t) + var(--header-h) / 2));
  visibility: visible;
  transition: clip-path .8s var(--ease-io), -webkit-clip-path .8s var(--ease-io), visibility 0s;
}
.menu__nav { display: flex; flex-direction: column; gap: 6px; }
.menu__nav a, .menu__foot {
  opacity: 0; transform: translateY(30px);
  transition: opacity .5s ease, transform .7s var(--ease-out);
}
.menu-open .menu__nav a, .menu-open .menu__foot {
  opacity: 1; transform: none;
  transition-delay: calc(.25s + var(--i) * .06s);
}
.menu__nav a {
  display: flex; align-items: baseline; gap: 14px;
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(30px, 9vw, 44px); line-height: 1.25; letter-spacing: -.01em;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.menu__nav a small { font-family: var(--f-body); font-size: 13px; font-weight: 700; color: var(--aqua-400); letter-spacing: .1em; }
.menu__foot { display: flex; flex-direction: column; gap: 6px; }
.menu__foot span { font-size: 13px; letter-spacing: .18em; text-transform: uppercase; opacity: .6; font-weight: 600; }
.menu__foot a { font-family: var(--f-display); font-weight: 700; font-size: 28px; color: var(--aqua-300); }
.menu__bubbles i {
  position: absolute; bottom: -40px; border-radius: 50%;
  border: 1.5px solid rgba(127, 220, 255, .35);
  animation: bubble-up 9s linear infinite;
}
.menu__bubbles i:nth-child(1) { left: 12%; width: 18px; height: 18px; animation-delay: -1s; }
.menu__bubbles i:nth-child(2) { left: 32%; width: 10px; height: 10px; animation-delay: -4s; animation-duration: 7s; }
.menu__bubbles i:nth-child(3) { left: 58%; width: 24px; height: 24px; animation-delay: -2.5s; animation-duration: 11s; }
.menu__bubbles i:nth-child(4) { left: 76%; width: 12px; height: 12px; animation-delay: -6s; }
.menu__bubbles i:nth-child(5) { left: 88%; width: 16px; height: 16px; animation-delay: -3s; animation-duration: 8s; }
.menu__bubbles i:nth-child(6) { left: 45%; width: 8px; height: 8px; animation-delay: -7s; animation-duration: 6s; }
@keyframes bubble-up {
  0% { transform: translate(0, 0); opacity: 0; }
  10% { opacity: 1; }
  50% { transform: translate(14px, -50vh); }
  100% { transform: translate(-6px, -105vh); opacity: 0; }
}

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--white); --fg: var(--navy-900); --fill: var(--aqua-100);
  position: relative; isolation: isolate; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 58px; padding: 0 28px;
  border-radius: 999px;
  background: var(--bg); color: var(--fg);
  font-weight: 700; font-size: 16px; letter-spacing: .005em;
  transition: color .45s ease, box-shadow .45s ease, transform .5s var(--ease-out);
  will-change: transform;
}
.btn b { font-weight: 800; letter-spacing: .02em; }
.btn__ico { width: 20px; height: 20px; flex: none; transition: transform .45s var(--ease-out); }
@media (hover: hover) { .btn:hover .btn__ico:not(.btn__ico--ring) { transform: translateX(4px); } }
.btn__ico--ring { animation: ring 3.2s ease-in-out infinite; }
.btn__fill {
  position: absolute; left: -10%; right: -10%; bottom: 0; height: 250%; z-index: -1;
  background: var(--fill);
  border-radius: 45% 45% 0 0 / 22% 22% 0 0;
  transform: translateY(100%);
  transition: transform .7s var(--ease-out), border-radius .7s var(--ease-out);
}
@media (hover: hover) { .btn:hover .btn__fill { transform: translateY(20%); border-radius: 0; } }
.btn:active { transform: scale(.97); }

.btn--red { --bg: var(--red-500); --fg: #fff; --fill: #b8241b; box-shadow: 0 14px 34px -10px rgba(224, 55, 44, .8), inset 0 1px 0 rgba(255, 255, 255, .25); }
.btn--ghost { --bg: rgba(255, 255, 255, .08); --fg: #fff; --fill: #fff; border: 1.5px solid rgba(255, 255, 255, .28); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
@media (hover: hover) { .btn--ghost:hover { --fg: var(--navy-900); color: var(--navy-900); } }
.btn--aqua { --bg: var(--aqua-400); --fg: var(--navy-900); --fill: #fff; box-shadow: 0 14px 34px -12px rgba(60, 198, 255, .8); }
.btn--navy { --bg: var(--navy-900); --fg: #fff; --fill: var(--blue-600); box-shadow: 0 14px 30px -14px rgba(4, 27, 53, .8); }
.btn--lg { min-height: 64px; padding: 0 34px; font-size: 17px; }
.btn--block { width: 100%; }

@keyframes ring {
  0%, 62%, 100% { transform: rotate(0); }
  66% { transform: rotate(-16deg); }
  70% { transform: rotate(14deg); }
  74% { transform: rotate(-12deg); }
  78% { transform: rotate(8deg); }
  82% { transform: rotate(0); }
}

/* ---------- Kicker / section heads ---------- */
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px 8px 11px; border-radius: 999px;
  font-size: 12.5px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  color: var(--blue-600);
  background: rgba(22, 119, 214, .09);
  border: 1px solid rgba(22, 119, 214, .16);
}
.kicker svg { width: 14px; height: 14px; color: var(--aqua-400); }
.section-head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 72px); }
.section-head h2, .contact h2, .urgent h2 {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(32px, 8.4vw, 64px); line-height: 1.08; letter-spacing: -.025em;
  margin: 20px 0 18px;
}
.section-head h2 em, .contact h2 em, .urgent h2 em, .why__quote em {
  background: linear-gradient(100deg, var(--blue-600), var(--aqua-400) 60%, var(--blue-500));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section-head p { font-size: clamp(17px, 2vw, 19px); color: var(--muted); max-width: 600px; }
.section-head--light .kicker { color: var(--aqua-300); background: rgba(60, 198, 255, .1); border-color: rgba(60, 198, 255, .22); }
.section-head--light h2 { color: #fff; }
.section-head--light h2 em { background-image: linear-gradient(100deg, var(--aqua-300), var(--aqua-400) 60%, #fff); }
.section-head--light p { color: rgba(255, 255, 255, .72); }

/* ---------- Reveal ---------- */
.js .reveal {
  opacity: 0; transform: translateY(34px);
  transition: opacity .9s ease, transform 1.1s var(--ease-out);
  transition-delay: calc(var(--d, 0) * 90ms);
}
.js .reveal.is-in { opacity: 1; transform: none; }
.js [data-split].reveal { opacity: 1; transform: none; }
.w { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .1em; margin-bottom: -.1em; }
.w > span { display: inline-block; transform: translateY(105%); transition: transform 1s var(--ease-out); transition-delay: calc(var(--i) * 55ms + 80ms); }
.is-in .w > span { transform: none; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--header-h) + var(--safe-t) + 18px) 0 calc(var(--wave-h) + 36px);
  color: #fff;
  background:
    radial-gradient(70% 55% at 80% 20%, rgba(22, 119, 214, .45), transparent 70%),
    radial-gradient(60% 50% at 0% 90%, rgba(60, 198, 255, .18), transparent 70%),
    linear-gradient(165deg, var(--navy-700) 0%, var(--navy-900) 55%, var(--navy-950) 100%);
}
.hero__glow {
  position: absolute; z-index: -1; left: 50%; top: 18%;
  width: 120vmax; height: 120vmax; margin-left: -60vmax;
  background: conic-gradient(from 0deg, transparent, rgba(60, 198, 255, .12), transparent 30%, rgba(22, 119, 214, .16), transparent 60%);
  border-radius: 50%;
  animation: spin 40s linear infinite;
  filter: blur(40px);
}
@keyframes spin { to { transform: rotate(1turn); } }
.hero__pipes { position: absolute; inset: 0; z-index: -1; width: 100%; height: 100%; opacity: .9; }
.pipe__body { fill: none; stroke: rgba(255, 255, 255, .055); stroke-width: 20; stroke-linecap: round; stroke-linejoin: round; }
.pipe__flow {
  fill: none; stroke: var(--aqua-400); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 8 34; opacity: .55;
  animation: flow 1.6s linear infinite;
  filter: drop-shadow(0 0 4px rgba(60, 198, 255, .9));
}
@keyframes flow { to { stroke-dashoffset: -42; } }
.pipe__joint { fill: rgba(255, 255, 255, .07); stroke: rgba(255, 255, 255, .1); stroke-width: 1.5; }
.hero__bubbles { position: absolute; inset: 0; z-index: -1; width: 100%; height: 100%; pointer-events: none; }

.hero__grid {
  width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 var(--gutter);
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: clamp(22px, 4vw, 40px);
}
.hero__text { display: flex; flex-direction: column; align-items: center; max-width: 640px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px 8px 12px; border-radius: 999px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .14);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.eyebrow__sub { display: none; }
@media (min-width: 560px) { .eyebrow__sub { display: inline; opacity: .65; } }
.eyebrow__dot { position: relative; width: 8px; height: 8px; border-radius: 50%; background: var(--aqua-400); }
.eyebrow__dot::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid var(--aqua-400); animation: ping 2s var(--ease-out) infinite;
}
@keyframes ping { 0% { transform: scale(.4); opacity: 1; } 100% { transform: scale(2.2); opacity: 0; } }

.hero__title {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(42px, 12.4vw, 104px); line-height: 1.02; letter-spacing: -.035em;
  margin: 20px 0 20px;
}
.hero__title .line { display: block; overflow: hidden; padding: .04em .06em .1em; margin: -.04em -.06em -.1em; }
.hero__title .line > span { display: inline-block; transform: translateY(108%) rotate(4deg); transform-origin: 0 100%; }
.is-ready .hero__title .line > span { transform: none; transition: transform 1.2s var(--ease-out); }
.is-ready .hero__title .line:nth-child(2) > span { transition-delay: .1s; }
.is-ready .hero__title .line:nth-child(3) > span { transition-delay: .2s; }
.no-js .hero__title .line > span { transform: none; }

.water-text {
  display: inline-block;
  color: transparent;
  -webkit-text-stroke: 2px var(--aqua-400);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120' preserveAspectRatio='none'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop offset='0' stop-color='%237fdcff'/%3E%3Cstop offset='.35' stop-color='%233cc6ff'/%3E%3Cstop offset='1' stop-color='%231677d6'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M0 20Q15 6 30 20T60 20T90 20T120 20V120H0Z' fill='url(%23g)'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 1.4em 2.2em;
  background-position-x: 0;
  background-position-y: 1.15em;
  -webkit-background-clip: text; background-clip: text;
  animation: wave-x 2.2s linear infinite;
  padding: 0 .04em;
}
.is-ready .water-text { animation: wave-x 2.2s linear infinite, fill-up 2.6s var(--ease-out) .5s forwards; }
.no-js .water-text { background-position-y: .05em; }
@keyframes wave-x { to { background-position-x: 1.4em; } }
@keyframes fill-up { to { background-position-y: .02em; } }

.hero__lead { font-size: clamp(17px, 2.1vw, 20px); line-height: 1.6; color: rgba(255, 255, 255, .78); max-width: 540px; text-wrap: pretty; }
.hero__actions { display: flex; flex-direction: column; gap: 12px; width: 100%; max-width: 420px; margin-top: 28px; }
.hero__points { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 18px; margin-top: 24px; font-size: 14px; font-weight: 600; color: rgba(255, 255, 255, .72); }
.hero__points li { display: inline-flex; align-items: center; gap: 7px; }
.hero__points svg { width: 16px; height: 16px; color: var(--aqua-400); }

.hero__in { opacity: 0; transform: translateY(24px); }
.is-ready .hero__in { opacity: 1; transform: none; transition: opacity 1s ease, transform 1.2s var(--ease-out); transition-delay: calc(var(--d) * 90ms + .1s); }
.no-js .hero__in { opacity: 1; transform: none; }

/* Badge */
.hero__visual { perspective: 1000px; }
.badge {
  --size: clamp(200px, 58vw, 270px);
  position: relative; width: var(--size); height: var(--size);
  transform-style: preserve-3d;
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform .8s var(--ease-out);
  opacity: 0; scale: .7;
}
.is-ready .badge { opacity: 1; scale: 1; transition: transform .8s var(--ease-out), opacity 1s ease, scale 1.4s var(--ease-back); }
.no-js .badge { opacity: 1; scale: 1; }
.badge::before {
  content: ""; position: absolute; inset: 8%; border-radius: 50%;
  background: radial-gradient(circle, rgba(60, 198, 255, .55), transparent 70%);
  filter: blur(30px); z-index: -1;
  animation: breathe 5s ease-in-out infinite;
}
@keyframes breathe { 50% { transform: scale(1.18); opacity: .7; } }
.badge__ripples i {
  position: absolute; inset: 14%; border-radius: 50%;
  border: 1.5px solid rgba(127, 220, 255, .5);
  animation: ripple 4.5s var(--ease-out) infinite;
}
.badge__ripples i:nth-child(2) { animation-delay: 1.5s; }
.badge__ripples i:nth-child(3) { animation-delay: 3s; }
@keyframes ripple { 0% { transform: scale(.9); opacity: .9; } 100% { transform: scale(1.75); opacity: 0; } }
.badge__ring { position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 26s linear infinite; }
.badge__ring text {
  font-family: var(--f-display); font-weight: 600; font-size: 10.2px; letter-spacing: 2.6px;
  fill: rgba(255, 255, 255, .72);
}
.badge__logo {
  position: absolute; inset: 13.5%; border-radius: 50%;
  animation: bob 6s ease-in-out infinite;
  transform: translateZ(40px);
}
.badge__logo img {
  width: 100%; height: 100%; border-radius: 50%;
  box-shadow:
    0 0 0 clamp(4px, 1.2vw, 7px) #fff,
    0 0 0 clamp(6px, 1.7vw, 10px) rgba(60, 198, 255, .45),
    0 30px 60px -12px rgba(0, 0, 0, .6),
    0 0 90px rgba(60, 198, 255, .35);
}
.badge__logo::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%; pointer-events: none;
  box-shadow: inset 0 -14px 36px rgba(10, 58, 108, .14), inset 0 0 0 1px rgba(10, 58, 108, .08);
}
@keyframes bob { 50% { transform: translateZ(40px) translateY(-10px); } }
.badge__drop { position: absolute; color: var(--aqua-400); filter: drop-shadow(0 6px 12px rgba(60, 198, 255, .6)); }
.badge__drop svg { width: 100%; height: 100%; }
.badge__drop--1 { width: 28px; height: 28px; right: 2%; top: 14%; animation: float-a 5s ease-in-out infinite; }
.badge__drop--2 { width: 18px; height: 18px; left: 1%; bottom: 22%; animation: float-b 6s ease-in-out infinite; color: var(--aqua-300); }
.badge__drop--3 { width: 14px; height: 14px; left: 12%; top: 6%; animation: float-a 7s ease-in-out -2s infinite; color: #fff; opacity: .8; }
@keyframes float-a { 50% { transform: translate(-6px, -14px) rotate(-8deg); } }
@keyframes float-b { 50% { transform: translate(8px, 10px) rotate(10deg); } }

.hero__scroll { display: none; }

.waves {
  position: absolute; left: 0; right: 0; bottom: -1px; z-index: 1;
  width: 100%; height: var(--wave-h);
}
.waves__g > use { animation: wave-move 25s cubic-bezier(.55, .5, .45, .5) infinite; }
.waves__g > use:nth-child(1) { animation-delay: -2s; animation-duration: 7s; }
.waves__g > use:nth-child(2) { animation-delay: -3s; animation-duration: 10s; }
.waves__g > use:nth-child(3) { animation-delay: -4s; animation-duration: 13s; }
.waves__g > use:nth-child(4) { animation-delay: -5s; animation-duration: 20s; }
@keyframes wave-move { 0% { transform: translate3d(-90px, 0, 0); } 100% { transform: translate3d(85px, 0, 0); } }

@media (max-height: 740px) and (max-width: 700px) {
  .badge { --size: clamp(170px, 46vw, 210px); }
  .hero__title { font-size: clamp(38px, 11vw, 50px); margin: 16px 0; }
}

@media (min-width: 700px) {
  .hero__actions { flex-direction: row; max-width: none; justify-content: center; }
}

@media (min-width: 1000px) {
  .hero { padding-bottom: calc(var(--wave-h) + 20px); }
  .hero__grid {
    display: grid; grid-template-columns: 1.08fr .92fr; align-items: center;
    text-align: left; gap: 40px;
  }
  .hero__text { align-items: flex-start; order: 1; }
  .hero__visual { order: 2; display: grid; place-items: center; }
  .hero__actions { justify-content: flex-start; }
  .hero__points { justify-content: flex-start; }
  .badge { --size: min(450px, 36vw); }
  .hero__title { font-size: clamp(64px, 6.6vw, 104px); }
  .hero__scroll {
    position: absolute; left: 50%; bottom: calc(var(--wave-h) - 10px); z-index: 2;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    transform: translateX(-50%);
    font-size: 11px; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: rgba(255, 255, 255, .6);
  }
  .hero__scroll-pipe { position: relative; width: 4px; height: 46px; border-radius: 4px; background: rgba(255, 255, 255, .15); overflow: hidden; }
  .hero__scroll-pipe i { position: absolute; left: 0; right: 0; top: -40%; height: 40%; border-radius: 4px; background: var(--aqua-400); animation: scroll-drip 1.8s var(--ease-io) infinite; }
  @keyframes scroll-drip { to { top: 100%; } }
}

/* =========================================================
   USLUGE
   ========================================================= */
.services { background: var(--paper); padding-top: clamp(56px, 8vw, 110px); }
.services::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(10, 58, 108, .09) 1px, transparent 1.5px);
  background-size: 26px 26px;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 20%, #000 70%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 20%, #000 70%, transparent);
}
.services__grid { position: relative; display: grid; gap: 16px; }
@media (min-width: 680px) { .services__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (min-width: 1040px) { .services__grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.card {
  position: relative; isolation: isolate; overflow: hidden;
  padding: 28px 26px 34px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 1px 2px rgba(10, 31, 56, .04), 0 18px 40px -24px rgba(10, 31, 56, .25);
  transition: transform .6s var(--ease-out), box-shadow .6s var(--ease-out), border-color .4s ease;
}
.js .card.reveal { transition: opacity .9s ease, transform 1.1s var(--ease-out), box-shadow .6s var(--ease-out); transition-delay: calc(var(--d, 0) * 70ms); }
.card:hover { box-shadow: 0 1px 2px rgba(10, 31, 56, .04), 0 30px 60px -28px rgba(11, 90, 166, .45); border-color: rgba(22, 119, 214, .22); }
@media (hover: hover) { .js .card.reveal.is-in:hover { transform: translateY(-6px); transition-delay: 0s; } }
.card__icon {
  width: 64px; height: 64px; border-radius: 20px;
  display: grid; place-items: center;
  background: linear-gradient(145deg, var(--blue-500), var(--navy-800));
  box-shadow: 0 14px 28px -12px rgba(11, 90, 166, .8), inset 0 1px 0 rgba(255, 255, 255, .25);
  margin-bottom: 26px;
  transition: transform .6s var(--ease-back);
}
@media (hover: hover) { .card:hover .card__icon { transform: rotate(-8deg) scale(1.06); } }
.card__icon svg, .feature__ico svg {
  width: 36px; height: 36px; fill: none; stroke: #fff; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round;
}
.js .card__icon path, .js .feature__ico path { stroke-dasharray: 1; stroke-dashoffset: 1; }
.js .is-in .card__icon path, .js .is-in .feature__ico path { animation: draw 1.6s var(--ease-out) forwards; animation-delay: calc(var(--d, 0) * 70ms + .25s); }
.js .is-in .card__icon path:nth-child(2), .js .is-in .feature__ico path:nth-child(2) { animation-delay: calc(var(--d, 0) * 70ms + .45s); }
.js .is-in .card__icon path:nth-child(3), .js .is-in .feature__ico path:nth-child(3) { animation-delay: calc(var(--d, 0) * 70ms + .65s); }
.js .is-in .card__icon path:nth-child(4) { animation-delay: calc(var(--d, 0) * 70ms + .85s); }
@keyframes draw { to { stroke-dashoffset: 0; } }
.card__num {
  position: absolute; top: 26px; right: 26px;
  font-family: var(--f-display); font-weight: 700; font-size: 15px;
  color: transparent; -webkit-text-stroke: 1px rgba(10, 58, 108, .3);
}
.card h3 { font-family: var(--f-display); font-weight: 700; font-size: 21px; line-height: 1.2; letter-spacing: -.01em; margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 16px; }
.card > *:not(.card__water):not(.card__num) { position: relative; z-index: 1; }
.card > .card__num { z-index: 1; }
.card__water {
  position: absolute; left: 0; right: 0; bottom: 0; height: 100%; z-index: 0;
  background: linear-gradient(180deg, #d4f1ff, #b7e7ff);
  transform: translateY(100%);
  transition: transform 1.4s var(--ease-out);
  pointer-events: none;
}
.card__water::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: 100%; height: 14px; margin-bottom: -1px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 14' preserveAspectRatio='none'%3E%3Cpath d='M0 8Q15 0 30 8T60 8T90 8T120 8V14H0Z' fill='%23d4f1ff'/%3E%3C/svg%3E") repeat-x 0 0 / 120px 14px;
  animation: wave-bg 3.4s linear infinite;
}
@keyframes wave-bg { to { background-position: 120px 0; } }
.is-in .card__water { transform: translateY(calc(100% - 26px)); transition-delay: calc(var(--d, 0) * 70ms + .5s); }
@media (hover: hover) { .card:hover .card__water { transform: translateY(58%); transition-delay: 0s; } }

/* =========================================================
   TRAKE
   ========================================================= */
.bands { position: relative; height: clamp(190px, 22vw, 270px); overflow: hidden; background: linear-gradient(180deg, var(--paper) 50%, var(--navy-900) 50%); z-index: 2; }
.band {
  position: absolute; left: -5%; right: -5%; top: 50%;
  padding: clamp(14px, 2vw, 22px) 0;
  overflow: hidden;
}
.band--aqua { top: 37%; background: var(--aqua-400); transform: translateY(-50%) rotate(3deg); box-shadow: 0 20px 40px -20px rgba(60, 198, 255, .6); }
.band--red { top: 63%; background: var(--red-500); transform: translateY(-50%) rotate(-3deg); box-shadow: 0 20px 40px -20px rgba(224, 55, 44, .6); }
.band__track { display: flex; width: max-content; animation: marquee 32s linear infinite; }
.band--aqua .band__track { animation-direction: reverse; animation-duration: 40s; }
.band__row { display: flex; align-items: center; flex: none; }
.band__row span {
  font-family: var(--f-display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(22px, 4.4vw, 46px); letter-spacing: -.01em; line-height: 1; white-space: nowrap;
  color: #fff; padding: 0 .6em;
}
.band--aqua .band__row span { color: var(--navy-900); }
.band__row i {
  width: .9em; height: .9em; flex: none; font-size: clamp(22px, 4.4vw, 46px);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M12 2.5c-.3 0-.6.15-.8.4C9.4 5.2 5 11 5 14.8A7 7 0 0 0 19 14.8C19 11 14.6 5.2 12.8 2.9a1 1 0 0 0-.8-.4z'/%3E%3C/svg%3E") center / contain no-repeat;
  opacity: .9;
}
.band--aqua .band__row i { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23041b35' d='M12 2.5c-.3 0-.6.15-.8.4C9.4 5.2 5 11 5 14.8A7 7 0 0 0 19 14.8C19 11 14.6 5.2 12.8 2.9a1 1 0 0 0-.8-.4z'/%3E%3C/svg%3E"); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =========================================================
   KAKO RADIMO
   ========================================================= */
.process { color: #fff; background: var(--navy-900); overflow: hidden; padding-top: clamp(60px, 8vw, 110px); }
.process__bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(50% 40% at 90% 10%, rgba(22, 119, 214, .35), transparent 70%),
    radial-gradient(40% 40% at 0% 80%, rgba(60, 198, 255, .14), transparent 70%),
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px) 0 0 / 44px 44px;
}
.process__grid { position: relative; display: grid; gap: 10px; }
.process__head { margin-bottom: 36px; }
.process__head .btn { margin-top: 30px; }
@media (min-width: 1000px) {
  .process__grid { grid-template-columns: .95fr 1.05fr; gap: 80px; align-items: start; }
  .process__head { position: sticky; top: calc(var(--header-h) + 60px); margin-bottom: 0; }
}

.steps { position: relative; }
.steps__list { display: grid; gap: 22px; }
.steps__pipe {
  position: absolute; left: 30px; top: 30px; bottom: 30px; width: 12px; margin-left: -6px;
  border-radius: 12px;
  background: linear-gradient(90deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .12), rgba(255, 255, 255, .05));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .07);
}
.steps__water {
  position: absolute; left: 2px; right: 2px; top: 0;
  height: calc(var(--p, 0) * 100%);
  border-radius: 10px;
  background:
    repeating-linear-gradient(180deg, transparent 0 16px, rgba(255, 255, 255, .45) 16px 20px),
    linear-gradient(180deg, var(--aqua-300), var(--aqua-400) 50%, var(--blue-500));
  background-size: 100% 36px, 100% 100%;
  box-shadow: 0 0 20px rgba(60, 198, 255, .7);
  animation: pipe-flow .8s linear infinite;
  transition: height .25s linear;
}
.steps__water::after {
  content: ""; position: absolute; left: 50%; bottom: -12px;
  width: 16px; height: 16px; margin-left: -8px;
  border-radius: 0 50% 50% 50%; transform: rotate(45deg);
  background: var(--blue-500);
  box-shadow: 0 0 16px var(--aqua-400);
  opacity: calc(var(--p, 0) * 40);
}
@keyframes pipe-flow { to { background-position: 0 36px, 0 0; } }

.step { position: relative; display: grid; grid-template-columns: 60px 1fr; gap: 18px; align-items: start; }
.step__node {
  position: relative; z-index: 1;
  width: 60px; height: 60px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--f-display); font-weight: 700; font-size: 20px;
  background: var(--navy-800);
  border: 2px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .6);
  transition: background .6s ease, border-color .6s ease, color .6s ease, box-shadow .6s ease, transform .6s var(--ease-back);
}
.step.is-wet .step__node {
  color: var(--navy-900);
  background: linear-gradient(160deg, var(--aqua-300), var(--aqua-400) 55%, var(--blue-500));
  border-color: transparent;
  box-shadow: 0 0 0 7px rgba(60, 198, 255, .14), 0 0 36px rgba(60, 198, 255, .55);
  transform: scale(1.06);
}
.step__body {
  padding: 22px 22px 24px;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .025));
  border: 1px solid rgba(255, 255, 255, .09);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  transition: border-color .6s ease, background .6s ease;
}
.step.is-wet .step__body { border-color: rgba(60, 198, 255, .32); background: linear-gradient(160deg, rgba(60, 198, 255, .12), rgba(255, 255, 255, .03)); }
.step h3 { font-family: var(--f-display); font-weight: 700; font-size: 20px; letter-spacing: -.01em; margin-bottom: 8px; }
.step p { color: rgba(255, 255, 255, .72); font-size: 16px; }

/* =========================================================
   ZAŠTO MI
   ========================================================= */
.why { background: var(--paper); overflow: hidden; }
.why::after {
  content: ""; position: absolute; right: -20vmax; top: -10vmax; width: 60vmax; height: 60vmax; border-radius: 50%;
  background: radial-gradient(circle, rgba(60, 198, 255, .16), transparent 65%);
  pointer-events: none;
}
.why__quote {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(32px, 8vw, 78px); line-height: 1.08; letter-spacing: -.03em;
  max-width: 1050px; margin: 22px 0 22px;
}
.why__lead { font-size: clamp(17px, 2vw, 20px); color: var(--muted); max-width: 620px; margin-bottom: clamp(44px, 6vw, 72px); }
.why__grid { position: relative; z-index: 1; display: grid; gap: 14px; }
@media (min-width: 640px) { .why__grid { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
@media (min-width: 1040px) { .why__grid { grid-template-columns: repeat(4, 1fr); } }
.feature {
  padding: 26px 24px 28px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px -28px rgba(10, 31, 56, .3);
}
.feature__ico {
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center; margin-bottom: 20px;
  background: var(--aqua-100);
  box-shadow: 0 0 0 8px rgba(60, 198, 255, .08);
}
.feature__ico svg { width: 30px; height: 30px; stroke: var(--blue-600); }
.feature h3 { font-family: var(--f-display); font-weight: 700; font-size: 18px; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 15.5px; }

/* =========================================================
   HITNO
   ========================================================= */
.urgent { background: var(--paper); padding-top: 0; }
.urgent__panel {
  position: relative; overflow: hidden; isolation: isolate;
  padding: clamp(34px, 6vw, 76px) clamp(22px, 5vw, 72px);
  border-radius: clamp(28px, 4vw, 44px);
  color: #fff;
  background:
    radial-gradient(70% 60% at 100% 0%, rgba(60, 198, 255, .35), transparent 70%),
    radial-gradient(50% 50% at 0% 100%, rgba(224, 55, 44, .22), transparent 70%),
    linear-gradient(150deg, var(--blue-600), var(--navy-800) 55%, var(--navy-950));
  box-shadow: 0 40px 80px -40px rgba(4, 27, 53, .7);
}
.urgent__valve {
  position: absolute; z-index: -1; right: -70px; top: -70px;
  width: clamp(220px, 40vw, 380px); height: auto;
  fill: rgba(255, 255, 255, .06); stroke: rgba(255, 255, 255, .09);
  transform: rotate(var(--rot, 0deg));
}
.kicker--alert { color: #fff; background: rgba(224, 55, 44, .22); border-color: rgba(255, 84, 69, .45); }
.pulse { position: relative; width: 9px; height: 9px; border-radius: 50%; background: var(--red-400); }
.pulse::after { content: ""; position: absolute; inset: -5px; border-radius: 50%; border: 2px solid var(--red-400); animation: ping 1.6s var(--ease-out) infinite; }
.urgent__head { max-width: 680px; margin-bottom: clamp(30px, 5vw, 56px); }
.urgent__head p { color: rgba(255, 255, 255, .75); font-size: clamp(17px, 2vw, 19px); }
.urgent h2 em { background-image: linear-gradient(100deg, var(--aqua-300), #fff); }
.tips { display: grid; gap: 14px; counter-reset: tip; }
@media (min-width: 640px) { .tips { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .tips { grid-template-columns: repeat(4, 1fr); } }
.tip {
  position: relative; padding: 24px 22px 26px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.tip__num {
  display: block; margin-bottom: 14px;
  font-family: var(--f-display); font-weight: 800; font-size: 40px; line-height: 1;
  color: transparent; -webkit-text-stroke: 1.4px var(--aqua-300);
}
.tip h3 { font-family: var(--f-display); font-weight: 700; font-size: 18px; margin-bottom: 8px; }
.tip p { color: rgba(255, 255, 255, .74); font-size: 15.5px; }
.urgent__cta { margin-top: clamp(30px, 5vw, 50px); display: flex; }
.urgent__cta .btn { width: 100%; }
@media (min-width: 640px) { .urgent__cta .btn { width: auto; } }

/* =========================================================
   KONTAKT
   ========================================================= */
.contact { background: var(--paper); padding-top: 0; padding-bottom: clamp(60px, 8vw, 110px); }
.contact__grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 40px; }
.contact__grid > * { min-width: 0; }
@media (min-width: 1000px) { .contact__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 64px; align-items: start; } }
.contact__info > p { color: var(--muted); font-size: clamp(17px, 2vw, 19px); max-width: 520px; }

.call-card {
  position: relative; overflow: hidden; isolation: isolate;
  display: grid; grid-template-columns: auto 1fr auto; grid-template-rows: auto auto; column-gap: 16px; align-items: center;
  margin-top: 32px; padding: 22px 22px;
  border-radius: 26px;
  color: #fff;
  background: linear-gradient(140deg, var(--navy-800), var(--navy-950));
  box-shadow: 0 30px 60px -30px rgba(4, 27, 53, .9);
  transition: transform .6s var(--ease-out), box-shadow .6s var(--ease-out);
}
.call-card:hover { transform: translateY(-4px); box-shadow: 0 40px 70px -30px rgba(11, 90, 166, .9); }
.call-card:active { transform: scale(.98); }
.call-card__ico {
  grid-row: 1 / 3; position: relative;
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--red-500);
  box-shadow: 0 10px 24px -6px rgba(224, 55, 44, .8);
}
.call-card__ico svg { width: 26px; height: 26px; animation: ring 2.6s ease-in-out infinite; }
.call-card__ripples { position: absolute; left: 22px; top: 50%; width: 58px; height: 58px; margin-top: -29px; z-index: -1; }
.call-card__ripples i { position: absolute; inset: 0; border-radius: 50%; border: 2px solid rgba(255, 84, 69, .6); animation: ripple 2.6s var(--ease-out) infinite; }
.call-card__ripples i:nth-child(2) { animation-delay: 1.3s; }
.call-card__label { font-size: 12.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--aqua-300); }
.call-card__num { font-family: var(--f-display); font-weight: 700; font-size: clamp(21px, 5.7vw, 36px); letter-spacing: -.01em; line-height: 1.15; white-space: nowrap; }
.call-card__go {
  grid-row: 1 / 3; grid-column: 3;
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .1);
  transition: background .4s ease, transform .5s var(--ease-out);
}
.call-card__go svg { width: 18px; height: 18px; }
.call-card:hover .call-card__go { background: var(--aqua-400); color: var(--navy-900); transform: rotate(-45deg); }
@media (max-width: 479px) { .call-card__go { display: none; } .call-card { grid-template-columns: auto 1fr; padding: 20px 18px; column-gap: 14px; } }

.contact__mini { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 12px; }
.mini-btn {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 56px; padding: 0 14px;
  border-radius: 18px;
  background: #fff; border: 1px solid var(--line);
  font-weight: 700; font-size: 15px; color: var(--navy-900);
  box-shadow: 0 14px 30px -24px rgba(10, 31, 56, .5);
  transition: border-color .3s ease, transform .4s var(--ease-out), background .3s ease;
}
.mini-btn:hover { border-color: rgba(22, 119, 214, .35); transform: translateY(-2px); }
.mini-btn:active { transform: scale(.97); }
.mini-btn svg { width: 20px; height: 20px; color: var(--blue-500); flex: none; }

.quick {
  padding: clamp(24px, 4vw, 40px);
  border-radius: 30px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 40px 80px -50px rgba(10, 31, 56, .5);
  display: grid; gap: 18px;
}
.quick__head h3 { font-family: var(--f-display); font-weight: 700; font-size: 24px; letter-spacing: -.01em; margin-bottom: 6px; }
.quick__head p { color: var(--muted); font-size: 15.5px; }
.field { display: grid; gap: 8px; border: 0; margin: 0; padding: 0; min-width: 0; }
.field label, .field legend { font-size: 14px; font-weight: 700; color: var(--navy-900); padding: 0; }
.field legend { margin-bottom: 8px; }
.field input, .field textarea {
  width: 100%;
  font-size: 16px; /* sprječava zoom na iPhoneu */
  padding: 15px 16px;
  border-radius: 16px;
  border: 1.5px solid rgba(10, 31, 56, .12);
  background: var(--paper);
  outline: none;
  -webkit-appearance: none; appearance: none;
  transition: border-color .3s ease, background .3s ease, box-shadow .3s ease;
}
.field textarea { resize: vertical; min-height: 110px; line-height: 1.5; }
.field input::placeholder, .field textarea::placeholder { color: #8a9bb0; }
.field input:focus, .field textarea:focus { border-color: var(--blue-500); background: #fff; box-shadow: 0 0 0 4px rgba(22, 119, 214, .12); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { position: relative; cursor: pointer; }
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip span {
  display: inline-flex; align-items: center; min-height: 42px; padding: 0 16px;
  border-radius: 999px;
  font-size: 14.5px; font-weight: 600;
  background: var(--paper); border: 1.5px solid rgba(10, 31, 56, .1);
  transition: background .3s ease, color .3s ease, border-color .3s ease, transform .3s var(--ease-back);
}
.chip:hover span { border-color: rgba(22, 119, 214, .4); }
.chip input:checked + span { background: var(--navy-900); color: #fff; border-color: var(--navy-900); transform: scale(1.03); }
.chip input:focus-visible + span { outline: 3px solid var(--aqua-400); outline-offset: 2px; }
.quick__note { font-size: 13px; color: var(--muted); text-align: center; }

/* =========================================================
   PODNOŽJE
   ========================================================= */
.footer {
  position: relative; overflow: hidden;
  color: rgba(255, 255, 255, .8);
  background: var(--navy-950);
  padding: calc(40px + 60px) 0 calc(28px + var(--safe-b));
}
.footer__wave { position: absolute; left: 0; right: 0; top: -1px; width: 100%; height: 60px; fill: var(--paper); transform: scaleY(-1); z-index: 1; }
.footer__inner { position: relative; z-index: 1; display: grid; gap: 34px; }
.footer__brand { display: flex; align-items: center; gap: 16px; }
.footer__brand img { width: 72px; height: 72px; border-radius: 50%; box-shadow: 0 0 0 3px #fff, 0 16px 30px rgba(0, 0, 0, .4); }
.footer__brand strong { display: block; font-family: var(--f-display); font-weight: 700; font-size: 22px; color: #fff; }
.footer__brand span { font-size: 14px; opacity: .7; }
.footer__motto { font-family: var(--f-display); font-weight: 700; font-size: clamp(28px, 6vw, 48px); line-height: 1.1; letter-spacing: -.02em; color: #fff; }
.footer__cols { display: grid; gap: 28px; }
.footer__cols nav { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.footer__cols nav a { font-weight: 600; transition: color .3s ease; }
.footer__cols nav a:hover { color: var(--aqua-300); }
.footer__contact span { display: block; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; opacity: .6; font-weight: 700; margin-bottom: 4px; }
.footer__contact a { font-family: var(--f-display); font-weight: 700; font-size: 26px; color: var(--aqua-300); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .1); font-size: 13.5px; opacity: .75; }
.footer__top {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .14);
  transition: background .3s ease, transform .4s var(--ease-out);
}
.footer__top:hover { background: var(--aqua-400); color: var(--navy-900); transform: translateY(-3px); }
.footer__top svg { width: 20px; height: 20px; }
.footer__giant {
  position: absolute; right: -2vw; bottom: -.18em; z-index: 0;
  font-family: var(--f-display); font-weight: 900; font-size: clamp(140px, 34vw, 420px); line-height: 1; letter-spacing: -.05em;
  color: transparent; -webkit-text-stroke: 1px rgba(127, 220, 255, .12);
  pointer-events: none; user-select: none;
}
@media (min-width: 900px) {
  .footer { padding-top: 130px; }
  .footer__inner { grid-template-columns: 1fr 1fr; align-items: end; }
  .footer__cols { grid-template-columns: 1fr auto; align-items: end; grid-column: 1 / -1; }
  .footer__bottom { grid-column: 1 / -1; }
}

/* ---------- Dock (mobitel) ---------- */
.dock {
  position: fixed; z-index: 80; left: 12px; right: 12px; bottom: calc(12px + var(--safe-b));
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 8px;
  padding: 7px;
  border-radius: 24px;
  background: rgba(4, 27, 53, .78);
  -webkit-backdrop-filter: saturate(160%) blur(18px); backdrop-filter: saturate(160%) blur(18px);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, .5);
  transform: translateY(calc(100% + 30px + var(--safe-b)));
  transition: transform .7s var(--ease-out);
}
.dock.is-visible { transform: none; }
.dock a {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  height: 52px; border-radius: 18px;
  font-weight: 700; font-size: 16px; color: #fff;
}
.dock a:active { transform: scale(.97); }
.dock svg { width: 20px; height: 20px; }
.dock__call { background: var(--red-500); box-shadow: 0 8px 20px -6px rgba(224, 55, 44, .7); }
.dock__call svg { animation: ring 3s ease-in-out infinite; }
.dock__msg { background: rgba(255, 255, 255, .1); }
@media (min-width: 900px) { .dock { display: none; } }

/* ---------- Toast ---------- */
.toast {
  position: fixed; z-index: 150; left: 50%; bottom: calc(96px + var(--safe-b));
  padding: 13px 20px; border-radius: 999px;
  background: var(--navy-900); color: #fff; font-weight: 600; font-size: 15px;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, .5);
  transform: translate(-50%, 20px); opacity: 0; pointer-events: none;
  transition: opacity .4s ease, transform .5s var(--ease-out);
  white-space: nowrap;
}
.toast.is-on { opacity: 1; transform: translate(-50%, 0); }

/* ---------- Kap na dodir ---------- */
.tap {
  position: fixed; z-index: 300; width: 16px; height: 16px; margin: -8px 0 0 -8px;
  border-radius: 50%; pointer-events: none;
  border: 2px solid rgba(60, 198, 255, .75);
  animation: tap .9s var(--ease-out) forwards;
}
.tap--2 { animation-delay: .12s; border-color: rgba(60, 198, 255, .45); opacity: 0; }
@keyframes tap { 0% { transform: scale(.3); opacity: 1; } 100% { transform: scale(5); opacity: 0; } }

/* ---------- Smanjeno kretanje ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; transition-delay: 0s !important; }
  .water-text { background-position-y: .02em; }
  .hero__glow, .hero__bubbles { display: none; }
}
