/* ===========================
   BRUTAL YELLOW REDESIGN
   Dominant: Yellow
   Contrast: Black / White
=========================== */

:root{
  --y: #FFD400;
  --y2:#FFEA73;
  --b: #0B0B0B;
  --w: #FFFFFF;
  --muted:#1b1b1b;
  --line: rgba(0,0,0,.14);

  --radius: 18px;
  --radius2: 26px;
  --shadow: 0 18px 0 rgba(0,0,0,.85);
  --shadowSoft: 0 12px 30px rgba(0,0,0,.18);

  --container: 1080px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  color: var(--b);
  background: var(--y);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  overflow-x:hidden;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(800px 500px at 20% 0%, rgba(255,255,255,.22), transparent 55%),
    radial-gradient(900px 600px at 90% 20%, rgba(255,255,255,.16), transparent 60%),
    repeating-linear-gradient(0deg, rgba(0,0,0,.05), rgba(0,0,0,.05) 1px, transparent 1px, transparent 7px);
  mix-blend-mode: multiply;
  opacity:.55;
}

.container{
  width: min(var(--container), calc(100% - 32px));
  margin-inline:auto;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }


/* Ribbon */
/* ===========================
   TOP RIBBON (SCROLLS AWAY)
=========================== */
.ribbon{
  position: relative;   /* BITNO: više NIJE sticky */
  z-index: 50;
  background: var(--b);
  color: var(--y);
  border-bottom: 3px solid var(--b);
}


.ribbon__inner{
  width: min(var(--container), calc(100% - 32px));
  margin:0 auto;
  padding:8px 0;
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  font-family: Space Grotesk, Inter, sans-serif;
  font-weight:700;
  letter-spacing:.2px;
}

.rb{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  font-size:12px;
}

.dot{ width:6px;height:6px;border-radius:99px;background:var(--y); opacity:.9; }

/* Header */
.header{
  position:sticky;
  top:48px;
  z-index:40;
  background: rgba(255,212,0,.92);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--b);
}
.header__inner{
  padding:14px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

/* ✅ VEĆI LOGO */
.brand__badge{
  width:7rem;
  height:7rem;
  border-radius: 22px;
  background: var(--b);
  border:3px solid var(--b);
  box-shadow: 0 10px 0 rgba(0,0,0,.35);
  display:grid;
  place-items:center;
  overflow:hidden;
}
.brand__badge img{
  width: 10rem;
  object-fit: contain;
  padding: 8px;
}

.brand__text{
  display:flex;
  flex-direction:column;
  line-height:1.05;
}
.brand__text strong{
  font-family: Space Grotesk, Inter, sans-serif;
  letter-spacing:-.6px;
  font-size:24px;
}
.brand__text span{ font-size:14px; opacity:.85; }

.nav{
  display:flex;
  align-items:center;
  gap:12px;
  font-family: Space Grotesk, Inter, sans-serif;
  font-weight:600;
}
.nav a{
  padding:10px 12px;
  border-radius: 999px;
  border:2px solid transparent;
}
.nav a:hover{
  border-color: var(--b);
  background: rgba(255,255,255,.35);
}
.nav__cta{
  background: var(--b) !important;
  color: var(--y) !important;
  border-color: var(--b) !important;
}

/* Hero */
.hero{ padding: 34px 0 0; }
.hero__grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:22px;
  align-items:start;
}
.kicker{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:10px 14px;
  border:3px solid var(--b);
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  font-family: Space Grotesk, Inter, sans-serif;
  font-weight:700;
  letter-spacing:.2px;
  margin:0 0 12px;
}







.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 14px 16px;
  border-radius: 999px;
  border:3px solid var(--b);
  font-family: Space Grotesk, Inter, sans-serif;
  font-weight:700;
  letter-spacing:.2px;
  transition: transform .12s ease, box-shadow .12s ease;
  box-shadow: 0 12px 0 rgba(0,0,0,.25);
}
.btn:active{ transform: translateY(2px); box-shadow: 0 10px 0 rgba(0,0,0,.25); }
.btn__sub{ opacity:.9; font-weight:700; margin-left:6px; }

.btn--black{ background: var(--b); color: var(--y); }
.btn--yellow{ background: var(--y); color: var(--b); }
.btn--ghost{ background: rgba(255,255,255,.65); color: var(--b); }

.hero__note{
  display:block;
  padding:12px 14px;
  border-radius: var(--radius);
  border:2px dashed rgba(0,0,0,.55);
  background: rgba(255,255,255,.4);
  max-width: 60ch;
}

.hero__media{ display:grid; gap:14px; }
.poster{
  border:3px solid var(--b);
  border-radius: var(--radius2);
  overflow:hidden;
  background: var(--w);
  box-shadow: var(--shadowSoft);
  position:relative;
}
.poster img{ width:100%; height: 330px; object-fit:cover; }
.poster__tag{
  position:absolute; left:12px; bottom:12px;
  background: var(--b); color: var(--y);
  border:2px solid var(--b);
  padding:10px 12px;
  border-radius: 999px;
  font-family: Space Grotesk, Inter, sans-serif;
  font-weight:700; font-size:12px;
}
/* ===========================
   HERO X (brutal upgrade)
=========================== */

