/* =====================================================================
   Vállalkozásépítő — fő stíluslap
   Arculat: Naturéka (sage zöld, olíva, terrakotta, arany, krém)
   Tipográfia: Cormorant Garamond (display) + Mulish (UI/body) + Dancing Script (accent)
   ===================================================================== */

/* ---------- Design tokenek ---------- */
:root {
	/* Színek */
	--cream:     #FBF7F0;
	--cream-2:   #F6EFE3;
	--sand:      #F0E7D8;
	--ink:       #2C2A24;
	--ink-soft:  #524E45;
	--olive:     #56583F;
	--olive-2:   #6A6C4E;
	--sage:      #84A088;
	--sage-dk:   #5E7A62;
	--terra:     #BC5B45;
	--terra-dk:  #9E462F;
	--gold:      #D99B2B;
	--gold-soft: #E8C77B;
	--line:      rgba(86, 88, 63, 0.16);
	--white:     #ffffff;

	/* Tipográfia */
	--font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	--font-body:    "Mulish", "Segoe UI", system-ui, sans-serif;
	--font-script:  "Dancing Script", cursive;

	/* Sugár / árnyék */
	--r-sm: 10px;
	--r-md: 18px;
	--r-lg: 28px;
	--r-xl: 40px;
	--shadow-sm: 0 6px 20px rgba(86, 88, 63, 0.08);
	--shadow-md: 0 18px 50px rgba(86, 88, 63, 0.14);
	--shadow-lg: 0 30px 80px rgba(44, 42, 36, 0.18);

	/* Térköz */
	--gutter: clamp(1.25rem, 4vw, 3rem);
	--section-y: clamp(4rem, 9vw, 8rem);
	--maxw: 1200px;
	--maxw-narrow: 760px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: clamp(1rem, 0.4vw + 0.95rem, 1.125rem);
	line-height: 1.75;
	color: var(--ink-soft);
	background: var(--cream);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--sage-dk); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--terra); }

h1, h2, h3, h4 {
	font-family: var(--font-display);
	color: var(--ink);
	font-weight: 600;
	line-height: 1.08;
	letter-spacing: -0.01em;
	margin: 0 0 .6em;
}
h1 { font-size: clamp(2.5rem, 5.5vw, 4.4rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 3.8vw, 3.1rem); }
h3 { font-size: clamp(1.3rem, 1.6vw, 1.6rem); }
p { margin: 0 0 1.1em; }
strong { color: var(--ink); font-weight: 700; }
em { font-style: italic; }

::selection { background: var(--sage); color: #fff; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px; overflow: hidden;
	clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
	position: absolute; left: -999px; top: 0; z-index: 1000;
	background: var(--ink); color: #fff; padding: .8rem 1.2rem; border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; }

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

/* ---------- Layout segédek ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.narrow { max-width: var(--maxw-narrow); margin-inline: auto; }
.center { text-align: center; }
.section { padding-block: var(--section-y); position: relative; }
.section--sand { background: var(--cream-2); }

.eyebrow {
	display: inline-flex; align-items: center; gap: .55rem;
	font-family: var(--font-body);
	font-size: .82rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
	color: var(--terra);
	margin: 0 0 1.1rem;
}
.eyebrow--dark { color: var(--sage-dk); }
.center-eb { justify-content: center; }
.eyebrow .vepito-petal { width: 1.15em; height: 1.15em; }

.lead-xl {
	font-family: var(--font-display);
	font-size: clamp(1.5rem, 2.6vw, 2.15rem);
	line-height: 1.32; color: var(--ink); font-weight: 500;
	margin-bottom: 1rem;
}
.after-cards { margin-top: clamp(2rem, 4vw, 3rem); font-size: 1.1rem; }

/* ---------- Petal motívum ---------- */
.vepito-petal { width: 28px; height: 28px; display: inline-block; vertical-align: middle; flex: none; }

/* ---------- Gombok ---------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
	font-family: var(--font-body); font-weight: 700; font-size: .98rem;
	letter-spacing: .01em; line-height: 1;
	padding: 1rem 1.7rem; border-radius: 999px;
	border: 1.5px solid transparent; cursor: pointer;
	transition: transform .25s cubic-bezier(.2,.7,.3,1), box-shadow .25s ease, background .25s ease, color .25s ease;
	text-align: center;
}
.btn--primary { background: var(--terra); color: #fff; box-shadow: 0 10px 26px rgba(188,91,69,.32); }
.btn--primary:hover { background: var(--terra-dk); color: #fff; transform: translateY(-2px); box-shadow: 0 16px 34px rgba(158,70,47,.38); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--sage-dk); color: var(--sage-dk); transform: translateY(-2px); }
.btn--lg { padding: 1.15rem 2.2rem; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ===================================================================
   FEJLÉC
   =================================================================== */
.site-header {
	position: sticky; top: 0; z-index: 100;
	background: rgba(251, 247, 240, 0.82);
	backdrop-filter: saturate(140%) blur(14px);
	-webkit-backdrop-filter: saturate(140%) blur(14px);
	border-bottom: 1px solid transparent;
	transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.site-header.is-scrolled { background: #fff; border-color: var(--line); box-shadow: var(--shadow-sm); }
.site-header__inner { display: flex; align-items: center; gap: 1.5rem; min-height: 76px; }

.brand { display: inline-flex; align-items: center; gap: .7rem; color: var(--olive); }
.brand:hover { color: var(--olive); }
.brand__mark { width: 34px; height: 34px; color: var(--sage-dk); }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-display); font-weight: 700; font-size: 1.45rem; color: var(--ink); letter-spacing: -.01em; }
.brand__tag { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--sage-dk); margin-top: .25rem; }

.site-nav { margin-left: auto; }
.site-nav__list { display: flex; gap: 1.6rem; list-style: none; margin: 0; padding: 0; }
.site-nav__list a {
	font-weight: 600; font-size: .96rem; color: var(--ink-soft); position: relative; padding: .3rem 0;
}
.site-nav__list a::after {
	content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--terra);
	transition: width .28s ease;
}
.site-nav__list a:hover { color: var(--ink); }
.site-nav__list a:hover::after { width: 100%; }

