/* ==========================================================================
   PLODO RAZMJENA — style.css
   Jedan fajl, bez build-a. Boje i razmaci su na vrhu, kao promjenljive.
   Promijeni --brand-600 i cijeli sajt mijenja boju.
   ========================================================================== */

:root {
  /* --- Petrol iz logotipa (#007497 je tačna boja iz logo.svg) --- */
  --brand-50:#F4F9FA; --brand-100:#E2EFF3; --brand-200:#C1DDE6; --brand-300:#93C4D3;
  --brand-400:#50A0B8; --brand-500:#2186A5; --brand-600:#007497; --brand-700:#035D79;
  --brand-800:#064A61; --brand-900:#083B4D;

  /* --- Roze iz logotipa (#EBA7CA je tačna boja iz logo.svg): akcent, štedljivo --- */
  --blossom-50:#FDF4F9; --blossom-100:#F9E6F0; --blossom-300:#EBA7CA; --blossom-400:#D777A5;

  /* --- Zelena: kvačice i potvrde --- */
  --leaf-50:#F1F8F3; --leaf-100:#DCEEE1; --leaf-500:#3A8759; --leaf-600:#2B6C46;

  /* --- Neutralne: tekst, ivice, pozadine --- */
  --ink-100:#EDF1F3; --ink-200:#DDE4E8; --ink-400:#7C8A94; --ink-500:#61707A;
  --ink-600:#4A5860; --ink-700:#38434A; --ink-900:#131C21;
  --sand:#F8F6F1;

  --shadow-card:0 1px 2px rgba(19,28,33,.04), 0 8px 24px -12px rgba(19,28,33,.18);
  --shadow-lift:0 2px 4px rgba(19,28,33,.05), 0 20px 40px -20px rgba(19,28,33,.28);

  --r-sm:.75rem; --r-md:1.25rem; --r-lg:1.75rem; --r-xl:2.5rem;
  --font-display:'Outfit', system-ui, -apple-system, sans-serif;
  --font-sans:'Inter', system-ui, -apple-system, sans-serif;
}

/* ========================================================== OSNOVA */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans); color: var(--ink-700); background: #fff;
  line-height: 1.6; -webkit-font-smoothing: antialiased;
}
img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
ul, ol { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink-900); line-height: 1.15; text-wrap: balance; }
p { text-wrap: pretty; }
::selection { background: var(--blossom-400); color: #fff; }
:focus-visible { outline: 3px solid var(--brand-500); outline-offset: 2px; border-radius: 4px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--brand-700); color: #fff; padding: .85rem 1.5rem;
  border-radius: 999px; margin: 1rem; font-weight: 600;
}
.skip-link:focus { left: 0; }

.container { width: 100%; max-width: 1240px; margin-inline: auto; padding-inline: 1.25rem; }

/* ========================================================== TIPOGRAFIJA */
.h-xl { font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1.02; letter-spacing: -.03em; font-weight: 700; }
.h-lg { font-size: clamp(2rem, 4.5vw, 3.25rem); line-height: 1.06; letter-spacing: -.025em; font-weight: 700; }
.h-md { font-size: clamp(1.6rem, 3vw, 2.25rem); line-height: 1.15; letter-spacing: -.02em; font-weight: 700; }
.h-sm { font-size: 1.5rem; font-weight: 700; }
.h-sm-mt { margin-top: 3rem; }
.h-light { color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .18em; color: var(--brand-600);
}
.eyebrow-light { color: var(--blossom-300); }
.eyebrow-line { display: block; width: 1.5rem; height: 1px; background: var(--blossom-300); }

/* ========================================================== IKONE */
.icon { width: 1.25rem; height: 1.25rem; flex-shrink: 0; }
.icon-sm { width: 1rem; height: 1rem; flex-shrink: 0; }
.icon-xs { width: .75rem; height: .75rem; flex-shrink: 0; }
.icon-lg { width: 1.75rem; height: 1.75rem; flex-shrink: 0; }