.hero{
  padding: 26px 0 0;
}

.heroX{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:18px;
  align-items:start;
}

/* LEFT */
.heroX__chips{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin: 0 0 14px;
}
.chip{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  border:3px solid var(--b);
  background: rgba(255,255,255,.55);
  font-family: Space Grotesk, Inter, sans-serif;
  font-weight:900;
  text-transform: uppercase;
  letter-spacing:.3px;
  font-size:12px;
}
.chip--black{
  background: var(--b);
  color: var(--y);
}
.chip--soft{
  background: rgba(255,255,255,.35);
}

.heroX__title{
  margin:0 0 12px;
  font-family: Space Grotesk, Inter, sans-serif;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing:-1.3px;
  line-height:.94;
  font-size: clamp(36px, 4.2vw, 66px);
}

.stamp{
  display:inline-block;
  background: var(--b);
  color: var(--w);
  padding: .08em .28em;
  border-radius: .22em;

  /* KLJUČNO */
  line-height: 1;
  margin-bottom: .08em;

  box-shadow: 8px 8px 0 rgba(0,0,0,.30);
  transform: rotate(-1deg);
}

.heroX__offer{
  width: fit-content;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  padding:12px 14px;
  border-radius: 18px;
  border:3px solid var(--b);
  background: #FFF1A8; /* isto kao svetli CTA dugmad */
  color: var(--b);
  box-shadow: 0 12px 0 rgba(0,0,0,.22);
  margin: 0 0 14px;
  font-family: Space Grotesk, Inter, sans-serif;
  text-transform: uppercase;
  letter-spacing:.4px;
}

.offer__left{
  background: var(--b);
  color: var(--y);
  padding:6px 10px;
  border-radius:999px;
  font-weight:900;
}

.offer__mid{
  font-weight:900;
}

.offer__right{
  padding:6px 10px;
  border-radius:999px;
  border:2px solid var(--b);
  font-weight:900;
}


.heroX__sub{
  margin:0 0 14px;
  font-size:16px;
  line-height:1.55;
  max-width: 62ch;
  color: rgba(0,0,0,.82);
}

/* PRICES GRID */
.heroX__grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px;
  margin: 0 0 14px;
}

.priceCard{
  border:3px solid var(--b);
  border-radius: 18px;
  background: rgba(255,255,255,.62);
  padding: 12px 14px;
  box-shadow: 0 12px 0 rgba(0,0,0,.20);
  position:relative;
  overflow:hidden;
}
.priceCard::before{
  content:"";
  position:absolute;
  left:0; top:0;
  width:100%;
  height:8px;
  background: var(--b);
  opacity:.9;
}
.priceCard__n{
  margin-top: 8px;
  font-family: Space Grotesk, Inter, sans-serif;
  font-weight:950;
  letter-spacing:-.6px;
  font-size: 24px;
}
.priceCard__t{
  font-size:12px;
  font-weight:900;
  text-transform: uppercase;
  letter-spacing:.3px;
  opacity:.85;
}
.priceCard__s{
  font-size:12px;
  opacity:.8;
}

.priceCard--accent{
  background: rgba(255,255,255,.50);
}
.priceCard--accent::before{
  background: var(--y);
}

/* CTAs */
.heroX__ctas{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin: 0 0 12px;
}
.btn--wide{ padding-inline: 18px; }

/* NOTE */
.heroX__note{
  border: 3px dashed rgba(0,0,0,.55);
  background: rgba(255,255,255,.35);
  border-radius: 18px;
  padding: 12px 14px;
  line-height:1.5;
}
.noteTag{
  display:inline-flex;
  align-items:center;
  padding:4px 8px;
  border-radius:999px;
  border:2px solid var(--b);
  background: rgba(255,255,255,.60);
  font-family: Space Grotesk, Inter, sans-serif;
  font-weight:950;
  letter-spacing:.3px;
  font-size:11px;
  text-transform:uppercase;
  margin: 0 8px 0 0;
}
.noteTag--black{
  background: var(--b);
  color: var(--y);
  border-color: var(--b);
  margin-left: 10px;
}

