/* ==========================================================================
   Zadarweb - dizajn sustav "Adriatic Ink"
   Tamni petrol hero i footer, papirnata podloga za čitanje, jedan teal accent.
   Fontovi: Bricolage Grotesque (display) + Instrument Sans (tekst), latin-ext.
   ========================================================================== */

/* ---------- Fontovi ---------- */

@font-face {
	font-family: 'Bricolage Grotesque';
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url('../fonts/bricolage-grotesque-600.woff2') format('woff2');
}
@font-face {
	font-family: 'Bricolage Grotesque';
	font-style: normal;
	font-weight: 800;
	font-display: swap;
	src: url('../fonts/bricolage-grotesque-800.woff2') format('woff2');
}
@font-face {
	font-family: 'Schibsted Grotesk';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url('../fonts/schibsted-grotesk-400.woff2') format('woff2');
}
@font-face {
	font-family: 'Schibsted Grotesk';
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url('../fonts/schibsted-grotesk-500.woff2') format('woff2');
}
@font-face {
	font-family: 'Schibsted Grotesk';
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url('../fonts/schibsted-grotesk-600.woff2') format('woff2');
}

/* ---------- Tokeni ---------- */

:root {
	/* Boje */
	--ink-950: #071518;
	--ink-900: #0B2026;
	--ink-800: #123039;
	--paper: #F6F8F7;
	--paper-2: #EAF0EE;
	--card: #FFFFFF;
	--text: #1B2E33;
	--muted: #54696E;
	--line: #DBE4E1;
	--line-d: rgba(255, 255, 255, 0.09);

	--acc-300: #69EAD3;
	--acc-400: #2FD9BE;
	--acc-500: #12C2A5;
	--acc-600: #0B9C85;
	--acc-700: #077A66;

	--wa: #25D366;
	--wa-hover: #48DE7D;

	/* Tipografija */
	--f-display: 'Bricolage Grotesque', 'Avenir Next', 'Segoe UI', sans-serif;
	--f-text: 'Schibsted Grotesk', 'Helvetica Neue', Arial, sans-serif;

	/* Oblici: gumbi i chipovi = pilula, paneli = 18px, mala polja = 10px */
	--r-card: 18px;
	--r-sm: 10px;
	--r-pill: 999px;

	/* Motion */
	--ease: cubic-bezier(0.16, 1, 0.3, 1);

	/* Ritam */
	--sec: clamp(4.25rem, 9vw, 7.5rem);
	--head-h: 78px;
}

/* ---------- Reset i baza ---------- */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--f-text);
	font-size: 1rem;
	line-height: 1.6;
	color: var(--text);
	background: var(--paper);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: clip;
}

h1, h2, h3, h4, h5 {
	font-family: var(--f-display);
	font-weight: 600;
	line-height: 1.15;
	margin: 0;
	color: inherit;
	overflow-wrap: break-word;
}

p, ul, ol, dl, figure, blockquote {
	margin: 0;
}

img, svg {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

a {
	color: inherit;
	text-decoration: none;
}

button {
	font: inherit;
	color: inherit;
	background: none;
	border: 0;
	cursor: pointer;
	padding: 0;
}

::selection {
	background: var(--acc-500);
	color: var(--ink-950);
}

:focus-visible {
	outline: 2px solid var(--acc-500);
	outline-offset: 3px;
	border-radius: 4px;
}

/* Diskretan scrollbar */
::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}
::-webkit-scrollbar-track {
	background: var(--paper-2);
}
::-webkit-scrollbar-thumb {
	background: #B4C3BF;
	border-radius: 8px;
	border: 2px solid var(--paper-2);
}
::-webkit-scrollbar-thumb:hover {
	background: #93A6A1;
}
@supports (scrollbar-width: thin) {
	html {
		scrollbar-width: thin;
		scrollbar-color: #B4C3BF var(--paper-2);
	}
}

.icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

.wrap {
	width: min(100% - 2.5rem, 1200px);
	margin-inline: auto;
}

.wrap--narrow {
	max-width: 840px;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

.skip-link {
	position: absolute;
	top: -100px;
	left: 1rem;
	z-index: 100;
	padding: 0.7rem 1.2rem;
	background: var(--ink-950);
	color: #fff;
	border-radius: var(--r-pill);
	font-weight: 600;
	transition: top 0.25s var(--ease);
}
.skip-link:focus {
	top: 1rem;
}

#zw-top-sentinel {
	position: absolute;
	top: 0;
	height: 2px;
	width: 1px;
}

/* Otkrivanje na scroll (gated iza html.js, bez JS-a sve je vidljivo) */
html.js .rv {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
	transition-delay: calc(var(--i, 0) * 80ms);
}
html.js .rv.is-in {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	html.js .rv {
		opacity: 1;
		transform: none;
		transition: none;
	}
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

/* ---------- Gumbi ---------- */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	min-height: 46px;
	padding: 0.7rem 1.5rem;
	border-radius: var(--r-pill);
	font-weight: 600;
	font-size: 0.95rem;
	line-height: 1.2;
	white-space: nowrap;
	border: 1.5px solid transparent;
	transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.btn .icon {
	width: 18px;
	height: 18px;
	transition: transform 0.3s var(--ease);
}
.btn:active {
	transform: scale(0.98);
}
.btn:hover .icon {
	transform: translateX(3px);
}
.btn:hover .icon--static,
.btn .icon--static {
	transform: none;
}

.btn--lg {
	min-height: 54px;
	padding: 0.9rem 1.9rem;
	font-size: 1.02rem;
}

.btn--primary {
	background: var(--acc-500);
	color: var(--ink-950);
}
.btn--primary:hover {
	background: var(--acc-400);
}

.btn--cta {
	display: none;
	background: var(--acc-500);
	color: var(--ink-950);
	min-height: 42px;
	padding: 0.55rem 1.3rem;
}
.btn--cta:hover {
	background: var(--acc-400);
}

@media (min-width: 640px) {
	.btn--cta {
		display: inline-flex;
	}
}

.btn--wa {
	background: var(--wa);
	color: var(--ink-950);
}
.btn--wa:hover {
	background: var(--wa-hover);
}
.btn--wa .icon {
	transition: transform 0.3s var(--ease);
}
.btn--wa:hover .icon {
	transform: scale(1.08);
	translate: 0;
}

/* Ghost gumbi žive na tamnim podlogama (hero, CTA trake, footer) */
.btn--ghost,
.btn--ghost-dark {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.28);
	color: #fff;
}
.btn--ghost:hover,
.btn--ghost-dark:hover {
	border-color: var(--acc-400);
	color: var(--acc-300);
}

.link-more {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 600;
	color: var(--acc-700);
}
.link-more .icon {
	width: 18px;
	height: 18px;
	transition: transform 0.3s var(--ease);
}
.link-more:hover .icon {
	transform: translateX(4px);
}

