/* =====================================================================
 * RapidÉrték – design system (2026 redesign)
 * Karakter: letisztult, bizalomépítő fintech.
 *  - halk neutrális háttér, fehér felületek, 1px szegély, alig árnyék
 *  - erős tipográfiai hierarchia, tabuláris számok
 *  - a teal brand CSAK hangsúly (CTA, aktív állapot, pozitív érték)
 *
 * Szerkezet:
 *   1. Tokenek        2. Alap/reset      3. Layout
 *   4. Header/nav     5. Gombok          6. Kártyák/szekciók
 *   7. Landing        8. Funnel-váz      9. Űrlapok
 *  10. Címkereső     11. Eredmény       12. Riport
 *  13. Lead/Thanks   14. Segéd/Util     15. Reszponzív
 * ===================================================================== */

/* ---------- 1. Tokenek ---------- */
:root {
  /* Spec §4 színek (az ink-skála a spec neutrálisaira képez):
   * text #1F2937, secondary #64748B, muted #94A3B8,
   * background #F8FAFC, border #E2E8F0, primary-dark #115E59. */
  --ink-900: #1F2937;
  --ink-800: #1F2937;
  --ink-700: #1F2937;
  --ink-600: #64748B;
  --ink-500: #64748B;
  --ink-400: #94A3B8;
  --ink-300: #D0D5DD;
  --ink-200: #E2E8F0;
  --ink-100: #F2F4F7;
  --ink-50:  #F8FAFC;

  /* Spec-aliazok (§4 nevezéktan) – új kód ezeket használja. */
  --color-primary: #0F766E;
  --color-primary-dark: #115E59;
  --color-primary-light: #CCFBF1;
  --color-accent: #10B981;
  --color-text: #1F2937;
  --color-text-secondary: #64748B;
  --color-text-muted: #94A3B8;
  --color-background: #F8FAFC;
  --color-surface: #FFFFFF;
  --color-border: #E2E8F0;
  --color-success: #16A34A;
  --color-warning: #F59E0B;
  --color-error: #DC2626;

  /* Brand – teal, hangsúlyként */
  --brand-700: #115E59;
  --brand-600: #0F766E;
  --brand-500: #0D9488;
  --brand-100: #CCFBF1;
  --brand-50:  #F0FDFA;

  /* Szemantikus */
  --pos-700: #067647;
  --pos-50:  #ECFDF3;
  --pos-200: #ABEFC6;
  --warn-700: #B54708;
  --warn-50:  #FFFAEB;
  --warn-200: #FEDF89;
  --dang-700: #B42318;
  --dang-50:  #FEF3F2;
  --dang-200: #FECDCA;
  --info-700: #175CD3;
  --info-50:  #EFF8FF;
  --info-200: #B2DDFF;

  /* Alias – legacy nevek, hogy semmi ne maradjon stílus nélkül */
  --brand: var(--brand-600);
  --accent: var(--color-accent);
  --dark: var(--ink-900);
  --muted: var(--ink-600);
  --line: var(--ink-200);
  --bg: #F8FAFC;
  --white: #fff;
  --red: var(--dang-700);
  --blue-bg: var(--info-50);
  --blue-bd: var(--info-200);
  --blue-tx: var(--info-700);
  --green-bg: var(--pos-50);
  --amber-bg: var(--warn-50);
  --amber-bd: var(--warn-200);
  --amber-tx: var(--warn-700);

  /* Forma – spec §6: 8 / 12 / 16 / 24 (kártya: 16px). */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 16px;
  --r-2xl: 24px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --r-pill: 999px;
  --radius: var(--r-lg);
  --radius-lg: var(--r-xl);

  /* Árnyék – finom, rétegzett */
  --sh-xs: 0 1px 2px rgba(16, 24, 40, .05);
  --sh-sm: 0 1px 3px rgba(16, 24, 40, .08), 0 1px 2px rgba(16, 24, 40, .04);
  --sh-md: 0 4px 8px -2px rgba(16, 24, 40, .08), 0 2px 4px -2px rgba(16, 24, 40, .04);
  --sh-lg: 0 12px 16px -4px rgba(16, 24, 40, .08), 0 4px 6px -2px rgba(16, 24, 40, .03);
  --sh-xl: 0 20px 24px -4px rgba(16, 24, 40, .10), 0 8px 8px -4px rgba(16, 24, 40, .04);
  --shadow: var(--sh-sm);
  --shadow-lg: var(--sh-lg);
  --shadow-lift: var(--sh-xl);

  /* Tipográfia */
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  /* A címsorok Poppins-szal melegebbek és kevésbé "rendszerfont"-szerűek – ez a
   * tervrajz tipográfiája (Inter / Poppins). */
  --font-head: "Poppins", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --font-mono: ui-monospace, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;

  /* Térköz (8pt) */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px;

  /* Nyílikon maszkként (gombok ::after-je) – lásd §5. */
  --arrow-r: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12h15.6'/%3E%3Cpath d='m13.6 5.6 6 6.4-6 6.4'/%3E%3C/svg%3E");

  --header-h: 64px;
  color-scheme: light;
}

/* ---------- 1b. Ikonok (spec §19, §21) ----------
 * Egyetlen outline-készlet, currentColor-ral. A méret itt dől el, nem a
 * markupban – így egy helyen hangolható az egész felület ikonritmusa. */
.ic { width: 20px; height: 20px; flex: 0 0 auto; display: inline-block; vertical-align: -.22em; }
.ic-sm { width: 16px; height: 16px; }
.ic-lg { width: 24px; height: 24px; }
.ic-xl { width: 28px; height: 28px; }

/* ---------- 2. Alap ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  overflow-x: hidden;   /* a lépésváltás-animáció eltolása ne gördítsen oldalra */
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-700);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink-900);
  letter-spacing: -.02em;
  margin: 0 0 var(--s-2);
  font-weight: 700;
}
/* Spec §5: desktop H1 48/56, H2 36/44, H3 24/32; mobil 32/28/22. */
h1 { font-size: clamp(2rem, 1.5rem + 2.5vw, 3rem); line-height: 1.17; }
h2 { font-size: clamp(1.75rem, 1.5rem + 1.25vw, 2.25rem); line-height: 1.22; }
h3 { font-size: clamp(1.375rem, 1.25rem + 0.625vw, 1.5rem); line-height: 1.33; }
h4 { font-size: 1rem; line-height: 1.5; }
p { margin: 0 0 var(--s-3); }
p:last-child { margin-bottom: 0; }
a { color: var(--brand-600); text-decoration: none; }
a:hover { text-decoration: underline; }
::selection { background: var(--brand-100); color: var(--ink-900); }
:focus-visible {
  outline: 2px solid var(--brand-500);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}
img, svg { max-width: 100%; }
hr { border: 0; border-top: 1px solid var(--ink-200); margin: var(--s-5) 0; }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink-900); color: #fff; padding: 10px 16px; border-radius: 0 0 var(--r-md) 0;
}
.skip-link:focus { left: 0; }

/* Számok mindig tabulárisak – ártáblák, sávok nem "ugrálnak" */
.num, .bigprice, .rep-price, .v-big, .metric-v, .factors td, .money,
.range-labels, .stat-v, .kpi-v { font-variant-numeric: tabular-nums; }

/* ---------- 3. Layout ---------- */
/* Spec §6: max 1200px; desktop 24px, tablet 32px, mobil 16px oldalsó tér. */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
@media (min-width: 768px) and (max-width: 1199px) {
  .wrap { padding: 0 32px; }
}
@media (min-width: 1200px) {
  .wrap { padding: 0 24px; }
}
.wrap-narrow { max-width: 720px; margin: 0 auto; }
main#app { display: block; padding-bottom: var(--s-7); }
.section { padding: var(--s-7) 0; }
.section-tight { padding: var(--s-6) 0; }
.stack > * + * { margin-top: var(--s-4); }
.stack-sm > * + * { margin-top: var(--s-2); }

/* ---------- 4. Header / nav ---------- */
.header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--ink-200);
}
.header-in {
  display: flex; align-items: center; gap: var(--s-4);
  max-width: 1200px; margin: 0 auto; padding: var(--s-3) var(--s-4);
  min-height: var(--header-h);
}
.logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 1.0625rem; color: var(--ink-900);
  letter-spacing: -.02em; text-decoration: none; white-space: nowrap; margin-right: auto;
}
.logo:hover { text-decoration: none; }
.logo-mark {
  width: 34px; height: 34px; border-radius: 10px; flex: none;
  background: var(--brand-600); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-sm);
}
.logo-mark svg { width: 19px; height: 19px; }
.logo-word b { font-weight: 700; color: var(--brand-600); }
.logo-icon { /* legacy */
  width: 32px; height: 32px; border-radius: 9px; flex: none;
  background: var(--brand-50); display: inline-flex; align-items: center; justify-content: center;
}
.mainnav { display: flex; align-items: center; gap: var(--s-1); }
.mainnav a.nav-link {
  color: var(--ink-600); font-size: .9375rem; font-weight: 500;
  padding: 8px 12px; border-radius: var(--r-md); text-decoration: none;
  transition: color .15s, background .15s;
}
.mainnav a.nav-link:hover { color: var(--ink-900); background: var(--ink-100); text-decoration: none; }
.mainnav a.nav-link[aria-current="page"] { color: var(--brand-600); }
.hamburger {
  display: none; background: #fff; border: 1px solid var(--ink-200); border-radius: var(--r-md);
  width: 42px; height: 42px; align-items: center; justify-content: center;
  cursor: pointer; color: var(--ink-700); line-height: 1;
}