/* RIGHT - PROOF CARD */
.proofCard{
  border:3px solid var(--b);
  border-radius: 26px;
  background: rgba(255,255,255,.62);
  box-shadow: 0 16px 0 rgba(0,0,0,.18);
  overflow:hidden;
}
.proofCard__media{
  position:relative;
  border-bottom:3px solid var(--b);
}
.proofCard__media img{
  width:100%;
  height: 340px;
  object-fit:cover;
  display:block;
}
.proofCard__badge{
  position:absolute;
  left:12px;
  bottom:12px;
  background: var(--b);
  color: var(--y);
  border:2px solid var(--b);
  padding:10px 12px;
  border-radius:999px;
  font-family: Space Grotesk, Inter, sans-serif;
  font-weight:950;
  font-size:12px;
}
.proofCard__rows{
  padding:14px;
  display:grid;
  gap:10px;
}
.proofRow{
  display:flex;
  gap:10px;
  align-items:center;
  border:3px solid var(--b);
  border-radius: 18px;
  background: rgba(255,255,255,.55);
  padding:10px 12px;
  box-shadow: 0 10px 0 rgba(0,0,0,.14);
}
.proofIco{
  width:38px;height:38px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: var(--b);
  color: var(--y);
  border:2px solid var(--b);
  font-size:18px;
}
.proofT{
  font-family: Space Grotesk, Inter, sans-serif;
  font-weight:950;
  text-transform: uppercase;
  letter-spacing:.2px;
  line-height:1.1;
}
.proofD{
  font-size:12px;
  opacity:.85;
}
.hl{
  background: var(--b);
  color: var(--y);
  padding: 0 .18em;
  border-radius: .2em;
  box-shadow: 0 10px 0 rgba(0,0,0,.25);
}
.hl2{
  background: rgba(0,0,0,.10);
  border: 2px solid rgba(0,0,0,.55);
  border-radius: 999px;
  padding: 2px 10px;
  font-weight:800;
}
/* MARQUEE */
.heroMarquee{
  margin-top: 22px;
  border-top: 3px solid var(--b);
  border-bottom: 3px solid var(--b);
  background: rgba(255,255,255,.30);
  overflow:hidden;
}
.heroMarquee__track{
  display:flex;
  gap:18px;
  white-space:nowrap;
  padding: 12px 0;
  font-family: Space Grotesk, Inter, sans-serif;
  font-weight:950;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: heroScroll 18s linear infinite;
}
@keyframes heroScroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 980px){
  .heroX{ grid-template-columns: 1fr; }
  .proofCard__media img{ height: 300px; }
}

@media (max-width: 520px){
  .heroX__grid{ grid-template-columns: 1fr; }
  .heroX__title{ font-size: 38px; }
  .heroX__offer{ width: 100%; }
  .heroX__ctas .btn{ width:100%; justify-content:center; }
  .proofCard__media img{ height: 300px; }
}



@keyframes scroll{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }

/* Sections */
.section{ padding: 44px 0; }
.section--alt{
  background: rgba(255,255,255,.35);
  border-top: 3px solid var(--b);
  border-bottom: 3px solid var(--b);
}
.section__head{ display:grid; gap:10px; margin-bottom: 18px; }
.section__title{
  margin:0;
  font-family: Space Grotesk, Inter, sans-serif;
  font-weight:700;
  letter-spacing:-.8px;
  font-size: clamp(26px, 3vw, 40px);
  text-transform: uppercase;
}
.section__sub{
  margin:0;
  max-width: 70ch;
  color: rgba(0,0,0,.8);
  line-height:1.55;
}

/* Cards */
.cards{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:16px;
}
.card{
  border:3px solid var(--b);
  border-radius: var(--radius2);
  background: rgba(255,255,255,.60);
  box-shadow: 0 14px 0 rgba(0,0,0,.2);
  padding:16px;
  display:grid;
  gap:12px;
}
.card--wide{
  grid-column: 1 / -1;
  background: var(--b);
  color: var(--y);
  box-shadow: 0 18px 0 rgba(0,0,0,.35);
}
.card__top{ display:flex; align-items:center; justify-content:space-between; gap:12px; }
.card__num{ font-family: Space Grotesk, Inter, sans-serif; font-weight:700; font-size: 28px; letter-spacing:-1px; }
.pill{
  border:2px solid var(--b);
  border-radius: 999px;
  padding:8px 12px;
  font-family: Space Grotesk, Inter, sans-serif;
  font-weight:700;
  font-size:12px;
  background: rgba(255,255,255,.55);
}
.card--wide .pill{ border-color: var(--y); background: rgba(255,212,0,.12); color: var(--y); }
.card__title{
  margin:0;
  font-family: Space Grotesk, Inter, sans-serif;
  font-weight:700;
  letter-spacing:-.4px;
  text-transform: uppercase;
  font-size: 18px;
}
.card__text{ margin:0; line-height:1.6; color: rgba(0,0,0,.8); }
.card--wide .card__text{ color: rgba(255,255,255,.85); }
.card__media{
  border:2px solid rgba(0,0,0,.7);
  border-radius: 16px;
  overflow:hidden;
  background:#fff;
}
.card__media img{ width:100%; height: 220px; object-fit:cover; }

.card__actions{ display:flex; gap:14px; align-items:center; flex-wrap:wrap; }
.link{
  font-family: Space Grotesk, Inter, sans-serif;
  font-weight:800;
  letter-spacing:.3px;
  text-transform: uppercase;
  border-bottom: 2px solid var(--b);
  padding-bottom: 2px;
}
.card--wide .link{ border-bottom-color: var(--y); }
.card--wide .btn{ border-color: var(--y); }

