/* =====================================================
	 TORKE.sk — STYLE
	 Light, airy automotive B2B. Navy + gold. Slovak content.
	 ===================================================== */

/* ===== TOKENS ===== */
:root {
	--bg:        #f5f7fb;
	--bg-tint:   #edf1f7;
	--bg-card:   #ffffff;
 
	--navy-900:  #0a1628;
	--navy-800:  #0f1d33;
	--navy-700:  #142844;
	--navy-600:  #1e3a5f;
	--navy-500:  #243b5e;
	--navy-400:  #3a5a8c;
	--navy-300:  #4a6fa5;
	--navy-200:  #8aa2c4;
	--navy-100:  #c5d2e3;
	--navy-50:   #e7ecf4;

	--ink:       #0f1d33;
	--ink-soft:  #2a3a55;
	--ink-mute:  #5a6b85;
	--ink-faint: #8693ab;
	--line:      #d8dfeb;
	--line-soft: #e6ebf3;

	--gold:      #c9982e;
	--gold-bright: #d4a843;
	--gold-soft: #f3e6c2;
	--gold-glow: rgba(212, 168, 67, 0.35);

	--good:      #2f7a52;
	--good-soft: #def0e4;
	--bad:       #a13a3a;
	--bad-soft:  #f3dada;

	--radius-xs: 6px;
	--radius-sm: 10px;
	--radius-md: 14px;
	--radius-lg: 20px;
	--radius-xl: 28px;

	--shadow-sm: 0 2px 6px rgba(15, 29, 51, 0.06);
	--shadow-md: 0 8px 30px -10px rgba(15, 29, 51, 0.18);
	--shadow-lg: 0 30px 60px -30px rgba(15, 29, 51, 0.35);

	--font-display: "Barlow Condensed", "Helvetica Neue", Arial, sans-serif;
	--font-body:    "DM Sans", "Helvetica Neue", Arial, sans-serif;
	--font-mono:    "JetBrains Mono", ui-monospace, monospace;

	--nav-h: 76px;
	--ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ===== RESET / BASE ===== */
* { box-sizing: border-box; }
/* Natívny `hidden` atribút má v UA stylesheete len `display:none` (bez !important),
   takže ho akýkoľvek class selector s display:flex/block prebije. Bootstrap full
   tento rule pridáva v Reboote — keďže používame iba bootstrap-grid (bez Reboot),
   musíme ho doplniť ručne. */
[hidden] { display: none !important; }
html {
	scroll-behavior: smooth;
	overflow-x: clip;
	max-width: 100%;
}
body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 17px;
	line-height: 1.6;
	color: var(--ink);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: clip;
	max-width: 100%;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease-out); }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
h1, h2, h3, h4 {
	font-family: var(--font-display);
	font-weight: 700;
	letter-spacing: -0.005em;
	line-height: 1.04;
	margin: 0;
	text-wrap: balance;
}
p { margin: 0; text-wrap: pretty; }
ul, ol { margin: 0; padding: 0; list-style: none; }
:focus-visible {
	outline: 2px solid var(--gold-bright);
	outline-offset: 3px;
	border-radius: 4px;
}

/* ===== UTIL: BUTTONS ===== */
.btn-gold {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	background: var(--gold-bright);
	color: var(--navy-900);
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 15px;
	letter-spacing: 0.01em;
	padding: 0.85rem 1.4rem;
	border-radius: var(--radius-sm);
	transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), background .25s var(--ease-out);
	box-shadow: 0 6px 20px -8px var(--gold-glow);
	white-space: nowrap;
}
.btn-gold:hover {
	background: var(--gold);
	transform: translateY(-1px);
	box-shadow: 0 14px 28px -10px var(--gold-glow);
	color: var(--navy-900);
}
.btn-gold .bi { transition: transform .25s var(--ease-out); }
.btn-gold:hover .bi { transform: translateX(3px); }
.btn-lg-cta { padding: 1.1rem 1.8rem; font-size: 17px; border-radius: var(--radius-md); }
.btn-block { width: 100%; }

.btn-outline-gold {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.8rem 1.2rem;
	border: 1.5px solid var(--gold);
	color: var(--navy-800);
	font-weight: 600;
	border-radius: var(--radius-sm);
	font-size: 14.5px;
	transition: all .25s var(--ease-out);
}
.btn-outline-gold:hover {
	background: var(--gold);
	color: var(--navy-900);
}
.btn-outline-gold .bi { transition: transform .25s var(--ease-out); }
.btn-outline-gold:hover .bi { transform: translateX(3px); }

.btn-ghost {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	padding: 1rem 1.3rem;
	color: rgba(255,255,255,0.92);
	border: 1px solid rgba(255,255,255,0.22);
	border-radius: var(--radius-md);
	font-weight: 500;
	transition: all .25s var(--ease-out);
}
.btn-ghost:hover {
	background: rgba(255,255,255,0.08);
	border-color: rgba(255,255,255,0.4);
	color: #fff;
}

/* ===== NAVIGATION ===== */
.site-nav {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 100;
	height: var(--nav-h);
	display: flex; align-items: center;
	background: transparent;
	transition: background .35s var(--ease-out), box-shadow .35s var(--ease-out), height .25s var(--ease-out);
	overflow: visible;
}
.site-nav[data-state="scrolled"] {
	background: rgba(10, 22, 40, 0.92);
	backdrop-filter: saturate(140%) blur(10px);
	-webkit-backdrop-filter: saturate(140%) blur(10px);
	box-shadow: 0 1px 0 rgba(255,255,255,0.05);
	height: 64px;
}
.nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	width: 100%;
	height: 100%;
}
.nav-logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	position: relative;
	z-index: 110;
}
.nav-logo img {
	height: 44px;
	width: auto;
	display: block;
	transition: height .25s var(--ease-out);
}
.site-nav[data-state="scrolled"] .nav-logo img { height: 38px; }