/* ---------- 5. Gombok ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-size: .9375rem; font-weight: 600; line-height: 1;
  padding: 13px 20px; min-height: 46px;
  border: 1px solid transparent; border-radius: var(--r-md);
  background: var(--brand-600); color: #fff;
  cursor: pointer; text-decoration: none; text-align: center; white-space: nowrap;
  box-shadow: var(--sh-xs);
  transition: background .15s, box-shadow .15s, transform .1s, border-color .15s, color .15s;
}
.btn:hover { background: var(--brand-700); text-decoration: none; box-shadow: var(--sh-sm); }
.btn:active { transform: translateY(1px); }
.btn:disabled, .btn[disabled] { opacity: .55; cursor: progress; transform: none; }
.btn-ghost { background: #fff; color: var(--ink-700); border-color: var(--ink-300); }
.btn-ghost:hover { background: var(--ink-50); color: var(--ink-900); border-color: var(--ink-400); }
.btn-quiet { background: transparent; color: var(--ink-600); border-color: transparent; box-shadow: none; }
.btn-quiet:hover { background: var(--ink-100); color: var(--ink-900); }
.btn-brandline { background: #fff; color: var(--brand-600); border-color: var(--brand-600); }
.btn-brandline:hover { background: var(--brand-50); color: var(--brand-700); }
.btn-lg { font-size: 1rem; padding: 15px 26px; min-height: 52px; }
.btn-sm { font-size: .875rem; padding: 8px 14px; min-height: 36px; }
.btn-pill { border-radius: var(--r-pill); }
.btn-block { width: 100%; }
/* A gomb nyila is SVG (spec §21): maszkolt vektor, currentColor-ral – így a
 * ghost és a teli gombon is a saját szövegszínét veszi fel, és nem a
 * rendszerfont nyilát kapjuk, ami platformonként más vastagságú. */
.btn-icon-r::after {
  content: ""; width: 18px; height: 18px; flex: none; background: currentColor;
  -webkit-mask: var(--arrow-r) center / contain no-repeat;
          mask: var(--arrow-r) center / contain no-repeat;
}
.btn .ic { width: 18px; height: 18px; vertical-align: 0; }
.btn-lg .ic, .btn-lg.btn-icon-r::after { width: 20px; height: 20px; }
/* ---------- 6. Kártyák / szekciók ---------- */
.card {
  background: #fff;
  border: 1px solid var(--ink-200);
  border-radius: var(--r-xl);
  padding: var(--s-5);
  margin: var(--s-4) auto;
  box-shadow: var(--sh-xs);
  width: 100%;
}
.card-narrow { max-width: 720px; }
.card-flush { padding: 0; overflow: hidden; }
.card > h2 { margin-bottom: var(--s-1); }
.card .lede { color: var(--ink-600); font-size: .9375rem; margin: 0 0 var(--s-4); }
.panel {
  background: var(--ink-50);
  border: 1px solid var(--ink-200);
  border-radius: var(--r-lg);
  padding: var(--s-4);
}
.eyebrow {
  display: inline-block; font-size: .75rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--brand-600); margin-bottom: var(--s-2);
}
.section-title { text-align: center; margin: 0 0 var(--s-2); }
.section-sub { text-align: center; color: var(--ink-600); max-width: 620px; margin: 0 auto var(--s-5); }

/* ---------- 7. Landing ---------- */
/* Hero: világos, osztott kártya – balra az ígéret, jobbra a kép két lebegő
 * bizonyíték-kártyával. Fehér felület, vékony teal felső sáv: prémium hatás
 * fotó és üveg-effekt nélkül is. */
.lp-hero { padding: var(--s-6) 0 var(--s-7); background: var(--bg); }
.hero-card {
  display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  gap: var(--s-6); align-items: center;
  background: var(--white); border: 1px solid var(--ink-200);
  border-top: 4px solid var(--brand-600);
  border-radius: var(--r-2xl); box-shadow: var(--sh-lg);
  padding: var(--s-7) var(--s-6); overflow: hidden;
}
.hero-copy { min-width: 0; max-width: 600px; }
.hero-copy h1 {
  font-size: clamp(2.25rem, 2rem + 2vw, 3rem); line-height: 1.1;
  letter-spacing: -.035em; margin-bottom: var(--s-3);
}
.hero-copy h1 em { font-style: normal; color: var(--brand-600); }
.hero-copy .lp-lede { margin-bottom: var(--s-5); }
.hero-visual { position: relative; min-width: 0; }
.hero-img {
  display: block; width: 100%; height: auto; aspect-ratio: 16 / 10; object-fit: cover;
  border-radius: var(--r-xl); border: 1px solid var(--ink-200);
  box-shadow: var(--sh-md); background: var(--ink-50);
}
.float-card {
  position: absolute; display: flex; gap: 10px; align-items: center;
  background: var(--white); border: 1px solid var(--ink-200);
  border-radius: var(--r-lg); box-shadow: var(--sh-md);
  padding: 12px 16px; max-width: min(78%, 300px);
}
.float-card[hidden] { display: none; }
.float-card .fc-ic { width: 24px; height: 24px; flex: none; color: var(--brand-600); }
.float-card b { display: block; font-size: 1.0625rem; color: var(--ink-900); font-variant-numeric: tabular-nums; letter-spacing: -.01em; }
.float-card span { display: block; font-size: .8125rem; color: var(--ink-600); line-height: 1.35; }
.fc-count { top: 16px; left: -16px; }
.fc-src { bottom: 16px; right: 16px; }
.lp-lede { font-size: clamp(1rem, 2.2vw, 1.125rem); color: var(--ink-600); max-width: 560px; margin: 0 0 var(--s-5); }
.lp-cta { display: flex; gap: var(--s-3); flex-wrap: wrap; }
.lp-note { margin-top: var(--s-3); font-size: .875rem; color: var(--ink-500); }
@media (max-width: 900px) {
  .hero-card { grid-template-columns: 1fr; gap: var(--s-5); padding: var(--s-5) var(--s-4); }
  .fc-count { top: 10px; left: 10px; }
  .fc-src { bottom: 10px; right: 10px; }
  .float-card { padding: 10px 12px; }
  .float-card b { font-size: 1rem; }
}
@media (max-width: 760px) {
  .lp-cta .btn { width: 100%; }
}

.trust-strip {
  display: flex; flex-wrap: wrap; gap: var(--s-2) var(--s-5); justify-content: center;
  margin-top: var(--s-5);
}
/* Spec §8: három előny közvetlenül a hero alatt. */
.lp-benefits-sec { padding: var(--s-6) 0 var(--s-2); }
.lp-benefits-sec .feat-grid { margin: 0; }
@media (max-width: 900px) { .trust-strip { justify-content: center; } }
.trust-item { display: inline-flex; align-items: center; gap: 8px; font-size: .875rem; color: var(--ink-600); }
.trust-item .tick { width: 16px; height: 16px; color: var(--color-success); stroke-width: 2.4; }
.trust-item b { color: var(--ink-900); font-variant-numeric: tabular-nums; }
/* legacy trustline */
.trustline {
  display: inline-flex; align-items: center; gap: 8px; font-size: .875rem;
  color: var(--ink-600); background: #fff; border: 1px solid var(--ink-200);
  border-radius: var(--r-pill); padding: 8px 16px; box-shadow: var(--sh-xs);
}
.trustline b { color: var(--ink-900); }