/* Videos */
.videoGrid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
}
.video{
  margin:0;
  border:3px solid var(--b);
  border-radius: var(--radius2);
  background: rgba(255,255,255,.65);
  overflow:hidden;
  box-shadow: 0 14px 0 rgba(0,0,0,.18);
}
.video video{ width:100%; height: 240px; object-fit:cover; background:#000; }
.video figcaption{
  padding: 12px 14px;
  font-family: Space Grotesk, Inter, sans-serif;
  font-weight:700;
  text-transform: uppercase;
  letter-spacing:.2px;
}

/* Promo */
.promo{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:16px;
  align-items:stretch;
}
.promo__left{
  border:3px solid var(--b);
  border-radius: var(--radius2);
  background: rgba(255,255,255,.65);
  padding:18px;
  box-shadow: 0 14px 0 rgba(0,0,0,.18);
}
.promo__title{
  margin:0 0 10px;
  font-family: Space Grotesk, Inter, sans-serif;
  font-weight:700;
  letter-spacing:-.8px;
  font-size: 34px;
  text-transform: uppercase;
}
.promo__text{ margin:0 0 14px; line-height:1.6; color: rgba(0,0,0,.82); }
.promo__bullets{ display:grid; gap:8px; margin: 0 0 16px; }
.tick{
  padding:10px 12px;
  border-radius: 14px;
  border:2px solid rgba(0,0,0,.35);
  background: rgba(255,255,255,.45);
}
.promo__actions{ display:flex; gap:12px; flex-wrap:wrap; }

.promoCard{
  border:3px solid var(--b);
  border-radius: var(--radius2);
  background: var(--b);
  color: var(--y);
  padding:18px;
  box-shadow: 0 18px 0 rgba(0,0,0,.35);
  display:grid;
  gap:12px;
}
.promoCard__top{ display:flex; gap:10px; flex-wrap:wrap; }
.stamp{
  display:inline-block;
  background: #FFF1A8;
  color: var(--b);
  padding: .08em .28em;
  border-radius: .22em;

  /* KLJUČNO */
  line-height: 1;
  margin-bottom: .08em;

  box-shadow: 8px 8px 0 rgba(0,0,0,.30);
  transform: rotate(-1deg);
}

.stamp--ghost{ background: transparent; }
.priceLine{
  border:2px dashed rgba(255,212,0,.65);
  border-radius: 16px;
  padding:12px;
}
.priceLine__k{ font-size:12px; opacity:.9; }
.priceLine__v{
  font-family: Space Grotesk, Inter, sans-serif;
  font-weight:700;
  font-size: 16px;
  margin-top:2px;
}
.promoCard__note{
  color: rgba(255,255,255,.85);
  line-height:1.5;
  font-size: 13px;
  border-top: 1px solid rgba(255,212,0,.35);
  padding-top: 10px;
}

/* Pricing */
.pricing{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:16px;
}
.pricing__col{
  border:3px solid var(--b);
  border-radius: var(--radius2);
  background: rgba(255,255,255,.65);
  padding:18px;
  box-shadow: 0 14px 0 rgba(0,0,0,.18);
}
.pricing__title{
  margin:0 0 12px;
  font-family: Space Grotesk, Inter, sans-serif;
  font-weight:800;
  text-transform: uppercase;
  letter-spacing:.2px;
}
.row{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:10px 0;
  border-bottom: 1px solid rgba(0,0,0,.14);
}
.row:last-of-type{ border-bottom:none; }
.row span{ color: rgba(0,0,0,.78); }
.row strong{ font-family: Space Grotesk, Inter, sans-serif; font-weight:800; }
.note{
  margin-top:10px;
  padding:12px;
  border-radius: 16px;
  border:2px dashed rgba(0,0,0,.35);
  background: rgba(255,255,255,.45);
  font-size:13px;
  line-height:1.5;
  color: rgba(0,0,0,.78);
}

/* Steps */
.steps{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
}
.step{
  border:3px solid var(--b);
  border-radius: var(--radius2);
  background: rgba(255,255,255,.65);
  padding:16px;
  box-shadow: 0 14px 0 rgba(0,0,0,.18);
  display:grid;
  gap:10px;
}
.step__n{
  width:max-content;
  padding:8px 12px;
  border-radius: 999px;
  background: var(--b);
  color: var(--y);
  font-family: Space Grotesk, Inter, sans-serif;
  font-weight:800;
}
.step__t{
  margin:0;
  font-family: Space Grotesk, Inter, sans-serif;
  font-weight:800;
  text-transform: uppercase;
  letter-spacing:.2px;
  font-size: 16px;
}
.step__p{ margin:0; line-height:1.6; color: rgba(0,0,0,.78); }
.step__img{
  width:100%;
  height: 210px;
  object-fit:cover;
  border-radius: 16px;
  border:2px solid rgba(0,0,0,.65);
  background:#fff;
}

/* ✅ NEW: Drying section layout */
.drying{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:16px;
  align-items:stretch;
}
.drying__box{
  border:3px solid var(--b);
  border-radius: var(--radius2);
  background: rgba(255,255,255,.65);
  padding:18px;
  box-shadow: 0 14px 0 rgba(0,0,0,.18);
}
.drying__t{
  margin:0 0 10px;
  font-family: Space Grotesk, Inter, sans-serif;
  font-weight:800;
  text-transform: uppercase;
}
.drying__list{
  margin:0 0 14px;
  padding-left: 18px;
  line-height:1.7;
}
.drying__actions{ display:flex; gap:12px; flex-wrap:wrap; }
.drying__img{
  border:3px solid var(--b);
  border-radius: var(--radius2);
  overflow:hidden;
  background:#fff;
  box-shadow: 0 14px 0 rgba(0,0,0,.18);
  position:relative;
}
.drying__img img{ width:100%; height: 320px; object-fit:cover; }
.drying__tag{
  position:absolute;
  left:12px; bottom:12px;
  background: var(--b);
  color: var(--y);
  border:2px solid var(--b);
  padding:10px 12px;
  border-radius: 999px;
  font-family: Space Grotesk, Inter, sans-serif;
  font-weight:800;
  font-size:12px;
}

/* ✅ NEW: Pre/Posle gallery */
.baGrid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
}
.baCard{
  margin:0;
  border:3px solid var(--b);
  border-radius: var(--radius2);
  background: rgba(255,255,255,.65);
  overflow:hidden;
  box-shadow: 0 14px 0 rgba(0,0,0,.18);
}
.baCard img{ width:100%; height: 260px; object-fit:cover; object-position: left center; /* ⬅️ više levo */}
.baCard figcaption{
  padding: 12px 14px;
  font-family: Space Grotesk, Inter, sans-serif;
  font-weight:800;
  text-transform: uppercase;
  letter-spacing:.2px;
}
.baNote{
  margin-top:14px;
  border:3px solid var(--b);
  border-radius: 18px;
  background: rgba(255,255,255,.55);
  padding: 12px 14px;
  box-shadow: 0 12px 0 rgba(0,0,0,.18);
}

