/* Mobil WC Délkelet — saját design, a Kirby-alapú újraépítéshez */

:root {
	--color-primary: #0181f5;
	--color-primary-dark: #0468c4;
	--color-brand: #393186;
	--color-brand-dark: #2b2566;
	--color-cta: #e8262c;
	--color-cta-dark: #c81e23;
	--color-title: #010f34;
	--color-body: #4b5266;
	--color-muted: #788094;
	--color-bg: #ffffff;
	--color-bg-alt: #f5f7fa;
	--color-surface: #ffffff;
	--color-border: #d8dde1;
	--font-title: "Outfit", sans-serif;
	--font-body: "DM Sans", sans-serif;
	--container: 1180px;
	--radius: 14px;
	--color-footer-bg: #010f34;
	color-scheme: light;
}

/* Sötét mód: automatikusan a rendszerbeállítás alapján, hacsak a látogató
   a fejléc kapcsolójával kézzel felül nem írja (data-theme attribútum). */
@media (prefers-color-scheme: dark) {
	:root:not([data-theme="light"]) {
		--color-primary: #4da3ff;
		--color-primary-dark: #7cbcff;
		--color-brand: #6a5fd6;
		--color-brand-dark: #8880e0;
		--color-cta: #ff5a60;
		--color-cta-dark: #ff7a7f;
		--color-title: #f4f6fb;
		--color-body: #c3c8d6;
		--color-muted: #8b93a8;
		--color-bg: #0c1120;
		--color-bg-alt: #131a2e;
		--color-surface: #171f38;
		--color-border: #2a3350;
		color-scheme: dark;
	}
}
:root[data-theme="dark"] {
	--color-primary: #4da3ff;
	--color-primary-dark: #7cbcff;
	--color-brand: #6a5fd6;
	--color-brand-dark: #8880e0;
	--color-cta: #ff5a60;
	--color-cta-dark: #ff7a7f;
	--color-title: #f4f6fb;
	--color-body: #c3c8d6;
	--color-muted: #8b93a8;
	--color-bg: #0c1120;
	--color-bg-alt: #131a2e;
	--color-surface: #171f38;
	--color-border: #2a3350;
	color-scheme: dark;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 150px; }

html, body { overflow-x: hidden; }

body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--color-body);
	background: var(--color-bg);
	line-height: 1.65;
	transition: background-color .2s ease, color .2s ease;
}

h1, h2, h3, h4 {
	font-family: var(--font-title);
	color: var(--color-title);
	line-height: 1.25;
	margin: 0 0 .5em;
}

p { margin: 0 0 1em; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 20px;
}

.section { padding: 90px 0; }
.alt-bg { background: var(--color-bg-alt); }
.text-center { text-align: center; }

.eyebrow {
	display: inline-block;
	color: var(--color-primary);
	font-weight: 700;
	text-transform: uppercase;
	font-size: .8rem;
	letter-spacing: .06em;
	margin-bottom: .6em;
}

.section-title { margin-bottom: 2.5rem; }
.section-title h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }

/* Görgetéses beúszó animáció — a szekciók/kártyák finoman jelennek meg,
   ahogy a látogató lefelé görget. JS adja hozzá az .is-visible osztályt
   (IntersectionObserver), amint az elem a nézetbe ér. */
.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-group > * { transition-delay: calc(var(--reveal-i, 0) * 80ms); }

@media (prefers-reduced-motion: reduce) {
	.reveal { opacity: 1; transform: none; transition: none; }
	html { scroll-behavior: auto; }
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .4em;
	padding: .8em 1.6em;
	border-radius: 999px;
	font-weight: 600;
	font-family: var(--font-title);
	border: 2px solid transparent;
	cursor: pointer;
	transition: transform .15s ease, background .2s ease, color .2s ease;
	font-size: .95rem;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--color-primary); color: #fff; }