.feat-grid { display: grid; grid-template-columns: 1fr; gap: var(--s-4); }
.feat {
  background: #fff; border: 1px solid var(--ink-200); border-radius: var(--r-xl);
  padding: var(--s-5); box-shadow: var(--sh-xs);
  transition: box-shadow .18s, transform .18s, border-color .18s;
}
.feat:hover { box-shadow: var(--sh-md); transform: translateY(-2px); border-color: var(--ink-300); }
.feat-ic {
  width: 44px; height: 44px; border-radius: var(--r-md); display: inline-flex;
  align-items: center; justify-content: center; color: var(--brand-600);
  background: var(--brand-50); border: 1px solid var(--brand-100); margin-bottom: var(--s-3);
}
.feat-ic .ic { width: 22px; height: 22px; vertical-align: 0; }
.feat h3 { margin-bottom: var(--s-1); }
.feat p { color: var(--ink-600); font-size: .9375rem; margin: 0; }
/* legacy benefit-* → feat megjelenés */
.benefit-grid { display: grid; grid-template-columns: 1fr; gap: var(--s-4); margin: var(--s-4) 0 var(--s-6); }
.benefit-card {
  background: #fff; border: 1px solid var(--ink-200); border-radius: var(--r-xl);
  padding: var(--s-5); box-shadow: var(--sh-xs); text-align: left;
}
.benefit-card .bic { font-size: 1.5rem; }
.benefit-card h3 { margin: var(--s-2) 0 var(--s-1); font-size: 1.0625rem; }
.benefit-card p { margin: 0; color: var(--ink-600); font-size: .9375rem; }

/* Miért mi: négy pipás állítás, két hasábban (tervrajz). */
.why { margin-top: var(--s-6); }
.why-title { font-size: 1.375rem; margin-bottom: var(--s-4); }
.why-list { list-style: none; display: grid; grid-template-columns: 1fr; gap: var(--s-3) var(--s-6); }
.why-item { display: flex; gap: var(--s-3); align-items: flex-start; font-size: .9375rem; color: var(--ink-600); }
.why-item .ic { color: var(--color-success); margin-top: 1px; }
.why-item b { color: var(--ink-900); font-weight: 600; }
@media (min-width: 720px) { .why-list { grid-template-columns: 1fr 1fr; } }

/* Szakértői sáv: fotó + állítások, halk teal panelen. */
.expert-band {
  display: grid; grid-template-columns: 1fr; gap: 0; overflow: hidden;
  background: var(--brand-50); border: 1px solid var(--brand-100);
  border-radius: var(--r-2xl);
}
.eb-photo { position: relative; min-height: 240px; background: var(--brand-100); }
.eb-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.eb-copy { padding: var(--s-6); }
.eb-copy h2 { font-size: 1.375rem; line-height: 1.32; margin-bottom: var(--s-4); }
.eb-list { list-style: none; display: grid; gap: var(--s-2); margin-bottom: var(--s-5); }
.eb-list li { display: flex; align-items: center; gap: var(--s-3); font-size: .9375rem; color: var(--ink-700); }
.eb-list .ic { color: var(--color-success); width: 18px; height: 18px; }
@media (min-width: 860px) {
  .expert-band { grid-template-columns: minmax(0, 320px) minmax(0, 1fr); align-items: stretch; }
  .eb-photo { min-height: 300px; }
  .eb-copy { padding: var(--s-6) var(--s-7); align-self: center; }
}

.how { counter-reset: how; display: grid; grid-template-columns: 1fr; gap: var(--s-4); }
.how-step {
  position: relative; background: #fff; border: 1px solid var(--ink-200);
  border-radius: var(--r-xl); padding: var(--s-5); box-shadow: var(--sh-xs);
}
.how-n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: var(--r-pill);
  background: var(--ink-900); color: #fff; font-size: .8125rem; font-weight: 700;
  margin-bottom: var(--s-3); font-variant-numeric: tabular-nums;
}
.how-step h3 { margin-bottom: var(--s-1); }
.how-step p { margin: 0; color: var(--ink-600); font-size: .9375rem; }

.method {
  background: var(--ink-900); color: #fff; border-radius: var(--r-2xl);
  padding: var(--s-6); position: relative; overflow: hidden;
}
.method::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background: radial-gradient(600px 200px at 85% 0%, rgba(13, 148, 136, .28), transparent 70%);
}
.method > * { position: relative; z-index: 1; }
.method h2 { color: #fff; }
.method p { color: rgba(255, 255, 255, .72); }
.method .eyebrow { color: var(--brand-100); }
.method-grid { display: grid; grid-template-columns: 1fr; gap: var(--s-4); margin-top: var(--s-5); }
.method-box {
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--r-lg); padding: var(--s-4);
}
.method-box b { color: #fff; display: block; margin-bottom: 4px; font-size: .9375rem; }
.method-box span { color: rgba(255, 255, 255, .66); font-size: .875rem; }

.faq { display: grid; gap: var(--s-2); max-width: 760px; margin: 0 auto; }
.faq-item {
  background: #fff; border: 1px solid var(--ink-200); border-radius: var(--r-lg);
  padding: 2px var(--s-4); box-shadow: var(--sh-xs);
}
.faq-item summary {
  cursor: pointer; list-style: none; font-weight: 600; color: var(--ink-900);
  padding: var(--s-4) 28px var(--s-4) 0; position: relative; font-size: .9375rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  color: var(--ink-400); font-size: 1.25rem; font-weight: 400;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p { color: var(--ink-600); font-size: .9375rem; padding-bottom: var(--s-4); margin: 0; }

.cta-band {
  background: #fff; border: 1px solid var(--ink-200); border-radius: var(--r-2xl);
  padding: var(--s-6); text-align: center; box-shadow: var(--sh-sm);
}

/* ---------- 8. Funnel-váz ---------- */
.funnel { max-width: 720px; margin: 0 auto; padding-top: var(--s-5); }
.progress { margin: 0 auto var(--s-4); max-width: 720px; }
.progress-meta {
  display: flex; align-items: baseline; justify-content: space-between; gap: var(--s-3);
  margin-bottom: 10px;
}
.progress-step { font-size: .8125rem; font-weight: 600; color: var(--ink-900); }
.progress-pct { font-size: .8125rem; color: var(--ink-500); font-variant-numeric: tabular-nums; }
/* Számozott lépésjelző (tervrajz): kör + felirat, közöttük összekötő vonal.
 * Mobilon a feliratok elrejtőznek, a körök maradnak – így nem tördelődik szét. */
.psteps {
  list-style: none; margin: 0 0 var(--s-3); padding: 0;
  display: flex; align-items: center; gap: var(--s-2);
}
.pstep {
  display: flex; align-items: center; gap: 8px; flex: 1 1 0; min-width: 0;
  color: var(--ink-500); font-size: .8125rem; font-weight: 600;
}
.pstep + .pstep::before {
  content: ""; flex: 1 1 auto; height: 2px; border-radius: 2px;
  background: var(--ink-200); margin-right: 8px; min-width: 12px;
}
.pstep.is-done + .pstep::before, .pstep.is-cur + .pstep::before { background: var(--brand-500); }
.pstep-n {
  width: 26px; height: 26px; flex: none; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--ink-100); color: var(--ink-500);
  font-size: .8125rem; font-weight: 700; line-height: 1;
}
.pstep-n .ic { width: 14px; height: 14px; vertical-align: 0; stroke-width: 2.6; }
.casc-n .ic { width: 12px; height: 12px; vertical-align: 0; stroke-width: 2.8; }
.pstep-l { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pstep.is-done .pstep-n { background: var(--brand-100); color: var(--brand-700); }
.pstep.is-done { color: var(--ink-600); }
.pstep.is-cur .pstep-n { background: var(--brand-600); color: #fff; box-shadow: 0 0 0 4px rgba(15, 118, 110, .12); }
.pstep.is-cur { color: var(--ink-900); }
@media (max-width: 560px) {
  .pstep-l { display: none; }
  .pstep { flex: 0 0 auto; }
  .pstep + .pstep::before { min-width: 20px; }
  .psteps { justify-content: space-between; }
  .pstep:last-child { flex: 1 1 auto; }
}
.progress-track { height: 4px; border-radius: var(--r-pill); background: var(--ink-200); overflow: hidden; }
.progress-fill {
  height: 100%; border-radius: var(--r-pill);
  background: linear-gradient(90deg, var(--brand-600), var(--brand-500));
  transition: width .45s cubic-bezier(.22, 1, .36, 1);
}
.progress-back {
  display: inline-flex; align-items: center; gap: 6px; margin-bottom: var(--s-3);
  font-size: .875rem; color: var(--ink-600); background: none; border: 0; padding: 4px 0;
  cursor: pointer; font-family: inherit;
}
.progress-back:hover { color: var(--ink-900); text-decoration: none; }

/* legacy stepper – megtartva, új kabátban */
.stepper { display: flex; gap: 6px; margin: 0 auto var(--s-4); max-width: 720px; }
.stepper .st {
  flex: 1; text-align: center; font-size: .8125rem; font-weight: 600;
  padding: 9px 6px; border-radius: var(--r-pill); background: var(--ink-100);
  color: var(--ink-500); white-space: nowrap; text-decoration: none;
}
.stepper .st.active { background: var(--ink-900); color: #fff; }
.stepper .st.done { background: var(--brand-50); color: var(--brand-700); border: 1px solid var(--brand-100); }
.stepper a.st { display: block; }
.stepper a.st:hover { text-decoration: none; }

/* Akciósáv – mobilon ragad, desktopon a kártya alján */
.actionbar {
  display: flex; gap: var(--s-3); align-items: center;
  margin-top: var(--s-5); padding-top: var(--s-4); border-top: 1px solid var(--ink-200);
}
.actionbar .btn-primary-slot { flex: 1; }
.bottom-cta {
  display: flex; gap: var(--s-3); align-items: center;
  margin-top: var(--s-5); padding-top: var(--s-4); border-top: 1px solid var(--ink-200);
}
.bottom-cta .btn { flex: 1; }
.inline-cta { display: flex; gap: var(--s-3); margin-top: var(--s-4); }
.inline-cta > * { flex: 1; }

/* Alkérdés-panelek (Step2) */
.substep { display: none; }
.substep.on { display: block; animation: fade-up .28s cubic-bezier(.22, 1, .36, 1); }
@keyframes fade-up { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.substep-head { margin-bottom: var(--s-4); }
.substep-head h2 { font-size: 1.375rem; margin-bottom: var(--s-1); }
.substep-head p { color: var(--ink-600); font-size: .9375rem; margin: 0; }
.substep-dots { display: flex; gap: 6px; margin-bottom: var(--s-4); }
.substep-dots i {
  height: 4px; flex: 1; border-radius: var(--r-pill); background: var(--ink-200);
  transition: background .3s;
}
.substep-dots i.on { background: var(--brand-500); }
.substep-dots i.done { background: var(--brand-100); }

/* ---------- 9. Űrlapok ---------- */
label.flabel, .flabel {
  display: block; font-size: .875rem; font-weight: 600; color: var(--ink-800);
  margin: 0 0 6px;
}
.field { margin-bottom: var(--s-4); }
.field:last-child { margin-bottom: 0; }
input, select, textarea {
  width: 100%; font-family: inherit; font-size: 16px; color: var(--ink-900);
  background: #fff; border: 1px solid var(--ink-300); border-radius: var(--r-md);
  padding: 12px 14px; min-height: 46px;
  transition: border-color .15s, box-shadow .15s, background .15s;
}
input::placeholder, textarea::placeholder { color: var(--ink-400); }
input:hover, select:hover, textarea:hover { border-color: var(--ink-400); }
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--brand-500);
  box-shadow: 0 0 0 4px rgba(13, 148, 136, .14);
}
input:disabled, select:disabled, textarea:disabled { background: var(--ink-100); color: var(--ink-500); cursor: not-allowed; }
textarea { resize: vertical; min-height: 96px; line-height: 1.5; }
select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5 10 12.5 15 7.5' stroke='%23667085' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; padding-right: 40px;
}
.input-wrap { position: relative; }
.input-wrap .iicon {
  position: absolute; left: 13px; top: 50%; transform: translateY(-50%);
  line-height: 0; pointer-events: none; color: var(--ink-400);
}
.input-wrap .iicon .ic { width: 18px; height: 18px; vertical-align: 0; }
.input-wrap:focus-within .iicon { color: var(--brand-600); }
.input-wrap .iprefix {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: var(--ink-500); font-size: .875rem; font-weight: 600; pointer-events: none;
}
.input-wrap .isuffix {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  color: var(--ink-500); font-size: .875rem; font-weight: 600; pointer-events: none;
}
.input-wrap input.has-icon, .input-wrap select.has-icon { padding-left: 42px; }
.input-wrap input.has-prefix { padding-left: 46px; }
.input-wrap input.has-suffix { padding-right: 46px; }
.hint, .muted { color: var(--ink-500); font-size: .875rem; }
.hint { margin: 6px 0 0; }
p.muted { margin-top: 6px; }
.field-err, .err {
  color: var(--dang-700); font-size: .8125rem; font-weight: 500; margin: 6px 0 0;
}
.err { min-height: 1.1em; }
.field-ok { color: var(--pos-700); font-size: .8125rem; font-weight: 500; margin: 6px 0 0; }
.grid2 { display: grid; grid-template-columns: 1fr; gap: var(--s-4); }
.grid3 { display: grid; grid-template-columns: 1fr; gap: var(--s-4); }
.row { display: flex; gap: var(--s-3); align-items: stretch; }
.row > * { flex: 1; }

/* Választókártyák */
.typecards { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-3); }
.typecard {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  background: #fff; border: 1px solid var(--ink-300); border-radius: var(--r-lg);
  padding: var(--s-4) var(--s-2); min-height: 88px;
  font-family: inherit; font-size: .9375rem; font-weight: 600; color: var(--ink-700);
  cursor: pointer; text-align: center;
  transition: border-color .15s, background .15s, box-shadow .15s, color .15s;
}
.typecard:hover { border-color: var(--ink-400); background: var(--ink-50); }
.typecard .tico { line-height: 0; color: var(--ink-400); transition: color .15s; }
.typecard .tico .ic { width: 26px; height: 26px; vertical-align: 0; }
.typecard:hover .tico { color: var(--ink-600); }
.typecard.sel .tico { color: var(--brand-600); }
.typecard small { color: var(--ink-500); font-size: .75rem; font-weight: 500; }
.typecard.sel {
  border-color: var(--brand-600); background: var(--brand-50); color: var(--brand-700);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, .12);
}