/* ✅ NEW: Contact form */
.formWrap{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:16px;
  align-items:start;
}
.formCard{
  border:3px solid var(--b);
  border-radius: var(--radius2);
  background: rgba(255,255,255,.65);
  padding:18px;
  box-shadow: 0 14px 0 rgba(0,0,0,.18);
}
.form{
  display:grid;
  gap:12px;
}
.form__row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.field{ display:grid; gap:6px; }
.field span{
  font-family: Space Grotesk, Inter, sans-serif;
  font-weight:800;
  text-transform: uppercase;
  font-size:12px;
  letter-spacing:.2px;
}
.field input, .field select, .field textarea{
  width:100%;
  border:3px solid var(--b);
  border-radius: 16px;
  padding: 12px 12px;
  background: rgba(255,255,255,.85);
  font: inherit;
  outline: none;
}
.field textarea{ resize: vertical; min-height: 110px; }

.form__footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  margin-top:4px;
}
.form__alt{
  font-size:14px;
  color: rgba(0,0,0,.75);
}
.form__link{
  font-weight:900;
  border-bottom:2px solid var(--b);
}
.form__note{
  border:2px dashed rgba(0,0,0,.45);
  border-radius: 16px;
  padding: 12px;
  background: rgba(255,255,255,.45);
  font-size:13px;
  line-height:1.5;
}

.formSide .sideCard{
  border:3px solid var(--b);
  border-radius: var(--radius2);
  background: var(--b);
  color: var(--y);
  padding:18px;
  box-shadow: 0 18px 0 rgba(0,0,0,.35);
}
.sideCard h3{
  margin:0 0 8px;
  font-family: Space Grotesk, Inter, sans-serif;
  font-weight:900;
  text-transform: uppercase;
}
.sideCard p{ margin:0 0 14px; color: rgba(255,255,255,.85); line-height:1.6; }
.sideBtns{ display:flex; gap:10px; flex-wrap:wrap; }
.sideSmall{ margin-top:10px; font-weight:900; letter-spacing:.2px; }

/* Final */
.final{
  padding: 52px 0 110px;
  border-top: 3px solid var(--b);
  background: rgba(255,255,255,.35);
}
.final__inner{
  border:3px solid var(--b);
  border-radius: var(--radius2);
  background: rgba(255,255,255,.68);
  padding:22px;
  box-shadow: 0 14px 0 rgba(0,0,0,.18);
  text-align:center;
}
.final__title{
  margin:0 0 10px;
  font-family: Space Grotesk, Inter, sans-serif;
  font-weight:800;
  text-transform: uppercase;
  letter-spacing:-.6px;
  font-size: clamp(22px, 3vw, 34px);
}
.final__sub{
  margin:0 auto 16px;
  max-width: 70ch;
  color: rgba(0,0,0,.78);
  line-height:1.6;
}
.final__actions{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}

/* Footer */
.footer{
  padding: 18px 0 140px;
  background: var(--b);
  color: rgba(255,255,255,.9);
  border-top: 3px solid var(--b);
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap:16px;
  align-items:start;
}
.footer__brand{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:10px;
}
.footer__text{ margin:0; color: rgba(255,255,255,.75); line-height:1.6; }
.footer__links{
  display:grid;
  gap:8px;
  font-family: Space Grotesk, Inter, sans-serif;
  font-weight:700;
  text-transform: uppercase;
  letter-spacing:.2px;
}
.footer__links a{ color: rgba(255,255,255,.86); }
.footer__links a:hover{ color: var(--y); }

.footer__contact{
  display:grid;
  gap:8px;
  justify-items:end;
}
.footer__phone{
  font-family: Space Grotesk, Inter, sans-serif;
  font-weight:800;
  font-size: 20px;
  color: var(--y);
}
.footer__dm{ color: rgba(255,255,255,.86); }
.footer__small{ font-size:12px; color: rgba(255,255,255,.65); margin-top:6px; }