/* ---------- Header ---------- */

.site-head {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(7, 21, 24, 0.88);
	-webkit-backdrop-filter: blur(14px);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--line-d);
}

.site-head__in {
	display: flex;
	align-items: center;
	gap: 1rem;
	height: var(--head-h);
	transition: height 0.35s var(--ease);
}

@media (min-width: 1100px) {
	.site-head__in {
		gap: 1.5rem;
	}
}

.site-head.is-compact .site-head__in {
	height: 62px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	flex-shrink: 0;
}

.brand__mark {
	width: 32px;
	height: 32px;
	transition: transform 0.35s var(--ease);
}
.site-head.is-compact .brand__mark {
	transform: scale(0.9);
}

.brand__text {
	font-family: var(--f-display);
	font-weight: 600;
	font-size: 0.93rem;
	letter-spacing: -0.01em;
	color: #fff;
}

@media (min-width: 640px) {
	.brand__mark {
		width: 38px;
		height: 38px;
	}
	.brand__text {
		font-size: 1.02rem;
	}
}
.brand__text b {
	font-weight: 800;
	color: var(--acc-400);
}

.main-nav {
	display: none;
}

.site-head__actions {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	margin-left: auto;
}

.head-phone {
	display: none;
	align-items: center;
	gap: 0.5rem;
	color: rgba(255, 255, 255, 0.85);
	font-weight: 600;
	font-size: 0.95rem;
	transition: color 0.3s var(--ease);
}
.head-phone .icon {
	width: 17px;
	height: 17px;
	color: var(--acc-400);
}
.head-phone:hover {
	color: var(--acc-300);
}

.burger {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: var(--r-pill);
	color: #fff;
	border: 1.5px solid rgba(255, 255, 255, 0.2);
	transition: border-color 0.3s var(--ease);
}
.burger:hover {
	border-color: var(--acc-400);
}
.burger .burger__close {
	display: none;
}
.burger[aria-expanded="true"] .burger__open {
	display: none;
}
.burger[aria-expanded="true"] .burger__close {
	display: block;
}

@media (min-width: 1100px) {
	.burger {
		display: none;
	}

	.main-nav {
		display: block;
	}

	.main-nav__list {
		display: flex;
		align-items: center;
		gap: 0.25rem;
		list-style: none;
		margin: 0;
		padding: 0;
	}

	.main-nav__item {
		position: relative;
		display: flex;
		align-items: center;
	}

	.main-nav__item > a {
		display: inline-block;
		padding: 0.55rem 0.8rem;
		font-weight: 500;
		font-size: 0.95rem;
		color: rgba(255, 255, 255, 0.78);
		border-radius: var(--r-pill);
		transition: color 0.3s var(--ease), background-color 0.3s var(--ease);
	}
	.main-nav__item > a:hover {
		color: #fff;
		background: rgba(255, 255, 255, 0.06);
	}

	.sub-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 26px;
		height: 26px;
		margin-left: -6px;
		border-radius: var(--r-pill);
		color: rgba(255, 255, 255, 0.55);
		transition: color 0.3s var(--ease), transform 0.3s var(--ease);
	}
	.sub-toggle .icon {
		width: 15px;
		height: 15px;
	}
	.has-sub:hover .sub-toggle,
	.has-sub.open .sub-toggle {
		color: var(--acc-400);
		transform: rotate(180deg);
	}

	.sub-menu {
		position: absolute;
		top: calc(100% + 10px);
		left: -8px;
		min-width: 264px;
		padding: 0.5rem;
		margin: 0;
		list-style: none;
		background: var(--ink-900);
		border: 1px solid var(--line-d);
		border-radius: 14px;
		box-shadow: 0 24px 60px rgba(4, 14, 16, 0.55);
		opacity: 0;
		visibility: hidden;
		transform: translateY(8px);
		transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
	}
	.sub-menu::before {
		content: "";
		position: absolute;
		top: -12px;
		left: 0;
		right: 0;
		height: 12px;
	}
	.has-sub:hover .sub-menu,
	.has-sub:focus-within .sub-menu,
	.has-sub.open .sub-menu {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.sub-menu a {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 0.75rem;
		padding: 0.62rem 0.9rem;
		border-radius: 9px;
		font-size: 0.93rem;
		font-weight: 500;
		color: rgba(255, 255, 255, 0.8);
		transition: background-color 0.25s var(--ease), color 0.25s var(--ease);
	}
	.sub-menu a:hover {
		background: rgba(255, 255, 255, 0.06);
		color: var(--acc-300);
	}
	.sub-menu a .icon {
		width: 15px;
		height: 15px;
	}

	.sub-menu__all {
		margin-top: 0.4rem;
		padding-top: 0.4rem;
		border-top: 1px solid var(--line-d);
	}
	.sub-menu__all a {
		color: var(--acc-300);
		font-weight: 600;
	}
}

@media (min-width: 1440px) {
	.head-phone {
		display: inline-flex;
	}
}

/* ---------- Mobilni meni ---------- */

.m-menu {
	position: fixed;
	inset: 0;
	z-index: 45;
	padding: calc(var(--head-h) + 1.5rem) 1.5rem 2.5rem;
	background: var(--ink-950);
	overflow-y: auto;
	opacity: 0;
	transform: translateY(-12px);
	transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.m-menu.is-open {
	opacity: 1;
	transform: none;
}
.m-menu[hidden] {
	display: none;
}

body.menu-open {
	overflow: hidden;
}

.m-menu__nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.m-menu__link,
.m-acc {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 0;
	font-family: var(--f-display);
	font-weight: 600;
	font-size: 1.35rem;
	color: #fff;
	border-bottom: 1px solid var(--line-d);
	text-align: left;
}
.m-acc .icon {
	width: 20px;
	height: 20px;
	color: var(--acc-400);
	transition: transform 0.3s var(--ease);
}
.m-acc[aria-expanded="true"] .icon {
	transform: rotate(180deg);
}

.m-acc__panel {
	padding: 0.35rem 0 1rem !important;
	border-bottom: 1px solid var(--line-d);
}
.m-acc__panel a {
	display: block;
	padding: 0.55rem 0;
	font-size: 1.02rem;
	color: rgba(255, 255, 255, 0.72);
}
.m-acc__panel a:hover {
	color: var(--acc-300);
}

.m-menu__contact {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
	margin-top: 2rem;
}
.m-menu__area {
	text-align: center;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.55);
}

/* ---------- Plutajući WhatsApp ---------- */

.wa-float {
	position: fixed;
	right: 1.1rem;
	bottom: 1.1rem;
	z-index: 40;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: var(--r-pill);
	background: var(--wa);
	color: var(--ink-950);
	box-shadow: 0 12px 30px rgba(7, 21, 24, 0.25);
	transition: transform 0.3s var(--ease), background-color 0.3s var(--ease);
}
.wa-float .icon {
	width: 26px;
	height: 26px;
}
.wa-float:hover {
	transform: translateY(-3px);
	background: var(--wa-hover);
}
.wa-float::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	border: 2px solid var(--wa);
	animation: zw-pulse 2.6s var(--ease) infinite;
	pointer-events: none;
}