.btn-primary:hover { background: var(--color-primary-dark); }
.btn-ghost { border-color: rgba(255,255,255,.6); color: #fff; }
.btn-outline { border-color: var(--color-primary); color: var(--color-primary); }
.btn-outline:hover { background: var(--color-primary); color: #fff; }

/* Topbar */
.topbar { background: var(--color-brand); color: rgba(255,255,255,.85); font-size: .82rem; }
.topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 9px 20px;
	flex-wrap: wrap;
}
.topbar-welcome strong { color: #fff; }
.topbar-right { display: flex; align-items: center; gap: 1rem; }
.topbar-social-label { display: none; }
.topbar-right a { color: rgba(255,255,255,.85); display: inline-flex; }
.topbar-right a:hover { color: #fff; }

.lang-dropdown { position: relative; }
.lang-dropdown-toggle {
	background: none;
	border: none;
	color: rgba(255,255,255,.85);
	font-size: .82rem;
	font-family: var(--font-body);
	cursor: pointer;
	padding: 4px 0;
	display: inline-flex;
	align-items: center;
	gap: .3em;
}
.lang-dropdown-toggle:hover { color: #fff; }
.lang-dropdown-toggle .caret { font-size: .7em; transition: transform .15s ease; }
.lang-dropdown.is-open .lang-dropdown-toggle .caret { transform: rotate(180deg); }
.lang-dropdown-menu {
	position: absolute;
	top: calc(100% + 12px);
	left: 0;
	background: var(--color-surface);
	border-radius: 8px;
	box-shadow: 0 16px 32px rgba(1,15,52,.18);
	list-style: none;
	margin: 0;
	padding: .4rem 0;
	min-width: 170px;
	display: none;
	z-index: 200;
}
.lang-dropdown.is-open .lang-dropdown-menu { display: block; }
.lang-dropdown-menu a {
	display: flex;
	align-items: center;
	gap: .6em;
	padding: .5em 1em;
	color: var(--color-title);
	font-size: .88rem;
}
.lang-dropdown-menu a:hover { background: var(--color-bg-alt); }
.lang-dropdown-menu a.gt-current-lang { font-weight: 700; color: var(--color-primary); }
.lang-dropdown-menu img { border-radius: 2px; }

.theme-toggle {
	background: rgba(255,255,255,.12);
	border: none;
	color: rgba(255,255,255,.9);
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	flex-shrink: 0;
}
.theme-toggle:hover { background: rgba(255,255,255,.22); color: #fff; }
.theme-toggle .icon-moon { display: none; }
:root[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
:root[data-theme="dark"] .theme-toggle .icon-moon { display: block; }
@media (prefers-color-scheme: dark) {
	:root:not([data-theme="light"]) .theme-toggle .icon-sun { display: none; }
	:root:not([data-theme="light"]) .theme-toggle .icon-moon { display: block; }
}

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--color-surface);
	box-shadow: 0 4px 16px rgba(1,15,52,.06);
}
.header-main {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding: 16px 20px;
}
.logo img { height: 60px; width: auto; }
.header-info-cards { display: flex; align-items: center; gap: 1.6rem; }
.info-card { display: flex; align-items: center; gap: .7rem; }
.info-card-icon {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--color-bg-alt);
	color: var(--color-brand);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.info-card-text { display: flex; flex-direction: column; line-height: 1.3; }
.info-card-text small { color: var(--color-muted); font-size: .75rem; }
.info-card-text a { color: var(--color-title); font-weight: 700; font-size: .92rem; }
.btn-cta {
	background: var(--color-cta);
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
	font-size: .82rem;
	letter-spacing: .02em;
	border-radius: 6px;
	padding: 1em 1.6em;
}
.btn-cta:hover { background: var(--color-cta-dark); }

.main-nav { background: var(--color-brand); }
.main-nav-inner { display: flex; align-items: center; }
.main-nav ul {
	display: flex;
	gap: 1.8rem;
	list-style: none;
	margin: 0;
	padding: 0;
}
.main-nav a {
	display: block;
	padding: 1rem 0;
	font-family: var(--font-title);
	font-weight: 700;
	color: rgba(255,255,255,.9);
	font-size: .82rem;
	text-transform: uppercase;
	letter-spacing: .03em;
}
.main-nav a:hover { color: #fff; }
.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--color-title); display: block; }

@media (max-width: 960px) {
	.header-info-cards .info-card { display: none; }
	.main-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		display: none;
	}
	.main-nav.is-open { display: block; }
	.main-nav ul { flex-direction: column; padding: .5rem 20px 1rem; gap: 0; }
	.main-nav a { padding: .9rem 0; font-size: .88rem; }
	.nav-toggle { display: flex; padding: 10px; }
	.topbar-welcome { font-size: .72rem; }
	html { scroll-padding-top: 80px; }
}

@media (max-width: 480px) {
	.header-main { gap: .6rem; padding: 12px 16px; }
	.logo img { height: 42px; }
	.header-info-cards { gap: .6rem; }
	.btn-cta { padding: .7em .9em; font-size: .68rem; letter-spacing: 0; white-space: nowrap; }
	.topbar-inner { padding: 7px 16px; gap: .5rem; }
	.topbar-welcome { max-width: 55%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
	.container { padding: 0 16px; }
	.theme-toggle { width: 36px; height: 36px; }
	.lang-dropdown-toggle { padding: 10px 0; }
}

/* A hosszú "Ajánlatkérés / Rendelés" fejléc-gomb + logó + hamburger együtt
   nem fér ki keskeny telefonokon (pl. 320-360px, iPhone SE) — ilyen szélesen
   inkább elrejtjük a gombot: a lebegő "Hívjon most" gomb és a hamburger-menü
   "Ajánlatkérés" linkje továbbra is elérhető marad konverziós útként. */
@media (max-width: 400px) {
	.header-main .btn-cta { display: none; }
	.logo img { height: 36px; }
}

/* Hero */
.hero { position: relative; }
.hero-slider { position: relative; height: 640px; max-height: 90vh; overflow: hidden; }
.hero-slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: left center;
	display: flex;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity .8s ease;
}
/* A háttérképekbe már bele van égetve egy sötét bal oldali sáv (az eredeti
   tervezésből), ezért itt csak egy nagyon finom, kiegészítő sötétítés kell —
   a korábbi erősebb overlay a képpel összeadódva túl sötét/kásás hatást adott,
   főleg mobilon, ahol a "cover" vágás miatt a beégetett sáv máshogy esik. */
.hero-slide::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(1,15,52,.35) 0%, rgba(1,15,52,.16) 45%, rgba(1,15,52,.05) 100%);
}
.hero-slide.is-active { opacity: 1; visibility: visible; }
/* A hero szövegének saját, a bal szélhez közelebbi pozíciót adunk — a többi
   szekció középre igazított .container-je szélesebb kijelzőn túl messze
   tolná befelé a feliratot a sötét (bal oldali) sávon belül. */