/* Piktogramos választó (állapot / fűtés / lift) – a typecard testvére,
   csak sűrűbb, mert soronként három fér ki. */
.pickcards { display: grid; gap: var(--s-2); }
.pick-2 { grid-template-columns: repeat(2, 1fr); }
.pick-3 { grid-template-columns: repeat(3, 1fr); }
.pickcard {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  background: #fff; border: 1px solid var(--ink-300); border-radius: var(--r-lg);
  padding: var(--s-3) 10px; min-height: 76px;
  font-family: inherit; font-size: .875rem; font-weight: 600; color: var(--ink-700);
  cursor: pointer; text-align: center; line-height: 1.25;
  transition: border-color .15s, background .15s, box-shadow .15s, color .15s;
}
.pickcard:hover { border-color: var(--ink-400); background: var(--ink-50); }
.pickcard .pico { line-height: 0; color: var(--ink-400); transition: color .15s; }
.pickcard .pico .ic { width: 24px; height: 24px; vertical-align: 0; }
.pickcard:hover .pico { color: var(--ink-600); }
.pickcard.sel { border-color: var(--brand-600); background: var(--brand-50); color: var(--brand-700); box-shadow: 0 0 0 3px rgba(15, 118, 110, .12); }
.pickcard.sel .pico { color: var(--brand-600); }
.pickcard:focus-visible { outline: 2px solid var(--brand-600); outline-offset: 2px; }
/* Ötfokú állapotjelző: ikon helyett a skálán elfoglalt hely a jelentés. */
.plvl { display: flex; align-items: flex-end; gap: 3px; height: 20px; }
.plvl i { width: 5px; border-radius: 2px; background: var(--ink-300); transition: background .15s; }
.plvl i:nth-child(1) { height: 7px; } .plvl i:nth-child(2) { height: 10px; }
.plvl i:nth-child(3) { height: 13px; } .plvl i:nth-child(4) { height: 16px; }
.plvl i:nth-child(5) { height: 19px; }
.plvl i.on { background: var(--ink-400); }
.pickcard.sel .plvl i.on { background: var(--brand-600); }
@media (max-width: 560px) {
  .pick-3 { grid-template-columns: repeat(2, 1fr); }
  .pickcard { min-height: 68px; font-size: .8125rem; }
}

/* Kapcsolók / jelölők */
.check-grid { display: grid; grid-template-columns: 1fr; gap: var(--s-2); }
.check-pill {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--ink-300); border-radius: var(--r-md);
  padding: 12px 14px; min-height: 48px; font-size: .9375rem; font-weight: 500;
  color: var(--ink-700); cursor: pointer;
  transition: border-color .15s, background .15s, color .15s;
}
.check-pill:hover { border-color: var(--ink-400); background: var(--ink-50); }
.check-pill input { width: 20px; height: 20px; min-height: 20px; margin: 0; flex: none; accent-color: var(--brand-600); }
.check-pill.on { border-color: var(--brand-600); background: var(--brand-50); color: var(--brand-700); font-weight: 600; }
.check { display: flex; gap: 10px; align-items: flex-start; margin: var(--s-3) 0; font-size: .9375rem; color: var(--ink-700); }
.check input { width: 20px; height: 20px; min-height: 20px; margin: 2px 0 0; flex: none; accent-color: var(--brand-600); }
.check-green input { accent-color: var(--brand-600); }
.pill-row { display: flex; gap: var(--s-2); flex-wrap: wrap; }
.pill {
  background: #fff; border: 1px solid var(--ink-300); border-radius: var(--r-pill);
  padding: 10px 18px; min-height: 44px; font-family: inherit; font-size: .9375rem;
  font-weight: 600; color: var(--ink-700); cursor: pointer;
  transition: border-color .15s, background .15s, color .15s;
}
.pill:hover { border-color: var(--ink-400); background: var(--ink-50); }
.pill.on { border-color: var(--brand-600); background: var(--brand-50); color: var(--brand-700); }
.purpose-box {
  border: 1px solid var(--ink-200); border-radius: var(--r-lg);
  padding: var(--s-4); background: var(--ink-50);
}

