/* ===========================================================
   LUMORRA — marketing weboldal
   Tiszta CSS, külső függőség nélkül.
   Design tokenek → a látványterv zöld-türkiz, világos arculata.
   =========================================================== */

/* ---- Design tokenek ---- */
:root {
  /* Márkaszínek (a mockup zöld-türkiz világából) */
  --brand:        #17b8a6;
  --brand-dark:   #0e9a8a;
  --brand-darker: #0a7d70;
  --brand-light:  #e8f8f5;
  --brand-mint:   #63d9c4;

  /* Semleges */
  --ink:      #14282e;   /* fő szövegszín */
  --ink-soft: #2d4147;   /* halványabb szöveg — sötétítve, hogy a festett háttéren is jól olvasható legyen */
  --line:     #e5edef;   /* elválasztó vonal */
  --bg:       #ffffff;
  --bg-soft:  #f5faf9;   /* halvány szekció-háttér */
  --white:    #ffffff;

  /* Rácsméret / tipográfia */
  --maxw: 1140px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(14, 154, 138, 0.12);
  --shadow-soft: 0 4px 16px rgba(20, 40, 46, 0.06);

  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  /* Festett botanikus háttér az egész oldalon (görgetéskor a helyén marad).
     Csere: tedd a képet a web/image/ mappába és írd át a fájlnevet. */
  background: url("../image/hatter-fooldal.png") center center / cover no-repeat fixed, #faf6ee;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { line-height: 1.15; margin: 0 0 .5em; letter-spacing: -0.02em; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; }
p  { margin: 0 0 1rem; color: var(--ink-soft); }

a { color: var(--brand-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

img, svg { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 20px;
}

/* Akadálymentes fókusz (látható) */
:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Csak képernyőolvasónak */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Ugrás a tartalomra */
.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--brand-dark); color: #fff;
  padding: 10px 16px; border-radius: 0 0 8px 0; z-index: 200;
}
.skip-link:focus { left: 0; }

/* ---- Gombok ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem;
  font-weight: 600; font-size: 1rem;
  padding: .8rem 1.5rem; border-radius: 999px;
  border: 2px solid transparent; cursor: pointer;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary { background: var(--brand); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--brand-dark); color: #fff; }
.btn-ghost { background: transparent; color: var(--brand-dark); border-color: var(--brand); }
.btn-ghost:hover { background: var(--brand-light); }
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }

/* ===========================================================
   FEJLÉC / NAVIGÁCIÓ
   =========================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.9);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 1rem;
}
.brand { display: flex; align-items: center; gap: .6rem; font-weight: 800; font-size: 1.35rem; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand .logo { width: 38px; height: 38px; flex: 0 0 auto; }
.brand small { display: block; font-size: .62rem; font-weight: 600; letter-spacing: .12em; color: var(--brand-dark); text-transform: uppercase; }

.nav-menu { display: flex; align-items: center; gap: 1.6rem; }
.nav-links { display: flex; align-items: center; gap: 1.6rem; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--ink); font-weight: 500; font-size: .98rem; white-space: nowrap; }
.nav-links a:hover { color: var(--brand-dark); text-decoration: none; }

.nav-actions { display: flex; align-items: center; gap: .8rem; }

/* Mobil menü gomb (működés a 5. lépésben) */
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; border-radius: 10px;
}
.nav-toggle:hover { background: var(--brand-light); }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 22px; height: 2px; background: var(--ink);
  border-radius: 2px; margin-inline: auto; position: relative;
  transition: top .2s ease, transform .2s ease, background .2s ease;
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after  { position: absolute; top: 7px; }

/* ===========================================================
   HERO
   =========================================================== */
/* A festett háttér (hatter-fooldal.png) a body-n van, fix — a szekciók átlátszók,
   így a gazdag botanikus háttér FOLYTONOSAN látszik a hero-tól végig, fehér sáv nélkül. */
.paper-region { position: relative; background: transparent; }