.hero-slide .container {
	max-width: none;
	margin: 0;
	padding-left: clamp(24px, 7vw, 110px);
	padding-right: 20px;
}
.hero-content { position: relative; max-width: 620px; color: #fff; }
.hero-content h1 { color: #fff; font-size: clamp(1.9rem, 4vw, 3rem); }
.hero-content p { color: rgba(255,255,255,.85); font-size: 1.05rem; }
.hero-buttons { display: flex; gap: 1rem; margin-top: 1.5rem; flex-wrap: wrap; }

/* Hero belépő animáció — csak az épp aktív dián, oldalbetöltéskor / dia-váltáskor */
.hero-content .eyebrow, .hero-content h1, .hero-content p, .hero-buttons {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity .6s ease, transform .6s ease;
}
.hero-slide.is-active .eyebrow { transition-delay: .1s; }
.hero-slide.is-active h1 { transition-delay: .22s; }
.hero-slide.is-active p { transition-delay: .34s; }
.hero-slide.is-active .hero-buttons { transition-delay: .46s; }
.hero-slide.is-active .eyebrow,
.hero-slide.is-active h1,
.hero-slide.is-active p,
.hero-slide.is-active .hero-buttons {
	opacity: 1;
	transform: none;
}
@media (prefers-reduced-motion: reduce) {
	.hero-content .eyebrow, .hero-content h1, .hero-content p, .hero-buttons {
		opacity: 1; transform: none; transition: none;
	}
}
.hero-dots {
	position: absolute;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 2;
}
.hero-dots button {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: none;
	background: rgba(255,255,255,.5);
	cursor: pointer;
	padding: 0;
}
.hero-dots button.is-active { background: #fff; }
.hero-arrows {
	position: absolute;
	right: 30px;
	bottom: 24px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	z-index: 2;
}
.hero-arrow {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,.5);
	background: rgba(255,255,255,.08);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background .2s ease;
}
.hero-arrow:hover { background: var(--color-primary); border-color: var(--color-primary); }
@media (max-width: 700px) {
	.hero-arrows { display: none; }
}

/* About */
.about-grid {
	display: grid;
	grid-template-columns: minmax(260px, 420px) 1fr;
	gap: 3rem;
	align-items: center;
}
.about-images { position: relative; }
.about-img-1 { border-radius: var(--radius); width: 100%; }
.about-img-2 {
	position: absolute;
	bottom: -30px;
	right: -30px;
	width: 45%;
	border: 6px solid #fff;
	border-radius: var(--radius);
	box-shadow: 0 12px 30px rgba(1,15,52,.18);
}
.about-badge {
	position: absolute;
	top: 20px;
	left: -20px;
	background: var(--color-primary);
	color: #fff;
	border-radius: var(--radius);
	padding: 1rem 1.2rem;
	text-align: center;
	box-shadow: 0 12px 24px rgba(1,129,245,.35);
}
.about-badge strong { display: block; font-family: var(--font-title); font-size: 1.6rem; }
.about-badge span { font-size: .78rem; }
.about-content blockquote {
	border-left: 4px solid var(--color-primary);
	padding-left: 1rem;
	font-style: italic;
	color: var(--color-title);
	margin: 1rem 0;
}

/* Features */
.why-intro, .why-outro { max-width: 820px; margin-left: auto; margin-right: auto; text-align: center; }
.features-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.6rem;
	margin: 2.5rem 0;
}
.features-grid .feature-card { flex: 1 1 260px; max-width: 320px; }
.feature-card {
	position: relative;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	padding: 1.8rem;
	overflow: hidden;
	transition: box-shadow .2s ease, transform .2s ease;
}
.feature-card:hover { box-shadow: 0 16px 32px rgba(1,15,52,.1); transform: translateY(-3px); }
.feature-card::before,
.feature-card::after {
	content: "";
	position: absolute;
	width: 26px;
	height: 26px;
	background: var(--color-primary);
	opacity: .12;
}
.feature-card::before { top: 0; left: 0; clip-path: polygon(0 0, 100% 0, 0 100%); }
.feature-card::after { bottom: 0; right: 0; clip-path: polygon(100% 100%, 100% 0, 0 100%); }
.feature-icon { margin-bottom: .8rem; }
.feature-icon img { width: 44px; height: 44px; }
.feature-card h3 { font-size: 1.1rem; }
.feature-card p { font-size: .92rem; color: var(--color-muted); margin: 0; }

/* Tabs / Services */
.tab-buttons { display: flex; justify-content: center; gap: .8rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.tab-btn {
	padding: .7em 1.4em;
	border-radius: 999px;
	border: 2px solid var(--color-border);
	background: var(--color-surface);
	font-family: var(--font-title);
	font-weight: 600;
	cursor: pointer;
}
.tab-btn.is-active { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }
.tab-panel[hidden] { display: none; }
.services-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.6rem;
}
.services-grid .service-card { flex: 1 1 320px; max-width: 380px; }
.service-card {
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--color-surface);
	display: flex;
	flex-direction: column;
}
.service-card-img img { height: 200px; width: 100%; object-fit: cover; }
.service-card-body { padding: 1.4rem; }
.service-card-body p { font-size: .92rem; color: var(--color-muted); }