.site-header__cta { padding: .7rem 1.4rem; font-size: .92rem; }

/* Fejléc kosár-ikon (csak nem-üres kosárnál renderelődik) */
.header-cart {
	position: relative;
	display: inline-flex; align-items: center; gap: .5rem;
	width: 46px; height: 46px;
	border: 1px solid var(--line); border-radius: 12px;
	background: var(--white); color: var(--sage-dk);
	flex: none;
	transition: color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.header-cart:hover {
	color: var(--terra); border-color: var(--sage); transform: translateY(-1px);
	box-shadow: var(--shadow-sm);
}
.header-cart__ico-wrap { position: relative; display: grid; place-items: center; width: 100%; height: 100%; }
.header-cart__icon { display: block; }
.header-cart__count {
	position: absolute; top: -7px; right: -7px;
	min-width: 19px; height: 19px; padding: 0 5px;
	display: grid; place-items: center;
	background: var(--terra); color: #fff;
	font-family: var(--font-body); font-weight: 800; font-size: .72rem; line-height: 1;
	border-radius: 999px; border: 2px solid var(--white);
}
.header-cart__text { display: none; }

/* Mobilmenüs változat — teljes szélességű link, szöveges címkével */
.header-cart--block {
	width: 100%; height: auto; justify-content: center; gap: .6rem;
	padding: .9rem 1.2rem; margin-top: .7rem;
	border-radius: 999px; border-color: var(--line); color: var(--sage-dk);
}
.header-cart--block .header-cart__ico-wrap { width: auto; height: auto; }
.header-cart--block .header-cart__text { display: inline; font-weight: 700; font-size: 1rem; }
.header-cart--block .header-cart__count {
	position: static; top: auto; right: auto; border: 0; margin-left: .15rem;
}

.nav-toggle {
	display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 12px;
	background: var(--white); cursor: pointer; position: relative; margin-left: .5rem;
}
.nav-toggle__bar, .nav-toggle__bar::before, .nav-toggle__bar::after {
	content: ""; position: absolute; left: 50%; top: 50%; width: 20px; height: 2px; background: var(--ink);
	transform: translate(-50%,-50%); transition: transform .3s ease, opacity .2s ease;
}
.nav-toggle__bar::before { transform: translate(-50%,-7px); }
.nav-toggle__bar::after { transform: translate(-50%,7px); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar::before { transform: translate(-50%,0) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar::after { transform: translate(-50%,0) rotate(-45deg); }

.mobile-nav {
	border-top: 1px solid var(--line); background: var(--cream);
	padding: 1.2rem var(--gutter) 1.8rem;
}
.mobile-nav[hidden] { display: none; }
.mobile-nav__list { list-style: none; margin: 0 0 1.2rem; padding: 0; display: grid; gap: .2rem; }
.mobile-nav__list a { display: block; padding: .85rem .4rem; font-weight: 600; font-size: 1.1rem; color: var(--ink); border-bottom: 1px solid var(--line); }

/* ===================================================================
   HERO
   =================================================================== */
.hero { position: relative; padding-block: clamp(2.5rem, 6vw, 5rem) clamp(3rem, 7vw, 6rem); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .55; }
.blob--1 { width: 540px; height: 540px; background: radial-gradient(circle at 30% 30%, #cde0cf, transparent 70%); top: -160px; right: -120px; }
.blob--2 { width: 460px; height: 460px; background: radial-gradient(circle at 60% 40%, #f3dcc0, transparent 70%); bottom: -180px; left: -140px; }

.hero__inner {
	position: relative; z-index: 1;
	display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.hero__title { font-size: clamp(2rem, 4.4vw, 3.52rem); margin-bottom: .5rem; }
.hero__title em { font-style: italic; color: var(--sage-dk); }
.hero__lead { font-size: clamp(1.1rem, 1.4vw, 1.3rem); max-width: 34ch; margin-bottom: 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 2.2rem; }
.hero__badges {
	display: flex; flex-wrap: wrap; gap: 1.4rem 2rem; list-style: none; margin: 0; padding: 0;
	border-top: 1px solid var(--line); padding-top: 1.4rem;
}
.hero__badges li { font-size: .9rem; color: var(--ink-soft); }
.hero__badges strong { display: block; font-family: var(--font-display); font-size: 1.7rem; color: var(--terra); line-height: 1; }

.hero__media { position: relative; }
.hero__photo {
	position: relative; border-radius: 50% 50% 46% 46% / 42% 42% 58% 58%;
	overflow: hidden; box-shadow: var(--shadow-lg);
	aspect-ratio: 4 / 5; max-width: 460px; margin-inline: auto;
	border: 8px solid #fff;
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__price-chip {
	position: absolute; bottom: 6%; left: -4%;
	background: #fff; border-radius: var(--r-md); padding: .9rem 1.3rem;
	box-shadow: var(--shadow-md); display: flex; flex-direction: column; line-height: 1.1;
	border: 1px solid var(--line);
}
.hero__price-label { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--sage-dk); font-weight: 700; }
.hero__price-value { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; color: var(--terra); }
.hero__price-old { font-size: .85rem; text-decoration: line-through; color: var(--ink-soft); opacity: .7; }

/* ===================================================================
   INTRO / FÁJDALOMPONTOK
   =================================================================== */
/* Finom zsálya-háttér: elválik a krém heró-tól és a story blokktól */
.section--intro {
	background:
		radial-gradient(120% 85% at 100% 0%, rgba(132,160,136,.16), transparent 58%),
		linear-gradient(180deg, #EEF3EC 0%, #E5EDE4 100%);
	border-top: 1px solid rgba(94,122,98,.14);
}

/* Szerkesztőségi, kétoszlopos intro: bal = vezérgondolat, jobb = kifejtés.
   Kitölti az oldalszélességet, de nem csupasz teljes-bleed és nem is középre szűkített. */
.section--intro .intro__intro {
	display: grid;
	grid-template-columns: 1.02fr .98fr;
	gap: clamp(2rem, 5vw, 4.8rem);
	align-items: start;
	margin-bottom: clamp(2.5rem, 5vw, 3.6rem);
	/* A .container 1200px-es max-width-jét MEGTARTJUK — így pontosan olyan
	   széles, mint a hero és a többi blokk (nem lóg ki a szélére). */
}

/* Bal oszlop — vezérgondolat, finom arculati vonallal indítva */
.intro__head { position: relative; }
.intro__head::before {
	content: "";
	display: block;
	width: 54px; height: 3px;
	margin-bottom: 1.5rem;
	border-radius: 3px;
	background: linear-gradient(90deg, var(--terra), var(--gold));
}
.section--intro .intro__intro .eyebrow { margin-bottom: 1rem; }

/* Nyitó jelenet — a vezérgondolat elé futó, konkrét képet adó bekezdés.
   Szándékosan halkabb és dőlt: felvezet, de nem verseng a lead-del. */
.intro__scene {
	font-family: var(--font-display);
	font-style: italic;
	font-size: clamp(1.1rem, 1.5vw, 1.32rem);
	line-height: 1.6;
	color: var(--ink-soft);
	margin: 0 0 1.1rem;
	max-width: 46ch;
}

.intro__lead {
	font-family: var(--font-display);
	font-size: clamp(1.6rem, 2.7vw, 2.4rem);
	line-height: 1.3;
	letter-spacing: -.01em;
	color: var(--ink);
	font-weight: 500;
	margin: 0;
}
.intro__lead strong {
	font-weight: 500;
	font-style: italic;
	color: var(--terra);
}

/* Jobb oszlop — kifejtő bekezdések, sage tagolóvonallal */
.intro__body {
	padding-top: .35rem;
	border-left: 2px solid rgba(94,122,98,.22);
	padding-left: clamp(1.4rem, 2.6vw, 2.4rem);
}
.section--intro .intro__body p {
	color: var(--ink-soft);
	font-size: 1.06rem;
	line-height: 1.78;
	margin: 0 0 1.1rem;
	max-width: 60ch;
}
.section--intro .intro__body p:last-child { margin-bottom: 0; }
.section--intro .intro__body strong { color: var(--ink); }

@media (max-width: 880px) {
	.section--intro .intro__intro { grid-template-columns: 1fr; gap: 1.8rem; }
	.intro__body {
		border-left: 0; padding-left: 0;
		border-top: 2px solid rgba(94,122,98,.22); padding-top: 1.6rem;
	}
}
.section--intro .intro__intro strong { color: var(--ink); }

/* Záró kiemelő kártya — a "Ha ezek a kérdések…" mondat rendezett dobozban */
.intro__callout {
	margin: clamp(2.2rem, 4vw, 3.2rem) auto 0;
	display: flex; align-items: flex-start; gap: 1.1rem;
	background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--terra);
	border-radius: var(--r-lg); padding: clamp(1.4rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2.2rem);
	box-shadow: var(--shadow-sm);
}
.intro__callout-mark { flex: none; display: grid; place-items: center; width: 2.4rem; height: 2.4rem; margin-top: .1rem; }
.intro__callout-mark .vepito-petal { width: 2.4rem; height: 2.4rem; color: var(--terra); }
.intro__callout p { margin: 0; font-size: 1.08rem; line-height: 1.65; color: var(--ink); }
.intro__callout strong { color: var(--terra-dk); }

.pain-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.pain-card {
	background: #fff; border-radius: var(--r-lg); padding: 2rem 1.8rem;
	box-shadow: var(--shadow-sm); border: 1px solid var(--line);
	position: relative; transition: transform .3s ease, box-shadow .3s ease;
}
.pain-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pain-card__q {
	display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%;
	background: var(--sand); color: var(--terra); font-family: var(--font-display); font-size: 1.7rem; font-weight: 700;
	margin-bottom: 1rem;
}
.pain-card p { margin: 0; font-family: var(--font-display); font-size: 1.3rem; line-height: 1.35; color: var(--ink); }

/* ===================================================================
   RÓLAM / STORY
   =================================================================== */
.story { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.story__media { position: relative; }
.story__media > img:first-child {
	width: 100%; border-radius: var(--r-xl) var(--r-xl) var(--r-xl) 80px;
	box-shadow: var(--shadow-lg); object-fit: cover; aspect-ratio: 4/5;
}
.story__media-sec {
	position: absolute; right: -6%; bottom: -8%; width: 56%;
	border-radius: var(--r-md); border: 6px solid #fff; box-shadow: var(--shadow-md);
	aspect-ratio: 3/2; object-fit: cover;
}
.story__pull {
	margin-top: 1.4rem; padding: 1.4rem 1.6rem; border-left: 4px solid var(--sage);
	background: var(--cream-2); border-radius: 0 var(--r-md) var(--r-md) 0;
	font-size: 1.12rem; color: var(--ink);
}
.signature { font-family: var(--font-script); font-size: 2.6rem; color: var(--terra); margin: .4rem 0 0; line-height: 1; }

/* ===================================================================
   ÉRTÉK SOR
   =================================================================== */
.value-row {
	display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 5vw, 4rem); align-items: center;
	margin-top: 3rem; background: #fff; border-radius: var(--r-xl); padding: clamp(1.5rem, 3vw, 2.6rem);
	box-shadow: var(--shadow-sm); border: 1px solid var(--line);
}
.value-row__media img { width: 100%; border-radius: var(--r-lg); object-fit: cover; aspect-ratio: 4/5; }
.value-row__content h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); }

/* ===================================================================
   MODULOK
   =================================================================== */
.modules { list-style: none; margin: 3rem 0 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.module-card {
	display: flex; gap: 1.3rem; align-items: flex-start;
	background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.7rem 1.8rem;
	box-shadow: var(--shadow-sm); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.module-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--sage); }
.module-card__num {
	font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; line-height: 1;
	color: var(--sage); flex: none; min-width: 2.4ch;
	background: linear-gradient(160deg, var(--sage-dk), var(--gold)); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.module-card__body h3 { margin-bottom: .4rem; font-size: 1.25rem; }
.module-card__body p { margin: 0; font-size: .97rem; line-height: 1.6; }

.access-band {
	margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 1.5rem 2.5rem; align-items: center; justify-content: space-between;
	background: linear-gradient(120deg, var(--sage-dk), var(--olive)); color: #fff;
	border-radius: var(--r-xl); padding: clamp(1.8rem, 3.5vw, 2.8rem);
}
.access-band h3 { color: #fff; margin-bottom: .4rem; }
.access-band p { margin: 0; color: rgba(255,255,255,.9); max-width: 60ch; }
.access-band strong { color: var(--gold-soft); }
.access-band .btn--primary { background: #fff; color: var(--olive); box-shadow: none; flex: none; }
.access-band .btn--primary:hover { background: var(--gold-soft); color: var(--ink); }

/* Megnyugtató blokk — az "elakadok és egyedül maradok" félelem közvetlen
   megszólítása, közvetlenül a bónuszok előtt. Sage tónus, hogy elváljon az
   intro terrakotta callout-jától, és ne CTA-nak látszódjon. */
.reassure {
	margin-top: clamp(1.6rem, 3vw, 2.4rem);
	display: flex; align-items: flex-start; gap: 1.1rem;
	background: var(--cream-2); border: 1px solid var(--line); border-left: 4px solid var(--sage-dk);
	border-radius: var(--r-lg); padding: clamp(1.4rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2.2rem);
}
.reassure__mark { flex: none; display: grid; place-items: center; width: 2.4rem; height: 2.4rem; margin-top: .1rem; }
.reassure__mark .vepito-petal { width: 2.4rem; height: 2.4rem; color: var(--sage-dk); }
.reassure p { margin: 0; font-size: 1.08rem; line-height: 1.7; color: var(--ink); max-width: 78ch; }
.reassure strong { color: var(--sage-dk); }

/* ===================================================================
   BÓNUSZOK
   =================================================================== */
.section--bonus { background: var(--cream-2); }
.bonus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.bonus-card {
	background: #fff; border-radius: var(--r-lg); padding: 2rem 1.8rem; border: 1px solid var(--line);
	box-shadow: var(--shadow-sm); position: relative; transition: transform .3s ease, box-shadow .3s ease;
}
.bonus-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.bonus-card--feature { background: var(--olive); color: #fff; border-color: transparent; transform: scale(1.03); }
.bonus-card--feature:hover { transform: scale(1.03) translateY(-6px); }
.bonus-card--feature h3 { color: #fff; }
.bonus-card--feature p { color: rgba(255,255,255,.88); }
.bonus-card__value {
	display: inline-block; font-size: .76rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
	color: var(--gold); background: rgba(217,155,43,.12); padding: .35rem .7rem; border-radius: 999px; margin-bottom: 1rem;
}
.bonus-card--feature .bonus-card__value { color: var(--gold-soft); background: rgba(255,255,255,.12); }
.bonus-card h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.bonus-card p { margin: 0; font-size: .97rem; }

.coaching-note {
	margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 1.2rem 2rem; align-items: center; justify-content: space-between;
	border: 1.5px dashed var(--sage); border-radius: var(--r-lg); padding: clamp(1.4rem, 3vw, 2rem);
	background: rgba(132,160,136,.08);
}
.coaching-note h3 { margin-bottom: .3rem; font-size: 1.35rem; }
.coaching-note p { margin: 0; max-width: 62ch; }

/* ===================================================================
   MIT KAPSZ — olíva szekció
   =================================================================== */
.section--olive { background: var(--olive); color: rgba(255,255,255,.9); }
.section--olive h2 { color: #fff; }
.section--olive .eyebrow { color: var(--gold-soft); }
.includes { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.includes__list { list-style: none; margin: 0; padding: 0; display: grid; gap: .85rem; }
.includes__list li {
	position: relative; padding: 1rem 1.2rem 1rem 3.2rem; background: rgba(255,255,255,.06);
	border-radius: var(--r-md); font-weight: 600; color: #fff; font-size: 1.02rem;
	border: 1px solid rgba(255,255,255,.1);
}
.includes__list li::before {
	content: "✓"; position: absolute; left: 1rem; top: 50%; transform: translateY(-50%);
	width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%;
	background: var(--gold); color: var(--olive); font-weight: 900; font-size: .9rem;
}

/* ===================================================================
   MITŐL MÁS
   =================================================================== */
.diff-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.diff-item {
	padding: 1.8rem 2rem; border-radius: var(--r-lg); background: #fff; border: 1px solid var(--line);
	border-top: 4px solid var(--terra); box-shadow: var(--shadow-sm);
}
.diff-item:nth-child(2) { border-top-color: var(--sage-dk); }
.diff-item:nth-child(3) { border-top-color: var(--gold); }
.diff-item:nth-child(4) { border-top-color: var(--olive-2); }
.diff-item h3 { margin-bottom: .4rem; }
.diff-item p { margin: 0; }

/* ===================================================================
   KINEK / KINEK NEM
   =================================================================== */
.fit-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 1.6rem; }
.fit-col { background: #fff; border-radius: var(--r-lg); padding: clamp(1.6rem, 3vw, 2.4rem); box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.fit-col h3 { display: flex; align-items: center; gap: .7rem; font-size: 1.5rem; }
.fit-ic { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; font-size: 1rem; font-weight: 900; flex: none; }
.fit-col--yes { border-top: 4px solid var(--sage-dk); }
.fit-col--yes .fit-ic { background: var(--sage); color: #fff; }
.fit-col--no { background: var(--cream-2); }
.fit-col--no .fit-ic { background: var(--sand); color: var(--ink-soft); }
.fit-col ul { list-style: none; margin: 1.2rem 0 0; padding: 0; display: grid; gap: .55rem; }
.fit-col li { position: relative; padding-left: 1.6rem; }
.fit-col--yes li::before { content: "✓"; position: absolute; left: 0; color: var(--sage-dk); font-weight: 800; }
.fit-col--no li::before { content: "×"; position: absolute; left: 0; color: var(--terra); font-weight: 800; }

/* ===================================================================
   VÉLEMÉNYEK
   =================================================================== */
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; margin-top: 2.5rem; }
.testi-card {
	background: #fff; border-radius: var(--r-lg); padding: 2rem 2.1rem; box-shadow: var(--shadow-sm);
	border: 1px solid var(--line); position: relative; display: flex; flex-direction: column;
}
.testi-card::before {
	content: "\201D"; position: absolute; top: .2rem; right: 1.6rem;
	font-family: var(--font-display); font-size: 5rem; color: var(--sand); line-height: 1;
}
.testi-card__stars { color: var(--gold); letter-spacing: .15em; margin-bottom: .8rem; }
.testi-card blockquote { margin: 0 0 1.4rem; font-size: 1.05rem; line-height: 1.7; color: var(--ink-soft); position: relative; z-index: 1; }
.testi-card figcaption { margin-top: auto; border-top: 1px solid var(--line); padding-top: 1rem; }
.testi-card__name { display: block; font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--ink); }
.testi-card__role { display: block; font-size: .88rem; color: var(--sage-dk); font-weight: 600; }

/* ===================================================================
   ÁR / MEGRENDELÉS
   =================================================================== */
.section--pricing { background: var(--cream-2); }
.pricing { position: relative; }
.pricing__head { text-align: center; max-width: var(--maxw-narrow); margin: 0 auto 2.5rem; }
.pricing__card {
	display: grid; grid-template-columns: 1.2fr .8fr; gap: 0;
	background: #fff; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg);
	border: 1px solid var(--line);
}
.pricing__contents {
	padding: clamp(2rem, 3.5vw, 3rem);
	display: flex; flex-direction: column; justify-content: center;
}
.pricing__list { list-style: none; margin: 0; padding: 0; display: grid; gap: .9rem; align-content: center; }
.pricing__list li { position: relative; padding-left: 2.2rem; font-size: 1.02rem; color: var(--ink); }
.pricing__list li::before {
	content: "✓"; position: absolute; left: 0; top: 0; width: 24px; height: 24px;
	display: grid; place-items: center; border-radius: 50%; background: var(--sage); color: #fff; font-weight: 900; font-size: .8rem;
}
/* Összérték-sáv a csomaglista alatt */
.pricing__value { margin-top: 1.6rem; padding-top: 1.4rem; border-top: 1px solid var(--line); }
.pricing__value-row {
	display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin: 0;
}
.pricing__value-label {
	font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
	font-weight: 700; color: var(--olive);
}
.pricing__value-sum {
	font-family: var(--font-display); font-size: clamp(1.6rem, 2.6vw, 2.1rem);
	font-weight: 700; color: var(--terra); line-height: 1;
}
.pricing__value-note {
	margin: .9rem 0 0; font-size: .95rem; font-style: italic;
	color: var(--ink-soft, rgba(0,0,0,.66)); line-height: 1.6;
}

.pricing__buy {
	background: linear-gradient(155deg, var(--olive), #3f4030); color: #fff;
	padding: clamp(2rem, 3.5vw, 3rem); display: flex; flex-direction: column; justify-content: center; text-align: center;
}
/* „Egyetlen új ügyfél…" — megtérülés-üzenet a gomb alatt */
.pricing__roi {
	margin: 1.2rem 0 0; padding: .9rem 1.1rem;
	border: 1px solid rgba(217,155,43,.35); border-radius: var(--r-md, 12px);
	background: rgba(255,255,255,.06);
	font-size: .95rem; font-style: italic; line-height: 1.55; color: var(--gold-soft);
}
.pricing__prices { margin-bottom: 1.4rem; }
.pricing__full { display: block; font-size: .95rem; color: rgba(255,255,255,.7); margin-bottom: .4rem; }
.pricing__full s { color: rgba(255,255,255,.6); }
.pricing__intro-label { display: block; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-soft); font-weight: 700; }
.pricing__intro { display: block; font-family: var(--font-display); font-size: clamp(3rem, 6vw, 4.2rem); font-weight: 700; color: #fff; line-height: 1; margin: .2rem 0 .2rem; }
.pricing__note { font-size: .85rem; color: rgba(255,255,255,.78); margin: 1rem 0 0; }
.pricing__buy .btn--primary { background: var(--terra); }
.pricing__buy .btn--primary:hover { background: var(--gold); color: var(--ink); }

/* ---------- Bevezető ár / scarcity kiemelő ---------- */
.vepito-scarcity {
	display: flex; align-items: flex-start; gap: .9rem;
	background: linear-gradient(120deg, rgba(217,155,43,.14), rgba(188,91,69,.1));
	border: 1.5px solid var(--gold-soft);
	border-radius: var(--r-md);
	padding: 1rem 1.2rem;
	margin: 1.3rem 0;
}
.vepito-scarcity__icon { flex: none; display: grid; place-items: center; width: 2rem; height: 2rem; }
.vepito-scarcity__icon .vepito-petal { width: 1.6rem; height: 1.6rem; color: var(--gold); }
.vepito-scarcity__text { display: flex; flex-direction: column; gap: .15rem; font-size: .96rem; line-height: 1.45; }
.vepito-scarcity__text strong { color: var(--ink); font-weight: 700; }
.vepito-scarcity__em { color: var(--terra-dk); font-weight: 700; }

/* A pricing dobozban: ikon FELÜL, szöveg középre rendezve, sötét háttéren */
.pricing__buy .vepito-scarcity {
	flex-direction: column; align-items: center; text-align: center; gap: .55rem;
	background: rgba(255,255,255,.08); border-color: rgba(232,199,123,.45);
	margin: 1.1rem 0 0; padding: 1.1rem 1.3rem;
}
.pricing__buy .vepito-scarcity__icon { width: 2.2rem; height: 2.2rem; }
.pricing__buy .vepito-scarcity__icon .vepito-petal { width: 1.8rem; height: 1.8rem; color: var(--gold-soft); }
.pricing__buy .vepito-scarcity__text { gap: .35rem; max-width: 34ch; }
.pricing__buy .vepito-scarcity__text strong { color: #fff; font-size: 1.02rem; }
.pricing__buy .vepito-scarcity__em { color: var(--gold-soft); font-size: .92rem; }

/* Főoldali "Kosárba teszem" LINK a Jelentkezem gomb alatt (nem gomb, finom link) */
.pricing__cart-link {
	display: inline-flex; align-items: center; justify-content: center; gap: .15rem;
	margin-top: .9rem; color: var(--gold-soft); font-weight: 700; font-size: 1rem;
	letter-spacing: .01em; text-decoration: none;
	border-bottom: 1.5px solid transparent; padding-bottom: 1px;
	transition: color .2s ease, border-color .2s ease, transform .2s ease;
}
.pricing__cart-link:hover { color: #fff; border-bottom-color: var(--gold-soft); transform: translateY(-1px); }

/* ===================================================================
   ZÁRÓ CTA — fotós
   =================================================================== */
.section--final { padding: 0; }
.final {
	position: relative; padding-block: clamp(4.5rem, 10vw, 9rem); color: #fff; text-align: center;
	background-image: linear-gradient(rgba(44,42,36,.62), rgba(86,88,63,.72)), var(--final-bg);
	background-size: cover; background-position: center 30%;
}
.final h2 { color: #fff; }
.final p { color: rgba(255,255,255,.92); font-size: 1.1rem; }
.final .eyebrow { color: var(--gold-soft); }

/* ===================================================================
   GYIK
   =================================================================== */
.faq { margin-top: 2rem; display: grid; gap: .9rem; }
.faq__item {
	background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden;
	transition: box-shadow .25s ease, border-color .25s ease;
}
.faq__item[open] { box-shadow: var(--shadow-sm); border-color: var(--sage); }
.faq__item summary {
	list-style: none; cursor: pointer; padding: 1.25rem 1.5rem; font-family: var(--font-display);
	font-size: 1.25rem; font-weight: 600; color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__icon { position: relative; width: 18px; height: 18px; flex: none; }
.faq__icon::before, .faq__icon::after {
	content: ""; position: absolute; background: var(--terra); border-radius: 2px;
	left: 50%; top: 50%; transition: transform .3s ease;
}
.faq__icon::before { width: 16px; height: 2px; transform: translate(-50%,-50%); }
.faq__icon::after { width: 2px; height: 16px; transform: translate(-50%,-50%); }
.faq__item[open] .faq__icon::after { transform: translate(-50%,-50%) scaleY(0); }
.faq__answer { padding: 0 1.5rem 1.4rem; }
.faq__answer p { margin: 0; }

/* ===================================================================
   LÁBLÉC
   =================================================================== */
.site-footer { background: var(--olive); color: rgba(255,255,255,.78); position: relative; padding-top: clamp(4.5rem, 8vw, 7rem); overflow: hidden; }
.footer-wave {
	position: absolute; top: 0; left: 0; width: 100%;
	height: clamp(46px, 6vw, 80px); display: block; pointer-events: none;
	filter: drop-shadow(0 -3px 8px rgba(86,88,63,.12));
}
.site-footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 2.5rem; padding-block: clamp(2.5rem, 5vw, 4rem); }
.brand--light .brand__name { color: #fff; }
.brand--light .brand__tag { color: var(--gold-soft); }
.brand--light .brand__mark { color: var(--gold-soft); }
.site-footer__lead { margin-top: 1.2rem; max-width: 38ch; font-size: .98rem; }
.site-footer h3 { color: #fff; font-size: 1.1rem; font-family: var(--font-body); font-weight: 800; letter-spacing: .04em; margin-bottom: 1rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.site-footer a { color: rgba(255,255,255,.8); }
.site-footer a:hover { color: var(--gold-soft); }
/* A lábléc-fejlécek mindig fehérek (biztosított kontraszt a sötét olíván) */
.site-footer__nav h3, .site-footer__legal h3, .site-footer .widget-title { color: #fff; }
/* "Tartalom" menüpontok: chevron + saját szín, hogy elkülönüljön a kapcsolat-listától */
.site-footer__nav ul { gap: .55rem; }
.site-footer__nav ul li a {
	display: inline-flex; align-items: center; gap: .55rem;
	color: #F3EAD8; font-weight: 600;
}
.site-footer__nav ul li a::before {
	content: ""; width: .5rem; height: .5rem; flex: none;
	border-right: 2px solid var(--gold-soft); border-top: 2px solid var(--gold-soft);
	transform: rotate(45deg); transition: border-color .2s ease, transform .2s ease;
}
.site-footer__nav ul li a:hover { color: #fff; }
.site-footer__nav ul li a:hover::before { border-color: var(--gold); transform: rotate(45deg) translate(2px, -2px); }
.social { display: flex; gap: .7rem; margin-top: 1.4rem; }
.social a {
	width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%;
	background: rgba(255,255,255,.1); color: #fff; transition: background .25s ease, transform .25s ease;
}
.social a:hover { background: var(--gold); color: var(--olive); transform: translateY(-3px); }
.site-footer__bottom {
	display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between; align-items: center;
	border-top: 1px solid rgba(255,255,255,.14); padding-block: 1.4rem; font-size: .85rem;
}
.site-footer__bottom p { margin: 0; }
.site-footer__bottom .credit a { color: var(--gold-soft); }
/* Jogi linkek a „Minden jog fenntartva" mellett (ÁSZF, Adatkezelési) */
.site-footer__bottom .footer-legal a { color: var(--gold-soft); white-space: nowrap; }
.site-footer__bottom .footer-legal a:hover { color: #fff; text-decoration: underline; }
.site-footer__bottom .footer-legal a::before { content: "·"; margin: 0 .5rem; color: rgba(255,255,255,.45); }

/* ===================================================================
   ANIMÁCIÓK (scroll reveal)
   =================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.2,.7,.3,1), transform .8s cubic-bezier(.2,.7,.3,1); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ===================================================================
   BLOG / OLDAL alapstílusok
   =================================================================== */
.post-list { display: grid; gap: 2rem; }
.post-card { background: #fff; border-radius: var(--r-lg); padding: 2rem; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.post-card__thumb img { border-radius: var(--r-md); margin-bottom: 1.2rem; }
.page-article__title { font-size: clamp(2rem, 4vw, 3rem); }
.entry-content h2 { margin-top: 2rem; }
.entry-content img { border-radius: var(--r-md); }

/* ===================================================================
   RESZPONZÍV
   =================================================================== */
@media (max-width: 980px) {
	.site-nav, .site-header__cta { display: none; }
	/* A kosár-ikon a hamburger mellé kerül a jobb szélre, hogy bárhonnan elérhető legyen */
	.site-header__inner > .header-cart { margin-left: auto; }
	.nav-toggle { display: block; margin-left: .5rem; }
	.hero__inner { grid-template-columns: 1fr; }
	.hero__media { order: -1; max-width: 420px; margin-inline: auto; }
	.hero__content { text-align: center; }
	.hero__lead { margin-inline: auto; }
	.hero__actions, .hero__badges { justify-content: center; }
	.story, .value-row, .includes, .pricing__card { grid-template-columns: 1fr; }
	.story__media { max-width: 460px; margin-inline: auto; }
	.story__content { text-align: left; }
	.fit-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
	.pain-cards, .bonus-grid, .modules, .diff-grid, .testi-grid { grid-template-columns: 1fr; }
	.bonus-card--feature { transform: none; }
	.bonus-card--feature:hover { transform: translateY(-6px); }
	.hero__photo { border-radius: var(--r-xl); }
	.access-band, .coaching-note, .site-footer__bottom { flex-direction: column; align-items: flex-start; text-align: left; }
	.access-band .btn, .coaching-note .btn { width: 100%; }
	.site-footer__inner { grid-template-columns: 1fr; }
	.story__media-sec { width: 40%; }
}
@media (max-width: 480px) {
	:root { --gutter: 1.15rem; }
	.brand__tag { display: none; }
	.hero__price-chip { left: 50%; transform: translateX(-50%); bottom: -22px; }
}

/* ===================================================================
   KÖSZÖNŐOLDAL (/koszonom/) — page-koszonom.php
   Editorial, organikus, két felvonás: Köszönöm → Naturéka Klub.
   =================================================================== */
.ty-page { overflow: clip; }

/* ---------- 1. felvonás: Hero ---------- */
.ty-hero {
	position: relative;
	background:
		radial-gradient(120% 80% at 85% 0%, rgba(232,199,123,.20), transparent 55%),
		radial-gradient(90% 70% at 0% 100%, rgba(132,160,136,.18), transparent 60%),
		linear-gradient(170deg, var(--cream) 0%, var(--sand) 100%);
	padding: clamp(3rem, 7vw, 6rem) 0 clamp(5rem, 9vw, 8rem);
	isolation: isolate;
}
.ty-hero__leaf {
	position: absolute; z-index: 0; border-radius: 50%;
	filter: blur(2px); opacity: .5; pointer-events: none;
}
.ty-hero__leaf--a {
	width: 260px; height: 260px; top: -60px; right: -70px;
	background: radial-gradient(circle at 30% 30%, rgba(217,155,43,.28), transparent 70%);
}
.ty-hero__leaf--b {
	width: 320px; height: 320px; bottom: 40px; left: -120px;
	background: radial-gradient(circle at 60% 40%, rgba(132,160,136,.30), transparent 70%);
}
.ty-hero__grid {
	position: relative; z-index: 1;
	display: grid; grid-template-columns: 1.05fr .95fr;
	gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.ty-hero__text { max-width: 33rem; }
.ty-hero__title {
	font-family: var(--font-display);
	line-height: .98; margin: .6rem 0 1.4rem; color: var(--ink);
}
.ty-hero__title .ty-script {
	display: block; font-family: "Dancing Script", cursive;
	font-weight: 700; color: var(--terra);
	font-size: clamp(2.6rem, 7vw, 4.6rem); line-height: 1;
	transform: rotate(-3deg); transform-origin: left;
}
.ty-hero__title-main {
	display: block; font-weight: 600;
	font-size: clamp(2.8rem, 7.5vw, 5.2rem); letter-spacing: -.01em;
	margin-top: -.1em;
}
.ty-hero__lead {
	font-size: clamp(1.05rem, 1.6vw, 1.2rem); line-height: 1.7;
	color: var(--ink-soft);
}
.ty-note {
	display: flex; gap: 1rem; align-items: flex-start;
	margin-top: 1.8rem; padding: 1.1rem 1.3rem;
	background: rgba(255,255,255,.7); backdrop-filter: blur(4px);
	border: 1px solid var(--line); border-left: 4px solid var(--gold);
	border-radius: 14px; box-shadow: var(--shadow-sm);
}
.ty-note__icon {
	flex: none; width: 42px; height: 42px; display: grid; place-items: center;
	border-radius: 50%; background: var(--cream-2); color: var(--sage-dk);
}
.ty-note__text { margin: 0; font-size: .95rem; line-height: 1.6; color: var(--ink-soft); }
.ty-note__text strong { color: var(--olive); display: block; margin-bottom: .15rem; }

/* Hero kép — organikus arch keret arany kerettel */
.ty-hero__media { position: relative; margin: 0; justify-self: center; max-width: 440px; width: 100%; }
.ty-hero__frame {
	position: relative; border-radius: 48% 48% 46% 46% / 12% 12% 8% 8%;
	overflow: hidden; box-shadow: var(--shadow-lg);
	border: 6px solid #fff; aspect-ratio: 4 / 5;
}
.ty-hero__frame::after {
	content: ""; position: absolute; inset: -6px; border-radius: inherit;
	box-shadow: inset 0 0 0 2px rgba(217,155,43,.55); pointer-events: none;
}
.ty-hero__frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 28%; display: block; }
.ty-hero__seal {
	position: absolute; top: 14px; left: -14px;
	width: 64px; height: 64px; display: grid; place-items: center;
	background: var(--terra); color: #fff; border-radius: 50%;
	border: 3px solid #fff; box-shadow: var(--shadow-md);
	animation: ty-pop .6s .9s cubic-bezier(.2,1.3,.4,1) both;
}
.ty-hero__sig {
	position: absolute; right: -6px; bottom: 18px;
	font-family: "Dancing Script", cursive; font-weight: 700; font-size: 1.9rem;
	color: var(--olive); background: #fff; padding: .1rem 1rem; border-radius: 999px;
	box-shadow: var(--shadow-sm); transform: rotate(-4deg);
}
.ty-hero__wave { position: absolute; left: 0; right: 0; bottom: -1px; width: 100%; height: clamp(50px, 7vw, 90px); display: block; z-index: 1; }

/* ---------- Átmenet: van még valami ---------- */
.ty-teaser {
	text-align: center; background: var(--cream);
	padding: clamp(2.5rem, 6vw, 4.5rem) var(--gutter) clamp(1.5rem, 4vw, 2.5rem);
}
.ty-teaser__script {
	font-family: "Dancing Script", cursive; font-weight: 600;
	font-size: clamp(1.5rem, 3.5vw, 2.2rem); color: var(--sage-dk);
	margin: 0 0 .2rem; transform: rotate(-2deg);
}
.ty-teaser__title {
	font-family: var(--font-display); font-weight: 600;
	font-size: clamp(2rem, 5vw, 3.2rem); color: var(--terra-dk);
	margin: 0; line-height: 1.1;
}
.ty-teaser__petal { display: inline-block; width: 30px; height: 30px; margin-top: 1.2rem; opacity: .9; animation: ty-bob 2.6s ease-in-out infinite; }
.ty-teaser__petal .vepito-petal { width: 100%; height: 100%; }

/* ---------- 2. felvonás: Klub ---------- */
.ty-klub {
	/* A szekció teteje a teaserhez (cream), az alja a lábléc-hullámhoz (#FBF7F0)
	   simul; középen finom cream-2 mélység — így nincs egyenes vágás a hullám fölött. */
	background:
		radial-gradient(80% 120% at 100% 0%, rgba(86,88,63,.06), transparent 60%),
		linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 45%, var(--cream) 100%);
	padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(4rem, 8vw, 7rem);
}
.ty-klub__grid {
	display: grid; grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 5vw, 5rem); align-items: center;
}
.ty-klub__media { margin: 0; position: relative; }
.ty-klub__media img {
	width: 100%; height: auto; display: block;
	filter: drop-shadow(0 24px 40px rgba(86,88,63,.22));
	transition: transform .6s cubic-bezier(.2,.7,.3,1);
}
.ty-klub__media:hover img { transform: rotate(-1.2deg) scale(1.02); }
.ty-klub__text { max-width: 34rem; }
.ty-klub__title {
	font-family: var(--font-display); font-weight: 600;
	font-size: clamp(1.9rem, 4vw, 2.9rem); line-height: 1.1;
	color: var(--ink); margin: .5rem 0 1rem;
}
.ty-klub__lead { color: var(--ink-soft); line-height: 1.75; font-size: 1.05rem; }
.ty-klub__list { list-style: none; margin: 1.6rem 0 2rem; padding: 0; display: grid; gap: .85rem; }
.ty-klub__list li {
	position: relative; padding-left: 2.4rem;
	color: var(--ink); font-weight: 600; line-height: 1.5;
}
.ty-tick {
	position: absolute; left: 0; top: 0; width: 1.55rem; height: 1.55rem;
	border-radius: 50%; background: var(--sage); flex: none;
}
.ty-tick::after {
	content: ""; position: absolute; left: 50%; top: 47%;
	width: .42rem; height: .72rem; border: solid #fff; border-width: 0 .16rem .16rem 0;
	transform: translate(-50%, -55%) rotate(45deg);
}
.ty-klub__cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.4rem; }
.ty-klub__proof { font-size: .9rem; color: var(--olive-2); font-weight: 600; }

/* ---------- Belépő animáció (hero, csak betöltéskor) ---------- */
.ty-anim { opacity: 0; transform: translateY(22px); animation: ty-rise .8s cubic-bezier(.2,.7,.3,1) forwards; animation-delay: calc(var(--d, 0) * .12s + .1s); }
@keyframes ty-rise { to { opacity: 1; transform: none; } }
@keyframes ty-pop { from { opacity: 0; transform: scale(.4); } to { opacity: 1; transform: none; } }
@keyframes ty-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }
@media (prefers-reduced-motion: reduce) {
	.ty-anim, .ty-hero__seal, .ty-teaser__petal { animation: none !important; opacity: 1 !important; transform: none !important; }
}

/* ---------- Reszponzív ---------- */
@media (max-width: 880px) {
	.ty-hero__grid { grid-template-columns: 1fr; text-align: center; }
	.ty-hero__text { max-width: 36rem; margin: 0 auto; }
	.ty-hero .eyebrow { justify-content: center; }
	.ty-hero__title .ty-script { transform: none; text-align: center; }
	.ty-note { text-align: left; }
	.ty-hero__media { grid-row: 1; max-width: 360px; margin-bottom: 1.5rem; }
	.ty-klub__grid { grid-template-columns: 1fr; }
	.ty-klub__media { max-width: 520px; margin: 0 auto; order: 2; }
	.ty-klub__text { max-width: none; text-align: center; }
	.ty-klub .eyebrow { justify-content: center; }
	.ty-klub__list { text-align: left; max-width: 28rem; margin-inline: auto; }
	.ty-klub__cta-row { justify-content: center; }
}
@media (max-width: 480px) {
	.ty-hero__sig { font-size: 1.5rem; }
	.ty-hero__seal { width: 54px; height: 54px; }
}