.nav-links {
	display: flex;
	align-items: center;
	gap: 1.6rem;
}
.nav-link {
	color: rgba(255,255,255,0.82);
	font-size: 14.5px;
	font-weight: 500;
	letter-spacing: 0.01em;
	position: relative;
}
.nav-link::after {
	content: "";
	position: absolute;
	left: 0; right: 100%; bottom: -6px;
	height: 1.5px;
	background: var(--gold-bright);
	transition: right .3s var(--ease-out);
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after { right: 0; }
.nav-link:focus,
.nav-link:focus-visible,
.nav-link.is-active,
.nav-link.active {
	color: var(--gold-bright, #d4a13a);
	outline: none;
}
.nav-link.is-active::after,
.nav-link.active::after {
	right: 0;
	background: var(--gold-bright, #d4a13a);
}

.nav-phone {
	display: inline-flex;
	align-items: center;
	gap: .45rem;
	font-family: var(--font-mono);
	font-size: 13px;
	color: rgba(255,255,255,0.75);
	padding-left: 0.6rem;
	border-left: 1px solid rgba(255,255,255,0.18);
}
.nav-phone:hover { color: var(--gold-bright); }

.nav-cta { padding: 0.65rem 1.05rem; font-size: 14px; border-radius: var(--radius-sm); }

.nav-toggle {
	display: none;
	width: 42px; height: 42px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	background: rgba(255,255,255,0.08);
	border-radius: var(--radius-sm);
	position: relative;
	z-index: 110;
}
.nav-toggle span {
	width: 20px; height: 2px;
	background: #fff;
	border-radius: 2px;
	transition: transform .25s var(--ease-out), opacity .2s var(--ease-out);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
	position: relative;
	min-height: 100svh;
	display: flex;
	align-items: center;
	color: #fff;
	overflow: hidden;
	padding: calc(var(--nav-h) + 2rem) 0 4rem;
}
.hero-bg {
	position: absolute; inset: 0;
	z-index: 0;
}
.hero-photo {
	position: absolute; inset: 0;
	background:
		/* 1. Brushed-metal diagonálne pruhy (60°) — industrial vibe */
		repeating-linear-gradient(60deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 22px),
		/* 2. Gold dramatic spotlight (top-right) — kinematický akcent */
		radial-gradient(circle at 80% 20%, rgba(212,168,67,0.35) 0%, transparent 40%),
		/* 3. Cool blue ambient (bottom-left) — counter-tone, hĺbka dielne */
		radial-gradient(ellipse 70% 80% at 10% 80%, rgba(138,162,196,0.42) 0%, transparent 55%),
		/* 4. Warm halo (center) — jemný tóň, "engine glow" */
		radial-gradient(ellipse 55% 40% at 55% 60%, rgba(212,168,67,0.08) 0%, transparent 60%),
		/* 5. Cinematic vignette — frame */
		radial-gradient(ellipse 110% 90% at 50% 50%, transparent 35%, rgba(0,0,0,0.55) 100%),
		/* 6. Base navy diagonal depth */
		linear-gradient(135deg, #0a1628 0%, #142844 45%, #050d1a 100%);
	display: flex; align-items: flex-end; justify-content: flex-end;
	padding: 1.4rem;
}
.ph-tag {
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.04em;
	color: rgba(255,255,255,0.32);
	text-transform: lowercase;
	padding: 0.3rem 0.55rem;
	border: 1px dashed rgba(255,255,255,0.18);
	border-radius: 4px;
	background: rgba(0,0,0,0.2);
}
.hero-overlay {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(10,22,40,0.55) 0%, rgba(10,22,40,0.25) 40%, rgba(10,22,40,0.85) 100%);
}

/* Sústredné kruhy emanujúce z miesta motora — rovnaký pattern ako .stats-topo
   v sekcii Stats, vizuálne prepojí oba povrchy. Fokál na 75% 50% (zarovnaný
   so stredom motorového obrázka v split layoute), zlatá farba ladí s gold
   spotlight v hero-photo. Motor (z-index: 2 cez .hero-inner) zostáva nad
   kruhmi — vizuálne to vyzerá ako keby kruhy "vyžarovali" spod motora. */
.hero-circles {
	position: absolute; inset: 0;
	background: repeating-radial-gradient(
		circle at 68% 52%,
		transparent 0 59px,
		rgba(212,168,67,0.10) 59px 60px
	);
	mask-image: radial-gradient(ellipse 70% 80% at 75% 60%, #000 20%, transparent 80%);
	-webkit-mask-image: radial-gradient(ellipse 70% 80% at 75% 60%, #000 20%, transparent 80%);
	pointer-events: none;
}

.hero-inner {
	position: relative;
	z-index: 2;
	max-width: 920px;
}
.hero-inner--split {
	max-width: 1320px;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
	gap: 3rem;
	align-items: center;
}
.hero-text { min-width: 0; }
.hero-visual {
	position: relative;
	aspect-ratio: 1 / 1;
	display: grid;
	place-items: center;
	min-width: 0;
}
.hero-visual-glow {
	position: absolute;
	inset: 8%;
	border-radius: 50%;
	background:
		radial-gradient(circle at 50% 50%, rgba(212,168,67,0.45) 0%, rgba(212,168,67,0.18) 35%, transparent 70%);
	filter: blur(20px);
	z-index: 0;
	animation: heroPulse 5s ease-in-out infinite;
}
@keyframes heroPulse {
	0%, 100% { opacity: 0.7; transform: scale(1); }
	50%      { opacity: 1;   transform: scale(1.04); }
}
.hero-visual-ring {
	position: absolute;
	inset: 4%;
	border-radius: 50%;
	border: 1px dashed rgba(212,168,67,0.32);
	z-index: 0;
	animation: heroSpin 60s linear infinite;
}
.hero-visual-ring::before,
.hero-visual-ring::after {
	content: "";
	position: absolute;
	inset: 6%;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.06);
}
.hero-visual-ring::after { inset: 14%; border-color: rgba(212,168,67,0.14); }
@keyframes heroSpin { to { transform: rotate(360deg); } }

.hero-motor {
	position: relative;
	z-index: 1;
	width: 100%;
	height: auto;
	max-width: 620px;
	filter:
		drop-shadow(0 30px 50px rgba(0,0,0,0.55))
		drop-shadow(0 0 30px rgba(212,168,67,0.18));
	animation: heroFloat 6s ease-in-out infinite;
}
@keyframes heroFloat {
	0%, 100% { transform: translateY(0); }
	50%      { transform: translateY(-10px); }
}
.hero-visual-tags {
	position: absolute;
	right: 2%;
	bottom: -8%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.55rem;
	z-index: 3;
	pointer-events: none;
}
.hv-tag {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.55rem 0.95rem;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 999px;
	font-family: var(--font-mono);
	font-size: 12px;
	letter-spacing: 0.02em;
	color: rgba(255, 255, 255, 0.95);
	white-space: nowrap;
	box-shadow: 0 8px 24px -10px rgba(0, 0, 0, 0.4);
}
.hv-tag .bi { color: var(--gold-bright); }

@media (max-width: 820px) {
	.hero-inner--split {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	.hero-visual {
		order: -1;
		aspect-ratio: auto;
		max-height: 360px;
	}
	.hero-motor { max-width: 420px; }
	.hero-visual-tags { right: 4%; bottom: -2%; }
}
@media (max-width: 820px) {
	.trust-list {
		flex-wrap: nowrap;
		overflow-x: auto;
		overflow-y: hidden;
		scroll-snap-type: x proximity;
		-webkit-overflow-scrolling: touch;
		overscroll-behavior-x: contain;
		scrollbar-width: none;
	}
	.trust-list::-webkit-scrollbar { display: none; }
	.trust-list li {
		height: 52px;
		scroll-snap-align: start;
	}
	.brand-logo { height: 52px; max-width: 100px; }
}
@media (max-width: 560px) {
	.hero-visual { max-height: 260px; }
	.hero-motor { max-width: 300px; }
	.hv-tag { font-size: 11px; padding: 0.35rem 0.7rem; }
}

/* Hero eyebrow — rovnaké corner brackets ako .kicker, ale soft-white text
   na navy gradiente. Padding na <span> aby rohy obtekali len text, nie celý
   reveal-block, ktorý môže byť širší (display:block po reveal animácii). */
.hero-eyebrow {
	display: inline-block;
	position: relative;
	padding: 0.55rem 1.05rem;
	font-family: var(--font-mono);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 1.6rem;
	line-height: 1;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
	content: '';
	position: absolute;
	width: 11px;
	height: 11px;
	border: 1.5px solid var(--gold);
}
.hero-eyebrow::before {
	top: 0;
	left: 0;
	border-right: 0;
	border-bottom: 0;
}
.hero-eyebrow::after {
	bottom: 0;
	right: 0;
	border-left: 0;
	border-top: 0;
}

.hero-title {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(3rem, 7.5vw, 6rem);
	line-height: 0.96;
	letter-spacing: -0.015em;
	text-transform: uppercase;
	margin-bottom: 1.5rem;
}
.hero-title-accent {
	color: transparent;
	background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 100%);
	-webkit-background-clip: text;
	background-clip: text;
}

.hero-sub {
	font-size: clamp(1.05rem, 1.6vw, 1.25rem);
	color: rgba(255,255,255,0.82);
	max-width: 620px;
	margin-bottom: 2.2rem;
	font-weight: 400;
}
.hero-sub strong { color: #fff; font-weight: 600; }

.hero-cta {
	display: flex; flex-wrap: wrap; gap: 0.9rem;
	margin-bottom: 3.5rem;
}

.hero-trust { margin-bottom: 2rem; }
.trust-label {
	font-family: var(--font-mono);
	font-size: 11.5px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.5);
	margin-bottom: 0.7rem;
}
.trust-list {
	display: flex;
	flex-wrap: nowrap;
	gap: 1.1rem;
	align-items: center;
	list-style: none;
	padding: 0;
	margin: 0;
}
.trust-list li {
	display: inline-flex;
	align-items: center;
	height: 64px;
	flex: 0 0 auto;
}
.trust-list a {
	display: inline-flex;
	align-items: center;
	height: 100%;
}
.brand-logo {
	height: 64px;
	width: auto;
	max-width: 120px;
	object-fit: contain;
	opacity: 0.6;
	filter: brightness(0) invert(1);
	transition: opacity 0.2s ease;
}
.brand-logo:hover { opacity: 1; }

.hero-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1.2rem;
	padding-top: 1.4rem;
	border-top: 1px solid rgba(255,255,255,0.1);
}
.meta-item {
	display: inline-flex; align-items: center; gap: 0.5rem;
	font-size: 14px; color: rgba(255,255,255,0.78);
}
.meta-item .bi { color: var(--gold-bright); font-size: 1.1em; }
.meta-divider { width: 1px; height: 14px; background: rgba(255,255,255,0.18); }

.hero-scroll {
	position: absolute;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	color: rgba(255,255,255,0.5);
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}
.hero-scroll-line {
	width: 1px;
	height: 36px;
	background: linear-gradient(180deg, transparent, var(--gold-bright));
	animation: scrollPulse 2.4s var(--ease-out) infinite;
}
@keyframes scrollPulse {
	0%, 100% { transform: scaleY(0.5); transform-origin: top; opacity: 0.4; }
	50%      { transform: scaleY(1);   transform-origin: top; opacity: 1; }
}

/* ===== WAVE DIVIDERS ===== */
.wave { line-height: 0; display: block; position: relative; z-index: 1; margin-bottom: -1px; font-size: 0; }
.wave svg { width: 100%; height: 80px; display: block; }
.wave-down svg path { fill: var(--bg); }
.wave-up-dark {
	background: linear-gradient(to bottom, var(--bg-tint) 0%, var(--bg-tint) calc(100% - 4px), var(--navy-900) calc(100% - 4px), var(--navy-900) 100%);
}
.wave-up-dark svg path { fill: var(--navy-900); }

/* Soft gradient transition band between dark section and light section */
.fade-band {
	height: 120px;
	position: relative;
	z-index: 1;
	margin-top: -1px; /* eliminate hairline seam */
}
.fade-band--down {
	background: linear-gradient(180deg,
		var(--navy-900) 0%,
		rgba(10, 22, 40, 0.85) 18%,
		rgba(20, 40, 68, 0.55) 38%,
		rgba(74, 111, 165, 0.18) 62%,
		rgba(245, 247, 251, 0.6) 82%,
		var(--bg) 100%);
}

/* ===== SECTIONS ===== */
.section {
	padding: 4.5rem 0 6rem;
	position: relative;
}
.section-tight { padding: 2.8rem 0 4.5rem; }
.section-light { background: var(--bg); }
.section-tint  { background: var(--bg-tint); }
.section-dark  { background: var(--navy-900); color: #fff; }

.section-head {
	max-width: 760px;
	margin-bottom: 2.6rem;
}
.section-head--center {
	margin-left: auto; margin-right: auto;
	text-align: center;
}
/* Engineering corner brackets — top-left + bottom-right gold rohy ako výrez
   z technického výkresu. Nahrádzajú generický `bar + text` kicker pattern,
   sú vizuálne odlišné a tematicky sedia s automotive/inžinierskym kontextom.

   Pôvodný `<span class="kicker-bar">` sa zachováva v markup-e (skryje sa)
   aby sme nemuseli refaktorovať desiatky šablón. Rohy sú ::before / ::after. */
.kicker {
	display: inline-block;
	position: relative;
	padding: 0.55rem 1.05rem;
	font-family: var(--font-mono);
	font-size: 12px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--navy-600);
	margin-bottom: 1.1rem;
	line-height: 1;
}
.kicker::before,
.kicker::after {
	content: '';
	position: absolute;
	width: 11px;
	height: 11px;
	border: 1.5px solid var(--gold);
}
.kicker::before {
	top: 0;
	left: 0;
	border-right: 0;
	border-bottom: 0;
}
.kicker::after {
	bottom: 0;
	right: 0;
	border-left: 0;
	border-top: 0;
}
.kicker-bar { display: none; }

.kicker--light { color: var(--gold-bright); }
.kicker--light::before,
.kicker--light::after { border-color: var(--gold-bright); }

.section-title {
	font-family: var(--font-display);
	font-size: clamp(2.2rem, 4.5vw, 3.6rem);
	font-weight: 700;
	letter-spacing: -0.01em;
	color: var(--navy-900);
	margin-bottom: 1.1rem;
	text-transform: none;
}
.section-title--light { color: #fff; }
.section-lead {
	font-size: 1.08rem;
	color: var(--ink-mute);
	max-width: 640px;
}
.section-lead--light { color: rgba(255,255,255,0.72); }
.section-head--center .section-lead { margin-inline: auto; }

#ako.section { padding-top: 3rem; }

/* ===== STEPS ===== */
.steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.75rem;
	counter-reset: stepc;
}
.step {
	position: relative;
	background: var(--bg-card);
	border: 1px solid var(--line-soft);
	border-radius: var(--radius-lg, 14px);
	padding: 2.2rem 2rem 2rem;
	display: flex;
	flex-direction: column;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
	transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .35s var(--ease-out);
	overflow: hidden;
}
.step::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(15,23,42,0.015) 100%);
	pointer-events: none;
}
.step:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 40px -22px rgba(15, 23, 42, 0.25), 0 4px 12px -6px rgba(15, 23, 42, 0.08);
	border-color: var(--line);
}
.step-num {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 0.85rem;
	letter-spacing: 0.14em;
	color: var(--navy-400, var(--navy-300));
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	gap: 0.7rem;
	position: relative;
	z-index: 1;
}
.step-num::after {
	content: "";
	flex: 1;
	height: 1px;
	background: var(--line);
	display: block;
}
.step-head {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.1rem;
	position: relative;
	z-index: 1;
}
.step-icon {
	width: 52px; height: 52px;
	flex-shrink: 0;
	border-radius: 12px;
	background: var(--navy-50);
	color: var(--navy-700);
	display: grid; place-items: center;
	font-size: 1.5rem;
	transition: background .3s var(--ease-out), color .3s var(--ease-out), transform .3s var(--ease-out);
}
.step:hover .step-icon { background: var(--navy-700); color: var(--gold-bright); transform: scale(1.04); }
.step-title {
	font-size: 1.4rem;
	line-height: 1.15;
	color: var(--navy-900);
	margin: 0;
	text-transform: none;
	position: relative;
	z-index: 1;
}
.step-text {
	color: var(--ink-mute);
	font-size: 0.97rem;
	margin-bottom: 1.4rem;
	position: relative;
	z-index: 1;
	flex: 1;
}
.step-foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-top: auto;
	position: relative;
	z-index: 1;
}
.step-time {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-family: var(--font-mono);
	font-size: 12px;
	color: var(--gold);
	padding: 0.35rem 0.65rem;
	background: var(--gold-soft);
	border-radius: 4px;
	margin-left: auto;
}
.step-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.1rem;
	background: var(--navy-900);
	color: #fff;
	border-radius: 999px;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 0.9rem;
	letter-spacing: 0.02em;
	text-decoration: none;
	transition: background .25s var(--ease-out), transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.step-cta i { transition: transform .25s var(--ease-out); }
.step-cta:hover {
	background: var(--gold);
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 10px 24px -10px rgba(212, 160, 23, 0.55);
}
.step-cta:hover i { transform: translateX(3px); }