/* Sticky bottom call bar (3 buttons) */
.callbar{
  position:fixed;
  left:0; right:0; bottom:0;
  z-index:60;
  padding: 10px 12px;
  display:flex;
  gap:10px;
  justify-content:center;
  flex-wrap:wrap;
  background: rgba(255,212,0,.92);
  backdrop-filter: blur(10px);
  border-top: 3px solid var(--b);
}
.callbar__btn{
  display:flex;
  gap:10px;
  align-items:center;
  padding: 12px 14px;
  border-radius: 16px;
  border:3px solid var(--b);
  background: var(--b);
  color: var(--y);
  min-width: min(300px, 30vw);
  box-shadow: 0 12px 0 rgba(0,0,0,.25);
}
.callbar__btn--ghost{
  background: rgba(255,255,255,.65);
  color: var(--b);
}
.callbar__icon{
  width:38px;height:38px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: var(--y);
  color: var(--b);
  border:2px solid var(--b);
}
.callbar__btn--ghost .callbar__icon{
  background: var(--b);
  color: var(--y);
  border-color: var(--b);
}
.callbar__txt{
  display:flex;
  flex-direction:column;
  line-height:1.05;
  font-family: Space Grotesk, Inter, sans-serif;
}
.callbar__txt strong{ letter-spacing:.5px; text-transform: uppercase; }
.callbar__txt span{ font-size:12px; opacity:.85; }

/* Responsive */
@media (max-width: 980px){
  .hero__grid{ grid-template-columns: 1fr; }
  .poster img{ height: 300px; }
  .videoGrid{ grid-template-columns: 1fr; }
  .promo{ grid-template-columns: 1fr; }
  .pricing{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr; }
  .footer__contact{ justify-items:start; }
  .nav{ display:none; }
  .drying{ grid-template-columns: 1fr; }
  .formWrap{ grid-template-columns: 1fr; }
  .baGrid{ grid-template-columns: 1fr; }
}

@media (max-width: 520px){
  .hero__stats{ grid-template-columns: 1fr; }
  .miniCards{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
  .poster img{ height: 240px; }
  .form__row{ grid-template-columns: 1fr; }
  .callbar{ padding: 10px; gap:10px; }
  .callbar__btn{ min-width: 0; width: 100%; justify-content:center; }
}
/* ===========================
   MOBILE HAMBURGER + DRAWER
=========================== */

.navToggle{
  display:none;
  width:52px;
  height:44px;
  border-radius: 14px;
  border:3px solid var(--b);
  background: rgba(255,255,255,.65);
  box-shadow: 0 10px 0 rgba(0,0,0,.18);
  cursor:pointer;
  align-items:center;
  justify-content:center;
  gap:6px;
  padding:10px;
}
.navToggle__bar{
  display:block;
  width:22px;
  height:3px;
  background: var(--b);
  border-radius: 999px;
}

/* Show hamburger only on mobile */
@media (max-width: 980px){
  .nav{ display:none; }
  .navToggle{ display:inline-flex; }
}

.mobileNav{
  position:fixed;
  inset:0;
  z-index: 999;
  display:none;
}

.mobileNav.is-open{
  display:block;
}

.mobileNav__backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(3px);
}

.mobileNav__panel{
  position:absolute;
  top:0;
  right:0;
  height:90%;
  width:min(420px, 92vw);
  background: var(--y);
  border-left: 3px solid var(--b);
  box-shadow: -18px 0 0 rgba(0,0,0,.35);
  padding:16px;
  display:flex;
  flex-direction:column;
  gap:14px;
  transform: translateX(100%);
  transition: transform .18s ease;
}

.mobileNav.is-open .mobileNav__panel{
  transform: translateX(0);
}

.mobileNav__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding-bottom:12px;
  border-bottom: 3px solid var(--b);
}

.mobileNav__brand{
  display:flex;
  align-items:center;
  gap:10px;
}
.mobileNav__logo{
  width:46px;
  height:46px;
  border-radius: 16px;
  background: var(--b);
  border:3px solid var(--b);
  display:grid;
  place-items:center;
  overflow:hidden;
}
.mobileNav__logo img{
  width:100%;
  height:100%;
  object-fit:contain;
  padding:6px;
}

.mobileNav__brand strong{
  font-family: Space Grotesk, Inter, sans-serif;
  font-weight:900;
  letter-spacing:-.4px;
}
.mobileNav__city{
  font-size:12px;
  opacity:.8;
}

.mobileNav__close{
  width:44px;
  height:44px;
  border-radius: 14px;
  border:3px solid var(--b);
  background: rgba(255,255,255,.65);
  box-shadow: 0 10px 0 rgba(0,0,0,.18);
  cursor:pointer;
  font-weight:900;
}

.mobileNav__links{
  display:grid;
  gap:10px;
  padding-top:4px;
}
.mobileNav__links a{
  padding:12px 14px;
  border-radius: 16px;
  border:3px solid var(--b);
  background: rgba(255,255,255,.60);
  box-shadow: 0 10px 0 rgba(0,0,0,.14);
  font-family: Space Grotesk, Inter, sans-serif;
  font-weight:900;
  text-transform: uppercase;
  letter-spacing:.2px;
}

.mobileNav__links a:active{
  transform: translateY(1px);
}

.mobileNav__cta{
  background: var(--b) !important;
  color: var(--y) !important;
}

