  :root {
    /* Servis Kožul brand */
    --blue: #20567C;
    --ink: #0F2537;
    --sky: #6CB6E5;
    --orange: #F57C00;
    --orange-hover: #E06F00;
    --orange-text: #C75F00;
    --footer: #0F2537;

    --paper: #F3F6F8;
    --white: #FFFFFF;
    --text: #0F2537;
    --muted: #5A6B7B;
    --line: #DDE4EA;

    /* Jedan grid za cijelu stranicu */
    --wrap: 1280px; /* sadržaj najviše 1152px + bočni razmak */
    --gutter: 64px;
    --header-h: 96px;
    --section: 88px;
    --radius: 6px;
  }

  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; scroll-padding-top: 24px; -webkit-text-size-adjust: 100%; }
  @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition: none !important; } }

  body { margin: 0; overflow-x: hidden; background: var(--white); color: var(--text); font-family: "Poppins", system-ui, sans-serif; font-size: 1rem; line-height: 1.65; -webkit-font-smoothing: antialiased; }
  img { display: block; max-width: 100%; height: auto; }
  h1, h2, h3 { margin: 0; letter-spacing: -0.02em; text-wrap: balance; }
  h1 { font-size: 4.75rem; font-weight: 600; line-height: 1.04; }
  h2 { font-size: 2.75rem; font-weight: 600; line-height: 1.15; }
  h2 span { display: block; color: var(--blue); }
  h3 { font-size: 1.125rem; font-weight: 600; line-height: 1.35; letter-spacing: -0.01em; }
  p { margin: 0; }
  a { color: inherit; }
  a, button, summary, input, textarea { touch-action: manipulation; }
  :focus-visible { outline: 3px solid var(--sky); outline-offset: 3px; }

  .wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
  .section { padding: var(--section) 0; }
  .paper { background: var(--paper); }

  .intro { max-width: 880px; margin: 0 auto; text-align: center; }
  /* Mali narančasti label (zajednička klasa za sve sekcije).
     Vlastiti prored + padding + bez clippinga, da se slova i dijakritici (Š, Č, Ž) nikad ne režu u nijednom pregledniku. */
  .eyebrow { display: block; position: static; top: auto; transform: none; overflow: visible; height: auto; min-height: 0; max-height: none; clip-path: none; margin: 0 0 16px; padding: 3px 0 2px; font-size: .875rem; line-height: 1.5; font-weight: 600; letter-spacing: .12em; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: geometricPrecision; text-transform: uppercase; color: var(--orange-text); }
  .intro p, .lead { margin-top: 16px; color: var(--muted); font-size: 1.0625rem; }
  .intro p { margin-left: auto; margin-right: auto; max-width: 52ch; }

  .icon { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex: none; }
  .skip { position: absolute; left: 16px; top: -100px; z-index: 100; background: var(--ink); color: var(--white); padding: 12px 16px; font-weight: 600; }
  .skip:focus { top: 12px; }

  /* Gumb */
  .btn { display: inline-flex; align-items: center; justify-content: center; min-height: 56px; padding: 0 36px; background: var(--orange); color: var(--footer); font: inherit; font-size: .875rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; border: 0; border-radius: var(--radius); text-decoration: none; cursor: pointer; transition: background-color .15s ease; }
  .btn:hover { background: var(--orange-hover); }
  .btn:active { transform: translateY(1px); }
  .btn[disabled] { opacity: .65; cursor: progress; }
  .btn--sm { min-height: 44px; padding: 0 22px; font-size: .75rem; }

  /* ---------- Header (transparentan, preko hero fotografije, nije sticky) ---------- */
  .top { position: absolute; top: 0; left: 0; right: 0; z-index: 60; background: transparent; }
  /* Header ima vlastiti široki container: 50px od ruba, najviše 1800px */
  .top > .wrap { position: relative; z-index: 2; width: calc(100% - 100px); max-width: 1800px; margin: 0 auto; padding-left: 0; padding-right: 0; height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 40px; }
  .logo { display: flex; align-items: center; }
  .logo { flex: none; }
  .logo img { height: 64px; width: auto; }
  .nav { display: flex; align-items: center; justify-content: flex-end; gap: 26px; margin-left: auto; }
  .nav a { position: relative; display: flex; align-items: center; height: 44px; font-size: .875rem; font-weight: 400; letter-spacing: .06em; color: rgba(255, 255, 255, .82); text-decoration: none; white-space: nowrap; transition: color .2s ease; }
  .nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 10px; height: 1px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
  .nav a:hover, .nav a:focus-visible { color: var(--white); }
  .nav a:hover::after, .nav a:focus-visible::after { transform: scaleX(1); }
  .burger { display: none; width: 44px; height: 44px; padding: 0; border: 1px solid rgba(255, 255, 255, .35); border-radius: var(--radius); background: transparent; color: var(--white); cursor: pointer; place-items: center; }
  .burger svg { width: 22px; height: 22px; }
  .burger .i-close, .top.is-open .burger .i-open { display: none; }
  .top.is-open .burger .i-close { display: block; }
  .mnav { display: none; }

  /* ---------- Hero ---------- */
  .hero { position: relative; min-height: min(90svh, 880px); display: flex; align-items: center; text-align: center; color: var(--white); overflow: hidden; background: var(--ink); }
  .hero > img { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 45%; }
  .hero::before { content: ""; position: absolute; inset: 0; z-index: 1; background: rgba(12, 30, 46, .72); }
  .hero .wrap { position: relative; z-index: 2; padding-top: calc(var(--header-h) + 80px); padding-bottom: 184px; }
  .hero h1 .accent { color: var(--orange); }
  .hero-badge { position: relative; overflow: hidden; display: inline-flex; align-items: center; gap: 12px; margin-bottom: 48px; padding: 14px 30px 14px 24px; border-radius: 999px; background: var(--orange); color: var(--footer); font-size: 1.0625rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; line-height: 1.1; box-shadow: 0 0 0 4px rgba(245, 124, 0, .35); -webkit-font-smoothing: antialiased; }
  .hero-badge .icon { width: 22px; height: 22px; stroke-width: 2.2; }
  .hero-badge::after { content: ""; position: absolute; top: 0; bottom: 0; left: -60%; width: 40%; background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .35), transparent); transform: skewX(-20deg); animation: badge-shine 3.2s ease-in-out infinite; }
  @keyframes badge-shine { 0%, 55% { left: -60%; } 100% { left: 130%; } }
  @media (prefers-reduced-motion: reduce) { .hero-badge::after { animation: none; } }
  .hero-sub { margin: 44px auto 0; max-width: 720px; font-size: 1.1875rem; color: rgba(255, 255, 255, .86); }
  .btn--lg { min-height: 64px; padding: 0 52px; font-size: .9375rem; }
  .hero .btn { margin-top: 56px; min-height: 72px; padding: 0 68px; font-size: 1.0625rem; }

  /* ---------- Naše usluge ---------- */
  .services { margin-top: 72px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; }
  .service img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); }
  .service h3 { margin-top: 28px; text-align: center; font-size: 1rem; letter-spacing: .08em; text-transform: uppercase; }
  .service p { margin: 10px auto 0; max-width: 34ch; text-align: center; color: var(--muted); }

  .trustrow { list-style: none; margin: 48px 0 0; padding: 32px 0 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; }
  .trustrow li { display: flex; align-items: center; gap: 12px; font-weight: 500; line-height: 1.4; }
  .trustrow li { justify-self: center; text-align: left; }
  .trustrow svg { width: 22px; height: 22px; color: var(--orange); }

  /* ---------- O nama ---------- */
  .about-sec { padding: var(--section) 0; }
  .about { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); grid-template-areas: "head img" "text img"; column-gap: 80px; align-items: center; }
  .about-head { grid-area: head; align-self: end; }
  .about-head h2 { font-size: 2.5rem; }
  .about-img { grid-area: img; }
  .about-img img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; object-position: center 35%; border-radius: var(--radius); }
  .about-text { grid-area: text; align-self: start; margin-top: 20px; max-width: 52ch; }
  .about-text p { color: var(--muted); font-size: 1.0625rem; line-height: 1.75; }
  .about-text p + p { margin-top: 12px; }
  /* ---------- Promotivna ponuda ---------- */
  .promo { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: 80px; align-items: center; }
  .promo-media { position: relative; display: grid; place-items: center; padding: 48px 40px 72px; border: 1px solid var(--line); border-radius: var(--radius); background: radial-gradient(ellipse at 50% 42%, #FFFFFF 0%, #FFFFFF 38%, var(--paper) 100%); }
  .promo-media img { width: 100%; max-width: 400px; height: auto; mix-blend-mode: multiply; }
  .promo-model { position: absolute; left: 50%; bottom: 24px; transform: translateX(-50%); white-space: nowrap; font-size: .8125rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
  .promo-body h2 { font-size: 2.5rem; }
  .promo-lead { margin-top: 16px; color: var(--muted); font-size: 1.0625rem; max-width: 46ch; }
  .promo-list-title { margin-top: 28px; font-weight: 600; color: var(--ink); }
  .promo-list { list-style: none; margin: 14px 0 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 24px; }
  .promo-list li { display: flex; align-items: flex-start; gap: 10px; font-weight: 500; line-height: 1.45; }
  .promo-list svg { width: 20px; height: 20px; margin-top: 1px; color: var(--orange); stroke-width: 2; }
  .promo-price { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px 24px; margin-top: 32px; padding: 24px 28px; border-radius: var(--radius); background: var(--paper); border-left: 4px solid var(--orange); }
  .promo-price-value { display: flex; flex-direction: column; gap: 4px; }
  .promo-price-label { font-size: .875rem; color: var(--muted); white-space: nowrap; }
  .promo-price-num { font-size: 3.25rem; font-weight: 700; line-height: 1; letter-spacing: -.01em; color: var(--orange-text); white-space: nowrap; }
  .promo-price .btn { flex: none; }
  .promo-note { margin-top: 16px; font-size: .8125rem; line-height: 1.6; color: var(--muted); }
  .about-list { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 12px; }
  .about-list li { display: flex; align-items: center; gap: 12px; font-weight: 500; color: var(--text); }
  .about-list svg { width: 22px; height: 22px; color: var(--orange); stroke-width: 1.8; }

  /* ---------- Kako funkcionira (3 koraka nakon upita) ---------- */
  .steps { list-style: none; margin: 48px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); counter-reset: s; }
  .step { counter-increment: s; padding: 8px 40px; text-align: center; }
  .step + .step { border-left: 1px solid var(--line); }
  .step::before { content: counter(s); display: block; font-size: 2rem; font-weight: 600; line-height: 1; letter-spacing: -0.02em; color: var(--orange-text); }
  .step h3 { margin-top: 16px; font-size: 1.25rem; line-height: 1.3; }
  .step p { margin: 10px auto 0; max-width: 36ch; color: var(--muted); line-height: 1.65; text-wrap: balance; }
  .cta-center { width: 100%; margin-top: 48px; display: flex; justify-content: center; }
  .btn--cta { min-height: 60px; padding: 0 48px; font-size: .9375rem; }

  /* ---------- Iskustva klijenata (Google recenzije) ---------- */
  .section--divided { border-top: 1px solid var(--line); }
  .reviews { margin-top: 48px; }
  .reviews-track { display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 2 * 24px) / 3); column-gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; overscroll-behavior-x: contain; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .reviews-track::-webkit-scrollbar { display: none; }
  .reviews-track:focus-visible { outline-offset: 6px; }
  .review { scroll-snap-align: start; display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start; padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
  .review-stars { display: flex; gap: 4px; color: #FBBC04; }
  .review-stars svg { width: 18px; height: 18px; fill: currentColor; }
  /* tekst uvijek kreće odmah ispod zvjezdica; autor je gurnut na dno kartice */
  .review-text { margin: 16px 0 20px; font-size: .9375rem; color: var(--text); line-height: 1.65; }
  .review-meta { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); }
  .review-meta strong { display: block; font-weight: 600; }
  .review-meta span { display: block; margin-top: 2px; font-size: .8125rem; color: var(--muted); }
  .review.is-placeholder .review-stars { color: var(--line); }
  .review.is-placeholder .review-text { display: grid; align-items: start; gap: 10px; align-content: start; min-height: 96px; }
  .review.is-placeholder .review-text span { height: 10px; border-radius: 5px; background: var(--paper); }
  .review.is-placeholder .review-text span:last-child { width: 60%; }
  .review.is-placeholder .review-meta strong { color: var(--muted); font-weight: 500; }
  .reviews-nav { margin-top: 32px; display: flex; align-items: center; justify-content: center; gap: 20px; }
  .reviews.is-static .reviews-nav { display: none; }
  .reviews-arrow { display: grid; place-items: center; width: 48px; height: 48px; padding: 0; border: 1px solid var(--line); border-radius: 50%; background: var(--white); color: var(--text); cursor: pointer; transition: border-color .15s ease, color .15s ease; }
  .reviews-arrow svg { width: 20px; height: 20px; }
  .reviews-arrow:hover:not(:disabled) { border-color: var(--orange); color: var(--orange-text); }
  .reviews-arrow:disabled { opacity: .4; cursor: default; }
  .reviews-dots { display: flex; align-items: center; gap: 4px; }
  .reviews-dot { width: 24px; height: 24px; padding: 0; border: 0; background: none; cursor: pointer; display: grid; place-items: center; }
  .reviews-dot::before { content: ""; width: 8px; height: 8px; border-radius: 4px; background: var(--line); transition: width .2s ease, background-color .2s ease; }
  .reviews-dot.is-active::before { width: 22px; background: var(--orange); }
  @media (max-width: 1023px) {
    .reviews { margin-top: 40px; }
    .reviews-track { grid-auto-columns: calc((100% - 20px) / 2); column-gap: 20px; }
    .review { padding: 28px; }
  }
  @media (max-width: 639px) {
    .reviews { margin-top: 28px; }
    .reviews-track { grid-auto-columns: 100%; column-gap: 16px; }
    .review { padding: 24px; }
    .reviews-nav { margin-top: 24px; gap: 12px; }
  }

  /* ---------- Ponuda i plaćanje ---------- */
  .pay { list-style: none; margin: 32px 0 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 56px; }
  .pay li { display: flex; align-items: center; gap: 14px; font-weight: 500; font-size: 1.0625rem; }
  .pay li span { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--paper); color: var(--blue); flex: none; }
  .pay li svg { width: 22px; height: 22px; }

  /* ---------- Česta pitanja ---------- */
  .faq-list { max-width: 820px; margin: 40px auto 0; }
  .faq-list details { border-bottom: 1px solid var(--line); }
  .faq-list details:first-child { border-top: 1px solid var(--line); }
  .faq-list summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 24px 0; font-weight: 500; font-size: 1.0625rem; }
  .faq-list summary::-webkit-details-marker { display: none; }
  .faq-list summary i { position: relative; flex: none; width: 16px; height: 16px; }
  .faq-list summary i::before, .faq-list summary i::after { content: ""; position: absolute; left: 0; top: 7px; width: 16px; height: 2px; background: var(--blue); transition: transform .2s ease; }
  .faq-list summary i::after { transform: rotate(90deg); }
  .faq-list details[open] summary i::after { transform: rotate(0); }
  .faq-list details p { padding: 0 40px 24px 0; color: var(--muted); max-width: 64ch; }

  /* ---------- Forma ---------- */
  .form { max-width: 720px; margin: 40px auto 0; }
  form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .field { display: grid; gap: 8px; align-content: start; }
  .field--full { grid-column: 1 / -1; }
  .field label { font-size: .875rem; font-weight: 500; }
  .field label small { color: var(--muted); font-weight: 400; font-size: .8125rem; }
  .field input, .field textarea { font: inherit; font-size: 1rem; color: var(--text); width: 100%; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); transition: border-color .15s ease; }
  .field input { height: 56px; padding: 0 16px; }
  .field textarea { min-height: 120px; padding: 14px 16px; resize: vertical; }
  .field input::placeholder, .field textarea::placeholder { color: #6B7C8C; }
  .field input:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(108, 182, 229, .35); }
  .field [aria-invalid="true"] { border-color: #B42318; background: #FEF3F2; }
  .err { color: #B42318; font-size: .8125rem; }
  .err:empty { display: none; }
  form .btn { grid-column: 1 / -1; width: 100%; margin-top: 8px; }
  .fine { grid-column: 1 / -1; text-align: center; font-size: .875rem; color: var(--muted); }
  .fine a { color: var(--muted); }

  /* ---------- Footer ---------- */
  footer { background: var(--footer); color: rgba(255, 255, 255, .66); font-size: .9375rem; }
  /* Footer ima vlastiti široki container (isti kao header): 50px od ruba, najviše 1800px */
  footer > .wrap { width: calc(100% - 100px); max-width: 1800px; margin: 0 auto; padding-left: 0; padding-right: 0; }
  .f-grid { padding: 50px 0 36px; display: grid; grid-template-columns: repeat(3, 1fr); column-gap: 48px; align-items: start; }
  .f-brand { display: flex; align-items: center; justify-content: center; align-self: center; }
  .f-brand a { display: block; line-height: 0; }
  .f-brand img { display: block; height: 76px; width: auto; margin: 0 auto; }
  .f-col h4 { overflow: visible; line-height: 1.6; padding: 4px 0 3px; margin: 0 0 12px; font-size: .75rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--orange); }
  .f-loc { text-align: center; }
  .f-loc address { font-style: normal; line-height: 1.9; }
  .f-loc address a { color: rgba(255, 255, 255, .66); text-decoration: none; }
  .f-loc address a:hover { color: var(--white); }
  .f-loc address strong { color: var(--white); font-weight: 500; }
  .f-contact { text-align: center; }
  .f-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; justify-items: center; }
  .f-item { display: inline-flex; align-items: center; gap: 12px; min-height: 40px; color: var(--white); text-decoration: none; }
  .f-item svg { width: 18px; height: 18px; color: var(--orange); flex: none; stroke-width: 1.6; }
  a.f-item:hover { color: var(--orange); }
  .f-bottom { border-top: 1px solid rgba(255, 255, 255, .1); padding: 18px 0 20px; display: flex; align-items: center; justify-content: space-between; gap: 8px 24px; font-size: .8125rem; color: rgba(255, 255, 255, .5); }

  .sticky { display: none; }

  /* ---------- Responsive ----------
     1440+  veliki desktop (container max 1440px)
     1280   laptop
     1024   tablet landscape: hamburger, 3 stupca ostaju
     900    tablet portrait: sadržaj u jednom centriranom stupcu
     640    mobitel
  */
  @media (max-width: 1279px) {
    :root { --gutter: 48px; --section: 80px; }
    .nav { gap: 20px; }
    .nav a { letter-spacing: .04em; }
    .promo { gap: 56px; }
    .promo-price { flex-direction: column; align-items: flex-start; }
    .logo img { height: 58px; }
    h1 { font-size: 4.25rem; }
    .about { column-gap: 56px; }
    .f-grid { column-gap: 40px; }
  }

  /* Laptop, tablet i mobitel: hamburger (7 linkova ne stane uredno ispod 1180px) */
  @media (max-width: 1179px) {
    .nav { display: none; }
    .top > .wrap { width: 100%; padding-left: var(--gutter); padding-right: var(--gutter); }
    .logo img { height: 52px; }
    .burger { display: grid; }
    .mnav { position: fixed; inset: 0; z-index: 1; background: var(--ink); overflow-y: auto; }
    .top.is-open .mnav { display: flex; flex-direction: column; }
    .mnav .wrap { flex: 1; display: flex; flex-direction: column; padding-top: calc(var(--header-h) + 24px); padding-bottom: 28px; }
    .mnav ul { list-style: none; margin: 0; padding: 0; text-align: center; }
    .mnav ul a { display: flex; align-items: center; justify-content: center; min-height: 54px; font-size: 1.1875rem; font-weight: 500; color: var(--white); text-decoration: none; transition: color .15s ease; }
    .mnav ul a:hover, .mnav ul a:focus-visible { color: var(--orange); }
    .mnav-contact { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-top: 28px; padding-top: 28px; border-top: 1px solid rgba(255, 255, 255, .12); margin-bottom: 32px; text-align: center; }
    .mnav-label { margin-bottom: 4px; font-size: .75rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--orange); }
    .mnav-contact a, .mnav-addr { display: inline-flex; align-items: center; gap: 10px; font-size: 1rem; color: rgba(255, 255, 255, .8); text-decoration: none; }
    .mnav-contact a:hover { color: var(--white); }
    .mnav-contact .icon { width: 18px; height: 18px; color: var(--orange); flex: none; }
    .mnav-cta { width: 100%; margin-top: auto; }
    body.menu-open .sticky { display: none; }
    body.menu-open { overflow: hidden; }
  }

  @media (max-width: 1023px) {
    :root { --gutter: 32px; --header-h: 80px; --section: 72px; }
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.25rem; }
    .hero .wrap { padding-top: calc(var(--header-h) + 72px); padding-bottom: 160px; }
    .services { margin-top: 56px; gap: 24px; }
    .service p { font-size: .9375rem; }
    .trustrow { margin-top: 40px; padding-top: 28px; gap: 24px; }
    .trustrow li { font-size: .9375rem; }
    .about { column-gap: 40px; }
    .about-head h2 { font-size: 2rem; }
    .promo-body h2 { font-size: 2.125rem; }
    .about-text p { font-size: 1rem; }
    .steps { margin-top: 40px; }
    .step { padding: 4px 20px; }
    .step h3 { font-size: 1.125rem; }
    .cta-center { margin-top: 36px; }
    .f-grid { padding: 44px 0 32px; column-gap: 24px; }
    footer > .wrap { width: 100%; padding-left: var(--gutter); padding-right: var(--gutter); }
    .f-brand img { height: 66px; }
  }

  /* Tablet portrait i manje: jedan centrirani stupac */
  @media (max-width: 899px) {
    .services { grid-template-columns: 1fr; gap: 40px; max-width: 560px; margin-left: auto; margin-right: auto; }
    .trustrow { grid-template-columns: minmax(0, max-content); justify-content: center; gap: 14px; }
    .trustrow li { justify-self: start; }

    .about { grid-template-columns: 1fr; grid-template-areas: "head" "img" "text"; row-gap: 28px; max-width: 640px; margin: 0 auto; }
    .about-head, .about-text { text-align: center; }
    .about-list { justify-content: center; grid-template-columns: minmax(0, max-content); text-align: left; }
    .about-list li { align-items: flex-start; }
    .about-list svg { margin-top: 1px; }
    .about-head h2 { margin: 0 auto; max-width: 20ch; }
    .promo { grid-template-columns: minmax(0, 1fr); gap: 40px; }
    .promo-media { max-width: 520px; width: 100%; margin: 0 auto; }
    .promo-body { text-align: center; }
    .promo-lead { margin-left: auto; margin-right: auto; }
    .promo-list { max-width: 560px; margin-left: auto; margin-right: auto; text-align: left; }
    .promo-note { text-align: center; }
    .promo-price { flex-direction: row; align-items: center; text-align: left; max-width: 640px; margin-left: auto; margin-right: auto; }
    .about-text { margin-top: 0; max-width: none; }

    .steps { grid-template-columns: 1fr; gap: 28px; max-width: 560px; margin-left: auto; margin-right: auto; }
    .step { padding: 0; }
    .step + .step { border-left: 0; padding-top: 28px; border-top: 1px solid var(--line); }
    .step p { max-width: 40ch; }

    .f-grid { grid-template-columns: 1fr; row-gap: 28px; padding: 44px 0 28px; }
    .f-brand, .f-loc, .f-contact { text-align: center; }
    .f-brand img { height: 64px; margin: 0 auto; }
    .f-col h4 { margin-bottom: 10px; }
    .f-list { justify-items: center; }
    .f-item { min-height: 44px; }
    .f-bottom { flex-direction: column; align-items: center; gap: 4px; text-align: center; padding: 18px 0 22px; }
  }

  /* Mobitel */
  @media (max-width: 639px) {
    :root { --gutter: 20px; --header-h: 72px; --section: 56px; }
    h1 { font-size: 2.125rem; line-height: 1.12; }
    h2 { font-size: 1.75rem; }
    .intro p, .lead { font-size: 1rem; }
    .eyebrow { margin-bottom: 12px; font-size: .8125rem; line-height: 1.5; letter-spacing: .11em; }
    .logo img { height: 46px; }

    .hero { min-height: 0; }
    .hero .wrap { padding-top: calc(var(--header-h) + 64px); padding-bottom: 136px; }
    .hero h1 { font-size: 2.75rem; line-height: 1.08; }
    .hero-badge { margin-bottom: 36px; padding: 12px 22px 12px 18px; gap: 10px; font-size: .9375rem; letter-spacing: .12em; }
    .hero-badge .icon { width: 19px; height: 19px; }
    .hero-sub { margin-top: 24px; font-size: 1rem; }
    .hero .btn { margin-top: 52px; min-height: 56px; padding: 0 40px; font-size: .875rem; }

    .services { gap: 32px; margin-top: 44px; }
    .service h3 { margin-top: 18px; }
    .trustrow { margin-top: 32px; padding-top: 24px; }

    .about { row-gap: 24px; }
    .about-head h2 { font-size: 1.75rem; }
    .promo-body h2 { font-size: 1.75rem; }
    .promo-media { padding: 32px 24px 60px; }
    .promo-media img { max-width: 280px; }
    .promo-model { bottom: 20px; font-size: .75rem; width: calc(100% - 32px); white-space: normal; text-align: center; }
    .promo-price-label { white-space: normal; }
    .promo-list { grid-template-columns: minmax(0, 1fr); }
    .promo-price { flex-direction: column; align-items: stretch; text-align: center; padding: 24px 20px; border-left: 0; border-top: 4px solid var(--orange); }
    .promo-price-num { font-size: 2.75rem; }
    .promo-price .btn { width: 100%; min-height: 60px; padding: 0 16px; }

    .steps { margin-top: 28px; }
    .step::before { font-size: 1.75rem; }
    .step h3 { margin-top: 10px; }
    .step p { margin-top: 6px; max-width: 36ch; }
    .cta-center { margin-top: 28px; }
    .cta-center .btn { width: 100%; min-height: 60px; padding: 0 24px; }

    .pay { flex-direction: column; align-items: center; gap: 16px; margin-top: 32px; }

    .faq-list { margin-top: 28px; }
    .faq-list summary { padding: 20px 0; font-size: 1rem; }
    .faq-list details p { padding-right: 0; }

    .form { margin-top: 28px; }
    form { grid-template-columns: 1fr; gap: 16px; }

    .f-brand img { height: 58px; }

    .sticky { display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 50; padding: 12px var(--gutter) calc(12px + env(safe-area-inset-bottom)); background: rgba(255, 255, 255, .97); border-top: 1px solid var(--line); transition: transform .25s ease; }
    .sticky .btn { width: 100%; }
    .sticky.is-hidden { transform: translateY(110%); }
    body.menu-open .sticky { display: none; }
  }

  /* Vrlo uski mobiteli */
  @media (max-width: 359px) {
    :root { --gutter: 16px; }
    h1 { font-size: 1.875rem; }
    .hero h1 { font-size: 2.375rem; }
    h2, .about-head h2 { font-size: 1.5rem; }
    .logo img { height: 40px; }
  }

  /* ---------- Greška pri slanju forme ---------- */
  .form-error { grid-column: 1 / -1; display: none; padding: 14px 16px; border: 1px solid #F3C4BF; border-radius: var(--radius); background: #FEF3F2; color: #9B1C12; font-size: .9375rem; line-height: 1.5; }
  .form-error.is-visible { display: block; }
  .form-error a { color: inherit; font-weight: 600; }

  /* ---------- Thank you stranica (/hvala-na-upitu/) ---------- */
  .ty-body { min-height: 100vh; min-height: 100svh; display: flex; flex-direction: column; background: var(--paper); }
  .ty-top > .wrap { width: calc(100% - 100px); max-width: 1800px; margin: 0 auto; padding-left: 0; padding-right: 0; height: var(--header-h); display: flex; align-items: center; }
  .ty-top .logo img { height: 64px; }
  .ty-main { flex: 1; display: flex; align-items: center; justify-content: center; padding: 8px 0 16px; }
  .ty-box { max-width: 720px; margin: 0 auto; text-align: center; }
  .ty-icon { display: grid; place-items: center; width: 108px; height: 108px; margin: 0 auto 32px; border: 2px solid var(--orange); border-radius: 50%; color: var(--orange); }
  .ty-icon svg { width: 48px; height: 48px; stroke-width: 2.2; }
  .ty-box h1 { font-size: 4.25rem; line-height: 1.1; }
  .ty-box p { margin: 32px auto 0; max-width: 46ch; color: var(--muted); font-size: 1.25rem; line-height: 1.75; }
  .ty-box .btn { margin-top: 48px; }
  @media (max-width: 1023px) {
    .ty-top > .wrap { width: 100%; padding-left: var(--gutter); padding-right: var(--gutter); }
    .ty-top .logo img { height: 52px; }
    .ty-box h1 { font-size: 3.25rem; }
    .ty-main { padding: 32px 0 56px; }
  }
  @media (max-width: 639px) {
    .ty-top .logo img { height: 46px; }
    .ty-main { padding: 32px 0 56px; }
    .ty-icon { width: 84px; height: 84px; margin-bottom: 32px; }
    .ty-icon svg { width: 38px; height: 38px; }
    .ty-box h1 { font-size: 2.375rem; }
    .ty-box p { margin-top: 22px; font-size: 1rem; }
    .ty-box .btn { margin-top: 40px; }
    .ty-box .btn { width: 100%; padding: 0 16px; font-size: .875rem; letter-spacing: .08em; }
  }