/* Sötét, márka-hátterű szekciók (videó, számlálók) — mindig sötétek maradnak,
   függetlenül a világos/sötét mód kapcsolótól, az eredeti oldalhoz hasonlóan. */
.dark-bg {
	background:
		radial-gradient(circle at 85% 30%, rgba(255,255,255,.05), transparent 45%),
		repeating-linear-gradient(135deg, rgba(255,255,255,.03) 0 2px, transparent 2px 26px),
		var(--color-footer-bg);
	color: rgba(255,255,255,.75);
}
.dark-bg .eyebrow { color: #8fb8ff; }
.dark-bg h2, .dark-bg h3 { color: #fff; }
.dark-bg p { color: rgba(255,255,255,.7); }

/* Video */
.video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.video-points {
	list-style: none;
	margin: 1.5rem 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(140px, 1fr));
	gap: .8rem;
}
.video-points li {
	display: flex;
	align-items: center;
	gap: .6rem;
	background: rgba(255,255,255,.06);
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 10px;
	padding: .7rem .9rem;
	font-size: .88rem;
	color: #fff;
}
.video-points .check {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	flex-shrink: 0;
	border-radius: 50%;
	background: var(--color-primary);
	color: #fff;
	font-size: .75rem;
}
.video-play {
	position: relative;
	border: none;
	padding: 0;
	cursor: pointer;
	border-radius: var(--radius);
	overflow: hidden;
	width: 100%;
	background: none;
}
.video-play img { width: 100%; height: 340px; object-fit: cover; }
.play-icon {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	color: var(--color-primary);
	background: rgba(255,255,255,.9);
	width: 70px;
	height: 70px;
	border-radius: 50%;
	margin: auto;
}

/* FAQ */
.faq-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 3rem; align-items: start; }
.faq-image img { border-radius: var(--radius); }
.accordion-item { border-bottom: 1px solid var(--color-border); }
.accordion-header {
	width: 100%;
	text-align: left;
	background: none;
	border: none;
	padding: 1.1rem 0;
	font-family: var(--font-title);
	font-weight: 600;
	color: var(--color-title);
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	font-size: 1rem;
}
.accordion-icon { color: var(--color-primary); font-size: 1.2rem; }
.accordion-body { display: none; padding-bottom: 1.1rem; font-size: .93rem; }
.accordion-item.is-open .accordion-body { display: block; }
.accordion-item.is-open .accordion-icon { transform: rotate(45deg); }