/* ===== MOTOR CARDS ===== */
.motor-card {
	background: var(--bg-card);
	border: 1px solid var(--line-soft);
	border-radius: var(--radius-lg);
	overflow: hidden;
	height: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
	transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.motor-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
}
.motor-card--feature {
	border: 2px solid var(--gold);
	box-shadow: 0 20px 50px -25px var(--gold-glow);
}
.badge-popular {
	position: absolute;
	top: 16px; right: 16px;
	z-index: 2;
	background: var(--gold-bright);
	color: var(--navy-900);
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 0.4rem 0.7rem;
	border-radius: 4px;
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
}
.motor-img {
	position: relative;
	aspect-ratio: 4 / 3;
	background:
		repeating-linear-gradient(45deg, rgba(15,29,51,0.04) 0 2px, transparent 2px 16px),
		linear-gradient(160deg, var(--navy-50) 0%, var(--bg-tint) 100%);
	display: flex; align-items: flex-end; justify-content: flex-end;
	padding: 1rem;
	overflow: hidden;
}
.motor-photo {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}
.motor-img .motor-tag { position: relative; z-index: 1; }
.motor-card--feature .motor-img {
	background:
		repeating-linear-gradient(45deg, rgba(201,152,46,0.08) 0 2px, transparent 2px 16px),
		linear-gradient(160deg, #fff8e5 0%, var(--gold-soft) 100%);
}
.motor-img .ph-tag {
	border-color: rgba(15,29,51,0.18);
	color: var(--ink-faint);
	background: rgba(255,255,255,0.6);
}
.motor-tag {
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 0.3rem 0.6rem;
	background: var(--navy-700);
	color: #fff;
	border-radius: 4px;
}
.motor-tag--gold { background: var(--gold); color: var(--navy-900); }
.motor-body { padding: 1.8rem 1.8rem 2rem; display: flex; flex-direction: column; gap: 0.9rem; flex: 1; }
.motor-title {
	font-size: 1.7rem;
	color: var(--navy-500);
}
.motor-desc {
	color: var(--ink-mute);
	font-size: 0.97rem;
	min-height: calc(1.6em * 2);
}
@media (max-width: 991px) {
	.motor-desc { min-height: 0; }
}
.motor-feats {
	display: flex; flex-direction: column; gap: 0.5rem;
	padding: 1rem 0;
	border-top: 1px solid var(--line-soft);
	border-bottom: 1px solid var(--line-soft);
	margin-bottom: 0.4rem;
}
.motor-feats li {
	display: flex; align-items: center; gap: 0.55rem;
	font-size: 0.93rem;
	color: var(--ink-soft);
}
.motor-feats .bi { color: var(--gold); font-weight: 700; }
.motor-feats__base { color: var(--navy-700); }
.motor-feats__base .bi { font-size: 1.05rem; }
.motor-price {
	display: flex;
	align-items: baseline;
	gap: 0.55rem;
	margin-top: auto;
	padding-top: 0.2rem;
}
.motor-price__from {
	font-size: 0.8rem;
	font-weight: 500;
	color: var(--ink-mute);
	text-transform: lowercase;
	letter-spacing: 0.02em;
}
.motor-price__amount {
	font-family: 'Barlow Condensed', system-ui, sans-serif;
	font-size: 2.2rem;
	font-weight: 700;
	color: var(--gold);
	line-height: 1;
	letter-spacing: -0.01em;
}
.motor-body .btn-outline-gold,
.motor-body .btn-gold { margin-top: 0; }

.motor-extra {
	margin-top: 2.4rem;
	display: flex;
	align-items: center;
	gap: 1.4rem;
	padding: 1.6rem 1.8rem;
	background:
		radial-gradient(circle at 0% 50%, rgba(212, 168, 67, 0.1), transparent 55%),
		var(--bg-card);
	border: 1px solid rgba(212, 168, 67, 0.28);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
}
.motor-extra__icon {
	width: 54px; height: 54px;
	flex-shrink: 0;
	border-radius: 14px;
	background: var(--gold-soft);
	color: var(--gold);
	display: grid; place-items: center;
	font-size: 1.5rem;
}
.motor-extra__body { flex: 1; min-width: 0; }
.motor-extra__title {
	font-size: 1.2rem;
	color: var(--navy-900);
	margin-bottom: 0.25rem;
}
.motor-extra__body p {
	color: var(--ink-mute);
	font-size: 0.96rem;
	line-height: 1.55;
	margin: 0;
}
.motor-extra__cta { flex-shrink: 0; }
@media (max-width: 720px) {
	.motor-extra {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
		padding: 1.4rem 1.4rem 1.5rem;
	}
	.motor-extra__cta { width: 100%; justify-content: center; }
}

/* ===== VS (REPAS vs NOVÝ) ===== */
.vs {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 1rem;
	align-items: stretch;
}
.vs-col {
	border-radius: var(--radius-lg);
	padding: 2.2rem 2rem;
	display: flex; flex-direction: column;
	gap: 1.2rem;
	position: relative;
	overflow: hidden;
}
.vs-col--bad {
	background: linear-gradient(180deg, rgba(161,58,58,0.18) 0%, rgba(161,58,58,0.05) 100%);
	border: 1px solid rgba(161,58,58,0.35);
}
.vs-col--good {
	background: linear-gradient(180deg, rgba(47,122,82,0.22) 0%, rgba(47,122,82,0.05) 100%);
	border: 1px solid rgba(47,122,82,0.4);
}
.vs-head {
	display: flex; align-items: center; gap: 0.9rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid rgba(255,255,255,0.12);
}
.vs-head h3 {
	font-size: 1.6rem;
	color: #fff;
}
.vs-mark {
	width: 44px; height: 44px;
	border-radius: 50%;
	display: grid; place-items: center;
	font-size: 1.3rem;
	flex-shrink: 0;
}
.vs-mark--bad { background: rgba(161,58,58,0.4); color: #ff9b9b; }
.vs-mark--good { background: rgba(47,122,82,0.4); color: #a5e6bf; }

.vs-list { display: flex; flex-direction: column; gap: 1rem; }
.vs-list li {
	display: flex; gap: 0.85rem;
	align-items: flex-start;
	color: rgba(255,255,255,0.85);
}
.vs-list .bi {
	font-size: 1.1rem;
	margin-top: 4px;
	flex-shrink: 0;
}
.vs-col--bad .vs-list .bi { color: #ff9b9b; }
.vs-col--good .vs-list .bi { color: #a5e6bf; }
.vs-list strong {
	display: block;
	color: #fff;
	font-weight: 600;
	margin-bottom: 2px;
}
.vs-list span {
	font-size: 0.92rem;
	color: rgba(255,255,255,0.62);
}

.vs-foot {
	margin-top: auto;
	padding-top: 1rem;
	border-top: 1px solid rgba(255,255,255,0.12);
	font-family: var(--font-mono);
	font-size: 12px;
	letter-spacing: 0.06em;
	color: rgba(255,255,255,0.6);
}
.vs-foot strong { color: #fff; }
.vs-foot--good strong { color: var(--gold-bright); }

.vs-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.5rem;
	color: var(--gold-bright);
	letter-spacing: 0.1em;
	position: relative;
	padding: 0 0.5rem;
}
.vs-divider::before, .vs-divider::after {
	content: "";
	position: absolute;
	left: 50%;
	width: 1px;
	background: linear-gradient(180deg, transparent, rgba(212,168,67,0.4), transparent);
}
.vs-divider::before { top: 0; bottom: 50%; transform: translateX(-50%) translateY(-30px); height: 40%; }
.vs-divider::after { top: 50%; bottom: 0; transform: translateX(-50%) translateY(30px); height: 40%; }
.vs-divider span {
	background: var(--navy-900);
	padding: 0.6rem;
	border: 1px solid rgba(212,168,67,0.4);
	border-radius: 50%;
	width: 56px; height: 56px;
	display: grid; place-items: center;
	z-index: 1;
}

/* ===== STATS SECTION (instrument cluster) ===== */
.section-stats {
	position: relative;
	background: var(--bg);
	color: var(--ink);
	padding: 4.5rem 0 6rem;
	overflow: hidden;
	isolation: isolate;
}
.stats-bg {
	position: absolute; inset: 0;
	pointer-events: none;
	z-index: 0;
}
.stats-bg::before {
	content: "";
	position: absolute;
	inset: -10%;
	background:
		radial-gradient(circle 420px at 18% 20%, rgba(212,168,67,0.20), transparent 60%),
		radial-gradient(circle 480px at 90% 90%, rgba(74,111,165,0.08), transparent 60%);
}
/* Topografické vrstevnice — sústredné prstence z jedného fokálneho bodu
   za ľavým okrajom. Čitateľné ako sound wave / radar pulse / izolínie
   na mape. Repeating-radial-gradient kreslí tenké navy linky v 50px
   rozostupe; bod je posunutý mierne mimo canvas (-5% 50%), takže každý
   prstenec sa javí ako oblúk sweepujúci sprava-doľava. */
.stats-bg { overflow: hidden; }
.stats-topo {
	position: absolute; inset: 0;
	background: repeating-radial-gradient(
		circle at 22% 60%,
		transparent 0 49px,
		rgba(15,29,51,0.06) 49px 50px
	);
	mask-image: radial-gradient(ellipse 90% 80% at 60% 50%, #000 45%, transparent 75%);
	-webkit-mask-image: radial-gradient(ellipse 90% 80% at 60% 50%, #000 45%, transparent 95%);
}
.stats-inner { position: relative; z-index: 1; }
.section-head--stats { margin-bottom: 4rem; max-width: 720px; }

/* ===== COUNTERS ===== */
.counters {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	background: linear-gradient(90deg,
		transparent 0%,
		rgba(201, 152, 46, 0.12) 18%,
		rgba(201, 152, 46, 0.12) 82%,
		transparent 100%);
}
@media (min-width: 992px) {
	.counters { padding-left: 8rem; padding-right: 3rem; }
}
.counter {
	position: relative;
	padding: 2.4rem 1.8rem 2.2rem;
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
	transition: background .35s var(--ease-out);
}
/*.counter:hover { background: rgba(15,29,51,0.025); }*/
.counter:hover .counter-bar span { box-shadow: 0 0 16px var(--gold-glow); }
.counter-index {
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.18em;
	color: var(--ink-faint);
}
.counter-value {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(3rem, 5.5vw, 4.4rem);
	color: var(--navy-900);
	line-height: 1;
	letter-spacing: -0.03em;
	display: flex; align-items: baseline; gap: 0.35rem;
}
.counter-value > span:first-child {
	background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-600) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.counter-suffix {
	font-size: 1.65rem;
	color: var(--gold);
	font-weight: 700;
	letter-spacing: 0;
}
.counter-label {
	font-size: 0.92rem;
	color: var(--ink-mute);
	font-weight: 500;
	letter-spacing: 0.01em;
}
.counter-bar {
	margin-top: auto;
	height: 3px;
	background: rgba(15,29,51,0.06);
	border-radius: 2px;
	overflow: hidden;
	position: relative;
}
.counter-bar span {
	display: block;
	height: 100%;
	width: 0;
	background: linear-gradient(90deg, var(--gold) 0%, var(--gold-bright) 100%);
	border-radius: 2px;
	transition: width 1.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@media (max-width: 992px) {
	.counters { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
	.counters { grid-template-columns: 1fr; }
	.section-stats { padding: 2.5rem 0 4rem; }
}

/* ===== REVIEWS (marquee) ===== */
.reviews-stack {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}
.reviews-marquee {
	position: relative;
	width: 100%;
	overflow: hidden;
	/* fade edges */
	-webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
					mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.reviews-track {
	display: flex;
	gap: 1.5rem;
	width: max-content;
	animation: reviews-scroll 60s linear infinite;
	will-change: transform;
}
.reviews-marquee--reverse .reviews-track {
	animation-direction: reverse;
}
.reviews-marquee:hover .reviews-track,
.reviews-marquee:focus-within .reviews-track { animation-play-state: paused; }
@keyframes reviews-scroll {
	from { transform: translateX(0); }
	to   { transform: translateX(calc(-50% - 0.75rem)); } /* half the duplicated track + half a gap */
}
@media (prefers-reduced-motion: reduce) {
	.reviews-track { animation: none; }
}
@media (max-width: 720px) {
	.reviews-stack {
		display: flex;
		flex-direction: row;
		gap: 1.5rem;
		overflow-x: auto;
		overflow-y: hidden;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		overscroll-behavior-x: contain;
		scrollbar-width: none;
		padding: 0 1rem;
	}
	.reviews-stack::-webkit-scrollbar { display: none; }
	.reviews-stack .reviews-marquee,
	.reviews-stack .reviews-track {
		display: contents;
	}
	.reviews-stack .review {
		scroll-snap-align: center;
		animation: none;
	}
}
.review {
	flex: 0 0 360px;
	background: var(--bg-card);
	border: 1px solid var(--line-soft);
	border-radius: var(--radius-md);
	padding: 1.8rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	position: relative;
	overflow: hidden;
	transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.review:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.review-stars {
	display: flex; gap: 2px;
	color: var(--gold-bright);
	font-size: 0.95rem;
}
.review-text {
	font-size: 1rem;
	color: var(--ink-soft);
	line-height: 1.55;
	margin: 0;
	font-weight: 400;
	flex: 1;
	position: relative;
	z-index: 1;
}
.review-mark {
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 56px;
	height: 56px;
	opacity: 0.10;
	color: var(--navy-900);
	pointer-events: none;
	z-index: 0;
}
.review-mark svg { width: 100%; height: 100%; display: block; }
.review-meta {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	padding-top: 1rem;
	border-top: 1px solid var(--line-soft);
}
.review-avatar {
	width: 44px; height: 44px;
	border-radius: 50%;
	background: var(--navy-700);
	color: var(--gold-bright);
	display: grid; place-items: center;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.05rem;
}
.review-name { font-weight: 600; color: var(--navy-900); font-size: 0.97rem; }
.review-place { font-size: 0.86rem; color: var(--ink-faint); font-family: var(--font-mono); }

/* ===== FAQ ===== */
.faq-aside { position: sticky; top: 100px; }
.faq-actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 1.6rem;
}
.faq-or {
	display: block;
	margin: 0.6rem 0;
	font-size: 12px;
	color: var(--text-muted, rgba(0,0,0,0.55));
	font-family: var(--font-mono);
	letter-spacing: 0.12em;
	text-transform: uppercase;
}
.faq-call {
	display: inline-flex;
	align-items: center;
	gap: 0.9rem;
	padding: 1rem 1.2rem;
	background: var(--navy-900);
	color: #fff;
	border-radius: var(--radius-md);
	transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.faq-call:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); color: #fff; }
.faq-call .bi {
	width: 38px; height: 38px;
	border-radius: 50%;
	background: var(--gold);
	color: var(--navy-900);
	display: grid; place-items: center;
	font-size: 1.05rem;
	flex-shrink: 0;
}
.faq-call span { display: block; font-size: 12px; color: rgba(255,255,255,0.6); font-family: var(--font-mono); letter-spacing: 0.06em; text-transform: uppercase; }
.faq-call strong { display: block; font-family: var(--font-display); font-size: 1.25rem; letter-spacing: 0.01em; }

.faq-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.85rem 1.3rem;
	border-radius: 999px;
	background: var(--gold);
	color: #fff;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 0.95rem;
	letter-spacing: 0.02em;
	text-decoration: none;
	transition: background .25s var(--ease-out), transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.faq-cta i { transition: transform .25s var(--ease-out); }
.faq-cta:hover {
	background: var(--gold-bright, var(--gold));
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 12px 28px -10px rgba(212, 160, 23, 0.55);
}
.faq-cta:hover i { transform: translateX(4px); }

.acc-item {
	background: var(--bg-card);
	border: 1px solid var(--line-soft);
	border-radius: var(--radius-md);
	margin-bottom: 0.8rem;
	overflow: hidden;
	transition: border-color .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.acc-item:has(.acc-head[aria-expanded="true"]) {
	border-color: var(--navy-300);
	box-shadow: var(--shadow-sm);
}
.acc-head {
	width: 100%;
	padding: 1.2rem 1.4rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	text-align: left;
}
.acc-q {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 1.18rem;
	color: var(--navy-900);
	letter-spacing: 0;
}
.acc-icon {
	width: 32px; height: 32px;
	border-radius: 50%;
	background: var(--navy-50);
	color: var(--navy-700);
	display: grid; place-items: center;
	flex-shrink: 0;
	transition: background .25s var(--ease-out), color .25s var(--ease-out), transform .3s var(--ease-out);
	font-size: 1.05rem;
}
.acc-head[aria-expanded="true"] .acc-icon {
	background: var(--gold);
	color: var(--navy-900);
	transform: rotate(135deg);
}
.acc-body {
	max-height: 0;
	overflow: hidden;
	transition: max-height .35s var(--ease-out);
}
.acc-body p,
.acc-body .acc-list {
	padding: 0 1.4rem;
	color: var(--ink-mute);
	font-size: 0.98rem;
	margin: 0;
}
.acc-body > * + * { margin-top: 0.7rem; }
.acc-body > *:last-child { padding-bottom: 1.4rem; }
.acc-body .acc-list { list-style: disc; padding-left: 2.6rem; padding-right: 1.4rem; }
.acc-body .acc-list--ordered { list-style: decimal; }
.acc-body .acc-list li { margin-bottom: 0.35rem; }
.acc-body .acc-list li:last-child { margin-bottom: 0; }
.acc-body a { color: var(--navy-700); text-decoration: underline; text-underline-offset: 2px; }
.acc-body a:hover { color: var(--gold); }

/* ===== KONTAKT (page) ===== */
.section-page-head {
	padding-top: calc(var(--nav-h) + 1.6rem);
	padding-bottom: 2rem;
}
.section-page-head .section-title { color: #fff; margin-top: 0.2rem; }
.section-page-head .section-lead { color: rgba(255,255,255,0.78); max-width: none; }
.section-page-head .kicker { color: var(--navy-200); margin-bottom: 0.4rem; }
.section-page-head .kicker::before,
.section-page-head .kicker::after { border-color: var(--gold-bright); }

.contact-card {
	background: var(--bg-card);
	border: 1px solid var(--line-soft);
	border-radius: var(--radius-lg);
	padding: 2rem 1.8rem;
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
	box-shadow: var(--shadow-sm);
	transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.contact-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
}
.contact-card__icon {
	width: 52px; height: 52px;
	border-radius: 14px;
	background: var(--navy-50);
	color: var(--navy-700);
	display: grid; place-items: center;
	font-size: 1.4rem;
	margin-bottom: 0.4rem;
}
.contact-card__title {
	font-size: 1.45rem;
	color: var(--navy-900);
}
.contact-card__line {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	color: var(--navy-800);
	font-weight: 600;
	font-size: 1.05rem;
	transition: color .25s var(--ease-out);
}
.contact-card__line:hover { color: var(--gold); }
.contact-card__line .bi {
	color: var(--gold);
	font-size: 1.1rem;
}
.contact-card__address {
	font-style: normal;
	color: var(--ink-soft);
	font-size: 1.02rem;
	line-height: 1.55;
}
.contact-card__note {
	margin-top: auto;
	font-family: var(--font-mono);
	font-size: 12px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--ink-faint);
	padding-top: 0.6rem;
	border-top: 1px solid var(--line-soft);
}
.contact-card__cta {
	margin-top: auto;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	color: var(--navy-700);
	font-weight: 600;
	font-size: 0.97rem;
	transition: color .25s var(--ease-out), gap .25s var(--ease-out);
}
.contact-card__cta:hover { color: var(--gold); gap: 0.7rem; }

.contact-card--map {
	padding: 0;
	overflow: hidden;
	min-height: 280px;
}
.contact-card--map iframe {
	width: 100%;
	height: 100%;
	min-height: 280px;
	border: 0;
	display: block;
}

/* ===== REFERENCIE (page) ===== */
.ref-features {
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
	margin: 0;
	padding: 0;
	list-style: none;
}
.ref-features li {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
	padding: 1.4rem 1.4rem 1.4rem 1.2rem;
	background: var(--bg-card);
	border: 1px solid var(--line-soft);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
}
.ref-features__icon {
	width: 44px; height: 44px;
	flex-shrink: 0;
	border-radius: 12px;
	background: var(--gold-soft);
	color: var(--gold);
	display: grid; place-items: center;
	font-size: 1.25rem;
}
.ref-features__title {
	font-size: 1.15rem;
	color: var(--navy-900);
	margin-bottom: 0.25rem;
}
.ref-features li p {
	color: var(--ink-mute);
	font-size: 0.95rem;
	margin: 0;
	line-height: 1.5;
}

.ref-trust {
	background:
		radial-gradient(circle at 100% 0%, rgba(212, 168, 67, 0.16), transparent 55%),
		var(--bg-card);
	border: 1px solid rgba(212, 168, 67, 0.28);
	border-radius: var(--radius-lg);
	padding: 2.4rem 2rem 2rem;
	box-shadow: var(--shadow-sm);
	display: flex;
	flex-direction: column;
	gap: 1.4rem;
}
.ref-trust__rating {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 0.4rem;
}
.ref-trust__stars {
	display: inline-flex;
	gap: 4px;
	color: var(--gold-bright);
	font-size: 1.65rem;
}
.ref-trust__score {
	display: inline-flex;
	align-items: baseline;
	gap: 0.4rem;
	font-family: var(--font-display);
	font-weight: 700;
	color: var(--navy-900);
	letter-spacing: -0.02em;
}
.ref-trust__num {
	font-size: clamp(3rem, 5.5vw, 4rem);
	background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-700) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	line-height: 1;
}
.ref-trust__total {
	font-size: 1.4rem;
	color: var(--ink-faint);
	font-weight: 600;
}
.ref-trust__caption {
	margin: 0.3rem 0 0;
	font-size: 0.95rem;
	color: var(--ink-mute);
	max-width: 300px;
}
.ref-trust__divider {
	height: 1px;
	background: linear-gradient(90deg, transparent 0%, var(--line) 20%, var(--line) 80%, transparent 100%);
}
.ref-trust__stats {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.6rem;
	text-align: center;
}
.ref-trust__stats li {
	padding: 0.4rem 0.2rem;
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}
.ref-trust__stat-num {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(1.6rem, 2.6vw, 1.95rem);
	color: var(--navy-900);
	letter-spacing: -0.02em;
	line-height: 1;
}
.ref-trust__stat-num small {
	font-size: 0.55em;
	color: var(--gold);
	font-weight: 700;
	margin-left: 1px;
}
.ref-trust__stat-label {
	font-size: 0.82rem;
	color: var(--ink-mute);
	line-height: 1.35;
}
@media (max-width: 480px) {
	.ref-trust { padding: 2rem 1.4rem 1.6rem; }
	.ref-trust__stars { font-size: 1.4rem; }
	.ref-trust__stats { grid-template-columns: 1fr; gap: 0.9rem; }
	.ref-trust__stats li { flex-direction: row; align-items: baseline; justify-content: center; gap: 0.6rem; }
	.ref-trust__stat-label { font-size: 0.9rem; }
}

/* ===== MOTORY (landing) ===== */
.brand-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.4rem;
}
@media (max-width: 991px) {
	.brand-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
	.brand-grid { grid-template-columns: 1fr; }
}
.brand-card {
	background: var(--bg-card);
	border: 1px solid var(--line-soft);
	border-radius: var(--radius-lg);
	padding: 1.8rem 1.7rem 1.6rem;
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
	box-shadow: var(--shadow-sm);
	transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), border-color .3s var(--ease-out);
	color: inherit;
}
.brand-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
	border-color: rgba(212, 168, 67, 0.35);
	color: inherit;
}
.brand-card__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.8rem;
	margin-bottom: 0.2rem;
}
.brand-card__logo {
	height: 38px;
	display: flex;
	align-items: center;
	flex-shrink: 0;
}
.brand-card__logo img {
	height: 100%;
	width: auto;
	max-width: 100px;
	object-fit: contain;
	filter: brightness(0) saturate(100%) invert(11%) sepia(22%) saturate(2253%) hue-rotate(195deg) brightness(96%) contrast(94%);
	transition: filter .3s var(--ease-out);
}
.brand-card:hover .brand-card__logo img {
	filter: brightness(0) saturate(100%) invert(70%) sepia(53%) saturate(454%) hue-rotate(8deg) brightness(91%) contrast(89%);
}
.brand-card__title {
	font-size: 1.4rem;
	color: var(--navy-900);
	margin: 0;
	letter-spacing: -0.005em;
}
.brand-card__desc {
	color: var(--ink-mute);
	font-size: 0.95rem;
	line-height: 1.55;
	margin: 0;
	flex: 1;
}
.brand-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	color: var(--gold);
	font-weight: 600;
	font-size: 0.92rem;
	margin-top: 0.4rem;
	align-self: flex-end;
	transition: gap .25s var(--ease-out), color .2s var(--ease-out);
}
.brand-card__cta .bi { transition: transform .25s var(--ease-out); }
.brand-card:hover .brand-card__cta { color: var(--gold-bright); }
.brand-card:hover .brand-card__cta .bi { transform: translateX(3px); }

/* "Iné značky" karta — posledná v gridu, vizuálne odlíšená čiarkovaným
   gold borderom + jemným zlatým tónom v pozadí (echo .motor-extra). */
.brand-card--other {
	background:
		radial-gradient(circle at 0% 50%, rgba(212, 168, 67, 0.10), transparent 55%),
		var(--bg-card);
	border: 1px dashed rgba(212, 168, 67, 0.50);
}
.brand-card--other:hover {
	border-color: rgba(212, 168, 67, 0.85);
}
.brand-card--other .brand-card__icon {
	width: 44px; height: 44px;
	border-radius: 12px;
	background: var(--gold-soft);
	color: var(--gold);
	display: grid; place-items: center;
	font-size: 1.4rem;
	flex-shrink: 0;
	transition: background .25s var(--ease-out), color .25s var(--ease-out);
}
.brand-card--other:hover .brand-card__icon {
	background: var(--gold);
	color: #fff;
}

.stock-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.4rem;
}
@media (max-width: 991px) {
	.stock-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
	.stock-grid { grid-template-columns: 1fr; }
}
.stock-card {
	background: var(--bg-card);
	border: 1px solid var(--line-soft);
	border-radius: var(--radius-lg);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	box-shadow: var(--shadow-sm);
	transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.stock-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}
.stock-card__img {
	aspect-ratio: 1 / 1;
	background:
		repeating-linear-gradient(45deg, rgba(15,29,51,0.04) 0 2px, transparent 2px 16px),
		linear-gradient(160deg, var(--navy-50) 0%, var(--bg-tint) 100%);
	overflow: hidden;
}
.stock-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .4s var(--ease-out);
}
.stock-card:hover .stock-card__img img { transform: scale(1.05); }
.stock-card__body {
	padding: 1.3rem 1.3rem 1.4rem;
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
	flex: 1;
}
.stock-card__tag {
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--gold);
	font-weight: 700;
}
.stock-card__title {
	font-family: var(--font-display);
	font-size: 1.3rem;
	color: var(--navy-900);
	margin: 0;
	letter-spacing: -0.005em;
}
.stock-card__desc {
	color: var(--ink-mute);
	font-size: 0.92rem;
	line-height: 1.5;
	margin: 0;
	flex: 1;
}
.stock-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	color: var(--gold);
	font-weight: 600;
	font-size: 0.92rem;
	margin-top: 0.4rem;
	align-self: flex-start;
	transition: gap .25s var(--ease-out), color .2s var(--ease-out);
}
.stock-card__cta .bi { transition: transform .25s var(--ease-out); }
.stock-card__cta:hover { color: var(--gold-bright); }
.stock-card__cta:hover .bi { transform: translateX(3px); }

.cta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	align-items: center;
}
@media (max-width: 480px) {
	.cta-row { flex-direction: column; align-items: stretch; }
	.cta-row .btn-lg-cta { width: 100%; justify-content: center; }
}