/* ========================================================== DUGMAD */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  border-radius: 999px; padding: .75rem 1.5rem; font-size: .875rem; font-weight: 600;
  white-space: nowrap; text-align: center; transition: background-color .2s, color .2s, border-color .2s, box-shadow .2s;
  border: 1px solid transparent;
}
.btn-primary { background: var(--brand-600); color: #fff; box-shadow: var(--shadow-card); }
.btn-primary:hover { background: var(--brand-700); box-shadow: var(--shadow-lift); }
.btn-accent { background: var(--blossom-300); color: var(--brand-900); }
.btn-accent:hover { background: var(--blossom-400); }
.btn-ghost { border-color: var(--ink-200); color: var(--ink-900); }
.btn-ghost:hover { border-color: var(--brand-600); color: var(--brand-700); }
.btn-white { background: #fff; color: var(--brand-800); }
.btn-white:hover { background: var(--brand-50); }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2.25rem; }
.btn-row-center { justify-content: center; }
.btn-mt { margin-top: 2.25rem; }
.btn-half { flex: 1; }

/* ========================================================== RASPORED */
.section { padding-block: 5rem; }
.section-sand { background: var(--sand); }
.section-divided { border-bottom: 1px solid var(--ink-100); }
.section-divided:last-of-type { border-bottom: 0; }

.grid { display: grid; }
.grid-gap { gap: 1.5rem; }
.grid-mt { margin-top: 2.5rem; }
.grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }

.section-head { max-width: 42rem; margin-inline: auto; text-align: center; }
.section-head > .h-md { margin-top: 1rem; }
.section-head-left { margin-inline: 0; text-align: left; }
.section-lead { margin-top: 1rem; font-size: 1.125rem; color: var(--ink-500); }
.head-row { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.5rem; }
.head-row + .grid { margin-top: 3rem; }
.section-head + .grid, .section-head + .plans, .section-head + ol.grid { margin-top: 3.5rem; }
.group-head { max-width: 42rem; }
.group-text { margin-top: .75rem; color: var(--ink-500); }
.group-head + .grid { margin-top: 2.5rem; }
.center-note { margin-top: 2rem; text-align: center; font-size: .875rem; color: var(--ink-500); }
.center-note a { font-weight: 600; color: var(--brand-600); text-decoration: underline; }

/* dekorativne mrlje u pozadini */
.blob { position: absolute; border-radius: 999px; filter: blur(60px); pointer-events: none; }
.blob-a { right: -5rem; top: -5rem; width: 20rem; height: 20rem; background: rgba(3,93,121,.6); }
.blob-b { bottom: -6rem; left: 2.5rem; width: 16rem; height: 16rem; background: rgba(215,119,165,.25); }
.blob-c { right: -8rem; top: -8rem; width: 32rem; height: 32rem; background: rgba(226,239,243,.7); }
.blob-d { bottom: -6rem; left: 33%; width: 18rem; height: 18rem; background: var(--blossom-100); }
.blob-e { left: -6rem; top: 50%; width: 24rem; height: 24rem; transform: translateY(-50%); background: rgba(0,116,151,.4); }

/* ========================================================== ZAGLAVLJE */
.site-header { position: sticky; top: 0; z-index: 40; }
.topbar { display: none; background: var(--brand-800); color: var(--brand-100); font-size: .8125rem; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; height: 2.5rem; }
.topbar-left { display: flex; align-items: center; gap: 1.5rem; }
.topbar-right { display: flex; align-items: center; gap: 1.25rem; }
.topbar-item { display: inline-flex; align-items: center; gap: .5rem; }
.topbar-icon { color: var(--blossom-300); }
.topbar a:hover { color: #fff; }

.navbar { background: rgba(255,255,255,.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--ink-100); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 5rem; }
.logo-link { display: flex; align-items: center; }
.logo { height: 2.25rem; width: auto; }
.nav { display: none; align-items: center; gap: .125rem; }
.nav-link { padding: .5rem .875rem; border-radius: 999px; font-size: .875rem; font-weight: 600; color: var(--ink-700); transition: background-color .2s, color .2s; }
.nav-link:hover { background: var(--brand-50); color: var(--brand-700); }
.nav-link-active { background: var(--brand-50); color: var(--brand-700); }
.navbar-right { display: flex; align-items: center; gap: .75rem; }
.nav-phone { display: none; align-items: center; gap: .5rem; font-size: .875rem; font-weight: 600; color: var(--ink-900); }
.nav-phone-icon { display: grid; place-items: center; width: 2.5rem; height: 2.5rem; border-radius: 999px; background: var(--brand-50); color: var(--brand-600); }
.nav-phone-text { line-height: 1.2; }
.nav-phone-label { display: block; font-size: .6875rem; font-weight: 500; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-500); }
.btn-nav { display: none; }
.burger { display: grid; place-items: center; width: 2.75rem; height: 2.75rem; border-radius: 999px; border: 1px solid var(--ink-200); }