/* Stats */
.stats-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.5rem;
	text-align: center;
}
.stats-grid .stat-item { flex: 1 1 180px; max-width: 220px; }
.stat-number { font-size: 2.4rem; color: #fff; }
.stat-number span { font-size: 1.6rem; color: #8fb8ff; }
.stats .stat-item p { color: rgba(255,255,255,.65); }

/* Gallery — "masonry" (Pinterest-szerű) elrendezés: minden kép a saját
   természetes arányában jelenik meg, nem egyenletes, kényszerített
   négyzetes rácsban — élénkebb, kevésbé "dobozos" hatás, és a portré
   tájolású telefonfotók sem vágódnak csúnyán körbe. */
.gallery-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
}
.gallery-item {
	flex: 1 1 200px;
	max-width: 240px;
	border-radius: 10px;
	overflow: hidden;
}
.gallery-item img { width: 100%; height: 170px; object-fit: cover; display: block; transition: transform .3s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item--extra[hidden] { display: none; }
@media (max-width: 700px) {
	.gallery-item { flex-basis: 42%; max-width: none; }
	.gallery-item img { height: 140px; }
}

.lightbox-overlay {
	position: fixed;
	inset: 0;
	background: rgba(1,15,52,.92);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	padding: 40px;
}
.lightbox-overlay.is-open { display: flex; }
.lightbox-overlay img { max-height: 90vh; max-width: 90vw; border-radius: 8px; }
.lightbox-close, .lightbox-prev, .lightbox-next {
	position: absolute;
	background: rgba(255,255,255,.15);
	border: none;
	color: #fff;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	font-size: 1.3rem;
	cursor: pointer;
}
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* Partners */
.partners-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 1.5rem;
}
.partner-logo {
	background: #ffffff;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	padding: 1.1rem 1.6rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: box-shadow .2s ease, transform .2s ease;
}
.partner-logo:hover { box-shadow: 0 12px 28px rgba(1,15,52,.12); transform: translateY(-2px); }
.partner-logo img { height: 56px; width: auto; object-fit: contain; }

/* Reviews */
.reviews-intro { max-width: 640px; margin-left: auto; margin-right: auto; }
.rating-badge {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .7rem;
	margin: 1.4rem auto 0;
	flex-wrap: wrap;
}
.rating-stars { color: #ffb539; font-size: 1.6rem; letter-spacing: .1em; }
.rating-text { color: var(--color-title); font-size: .95rem; }
.rating-text strong { font-family: var(--font-title); font-size: 1.15rem; }

/* Vélemény-futószalag — folyamatosan csúszó kártyák profilképpel és csillagokkal */
.testimonial-ticker {
	position: relative;
	margin: 2.5rem 0 0;
	width: 100%;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(90deg, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
	mask-image: linear-gradient(90deg, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
}
.testimonial-track {
	display: flex;
	width: max-content;
	gap: 20px;
	padding: 4px 0;
	animation: testimonial-scroll 30s linear infinite;
	will-change: transform;
}
@media (hover: hover) and (pointer: fine) {
	.testimonial-ticker:hover .testimonial-track { animation-play-state: paused; }
}
@keyframes testimonial-scroll {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}
.testimonial-card {
	flex: 0 0 auto;
	width: min(78vw, 340px);
	display: flex;
	align-items: flex-start;
	gap: .9rem;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: 14px;
	padding: 1.1rem 1.2rem;
	box-shadow: var(--shadow-sm, 0 2px 10px rgba(0,0,0,.05));
}
.testimonial-avatar {
	flex: 0 0 auto;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	overflow: hidden;
	background: var(--color-brand);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-title);
	font-weight: 700;
	font-size: 1rem;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-body { text-align: left; min-width: 0; }
.testimonial-stars { color: #ffb539; letter-spacing: .1em; margin-bottom: .35rem; font-size: .95rem; }
.testimonial-text {
	font-size: .92rem;
	font-style: italic;
	color: var(--color-title);
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.testimonial-name { font-family: var(--font-title); font-weight: 700; font-size: .88rem; margin-top: .4rem; margin-bottom: 0; }
.testimonial-subtitle { color: var(--color-muted); font-size: .8rem; font-weight: 400; }
@media (prefers-reduced-motion: reduce) {
	.testimonial-track { animation: none; }
	.testimonial-ticker { overflow-x: auto; }
}

/* Forms */
.forms-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2rem;
}
.form-card { background: var(--color-surface); border-radius: var(--radius); padding: 2rem; border: 1px solid var(--color-border); }
.site-form { display: grid; gap: 1rem; margin-top: 1.2rem; }
.site-form label { display: grid; gap: .4rem; font-size: .9rem; font-weight: 600; color: var(--color-title); }
.site-form input, .site-form select, .site-form textarea {
	font-family: var(--font-body);
	font-size: 1rem;
	padding: .7em .9em;
	border-radius: 8px;
	border: 1px solid var(--color-border);
	background: var(--color-bg-alt);
	color: var(--color-title);
	font-weight: 400;
}
.site-form input[aria-invalid="true"] { border-color: #dc3545; }
.form-message { padding: .9em 1.1em; border-radius: 8px; font-size: .92rem; }
.form-message--success { background: #e6f7ec; color: #1e7a3d; }
.form-message--error { background: #fdecee; color: #c0293b; }

/* Footer */
.site-footer { background: var(--color-footer-bg); color: rgba(255,255,255,.75); }
.service-area {
	display: flex;
	align-items: center;
	gap: 2rem;
	padding: 44px 20px 6px;
}
.service-area-graphic { flex-shrink: 0; width: 260px; }
.service-area-graphic img { width: 100%; height: auto; }
.service-area-text h3 { color: #fff; margin-bottom: .8rem; }
.service-area-tags { display: flex; flex-wrap: wrap; gap: .6rem; }
.service-area-tags span {
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.16);
	border-radius: 999px;
	padding: .4em 1em;
	font-size: .82rem;
	white-space: nowrap;
}
@media (max-width: 860px) {
	.service-area { flex-direction: column; text-align: center; padding-top: 40px; }
	.service-area-graphic { width: 220px; }
}
@media (max-width: 480px) {
	.service-area-tags { justify-content: center; }
}
.footer-top {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	gap: 2.5rem;
	padding: 60px 20px;
}
.footer-logo { height: 40px; margin-bottom: 1rem; }
.site-footer h3 { color: #fff; font-size: 1rem; }
.footer-contact, .footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; font-size: .9rem; }
.footer-links a:hover { color: #fff; }
.footer-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(255,255,255,.1);
	margin-top: .8rem;
}
.footer-bottom {
	border-top: 1px solid rgba(255,255,255,.12);
	padding: 20px;
	text-align: center;
	font-size: .85rem;
}

@media (max-width: 860px) {
	.section { padding: 56px 0; }
	.about-grid, .video-grid, .faq-grid { grid-template-columns: 1fr; }
	.about-images { margin: 0 16px 3.5rem; }
	.about-badge { left: 0; }
	.about-img-2 { right: 0; }
	.footer-top { grid-template-columns: 1fr; }
	.hero-slider { height: 520px; }
	/* Keskeny, magas kijelzőn a "cover" vágás a kép bal szélét (a beégetett
	   sötét sávot) tolja a látható részbe, a tényleges fotó eltűnik. Mobilon
	   inkább középről mutatjuk a képet, és egy teljes, egyenletes sötétítést
	   teszünk rá — így a fotó is látszik, a szöveg is olvasható marad. */
	.hero-slide { background-position: center center; }
	.hero-slide::before {
		background: linear-gradient(180deg, rgba(1,15,52,.55) 0%, rgba(1,15,52,.72) 100%);
	}
	.hero-slide .container { padding-left: 24px; padding-right: 24px; }
}

@media (max-width: 420px) {
	.video-points { grid-template-columns: 1fr; }
	.lightbox-overlay { padding: 16px; }
	.lightbox-close, .lightbox-prev, .lightbox-next { width: 40px; height: 40px; }
	.lightbox-close { top: 10px; right: 10px; }
	.lightbox-prev { left: 6px; }
	.lightbox-next { right: 6px; }
	.stats-grid .stat-item { flex-basis: 45%; }
}

/* Lebegő gyors-hívás gomb — mindig elérhető, konverziót segítő elem */
.float-call {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 300;
	display: flex;
	align-items: center;
	gap: .6em;
	background: var(--color-cta);
	color: #fff;
	border-radius: 999px;
	padding: .9em 1.3em .9em 1em;
	box-shadow: 0 12px 28px rgba(232,38,44,.35);
	font-family: var(--font-title);
	font-weight: 700;
	font-size: .88rem;
	animation: float-call-pulse 2.6s ease-in-out infinite;
}
.float-call:hover { background: var(--color-cta-dark); }
.float-call svg { flex-shrink: 0; }
.float-call span { white-space: nowrap; }
@keyframes float-call-pulse {
	0%, 100% { box-shadow: 0 12px 28px rgba(232,38,44,.35); }
	50% { box-shadow: 0 12px 28px rgba(232,38,44,.6), 0 0 0 8px rgba(232,38,44,.08); }
}
@media (max-width: 560px) {
	.float-call span { display: none; }
	.float-call { padding: .9em; }
}
/* Vissza a tetejére gomb — bal alsó sarokban, hogy ne ütközzön a hívás-gombbal */
.scroll-top {
	position: fixed;
	left: 22px;
	bottom: 22px;
	z-index: 300;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: none;
	background: var(--color-surface);
	color: var(--color-title);
	box-shadow: 0 8px 24px rgba(1,15,52,.18);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	opacity: 0;
	transform: translateY(12px);
	pointer-events: none;
	transition: opacity .25s ease, transform .25s ease, background .2s ease;
}
.scroll-top.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.scroll-top:hover { background: var(--color-primary); color: #fff; }
@media (max-width: 560px) {
	.scroll-top { width: 42px; height: 42px; left: 16px; bottom: 16px; }
}

@media (prefers-reduced-motion: reduce) {
	.float-call { animation: none; }
	.scroll-top { transition: opacity .1s linear; }
}

/* Süti-tájékoztató sáv */
.cookie-banner {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 500;
	background: var(--color-title);
	color: #fff;
	box-shadow: 0 -6px 24px rgba(0,0,0,.18);
}
.cookie-banner-inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 1rem 20px;
	display: flex;
	align-items: center;
	gap: 1.2rem;
	flex-wrap: wrap;
}
.cookie-banner-inner p { margin: 0; font-size: .85rem; color: rgba(255,255,255,.85); flex: 1 1 320px; }
.cookie-banner-inner .btn { flex-shrink: 0; }
@media (max-width: 560px) {
	.cookie-banner-inner { padding: .9rem 16px; }
}