.btn-pill-gold {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.55rem 0.95rem;
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--gold);
	background: rgba(212, 168, 67, 0.08);
	border: 1px dashed rgba(212, 168, 67, 0.42);
	border-radius: 999px;
	transition: color .2s var(--ease-out), border-color .2s var(--ease-out), background .2s var(--ease-out);
}
.btn-pill-gold .bi-arrow-down,
.btn-pill-gold .bi-arrow-right { transition: transform .25s var(--ease-out); }
.btn-pill-gold:hover {
	color: var(--gold-bright);
	border-color: var(--gold);
	background: rgba(212, 168, 67, 0.14);
}
.btn-pill-gold:hover .bi-arrow-down { transform: translateY(2px); }
.btn-pill-gold:hover .bi-arrow-right { transform: translateX(3px); }

/* ===== REPAS TIMELINE (repas-vs-novy page) ===== */
.repas-timeline {
	background:
		radial-gradient(circle at 100% 0%, rgba(200, 65, 65, 0.08), transparent 55%),
		var(--bg-card);
	border: 1px solid rgba(200, 65, 65, 0.22);
	border-radius: var(--radius-lg);
	padding: 1.8rem 1.8rem 1.6rem;
	box-shadow: var(--shadow-sm);
}
.repas-timeline__head {
	margin-bottom: 1.4rem;
}
.repas-timeline__tag {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #b13030;
	background: rgba(200, 65, 65, 0.08);
	border: 1px solid rgba(200, 65, 65, 0.22);
	padding: 0.3rem 0.65rem;
	border-radius: 999px;
	margin-bottom: 0.6rem;
}
.repas-timeline__title {
	font-size: 1.3rem;
	color: var(--navy-900);
	margin: 0;
}
.repas-timeline__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
	position: relative;
}
.repas-timeline__list::before {
	content: "";
	position: absolute;
	left: 9px;
	top: 12px;
	bottom: 12px;
	width: 2px;
	background: linear-gradient(180deg,
		rgba(200, 65, 65, 0.18) 0%,
		rgba(200, 65, 65, 0.28) 60%,
		rgba(200, 65, 65, 0.5) 100%);
	border-radius: 2px;
}
.repas-timeline__list li {
	display: grid;
	grid-template-columns: 100px 1fr;
	column-gap: 1.2rem;
	padding: 0.6rem 0 0.7rem 0;
	position: relative;
}
.repas-timeline__list li::before {
	content: "";
	position: absolute;
	left: 4px;
	top: 1.2em;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--bg-card);
	border: 2px solid rgba(200, 65, 65, 0.5);
	z-index: 1;
}
.repas-timeline__list li.repas-timeline__sum::before {
	background: #b13030;
	border-color: #b13030;
}
.repas-timeline__time {
	font-family: var(--font-mono);
	font-size: 0.78rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--ink-faint);
	padding-left: 1.6rem;
	padding-top: 0.15rem;
}
.repas-timeline__event {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}
.repas-timeline__event strong {
	color: var(--navy-900);
	font-size: 1rem;
	line-height: 1.35;
}
.repas-timeline__event span {
	color: var(--ink-mute);
	font-size: 0.88rem;
	line-height: 1.45;
}
.repas-timeline__sum {
	margin-top: 0.4rem;
	padding-top: 0.9rem !important;
	border-top: 1px dashed rgba(200, 65, 65, 0.22);
}
.repas-timeline__sum .repas-timeline__event strong {
	color: #b13030;
}
.repas-timeline__source {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: 1.2rem;
	padding: 0.55rem 0.95rem;
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--ink-mute);
	background: rgba(15, 29, 51, 0.04);
	border: 1px dashed rgba(15, 29, 51, 0.15);
	border-radius: 999px;
	transition: color .2s var(--ease-out), border-color .2s var(--ease-out), background .2s var(--ease-out);
}
.repas-timeline__source .bi-arrow-down { transition: transform .25s var(--ease-out); }
.repas-timeline__source:hover {
	color: var(--navy-900);
	border-color: var(--gold);
	background: rgba(212, 168, 67, 0.08);
}
.repas-timeline__source:hover .bi-arrow-down { transform: translateY(2px); }
@media (max-width: 480px) {
	.repas-timeline { padding: 1.4rem 1.2rem 1.2rem; }
	.repas-timeline__list li { grid-template-columns: 80px 1fr; column-gap: 0.8rem; }
	.repas-timeline__time { padding-left: 1.4rem; font-size: 0.72rem; }
}