.mnav { border-top: 1px solid var(--ink-100); background: #fff; }
.mnav[hidden] { display: none; }
.mnav-inner { display: flex; flex-direction: column; padding-block: 1rem; }
.mnav-link { padding-block: .75rem; border-bottom: 1px solid var(--ink-100); font-weight: 600; color: var(--ink-900); }
.mnav-link:last-of-type { border-bottom: 0; }
.mnav-phone { margin-top: 1rem; }

/* ========================================================== HERO */
.hero { position: relative; overflow: hidden; background: var(--sand); }
.hero-inner { position: relative; display: grid; gap: 3.5rem; padding-block: 4rem; align-items: center; }
.hero-lead { margin-top: 1.75rem; max-width: 36rem; font-size: 1.125rem; color: var(--ink-500); }
.h-xl { margin-top: 1.25rem; }
.underlined { position: relative; white-space: nowrap; color: var(--brand-600); }
.underline-svg { position: absolute; left: 0; bottom: -.5rem; width: 100%; color: var(--blossom-300); }
.hero-perks { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--ink-200); font-size: .875rem; color: var(--ink-500); }
.perk { display: inline-flex; align-items: center; gap: .5rem; }
.perk-mark { color: var(--leaf-500); }
.hero-media { position: relative; }
.hero-img { overflow: hidden; border-radius: var(--r-xl); box-shadow: var(--shadow-lift); }
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-tag { position: absolute; left: 0; bottom: -1.5rem; display: flex; align-items: center; gap: 1rem; background: #fff; padding: 1.25rem; border-radius: var(--r-md); box-shadow: var(--shadow-lift); }
.hero-tag-icon { display: grid; place-items: center; width: 3rem; height: 3rem; border-radius: 999px; background: var(--leaf-50); color: var(--leaf-600); flex-shrink: 0; }
.hero-tag-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--ink-900); }
.hero-tag-text { font-size: .875rem; color: var(--ink-500); }