/* Dropzone */
.dropzone {
  border: 1.5px dashed var(--ink-300); border-radius: var(--r-lg);
  padding: var(--s-6) var(--s-4); text-align: center; color: var(--ink-600);
  background: var(--ink-50); cursor: pointer; transition: border-color .15s, background .15s;
}
.dropzone:hover, .dropzone.over { border-color: var(--brand-500); background: var(--brand-50); }
.dropzone .dz-ic { line-height: 0; color: var(--ink-400); }
.dropzone b { color: var(--ink-900); display: block; margin-top: 6px; }

/* ---------- 10. Címkereső (Step1) ---------- */
.addr-row { display: grid; grid-template-columns: 1fr; gap: var(--s-4); }
.addr-wrap, .stl-wrap { position: relative; }
.addr-drop {
  position: absolute; left: 0; right: 0; top: calc(100% + 6px); z-index: 50;
  background: #fff; border: 1px solid var(--ink-200); border-radius: var(--r-lg);
  box-shadow: var(--sh-xl); max-height: 340px; overflow: auto; padding: 6px;
}
.addr-sec {
  font-size: .6875rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-400); padding: 10px 10px 6px;
}
.addr-item {
  display: flex; gap: 10px; align-items: center; padding: 10px;
  border-radius: var(--r-sm); cursor: pointer; font-size: .9375rem; min-height: 44px;
  color: var(--ink-700); transition: background .12s;
}
.addr-item:hover, .addr-item.active { background: var(--ink-100); color: var(--ink-900); }
.addr-item b { color: var(--ink-900); font-weight: 600; }
.addr-item .aic { flex: none; line-height: 0; color: var(--ink-400); }
.addr-item .aic .ic { width: 18px; height: 18px; vertical-align: 0; }
.addr-empty, .addr-hint { padding: 14px 12px; color: var(--ink-500); font-size: .875rem; }
.addr-loading { display: flex; gap: 10px; align-items: center; padding: 14px 12px; color: var(--ink-500); font-size: .875rem; }
.spinner {
  width: 16px; height: 16px; flex: none; border-radius: 50%;
  border: 2px solid var(--ink-200); border-top-color: var(--brand-600);
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
/* A böngésző [hidden]{display:none} szabálya gyengébb, mint egy osztály
 * display-e, ezért az .addr-pick a hidden=true ellenére üres zöld sávként
 * látszott a Step1 tetején. Egy helyen, mindenkire érvényesen zárjuk le. */
[hidden] { display: none !important; }
.addr-pick {
  display: flex; gap: 12px; align-items: center;
  background: var(--pos-50); border: 1px solid var(--pos-200);
  border-radius: var(--r-lg); padding: 12px 14px; margin-top: var(--s-3);
}
.addr-pick .ok {
  width: 26px; height: 26px; flex: none; border-radius: 50%;
  background: var(--pos-700); color: #fff; display: inline-flex;
  align-items: center; justify-content: center;
}
.addr-pick .ok .ic, .flat-chosen .ok .ic { width: 15px; height: 15px; vertical-align: 0; stroke-width: 2.6; }
.addr-pick-body { flex: 1; min-width: 0; font-size: .9375rem; color: var(--ink-800); }
.addr-detailbox[open] > summary, .addr-manual[open] summary { border-bottom: 1px solid var(--ink-200); margin-bottom: var(--s-4); }
.addr-detailbox .muted { font-weight: 400; }
.addr-detailbox > *:last-child, .addr-manual > *:last-child { padding-bottom: var(--s-4); }
.addr-main { min-width: 0; }
.grid2.addr-detail { margin-bottom: var(--s-4); }

/* Lakásválasztó tábla */
.flat-pick {
  background: #fff; border: 1px solid var(--ink-200); border-radius: var(--r-lg);
  padding: var(--s-4); margin-bottom: var(--s-4);
}
.flat-head {
  font-weight: 600; font-size: .9375rem; color: var(--ink-900);
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 8px; margin-bottom: var(--s-4);
}
.flat-head .muted { font-weight: 500; }
.mono { font-family: var(--font-mono); font-size: .8125rem; color: var(--ink-500); }

/* Kaszkád: lépcsőház → emelet → ajtó, egymásra épülő szűrőkkel.
 * A még nem elérhető szint halványan, de LÁTHATÓAN ott van – így tudni,
 * hány kérdés maradt hátra. */
.casc-lv {
  border-top: 1px solid var(--ink-200);
  padding: var(--s-4) 0 0; margin-top: var(--s-4);
}
.casc-lv:first-of-type { border-top: 0; padding-top: 0; margin-top: 0; }
.casc-head { display: flex; align-items: center; gap: 10px; margin-bottom: var(--s-3); }
.casc-n {
  width: 22px; height: 22px; flex: none; border-radius: 50%;
  background: var(--ink-200); color: var(--ink-600);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .6875rem; font-weight: 700; font-variant-numeric: tabular-nums;
  transition: background .15s, color .15s;
}
.casc-label { font-size: .875rem; font-weight: 600; color: var(--ink-800); }
.casc-cur {
  margin-left: auto; font-size: .8125rem; font-weight: 600;
  color: var(--brand-700); background: var(--brand-50);
  border: 1px solid var(--brand-100); border-radius: var(--r-pill); padding: 3px 10px;
}
.casc-lv.is-done .casc-n { background: var(--brand-600); color: #fff; }
.casc-lv.is-pending { opacity: .45; }
.casc-lv.is-pending .casc-n { background: var(--ink-100); color: var(--ink-400); }
.casc-wait { font-size: .8125rem; color: var(--ink-500); margin: 0; font-style: italic; }
.casc-select { max-width: 320px; }
.chip-row { display: flex; flex-wrap: wrap; gap: var(--s-2); }

/* Kiválasztott lakás: összefoglaló, nem lista */
.flat-chosen {
  display: flex; align-items: center; gap: var(--s-3);
  background: var(--pos-50); border: 1px solid var(--pos-200);
  border-radius: var(--r-md); padding: 12px 14px;
}
.flat-chosen .ok {
  width: 26px; height: 26px; flex: none; border-radius: 50%;
  background: var(--pos-700); color: #fff; display: inline-flex;
  align-items: center; justify-content: center;
}
.flat-chosen-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.flat-chosen-body b { font-size: .9375rem; color: var(--ink-900); }

.stair-pick { margin-bottom: var(--s-4); }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; border: 1px solid var(--ink-300); border-radius: var(--r-pill);
  padding: 8px 16px; min-height: 42px; min-width: 52px; justify-content: center;
  font-family: inherit; font-size: .9375rem; font-weight: 600; color: var(--ink-700);
  cursor: pointer; transition: border-color .12s, background .12s, color .12s;
}
.chip:hover { border-color: var(--ink-400); background: var(--ink-50); }
.chip.on { border-color: var(--brand-600); background: var(--brand-50); color: var(--brand-700); box-shadow: 0 0 0 3px rgba(15, 118, 110, .10); }
.chip-n { font-size: .75rem; font-weight: 500; color: var(--ink-400); }
.chip.on .chip-n { color: var(--brand-600); }

/* ---------- 11. Eredmény ---------- */
.result-hero {
  background: #fff; border: 1px solid var(--ink-200); border-radius: var(--r-2xl);
  padding: var(--s-6) var(--s-5) var(--s-5); text-align: center; box-shadow: var(--sh-sm);
  position: relative; overflow: hidden;
}
.result-hero::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--brand-600), var(--brand-500), var(--pos-700));
}
.result-addr {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .875rem; color: var(--ink-500); margin-bottom: var(--s-3);
}
.result-label { font-size: 1.125rem; font-weight: 700; color: var(--ink-900); margin-bottom: var(--s-3); }
/* A becsült SÁV a főszereplő – teal, nagy, tabuláris. */
.bigprice {
  font-size: clamp(2rem, 7vw, 3.25rem); font-weight: 800; letter-spacing: -.035em;
  color: var(--brand-600); line-height: 1.05; margin: 0 0 var(--s-2);
  font-variant-numeric: tabular-nums;
}
.likely-sub { color: var(--ink-600); font-size: 1rem; margin: 0; }
.likely-sub b { color: var(--ink-900); font-variant-numeric: tabular-nums; }
.plain-hint { font-size: .9375rem; color: var(--ink-600); max-width: 520px; margin: var(--s-3) auto 0; }
.result-meta {
  display: flex; gap: var(--s-2); justify-content: center; flex-wrap: wrap; margin-top: var(--s-4);
}
.meta-chip {
  background: var(--ink-50); border: 1px solid var(--ink-200); border-radius: var(--r-pill);
  padding: 6px 14px; font-size: .8125rem; font-weight: 600; color: var(--ink-700);
  font-variant-numeric: tabular-nums;
}
.meta-chip.pos { background: var(--pos-50); border-color: var(--pos-200); color: var(--pos-700); }
.meta-chip.brand { background: var(--brand-50); border-color: var(--brand-100); color: var(--brand-700); }
.meta-chip { display: inline-flex; align-items: center; gap: 6px; }
.meta-chip .ic { vertical-align: 0; }