.mobileNav__actions{
  margin-top:auto;
  display:grid;
  gap:10px;
  padding-top:12px;
  border-top: 3px solid var(--b);
}
.mobileNav__actions .btn{
  width:100%;
  justify-content:center;
}
/* Mobile overlay must cover whole screen */
.mobileNav{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}
.mobileNav.is-open{ display:block; }

.mobileNav__backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(6px);
}

/* panel above backdrop */
.mobileNav__panel{
  position: absolute;
  left: 12px;
  right: 12px;
  top: 92px; /* ispod ribbon+header */
  max-width: 520px;
  margin: 0 auto;
  z-index: 1;

  border:3px solid var(--b);
  border-radius: 22px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 18px 0 rgba(0,0,0,.22);
  padding: 14px;
}

/* hide callbar when menu open */
body.menu-open .callbar{ display:none; }
/* INFINITE STAMP PULSE */
.stamp{
  display: inline-block;
  transform-origin: 30% 60%;
  animation: stampPulse 2.8s ease-in-out infinite;
}

/* brutal ali suptilno */
@keyframes stampPulse{
  0%{
    transform: scale(1) rotate(-1deg);
    box-shadow: 0 0 0 rgba(0,0,0,0);
  }

  45%{
    transform: scale(1) rotate(-1deg);
  }

  55%{
    transform: scale(1.06) rotate(1deg);
    box-shadow: 0 8px 0 rgba(0,0,0,.25);
  }

  65%{
    transform: scale(0.98) rotate(-2deg);
  }

  100%{
    transform: scale(1) rotate(-1deg);
    box-shadow: 0 0 0 rgba(0,0,0,0);
  }
}

/* accessibility */
@media (prefers-reduced-motion: reduce){
  .stamp{
    animation: none;
  }
}
.contact-buttons{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 18px;
  border-radius:14px;
  font-weight:600;
  text-decoration:none;
  transition:all .25s ease;
  border:1px solid rgba(0,0,0,.1);
}

.btn__icon{
  width:20px;
  height:20px;
  fill:currentColor;
}

/* Ghost base */
.btn--ghost{
  background:transparent;
  color:#111;
}

/* WhatsApp */
.btn--whatsapp{
  color:#25D366;
  border-color:rgba(37,211,102,.4);
}
.btn--whatsapp:hover{
  background:#25D366;
  color:#fff;
  transform:translateY(-2px);
}

/* Viber */
.btn--viber{
  color:#7360F2;
  border-color:rgba(115,96,242,.4);
}
.btn--viber:hover{
  background:#7360F2;
  color:#fff;
  transform:translateY(-2px);
}
.callbar__icon{
  width:44px;
  height:44px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

.callbar__icon svg{
  width:22px;
  height:22px;
  fill:currentColor;
}

/* WhatsApp */
.callbar__btn--wa{
  color:#000000;
}
.callbar__btn--wa .callbar__icon{
  background:rgba(37,211,102,.12);
}

/* Viber */
.callbar__btn--viber{
  color:#000000;
}
.callbar__btn--viber .callbar__icon{
  background:rgba(115,96,242,.12);
}

/* Hover polish */
.callbar__btn:hover{
  transform:translateY(-2px);
}
/* da card ne puca u širinu/visinu */
.step{
  display:flex;
  flex-direction:column;
}

/* video kao “image card” */
.step__media{
  width:100%;
  display:block;
  margin-top:12px;

  /* isti fazon kao slika */
  border-radius:14px;
  overflow:hidden;

  /* ključ: drži format da ne razvali layout */
  aspect-ratio: 16 / 9;      /* promeni na 4/3 ili 1/1 ako ti više leži */
  height:auto;
  object-fit:cover;

  background:#000;           /* dok se učitava */
}
/* ========= CONTAINER (ako već nemaš) ========= */
.container{
  width:min(1120px, 92vw);
  margin-inline:auto;
}

/* ========= LEGAL BANNER SECTION ========= */
.legal-banner{
  padding: clamp(18px, 3vw, 34px) 0;
  background: transparent; /* ili ostavi na žutom bg sajta */
}

/* “frame” da izgleda kao poster u kartici */
.legal-banner__frame{
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 3px solid rgba(0,0,0,.92);
  box-shadow:
    0 18px 0 rgba(0,0,0,.85),
    0 26px 60px rgba(0,0,0,.22);
  background: #fff; /* ako slika ima transparent/bele ivice */
}

/* slika uvek fituje, ne puca layout */
.legal-banner__img{
  display:block;
  width:100%;
  height:auto;

  /* ako hoćeš da uvek bude “hero” proporcija: */
  /* aspect-ratio: 16 / 9; */
  /* object-fit: cover; */
}

/* Mobile tweak: malo manje “stampa” senka */
@media (max-width: 640px){
  .legal-banner__frame{
    border-radius: 18px;
    border-width: 2px;
    box-shadow:
      0 12px 0 rgba(0,0,0,.85),
      0 18px 40px rgba(0,0,0,.20);
  }
}
/* ===========================
   HEADER (ALWAYS VISIBLE)
=========================== */
.header{
  position: sticky;
  top: 0;              /* UVEK na vrhu */
  z-index: 40;
  background: rgba(255,212,0,.92);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--b);
}
/* ===========================
   CALLBAR – ICONS SIDE BY SIDE
=========================== */