.hero {
  position: relative; overflow: hidden;
  background: transparent;
}
.hero-inner {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem;
  align-items: center; padding-block: clamp(3rem, 7vw, 6rem);
}
.hero .eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--white); border: 1px solid var(--line);
  color: var(--brand-dark); font-weight: 600; font-size: .85rem;
  padding: .4rem .9rem; border-radius: 999px; margin-bottom: 1.2rem;
  box-shadow: var(--shadow-soft);
}
.hero h1 { color: var(--ink); }
.hero h1 .accent { color: var(--brand-dark); }
.hero-lead { font-size: 1.2rem; max-width: 34ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.2rem; margin-top: 1.8rem; color: var(--ink-soft); font-size: .9rem; }
.hero-trust span { display: inline-flex; align-items: center; gap: .4rem; }
.hero-trust svg { width: 18px; height: 18px; color: var(--brand); }

/* Hero vizuál: kompatibilitás-kártya (a mockup lelke, magyarázattal) */
.hero-visual { display: flex; justify-content: center; }
.match-card {
  width: 100%; max-width: 340px; background: #fff;
  border: 1px solid var(--line); border-radius: 22px;
  box-shadow: var(--shadow); padding: 1.2rem; transform: rotate(-1.5deg);
}
.match-card .photo {
  height: 190px; border-radius: 16px; overflow: hidden;
  background: linear-gradient(135deg, var(--brand-mint), var(--brand-dark));
  position: relative; display: flex; align-items: flex-end; padding: 14px;
}
.match-card .hero-illus { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.match-card .photo-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.match-card .verified, .match-card .score { z-index: 2; }
.match-card .name { position: relative; z-index: 2; }
.match-card .verified {
  position: absolute; top: 12px; left: 12px;
  background: rgba(255,255,255,.95); color: var(--brand-dark);
  font-size: .72rem; font-weight: 700; padding: .25rem .6rem;
  border-radius: 999px; display: inline-flex; gap: .3rem; align-items: center;
}
.match-card .score {
  position: absolute; top: 12px; right: 12px;
  width: 62px; height: 62px; border-radius: 50%;
  background: #fff; box-shadow: var(--shadow-soft);
  display: grid; place-items: center; text-align: center; line-height: 1;
}
.match-card .score b { font-size: 1.15rem; color: var(--brand-dark); }
.match-card .score small { font-size: .55rem; color: var(--ink-soft); }
.match-card .name { color: #fff; font-weight: 700; font-size: 1.2rem; text-shadow: 0 1px 6px rgba(0,0,0,.3); }
.match-card .why {
  margin-top: 1rem; background: var(--brand-light);
  border-radius: 12px; padding: .8rem .9rem;
}
.match-card .why h4 { margin: 0 0 .4rem; font-size: .85rem; color: var(--brand-darker); }
.match-card .why ul { margin: 0; padding-left: 1.1rem; font-size: .82rem; color: var(--ink-soft); }
.match-card .why li { margin-bottom: .15rem; }

/* ===========================================================
   SZEKCIÓ ALAP
   =========================================================== */
.section { padding-block: clamp(3rem, 6vw, 5rem); }
.section-alt { background: transparent; }
.section-head { max-width: 640px; margin: 0 auto 2.6rem; text-align: center; }
.section-head h2 { color: var(--ink); }
.kicker {
  display: inline-block; text-transform: uppercase; letter-spacing: .14em;
  font-size: .78rem; font-weight: 700; color: var(--brand-dark);
  background: var(--brand-light); padding: .35rem .8rem; border-radius: 999px;
  margin-bottom: .9rem;
}
.section-lead { font-size: 1.1rem; }

/* ---- Hogyan működik: lépés-kártyák ---- */
.steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem;
  counter-reset: none;
}
.step-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem 1.3rem; box-shadow: var(--shadow-soft);
  transition: transform .18s ease, box-shadow .18s ease;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.step-num {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--brand); color: #fff; font-weight: 800;
  display: grid; place-items: center; font-size: .95rem;
}
.step-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--brand-light); color: var(--brand-dark);
  display: grid; place-items: center;
}
.step-icon svg { width: 24px; height: 24px; }
.step-card h3 { font-size: 1.15rem; margin-bottom: .4rem; color: var(--ink); }
.step-card p { font-size: .95rem; margin: 0; }