/* ========================================================== HERO PODSTRANICA */
.page-hero { position: relative; overflow: hidden; background: var(--brand-900); color: #fff; padding-block: 4rem; }
.page-hero-inner { position: relative; max-width: 48rem; }
.page-hero .h-lg { margin-top: 1rem; color: #fff; }
.page-hero-lead { margin-top: 1.25rem; font-size: 1.125rem; color: var(--brand-100); }
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; margin-bottom: 1.25rem; font-size: .875rem; color: var(--brand-200); }
.crumbs a:hover { color: #fff; }
.crumb-current { color: #fff; }

/* ========================================================== KARTICE */
.card {
  display: block; background: #fff; border: 1px solid var(--ink-100);
  border-radius: var(--r-lg); box-shadow: var(--shadow-card); overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
a.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: var(--brand-200); }
.card-pad { padding: 2rem; }
.card-img { position: relative; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.card-media:hover .card-img img { transform: scale(1.05); }
.card-img-43 { aspect-ratio: 4/3; }
.card-img-1610 { aspect-ratio: 16/10; }
.card-body { padding: 1.75rem; }
.card-title { font-size: 1.125rem; font-weight: 700; line-height: 1.3; }
.card-text { margin-top: .75rem; font-size: .875rem; color: var(--ink-500); }
.card-meta { font-size: .75rem; color: var(--ink-500); }
.card-meta + .card-title { margin-top: .5rem; }
.card-more { display: inline-flex; align-items: center; gap: .5rem; margin-top: 1.25rem; font-size: .875rem; font-weight: 600; color: var(--brand-600); }
.badge { position: absolute; left: 1rem; top: 1rem; background: rgba(255,255,255,.95); padding: .25rem .75rem; border-radius: 999px; font-size: .75rem; font-weight: 600; color: var(--brand-700); }
.chip { display: inline-block; background: var(--brand-50); padding: .25rem .75rem; border-radius: 999px; font-size: .75rem; font-weight: 600; color: var(--brand-700); }

.pillar-icon { display: grid; place-items: center; width: 3.5rem; height: 3.5rem; border-radius: var(--r-md); background: var(--brand-50); color: var(--brand-600); transition: background-color .3s, color .3s; }
.pillar:hover .pillar-icon { background: var(--brand-600); color: #fff; }
.pillar-title { margin-top: 1.5rem; font-size: 1.25rem; font-weight: 700; }
.pillar-text { margin-top: .75rem; color: var(--ink-500); }

/* ========================================================== SPLIT / SLIKE */
.split { display: grid; gap: 3.5rem; align-items: center; }
.split-images { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.split-img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--shadow-card); }
.split-img-lower { margin-top: 2.5rem; }
.split-narrow { align-items: center; }
.about-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--shadow-card); }
.about-text { margin-top: 1.5rem; }

.tick-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.tick { display: flex; gap: .75rem; color: var(--ink-600); }
.tick-mark { display: grid; place-items: center; width: 1.25rem; height: 1.25rem; margin-top: .25rem; flex-shrink: 0; border-radius: 999px; background: var(--leaf-100); color: var(--leaf-600); }

.facts { display: grid; gap: 2rem; margin-top: 5rem; padding: 3rem 2rem; border-radius: 2rem; background: var(--brand-900); text-align: center; }
.fact-value { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: #fff; }
.fact-label { margin-top: .5rem; font-size: .875rem; color: var(--brand-200); }

/* ========================================================== KORACI, IZJAVE, VRIJEDNOSTI */
.step { padding: 2rem; border: 1px solid var(--ink-100); border-radius: var(--r-lg); background: #fff; }
.step-num { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--brand-100); line-height: 1; }
.step-title { margin-top: .75rem; font-size: 1.125rem; font-weight: 700; }
.step-text { margin-top: .5rem; font-size: .875rem; color: var(--ink-500); }

.quote { display: flex; flex-direction: column; height: 100%; padding: 2rem; border: 1px solid var(--ink-100); border-radius: var(--r-lg); background: #fff; box-shadow: var(--shadow-card); }
.quote-mark { width: 2rem; height: 2rem; color: var(--blossom-300); }
.quote-text { flex: 1; margin-top: 1.25rem; color: var(--ink-600); }
.quote-author { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--ink-100); font-weight: 600; color: var(--ink-900); }

.value { padding: 2rem; border: 1px solid var(--ink-100); border-radius: var(--r-lg); }
.value-title { font-size: 1.125rem; font-weight: 700; }
.value-text { margin-top: .75rem; color: var(--ink-500); }

/* ========================================================== CJENOVNIK */
.plan { position: relative; display: flex; flex-direction: column; padding: 2rem; border: 1px solid var(--ink-100); border-radius: var(--r-lg); background: #fff; box-shadow: var(--shadow-card); }
.plan-featured { background: var(--brand-900); border-color: transparent; box-shadow: var(--shadow-lift), 0 0 0 2px var(--blossom-300); }
.plan-badge { position: absolute; top: -.75rem; left: 2rem; background: var(--blossom-300); color: var(--brand-900); padding: .25rem .75rem; border-radius: 999px; font-size: .75rem; font-weight: 700; }
.plan-name { font-size: 1.125rem; font-weight: 700; }
.plan-featured .plan-name { color: #fff; }
.plan-audience { margin-top: .25rem; font-size: .875rem; color: var(--ink-500); }
.plan-featured .plan-audience { color: var(--brand-200); }
.plan-price { display: flex; align-items: baseline; gap: .25rem; margin-top: 1.5rem; }
.plan-currency, .plan-period { font-size: .875rem; color: var(--ink-500); }
.plan-currency { font-weight: 600; }
.plan-featured .plan-currency, .plan-featured .plan-period { color: var(--brand-200); }
.plan-amount { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--ink-900); line-height: 1; }
.plan-featured .plan-amount { color: #fff; }
.plan-features { flex: 1; display: flex; flex-direction: column; gap: .875rem; margin-top: 2rem; font-size: .875rem; }
.plan-feature { display: flex; gap: .75rem; color: var(--ink-700); }
.plan-featured .plan-feature { color: #fff; }
.plan-feature-off { color: var(--ink-500); text-decoration: line-through; }
.plan-featured .plan-feature-off { color: var(--brand-300); }
.plan-mark { display: grid; place-items: center; width: 1.25rem; height: 1.25rem; margin-top: .125rem; flex-shrink: 0; border-radius: 999px; background: var(--leaf-100); color: var(--leaf-600); }
.plan-feature-off .plan-mark { background: var(--ink-100); color: var(--ink-500); }
.plan-featured .plan-mark { background: var(--blossom-300); color: var(--brand-900); }
.plan-featured .plan-feature-off .plan-mark { background: rgba(255,255,255,.12); color: var(--brand-300); }
.plan-cta { margin-top: 2rem; width: 100%; }

.panel { margin-top: 3.5rem; padding: 2rem; border: 1px solid var(--ink-100); border-radius: var(--r-lg); background: var(--sand); }
.panel-tight { margin-top: 0; }
.panel-text { margin-top: .75rem; max-width: 68ch; color: var(--ink-600); }

/* ========================================================== DETALJ USLUGE */
.detail { display: grid; gap: 3.5rem; }
.detail-img { width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--shadow-card); }
.detail-intro { margin-top: 2.5rem; max-width: 68ch; font-size: 1.125rem; color: var(--ink-600); }
.detail .h-sm { margin-top: 3rem; }
.incl-list { display: grid; gap: 1rem; margin-top: 1.5rem; }
.incl { display: flex; gap: .75rem; padding: 1.25rem; border: 1px solid var(--ink-100); border-radius: var(--r-md); background: var(--sand); font-size: .875rem; color: var(--ink-600); }
.incl-mark { display: grid; place-items: center; width: 1.25rem; height: 1.25rem; margin-top: .125rem; flex-shrink: 0; border-radius: 999px; background: var(--leaf-100); color: var(--leaf-600); }
.proc-list { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1.5rem; }
.proc { display: flex; gap: 1.25rem; padding: 1.5rem; border: 1px solid var(--ink-100); border-radius: var(--r-md); }
.proc-num { display: grid; place-items: center; width: 2.5rem; height: 2.5rem; flex-shrink: 0; border-radius: 999px; background: var(--brand-600); color: #fff; font-family: var(--font-display); font-weight: 700; }
.proc-title { font-weight: 700; color: var(--ink-900); }
.proc-text { margin-top: .25rem; font-size: .875rem; color: var(--ink-500); }

.aside-box { padding: 2rem; border-radius: var(--r-lg); background: var(--brand-900); color: #fff; }
.aside-title { font-size: 1.25rem; font-weight: 700; color: #fff; }
.aside-text { margin-top: .75rem; font-size: .875rem; color: var(--brand-100); }
.aside-btn { width: 100%; margin-top: .75rem; }
.aside-btn:first-of-type { margin-top: 1.5rem; }
.aside-list { display: flex; flex-direction: column; gap: .75rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1); font-size: .875rem; color: var(--brand-200); }
.aside-list > div { display: flex; justify-content: space-between; gap: 1rem; }
.aside-list dd { color: #fff; text-align: right; }

/* ========================================================== TEKSTOVI (SAVJETI) */
.prose { max-width: 48rem; }
.prose-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; margin-top: 1.5rem; border-radius: var(--r-lg); box-shadow: var(--shadow-card); }
.prose-body { margin-top: 3rem; display: flex; flex-direction: column; gap: 1.5rem; }
.prose-p { font-size: 1.125rem; color: var(--ink-600); }
.dot-list { display: flex; flex-direction: column; gap: .75rem; }
.dot { display: flex; gap: .75rem; color: var(--ink-600); }
.dot-mark { width: .375rem; height: .375rem; margin-top: .65rem; flex-shrink: 0; border-radius: 999px; background: var(--blossom-400); }
.prose-cta { margin-top: 3.5rem; padding: 2rem; border-radius: var(--r-lg); background: var(--brand-900); color: #fff; }
.legal { display: flex; flex-direction: column; gap: 2rem; }
.legal .prose-p { margin-top: .75rem; }

.feature { display: grid; }
.feature-img { aspect-ratio: 16/10; overflow: hidden; }
.feature-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.feature:hover .feature-img img { transform: scale(1.05); }
.feature-body { padding: 2rem; }
.feature-title { margin-top: 1.25rem; font-size: 1.5rem; font-weight: 700; line-height: 1.3; }
.feature-text { margin-top: 1rem; color: var(--ink-500); }
.feature-meta { margin-top: 1.5rem; }

/* ========================================================== HARMONIKA */
.acc-group { border-top: 1px solid var(--ink-200); border-bottom: 1px solid var(--ink-200); }
.acc { padding-block: 1.25rem; border-bottom: 1px solid var(--ink-200); }
.acc:last-child { border-bottom: 0; }
.acc-q { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; cursor: pointer; list-style: none; font-weight: 600; color: var(--ink-900); }
.acc-q::-webkit-details-marker { display: none; }
.acc-icon { display: grid; place-items: center; width: 2rem; height: 2rem; flex-shrink: 0; border-radius: 999px; border: 1px solid var(--ink-200); color: var(--brand-600); transition: transform .2s, background-color .2s, color .2s, border-color .2s; }
.acc[open] .acc-icon { transform: rotate(45deg); background: var(--brand-600); border-color: var(--brand-600); color: #fff; }
.acc-a { margin-top: 1rem; max-width: 68ch; color: var(--ink-500); }
.faq-split { display: grid; gap: 3.5rem; }

/* ========================================================== OBRAZAC */
.form-card { padding: 2rem; border-radius: var(--r-lg); background: #fff; box-shadow: var(--shadow-lift); }
.form-card-bordered { border: 1px solid var(--ink-100); }
.form-title { font-size: 1.25rem; font-weight: 700; color: var(--ink-900); }
.form-note { margin-top: .25rem; font-size: .875rem; color: var(--ink-500); }
.form-grid { display: grid; gap: 1.25rem; margin-top: 1.5rem; }
.lbl { display: block; font-size: .875rem; font-weight: 500; color: var(--ink-700); }
.field { width: 100%; margin-top: .5rem; padding: .75rem 1rem; border: 1px solid var(--ink-200); border-radius: var(--r-sm); background: #fff; color: var(--ink-900); }
.field::placeholder { color: var(--ink-500); }
.field:focus { outline: none; border-color: var(--brand-500); box-shadow: 0 0 0 3px var(--brand-100); }
textarea.field { resize: vertical; min-height: 7rem; }
.form-submit { width: 100%; margin-top: 1.75rem; }
.form-submit:disabled { opacity: .6; cursor: not-allowed; }
.form-legal { margin-top: 1rem; text-align: center; font-size: .75rem; color: var(--ink-500); }
.form-legal a { text-decoration: underline; }
.form-legal a:hover { color: var(--brand-600); }
.form-error { margin-top: 1.25rem; padding: 1rem; border-radius: var(--r-sm); background: #FEF2F2; color: #991B1B; font-size: .875rem; }
.form-error[hidden] { display: none; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

/* ========================================================== KONTAKT */
.contact-card { display: block; }
.contact-icon { display: grid; place-items: center; width: 3rem; height: 3rem; border-radius: var(--r-md); background: var(--brand-50); color: var(--brand-600); }
.contact-title { margin-top: 1.25rem; font-size: 1.125rem; font-weight: 700; }
.contact-line { margin-top: .5rem; color: var(--ink-600); }
.contact-cta { display: inline-block; margin-top: 1rem; font-size: .875rem; font-weight: 600; color: var(--brand-600); }
.contact-split { display: grid; gap: 2.5rem; margin-top: 4rem; }
.contact-side { display: flex; flex-direction: column; gap: 2rem; }
.hours-title { display: flex; align-items: center; gap: .75rem; font-size: 1.125rem; font-weight: 700; }
.hours-icon { color: var(--brand-600); }
.hours { margin-top: 1.25rem; }
.hours-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: .75rem; border-top: 1px solid var(--ink-200); font-size: .875rem; }
.hours-row:first-child { border-top: 0; }
.hours-row dt { color: var(--ink-600); }
.hours-row dd { font-weight: 600; color: var(--ink-900); }
.notice { margin-top: 1.25rem; padding: 1rem; border-radius: var(--r-sm); background: var(--blossom-50); font-size: .875rem; color: var(--brand-800); }
.map-box { overflow: hidden; border: 1px solid var(--ink-100); border-radius: var(--r-lg); }
.map-box iframe { width: 100%; height: 20rem; border: 0; }
.social-row { margin-top: 0; }

/* ========================================================== CTA I TRAKE */
.cta { position: relative; overflow: hidden; background: var(--brand-800); color: #fff; padding-block: 5rem; }
.cta-inner { position: relative; display: grid; gap: 3.5rem; }
.cta .h-md { margin-top: 1rem; }
.cta-lead { margin-top: 1.25rem; max-width: 28rem; color: var(--brand-100); }
.cta-contact { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.cta-phone { display: block; }
.cta-phone:hover .cta-phone-num { color: var(--blossom-300); }
.cta-phone-label { display: block; font-size: .875rem; color: var(--brand-200); }
.cta-phone-num { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; }
.cta-address { font-size: .875rem; color: var(--brand-200); }

.band { background: var(--brand-900); color: #fff; }
.band-inner { display: grid; gap: 2.5rem; align-items: center; }
.band-text { margin-top: 1rem; max-width: 32rem; color: var(--brand-100); }
.band-btns { margin-top: 0; }

.notfound { max-width: 36rem; margin-inline: auto; text-align: center; }
.notfound-code { font-family: var(--font-display); font-size: 4.5rem; font-weight: 700; color: var(--brand-100); line-height: 1; }
.notfound .h-md { margin-top: 1rem; }
.notfound-text { margin-top: 1rem; color: var(--ink-500); }

/* ========================================================== PODNOŽJE */
.site-footer { background: var(--brand-900); color: var(--brand-100); }
.footer-grid { display: grid; gap: 3rem; padding-block: 4rem; }
.footer-logo { height: 2.5rem; width: auto; }
.footer-about { margin-top: 1.25rem; max-width: 20rem; font-size: .875rem; color: var(--brand-200); }
.footer-social { display: flex; gap: .75rem; margin-top: 1.5rem; }
.footer-social a { display: grid; place-items: center; width: 2.5rem; height: 2.5rem; border-radius: 999px; background: rgba(255,255,255,.1); transition: background-color .2s, color .2s; }
.footer-social a:hover { background: var(--blossom-300); color: var(--brand-900); }
.footer-title { font-size: .875rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: #fff; }
.footer-list { display: flex; flex-direction: column; gap: .75rem; margin-top: 1.25rem; font-size: .875rem; }
.footer-list a { color: var(--brand-200); transition: color .2s; }
.footer-list a:hover { color: #fff; }
.footer-contact { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.25rem; font-size: .875rem; color: var(--brand-200); }
.footer-contact li { display: flex; gap: .75rem; }
.footer-contact a:hover { color: #fff; }
.footer-icon { margin-top: .125rem; flex-shrink: 0; color: var(--blossom-300); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom-inner { display: flex; flex-direction: column; gap: .5rem; padding-block: 1.5rem; font-size: .75rem; color: var(--brand-300); }

/* ==========================================================================
   RESPONZIVNO — sve ispod je za veće ekrane.
   Sajt je pisan „prvo mobilni“, pa se ovdje samo dodaje.
   ========================================================================== */

@media (min-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-wide { grid-column: span 2; }
  .incl-list { grid-template-columns: 1fr 1fr; }
  .btn-nav { display: inline-flex; }
  .hero-tag { left: -1rem; }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom-inner { flex-direction: row; align-items: center; justify-content: space-between; }
}

@media (min-width: 768px) {
  .section { padding-block: 7rem; }
  .cta { padding-block: 7rem; }
  .page-hero { padding-block: 6rem; }
  .hero-inner { padding-block: 6rem; }
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .nav-phone { display: flex; }
  .feature { grid-template-columns: 1fr 1fr; }
  .feature-img { aspect-ratio: auto; }
  .feature-body { padding: 2.5rem; }
  .panel { padding: 2.5rem; }
  .prose-cta { padding: 2.5rem; }
  .band-inner { grid-template-columns: 1.3fr .7fr; }
  .band-btns { justify-content: flex-end; }
  .hero-tag { left: -2.5rem; }
}

@media (min-width: 1024px) {
  .topbar { display: block; }
  .nav { display: flex; }
  .burger { display: none; }
  .mnav { display: none; }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .facts { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
  .hero-inner { grid-template-columns: 1.05fr 1fr; }
  .split { grid-template-columns: 1fr 1fr; }
  .cta-inner { grid-template-columns: 1fr 1fr; }
  .detail { grid-template-columns: 1.4fr .9fr; }
  .aside { position: sticky; top: 7rem; align-self: start; }
  .faq-split { grid-template-columns: .85fr 1.15fr; }
  .contact-split { grid-template-columns: 1.1fr .9fr; }
  .plans { grid-template-columns: repeat(3, 1fr); }
  .fact-value { font-size: 2.25rem; }
}

@media (min-width: 1280px) {
  .nav-phone { display: flex; }
}

/* Poštuj sistemsku postavku za smanjeno kretanje */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  a.card:hover { transform: none; }
  .card-media:hover .card-img img, .feature:hover .feature-img img { transform: none; }
}

/* Štampa */
@media print {
  .site-header, .site-footer, .cta, .btn, .map-box { display: none !important; }
  body { color: #000; }
}