@keyframes zw-pulse {
	0% {
		transform: scale(1);
		opacity: 0.8;
	}
	70% {
		transform: scale(1.45);
		opacity: 0;
	}
	100% {
		transform: scale(1.45);
		opacity: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.wa-float::after {
		animation: none;
		opacity: 0;
	}
}

/* ---------- Hero (naslovnica) ---------- */

.hero {
	position: relative;
	background: var(--ink-950);
	background-image: radial-gradient(1100px 560px at 82% -12%, rgba(18, 194, 165, 0.14), transparent 65%);
	color: #fff;
	overflow: hidden;
}

.hero__deco {
	position: absolute;
	inset: 0 0 0 auto;
	width: min(58vw, 860px);
	opacity: 0.9;
	pointer-events: none;
}
.hero__deco svg {
	width: 100%;
	height: 100%;
}

.hero__in {
	position: relative;
	display: grid;
	gap: 3rem;
	padding-block: clamp(3.5rem, 8vw, 6.5rem);
}

.kicker {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	width: fit-content;
	padding: 0.38rem 0.95rem;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--r-pill);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--acc-300);
}

.hero__title {
	margin-top: 1.4rem;
	font-weight: 800;
	font-size: clamp(2.6rem, 6.4vw, 4.4rem);
	line-height: 1.02;
	letter-spacing: -0.02em;
	max-width: 14ch;
}

.hero__sub {
	margin-top: 1.4rem;
	font-size: 1.13rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.72);
	max-width: 52ch;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
	margin-top: 2.1rem;
}

.hero__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem 1.6rem;
	margin-top: 2.4rem;
	padding: 0;
	list-style: none;
}
.hero__badges li {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.68);
}
.hero__badges .icon {
	width: 16px;
	height: 16px;
	color: var(--acc-400);
}

/* Brzi kontakt: dvostruki okvir (vanjska ljuska + unutarnja jezgra) */
.hero__card {
	align-self: center;
	padding: 8px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: calc(var(--r-card) + 8px);
}
.hero__card-in {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
	padding: 1.8rem 1.6rem;
	background: linear-gradient(160deg, var(--ink-900), var(--ink-950));
	border-radius: var(--r-card);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}
.hero__card-title {
	font-family: var(--f-display);
	font-weight: 600;
	font-size: 1.3rem;
	color: #fff;
}
.hero__card-sub {
	margin-top: -0.4rem;
	margin-bottom: 0.5rem;
	font-size: 0.93rem;
	color: rgba(255, 255, 255, 0.6);
}
.hero__card-note {
	margin-top: 0.4rem;
	font-size: 0.84rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 1100px) {
	.hero__in {
		grid-template-columns: minmax(0, 1fr) 380px;
		gap: 4.5rem;
		align-items: center;
	}
}

/* ---------- Trust brojke ---------- */

.trust {
	border-bottom: 1px solid var(--line);
	background: var(--paper);
}

.stat-row--trust {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem 1.5rem;
	margin: 0;
	padding-block: clamp(2.5rem, 5vw, 3.75rem);
}

.stat-row--trust .stat {
	display: flex;
	flex-direction: column;
	background: none;
	border: 0;
	padding: 0;
	text-align: left;
}
.stat-row--trust .stat__n {
	order: -1;
	font-family: var(--f-display);
	font-weight: 800;
	font-size: clamp(1.9rem, 3.6vw, 2.6rem);
	letter-spacing: -0.02em;
	color: var(--ink-950);
	margin: 0;
}
.stat-row--trust .stat__l {
	margin-top: 0.3rem;
	font-size: 0.92rem;
	color: var(--muted);
}

@media (min-width: 1100px) {
	.stat-row--trust {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* ---------- Sekcije ---------- */

.section {
	padding-block: var(--sec);
}

.section--tint {
	background: var(--paper-2);
}

.section--dark {
	background: var(--ink-950);
	background-image: radial-gradient(900px 480px at 12% 110%, rgba(18, 194, 165, 0.1), transparent 60%);
	color: #fff;
}
.section--dark .section__title {
	color: #fff;
}
.section--dark .section__sub {
	color: rgba(255, 255, 255, 0.62);
}

.section__head {
	max-width: 700px;
	margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
}

.section__title {
	font-weight: 800;
	font-size: clamp(1.85rem, 4vw, 2.7rem);
	line-height: 1.08;
	letter-spacing: -0.015em;
	color: var(--ink-950);
}

.section__sub {
	margin-top: 0.9rem;
	font-size: 1.08rem;
	line-height: 1.65;
	color: var(--muted);
	max-width: 56ch;
}

.section__foot {
	margin-top: clamp(2.25rem, 4vw, 3rem);
}

/* ---------- Usluge: bento ---------- */

.bento {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
}

.bento__cell {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
	padding: 1.8rem;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--r-card);
	transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.bento__cell:hover {
	transform: translateY(-4px);
	border-color: var(--acc-500);
	box-shadow: 0 18px 44px rgba(7, 21, 24, 0.09);
}

.bento__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	margin-bottom: 0.4rem;
	border-radius: 13px;
	background: rgba(18, 194, 165, 0.12);
	color: var(--acc-700);
}
.bento__icon .icon {
	width: 22px;
	height: 22px;
}

.bento__title {
	font-size: 1.22rem;
	font-weight: 600;
	letter-spacing: -0.01em;
	color: var(--ink-950);
}

.bento__desc {
	font-size: 0.95rem;
	line-height: 1.6;
	color: var(--muted);
}

.bento__more {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	margin-top: auto;
	padding-top: 0.9rem;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--acc-700);
}
.bento__more .icon {
	width: 16px;
	height: 16px;
	transition: transform 0.3s var(--ease);
}
.bento__cell:hover .bento__more .icon {
	transform: translateX(4px);
}

/* Istaknuta prva i posljednja ćelija */
.bento__cell:first-child {
	background: var(--ink-950);
	background-image: radial-gradient(480px 260px at 90% -20%, rgba(18, 194, 165, 0.2), transparent 70%);
	border-color: var(--ink-800);
}
.bento__cell:first-child .bento__title {
	color: #fff;
	font-size: 1.45rem;
}
.bento__cell:first-child .bento__desc {
	color: rgba(255, 255, 255, 0.66);
	font-size: 1rem;
}
.bento__cell:first-child .bento__icon {
	background: var(--acc-500);
	color: var(--ink-950);
}
.bento__cell:first-child .bento__more {
	color: var(--acc-300);
}

.bento__cell:nth-child(6) {
	background: var(--paper-2);
}

.bento__cell:last-child {
	background: #DEF2EC;
	border-color: #C3E5DB;
}