/* Eredmény-akciók: egy nyilvánvaló főgomb, alatta a halkabb út. */
.result-actions { display: grid; gap: var(--s-3); margin-top: var(--s-4); }

.range-wrap { margin: var(--s-5) auto 0; max-width: 520px; }
.rangebar {
  height: 8px; border-radius: var(--r-pill); position: relative; margin: var(--s-5) 0 var(--s-4);
  background: linear-gradient(90deg, var(--ink-200) 0%, var(--brand-100) 45%, var(--brand-500) 100%);
}
.rangebar .dot {
  position: absolute; top: 50%; width: 20px; height: 20px; border-radius: 50%;
  background: #fff; border: 3px solid var(--brand-600); transform: translate(-50%, -50%);
  box-shadow: var(--sh-md); animation: dot-in .5s cubic-bezier(.22, 1, .36, 1);
}
@keyframes dot-in { from { transform: translate(-50%, -50%) scale(.4); opacity: 0; } to { transform: translate(-50%, -50%) scale(1); opacity: 1; } }
.range-labels { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: var(--s-2); font-size: .75rem; color: var(--ink-500); }
.range-labels b { display: block; color: var(--ink-900); font-size: .9375rem; font-weight: 700; margin-bottom: 2px; }
.range-labels .c { text-align: center; }
.range-labels .r { text-align: right; }

.split-2 { display: grid; grid-template-columns: 1fr; gap: var(--s-3); }
.split-box {
  background: #fff; border: 1px solid var(--ink-200); border-radius: var(--r-lg); padding: var(--s-4);
}
.split-box.accent { background: var(--brand-50); border-color: var(--brand-100); }
.split-k { font-size: .8125rem; font-weight: 600; color: var(--ink-600); margin-bottom: 4px; }
.split-v { font-size: 1.375rem; font-weight: 700; color: var(--ink-900); letter-spacing: -.02em; font-variant-numeric: tabular-nums; }

/* Infódobozok */
/* Infódoboz: ikon + szöveg, az ikon nem csúszik a sorok alá (spec §24:
 * az állapotot nem csak a szín közli, hanem az ikon is). */
.infobox-blue, .infobox-amber, .infobox-green {
  display: flex; align-items: flex-start; gap: 10px;
  border-radius: var(--r-lg); padding: 14px 16px; font-size: .875rem;
  margin: var(--s-4) 0; text-align: left; line-height: 1.55;
}
.infobox-blue > .ic, .infobox-amber > .ic, .infobox-green > .ic { margin-top: 2px; }
.infobox-blue { background: var(--info-50); border: 1px solid var(--info-200); color: var(--info-700); }
.infobox-amber { background: var(--warn-50); border: 1px solid var(--warn-200); color: var(--warn-700); }
.infobox-green { background: var(--pos-50); border: 1px solid var(--pos-200); color: var(--pos-700); }
.infobox-blue b, .infobox-amber b, .infobox-green b { color: inherit; }
.infobox-blue .muted, .infobox-amber .muted { color: inherit; opacity: .8; }

.prop-strip { display: none; } /* régi dekorcsík – a letisztult nézetben elhagyva */

/* ---------- 12. Riport ---------- */
.rep-hero {
  position: relative; overflow: hidden; border-radius: var(--r-2xl);
  margin: var(--s-4) 0; color: #fff;
  background: linear-gradient(150deg, #0B1220 0%, #0E2A2C 45%, var(--brand-700) 100%);
  box-shadow: var(--sh-lg);
}
.rep-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .35;
  background-image: radial-gradient(rgba(255, 255, 255, .14) 1px, transparent 1px);
  background-size: 24px 24px;
}
.rep-hero::after {
  content: ""; position: absolute; top: -120px; right: -80px; width: 340px; height: 340px;
  border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(13, 148, 136, .35), transparent 70%);
}
.rep-hero-inner { position: relative; z-index: 1; padding: var(--s-6) var(--s-5); text-align: center; max-width: 680px; margin: 0 auto; }
.rep-hero h1 { color: #fff; font-size: clamp(1.25rem, 3.6vw, 1.75rem); margin-bottom: var(--s-4); opacity: .92; font-weight: 600; }
.rep-price { font-size: clamp(2.5rem, 9vw, 4rem); font-weight: 800; letter-spacing: -.04em; line-height: 1; }
.rep-chips { display: flex; gap: var(--s-2); justify-content: center; flex-wrap: wrap; margin-top: var(--s-4); }
.rep-chip {
  background: rgba(255, 255, 255, .10); border: 1px solid rgba(255, 255, 255, .20);
  border-radius: var(--r-pill); padding: 7px 15px; font-size: .8125rem; font-weight: 600;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); font-variant-numeric: tabular-nums;
}
.rep-trend { background: rgba(6, 118, 71, .28); border-color: rgba(171, 239, 198, .35); }
.rep-date { opacity: .6; font-size: .75rem; margin: var(--s-4) 0 0; }

.report-head { display: flex; flex-direction: column; gap: var(--s-4); }
.report-addr { font-size: .875rem; color: var(--ink-500); }
.valuebox {
  background: var(--ink-50); border: 1px solid var(--ink-200);
  border-radius: var(--r-lg); padding: var(--s-4); text-align: center;
}
.valuebox .muted { font-size: .8125rem; font-weight: 600; }
.valuebox .v-big { font-size: 1.375rem; font-weight: 700; color: var(--ink-900); letter-spacing: -.02em; }
.valuebox .v-sub { font-size: .8125rem; color: var(--ink-500); }

table.factors { width: 100%; border-collapse: collapse; font-size: .875rem; }
table.factors th {
  text-align: left; padding: 10px 8px; font-size: .6875rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em; color: var(--ink-500);
  border-bottom: 1px solid var(--ink-200);
}
table.factors td { padding: 11px 8px; border-bottom: 1px solid var(--ink-100); color: var(--ink-700); }
table.factors tbody tr:last-child td { border-bottom: 0; }
table.factors td.num, table.factors th.num { text-align: right; white-space: nowrap; }
.pos { color: var(--pos-700); font-weight: 600; }
.neg { color: var(--dang-700); font-weight: 600; }
.badge {
  display: inline-block; font-size: .6875rem; font-weight: 600; border-radius: var(--r-sm);
  padding: 2px 8px; margin-left: 6px; vertical-align: middle; white-space: nowrap;
}
.badge-est { background: var(--warn-50); color: var(--warn-700); border: 1px solid var(--warn-200); }
.badge-nodata { background: var(--ink-100); color: var(--ink-500); border: 1px solid var(--ink-200); }

/* Összehasonlítók: kártyarács képpel (tervrajz). Mobilon egy oszlop. */
#comps { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: var(--s-3); }
.comp-card {
  margin: 0; border: 1px solid var(--ink-200); border-radius: var(--r-lg);
  background: #fff; overflow: hidden; box-shadow: var(--sh-xs);
  display: flex; flex-direction: column;
}
.comp-media { position: relative; }
.comp-card img { display: block; width: 100%; height: 128px; object-fit: cover; }
/* "Eladva" – tranzakciós adat, nem élő hirdetés. A megkülönböztetés fontos:
 * a felhasználó ne keresse rá a portálokon. */
.comp-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--color-success); color: #fff; border-radius: var(--r-sm);
  padding: 4px 9px; font-size: .6875rem; font-weight: 700; letter-spacing: .02em;
}
.comp-card figcaption {
  padding: var(--s-3) var(--s-4) var(--s-4);
  display: flex; flex-direction: column; gap: 3px;
  font-size: .875rem; color: var(--ink-600);
}
.comp-meta { font-size: .8125rem; color: var(--ink-500); }
.comp-card b { color: var(--ink-900); font-weight: 600; font-size: .9375rem; line-height: 1.35; }
.comp-price {
  color: var(--ink-900); font-weight: 700; font-size: 1.125rem;
  letter-spacing: -.02em; font-variant-numeric: tabular-nums; margin-top: 4px;
}
.comp-m2 { color: var(--ink-500); font-weight: 500; font-size: .8125rem; font-variant-numeric: tabular-nums; }
.comp {
  border: 1px solid var(--ink-200); border-left: 3px solid var(--brand-500);
  border-radius: var(--r-md); padding: var(--s-3) var(--s-4); margin: var(--s-2) 0;
  background: #fff; font-size: .9375rem; color: var(--ink-700);
}
.comp b { color: var(--ink-900); font-weight: 600; }
.acc-top, .acc-foot { display: flex; align-items: center; gap: var(--s-2); }
.acc-top .casc-cur, .acc-foot .pill { margin-left: auto; flex: none; }
.acc-price { font-size: 1.375rem; font-weight: 700; color: var(--ink-900); letter-spacing: -.02em; font-variant-numeric: tabular-nums; margin: 2px 0; }
.acc-sub { font-size: .8125rem; color: var(--ink-500); }
.acc-facts { margin-top: 2px; }
.acc-foot { margin-top: var(--s-2); flex-wrap: wrap; row-gap: var(--s-2); }
@media (max-width: 420px) {
  .acc-head .btn { width: 100%; }
  .acc-foot .acc-report-btn { margin-left: 0; }
  .acc-foot .acc-sub { flex: 1 0 100%; }
}
.acc-foot .pill { display: inline-flex; align-items: center; gap: 6px; font-size: .8125rem; padding: 6px 12px; cursor: pointer; }
.acc-foot .acc-report-btn, .acc-foot .acc-pdf-btn { margin-left: 0; }
.acc-foot .acc-report-btn { margin-left: auto; }

