/*
 * Redizajn "24" - marketing sekcija, 6 strana (design_handoff_24_marketing).
 * Zamenjuje vizuelni model 18a/18b.
 *
 * Dve stvari nauceve na ranijim stranama, primenjene svuda ovde:
 *  - naslovi idu sa #vh-mk24 prefiksom + font-style/letter-spacing reset, jer
 *    legacy style.css ima #body h1..h6 { italic; letter-spacing: 3px } sa ID
 *    specificnoscu i inace gazi klase;
 *  - svi grid/flex kontejneri koriste minmax(0,...) / min-width: 0, jer je golo
 *    1fr zapravo minmax(AUTO,1fr) i pusta dete da probije stranu.
 */

.vh-mk24 { background: #fff; }
.vh-mk24 .vh-container { max-width: 1180px; }
/* .vh-btn--primary u redesign-2a.css ima padding: 0 24px bez vertikalnog. */
.vh-mk24 .vh-btn {
	min-height: 44px;
	padding: 12px 22px;
	max-width: 100%;
	white-space: normal;
	text-align: center;
	line-height: 1.35;
}
.vh-mk24 .vh-btn--outline {
	background: #fff;
	border: 1.5px solid #F49AC1;
	color: #DF76A8 !important;
	border-radius: 8px;
}
.vh-mk24 .vh-btn--outline:hover { background: #FBF1F4; }

#vh-mk24 .vh-mk24__h1 { font: 600 44px/1.15 var(--vh-serif); color: #4A4145; margin: 0 0 10px; font-style: normal; letter-spacing: 0; }
#vh-mk24 .vh-mk24__h2 { font: 600 30px/1.25 var(--vh-serif); color: #4A4145; margin: 0 0 10px; font-style: normal; letter-spacing: 0; text-align: center; }
#vh-mk24 .vh-mk24__h2--l { text-align: left; }
.vh-mk24__sub { font: 600 20px/1.35 var(--vh-serif); color: #DF76A8; margin: 0 0 16px; }
.vh-mk24__text { font: 400 14.5px/1.75 var(--vh-sans); color: #6B6266; margin: 0 0 12px; max-width: 520px; }
.vh-mk24__lead { font: 400 14px/1.7 var(--vh-sans); color: #6B6266; text-align: center; margin: 0 auto 8px; max-width: 720px; }
.vh-mk24__eyebrow { font: 600 11px/1.4 var(--vh-sans); letter-spacing: 3px; text-transform: uppercase; color: #B98CA0; margin: 0 0 8px; }
.vh-mk24__note { font: 400 12px/1.6 var(--vh-sans); color: #B98CA0; }
.vh-mk24__ico { width: 30px; height: 30px; color: #DF76A8; flex: none; }
.vh-mk24__more { text-align: center; margin-top: 26px; }
.vh-mk24__link { font: 600 12.5px/1.4 var(--vh-sans); color: #DF76A8; }

.vh-mk24__orn { display: flex; align-items: center; justify-content: center; gap: 10px; margin: 6px 0 26px; }
.vh-mk24__orn::before, .vh-mk24__orn::after { content: ""; width: 44px; height: 1px; background: #F0D3DF; }
.vh-mk24__orn span { color: #F49AC1; font-size: 13px; line-height: 1; }

/* ---------- Hero: tekst levo, foto desno 56% ---------- */
.vh-mk24__hero { position: relative; overflow: hidden; border-bottom: 1px solid #F5E4EB; }
/*
 * Fotografija se ne secka po ostroj vertikali: maska je rastapa u belo preko
 * ~18% svoje sirine, pa gradijent preko nje samo dodatno smiruje prelaz i
 * cuva citljivost teksta. Bez maske se na sirokim ekranima videla tvrda ivica.
 */
.vh-mk24__hero-pic {
	/* Levu ivicu vezujemo za sredinu, ne za 38% viewporta: .vh-container je
	   centriran, pa bi na 2000px+ tekst zavrsavao ispod fotografije. Ovako je
	   sirina fotografije ~53-54% (handoff trazi 56%), a tekst uvek ostaje levo. */
	position: absolute; inset: 0 0 0 calc(50% - 40px);
	background-size: cover; background-position: center;
	-webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.35) 9%, #000 20%);
	        mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.35) 9%, #000 20%);
}
.vh-mk24__hero-veil {
	position: absolute; inset: 0;
	background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.9) 30%, rgba(255,255,255,.45) 46%, transparent 62%);
}
/* Tekst nikada ne sme da udje pod fotografiju - i na 2000px+ ostaje levo od nje. */
.vh-mk24__hero-in > * { max-width: 520px; }
.vh-mk24__hero-in { position: relative; padding: 44px 20px 48px; } /* zadrzi bocni padding .vh-container-a */
.vh-mk24__crumbs { font: 400 12.5px/1.5 var(--vh-sans); color: #B98CA0; margin-bottom: 18px; }
.vh-mk24__crumbs a { color: #B98CA0; }
.vh-mk24__crumbs span { margin: 0 6px; }
.vh-mk24__crumbs em { font-style: normal; color: #DF76A8; }
.vh-mk24__hero-cta { margin-top: 10px; }

/* ---------- Kartice kanala (hub) ---------- */
.vh-mk24__channels { padding: 46px 0; }
.vh-mk24__cards { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.vh-mk24__card {
	display: flex; flex-direction: column; align-items: center; text-align: center;
	border: 1px solid #F5E4EB; border-radius: 14px; padding: 20px 16px 18px; background: #fff;
	color: inherit; text-decoration: none;
	transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.vh-mk24__card:hover, .vh-mk24__card:focus-visible {
	border-color: #F49AC1; box-shadow: 0 8px 24px rgba(190,120,150,.12); transform: translateY(-2px);
}
.vh-mk24__card:focus-visible { outline: 3px solid rgba(244,154,193,.35); outline-offset: 3px; }
.vh-mk24__card:hover .vh-mk24__card-btn, .vh-mk24__card:focus-visible .vh-mk24__card-btn { background: #FBF1F4; }
#vh-mk24 .vh-mk24__card-name { font: 600 15px/1.35 var(--vh-sans); color: #4A4145; margin: 12px 0 6px; font-style: normal; letter-spacing: 0; text-align: center; }
.vh-mk24__card-text { font: 400 12.5px/1.6 var(--vh-sans); color: #8A8085; margin: 0 0 14px; }
.vh-mk24__card-pic { display: block; width: 100%; height: 88px; border-radius: 10px; background: #FBF1F4 center/cover no-repeat; margin-bottom: 14px; }
.vh-mk24__card-btn { margin-top: auto; width: 100%; }
.vh-mk24__more .vh-mk24__link:hover, .vh-mk24__more .vh-mk24__link:focus-visible {
	color: #B0325F; text-decoration: underline; text-underline-offset: 3px;
}

/* ---------- Split blok (tekst + foto) ---------- */
.vh-mk24__why { background: #FEFBFC; border-top: 1px solid #F5E4EB; border-bottom: 1px solid #F5E4EB; padding: 46px 0; }
.vh-mk24__split { display: flex; gap: 40px; align-items: center; }
.vh-mk24__split-main { flex: 1 1 0; min-width: 0; }
.vh-mk24__split-pic { flex: 0 0 460px; min-width: 0; height: 300px; border-radius: 14px; background: #FBF1F4 center/cover no-repeat; }
.vh-mk24__split--rev .vh-mk24__split-pic { order: -1; }

/* ---------- Liste sa ✓ ---------- */
.vh-mk24__checks { list-style: none; margin: 16px 0 0; padding: 0; }
.vh-mk24__checks li {
	display: flex; align-items: flex-start; gap: 10px;
	font: 400 14px/1.65 var(--vh-sans); color: #4A4145; margin-bottom: 10px;
}
.vh-mk24__checks--2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 22px; }
.vh-mk24__check {
	flex: none; width: 22px; height: 22px; margin-top: 1px;
	border: 1px solid #F0D3DF; border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
}
.vh-mk24__ico--check { width: 12px; height: 12px; color: #DF76A8; }

/* ---------- Red od 5 ikonica ---------- */
.vh-mk24__where { padding: 46px 0; }
.vh-mk24__iconrow { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); }
.vh-mk24__iconcol { text-align: center; padding: 0 16px; border-right: 1px solid #F5E4EB; }
.vh-mk24__iconcol:last-child { border-right: 0; }
#vh-mk24 .vh-mk24__iconname { font: 600 13.5px/1.4 var(--vh-sans); color: #4A4145; margin: 10px 0 5px; font-style: normal; letter-spacing: 0; text-align: center; }
.vh-mk24__icontext { font: 400 12.5px/1.6 var(--vh-sans); color: #8A8085; margin: 0; }

/* ---------- Cenovnik ---------- */
.vh-mk24__pricing { padding: 46px 0; }
.vh-mk24__pricing-row { display: flex; gap: 34px; align-items: flex-start; }
.vh-mk24__pricing-table { flex: 1 1 0; min-width: 0; }
.vh-mk24__table { width: 100%; }
.vh-mk24__thead, .vh-mk24__trow { display: grid; grid-template-columns: minmax(0, 1fr) 120px 120px; gap: 12px; align-items: center; }
.vh-mk24__thead {
	font: 600 11px/1.4 var(--vh-sans); letter-spacing: .08em; text-transform: uppercase;
	color: #8A8085; padding-bottom: 10px; border-bottom: 1.5px solid #4A4145;
}
.vh-mk24__thead span:not(:first-child), .vh-mk24__tprice { text-align: right; }
.vh-mk24__trow { padding: 14px 0; border-bottom: 1px solid #F5E4EB; }
.vh-mk24__tname { display: flex; align-items: center; gap: 12px; min-width: 0; }
.vh-mk24__tname strong { display: block; font: 600 15px/1.35 var(--vh-sans); color: #4A4145; }
.vh-mk24__tname em { display: block; font: 400 12.5px/1.5 var(--vh-sans); font-style: normal; color: #B98CA0; margin-top: 2px; }
.vh-mk24__tico {
	flex: none; width: 38px; height: 38px; border: 1px solid #F0D3DF; border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
}
.vh-mk24__tico .vh-mk24__ico { width: 19px; height: 19px; }
.vh-mk24__tprice { font: 600 19px/1.2 var(--vh-serif); color: #DF76A8; }
.vh-mk24__tnote { font: 400 12.5px/1.6 var(--vh-sans); color: #8A8085; margin-top: 14px; }
.vh-mk24__actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 22px; }

/* ---------- Wireframe sajta (24b) ---------- */
.vh-mk24__wire { flex: 0 0 420px; min-width: 0; border: 1px solid #F0D3DF; border-radius: 12px; overflow: hidden; background: #fff; }
.vh-mk24__wire-bar { display: flex; gap: 6px; padding: 10px 12px; background: #FBF1F4; border-bottom: 1px solid #F0D3DF; }
.vh-mk24__wire-bar span { width: 9px; height: 9px; border-radius: 50%; background: #E8CAD8; }
.vh-mk24__wire-body { padding: 12px; }
.vh-mk24__wire-block {
	background: #DB8AAB; color: #fff; border-radius: 4px; text-align: center;
	font: 600 8.5px/1.35 var(--vh-sans); letter-spacing: .04em;
	display: flex; align-items: center; justify-content: center; padding: 6px;
}
.vh-mk24__wire-block--top { height: 54px; margin-bottom: 10px; }
.vh-mk24__wire-block--cat { height: 40px; margin: 8px 0; }
.vh-mk24__wire-block--right { height: 74px; margin-bottom: 8px; }
.vh-mk24__wire-cols { display: grid; grid-template-columns: minmax(0, 1fr) 96px; gap: 10px; }
.vh-mk24__wire-line { display: block; height: 8px; border-radius: 3px; background: #EFEAEC; margin-bottom: 7px; }

/* ---------- Poredjenje kartica (24c) ---------- */
.vh-mk24__compare { background: #FEFBFC; border-top: 1px solid #F5E4EB; padding: 46px 0; }
.vh-mk24__compare-row { display: flex; gap: 34px; align-items: center; }
.vh-mk24__compare-cards { flex: 1 1 0; min-width: 0; display: flex; align-items: center; gap: 14px; }
.vh-mk24__compare-arrow { flex: none; color: #DF76A8; font-size: 20px; }
.vh-mk24__compare-list { flex: 0 0 340px; min-width: 0; }
.vh-mk24 .vh-mk24__card--plain { flex: 1 1 0; min-width: 0; opacity: .85; filter: grayscale(1); background: #fff; }
.vh-mk24 .vh-mk24__card--boost { flex: 1.15 1 0; min-width: 0; position: relative; border: 1.5px solid #F49AC1; box-shadow: 0 10px 28px rgba(190,120,150,.16); background: #fff; }
.vh-mk24__badge {
	position: absolute; top: -10px; left: 14px;
	background: #F49AC1; color: #fff; border-radius: 100px; padding: 4px 12px;
	font: 600 9.5px/1.3 var(--vh-sans); letter-spacing: .08em; text-transform: uppercase;
}
.vh-mk24__logo--big { width: 74px !important; height: 74px !important; }
.vh-mk24__card-cta { margin-top: 10px; display: inline-flex; }

/* ---------- Sponzorisana prica (24d) ---------- */
.vh-mk24__story { padding: 46px 0; }
.vh-mk24__story-card {
	display: flex; align-items: stretch; gap: 26px;
	background: #FEFBFC; border: 1px solid #F5E4EB; border-radius: 14px; padding: 22px;
}
.vh-mk24__story-pic { flex: 0 0 300px; min-width: 0; border-radius: 12px; background: #FBF1F4 center/cover no-repeat; }
.vh-mk24__story-body { flex: 1 1 0; min-width: 0; }
.vh-mk24__story-body .vh-mk24__checks { margin-top: 0; }
.vh-mk24__story-price {
	flex: 0 0 210px; min-width: 0; border-left: 1px solid #F0D3DF; padding-left: 24px;
	display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 8px;
}
.vh-mk24__amount { font: 600 34px/1.1 var(--vh-serif); color: #DF76A8; }
.vh-mk24__amount--big { font-size: 44px; }
.vh-mk24__unit { font: 600 11px/1.3 var(--vh-sans); letter-spacing: .1em; text-transform: uppercase; color: #B98CA0; }

/* ---------- Tematske stranice (24e) ---------- */
.vh-mk24__themes { padding: 46px 0; }
.vh-mk24__themegrid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.vh-mk24__theme {
	display: flex; align-items: flex-end; justify-content: center;
	height: 220px; padding: 18px; border-radius: 14px;
	background-size: cover; background-position: center; text-decoration: none;
}
.vh-mk24__theme-name { font: 600 17px/1.3 var(--vh-serif); color: #fff; text-align: center; }
.vh-mk24__partner { background: #FEFBFC; border-top: 1px solid #F5E4EB; padding: 46px 0; }
.vh-mk24__partner-card {
	display: flex; align-items: center; gap: 26px;
	background: #fff; border: 1px solid #F0D3DF; border-radius: 14px; padding: 24px;
}
.vh-mk24__partner-list { flex: 1 1 0; min-width: 0; }
.vh-mk24__partner-list .vh-mk24__checks { margin-top: 0; }
.vh-mk24__circle {
	flex: none; width: 170px; height: 170px; border-radius: 50%; background: #FBE9F0;
	display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
}
.vh-mk24__partner-pic { flex: 0 0 260px; min-width: 0; height: 170px; border-radius: 12px; background: #FBF1F4 center/cover no-repeat; }

/* ---------- Premijum paket (24f) ---------- */
.vh-mk24__package { padding: 46px 0; }
.vh-mk24__pkg {
	display: flex; align-items: stretch; gap: 26px;
	border: 1.5px solid #F49AC1; border-radius: 14px; padding: 24px;
	box-shadow: 0 12px 32px rgba(190,120,150,.14); background: #fff;
}
.vh-mk24__pkg-pic { flex: 0 0 280px; min-width: 0; border-radius: 12px; background: #FBF1F4 center/cover no-repeat; }
.vh-mk24__pkg-body { flex: 1 1 0; min-width: 0; }
#vh-mk24 .vh-mk24__pkg-title { font: 600 24px/1.3 var(--vh-serif); color: #4A4145; margin: 0 0 6px; font-style: normal; letter-spacing: 0; }
.vh-mk24__pkg-price {
	flex: 0 0 230px; min-width: 0; border-left: 1px solid #F0D3DF; padding-left: 24px;
	display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; text-align: center;
}
.vh-mk24__ico--big { width: 40px; height: 40px; }

/* ---------- Koraci ---------- */
.vh-mk24__steps { padding: 46px 0; }
.vh-mk24__stepgrid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; text-align: center; }
.vh-mk24__step { position: relative; padding: 0 10px; }
.vh-mk24__step:not(:last-child)::after {
	content: ""; position: absolute; top: 31px; left: calc(50% + 42px); right: calc(-50% + 42px);
	border-top: 2px dashed #F0D3DF;
}
.vh-mk24__step-circle {
	position: relative; display: flex; align-items: center; justify-content: center;
	width: 62px; height: 62px; margin: 0 auto 14px;
	border: 1px solid #F0D3DF; border-radius: 50%; background: #fff;
}
.vh-mk24__step-num {
	position: absolute; top: -6px; left: -6px;
	width: 22px; height: 22px; border-radius: 50%; background: #DF76A8; color: #fff;
	display: flex; align-items: center; justify-content: center;
	font: 600 11px/1 var(--vh-sans);
}
#vh-mk24 .vh-mk24__step-name { font: 600 14px/1.4 var(--vh-sans); color: #4A4145; margin: 0 0 6px; font-style: normal; letter-spacing: 0; text-align: center; }
.vh-mk24__step-text { font: 400 12.5px/1.6 var(--vh-sans); color: #8A8085; margin: 0; }

/* ---------- CTA traka ---------- */
.vh-mk24__ctabar { background: #FBE9F0; padding: 34px 0; }
.vh-mk24__ctabar-in { display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap; }
#vh-mk24 .vh-mk24__ctabar-title { font: 600 26px/1.3 var(--vh-serif); color: #4A4145; margin: 0 0 6px; font-style: normal; letter-spacing: 0; }
.vh-mk24__ctabar-text { font: 400 14px/1.7 var(--vh-sans); color: #6B6266; margin: 0; max-width: 620px; }

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
	.vh-mk24__cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.vh-mk24__themegrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.vh-mk24__stepgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 28px; }
	.vh-mk24__step:not(:last-child)::after { display: none; }
	.vh-mk24__split, .vh-mk24__pricing-row, .vh-mk24__compare-row,
	.vh-mk24__story-card, .vh-mk24__partner-card, .vh-mk24__pkg { flex-direction: column; }
	.vh-mk24__split-pic, .vh-mk24__wire, .vh-mk24__compare-list, .vh-mk24__story-pic,
	.vh-mk24__story-price, .vh-mk24__partner-pic, .vh-mk24__pkg-pic, .vh-mk24__pkg-price {
		flex: 1 1 auto; width: 100%;
	}
	.vh-mk24__split--rev .vh-mk24__split-pic { order: 0; }
	.vh-mk24__story-price, .vh-mk24__pkg-price { border-left: 0; border-top: 1px solid #F0D3DF; padding-left: 0; padding-top: 20px; align-items: flex-start; }
	.vh-mk24__story-pic, .vh-mk24__partner-pic, .vh-mk24__pkg-pic { height: 220px; }
	#vh-mk24 .vh-mk24__h1 { font-size: 36px; }
}
@media (max-width: 767px) {
	/* hero: foto iznad teksta, bez belog gradijenta */
	/* na mobilnom je foto iznad teksta, pa nema ni maske ni preklopa */
	.vh-mk24__hero-pic {
		position: relative; inset: auto; height: 220px;
		-webkit-mask-image: none; mask-image: none;
	}
	.vh-mk24__hero-veil { display: none; }
	.vh-mk24__hero-in > *, .vh-mk24__hero-in > .vh-mk24__h1 { max-width: 100%; }
	.vh-mk24__hero-in { padding: 26px 20px 32px; }
	#vh-mk24 .vh-mk24__h1 { font-size: 30px; }
	#vh-mk24 .vh-mk24__h2, #vh-mk24 .vh-mk24__ctabar-title { font-size: 23px; }
	.vh-mk24__sub { font-size: 17px; }
	.vh-mk24__cards { grid-template-columns: minmax(0, 1fr); }
	.vh-mk24__themegrid { grid-template-columns: minmax(0, 1fr); }
	.vh-mk24__checks--2 { grid-template-columns: minmax(0, 1fr); }
	/* 5 ikonica -> 2 kolone, poslednja centrirana */
	.vh-mk24__iconrow { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 24px; }
	.vh-mk24__iconcol { border-right: 0; }
	.vh-mk24__iconcol:nth-child(odd):last-child { grid-column: 1 / -1; }
	/* cenovnik -> kartice */
	.vh-mk24__thead { display: none; }
	.vh-mk24__trow { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 8px; }
	.vh-mk24__tname { grid-column: 1 / -1; }
	.vh-mk24__tprice { text-align: left; }
	.vh-mk24__tprice::before { content: attr(data-label) " "; font: 600 10px/1.3 var(--vh-sans); color: #8A8085; text-transform: uppercase; display: block; }
	.vh-mk24__compare-cards { flex-direction: column; }
	.vh-mk24__compare-arrow { transform: rotate(90deg); }
	.vh-mk24__channels, .vh-mk24__why, .vh-mk24__where, .vh-mk24__pricing,
	.vh-mk24__compare, .vh-mk24__story, .vh-mk24__themes, .vh-mk24__partner,
	.vh-mk24__package, .vh-mk24__steps { padding: 30px 0; }
}

/*
 * 24c poredjenje: markup kartice je preuzet iz Adresara (4a) po handoff-u, ali
 * je tipografija naziva tamo vezana za #vh-adr (ID je potreban da bi pobedila
 * legacy "#body h3"). Ovde je wrapper #vh-mk24, pa se ta pravila ponavljaju.
 */
#vh-mk24 .vh-adr-card__name, #vh-mk24 .vh-adr-card__name a {
	font: 600 17px/1.3 var(--vh-sans);
	font-style: normal; letter-spacing: 0; text-transform: none;
	color: #4A4145 !important;
	padding: 0; margin: 0; text-align: left; display: inline;
}