@media (min-width: 768px) {
	.bento {
		grid-template-columns: repeat(6, 1fr);
	}
	.bento__cell {
		grid-column: span 3;
	}
	.bento__cell:first-child {
		grid-column: span 6;
	}
	.bento__cell:last-child {
		grid-column: span 6;
	}
}

@media (min-width: 1100px) {
	.bento__cell {
		grid-column: span 2;
	}
	.bento__cell:first-child {
		grid-column: span 4;
	}
	.bento__cell:last-child {
		grid-column: span 2;
	}
}

/* ---------- Proces ---------- */

.pline {
	display: grid;
	gap: 2.25rem;
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: koraci;
}

.pline__step {
	position: relative;
	padding-top: 1.5rem;
	border-top: 2px solid var(--line);
}

.pline__num {
	display: block;
	font-family: var(--f-display);
	font-weight: 800;
	font-size: 2.4rem;
	line-height: 1;
	letter-spacing: -0.02em;
	color: var(--acc-500);
}

.pline__title {
	margin-top: 0.7rem;
	font-size: 1.14rem;
	font-weight: 600;
	color: var(--ink-950);
}

.pline__desc {
	margin-top: 0.45rem;
	font-size: 0.93rem;
	line-height: 1.62;
	color: var(--muted);
}

@media (min-width: 768px) {
	.pline {
		grid-template-columns: repeat(2, 1fr);
		gap: 2.5rem 2rem;
	}
}

@media (min-width: 1100px) {
	.pline {
		grid-template-columns: repeat(5, 1fr);
		gap: 2rem 1.75rem;
	}
}

/* ---------- Zašto mi ---------- */

.why__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.25rem 2.5rem;
}

.why__item {
	padding-top: 1.4rem;
	border-top: 1px solid var(--line);
}

.why__check {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	margin-bottom: 0.9rem;
	border-radius: var(--r-pill);
	background: rgba(18, 194, 165, 0.13);
	color: var(--acc-700);
}
.why__check .icon {
	width: 17px;
	height: 17px;
}

.why__title {
	font-size: 1.14rem;
	font-weight: 600;
	color: var(--ink-950);
}

.why__desc {
	margin-top: 0.45rem;
	font-size: 0.95rem;
	line-height: 1.62;
	color: var(--muted);
}

@media (min-width: 768px) {
	.why__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1100px) {
	.why__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* ---------- Chipovi (industrije, filteri, 404) ---------- */

.chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.chip {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	min-height: 44px;
	padding: 0.6rem 1.25rem;
	border: 1.5px solid var(--line);
	border-radius: var(--r-pill);
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--text);
	transition: border-color 0.3s var(--ease), color 0.3s var(--ease), background-color 0.3s var(--ease);
}
.chip .icon {
	width: 15px;
	height: 15px;
	color: var(--acc-600);
	opacity: 0;
	transform: translate(-3px, 3px);
	transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.chip:hover {
	border-color: var(--acc-600);
	color: var(--acc-700);
}
.chip:hover .icon {
	opacity: 1;
	transform: none;
}

.chip--on {
	background: var(--ink-950);
	border-color: var(--ink-950);
	color: #fff;
	pointer-events: none;
}

/* Chip na tamnoj podlozi */
.section--dark .chip,
.phero .chip {
	border-color: rgba(255, 255, 255, 0.2);
	color: rgba(255, 255, 255, 0.85);
}
.section--dark .chip .icon,
.phero .chip .icon {
	color: var(--acc-300);
}
.section--dark .chip:hover,
.phero .chip:hover {
	border-color: var(--acc-400);
	background: rgba(255, 255, 255, 0.05);
	color: var(--acc-300);
}

/* ---------- Lokacije ---------- */

.loc-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
}

.loc {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	min-height: 64px;
	padding: 1rem 1.3rem;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--r-card);
	transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.loc > .icon {
	width: 20px;
	height: 20px;
	color: var(--acc-600);
}
.loc__name {
	font-weight: 600;
	font-size: 1rem;
	color: var(--ink-950);
}
.loc__arrow {
	width: 17px;
	height: 17px;
	margin-left: auto;
	color: var(--muted);
	transition: transform 0.3s var(--ease), color 0.3s var(--ease);
}
.loc:hover {
	transform: translateY(-2px);
	border-color: var(--acc-500);
}
.loc:hover .loc__arrow {
	transform: translateX(4px);
	color: var(--acc-600);
}

@media (min-width: 768px) {
	.loc-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1100px) {
	.loc-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* ---------- Cjenik teaser ---------- */

.plist {
	max-width: 880px;
}

.plist__row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.5rem 2.5rem;
	padding-block: 1.6rem;
	border-top: 1px solid var(--line);
}
.plist__row:first-child {
	border-top: 0;
	padding-top: 0;
}

.plist__name {
	font-size: 1.22rem;
	font-weight: 600;
	letter-spacing: -0.01em;
	color: var(--ink-950);
}

.plist__desc {
	margin-top: 0.35rem;
	font-size: 0.95rem;
	color: var(--muted);
	max-width: 52ch;
}

.plist__price {
	font-family: var(--f-display);
	font-weight: 800;
	font-size: 1.45rem;
	letter-spacing: -0.02em;
	white-space: nowrap;
	color: var(--ink-950);
}

@media (min-width: 768px) {
	.plist__row {
		grid-template-columns: 1fr auto;
		align-items: center;
	}
}

/* ---------- Deep (editorial longform) ---------- */

.section__title--deep {
	max-width: 720px;
	margin-bottom: clamp(2rem, 4vw, 3rem);
}

.deep__row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem 4rem;
	padding-block: clamp(2rem, 4vw, 2.75rem);
	border-top: 1px solid var(--line);
}

.deep__h {
	font-size: 1.4rem;
	font-weight: 600;
	letter-spacing: -0.01em;
	color: var(--ink-950);
}

.deep__body p + p,
.deep__body p + ul,
.deep__body ul + p {
	margin-top: 1rem;
}

@media (min-width: 1100px) {
	.deep__row {
		grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
	}
	.deep__h {
		position: sticky;
		top: calc(var(--head-h) + 1.5rem);
		align-self: start;
	}
}

/* ---------- Final CTA / pre-footer CTA ---------- */

.final-cta,
.prefoot {
	background: var(--ink-950);
	background-image: radial-gradient(900px 420px at 50% -20%, rgba(18, 194, 165, 0.16), transparent 65%);
	color: #fff;
}

.final-cta__in {
	padding-block: var(--sec);
	text-align: center;
}

.final-cta__title {
	font-weight: 800;
	font-size: clamp(2.1rem, 4.8vw, 3.4rem);
	line-height: 1.05;
	letter-spacing: -0.02em;
	max-width: 20ch;
	margin-inline: auto;
}