/* Fiók fejléc: cím balra, a legfontosabb cselekvés jobbra. */
.acc-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: var(--s-4); flex-wrap: wrap; margin-bottom: var(--s-4);
}
.acc-head h2 { margin: 0; }
.acc-hello { margin: 4px 0 0; color: var(--ink-600); font-size: .9375rem; }

/* Összegző csempék: egy pillantás alatt megmondják, mi van a fiókban. */
.acc-stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--s-3); margin-bottom: var(--s-5);
}
.acc-stat {
  background: #fff; border: 1px solid var(--ink-200); border-radius: var(--r-lg);
  padding: var(--s-4); display: flex; flex-direction: column; gap: 2px; box-shadow: var(--sh-xs);
}
.acc-stat-v {
  font-size: 1.375rem; font-weight: 700; color: var(--ink-900);
  letter-spacing: -.02em; font-variant-numeric: tabular-nums; line-height: 1.2;
}
.acc-stat-l { font-size: .8125rem; color: var(--ink-500); }

.acc-sec {
  display: flex; align-items: center; gap: 8px;
  margin: var(--s-5) 0 var(--s-3); font-size: 1rem; color: var(--ink-800);
}
.acc-sec:first-child { margin-top: 0; }

/* Korábbi becslések ugyanarra a lakásra – csukott idővonal. */
.acc-hist { margin-top: var(--s-3); border-top: 1px solid var(--ink-200); padding-top: var(--s-2); }
.acc-hist > summary {
  cursor: pointer; list-style: none; font-size: .8125rem; color: var(--ink-600);
  display: flex; align-items: center; gap: 8px; padding: 4px 0;
}
.acc-hist > summary::-webkit-details-marker { display: none; }
.acc-hist > summary::after {
  content: ""; width: 7px; height: 7px; flex: none; margin-left: auto;
  border-right: 2px solid var(--ink-400); border-bottom: 2px solid var(--ink-400);
  transform: rotate(45deg) translate(-2px, -2px); transition: transform .15s ease;
}
.acc-hist[open] > summary::after { transform: rotate(-135deg) translate(-2px, -2px); }
.acc-hist-row {
  display: flex; align-items: center; gap: var(--s-3); padding: 6px 0;
  font-size: .875rem; color: var(--ink-600); border-top: 1px dashed var(--ink-200);
}
.acc-hist-row b { color: var(--ink-900); font-variant-numeric: tabular-nums; margin-left: auto; }
.acc-hist-row .pill { flex: none; font-size: .75rem; padding: 4px 10px; cursor: pointer; }

/* Üres állapot: nem közlés, hanem meghívás. */
.acc-empty {
  background: #fff; border: 1px dashed var(--ink-300); border-radius: var(--r-xl);
  padding: var(--s-7) var(--s-5); text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: var(--s-2);
}
.acc-empty b { font-size: 1.0625rem; color: var(--ink-900); }
.acc-empty .btn { margin-top: var(--s-3); }
.acc-leads { margin-top: var(--s-4); font-size: .8125rem; }
.acc-settings { margin-top: var(--s-6); }
.acc-settings h3 { display: flex; align-items: center; gap: 8px; font-size: 1rem; }
.trend { width: 100%; height: auto; background: var(--ink-50); border: 1px solid var(--ink-200); border-radius: var(--r-md); }
.trend-yoy { color: var(--pos-700); font-weight: 700; font-size: 1.0625rem; margin: var(--s-3) 0 0; }
.src, .disclaimer { font-size: .8125rem; color: var(--ink-500); }
.disclaimer {
  background: var(--ink-50); border: 1px solid var(--ink-200);
  border-radius: var(--r-md); padding: 12px 14px; margin-top: var(--s-4);
}
.factor-help {
  margin-top: var(--s-4); border: 1px solid var(--ink-200); border-radius: var(--r-md);
  background: var(--ink-50); padding: 0 var(--s-4); font-size: .875rem;
}
.factor-help summary { cursor: pointer; font-weight: 600; color: var(--ink-800); padding: 12px 0; list-style: none; }
.factor-help summary::-webkit-details-marker { display: none; }
.factor-help ul { margin: 0 0 var(--s-4); padding-left: 20px; display: grid; gap: 6px; color: var(--ink-600); }