/* ===== MOTOR (vehicle page) ===== */
.vehicle-photo {
	position: relative;
	aspect-ratio: 4 / 3;
}
.vehicle-photo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.engine-variants {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
	gap: 1.6rem;
}
@media (max-width: 480px) {
	.engine-variants { grid-template-columns: 1fr; }
}
.engine-card {
	background: var(--bg-card);
	border: 1px solid var(--line-soft);
	border-radius: var(--radius-lg);
	padding: 2rem 1.9rem;
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
	box-shadow: var(--shadow-sm);
	transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), border-color .3s var(--ease-out);
}
.engine-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
	border-color: rgba(212, 168, 67, 0.35);
}
.engine-card__head {
	display: flex;
	align-items: center;
	gap: 1rem;
}
.engine-card__code {
	font-family: var(--font-mono);
	font-weight: 700;
	font-size: 0.9rem;
	letter-spacing: 0.06em;
	color: var(--gold);
	background: var(--gold-soft);
	border: 1px solid rgba(212, 168, 67, 0.32);
	padding: 0.35rem 0.7rem;
	border-radius: var(--radius-sm);
}
.engine-card__title {
	font-size: 1.45rem;
	color: var(--navy-900);
	margin: 0;
	letter-spacing: -0.005em;
	flex: 1; min-width: 0;
}
.engine-card__specs {
	margin: 0;
	padding: 1rem 0;
	border-top: 1px solid var(--line-soft);
	border-bottom: 1px solid var(--line-soft);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.9rem 1.4rem;
}
.engine-card__specs > div { min-width: 0; }
.engine-card__specs dt {
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ink-faint);
	margin-bottom: 0.15rem;
}
.engine-card__specs dd {
	margin: 0;
	font-size: 0.97rem;
	color: var(--navy-900);
	font-weight: 600;
}
.engine-card > p {
	color: var(--ink-mute);
	font-size: 0.96rem;
	line-height: 1.55;
	margin: 0;
}
.engine-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--gold);
	font-weight: 600;
	font-size: 0.95rem;
	padding: 0.65rem 1.1rem;
	border: 1.5px solid var(--gold);
	border-radius: var(--radius-sm);
	background: transparent;
	margin-top: auto;
	align-self: flex-start;
	transition: background .25s var(--ease-out), color .2s var(--ease-out), border-color .2s var(--ease-out);
}
.engine-card__cta .bi { transition: transform .25s var(--ease-out); }
.engine-card__cta:hover {
	background: var(--gold);
	color: var(--navy-900);
	border-color: var(--gold);
}
.engine-card__cta:hover .bi { transform: translateX(3px); }

.engine-codes {
	border-radius: var(--radius-sm);
	background: var(--navy-50);
	padding: 1rem 1.1rem;
}
.engine-codes__title {
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ink-faint);
	margin-bottom: 0.6rem;
}
.engine-codes__list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
}
.engine-codes__list li {
	display: grid;
	grid-template-columns: 110px 1fr;
	gap: 0.7rem;
	font-size: 0.88rem;
	line-height: 1.4;
	align-items: baseline;
}
/* `--wide` modifier — širší pill stĺpec pre dlhšie labely (VW Transporter
   "T5 facelift (EA189)", Crafter "Mk1 (EA189) Bi-TDI" atď. nezmestia sa
   do default 110px). Aplikuje sa na <ul class="engine-codes__list engine-codes__list--wide">. */
.engine-codes__list--wide li { grid-template-columns: 170px 1fr; }
.engine-codes__norm {
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--gold);
	font-weight: 700;
	background: var(--gold-soft);
	padding: 0.18rem 0.55rem;
	border-radius: 999px;
	text-align: center;
	white-space: nowrap;
}
.engine-codes__codes {
	color: var(--navy-800);
	font-family: var(--font-mono);
	font-size: 0.85rem;
	word-break: break-word;
}
.engine-codes__list--inline {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
	margin-top: 0.6rem;
}
@media (min-width: 992px) {
	.engine-codes__list--inline { grid-template-columns: repeat(4, 1fr); }
}
.engine-codes__list--inline li {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.35rem;
}
@media (max-width: 720px) {
	.engine-codes__list--inline { grid-template-columns: 1fr; }
}