.final-cta__sub {
	margin-top: 1.1rem;
	font-size: 1.08rem;
	color: rgba(255, 255, 255, 0.68);
	max-width: 52ch;
	margin-inline: auto;
}

.final-cta__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.9rem;
	margin-top: 2.25rem;
}

.prefoot {
	border-top: 1px solid var(--line-d);
}

.prefoot__in {
	display: grid;
	gap: 2rem;
	padding-block: clamp(3.5rem, 7vw, 5.5rem);
}

.prefoot__title {
	font-weight: 800;
	font-size: clamp(1.7rem, 3.6vw, 2.5rem);
	line-height: 1.12;
	letter-spacing: -0.015em;
}

.prefoot__sub {
	margin-top: 0.9rem;
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.65);
	max-width: 52ch;
}

.prefoot__actions {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
	align-self: center;
}

@media (min-width: 1100px) {
	.prefoot__in {
		grid-template-columns: minmax(0, 1.4fr) auto;
		gap: 4rem;
	}
	.prefoot__actions {
		flex-direction: row;
		flex-wrap: wrap;
	}
}

/* ---------- Page hero (podstranice) ---------- */

.phero {
	position: relative;
	background: var(--ink-950);
	background-image: radial-gradient(900px 460px at 85% -15%, rgba(18, 194, 165, 0.13), transparent 65%);
	color: #fff;
	overflow: hidden;
}

.phero__deco {
	position: absolute;
	inset: 0 0 0 auto;
	width: min(52vw, 640px);
	pointer-events: none;
}
.phero__deco svg {
	width: 100%;
	height: 100%;
}

.phero__in {
	position: relative;
	padding-block: clamp(2.75rem, 6vw, 4.5rem);
}

.crumbs ol {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
	margin: 0 0 1.4rem;
	padding: 0;
	list-style: none;
	font-size: 0.84rem;
	color: rgba(255, 255, 255, 0.55);
}
.crumbs li + li::before {
	content: "/";
	margin-right: 0.35rem;
	color: rgba(255, 255, 255, 0.3);
}
.crumbs a {
	color: rgba(255, 255, 255, 0.7);
	transition: color 0.25s var(--ease);
}
.crumbs a:hover {
	color: var(--acc-300);
}

.phero__title {
	font-weight: 800;
	font-size: clamp(2.1rem, 5vw, 3.4rem);
	line-height: 1.05;
	letter-spacing: -0.02em;
	max-width: 22ch;
}

.phero__lead {
	margin-top: 1.2rem;
	font-size: 1.12rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.7);
	max-width: 58ch;
}

.phero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	margin-top: 1.9rem;
}

.post-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.6rem 1.1rem;
	margin-bottom: 1.3rem;
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.6);
}

.post-meta__cat {
	display: inline-flex;
	padding: 0.32rem 0.9rem;
	background: rgba(18, 194, 165, 0.15);
	border-radius: var(--r-pill);
	font-weight: 600;
	font-size: 0.8rem;
	color: var(--acc-300);
	transition: background-color 0.25s var(--ease);
}
.post-meta__cat:hover {
	background: rgba(18, 194, 165, 0.28);
}

.post-meta__read {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
}
.post-meta__read .icon {
	width: 15px;
	height: 15px;
	color: var(--acc-400);
}

/* ---------- Tijelo stranice / entry ---------- */

.page-body {
	padding-block: clamp(3rem, 6vw, 5rem);
}

.entry {
	width: min(100%, 960px);
	margin-inline: auto;
	font-size: 1.0625rem;
	line-height: 1.7;
}

/* Tekst teče na 740px, komponente se šire do 960px */
.entry > p,
.entry > h2,
.entry > h3,
.entry > h4,
.entry > ul,
.entry > ol,
.entry > blockquote,
.entry > .toc,
.entry > .box,
.entry > .faq,
.entry > .steps,
.entry > .checks {
	max-width: 740px;
	margin-inline: auto;
}

.entry > * + * {
	margin-top: 1.15rem;
}

.entry h2 {
	margin-top: 3rem;
	font-weight: 800;
	font-size: clamp(1.55rem, 3vw, 2.05rem);
	line-height: 1.15;
	letter-spacing: -0.015em;
	color: var(--ink-950);
	scroll-margin-top: calc(var(--head-h) + 1.5rem);
}

.entry h3 {
	margin-top: 2.25rem;
	font-size: 1.28rem;
	font-weight: 600;
	color: var(--ink-950);
	scroll-margin-top: calc(var(--head-h) + 1.5rem);
}

.entry h4 {
	margin-top: 1.75rem;
	font-size: 1.08rem;
	font-weight: 600;
	color: var(--ink-950);
}

.entry a {
	color: var(--acc-700);
	font-weight: 500;
	text-decoration: underline;
	text-decoration-color: rgba(11, 156, 133, 0.35);
	text-underline-offset: 3px;
	transition: color 0.25s var(--ease), text-decoration-color 0.25s var(--ease);
}
.entry a:hover {
	color: var(--acc-600);
	text-decoration-color: var(--acc-600);
}

.entry ul,
.entry ol {
	padding-left: 1.35rem;
}
.entry li {
	margin-block: 0.45rem;
}
.entry li::marker {
	color: var(--acc-600);
	font-weight: 600;
}

.entry strong {
	font-weight: 600;
	color: var(--ink-950);
}

.entry blockquote {
	position: relative;
	padding: 1.5rem 1.6rem 1.5rem 3.4rem;
	background: var(--paper-2);
	border-radius: var(--r-card);
	font-size: 1.1rem;
	color: var(--ink-950);
}
.entry blockquote::before {
	content: "\201E";
	position: absolute;
	left: 1.1rem;
	top: 0.4rem;
	font-family: var(--f-display);
	font-weight: 800;
	font-size: 2.6rem;
	line-height: 1;
	color: var(--acc-500);
}

.entry img {
	border-radius: var(--r-card);
}

/* ---------- Komponente sadržaja (writing-rules) ---------- */

/* TOC */
.toc {
	margin-block: 2.25rem;
	padding: 1.5rem 1.6rem;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--r-card);
}
.toc__label {
	margin: 0 0 0.7rem;
	font-family: var(--f-display);
	font-weight: 600;
	font-size: 1.02rem;
	color: var(--ink-950);
}
.toc ol {
	margin: 0;
	padding-left: 1.3rem;
}
.toc li {
	margin-block: 0.35rem;
}
.toc li::marker {
	color: var(--acc-600);
	font-weight: 600;
	font-size: 0.9rem;
}
.toc a {
	color: var(--muted);
	font-weight: 500;
	text-decoration: none;
	transition: color 0.25s var(--ease);
}
.toc a:hover,
.toc a.is-on {
	color: var(--acc-700);
}