@media (max-width: 520px){
  .callbar{
    flex-wrap: nowrap;        /* NEMA prelamanja u kolonu */
    gap: 8px;
  }

  .callbar__btn{
    flex: 1 1 0;              /* svi dugmići iste širine */
    min-width: 0;             /* KLJUČNO */
    width: auto;              /* pregazi width:100% */
    justify-content: center;
    padding: 10px;
  }

  /* sakrij tekst, ostavi samo ikonice */
  .callbar__txt{
    display: none;
  }

  .callbar__icon{
    width: 44px;
    height: 44px;
  }
}
.pricing__col .pricing__title + .row{
  margin-top: 6px;
}
.pricing__col .note{
  margin-bottom: 14px;
}
.priceCard--link{
  cursor:pointer;
  text-decoration:none;
  color:inherit;
  transition: transform .12s ease, box-shadow .12s ease;
}
.priceCard--link:hover{
  transform: translateY(-2px);
}
.priceCard--link:active{
  transform: translateY(1px);
}
.priceCard--link:focus-visible{
  outline: 3px solid var(--b);
  outline-offset: 3px;
}
.callbar__btn{
  flex-direction: column;
  gap: 6px;
}

/* tekst ispod ikonice */
.callbar__label{
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .3px;
  text-transform: uppercase;
  color: var(--b);
}

/* telefon dugme – bez teksta ispod */
.callbar__btn:first-child{
  flex-direction: row;
}

/* ===========================
   GOOGLE REVIEWS (brutal yellow)
=========================== */

.gReviews__top{
  display:flex;
  gap:14px;
  align-items:stretch;
  justify-content:space-between;
  flex-wrap:wrap;
  margin-bottom: 14px;
}

.gScore{
  flex: 1 1 520px;
  border:3px solid var(--b);
  border-radius: var(--radius2);
  background: rgba(255,255,255,.70);
  box-shadow: 0 14px 0 rgba(0,0,0,.18);
  padding:14px;
  display:flex;
  justify-content:space-between;
  gap:14px;
  align-items:center;
}

.gScore__left{
  display:flex;
  gap:12px;
  align-items:center;
}

.gScore__logo{
  width:48px;
  height:48px;
  border-radius: 16px;
  border:3px solid var(--b);
  background: var(--b);
  color: var(--y);
  display:grid;
  place-items:center;
  font-family: Space Grotesk, Inter, sans-serif;
  font-weight:950;
  box-shadow: 0 10px 0 rgba(0,0,0,.18);
}

.gScore__title{
  font-family: Space Grotesk, Inter, sans-serif;
  font-weight:950;
  text-transform: uppercase;
  letter-spacing:.2px;
}

.gScore__meta{
  font-size:12px;
  opacity:.85;
}

.gScore__right{
  text-align:right;
  display:grid;
  gap:2px;
}

.gScore__num{
  font-family: Space Grotesk, Inter, sans-serif;
  font-weight:950;
  font-size: 34px;
  line-height:1;
}

.gScore__stars{
  font-family: Space Grotesk, Inter, sans-serif;
  font-weight:950;
  letter-spacing:1px;
}

.gScore__count{
  font-size:12px;
  opacity:.85;
}

.gActions{
  flex: 0 1 auto;
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}

/* Reviews grid */
.gReviews__grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap:14px;
}

.gReview{
  border:3px solid var(--b);
  border-radius: var(--radius2);
  background: rgba(255,255,255,.65);
  box-shadow: 0 14px 0 rgba(0,0,0,.18);
  padding:14px;
  display:grid;
  gap:10px;
}

.gReview__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}

.gAvatar{
  width:44px;
  height:44px;
  border-radius: 16px;
  border:3px solid var(--b);
  background: var(--y);
  display:grid;
  place-items:center;
  font-family: Space Grotesk, Inter, sans-serif;
  font-weight:950;
  box-shadow: 0 10px 0 rgba(0,0,0,.12);
  flex-shrink:0;
}

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

.gName{
  font-family: Space Grotesk, Inter, sans-serif;
  font-weight:950;
  text-transform: uppercase;
  letter-spacing:.2px;
  font-size: 13px;
}

.gMeta{
  font-size:12px;
  opacity:.8;
}

.gStars{
  font-family: Space Grotesk, Inter, sans-serif;
  font-weight:950;
  letter-spacing:1px;
  background: rgba(0,0,0,.10);
  border:2px solid rgba(0,0,0,.35);
  border-radius: 999px;
  padding:4px 10px;
  white-space:nowrap;
}

.gText{
  margin:0;
  line-height:1.6;
  color: rgba(0,0,0,.82);
}

.gReviews__note{
  margin-top:14px;
  border:3px solid var(--b);
  border-radius: 18px;
  background: rgba(255,255,255,.55);
  padding: 12px 14px;
  box-shadow: 0 12px 0 rgba(0,0,0,.18);
}

/* Responsive */
@media (max-width: 980px){
  .gReviews__grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .gScore{ flex: 1 1 100%; }
}

@media (max-width: 520px){
  .gReviews__grid{ grid-template-columns: 1fr; }
  .gScore{ text-align:left; }
  .gScore__right{ text-align:left; }
  .gActions .btn{ width:100%; justify-content:center; }
}
