/* Inter je varijabilan: jedna datoteka po unicode-rangeu pokriva 100–900.
   latin-ext je obavezan — č ć š ž đ su ondje, bez njega se font lomi usred riječi. */
@font-face {
  font-family: Inter;
  src: url("/static/fonts/inter-latin-ext.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308,
    U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113,
    U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: Inter;
  src: url("/static/fonts/inter-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304,
    U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Metrički poravnat fallback: bez njega swap pomakne h1, koji je LCP element. */
@font-face {
  font-family: "Inter fallback";
  src: local("Segoe UI"), local("Roboto"), local("Helvetica Neue"), local("Arial");
  size-adjust: 107%;
  ascent-override: 90%;
  descent-override: 22%;
  line-gap-override: 0%;
}

:root {
  --orange: #F45A3C;
  --orange-strong: #C93D25;
  --orange-hover: #A9321F;
  --orange-soft: #FFE9E4;
  --orange-pale: #FFF3EF;
  --ink: #14212D;
  --ink-2: #1F2D3A;
  --text: #35465A;
  /* bio #6B7789 = 4.35:1 na --background, ispod AA; #5C687A = 5.42:1 */
  --muted: #5C687A;
  --placeholder: #6E7A8C;
  --surface: #FFFFFF;
  --background: #FFF9F6;
  --background-alt: #FFF2ED;
  --border: #E9E1DD;
  --border-strong: #DCD1CB;
  /* rub polja za unos mora imati 3:1 (WCAG 1.4.11); #DCD1CB je 1.50:1 */
  --field-border: #9C8C83;
  --success: #16734A;
  --error: #B42318;
  --shadow-sm: 0 12px 34px rgba(38, 28, 24, .07);
  --shadow: 0 28px 80px rgba(38, 28, 24, .14);
  --shadow-button: 0 12px 24px rgba(201, 61, 37, .22);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 30px;
  --header-h: 76px;
  /* Hrvatski: ispod -.03em prečka na đ probija advance box, a kvačice na č/ć/š/ž
     pri tijesnom line-heightu ulaze u descender prethodnog retka. */
  --track-display: -.028em;
  --track-heading: -.02em;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  color: var(--text);
  background: var(--background);
  font-family: Inter, "Inter fallback", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}
body.is-modal-open { overflow: hidden; }
a { color: var(--orange-strong); text-underline-offset: 3px; }
a:hover { text-decoration-thickness: 2px; }
button, input, textarea { font: inherit; }
button { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
svg { display: block; }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.narrow { width: min(790px, 100%); }
.skip-link { position: fixed; top: 8px; left: 8px; transform: translateY(-150%); background: var(--ink); color: white; padding: 10px 14px; border-radius: 10px; z-index: 1000; }
.skip-link:focus { transform: translateY(0); }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(255, 249, 246, .86);
  border-bottom: 1px solid rgba(233, 225, 221, .84);
  transition: box-shadow .2s ease, background .2s ease;
}
.site-header.is-scrolled { background: rgba(255, 249, 246, .96); box-shadow: 0 8px 30px rgba(20, 33, 45, .06); }
.header-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; text-decoration: none; flex: 0 0 auto; }
.brand img { width: 202px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a { color: var(--ink); text-decoration: none; font-weight: 700; font-size: 15px; transition: color .16s ease, background .16s ease, transform .16s ease; }
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--orange-strong); }
.main-nav .nav-cta {
  color: #fff;
  background: var(--orange-strong);
  padding: 11px 18px;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(201, 61, 37, .18);
}
.main-nav .nav-cta:hover { color: #fff; background: var(--orange-hover); transform: translateY(-1px); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--border); border-radius: 13px; background: white; padding: 10px; cursor: pointer; }
.nav-toggle span { display: block; width: 21px; height: 2px; margin: 4px auto; border-radius: 999px; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Shared typography and buttons */
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--orange-strong); font-weight: 850; text-transform: uppercase; letter-spacing: .12em; font-size: 12px; }
.eyebrow-on-dark { color: #FF9E89; }
.pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 7px rgba(244, 90, 60, .14); }
.button {
  min-height: 50px;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 13px 22px;
  color: #fff;
  background: var(--orange-strong);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  box-shadow: var(--shadow-button);
}
.button:hover { color: #fff; background: var(--orange-hover); transform: translateY(-2px); box-shadow: 0 16px 30px rgba(169, 50, 31, .25); }
.button:active { transform: translateY(0); }
/* Bio rgba(244,90,60,.28) = 1.39:1 na bijeloj — praktički nevidljiv fokus. */
.button:focus-visible, .nav-toggle:focus-visible, .link-button:focus-visible, input:focus-visible, textarea:focus-visible, a:focus-visible, main:focus-visible, .form-status:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; border-radius: 4px; }
.waitlist-section :focus-visible, .site-footer :focus-visible, .stat-panel :focus-visible { outline-color: #FF9E89; }
main:focus { outline: none; }
.button:disabled { opacity: .62; cursor: wait; transform: none; box-shadow: none; }
.button-large { min-height: 56px; padding-inline: 25px; }
.button-secondary { color: var(--orange-strong); background: #fff; border-color: var(--border-strong); box-shadow: none; }
.button-secondary:hover { color: var(--orange-hover); background: var(--orange-pale); border-color: #F3B7A9; box-shadow: 0 10px 24px rgba(38, 28, 24, .08); }
.button-full { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 7px; color: var(--ink); font-weight: 800; text-decoration: none; }
.text-link svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: transform .16s ease; }
.text-link:hover { color: var(--orange-strong); }
.text-link:hover svg { transform: translateX(3px); }

/* Hero */
.hero { position: relative; overflow: clip; padding: 86px 0 104px; }
/* minmax(480px, …) je nadjačavao fr omjer pa je između 1041 i 1180 px mockup
   bio širi od teksta — obrnuto od namjere. minmax(0, …) pušta omjer da vrijedi. */
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(32px, 5vw, 72px); align-items: center; position: relative; z-index: 2; }
.hero-copy { padding-top: 4px; }
.hero h1, .page-hero h1 { margin: 18px 0 22px; color: var(--ink); font-size: clamp(40px, 4.4vw, 60px); line-height: 1.08; letter-spacing: var(--track-display); text-wrap: balance; }
.hero h1 span { color: var(--orange-strong); }
.hero-lead { max-width: 650px; margin: 0; font-size: clamp(18px, 1.75vw, 21px); color: var(--muted); }
.hero-disclosure { max-width: 650px; margin: 16px 0 0; font-size: 14.5px; line-height: 1.55; color: var(--muted); padding-left: 14px; border-left: 3px solid var(--orange-soft); }
.hero-actions { display: flex; align-items: center; gap: 24px; margin: 30px 0 34px; flex-wrap: wrap; }
.metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 650px; }
.metrics-note { max-width: 650px; margin: 14px 0 0; font-size: 12.5px; line-height: 1.5; color: var(--muted); }
.metrics div { position: relative; padding-left: 16px; }
.metrics div::before { content: ""; position: absolute; inset: 3px auto 3px 0; width: 3px; border-radius: 3px; background: linear-gradient(var(--orange), var(--orange-strong)); }
.metrics strong { display: block; color: var(--ink); font-size: 27px; line-height: 1.08; letter-spacing: -.03em; }
.metrics span { color: var(--muted); font-size: 14px; }
.hero-glow { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-glow-one { width: 540px; height: 540px; right: -210px; top: 10px; background: radial-gradient(circle, rgba(244, 90, 60, .18), rgba(255, 233, 228, 0) 70%); }
.hero-glow-two { width: 360px; height: 360px; left: -190px; bottom: -130px; background: radial-gradient(circle, rgba(201, 61, 37, .11), transparent 70%); }
.hero-product { position: relative; padding: 20px 2px 22px; }
.product-preview {
  position: relative;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(224, 214, 208, .9);
  border-radius: 30px;
  padding: 20px;
  box-shadow: 0 30px 90px rgba(41, 27, 22, .16), 0 3px 10px rgba(41, 27, 22, .06);
  /* Bez rotacije: 0.35° je preko sirine natpisa spustalo zadnje slovo za ~0.3 px,
     pa je mala verzalna tipografija izgledala krivo poravnato. Usput je i cijela
     maketa ostra jer se vise ne rasterizira zarotirana. */
}
.preview-header { display: flex; align-items: center; justify-content: space-between; min-height: 26px; margin-bottom: 12px; }
.window-dots { display: flex; gap: 6px; }
.window-dots span { width: 8px; height: 8px; border-radius: 50%; background: #F2D8D1; }
.window-dots span:nth-child(2) { background: #FFA892; }
.window-dots span:nth-child(3) { background: var(--orange); }
.preview-label { color: var(--ink); font-size: 12px; font-weight: 800; letter-spacing: .04em; }
.preview-search { display: grid; grid-template-columns: 1fr 1fr auto; gap: 9px; margin-bottom: 14px; }
.preview-field { position: relative; min-height: 57px; padding: 9px 36px 9px 12px; border: 1px solid var(--border); border-radius: 13px; background: #fff; }
.preview-field span { display: block; color: var(--muted); font-size: 11px; line-height: 1.2; }
.preview-field strong { color: var(--ink); font-size: 13px; line-height: 1.35; }
.preview-field svg { position: absolute; right: 11px; top: 20px; width: 16px; height: 16px; fill: none; stroke: var(--muted); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.preview-search button { min-width: 102px; border: 0; border-radius: 13px; background: var(--orange-strong); color: white; font-weight: 800; padding: 0 17px; }
.offer-card { position: relative; overflow: hidden; isolation: isolate; border-radius: 18px; background: #FFF1EC; box-shadow: inset 0 0 0 1px rgba(255,255,255,.25); }
.offer-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.offer-gradient { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(8,14,20,.05) 35%, rgba(8,14,20,.8) 100%); }
.offer-card-main { min-height: 245px; }
.offer-card-main img { object-position: 54% 50%; }
.offer-badges { position: absolute; z-index: 2; left: 15px; top: 15px; display: flex; gap: 7px; }
.offer-badges span { padding: 6px 10px; border-radius: 999px; background: rgba(255,255,255,.94); color: var(--ink); font-size: 11px; font-weight: 800; box-shadow: 0 4px 14px rgba(20, 33, 45, .12); }
.offer-badges span:first-child { color: var(--orange-strong); }
.offer-content { position: absolute; z-index: 2; inset: auto 16px 15px 16px; color: white; display: flex; align-items: end; justify-content: space-between; gap: 16px; }
.offer-title { margin: 0; color: #fff; line-height: 1.1; letter-spacing: -.02em; font-size: 16px; font-weight: 700; }
.offer-title-lg { font-size: 28px; font-weight: 800; }
.offer-content p { margin: 6px 0 0; font-size: 12px; color: rgba(255,255,255,.88); }
.offer-content p span { margin: 0 4px; opacity: .6; }
.offer-price { display: flex; align-items: baseline; gap: 5px; flex: 0 0 auto; white-space: nowrap; }
.offer-price small { color: rgba(255,255,255,.82); font-size: 10px; }
.offer-price strong { color: white; font-size: 25px; line-height: 1; }
.offer-grid-secondary { display: grid; grid-template-columns: 1.55fr .8fr; gap: 10px; margin-top: 10px; }
.offer-card-wide { min-height: 130px; }
.offer-card-wide img { object-position: 50% 47%; }
.offer-card-wide .offer-content { inset: auto 14px 12px 14px; }
.offer-card-wide .offer-price strong { font-size: 19px; }
.offer-mini-stack { display: grid; grid-template-rows: 1fr 1fr; gap: 10px; }
.offer-card-mini { min-height: 60px; }
.offer-card-mini .offer-content { inset: auto 10px 8px 10px; }
.offer-card-mini .offer-title { font-size: 13px; }
.offer-card-mini img { object-position: center 45%; }
/* Plutajuće pilule su prekrivale polje "Destinacija" i mini kartice, a na mobitelu
   se gasile. Ista informacija sad stoji unutar maketa, gdje ima referent. */
.preview-foot { display: flex; align-items: center; flex-wrap: wrap; gap: 6px 10px; margin: 12px 2px 2px; color: var(--muted); font-size: 12px; font-weight: 600; }
.preview-foot .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--success); flex: 0 0 auto; }
.preview-foot i { font-style: normal; color: var(--border-strong); }
.preview-foot b { color: var(--ink); font-weight: 800; }
.preview-disclaimer { margin: 14px 0 0; text-align: center; font-size: 13px; line-height: 1.45; color: var(--muted); }

/* Sections and features */
.section { padding: 94px 0; }
.section-features { background: linear-gradient(180deg, rgba(255,255,255,.3), rgba(255,244,239,.52)); }
.section-heading { max-width: 810px; margin-bottom: 45px; }
.section-heading h2, .waitlist-grid h2, .agency-strip h2, .contact-grid h2, .split-layout h2 { color: var(--ink); font-size: clamp(32px, 4vw, 50px); line-height: 1.14; letter-spacing: var(--track-heading); margin: 14px 0 18px; text-wrap: balance; }
.section-heading p { margin: 0; font-size: 18px; color: var(--muted); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card { position: relative; overflow: hidden; background: rgba(255,255,255,.92); border: 1px solid var(--border); border-radius: var(--radius); padding: 31px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.feature-card::after { content: ""; position: absolute; width: 130px; height: 130px; right: -55px; top: -65px; border-radius: 50%; background: radial-gradient(circle, rgba(244,90,60,.11), transparent 68%); }
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 20px 46px rgba(38, 28, 24, .09); border-color: #F0C7BD; }
.feature-icon { width: 50px; height: 50px; display: inline-grid; place-items: center; border-radius: 15px; background: var(--orange-soft); color: var(--orange-strong); }
.feature-icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.feature-card h3 { color: var(--ink); font-size: 22px; line-height: 1.22; margin: 21px 0 10px; letter-spacing: -.02em; }
.feature-card p { margin: 0; color: var(--muted); }

/* Forms and waitlist */
.waitlist-section { position: relative; overflow: hidden; background: linear-gradient(145deg, #111D28 0%, #172634 100%); color: white; }
.waitlist-section::before { content: ""; position: absolute; width: 520px; height: 520px; left: -260px; bottom: -280px; border-radius: 50%; background: radial-gradient(circle, rgba(244,90,60,.16), transparent 68%); }
.waitlist-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1.1fr; gap: 78px; align-items: center; }
.waitlist-grid h2 { color: white; }
.waitlist-copy > p { color: #C6D1DC; font-size: 18px; max-width: 540px; }
.check-list { padding: 0; list-style: none; margin: 28px 0 0; display: grid; gap: 11px; }
.check-list li { color: #E1E8EF; display: flex; align-items: center; gap: 11px; }
.check-list li::before { content: "✓"; width: 22px; height: 22px; display: inline-grid; place-items: center; border-radius: 50%; background: rgba(255,158,137,.13); color: #FF9E89; font-size: 13px; font-weight: 900; }
.form-card { background: white; color: var(--text); border: 1px solid rgba(220,209,203,.75); border-radius: 25px; padding: clamp(25px, 4vw, 39px); box-shadow: var(--shadow); }
.form-intro { padding-bottom: 20px; margin-bottom: 23px; border-bottom: 1px solid var(--border); }
.form-step { display: block; color: var(--orange-strong); font-size: 11px; font-weight: 850; text-transform: uppercase; letter-spacing: .11em; }
.form-intro h3 { color: var(--ink); margin: 4px 0 0; font-size: 26px; letter-spacing: -.03em; }
.field { margin-bottom: 18px; }
.field label { display: block; color: var(--ink); font-weight: 760; margin-bottom: 7px; font-size: 14px; }
.optional { float: right; font-weight: 500; color: var(--muted); font-size: 12px; }
.field input, .field textarea { width: 100%; min-height: 50px; border: 1px solid var(--field-border); border-radius: 13px; background: #fff; color: var(--ink); padding: 13px 14px; outline: none; transition: border .15s, box-shadow .15s, background .15s; }
.field textarea { resize: vertical; min-height: 160px; }
.field input::placeholder, .field textarea::placeholder { color: var(--placeholder); }
.field input:hover, .field textarea:hover { border-color: #7E6E65; }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: var(--error); box-shadow: 0 0 0 3px rgba(180, 35, 24, .1); }
.field-error { min-height: 0; margin: 6px 0 0; color: var(--error); font-size: 13px; font-weight: 650; }
.field-error:empty { display: none; }
.field-hint { margin: 5px 0 0; color: var(--muted); font-size: 12.5px; }
.form-legend { margin: 0 0 18px; color: var(--muted); font-size: 12.5px; }
.field input:focus, .field textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(244,90,60,.12); background: #FFFEFD; }
.checkbox { display: flex; gap: 11px; align-items: flex-start; font-size: 13px; color: var(--muted); margin: 20px 0; cursor: pointer; }
.checkbox input { margin-top: 3px; accent-color: var(--orange-strong); width: 18px; height: 18px; flex: 0 0 auto; }
.honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(1px,1px,1px,1px) !important; white-space: nowrap !important; }
/* Bez overflow:hidden — kad Turnstile eskalira u interaktivni izazov, viši je
   od 70 px pa bi ga clipanje učinilo nedovršivim. */
.turnstile-container { min-height: 70px; margin: 5px 0 15px; }
@media (max-width: 380px) { .turnstile-container { transform: scale(.86); transform-origin: left top; height: 60px; } }
.form-note { margin: 0 0 14px; color: var(--muted); font-size: 13px; line-height: 1.5; }
.form-fallback { margin: 14px 0 0; text-align: center; font-size: 13px; color: var(--muted); }
.form-status { min-height: 24px; margin: 12px 0 0; font-size: 14px; text-align: center; font-weight: 700; }
.form-status.is-success { color: var(--success); }
.form-status.is-error { color: var(--error); }
.agency-strip { padding: 66px 0; }
.agency-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 46px; background: linear-gradient(120deg, var(--orange-soft), #FFF1EC); border: 1px solid #F6D3CA; border-radius: 28px; padding: 41px 44px; }
.agency-strip h2 { max-width: 760px; font-size: clamp(28px, 3.1vw, 40px); margin-bottom: 9px; }
.agency-strip p { margin: 0; max-width: 760px; color: var(--muted); }

/* Agency and internal pages */
.page-hero { padding: 92px 0 78px; background: linear-gradient(180deg, #FFF9F6, #FFF1ED); }
.page-hero h1 { font-size: clamp(43px, 5.8vw, 68px); }
.page-hero p { font-size: 20px; color: var(--muted); }
.page-hero-small { padding-bottom: 54px; }
.page-hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 76px; align-items: center; }
.page-hero-grid > div > p { max-width: 740px; }
.page-hero-grid .button { margin-top: 16px; }
.agency-summary { background: #fff; border: 1px solid var(--border); border-radius: 25px; padding: 27px; box-shadow: var(--shadow-sm); }
.summary-label { display: inline-block; color: var(--orange-strong); font-size: 11px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.agency-summary ul { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 16px; }
.agency-summary li { display: flex; gap: 11px; color: var(--ink-2); font-weight: 650; line-height: 1.45; }
.agency-summary svg { flex: 0 0 auto; width: 20px; height: 20px; margin-top: 2px; fill: none; stroke: var(--orange-strong); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.split-layout { display: grid; grid-template-columns: 1.25fr .75fr; gap: 72px; align-items: start; }
.content-stack { display: grid; gap: 0; }
.content-stack article { display: grid; grid-template-columns: 45px 1fr; gap: 18px; padding: 25px 0; border-bottom: 1px solid var(--border); }
.content-stack article > span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; background: var(--orange-soft); color: var(--orange-strong); font-size: 12px; font-weight: 850; }
.content-stack h3 { color: var(--ink); margin: 0 0 7px; font-size: 22px; }
.content-stack p { margin: 0; color: var(--muted); }
.stat-panel { position: sticky; top: calc(var(--header-h) + 24px); background: linear-gradient(145deg, #14212D, #1D3040); color: white; border-radius: 25px; padding: 32px; box-shadow: var(--shadow-sm); }
.stat-panel .summary-label { color: #FF9E89; }
.big-stat { padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.big-stat strong { display: block; color: #FF9E89; font-size: 41px; line-height: 1; letter-spacing: -.04em; }
.big-stat span { color: #D9E1E8; }
.stat-panel p { color: #C6D1DC; margin: 25px 0 0; }
.contact-section { background: linear-gradient(180deg, #FFF0EA, #FFF6F2); }
.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 65px; align-items: start; }
.contact-copy { position: sticky; top: calc(var(--header-h) + 24px); }
.contact-copy > p { font-size: 17px; color: var(--muted); max-width: 470px; }
.contact-method { display: flex; align-items: center; gap: 13px; margin-top: 28px; }
.contact-method > span { width: 45px; height: 45px; display: grid; place-items: center; border-radius: 14px; background: var(--orange-soft); color: var(--orange-strong); font-size: 22px; font-weight: 800; }
.contact-method small { display: block; color: var(--muted); }
.contact-method a { color: var(--ink); font-weight: 800; text-decoration: none; }
.form-two-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Legal page */
.legal-section { padding-top: 52px; }
.legal-layout { display: grid; grid-template-columns: 220px minmax(0, 820px); gap: 40px; align-items: start; justify-content: center; }
.legal-toc { position: sticky; top: calc(var(--header-h) + 24px); display: grid; gap: 9px; padding: 22px; border: 1px solid var(--border); border-radius: 18px; background: rgba(255,255,255,.75); }
.legal-toc strong { color: var(--ink); margin-bottom: 5px; }
.legal-toc a { color: var(--muted); text-decoration: none; font-size: 14px; }
.legal-toc a:hover { color: var(--orange-strong); }
.legal-content { background: white; border: 1px solid var(--border); border-radius: 25px; padding: clamp(28px, 5vw, 56px); }
.legal-content section { scroll-margin-top: calc(var(--header-h) + 24px); }
.legal-content h2 { color: var(--ink); font-size: 25px; margin: 39px 0 10px; }
.legal-content section:first-child h2 { margin-top: 0; }
.legal-content h3 { color: var(--ink); font-size: 18px; margin: 23px 0 6px; }
.legal-content p, .legal-content li { color: var(--text); }
.legal-content li + li { margin-top: 7px; }
.legal-settings-button { margin-top: 12px; }

/* Confirmation and error pages */
.confirmation-page { min-height: 68vh; display: grid; place-items: center; padding: 70px 20px; }
.confirmation-card { width: min(650px, 100%); text-align: center; background: white; border: 1px solid var(--border); border-radius: 27px; padding: clamp(38px, 7vw, 70px); box-shadow: var(--shadow); }
.confirmation-card h1 { color: var(--ink); font-size: clamp(32px, 5vw, 48px); line-height: 1.1; }
.confirmation-card p { color: var(--muted); font-size: 18px; margin-bottom: 30px; }
.confirmation-icon { display: grid; place-items: center; margin: 0 auto 24px; width: 64px; height: 64px; border-radius: 50%; background: var(--orange-soft); color: var(--orange-strong); font-size: 30px; font-weight: 900; }

/* Footer */
.site-footer { background: #0E1821; color: #C6D1DC; padding: 62px 0 24px; }
.footer-grid { display: flex; justify-content: space-between; gap: 60px; }
.brand-footer img { width: 214px; }
.footer-brand-block p { margin: 14px 0 0; max-width: 430px; color: #AEBBC7; }
.footer-nav { display: grid; grid-template-columns: repeat(2, minmax(160px, 1fr)); gap: 48px; }
.footer-nav > div { display: grid; gap: 9px; align-content: start; }
.footer-nav strong { color: #fff; font-size: 14px; margin-bottom: 4px; }
.footer-nav a, .link-button { color: #CDD7E0; background: none; border: 0; padding: 4px 0; cursor: pointer; text-decoration: none; text-align: left; font-size: 14px; }
.footer-nav a:hover, .link-button:hover { color: #FF9E89; }
.copyright { display: flex; justify-content: space-between; gap: 30px; margin-top: 43px; padding-top: 21px; border-top: 1px solid rgba(255,255,255,.1); font-size: 13px; color: #8998A7; }

/* Consent panel */
.consent-backdrop { position: fixed; inset: 0; z-index: 110; background: rgba(14, 24, 33, .38); backdrop-filter: blur(2px); }
.consent-backdrop[hidden], .consent-panel[hidden] { display: none; }
.consent-panel { position: fixed; z-index: 111; right: 22px; bottom: 22px; width: min(440px, calc(100% - 44px)); background: white; border: 1px solid var(--border); border-radius: 22px; padding: 27px; box-shadow: 0 32px 90px rgba(20, 33, 45, .25); }
.consent-close { position: absolute; right: 10px; top: 9px; width: 44px; height: 44px; display: grid; place-items: center; border: 0; border-radius: 10px; background: transparent; color: var(--muted); font-size: 25px; line-height: 1; cursor: pointer; }
.consent-close:hover { background: #F2F4F7; color: var(--ink); }
.consent-kicker { color: var(--orange-strong); font-size: 11px; font-weight: 850; text-transform: uppercase; letter-spacing: .1em; }
.consent-panel h2 { color: var(--ink); margin: 7px 35px 8px 0; font-size: 27px; line-height: 1.15; letter-spacing: -.03em; }
.consent-panel p { margin: 0; color: var(--muted); font-size: 14px; }
.consent-choice { min-height: 22px; margin: 16px 0 2px; color: var(--text); font-size: 13px; font-weight: 700; }
.consent-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 17px; }
.consent-actions .button { min-height: 48px; padding-inline: 12px; }
.consent-privacy-link { display: inline-block; margin-top: 14px; font-size: 13px; color: var(--muted); }

@media (max-width: 1120px) {
  .hero-grid { grid-template-columns: 1fr; gap: 46px; }
  .hero-copy { text-align: center; }
  .hero-lead, .metrics, .metrics-note, .hero-disclosure { margin-inline: auto; }
  /* Lijeva crta uz centrirani tekst izgleda kao greška; na uskom je okvir. */
  .hero-disclosure { padding: 12px 16px; border-left: 0; border-radius: 12px; background: var(--orange-pale); }
  .hero-actions { justify-content: center; }
  .hero-product { width: min(650px, 100%); margin-inline: auto; }
  .page-hero-grid, .waitlist-grid, .split-layout, .contact-grid { grid-template-columns: 1fr; }
  .page-hero-grid { gap: 36px; }
  .agency-summary { width: min(700px, 100%); }
  .stat-panel, .contact-copy { position: static; }
  .waitlist-grid { gap: 48px; }
  /* Na 821 px su tri stupca davala 181 px sadržaja po kartici — uski tornjevi. */
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card:nth-child(odd):last-child { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { padding: 26px; }
  .agency-strip-inner { align-items: flex-start; flex-direction: column; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; display: flex; flex-wrap: wrap; gap: 8px 16px; }
  .legal-toc strong { width: 100%; }
  .footer-grid { flex-direction: column; }
  .copyright { flex-direction: column; gap: 7px; }
}

@media (max-width: 720px) {
  :root { --header-h: 66px; }
  .container { width: min(100% - 28px, 1180px); }
  .header-inner { min-height: 66px; }
  .brand img { width: 176px; }
  .nav-toggle { display: block; }
  .main-nav { display: none; position: absolute; top: 66px; left: 14px; right: 14px; padding: 14px; background: white; border: 1px solid var(--border); border-radius: 17px; box-shadow: var(--shadow); flex-direction: column; align-items: stretch; gap: 3px; }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 10px; border-radius: 10px; }
  .main-nav a:hover { background: var(--orange-pale); }
  .main-nav .nav-cta { text-align: center; margin-top: 4px; }
  .hero { padding: 57px 0 68px; }
  .hero-grid { gap: 36px; }
  .hero h1 { font-size: clamp(36px, 10.5vw, 50px); line-height: 1.09; }
  .hero-lead { font-size: 17px; }
  .hero-actions { flex-direction: column; gap: 14px; margin: 28px 0 34px; }
  .hero-actions .button { width: 100%; }
  .metrics { grid-template-columns: 1fr; text-align: left; gap: 14px; width: min(400px, 100%); }
  /* Fiksnih 95px je prelijevalo "50.000+" preko labele. */
  .metrics div { display: grid; grid-template-columns: minmax(max-content, auto) 1fr; column-gap: 12px; align-items: baseline; }
  .metrics strong { font-size: 25px; font-variant-numeric: tabular-nums; }
  .product-preview { padding: 13px; border-radius: 22px; }
  .preview-header { margin: 2px 2px 10px; }
  .preview-search { grid-template-columns: 1fr 1fr; }
  .preview-search button { grid-column: 1/-1; min-height: 45px; }
  .offer-card-main { min-height: 220px; }
  .offer-card-main img { object-position: 59% center; }
  .offer-title-lg { font-size: 24px; }
  .offer-content p { max-width: 220px; }
  .offer-price strong { font-size: 22px; }
  .offer-grid-secondary { grid-template-columns: 1fr; }
  .offer-card-wide { min-height: 110px; }
  .offer-mini-stack { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .offer-card-mini { min-height: 80px; }
  .section { padding: 68px 0; }
  .section-heading h2, .waitlist-grid h2, .agency-strip h2, .contact-grid h2, .split-layout h2 { font-size: clamp(31px, 9vw, 42px); }
  .form-card { padding: 23px 19px; }
  .form-two-columns { grid-template-columns: 1fr; gap: 0; }
  .agency-strip-inner { padding: 29px 23px; }
  .page-hero { padding: 68px 0 55px; }
  .page-hero h1 { font-size: clamp(39px, 11vw, 54px); }
  .page-hero p { font-size: 17px; }
  .content-stack article { grid-template-columns: 38px 1fr; gap: 13px; }
  .stat-panel { padding: 27px 23px; }
  .footer-nav { grid-template-columns: 1fr; gap: 30px; }
  .consent-panel { right: 10px; left: 10px; bottom: 10px; width: auto; padding: 23px 18px 18px; border-radius: 20px; }
  .consent-panel h2 { font-size: 24px; }
  .consent-actions { grid-template-columns: 1fr; }
}

@media (max-width: 430px) {
  .offer-card-main { min-height: 205px; }
  .offer-content { inset-inline: 13px; }
  .offer-title-lg { font-size: 22px; }
  .offer-badges { left: 12px; top: 12px; }
  .offer-badges span { font-size: 10px; padding: 5px 8px; }
  .offer-mini-stack { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}

/* Compact first-visit consent; full detail remains available from footer settings. */
.consent-close[hidden] { display: none; }
.consent-panel[data-mode="initial"] { padding: 22px; }
.consent-panel[data-mode="initial"] .consent-kicker,
.consent-panel[data-mode="initial"] .consent-choice { display: none; }
/* Poveznica na pravila mora biti dostupna u trenutku kad se privola traži. */
.consent-panel[data-mode="initial"] .consent-privacy-link { margin-top: 10px; font-size: 12px; }
/* EDPB: odbijanje i prihvaćanje jednake vizualne težine pri prvom prikazu. */
.consent-panel[data-mode="initial"] .consent-actions .button {
  color: var(--orange-strong); background: #fff; border-color: var(--border-strong); box-shadow: none;
}
.consent-panel[data-mode="initial"] .consent-actions .button:hover {
  color: var(--orange-hover); background: var(--orange-pale); border-color: #F3B7A9; transform: none;
}
.consent-panel[data-mode="initial"] h2 { margin-top: 0; margin-right: 0; font-size: 22px; }
.consent-panel[data-mode="initial"] p { font-size: 13px; line-height: 1.5; }
.consent-panel[data-mode="initial"] .consent-actions { grid-template-columns: 1fr 1fr; margin-top: 14px; }
@media (max-width: 720px) {
  .consent-panel[data-mode="initial"] { padding: 18px 15px 15px; }
  .consent-panel[data-mode="initial"] h2 { font-size: 19px; }
  .consent-panel[data-mode="initial"] p { font-size: 12px; }
  .consent-panel[data-mode="initial"] .consent-actions { grid-template-columns: 1fr 1fr; gap: 8px; }
  .consent-panel[data-mode="initial"] .consent-actions .button { min-height: 44px; font-size: 13px; }
}