/* CTA traka */
.cta-band {
	display: grid;
	gap: 1.5rem;
	margin-block: 2.75rem;
	padding: clamp(1.75rem, 4vw, 2.5rem);
	background: var(--ink-950);
	background-image: radial-gradient(520px 260px at 88% -30%, rgba(18, 194, 165, 0.2), transparent 70%);
	border-radius: var(--r-card);
	color: #fff;
}
.cta-band__title {
	margin: 0;
	font-family: var(--f-display);
	font-weight: 700;
	font-size: 1.4rem;
	line-height: 1.2;
	letter-spacing: -0.01em;
	color: #fff;
}
.cta-band__text p {
	color: rgba(255, 255, 255, 0.7);
}
.cta-band__text p + p,
.cta-band__text .cta-band__title + p {
	margin-top: 0.5rem;
}
.cta-band__actions {
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
	align-self: center;
}
.entry .cta-band a.btn {
	text-decoration: none;
	color: var(--ink-950);
	font-weight: 600;
}
.entry .cta-band a.btn--ghost,
.entry .cta-band a.btn--ghost-dark {
	color: #fff;
}
.entry .cta-band a.btn--ghost:hover,
.entry .cta-band a.btn--ghost-dark:hover {
	color: var(--acc-300);
}

@media (min-width: 768px) {
	.cta-band {
		grid-template-columns: minmax(0, 1.5fr) auto;
		gap: 2.5rem;
	}
	.cta-band__actions {
		flex-direction: row;
		flex-wrap: wrap;
	}
}

/* Checklist */
.checks {
	margin-block: 1.5rem;
	padding: 0 !important;
	list-style: none;
}
.checks li {
	position: relative;
	margin-block: 0.65rem;
	padding-left: 2.15rem;
}
.checks li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.18rem;
	width: 22px;
	height: 22px;
	border-radius: var(--r-pill);
	background-color: rgba(18, 194, 165, 0.14);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23077A66' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12.5 4.5 4.5L19 7'/%3E%3C/svg%3E");
	background-size: 12px;
	background-position: center;
	background-repeat: no-repeat;
}

/* Info kutije */
.box {
	margin-block: 1.75rem;
	padding: 1.3rem 1.5rem;
	border-radius: var(--r-card);
	border: 1px solid;
	font-size: 1rem;
}
.box p {
	margin: 0;
}
.box p + p {
	margin-top: 0.6rem;
}
.box--tip {
	background: #E6F5F0;
	border-color: #C4E6DB;
}
.box--tip strong {
	color: var(--acc-700);
}
.box--warn {
	background: #FBF1DE;
	border-color: #EDDCB4;
}
.box--warn strong {
	color: #8A5D0D;
}
.box--note {
	background: #EBF1F3;
	border-color: #D3DFE4;
}
.box--note strong {
	color: #3E5561;
}

/* Tablica */
.tbl-wrap {
	margin-block: 2.25rem;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	border: 1px solid var(--line);
	border-radius: var(--r-card);
	background: var(--card);
}
.tbl {
	width: 100%;
	min-width: 560px;
	border-collapse: collapse;
	font-size: 0.97rem;
}
.tbl th {
	padding: 0.9rem 1.15rem;
	background: var(--ink-950);
	color: #fff;
	font-weight: 600;
	font-size: 0.88rem;
	text-align: left;
	white-space: nowrap;
}
.tbl td {
	padding: 0.85rem 1.15rem;
	border-top: 1px solid var(--line);
	vertical-align: top;
}
.tbl tbody tr:nth-child(even) {
	background: rgba(234, 240, 238, 0.55);
}
.tbl tbody tr {
	transition: background-color 0.2s var(--ease);
}
.tbl tbody tr:hover {
	background: rgba(18, 194, 165, 0.07);
}

/* Koraci procesa */
.steps {
	margin-block: 2.25rem;
	padding: 0 !important;
	list-style: none;
	counter-reset: zwstep;
}
.steps > li {
	position: relative;
	padding-left: 4rem;
	padding-bottom: 2rem;
}
.steps > li:last-child {
	padding-bottom: 0;
}
.steps > li::before {
	counter-increment: zwstep;
	content: counter(zwstep);
	position: absolute;
	left: 0;
	top: -0.2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: var(--r-pill);
	background: var(--card);
	border: 1.5px solid var(--acc-500);
	font-family: var(--f-display);
	font-weight: 700;
	font-size: 1.05rem;
	color: var(--acc-700);
}
.steps > li::after {
	content: "";
	position: absolute;
	left: 20px;
	top: 46px;
	bottom: 6px;
	width: 1.5px;
	background: var(--line);
}
.steps > li:last-child::after {
	display: none;
}
.steps h3 {
	margin: 0 0 0.4rem !important;
	font-size: 1.16rem;
}
.steps p {
	color: var(--muted);
	font-size: 0.99rem;
}

/* FAQ */
.faq {
	margin-block: 2.25rem;
	border: 1px solid var(--line);
	border-radius: var(--r-card);
	background: var(--card);
	overflow: hidden;
}
.faq__item + .faq__item {
	border-top: 1px solid var(--line);
}
.faq__item summary {
	position: relative;
	padding: 1.2rem 3.4rem 1.2rem 1.5rem;
	font-family: var(--f-display);
	font-weight: 600;
	font-size: 1.04rem;
	line-height: 1.35;
	color: var(--ink-950);
	cursor: pointer;
	list-style: none;
	transition: color 0.25s var(--ease);
}
.faq__item summary::-webkit-details-marker {
	display: none;
}
.faq__item summary:hover {
	color: var(--acc-700);
}
.faq__item summary::before,
.faq__item summary::after {
	content: "";
	position: absolute;
	right: 1.5rem;
	top: 50%;
	width: 15px;
	height: 2px;
	border-radius: 2px;
	background: var(--acc-600);
	transition: transform 0.35s var(--ease);
}
.faq__item summary::after {
	transform: rotate(90deg);
}
.faq__item[open] summary::after {
	transform: rotate(0deg);
}
.faq__a {
	padding: 0 1.5rem 1.3rem;
	color: var(--muted);
	font-size: 0.99rem;
	line-height: 1.65;
}
.faq__a p + p {
	margin-top: 0.7rem;
}

/* Stat-row (u sadržaju) */
.stat-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 14px;
	margin-block: 2.25rem;
}
.stat {
	padding: 1.4rem 1.2rem;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--r-card);
	text-align: center;
}
.stat__n {
	display: block;
	font-family: var(--f-display);
	font-weight: 800;
	font-size: 1.85rem;
	letter-spacing: -0.02em;
	line-height: 1.1;
	color: var(--ink-950);
}
.stat__l {
	display: block;
	margin-top: 0.35rem;
	font-size: 0.86rem;
	color: var(--muted);
}