.engine-legacy {
	margin-top: 1.6rem;
	background:
		linear-gradient(135deg, rgba(15,29,51,0.04), transparent 50%),
		var(--bg-card);
	border: 1px dashed var(--line);
	border-radius: var(--radius-lg);
	padding: 1.8rem 1.9rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.engine-legacy__head {
	display: flex;
	align-items: center;
	gap: 1rem;
}
.engine-legacy__title {
	font-size: 1.25rem;
	color: var(--navy-900);
	margin: 0;
	letter-spacing: -0.005em;
}
.engine-legacy p {
	color: var(--ink-soft);
	font-size: 0.96rem;
	line-height: 1.55;
	margin: 0;
}

/* CTA band — bohatšie navy pozadie s zlatým spotlightom z pravej strany
   (smerom k CTA tlačidlu) + jemné koncentrické kruhy ako pri stats sekcii.
   Konzistentný engineering vocabulary naprieč webom. */
.section-cta-band {
	position: relative;
	padding: 3.4rem 0 3.6rem;
	background:
		/* 1. Gold spotlight emanujúci spoza CTA tlačidla (pravá strana) */
		radial-gradient(ellipse 55% 110% at 100% 50%, rgba(212,168,67,0.22), transparent 60%),
		/* 2. Cool blue ambient z ľavej strany — counter-tone, hĺbka */
		radial-gradient(ellipse 45% 80% at 0% 50%, rgba(74,111,165,0.16), transparent 65%),
		/* 3. Diagonálny navy gradient base — depth */
		linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 55%, var(--navy-900) 100%);
	overflow: hidden;
	isolation: isolate;
}
.section-cta-band::before {
	content: "";
	position: absolute; inset: 0;
	background: repeating-radial-gradient(
		circle at 100% 50%,
		transparent 0 49px,
		rgba(255,255,255,0.04) 49px 50px
	);
	mask-image: radial-gradient(ellipse 70% 90% at 100% 50%, #000 25%, transparent 75%);
	-webkit-mask-image: radial-gradient(ellipse 70% 90% at 100% 50%, #000 25%, transparent 75%);
	pointer-events: none;
	z-index: -1;
}
.cta-band {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 2rem;
	align-items: center;
}
.cta-band .section-title { color: #fff; margin-bottom: 0.4rem; font-size: clamp(1.7rem, 3vw, 2.2rem); }
.cta-band .section-lead { color: rgba(255,255,255,0.78); margin: 0; max-width: 720px; }
.section-cta-band.section-light .cta-band .section-title,
.section-cta-band.section-tint .cta-band .section-title { color: var(--navy-900); }
.section-cta-band.section-light .cta-band .section-lead,
.section-cta-band.section-tint .cta-band .section-lead { color: var(--ink-mute); }
@media (max-width: 720px) {
	.cta-band { grid-template-columns: 1fr; gap: 1.2rem; }
	.cta-band .btn-lg-cta { width: 100%; justify-content: center; }
}

.parts-grid--compact { gap: 1.1rem; }
.parts-grid--compact .part-card { padding: 1.5rem 1.4rem; }

/* ===== NÁHRADNÉ DIELY (page) ===== */
.parts-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.4rem;
}
@media (max-width: 991px) {
	.parts-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
	.parts-grid { grid-template-columns: 1fr; }
}
.part-card {
	background: var(--bg-card);
	border: 1px solid var(--line-soft);
	border-radius: var(--radius-lg);
	padding: 1.8rem 1.6rem 4.6rem;
	display: grid;
	grid-template-columns: auto 1fr;
	column-gap: 1rem;
	row-gap: 0.7rem;
	align-items: center;
	box-shadow: var(--shadow-sm);
	position: relative;
	transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), border-color .3s var(--ease-out);
}
.part-card:hover,
.part-card:focus-within {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
	border-color: rgba(212, 168, 67, 0.35);
}
.part-card__icon {
	grid-column: 1; grid-row: 1;
	width: 48px; height: 48px;
	border-radius: 12px;
	background: var(--gold-soft);
	color: var(--gold);
	display: grid; place-items: center;
	font-size: 1.4rem;
	transition: background .3s var(--ease-out), color .3s var(--ease-out);
}
.part-card:hover .part-card__icon {
	background: var(--gold);
	color: var(--navy-900);
}
.part-card__title {
	grid-column: 2; grid-row: 1;
	font-size: 1.25rem;
	color: var(--navy-900);
	margin: 0;
	letter-spacing: -0.005em;
}
.part-card p {
	grid-column: 1 / -1;
	color: var(--ink-mute);
	font-size: 0.95rem;
	line-height: 1.55;
	margin: 0;
}
.part-card__cta {
	position: absolute;
	right: 1.4rem;
	bottom: 1.3rem;
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.5rem 0.95rem;
	background: var(--gold);
	color: var(--navy-900);
	font-weight: 600;
	font-size: 0.9rem;
	border-radius: var(--radius-sm);
	box-shadow: 0 6px 16px -8px var(--gold-glow);
	opacity: 0;
	transform: translateY(6px);
	pointer-events: none;
	transition: opacity .25s var(--ease-out), transform .25s var(--ease-out), background .2s var(--ease-out);
}
.part-card__cta .bi { transition: transform .25s var(--ease-out); }
.part-card__cta:hover { background: var(--gold-bright); }
.part-card__cta:hover .bi { transform: translateX(3px); }
.part-card:hover .part-card__cta,
.part-card:focus-within .part-card__cta {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}
@media (hover: none) {
	.part-card { padding-bottom: 1.6rem; }
	.part-card__cta { display: none; }
}

.section-story .section-head {
	max-width: 880px;
	margin-left: auto;
	margin-right: auto;
}
.story-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.6rem;
	align-items: stretch;
}
.story-card {
	background: var(--bg-card);
	border: 1px solid var(--line-soft);
	border-radius: var(--radius-lg);
	padding: 2rem 1.9rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	box-shadow: var(--shadow-sm);
	position: relative;
	overflow: hidden;
	transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.story-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.story-card::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	background: radial-gradient(circle at 100% 0%, rgba(200, 65, 65, 0.08), transparent 55%);
}
.story-card::after {
	content: "\F33A";
	font-family: "bootstrap-icons";
	position: absolute;
	top: -12px; right: -12px;
	font-size: 8rem;
	line-height: 1;
	color: rgba(200, 65, 65, 0.06);
	pointer-events: none;
	z-index: 0;
}
.story-card--problem {
	border-color: rgba(200, 65, 65, 0.22);
}
.story-card--solution {
	border-color: rgba(212, 168, 67, 0.32);
}
.story-card--solution::before {
	background: radial-gradient(circle at 100% 0%, rgba(212, 168, 67, 0.12), transparent 55%);
}
.story-card--solution::after {
	content: "\F26A";
	color: rgba(212, 168, 67, 0.10);
}
.story-card > * { position: relative; z-index: 1; }
.story-card__tag {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	font-family: var(--font-mono);
	font-size: 12px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #b13030;
	padding: 0.35rem 0.7rem;
	background: rgba(200, 65, 65, 0.08);
	border: 1px solid rgba(200, 65, 65, 0.22);
	border-radius: 999px;
	align-self: flex-start;
}
.story-card__tag--good {
	color: var(--gold);
	background: rgba(212, 168, 67, 0.1);
	border-color: rgba(212, 168, 67, 0.3);
}
.story-card p {
	color: var(--ink-soft);
	font-size: 1rem;
	line-height: 1.65;
	margin: 0;
}
.story-quote {
	margin: 0;
	padding: 1rem 1.2rem;
	border-radius: var(--radius-sm);
	font-style: italic;
	font-size: 1.02rem;
	line-height: 1.55;
}
.story-card--problem .story-quote {
	background: rgba(200, 65, 65, 0.08);
	color: var(--navy-900);
}
.story-card--solution .story-quote {
	background: rgba(212, 168, 67, 0.1);
	color: var(--navy-900);
}
.story-card__list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-top: auto;
	padding-top: 0.5rem;
}
.story-card__list li {
	position: relative;
	padding-left: 1.6rem;
	font-size: 0.95rem;
	color: var(--ink-soft);
	line-height: 1.5;
}
.story-card__list li::before {
	content: "";
	position: absolute;
	left: 0; top: 0.55em;
	width: 14px; height: 14px;
	border-radius: 50%;
	display: grid; place-items: center;
}
.story-card__list--bad li::before {
	background: rgba(200, 65, 65, 0.14);
	color: #b13030;
}
.story-card__list--bad li::after {
	content: "\2715";
	position: absolute;
	left: 3px; top: 0.45em;
	font-size: 9px;
	font-weight: 700;
	color: #b13030;
	line-height: 1;
}
.story-card__list--good li::before {
	background: rgba(212, 168, 67, 0.18);
}
.story-card__list--good li::after {
	content: "\2713";
	position: absolute;
	left: 2px; top: 0.4em;
	font-size: 10px;
	font-weight: 700;
	color: var(--gold);
	line-height: 1;
}
@media (max-width: 880px) {
	.story-grid { grid-template-columns: 1fr; gap: 1.2rem; }
}

/* ===== LEGAL (VOP / GDPR) ===== */
.legal-content {
	max-width: 880px;
	color: var(--ink-soft);
	font-size: 1rem;
	line-height: 1.7;
}
.legal-content > * + * { margin-top: 1rem; }
.legal-content h2 {
	font-family: var(--font-display);
	font-size: 1.55rem;
	color: var(--navy-900);
	margin-top: 2.6rem;
	margin-bottom: 0rem;
	letter-spacing: -0.005em;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
	font-family: var(--font-display);
	font-size: 1.25rem;
	color: var(--navy-700);
	margin-top: 1.8rem;
	margin-bottom: 0;
}
.legal-content p {
	margin: 0;
	padding-left: 1.6rem;
	padding-top: 0.5rem;
}
/* Číslované odseky (1.1, 5.4, …) — číslo v gold farbe + hanging indent
   (text pri zalomení pokračuje za číslom, nie pod ním).
   Používame text-indent trick: padding-left posunie celý odsek vpravo,
   text-indent: -<n>rem vytiahne prvý riadok späť aby sa zmestilo číslo.
   Funguje s ľubovoľným inline obsahom (<strong>, <a>, …) — žiadne grid
   cells na inline children. */
.legal-content p:has(.legal-num) {
	padding-left: 4rem;
	text-indent: -2.4rem;
}
.legal-content .legal-num {
	display: inline-block;
	width: 2.4rem;     /* fixed — text za číslom začína presne na 4rem (= padding-left), match wrap */
	color: var(--gold);
	font-weight: 600;
	font-variant-numeric: tabular-nums;
	text-indent: 0;    /* number sa nesmie posunúť cez parent text-indent */
}
.legal-content ul,
.legal-content ol {
	margin: 0.4rem 0 0;
	padding-left: 3.4rem;
}
.legal-content ul li,
.legal-content ol li { margin-bottom: 0.35rem; }
/* Info list — všetky <ul> v VOP/GDPR. Bez default bullets, vlastný `-` marker.
   Odsadený trochu viac než wrap text v `<p>:has(.legal-num)` (4rem) aby bol
   zoznam vizuálne podradený pod číslovaný odsek. */
.legal-content .legal-info-list {
	list-style: none;
	padding-left: 5.4rem;
	margin: 0.3rem 0 0;
}
.legal-content .legal-info-list li {
	position: relative;
	margin-bottom: 0.15rem;
}
.legal-content .legal-info-list li::before {
	content: '-';
	position: absolute;
	left: -1rem;
	color: var(--gold);
	font-weight: 600;
}
.legal-content ul li:last-child,
.legal-content ol li:last-child { margin-bottom: 0; }
.legal-content a {
	color: var(--navy-700);
	text-decoration: underline;
	text-underline-offset: 2px;
	transition: color .2s var(--ease-out);
}
.legal-content a:hover { color: var(--gold); }
@media (max-width: 720px) {
	.legal-content h2 { font-size: 1.35rem; margin-top: 2rem; }
	.legal-content { font-size: 0.97rem; }
}

.section-cta { padding: 4rem 0 5rem; text-align: center; }
.section-cta .cta-inner {
	max-width: 700px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}
.section-cta .section-title { color: #fff; }
.section-cta .section-lead { color: rgba(255,255,255,0.78); }
.section-cta .btn-lg-cta { margin-top: 0.6rem; }
.section-cta.section-tint .section-title,
.section-cta.section-light .section-title { color: var(--navy-900); }
.section-cta.section-tint .section-lead,
.section-cta.section-light .section-lead { color: var(--ink-mute); }

/* ===== PRENÁJOM (page) ===== */
.rent-gallery {
	position: relative;
	aspect-ratio: 4 / 3;
}
.rent-gallery__main,
.rent-gallery__sub {
	position: absolute;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	object-fit: cover;
}
.rent-gallery__main {
	top: 0; left: 0;
	width: 75%; height: 80%;
	z-index: 1;
}
.rent-gallery__sub {
	right: 0; bottom: 0;
	width: 55%; height: 55%;
	z-index: 2;
	border: 6px solid var(--bg);
}

.rent-iframe {
	background: var(--bg-card);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-md);
	border: 1px solid var(--line-soft);
	overflow-anchor: none;
}
.rent-iframe iframe {
	width: 100%;
	height: 1020px;
	border: 0;
	display: block;
	overflow-anchor: none;
}

.rent-steps {
	display: flex;
	flex-direction: column;
	gap: 0.9rem;
}