/* ---- Miben más: összehasonlítás ---- */
.compare {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 1rem;
  align-items: stretch; max-width: 860px; margin: 0 auto 2.4rem;
}
.compare-col { border-radius: var(--radius); padding: 1.6rem; }
.compare-col h3 { display: flex; align-items: center; gap: .5rem; font-size: 1.2rem; }
.compare-col ul { margin: .6rem 0 0; padding-left: 1.1rem; }
.compare-col li { margin-bottom: .5rem; }
.compare-old { background: #fff; border: 1px solid var(--line); }
.compare-old h3 { color: var(--ink-soft); }
.compare-old li { color: var(--ink-soft); }
.compare-new { background: var(--brand-darker); color: #eafaf6; box-shadow: var(--shadow); }
.compare-new h3 { color: #fff; }
.compare-new li { color: #d4f2ec; }
.compare-new strong { color: #fff; }
.compare-vs {
  align-self: center; font-weight: 800; color: var(--brand-dark);
  background: var(--brand-light); border-radius: 50%;
  width: 46px; height: 46px; display: grid; place-items: center;
}

/* ---- Erősségek ---- */
.strengths {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  max-width: 900px; margin-inline: auto;
}
.strengths li {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 1rem; font-weight: 600; font-size: .95rem; color: var(--ink);
  display: flex; align-items: center; gap: .5rem;
}
.strengths .star { color: var(--brand); font-size: 1.2rem; }

/* ---- Biztonság: trust rács ---- */
.trust-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem;
  margin-bottom: 1.6rem;
}
.trust-item {
  display: flex; gap: .9rem; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.2rem; box-shadow: var(--shadow-soft);
}
.trust-ic {
  flex: 0 0 auto; width: 44px; height: 44px; border-radius: 12px;
  background: var(--brand-light); color: var(--brand-dark);
  display: grid; place-items: center;
}
.trust-ic svg { width: 24px; height: 24px; }
.trust-item h3 { font-size: 1.02rem; margin: 0 0 .2rem; color: var(--ink); }
.trust-item p { font-size: .9rem; margin: 0; }

.trust-ai {
  display: flex; align-items: center; gap: 1rem;
  background: var(--brand-darker); color: #eafaf6;
  border-radius: var(--radius); padding: 1.4rem 1.6rem; box-shadow: var(--shadow);
}
.trust-ai p { margin: 0; color: #d4f2ec; }
.trust-ai strong { color: #fff; }
.trust-ai-ic {
  flex: 0 0 auto; width: 52px; height: 52px; border-radius: 14px;
  background: rgba(255,255,255,.14); color: #fff; display: grid; place-items: center;
}
.trust-ai-ic svg { width: 28px; height: 28px; }

/* ---- Coaching ---- */
.coach-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.coach-copy h2 { color: var(--ink); }
.coach-topics {
  list-style: none; padding: 0; margin: 0 0 1.6rem;
  display: flex; flex-wrap: wrap; gap: .6rem;
}
.coach-topics li {
  background: #fff; border: 1px solid var(--line); color: var(--brand-darker);
  font-weight: 600; font-size: .9rem; padding: .45rem .9rem; border-radius: 999px;
}
.coach-cards { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.coach-card {
  display: flex; gap: 1rem; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.3rem; box-shadow: var(--shadow-soft);
  transition: transform .18s ease, box-shadow .18s ease;
}
.coach-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.coach-ic {
  flex: 0 0 auto; width: 46px; height: 46px; border-radius: 12px;
  background: var(--brand); color: #fff; display: grid; place-items: center;
}
.coach-ic svg { width: 24px; height: 24px; }
.coach-card h3 { font-size: 1.08rem; margin: 0 0 .2rem; color: var(--ink); }
.coach-card p { font-size: .92rem; margin: 0; }

/* ---- Árak ---- */
.pricing {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem;
  align-items: stretch; max-width: 980px; margin-inline: auto;
}
.price-card {
  position: relative; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem 1.5rem; box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column;
}
.price-card h3 { font-size: 1.3rem; color: var(--ink); margin-bottom: .6rem; }
.price { display: flex; align-items: baseline; gap: .4rem; margin-bottom: .3rem; }
.price .amount { font-size: 2rem; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.price .per { color: var(--ink-soft); font-size: .9rem; }
.price-note { font-size: .92rem; margin-bottom: 1rem; }
.price-feats { list-style: none; margin: 0 0 1.4rem; padding: 0; flex: 1 1 auto; }
.price-feats li {
  position: relative; padding-left: 1.6rem; margin-bottom: .6rem;
  font-size: .93rem; color: var(--ink);
}
.price-feats li::before {
  content: ""; position: absolute; left: 0; top: .35em;
  width: 14px; height: 8px; border-left: 2px solid var(--brand);
  border-bottom: 2px solid var(--brand); transform: rotate(-45deg);
}
.price-card .btn { width: 100%; }
.price-featured {
  border-color: var(--brand); box-shadow: var(--shadow);
  transform: translateY(-6px);
}
.price-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--brand); color: #fff; font-size: .78rem; font-weight: 700;
  padding: .3rem .9rem; border-radius: 999px; white-space: nowrap;
}
.price-legal { text-align: center; font-size: .82rem; color: var(--ink-soft); margin-top: 1.4rem; }

/* ---- Lumorra számokban ---- */
.stats-band { background: var(--brand-darker); color: #eafaf6; }
.stats-band .kicker { background: rgba(255,255,255,.15); color: #fff; }
.stats-band .section-head h2 { color: #fff; }
.stats-band .section-lead { color: #d4f2ec; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.stat {
  text-align: center; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius);
  padding: 1.7rem 1rem;
}
.stat-num { display: block; font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; color: #fff; line-height: 1; letter-spacing: -.02em; }
.stat-label { display: block; margin-top: .55rem; font-size: .9rem; color: #cdeee7; }
.stats-note { text-align: center; margin-top: 1.5rem; font-size: .85rem; color: #9fc9c1; }

@media (max-width: 700px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---- App-reklám ---- */
.app-promo { background: transparent; }

/* Ha a Lumorra telepített appként fut (Android/iPhone/asztali PWA),
   ne reklámozzuk az app letöltését — hisz már az appban vagyunk. */
@media (display-mode: standalone) {
  .app-promo, .app-badges { display: none !important; }
}
html.is-app .app-promo,
html.is-app .app-badges { display: none !important; }
.app-promo-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center; }
.app-promo-copy h2 { color: var(--ink); }
.app-feats { list-style: none; margin: 1.2rem 0 1.6rem; padding: 0; display: grid; gap: .7rem; }
.app-feats li { display: flex; align-items: center; gap: .7rem; font-weight: 500; color: var(--ink); }
.app-feats .af-ic { width: 34px; height: 34px; border-radius: 10px; background: var(--brand-light); display: grid; place-items: center; flex: 0 0 auto; }
.app-badges.dark .app-badge { background: var(--ink); border-color: var(--ink); color: #fff; }
.app-badges.dark .app-badge:hover { background: #0c1f24; }
.app-badges.dark .app-badge small { color: #9fc9c1; }

/* Telefon-makett */
.app-promo-visual { display: flex; justify-content: center; }
.phone {
  position: relative; width: 240px; height: 480px; border-radius: 36px;
  background: #101d21; padding: 12px; box-shadow: 0 24px 50px rgba(14,154,138,.22);
}
.phone-notch { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 92px; height: 20px; background: #101d21; border-radius: 0 0 14px 14px; z-index: 2; }
.phone-screen { width: 100%; height: 100%; border-radius: 26px; background: var(--bg-soft); overflow: hidden; padding: 26px 12px 12px; }
.ps-head { font-weight: 800; color: var(--brand-dark); display: flex; align-items: center; gap: .4rem; font-size: 1.05rem; margin-bottom: .8rem; padding-left: .2rem; }
.ps-dot { width: 16px; height: 16px; border-radius: 6px; background: linear-gradient(135deg,#63d9c4,#0e9a8a); }
.ps-card { display: flex; align-items: center; gap: .6rem; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: .6rem .7rem; margin-bottom: .55rem; box-shadow: var(--shadow-soft); }
.ps-av { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-weight: 800; flex: 0 0 auto; }
.ps-info { flex: 1 1 auto; min-width: 0; line-height: 1.15; }
.ps-info b { display: block; font-size: .86rem; color: var(--ink); }
.ps-info small { color: var(--ink-soft); font-size: .74rem; }
.ps-score { font-weight: 800; color: var(--brand-dark); font-size: .82rem; flex: 0 0 auto; }

@media (max-width: 860px) {
  .app-promo-inner { grid-template-columns: 1fr; text-align: center; }
  .app-feats { justify-items: center; }
  .app-feats li { justify-content: center; }
  .app-badges.dark { justify-content: center; }
  .app-promo-visual { margin-top: 1rem; }
}

/* ---- Hero valódi kép ---- */
.hero-photo-frame { position: relative; width: 100%; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow); }
.hero-main-img { display: block; width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16 / 11; }
.hero-badge {
  position: absolute; left: 16px; bottom: 16px;
  background: rgba(255,255,255,.94); border-radius: 16px; padding: .65rem .85rem;
  display: flex; align-items: center; gap: .7rem; box-shadow: var(--shadow-soft);
  max-width: calc(100% - 32px);
}
.hb-score { width: 50px; height: 50px; border-radius: 50%; background: var(--brand); color: #fff; font-weight: 800; display: grid; place-items: center; font-size: 1.02rem; flex: 0 0 auto; }
.hb-txt b { display: block; color: var(--ink); font-size: .95rem; }
.hb-txt small { color: var(--ink-soft); font-size: .8rem; }

/* ---- Jelentés/blokkolás (globális modal + kártya-linkek) ---- */
.s-modal-overlay { position: fixed; inset: 0; background: rgba(20,40,46,.55); z-index: 400; display: grid; place-items: center; padding: 1rem; }
.s-modal-overlay[hidden] { display: none; }
.s-modal-card { position: relative; background: #fff; border-radius: var(--radius); max-width: 460px; width: 100%; padding: 1.6rem; box-shadow: var(--shadow); }
.s-modal-card h2 { color: var(--ink); margin: 0 0 .6rem; font-size: 1.2rem; }
.s-modal-card p { color: var(--ink-soft); font-size: .95rem; }
.s-modal-close { position: absolute; top: 10px; right: 14px; background: none; border: 0; font-size: 1.6rem; line-height: 1; color: var(--ink-soft); cursor: pointer; }
.report-reasons { display: grid; gap: .5rem; margin-top: 1rem; }
.report-reason { text-align: left; background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: .7rem .9rem; cursor: pointer; font-family: inherit; font-size: .95rem; color: var(--ink); }
.report-reason:hover { border-color: var(--brand); background: var(--brand-light); }
.s-msg { border-radius: 10px; padding: .7rem .9rem; font-size: .92rem; margin-top: 1rem; background: var(--brand-light); color: var(--brand-darker); }

.fsafety { display: flex; gap: 1rem; margin-bottom: .8rem; }
.flink { background: none; border: 0; color: var(--ink-soft); font-size: .8rem; cursor: pointer; font-family: inherit; padding: 0; }
.flink:hover { color: #b53c3c; text-decoration: underline; }

/* ---- Cookie-sáv ---- */
.cookie-bar {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 300;
  background: var(--ink); color: #eafaf6; border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,.28);
  padding: 1rem 1.2rem; display: flex; flex-wrap: wrap; align-items: center;
  gap: .8rem 1.4rem; max-width: 900px; margin-inline: auto;
}
.cookie-text { margin: 0; flex: 1 1 320px; font-size: .92rem; color: #d4f2ec; }
.cookie-text a { color: #fff; text-decoration: underline; }
.cookie-actions { display: flex; gap: .6rem; flex-wrap: wrap; }
.cookie-actions .btn-ghost { color: #fff; border-color: rgba(255,255,255,.5); }
.cookie-actions .btn-ghost:hover { background: rgba(255,255,255,.12); }

/* ---- Záró CTA ---- */
.cta-band {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-darker));
  color: #fff; text-align: center;
}

/* Keretezett szekció-fotó (pl. Fő4 a Biztonság szekcióban) */
.section-photo {
  margin: 0 auto 2.6rem; max-width: 760px;
  border-radius: 22px; overflow: hidden; box-shadow: var(--shadow);
}
.section-photo img {
  display: block; width: 100%; height: auto;
  aspect-ratio: 16 / 9; object-fit: cover;
}
.cta-inner { padding-block: clamp(3rem, 6vw, 4.5rem); max-width: 720px; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #d4f2ec; font-size: 1.1rem; max-width: 44ch; margin-inline: auto; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: 1.6rem; }
.btn-white { background: #fff; color: var(--brand-darker); }
.btn-white:hover { background: var(--brand-light); color: var(--brand-darker); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-outline-white:hover { background: rgba(255,255,255,.12); color: #fff; }

/* ===========================================================
   LÁBLÉC
   =========================================================== */
.site-footer { background: var(--ink); color: #b9cdc9; padding-block: 3rem 1.5rem; }
.site-footer a { color: #b9cdc9; }
.site-footer a:hover { color: #fff; }
.footer-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem;
  padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,.1);
}
.brand-light { color: #fff; }
.brand-light small { color: var(--brand-mint); }
.footer-tag { margin: .8rem 0 1rem; font-size: .92rem; color: #9fb6b1; max-width: 26ch; }
.footer-social { display: flex; gap: .7rem; list-style: none; margin: 0; padding: 0; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.08); display: grid; place-items: center;
}
.footer-social a:hover { background: var(--brand); }
.app-badges { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.1rem; }
.app-badge { display: inline-flex; align-items: center; gap: .55rem; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); color: #fff; border-radius: 12px; padding: .5rem .9rem; }
.app-badge:hover { background: rgba(255,255,255,.14); text-decoration: none; }
.app-badge svg { width: 22px; height: 22px; color: #fff; }
.app-badge span { display: flex; flex-direction: column; line-height: 1.1; }
.app-badge small { font-size: .62rem; color: #9fc9c1; }
.app-badge b { font-size: .92rem; }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h3 { font-size: .95rem; color: #fff; margin-bottom: .8rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: .5rem; }
.footer-col a { font-size: .92rem; }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .6rem;
  padding-top: 1.4rem; font-size: .85rem; color: #8aa39e;
}

/* ===========================================================
   RESZPONZÍV (teljes finomhangolás az 5. lépésben)
   =========================================================== */
/* Közepes: 4 oszlop → 2 oszlop */
@media (max-width: 900px) {
  .steps, .strengths { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .coach-wrap { grid-template-columns: 1fr; gap: 1.8rem; }
  .pricing { grid-template-columns: 1fr; max-width: 460px; }
  .price-featured { transform: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 960px) {
  .nav-toggle { display: grid; place-items: center; }

  /* Menü alapból rejtve, a hamburgerrel nyílik */
  .nav-menu {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 1rem;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 1rem 20px 1.4rem; box-shadow: var(--shadow);
  }
  .site-header.nav-open .nav-menu { display: flex; }

  .nav-menu .nav-links { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-menu .nav-links a { display: block; padding: .8rem .2rem; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav-menu .nav-actions { flex-direction: column; gap: .6rem; }
  .nav-menu .nav-actions .btn { width: 100%; }

  /* Hamburger → X, amikor nyitva (a base .2s átmenet animálja) */
  .site-header.nav-open .nav-toggle span { background: transparent; }
  .site-header.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
  .site-header.nav-open .nav-toggle span::after  { top: 0; transform: rotate(-45deg); }

  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-lead { margin-inline: auto; }
  .hero-cta, .hero-trust { justify-content: center; }
  .hero-visual { margin-top: 2rem; }
}

/* Kicsi: minden egy oszlop, az összehasonlítás egymás alá */
@media (max-width: 560px) {
  .steps, .strengths { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-ai { flex-direction: column; text-align: center; }
  .compare { grid-template-columns: 1fr; }
  .compare-vs { transform: rotate(90deg); margin: -.4rem auto; }
  /* Footer: kis telefonon is 2 oszlop (ne nyúljon el egy hosszú listává) */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 1.4rem 1.5rem; }
  .footer-bottom { justify-content: flex-start; }
}

/* ---- Natív app (Capacitor / iOS-notch / Android edge-to-edge) biztonságos zónák ---- */
@supports (padding: env(safe-area-inset-top)) {
  .site-header { padding-top: env(safe-area-inset-top, 0px); }
  .cookie-bar { bottom: calc(16px + env(safe-area-inset-bottom, 0px)); }
  body { padding-bottom: env(safe-area-inset-bottom, 0px); }
}