/* ---------- 13. Lead / Thanks ---------- */
.lead-grid { display: grid; grid-template-columns: 1fr; gap: 0; padding: 0; overflow: hidden; }
.lead-form { padding: var(--s-5); }
.photo-panel {
  background: var(--ink-900); color: #fff; padding: var(--s-5);
  position: relative; overflow: hidden;
}
.photo-panel::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(420px 180px at 100% 0%, rgba(13, 148, 136, .30), transparent 70%);
}
.photo-panel > * { position: relative; z-index: 1; }
/* A kép a panel tetején, alatta a szöveg – a tervrajz elrendezése. */
.pp-photo { margin: calc(var(--s-5) * -1) calc(var(--s-5) * -1) var(--s-5); position: relative; }
.pp-photo img { display: block; width: 100%; height: 220px; object-fit: cover; object-position: 50% 22%; }
.pp-photo figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: var(--s-5) var(--s-4) var(--s-3);
  font-size: .875rem; color: #fff; line-height: 1.45;
  background: linear-gradient(180deg, rgba(11, 18, 32, 0), rgba(11, 18, 32, .88));
}
.photo-panel h3 { color: #fff; font-size: 1.0625rem; line-height: 1.45; margin-bottom: var(--s-4); }
.photo-panel ul { list-style: none; margin: 0; padding: 0; }
.photo-panel li {
  display: flex; gap: 12px; align-items: center; margin: var(--s-3) 0;
  font-size: .9375rem; color: rgba(255, 255, 255, .82);
}
.photo-panel li .pi {
  width: 30px; height: 30px; flex: none; border-radius: var(--r-sm);
  background: rgba(255, 255, 255, .10); border: 1px solid rgba(255, 255, 255, .16);
  display: inline-flex; align-items: center; justify-content: center; font-size: .875rem;
}
.photo-panel .pp-foot {
  margin-top: var(--s-5); padding-top: var(--s-4); border-top: 1px solid rgba(255, 255, 255, .14);
  font-size: .8125rem; color: rgba(255, 255, 255, .6);
}

.thanks-check {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto var(--s-4);
  background: var(--color-success); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 10px var(--pos-50);
  animation: pop-in .4s cubic-bezier(.22, 1, .36, 1);
}
.thanks-check .ic { width: 34px; height: 34px; stroke-width: 2.4; vertical-align: 0; }
@keyframes pop-in { from { transform: scale(.6); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.graybox {
  background: var(--ink-50); border: 1px solid var(--ink-200);
  border-radius: var(--r-lg); padding: var(--s-4); text-align: left; margin: var(--s-5) 0;
}
.graybox h3 { font-size: .9375rem; margin-bottom: var(--s-3); }
.steps-list { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--s-3); }
.steps-list li { display: flex; gap: 12px; align-items: flex-start; font-size: .9375rem; color: var(--ink-600); }
.steps-list .n {
  width: 24px; height: 24px; flex: none; border-radius: 50%;
  background: var(--ink-900); color: #fff; display: inline-flex;
  align-items: center; justify-content: center; font-weight: 700; font-size: .75rem;
  font-variant-numeric: tabular-nums;
}
.resume-banner {
  background: var(--brand-50); border-color: var(--brand-100);
  display: flex; align-items: center; gap: var(--s-4); flex-wrap: wrap;
  font-size: .9375rem; color: var(--ink-800);
}
.resume-btns { display: flex; gap: var(--s-2); margin-left: auto; }
.sugg-row { display: flex; flex-wrap: wrap; gap: var(--s-2); margin: var(--s-4) 0; }
.sugg-row .sugg-btn { flex: 1 1 200px; }

/* ---------- 14. Segéd ---------- */
.center { text-align: center; }
.footer {
  border-top: 1px solid var(--ink-200); background: #fff;
  padding: var(--s-6) 0; color: var(--ink-500); font-size: .875rem;
}
.footer-in { display: flex; gap: var(--s-4); flex-wrap: wrap; align-items: center; justify-content: space-between; }
.footer a { color: var(--ink-600); }
.footer-legal { font-size: .8125rem; color: var(--ink-400); max-width: 620px; }
.toast {
  position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%); z-index: 80;
  background: var(--ink-900); color: #fff; padding: 12px 18px; border-radius: var(--r-md);
  max-width: min(92vw, 460px); text-align: center; font-size: .875rem;
  box-shadow: var(--sh-xl); animation: toast-in .25s ease-out;
}
@keyframes toast-in { from { opacity: 0; transform: translate(-50%, 8px); } to { opacity: 1; transform: translate(-50%, 0); } }

/* ---------- 15. Reszponzív ---------- */
@media (min-width: 768px) {
  .grid2 { grid-template-columns: 1fr 1fr; }
  .grid3 { grid-template-columns: repeat(3, 1fr); }
  .feat-grid, .benefit-grid, .how, .method-grid { grid-template-columns: repeat(3, 1fr); }
  .split-2 { grid-template-columns: 1fr 1fr; }
  .check-grid { grid-template-columns: 1fr 1fr; }
  .flat-filters3 { grid-template-columns: 1fr 1fr 1fr; }
  .lead-grid { grid-template-columns: 1.15fr .85fr; }
  .lead-form { padding: var(--s-6); }
  .photo-panel { padding: var(--s-6); }
  .report-head { flex-direction: row; justify-content: space-between; align-items: flex-start; }
  .report-head .valuebox { min-width: 260px; }
  .rep-hero-inner { padding: var(--s-7) var(--s-6); }
  .card { padding: var(--s-6); }
  .bottom-cta .btn, .actionbar .btn { flex: 0 0 auto; }
  .bottom-cta .btn:last-child, .actionbar .btn:last-child { margin-left: auto; }
}
@media (max-width: 767px) {
  .header-in { padding: var(--s-2) var(--s-3); }
  .hamburger { display: inline-flex; }
  .mainnav {
    position: absolute; top: 100%; left: 0; right: 0; display: none;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; border-bottom: 1px solid var(--ink-200);
    padding: var(--s-2) var(--s-3) var(--s-4); box-shadow: var(--sh-lg);
  }
  .mainnav.open { display: flex; }
  .mainnav a.nav-link { padding: 13px 10px; border-radius: var(--r-md); min-height: 46px; display: flex; align-items: center; }
  .mainnav .btn { margin-top: var(--s-2); }
  .card { border-radius: var(--r-lg); padding: var(--s-4); margin-left: 0; margin-right: 0; }
  .lp-hero { padding: var(--s-6) 0 var(--s-5); }
  .inline-cta { flex-direction: column; }
  .resume-btns { margin-left: 0; width: 100%; }
  .resume-btns .btn { flex: 1; }
  /* Mobilon a fő akció ragadjon az aljára */
  .actionbar.sticky, .bottom-cta {
    position: sticky; bottom: 0; z-index: 20;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    margin: var(--s-5) calc(-1 * var(--s-4)) calc(-1 * var(--s-4));
    padding: var(--s-3) var(--s-4) calc(var(--s-3) + env(safe-area-inset-bottom));
    border-top: 1px solid var(--ink-200);
  }
  .toast { bottom: 88px; }
  .footer-in { flex-direction: column; align-items: flex-start; }
}
/* Nézetváltás (spec §23): 220 ms, opacitás + 8px eltolás. Csak ennyi –
 * a mozgás az irányt jelzi, nem látványosság. */
@keyframes view-in {
  from { opacity: 0; transform: translateX(8px); }
  to   { opacity: 1; transform: none; }
}
.view-in { animation: view-in .22s cubic-bezier(.22, 1, .36, 1) both; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
/* ---------- Nyomtatás / PDF ----------
 * A riport nyomtatva dokumentum, nem weboldal: A4, saját fejléc-sor minden
 * oldalon, kártyák nem törnek ketté, minden interaktív elem eltűnik.
 * A böngésző "Nyomtatás → PDF mentése" útján ez a végleges kimenet. */
@page { size: A4; margin: 14mm 12mm 16mm; }
@media print {
  .header, .footer, .actionbar, .bottom-cta, .toast, .progress, .psteps,
  .skip-link, .rep-actions, .btn, .pill, .chip, .acc-settings, .hamburger,
  .no-print { display: none !important; }
  html, body { background: #fff !important; }
  body { font-size: 10.5pt; color: #111; }
  .wrap, .wrap-narrow, .funnel { max-width: none; padding: 0; margin: 0; }
  main#app { padding: 0; }
  a { color: inherit; text-decoration: none; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 8pt; color: #666; }

  .card, .comp-card, .acc-stat, .rep-hero {
    box-shadow: none !important; border: 1px solid #d4d8de !important;
    break-inside: avoid; page-break-inside: avoid; margin-bottom: 6mm;
  }
  h1, h2, h3 { break-after: avoid; page-break-after: avoid; }
  table { break-inside: auto; width: 100%; }
  tr, img, figure { break-inside: avoid; page-break-inside: avoid; }
  thead { display: table-header-group; }

  /* A sötét riport-fejléc nyomtatva tintapazarló és halványan olvasható.
   * A díszítő pszeudoelemek (pöttymintázat, teal fénykör) papíron csak
   * szellemkontúrt hagynak, ezért azokat is kivesszük. */
  .rep-hero {
    background: #fff !important; color: #111 !important;
    border: 0 !important; border-bottom: 2px solid #0F766E !important;
    border-radius: 0 !important; box-shadow: none !important; overflow: visible !important;
    padding: 0 0 4mm !important; margin: 0 0 6mm !important;
  }
  .rep-hero::before, .rep-hero::after { display: none !important; content: none !important; }
  .rep-hero-inner {
    background: none !important; color: #111 !important;
    padding: 0 !important; margin: 0 !important; max-width: none !important; text-align: left !important;
  }
  .rep-chips { justify-content: flex-start !important; }
  .rep-hero h1 { color: #111 !important; font-size: 15pt; opacity: 1 !important; font-weight: 700; margin-bottom: 2mm; }
  .rep-price { color: #0F766E !important; font-size: 26pt; }
  .rep-chip { background: #fff !important; border: 1px solid #c7ccd3 !important; color: #333 !important; }
  .rep-date, .acc-sub, .muted, .hint { color: #555 !important; }

  /* A színnel jelölt tényezők nyomtatóbarát tintával. */
  .factors td, .factors th { border-color: #d4d8de !important; }

  /* Lapláb minden oldalra: honnan jött és mikor. */
  .rep-print-foot { display: block !important; }
}
.rep-print-foot { display: none; }
@media print {
  .rep-print-foot {
    margin-top: 6mm; padding-top: 3mm; border-top: 1px solid #d4d8de;
    font-size: 8.5pt; color: #555;
  }
}

/* UX-finomítás (step2 review): kompakt cím-blokk, energiakártya, link-szerű
 * "Nem tudom", sticky alsó navigáció mobilon, karcsú funnel-lábléc. */
.addr-ok-sub { display: block; font-size: .8125rem; font-weight: 400; margin-top: 2px; }
.linklike { background: none; border: 0; padding: 0; margin-top: 10px; color: var(--color-primary); font: inherit; font-size: .875rem; cursor: pointer; text-decoration: underline; text-underline-offset: 2px; }
.linklike.on { font-weight: 700; text-decoration: none; }
.linklike.on::before { content: "✓ "; }
.footer-short { display: none; }
body.is-funnel .footer .footer-legal { display: none; }
body.is-funnel .footer-short { display: block; font-size: .8125rem; color: var(--ink-500); margin: 0 0 8px; }
@media (max-width: 720px) {
  .actionbar.sticky { position: sticky; bottom: 0; z-index: 5; background: #fff; margin: 16px -16px 0; padding: 12px 16px calc(12px + env(safe-area-inset-bottom)); border-top: 1px solid var(--ink-200); box-shadow: 0 -4px 16px rgba(15, 23, 42, .08); border-radius: 0 0 var(--r-xl) var(--r-xl); }
}
.energy-box { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.energy-box b { font-size: 1.375rem; }
.energy-box span { flex: 1; min-width: 160px; font-size: .875rem; }
.step-progress { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 14px; margin: 0 0 4px; font-size: .875rem; }
.sp-msg { color: var(--ink-600); font-weight: 600; }
.sp-items { display: flex; gap: 10px; }
.sp-item { color: var(--ink-400); }
.sp-item.on { color: var(--color-primary); font-weight: 700; }