.rent-qr {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.8rem;
	padding: 1.8rem;
	background: var(--bg-card);
	border: 1px solid var(--line-soft);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	max-width: 390px;
	margin: 0 auto;
	transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
@media (max-width: 991px) {
	.rent-qr { max-width: 320px; }
}
.rent-qr:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.rent-qr img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: var(--radius-sm);
}
.rent-qr__hint {
	font-family: var(--font-mono);
	font-size: 12px;
	letter-spacing: 0.06em;
	color: var(--ink-mute);
	text-transform: uppercase;
	text-align: center;
}
.rent-step {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
	padding: 1.4rem 1.4rem 1.5rem;
	background: var(--bg-card);
	border: 1px solid var(--line-soft);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
	transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.rent-step:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.rent-step__num {
	width: 38px; height: 38px;
	border-radius: 50%;
	background: var(--navy-50);
	color: var(--navy-700);
	display: grid; place-items: center;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.05rem;
	flex-shrink: 0;
}
.rent-step__title {
	font-size: 1.15rem;
	color: var(--navy-900);
	margin-bottom: 0.3rem;
}
.rent-step__text {
	color: var(--ink-mute);
	font-size: 0.94rem;
	line-height: 1.45;
}
.rent-step--success .rent-step__num {
	background: var(--good-soft);
	color: var(--good);
	font-size: 1.2rem;
}

@media (max-width: 720px) {
	.rent-gallery { aspect-ratio: 5 / 4; }
	.rent-iframe iframe { height: 900px; }
}

/* ===== FORM ===== */
.section-form { padding-bottom: 7.5rem; }

.form-bullets {
	display: flex; flex-direction: column; gap: 0.7rem;
	margin: 1.6rem 0 2rem;
	padding-left: 1rem;
}
.form-bullets li {
	display: flex; align-items: center; gap: 0.6rem;
	color: var(--ink-soft);
	font-size: 0.97rem;
}
.form-bullets .bi { color: var(--good); font-size: 1.15rem; }

.form-contact { display: flex; flex-direction: column; gap: 0.8rem; }
.form-contact-row {
	display: flex; align-items: center; gap: 0.9rem;
	padding: 0.9rem 1.1rem;
	background: var(--bg-card);
	border: 1px solid var(--line-soft);
	border-radius: var(--radius-md);
	transition: border-color .25s var(--ease-out), transform .25s var(--ease-out);
}
.form-contact-row:hover { border-color: var(--gold); transform: translateY(-2px); }
.form-contact-row .bi {
	width: 40px; height: 40px;
	border-radius: 50%;
	background: var(--navy-50);
	color: var(--navy-700);
	display: grid; place-items: center;
	font-size: 1rem; flex-shrink: 0;
}
.form-contact-row span {
	display: block; font-size: 12px;
	color: var(--ink-faint); font-family: var(--font-mono);
	text-transform: uppercase; letter-spacing: 0.08em;
}
.form-contact-row strong { display: block; color: var(--navy-900); font-size: 1.05rem; }

.quote-form {
	background: var(--bg-card);
	border-radius: var(--radius-lg);
	padding: 2.2rem 2.2rem 2.4rem;
	border: 1px solid var(--line-soft);
	box-shadow: var(--shadow-md);
}
/* Draft notice — zobrazuje sa keď je vo formulári obnovený rozpracovaný stav.
   Modrý info banner — UX štandard pre informational state (nie warning ani success). */
.form-draft-notice {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.6rem 0.9rem;
	margin-bottom: 1.4rem;
	background: #e3eefb;
	border: 1px solid #92b6e0;
	border-radius: var(--radius-sm);
	font-size: 0.86rem;
	color: #1e4d8a;
}
.form-draft-notice .bi { color: #1e4d8a; flex-shrink: 0; font-size: 1rem; }
.form-draft-notice__text { flex: 1; }
.form-draft-notice__clear {
	background: none;
	border: 0;
	cursor: pointer;
	padding: 0.25rem 0.55rem;
	border-radius: var(--radius-xs);
	font-size: 0.82rem;
	font-weight: 600;
	color: #1e4d8a;
	text-decoration: underline;
	text-underline-offset: 2px;
	transition: color .15s var(--ease-out);
}
.form-draft-notice__clear:hover { color: var(--bad); }

.form-head {
	display: flex; align-items: center; gap: 1rem;
	margin-bottom: 1.4rem;
}
.form-head-2 { margin-top: 2rem; padding-top: 1.6rem; border-top: 1px dashed var(--line); }
.form-head-num {
	width: 44px; height: 44px;
	flex-shrink: 0;
	border-radius: var(--radius-sm);
	background: var(--navy-900);
	color: var(--gold-bright);
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.05rem;
	display: grid; place-items: center;
}
.form-head-num .bi { font-size: 1.25rem; line-height: 1; }
.form-head h3 { font-size: 1.35rem; color: var(--navy-900); }
.form-head p { font-size: 0.92rem; color: var(--ink-mute); margin-top: 2px; }
/* Pomocné texty pod nadpismi formulárových sekcií — dočasne skryté.
   Pre návrat: zmazať / zakomentovať tento blok. */
.form-head p { display: none; }

/* Floating-label fields */
.float-field {
	position: relative;
}
.float-field input,
.float-field select,
.float-field textarea {
	width: 100%;
	padding: 1.4rem 1rem 0.55rem;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	background: var(--bg);
	font-family: var(--font-body);
	font-size: 15px;
	color: var(--navy-900);
	transition: border-color .25s var(--ease-out), background .25s var(--ease-out), box-shadow .25s var(--ease-out);
	outline: none;
}
.float-field--area textarea {
	padding-top: 1.6rem;
	resize: vertical;
	min-height: 110px;
}
.float-field select {
	appearance: none;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none'><path d='M1 1l5 5 5-5' stroke='%231e3a5f' stroke-width='1.5' stroke-linecap='round'/></svg>");
	background-repeat: no-repeat;
	background-position: right 14px center;
	background-size: 12px;
	padding-right: 2.2rem;
}
.float-field label {
	position: absolute;
	left: 1rem;
	top: 50%;
	transform: translateY(-50%);
	font-size: 14.5px;
	color: var(--ink-mute);
	pointer-events: none;
	transition: all .2s var(--ease-out);
	background: transparent;
}
.float-field--area label {
	top: 1.1rem; transform: none;
}
.float-field input:focus,
.float-field select:focus,
.float-field textarea:focus {
	border-color: var(--navy-600);
	background: #fff;
	box-shadow: 0 0 0 4px rgba(74,111,165,0.12);
}
.float-field input:focus + label,
.float-field input:not(:placeholder-shown) + label,
.float-field textarea:focus + label,
.float-field textarea:not(:placeholder-shown) + label,
.float-field select:focus + label,
.float-field select:valid + label {
	top: 10px;
	transform: none;
	font-size: 11px;
	font-family: var(--font-mono);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--navy-600);
}
.float-field.error input,
.float-field.error select,
.float-field.error textarea {
	border-color: var(--bad);
	background: #fff7f7;
}
.float-field.error label { color: var(--bad); }

/* Chybová správa pod poľom — pridáva sa cez JS pri server validácii.
   Sama o sebe je element-mimo-wrapper, takže si nesie vlastný margin-top. */
.field-error {
	margin-top: 0.4rem;
	font-size: 0.82rem;
	line-height: 1.4;
	color: var(--bad);
	display: flex;
	align-items: flex-start;
	gap: 0.4rem;
}
.field-error::before {
	content: '⚠';
	flex-shrink: 0;
	font-size: 0.9rem;
	line-height: 1.4;
}

.field-hint {
	margin-top: 0.45rem;
	font-size: 0.82rem;
	line-height: 1.4;
	color: var(--ink-mute);
}
.field-hint code {
	font-family: var(--font-mono);
	font-size: 0.85em;
	padding: 0.05rem 0.35rem;
	background: var(--bg);
	border: 1px solid var(--line-soft);
	border-radius: 4px;
	color: var(--navy-700);
}

/* Form promise — pozitívny "value prop" badge.
   Výraznejší než .field-hint (gold + ikona), ale stále tichší než CTA. */
.form-promise {
	display: inline-flex;
	align-items: flex-start;
	gap: 0.45rem;
	margin-bottom: 0.6rem;
	padding: 0.45rem 0.7rem;
	background: rgba(212, 168, 67, 0.08);
	border: 1px solid rgba(212, 168, 67, 0.25);
	border-radius: var(--radius-sm);
	font-size: 0.85rem;
	line-height: 1.45;
	color: var(--navy-700);
}
.form-promise .bi {
	font-size: 1rem;
	color: var(--gold);
	flex-shrink: 0;
	margin-top: 0.1rem;
}
.form-promise strong { color: var(--gold); font-weight: 600; }

/* Promise umiestnené v hlavičke sekcie — vpravo vedľa nadpisu.
   Nutné aby form-head text-blok mal flex: 1, aby promise zostalo vpravo. */
.form-head .form-head__text { flex: 1; min-width: 0; }
.form-promise--head {
	margin-bottom: 0;
	max-width: 295px;
	flex-shrink: 0;
}
@media (max-width: 768px) {
	.form-head { flex-wrap: wrap; }
	.form-promise--head { width: 100%; max-width: none; margin-top: 0.4rem; }
}

.vin-info {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	margin-top: 0.45rem;
	padding: 0.5rem 0.7rem;
	font-size: 0.88rem;
	font-family: var(--font-mono);
	border-radius: var(--radius-xs);
	line-height: 1.35;
}
.vin-info .bi { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.vin-info-text { display: flex; flex-direction: column; gap: 0.15rem; }
.vin-info-text small {
	font-family: var(--font-body);
	font-size: 0.85em;
	opacity: 0.85;
}
.vin-info--ok {
	color: var(--good);
	background: var(--good-soft);
	border: 1px solid rgba(47, 122, 82, 0.25);
}
.vin-info--info {
	color: #1e3a8a;
	background: #dbeafe;
	border: 1px solid #93c5fd;
}
.vin-info--warn {
	color: var(--bad);
	background: var(--bad-soft);
	border: 1px solid rgba(161, 58, 58, 0.25);
}

.radio-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0.6rem;
	border: none;
	padding: 0;
	margin: 0 0 1.4rem;
}
.radio-card {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	padding: 0.9rem 0.95rem;
	border: 1.5px solid var(--line);
	border-radius: var(--radius-sm);
	background: var(--bg);
	cursor: pointer;
	transition: all .2s var(--ease-out);
	position: relative;
}
.radio-card input { position: absolute; opacity: 0; pointer-events: none; }
.radio-card .rc-title {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.05rem;
	color: var(--navy-900);
}
.radio-card .rc-desc { font-size: 0.82rem; color: var(--ink-faint); }
.radio-card:hover { border-color: var(--navy-300); background: #fff; }
.radio-card:has(input:checked) {
	border-color: var(--gold);
	background: var(--gold-soft);
	box-shadow: 0 6px 16px -8px var(--gold-glow);
}
.radio-card:has(input:checked) .rc-desc { color: var(--navy-700); }

/* Wrapper pre toggle pillsy (Mám záujem o diely + Nahrať prílohy).
   Diely vľavo, prílohy vpravo. Pri rozbalení dostáva detail celý riadok. */
.form-toggles {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin-bottom: 1.4rem;
}
.form-toggles > details { flex: 0 1 auto; min-width: 0; }
.form-toggles > details[open] { flex-basis: 100%; }
.form-toggles > .form-files { margin-left: auto; }

/* Collapsible panel "Mám záujem aj o náhradné diely" pod typmi motora.
   Native <details> + <summary> — žiadny JS.
   Margin medzi panelmi rieši wrapper .form-toggles. */
.form-parts__toggle {
	list-style: none; /* skryť default disclosure trojuholník */
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.55rem 0.95rem;
	background: var(--bg);
	border: 1px dashed var(--line);
	border-radius: var(--radius-sm);
	color: var(--navy-700);
	font-size: 0.9rem;
	font-weight: 500;
	transition: all .2s var(--ease-out);
	user-select: none;
}
.form-parts__toggle::-webkit-details-marker { display: none; }
.form-parts__toggle:hover {
	border-color: var(--gold);
	border-style: solid;
	color: var(--navy-900);
}
.form-parts__toggle .bi-tools { color: var(--gold); }
.form-parts__chevron {
	margin-left: 0.2rem;
	transition: transform .2s var(--ease-out);
	font-size: 0.85rem;
	opacity: 0.6;
}
/* Badge s počtom vybraných dielov — gold pill v toggle. */
.form-parts__count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 1.4em;
	height: 1.4em;
	padding: 0 0.4em;
	margin-left: 0.15rem;
	background: var(--gold);
	color: var(--navy-900);
	border-radius: 999px;
	font-size: 0.75rem;
	font-weight: 700;
	font-variant-numeric: tabular-nums;
	line-height: 1;
}
.form-parts[open] .form-parts__toggle {
	border-style: solid;
	border-color: var(--gold);
	background: var(--gold-soft);
}
.form-parts[open] .form-parts__chevron { transform: rotate(180deg); }

.form-parts__panel {
	margin-top: 0.8rem;
	padding: 1rem 1.1rem;
	background: var(--bg);
	border: 1px solid var(--line-soft);
	border-radius: var(--radius-sm);
	animation: form-parts-fade .25s var(--ease-out);
}
@keyframes form-parts-fade {
	from { opacity: 0; transform: translateY(-4px); }
	to   { opacity: 1; transform: translateY(0); }
}
.form-parts__hint {
	font-size: 0.85rem;
	color: var(--ink-mute);
	margin: 0 0 0.9rem;
}
.form-parts__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.3rem 0.7rem;
}
@media (max-width: 768px) {
	.form-parts__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
	.form-parts__grid { grid-template-columns: 1fr; }
}
.form-parts__item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.4rem 0.5rem;
	border-radius: var(--radius-xs);
	cursor: pointer;
	font-size: 0.85rem;
	line-height: 1.3;
	color: var(--navy-700);
	transition: background .15s var(--ease-out);
}
.form-parts__item:hover { background: rgba(212,168,67,0.06); }
.form-parts__item input {
	accent-color: var(--gold);
	width: 16px; height: 16px;
	flex-shrink: 0;
	cursor: pointer;
}
.form-parts__item:has(input:checked) {
	color: var(--navy-900);
	font-weight: 600;
}