/* Kartice (hub stranice) */
.cards {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
	margin-block: 2.25rem;
}
.entry .cards .card {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	padding: 1.6rem;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--r-card);
	text-decoration: none;
	color: var(--text);
	font-weight: 400;
	transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.entry .cards .card:hover {
	transform: translateY(-3px);
	border-color: var(--acc-500);
	box-shadow: 0 14px 36px rgba(7, 21, 24, 0.08);
}
.card__t {
	margin: 0;
	font-size: 1.18rem;
	font-weight: 600;
	letter-spacing: -0.01em;
	color: var(--ink-950);
}
.entry .cards .card p {
	font-size: 0.94rem;
	color: var(--muted);
	line-height: 1.6;
}
.card__more {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	margin-top: auto;
	padding-top: 0.7rem;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--acc-700);
}
.card__more::after {
	content: "→";
	transition: transform 0.3s var(--ease);
}
.entry .cards .card:hover .card__more::after {
	transform: translateX(4px);
}

@media (min-width: 768px) {
	.cards {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Povezano */
.related {
	margin-block: 3rem 1rem;
	padding: clamp(1.6rem, 4vw, 2.25rem);
	background: var(--paper-2);
	border-radius: var(--r-card);
}
.related h2 {
	margin: 0 0 1.1rem !important;
	font-size: 1.4rem !important;
}
.related__list {
	margin: 0;
	padding: 0 !important;
	list-style: none;
}
.related__list li {
	margin: 0;
	padding-block: 0.75rem;
	font-size: 0.98rem;
	color: var(--muted);
}
.related__list li + li {
	border-top: 1px solid var(--line);
}
.related__list a {
	font-weight: 600;
	color: var(--ink-950);
	text-decoration-color: rgba(11, 156, 133, 0.35);
}
.related__list a:hover {
	color: var(--acc-700);
}

/* ---------- Blog kartice ---------- */

.pgrid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
}

.pcard {
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
	padding: 1.7rem;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--r-card);
	transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.pcard:hover {
	transform: translateY(-3px);
	border-color: var(--acc-500);
	box-shadow: 0 14px 36px rgba(7, 21, 24, 0.08);
}

.pcard__media {
	display: block;
	margin: -1.7rem -1.7rem 0.4rem;
	border-radius: var(--r-card) var(--r-card) 0 0;
	overflow: hidden;
	aspect-ratio: 1200 / 630;
	background: var(--ink-950);
}
.pcard__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s var(--ease);
}
.pcard:hover .pcard__img {
	transform: scale(1.03);
}

.pcard__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem 0.9rem;
	font-size: 0.84rem;
	color: var(--muted);
}

.pcard__cat {
	display: inline-flex;
	padding: 0.28rem 0.8rem;
	background: rgba(18, 194, 165, 0.12);
	border-radius: var(--r-pill);
	font-weight: 600;
	font-size: 0.78rem;
	color: var(--acc-700);
	transition: background-color 0.25s var(--ease);
}
.pcard__cat:hover {
	background: rgba(18, 194, 165, 0.24);
}

.pcard__title {
	font-size: 1.24rem;
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: -0.01em;
}
.pcard__title a {
	color: var(--ink-950);
	transition: color 0.25s var(--ease);
}
.pcard__title a:hover {
	color: var(--acc-700);
}

.pcard__excerpt {
	font-size: 0.95rem;
	line-height: 1.6;
	color: var(--muted);
}

.pcard__more {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	margin-top: auto;
	padding-top: 0.7rem;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--acc-700);
}
.pcard__more .icon {
	width: 16px;
	height: 16px;
	transition: transform 0.3s var(--ease);
}
.pcard:hover .pcard__more .icon {
	transform: translateX(4px);
}

/* Istaknuti najnoviji članak */
.pcard--feat {
	grid-column: 1 / -1;
	padding: clamp(1.8rem, 4vw, 2.75rem);
	background: var(--ink-950);
	background-image: radial-gradient(560px 300px at 90% -25%, rgba(18, 194, 165, 0.18), transparent 70%);
	border-color: var(--ink-800);
}
.pcard--feat .pcard__title {
	font-size: clamp(1.5rem, 3vw, 2.1rem);
	max-width: 26ch;
}
.pcard--feat .pcard__title a {
	color: #fff;
}
.pcard--feat .pcard__title a:hover {
	color: var(--acc-300);
}
.pcard--feat .pcard__excerpt {
	color: rgba(255, 255, 255, 0.66);
	font-size: 1.02rem;
	max-width: 64ch;
}
.pcard--feat .pcard__meta {
	color: rgba(255, 255, 255, 0.55);
}
.pcard--feat .pcard__cat {
	background: var(--acc-500);
	color: var(--ink-950);
}
.pcard--feat .pcard__more {
	color: var(--acc-300);
}
.pcard--feat:hover {
	border-color: var(--acc-500);
}

@media (min-width: 768px) {
	.pgrid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1100px) {
	.pgrid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.cat-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
	margin-bottom: clamp(2rem, 4vw, 3rem);
}

/* Paginacija */
.pagination {
	margin-top: clamp(2.5rem, 5vw, 3.5rem);
}
.pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
}
.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	min-height: 44px;
	padding: 0.4rem 0.9rem;
	border: 1.5px solid var(--line);
	border-radius: var(--r-pill);
	font-weight: 600;
	font-size: 0.92rem;
	color: var(--text);
	transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.pagination a.page-numbers:hover {
	border-color: var(--acc-600);
	color: var(--acc-700);
}
.pagination .page-numbers.current {
	background: var(--ink-950);
	border-color: var(--ink-950);
	color: #fff;
}
.pagination .page-numbers.dots {
	border: 0;
}

.empty-note {
	max-width: 480px;
	margin-inline: auto;
	padding: 3rem 1rem;
	text-align: center;
}
.empty-note p {
	margin-bottom: 1.5rem;
	color: var(--muted);
}

/* ---------- Kontakt stranica ---------- */

.contact-cards {
	padding-block: clamp(3rem, 6vw, 4.5rem) 0;
}

.ccards {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
}

.ccard {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	padding: 2rem 1.8rem;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--r-card);
	transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
a.ccard:hover {
	transform: translateY(-3px);
	border-color: var(--acc-500);
	box-shadow: 0 14px 36px rgba(7, 21, 24, 0.08);
}

.ccard__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-bottom: 0.7rem;
	border-radius: 14px;
	background: rgba(18, 194, 165, 0.12);
	color: var(--acc-700);
}
.ccard__icon .icon {
	width: 23px;
	height: 23px;
}
.ccard--wa .ccard__icon {
	background: rgba(37, 211, 102, 0.16);
	color: #12813E;
}

.ccard__title {
	font-size: 1.02rem;
	font-weight: 600;
	color: var(--muted);
}

.ccard__big {
	font-family: var(--f-display);
	font-weight: 700;
	font-size: 1.45rem;
	letter-spacing: -0.015em;
	color: var(--ink-950);
}

.ccard__desc {
	margin-top: 0.35rem;
	font-size: 0.93rem;
	line-height: 1.6;
	color: var(--muted);
}