/* ===== File upload (drop zone + file list) =====
   Štruktúra rovnaká ako .form-parts: <details> + <summary> + panel. */
.form-files__toggle {
	list-style: none;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.55rem 0.95rem;
	background: var(--bg);
	border: 1px dashed var(--line);
	border-radius: var(--radius-sm);
	color: var(--navy-700);
	font-size: 0.9rem;
	font-weight: 500;
	transition: all .2s var(--ease-out);
	user-select: none;
}
.form-files__toggle::-webkit-details-marker { display: none; }
.form-files__toggle:hover {
	border-color: var(--gold);
	border-style: solid;
	color: var(--navy-900);
}
.form-files__toggle .bi-paperclip { color: var(--gold); }
.form-files__chevron {
	margin-left: 0.2rem;
	transition: transform .2s var(--ease-out);
	font-size: 0.85rem;
	opacity: 0.6;
}
.form-files[open] .form-files__toggle {
	border-style: solid;
	border-color: var(--gold);
	background: var(--gold-soft);
}
.form-files[open] .form-files__chevron { transform: rotate(180deg); }

.form-files__panel {
	margin-top: 0.8rem;
	animation: form-parts-fade .25s var(--ease-out);
}

/* Drop zone — klikateľná, s drag-over efektom (state cez .is-dragging class) */
.form-files__drop {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	padding: 1.8rem 1rem;
	background: var(--bg);
	border: 2px dashed var(--navy-200);
	border-radius: var(--radius-sm);
	cursor: pointer;
	text-align: center;
	transition: all .2s var(--ease-out);
}
.form-files__drop:hover,
.form-files__drop:focus-visible,
.form-files__drop.is-dragging {
	border-color: var(--gold);
	background: var(--gold-soft);
	outline: none;
}
.form-files__icon {
	font-size: 1.8rem;
	color: var(--gold);
}
.form-files__drop-text {
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--navy-700);
}
.form-files__drop-hint {
	font-size: 0.8rem;
	color: var(--ink-mute);
}

/* Zoznam nahraných súborov */
.form-files__list {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	margin: 0.8rem 0 0;
	padding: 0;
	list-style: none;
}
.form-files__item {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.55rem 0.7rem;
	background: var(--bg);
	border: 1px solid var(--line-soft);
	border-radius: var(--radius-xs);
	font-size: 0.88rem;
}
.form-files__item.is-uploading { opacity: 0.6; }
.form-files__item.is-error {
	border-color: var(--bad);
	background: #fff7f7;
	color: var(--bad);
}
.form-files__item-icon {
	color: var(--gold);
	font-size: 1.1rem;
	flex-shrink: 0;
}
.form-files__item-name {
	flex: 1;
	color: var(--navy-700);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.form-files__item-size {
	color: var(--ink-mute);
	font-size: 0.8rem;
	flex-shrink: 0;
}
.form-files__item-remove {
	background: none;
	border: 0;
	cursor: pointer;
	color: var(--ink-mute);
	font-size: 1rem;
	padding: 0.2rem 0.35rem;
	border-radius: 4px;
	transition: all .15s var(--ease-out);
	flex-shrink: 0;
}
.form-files__item-remove:hover {
	color: var(--bad);
	background: rgba(229, 62, 62, 0.08);
}

.form-gdpr-note {
	margin: 1rem 0;
	font-size: 0.82rem;
	line-height: 1.5;
	color: var(--ink-mute);
	text-align: center;
}
.form-gdpr-note a { color: var(--navy-700); text-decoration: underline; }

.btn-submit {
	width: 100%;
	padding: 1.05rem 1.4rem;
	font-size: 16px;
	border-radius: var(--radius-md);
	position: relative;
}
.btn-submit .btn-arrow { transition: transform .25s var(--ease-out); }
.btn-submit:hover .btn-arrow { transform: translateX(4px); }
.btn-spinner {
	display: none;
	width: 16px; height: 16px;
	border: 2px solid rgba(10,22,40,0.25);
	border-top-color: var(--navy-900);
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
}
.btn-submit.loading .btn-text { opacity: 0.5; }
.btn-submit.loading .btn-spinner { display: inline-block; }
.btn-submit.loading .btn-arrow { display: none; }
.btn-submit:disabled { cursor: wait; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-success {
	margin-top: 1.4rem;
	padding: 1rem 1.2rem;
	background: var(--good-soft);
	color: var(--good);
	border-radius: var(--radius-md);
	display: flex;
	gap: 0.8rem;
	align-items: flex-start;
	border: 1px solid rgba(47,122,82,0.3);
}
.form-success .bi { font-size: 1.4rem; }
.form-success strong { display: block; color: #114a31; font-weight: 700; }
.form-success span { color: var(--good); font-size: 0.9rem; }

/* ===== FOOTER ===== */
.site-foot {
	background: var(--navy-900);
	color: rgba(255,255,255,0.65);
	padding: 2.5rem 0 2rem;
	position: relative;
	overflow: hidden;
}
.site-foot::before {
	display: none;
}
.foot-top {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1fr;
	gap: 3rem;
	padding-bottom: 3rem;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}
.foot-logo {
	height: 32px;
	width: auto;
	margin-bottom: 1.2rem;
}
.foot-desc { font-size: 0.93rem; line-height: 1.6; max-width: 380px; margin-bottom: 1.4rem; }
.foot-social { display: flex; gap: 0.6rem; }
.foot-social a {
	width: 38px; height: 38px;
	border-radius: 50%;
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.1);
	display: grid; place-items: center;
	color: rgba(255,255,255,0.7);
	transition: all .25s var(--ease-out);
}
.foot-social a:hover {
	background: var(--gold);
	border-color: var(--gold);
	color: var(--navy-900);
	transform: translateY(-2px);
}
.foot-col h4 {
	font-family: var(--font-mono);
	font-weight: 500;
	font-size: 12px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gold-bright);
	margin-bottom: 1.2rem;
}
.foot-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.foot-col a, .foot-hours {
	font-size: 0.95rem;
	color: rgba(255,255,255,0.65);
}
.foot-col a { transition: color .2s var(--ease-out); }
.foot-col a:hover { color: #fff; }

/* Kontakt (telefón/email/hodiny) v brand bloku — pod foot-desc, nad social. */
.foot-contact {
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
	margin-bottom: 1.4rem;
}
.foot-contact li,
.foot-contact a {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	font-size: 0.93rem;
	color: rgba(255,255,255,0.65);
}
.foot-contact a { transition: color .2s var(--ease-out); }
.foot-contact a:hover { color: #fff; }
.foot-contact .bi {
	color: var(--gold);
	font-size: 0.95rem;
	flex-shrink: 0;
}
.foot-contact a:hover .bi { color: var(--gold-bright); }

/* Stĺpec s doménami + vlajky. */
.foot-col--domains a {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
}
/* SVG vlajky lokálne v /assets/img/flags/. Jemný border pre čitateľný okraj
   na navy pozadí (najmä pri vlajkách s bielou — AT, EU má modré pozadie tak OK). */
.foot-domain__flag {
	width: 1.05em;
	height: auto;
	border-radius: 2px;
	box-shadow: 0 0 0 1px rgba(255,255,255,0.12);
	flex-shrink: 0;
	display: block;
}
.foot-col--domains a[aria-current="page"] {
	color: var(--gold-bright);
	font-weight: 600;
}
.foot-bot {
	display: flex; justify-content: space-between; align-items: center;
	padding-top: 2rem;
	font-size: 0.85rem;
	color: rgba(255,255,255,0.45);
	font-family: var(--font-mono);
	letter-spacing: 0.04em;
}
.foot-bot a { transition: color .2s var(--ease-out); }
.foot-bot a:hover { color: rgba(255,255,255,0.8); }

/* ===== REVEAL ANIMATION ===== */
.reveal {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
	will-change: opacity, transform;
}
.reveal.is-visible {
	opacity: 1;
	transform: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
	.foot-top { grid-template-columns: 1fr 1fr; gap: 2.4rem; }
}
@media (max-width: 992px) {
	.nav-toggle { display: inline-flex; }
	.nav-links {
		position: fixed;
		top: 0; left: 0; right: 0;
		z-index: 90;
		background: var(--navy-900);
		padding: calc(var(--nav-h) + 0.6rem) 1.4rem 1.6rem;
		flex-direction: column;
		align-items: stretch;
		gap: 0.4rem;
		transform: translateY(-100%);
		transition: transform .35s var(--ease-out);
		box-shadow: 0 14px 30px -10px rgba(0,0,0,0.4);
		max-height: 100dvh;
		overflow-y: auto;
	}
	.nav-links.is-open { transform: translateY(0); }
	.nav-link {
		padding: 0.8rem 0.4rem;
		font-size: 1.05rem;
		border-bottom: 1px solid rgba(255,255,255,0.06);
	}
	.nav-link::after { display: none; }
	.nav-phone {
		border-left: none;
		padding-left: 0;
		padding: 0.8rem 0.4rem;
		border-bottom: 1px solid rgba(255,255,255,0.06);
	}
	.nav-cta { margin-top: 0.6rem; padding: 0.9rem; font-size: 15px; text-align: center; }

	.steps { grid-template-columns: 1fr; }
	.vs { grid-template-columns: 1fr; }
	.vs-divider { padding: 0.6rem 0; }
	.vs-divider::before, .vs-divider::after { display: none; }
	.counters { grid-template-columns: 1fr 1fr; }
	.faq-aside { position: static; }
}
@media (max-width: 720px) {
	.section { padding: 2.5rem 0 4rem; }
	.section-page-head { padding: calc(var(--nav-h) + 1.6rem) 0 1.6rem; }
	.section-tight { padding: 2rem 0 3rem; }
	.section-head { margin-bottom: 2.4rem; }
	.hero { padding: calc(var(--nav-h) + 1.5rem) 0 5rem; }
	.hero-title { font-size: clamp(2.6rem, 11vw, 4rem); }
	.hero-cta { gap: 0.6rem; }
	.btn-lg-cta { width: 100%; }
	.btn-ghost { width: 100%; justify-content: center; }
	.reviews { grid-template-columns: 1fr; }
	.review { flex-basis: 280px; }
	.radio-cards { grid-template-columns: 1fr 1fr; }
	.quote-form { padding: 1.6rem 1.4rem 1.8rem; }
	.foot-top { grid-template-columns: 1fr; gap: 2rem; }
	.foot-bot { flex-direction: column; gap: 0.5rem; text-align: center; }
	.vs-col { padding: 1.6rem 1.4rem; }
	.motor-body { padding: 1.4rem 1.4rem 1.6rem; }
	.form-contact { display: none; }
	.form-bullets { margin-bottom: 0; }
}
@media (max-width: 480px) {
	.counters { grid-template-columns: 1fr; }
	body { font-size: 16px; }
}