@media (min-width: 768px) {
	.ccards {
		grid-template-columns: repeat(3, 1fr);
	}
}

.contact-form-sec {
	padding-block: clamp(3rem, 6vw, 4.5rem);
}

/* Forma: dvostruki okvir */
.form-shell {
	padding: 10px;
	background: var(--paper-2);
	border-radius: calc(var(--r-card) + 10px);
}
.form-shell__in {
	padding: clamp(1.75rem, 4.5vw, 2.75rem);
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--r-card);
}

.form-shell__title {
	font-size: clamp(1.5rem, 3vw, 1.9rem);
	font-weight: 800;
	letter-spacing: -0.015em;
	color: var(--ink-950);
}
.form-shell__sub {
	margin-top: 0.6rem;
	margin-bottom: 1.8rem;
	color: var(--muted);
	font-size: 0.98rem;
}

.form-note {
	display: flex;
	gap: 0.8rem;
	align-items: flex-start;
	margin-bottom: 1.5rem;
	padding: 1rem 1.2rem;
	border-radius: var(--r-sm);
	font-size: 0.95rem;
}
.form-note .icon {
	margin-top: 0.15rem;
}
.form-note--ok {
	background: #E6F5F0;
	border: 1px solid #C4E6DB;
}
.form-note--ok .icon {
	color: var(--acc-700);
}
.form-note--err {
	background: #FBE9E4;
	border: 1px solid #F0CDBF;
}
.form-note--err .icon {
	color: #A8431F;
}

.cform__hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.cform__row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.1rem;
}

@media (min-width: 768px) {
	.cform__row {
		grid-template-columns: 1fr 1fr;
	}
}

.cform__field {
	margin-bottom: 1.1rem;
}

.cform__field label {
	display: block;
	margin-bottom: 0.4rem;
	font-weight: 600;
	font-size: 0.92rem;
	color: var(--ink-950);
}

.req {
	color: var(--acc-700);
}

.cform__field input,
.cform__field textarea {
	width: 100%;
	padding: 0.85rem 1rem;
	background: var(--paper);
	border: 1.5px solid var(--line);
	border-radius: var(--r-sm);
	font: inherit;
	font-size: 1rem;
	color: var(--text);
	transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.cform__field input::placeholder,
.cform__field textarea::placeholder {
	color: #7E9298;
}
.cform__field input:focus,
.cform__field textarea:focus {
	outline: none;
	border-color: var(--acc-600);
	box-shadow: 0 0 0 3px rgba(18, 194, 165, 0.18);
}
.cform__field textarea {
	resize: vertical;
	min-height: 140px;
}

.cform__hint {
	display: block;
	margin-top: 0.35rem;
	font-size: 0.82rem;
	color: var(--muted);
}

.cform__submit {
	margin-top: 0.5rem;
}

.cform__privacy {
	margin-top: 1rem;
	font-size: 0.84rem;
	color: var(--muted);
}
.cform__privacy a {
	color: var(--acc-700);
	text-decoration: underline;
	text-underline-offset: 2px;
}

/* ---------- Povezani članci (single) ---------- */

.related-posts .section__title {
	margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

/* ---------- 404 ---------- */

.phero--404 .phero__in {
	padding-block: clamp(4rem, 9vw, 7rem);
}

.err-code {
	font-family: var(--f-display);
	font-weight: 800;
	font-size: clamp(4.5rem, 16vw, 8.5rem);
	line-height: 0.95;
	letter-spacing: -0.03em;
	color: transparent;
	-webkit-text-stroke: 2px var(--acc-500);
}

.err-search {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
	max-width: 540px;
	margin-top: 2rem;
}
.err-search input {
	flex: 1 1 240px;
	min-height: 46px;
	padding: 0.7rem 1.15rem;
	border-radius: var(--r-pill);
	border: 1.5px solid rgba(255, 255, 255, 0.22);
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
	font: inherit;
	transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.err-search input::placeholder {
	color: rgba(255, 255, 255, 0.45);
}
.err-search input:focus {
	outline: none;
	border-color: var(--acc-400);
	box-shadow: 0 0 0 3px rgba(18, 194, 165, 0.22);
}

/* Svijetli kontekst pretrage (index fallback) */
.blog-list .err-search input {
	border-color: var(--line);
	background: var(--card);
	color: var(--text);
}
.blog-list .err-search input::placeholder {
	color: #7E9298;
}
.blog-list .err-search {
	margin-inline: auto;
}

.err-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
	margin-top: 2.25rem;
	padding: 0;
	list-style: none;
}

/* ---------- Footer ---------- */

.site-foot {
	background: var(--ink-950);
	color: #fff;
	padding-top: clamp(3.5rem, 7vw, 5.5rem);
}

.site-foot__brand {
	max-width: 460px;
	margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.site-foot__tag {
	margin-top: 1.1rem;
	font-size: 0.95rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.6);
}

.site-foot__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.site-foot__title {
	margin-bottom: 1rem;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.45);
}
.site-foot__title--second {
	margin-top: 1.9rem;
}

.site-foot__col ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.site-foot__col li {
	margin-block: 0.15rem;
}
.site-foot__col li a {
	display: inline-block;
	padding-block: 0.22rem;
	font-size: 0.93rem;
	color: rgba(255, 255, 255, 0.74);
	transition: color 0.25s var(--ease);
}
.site-foot__col li a:hover {
	color: var(--acc-300);
}

.site-foot__phone {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	margin-bottom: 1.1rem;
	font-family: var(--f-display);
	font-weight: 700;
	font-size: 1.35rem;
	letter-spacing: -0.01em;
	color: #fff;
	transition: color 0.25s var(--ease);
}
.site-foot__phone .icon {
	width: 20px;
	height: 20px;
	color: var(--acc-400);
}
.site-foot__phone:hover {
	color: var(--acc-300);
}

.site-foot__col--contact .btn--wa {
	align-self: flex-start;
	margin-bottom: 1.3rem;
}

.site-foot__area,
.site-foot__hours {
	display: flex;
	gap: 0.6rem;
	margin-top: 0.6rem;
	font-size: 0.88rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.58);
}
.site-foot__area .icon,
.site-foot__hours .icon {
	width: 17px;
	height: 17px;
	margin-top: 0.12rem;
	color: var(--acc-400);
}

.site-foot__col--contact {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.site-foot__bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding-block: 1.5rem;
	border-top: 1px solid var(--line-d);
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.5);
}
.site-foot__bottom a {
	color: rgba(255, 255, 255, 0.65);
	transition: color 0.25s var(--ease);
}
.site-foot__bottom a:hover {
	color: var(--acc-300);
}

@media (min-width: 768px) {
	.site-foot__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1100px) {
	.site-foot__grid {
		grid-template-columns: 1.1fr 1.1fr 1fr 1.2fr;
		gap: 3rem;
	}
}
