/* ==========================================================================
   mechano.hu — közös stíluslap (világos téma)

   Minden lap ezt tölti be; oldalspecifikus <style> blokk nincs. A lime
   (#c8ff00) KITÖLTÉS: gomb, kiemelő, jelvény — mindig sötét szöveggel.
   Szövegként világos alapon olvashatatlan (1,4:1), ezért a szöveg-akcentus
   a sötétebb --accent-ink (6,3:1). Mozgás: finom, rövid, és a
   prefers-reduced-motion mindent kikapcsol. Bedöntött, hoverre kiegyenesedő
   kártya nincs.
   ========================================================================== */
:root {
  --bg: #fbfbf8;
  --surface: #ffffff;
  --surface-2: #f3f4ee;
  --ink: #0f1115;
  --ink-soft: #3c4148;
  --muted: #6b7079;
  --faint: #9a9ea6;
  --line: #e5e7e0;
  --line-strong: #cbcec4;
  --accent: #c8ff00;
  --accent-ink: #4d6600;
  --accent-soft: #f1fcc9;
  --accent-glow: rgba(200, 255, 0, .45);
  --danger: #c93a3a;
  --danger-soft: #fdeaea;
  --max: 1140px;
  --r: 16px;
  --r-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(15, 17, 21, .06), 0 1px 1px rgba(15, 17, 21, .04);
  --shadow-md: 0 12px 32px -16px rgba(15, 17, 21, .22), 0 2px 6px -2px rgba(15, 17, 21, .06);
  --shadow-lg: 0 30px 60px -28px rgba(15, 17, 21, .3), 0 4px 12px -6px rgba(15, 17, 21, .08);
  --font-h: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --font-b: 'Inter', system-ui, sans-serif;
  /* Régi nevek — a lapok inline stílusai és a szkriptek ezekre hivatkozhatnak. */
  --black: var(--ink);
  --white: #ffffff;
  --gray: var(--muted);
  --border: var(--line);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-b); background: var(--bg); color: var(--ink); -webkit-font-smoothing: antialiased; overflow-x: hidden; line-height: 1.5; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
button { font: inherit; }
::selection { background: var(--accent); color: var(--ink); }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; border-radius: 4px; }
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 32px; }
.link { color: var(--accent-ink); font-weight: 600; text-decoration: underline; text-decoration-color: var(--accent); text-decoration-thickness: 2px; text-underline-offset: 3px; transition: text-decoration-color .2s; }
.link:hover { text-decoration-color: var(--accent-ink); }
.accent { color: var(--accent-ink); font-weight: 600; }

/* Kiemelő: a címekben az <em> nem dőlt, hanem lime filctoll-vonal a szó alatt. */
h1 em, h2 em, h3 em { font-style: normal; color: var(--ink); background-image: linear-gradient(transparent 58%, var(--accent) 58%, var(--accent) 92%, transparent 92%); background-repeat: no-repeat; background-size: 0% 100%; background-position: 0 0; padding: 0 .06em; transition: background-size .7s cubic-bezier(.2, .7, .2, 1) .15s; }
html.ready h1 em, .in-view h2 em, .in-view h3 em, .in-view em { background-size: 100% 100%; }
/* Írásjel a cím végén: nem kiemelő, hanem a márka pontja. */
h1 em.dot, h2 em.dot, h3 em.dot { background: none; color: var(--accent-ink); padding: 0; }
.feature-more { margin-top: 16px; }

/* ── Navigáció ─────────────────────────────────────────────────────────── */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(251, 251, 248, .78); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s, background .3s; }
nav.scrolled { background: rgba(255, 255, 255, .9); border-bottom-color: var(--line); box-shadow: 0 10px 30px -22px rgba(15, 17, 21, .35); }
.nav-inner { max-width: var(--max); margin: 0 auto; padding: 0 32px; height: 64px; display: flex; align-items: center; justify-content: space-between; }
.logo { font-family: var(--font-h); font-weight: 700; font-size: 19px; letter-spacing: -.04em; display: flex; align-items: center; gap: 10px; color: var(--ink); }
.logo-mark { width: 26px; height: 26px; background: var(--accent); clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); transition: transform .4s cubic-bezier(.2, .7, .2, 1); }
.logo:hover .logo-mark { transform: rotate(60deg); }
.nav-right { display: flex; align-items: center; gap: 26px; }
.nav-right a { font-size: 14px; font-weight: 500; color: var(--ink-soft); padding: 4px 0; box-shadow: inset 0 -2px 0 transparent; transition: color .2s, box-shadow .2s; }
.nav-right a:hover { color: var(--ink); }
.nav-right a.active { color: var(--ink); box-shadow: inset 0 -2px 0 var(--accent); }
.nav-sep { display: none; }
/* Belépés: szöveg, nem gomb. Egyetlen gomb van a fejlécben: a próba. */
.nav-right .btn-login { font-size: 14px; font-weight: 500; color: var(--ink-soft) !important; padding: 4px 0; border: 0; background: none; border-radius: 0; }
.nav-right .btn-login:hover { color: var(--ink) !important; }
.nav-right .btn-nav { background: var(--accent); color: var(--ink) !important; border: 0; border-radius: 999px; padding: 10px 20px; font-size: 13.5px; font-weight: 700; letter-spacing: -.01em; box-shadow: 0 1px 0 rgba(15, 17, 21, .08); margin-left: 4px; transition: transform .2s, box-shadow .2s; }
.nav-right .btn-nav:hover { transform: translateY(-1px); box-shadow: 0 12px 24px -10px var(--accent-glow); color: var(--ink) !important; }
.btn-nav, .btn-login { transition: transform .2s, box-shadow .2s, background .2s, border-color .2s, color .2s; }
/* Nyelvváltó: földgömb, ami hoverre a tengelye körül forog. */
.lang-switch { display: inline-flex !important; align-items: center; gap: 7px; font-size: 12px !important; font-weight: 700 !important; letter-spacing: .08em; color: var(--muted) !important; padding: 4px 0 !important; box-shadow: none !important; }
.lang-switch:hover { color: var(--ink) !important; }
.globe { width: 20px; height: 20px; color: var(--ink-soft); transition: color .2s; flex-shrink: 0; }
.lang-switch:hover .globe, .mobile-lang:hover .globe { color: var(--accent-ink); }
.globe .globe-spin { transform-box: view-box; }
.lang-switch:hover .globe .globe-spin, .mobile-lang:hover .globe .globe-spin { animation: globe-spin 1.4s linear infinite; }
@keyframes globe-spin { to { transform: translateX(-16px); } }
.mobile-lang { display: inline-flex; align-items: center; gap: 8px; }
.nav-mobile-buttons { display: none; }
.nav-mobile-buttons .btn-login { padding: 8px 16px; border: 1px solid var(--line-strong); border-radius: 999px; color: var(--ink) !important; background: var(--surface); font-size: 13px; font-weight: 600; }

/* ── Mobil menü ────────────────────────────────────────────────────────── */
.hamburger { display: none; background: none; border: none; color: var(--ink); font-size: 24px; cursor: pointer; padding: 4px; line-height: 1; }
.mobile-overlay { display: none; position: fixed; inset: 0; z-index: 200; background: rgba(15, 17, 21, .35); backdrop-filter: blur(2px); }
.mobile-overlay.open { display: block; }
.mobile-menu { width: 300px; max-width: 86vw; height: 100%; background: var(--surface); border-right: 1px solid var(--line); padding: 24px; display: flex; flex-direction: column; overflow-y: auto; box-shadow: var(--shadow-lg); animation: slide-in .25s cubic-bezier(.2, .7, .2, 1); }
@keyframes slide-in { from { transform: translateX(-24px); opacity: 0; } to { transform: none; opacity: 1; } }
.mobile-menu a { display: block; padding: 13px 0; font-size: 16px; font-weight: 500; color: var(--ink-soft); border-bottom: 1px solid var(--line); }
.mobile-menu a:hover, .mobile-menu a.active { color: var(--accent-ink); }
.mobile-menu .mobile-cta { margin-top: auto; display: flex; flex-direction: column; gap: 10px; padding-top: 24px; }
.mobile-menu .mobile-cta a { padding: 13px; text-align: center; font-size: 14px; font-weight: 600; border-bottom: none; border-radius: 12px; }
.mobile-btn-ghost { border: 1px solid var(--line-strong); color: var(--ink) !important; }
.mobile-btn-fill { background: var(--accent); color: var(--ink) !important; }
.mobile-close { background: none; border: none; color: var(--ink); font-size: 28px; cursor: pointer; align-self: flex-end; margin-bottom: 16px; }

/* ── Gombok ────────────────────────────────────────────────────────────── */
.btn-big { padding: 15px 30px; font-family: var(--font-h); font-size: 15px; font-weight: 600; letter-spacing: -.01em; border: 1px solid transparent; border-radius: 12px; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s, border-color .2s; display: inline-block; }
.btn-fill { background: var(--accent); color: var(--ink); box-shadow: 0 1px 0 rgba(15, 17, 21, .08); }
.btn-fill:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -12px var(--accent-glow); }
.btn-fill:active { transform: translateY(0) scale(.98); box-shadow: none; }
.btn-ghost { background: var(--surface); color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-ghost:active { transform: translateY(0); }

/* ── Hero (főoldal) ────────────────────────────────────────────────────── */
.hero { padding: 132px 0 64px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -220px; right: -160px; width: 640px; height: 640px; background: radial-gradient(circle, rgba(200, 255, 0, .28) 0%, transparent 62%); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero-tag, .page-header .hero-tag { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 600; color: var(--accent-ink); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 24px; }
.hero-tag::before, .page-header .hero-tag::before { content: ''; width: 32px; height: 3px; border-radius: 2px; background: var(--accent); }
.hero h1 { font-family: var(--font-h); font-size: clamp(44px, 6.4vw, 80px); font-weight: 700; letter-spacing: -.05em; line-height: .96; margin-bottom: 24px; max-width: 760px; }
.hero-desc { font-size: 18px; color: var(--muted); line-height: 1.65; max-width: 500px; margin-bottom: 32px; }
.hero-desc strong { color: var(--ink); font-weight: 600; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.proof { display: grid; grid-template-columns: repeat(4, auto); justify-content: space-between; gap: 24px; padding-top: 32px; border-top: 1px solid var(--line); }
.proof-item strong { display: inline-block; font-family: var(--font-h); font-size: 32px; font-weight: 700; letter-spacing: -.03em; color: var(--ink); line-height: 1.1; background-image: linear-gradient(transparent 70%, var(--accent) 70%); background-repeat: no-repeat; background-size: 100% 100%; padding: 0 2px; }
.proof-item span { display: block; font-size: 13px; color: var(--muted); margin-top: 4px; }

/* Élő munkalap-tábla: a termék egy pillanatképe, ami mozog. */
.board { background: var(--surface); border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow-lg); padding: 16px; position: relative; }
.board-head { display: flex; align-items: center; justify-content: space-between; padding: 4px 6px 14px; }
.board-title { font-family: var(--font-h); font-size: 13px; font-weight: 600; letter-spacing: -.01em; color: var(--ink-soft); display: flex; align-items: center; gap: 8px; }
.board-live { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-ink); box-shadow: 0 0 0 0 rgba(77, 102, 0, .5); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(77, 102, 0, .45); } 70% { box-shadow: 0 0 0 8px rgba(77, 102, 0, 0); } 100% { box-shadow: 0 0 0 0 rgba(77, 102, 0, 0); } }
.board-dots { display: flex; gap: 6px; }
.board-dots span { width: 9px; height: 9px; border-radius: 50%; background: var(--line-strong); }
.board-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.col { background: var(--surface-2); border-radius: 14px; padding: 10px; min-height: 236px; }
.col h4 { font-family: var(--font-b); font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); padding: 2px 4px 8px; display: flex; justify-content: space-between; }
.col h4 b { font-weight: 600; color: var(--ink-soft); }
.wo { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 10px 12px; margin-bottom: 8px; box-shadow: var(--shadow-sm); transition: transform .4s cubic-bezier(.2, .7, .2, 1), opacity .4s, box-shadow .3s; animation: wo-in .45s cubic-bezier(.2, .7, .2, 1); }
@keyframes wo-in { from { transform: translateY(10px); opacity: 0; } to { transform: none; opacity: 1; } }
.wo.leaving { transform: translateX(12px) scale(.96); opacity: 0; }
.wo .plate { display: inline-block; font-family: var(--font-h); font-weight: 700; font-size: 12px; letter-spacing: .06em; background: var(--accent); color: var(--ink); padding: 2px 7px; border-radius: 5px; margin-bottom: 6px; }
.wo .job { font-size: 13px; font-weight: 600; color: var(--ink); }
.wo .who { font-size: 11.5px; color: var(--muted); margin-top: 2px; }
.wo .bar { height: 4px; border-radius: 2px; background: var(--line); margin-top: 8px; overflow: hidden; }
.wo .bar i { display: block; height: 100%; background: var(--accent-ink); border-radius: 2px; transition: width 1.2s linear; }
.board-toast { position: absolute; left: 16px; right: 16px; bottom: 16px; background: var(--ink); color: #fff; font-size: 12.5px; padding: 10px 14px; border-radius: 12px; opacity: 0; transform: translateY(8px); transition: opacity .3s, transform .3s; pointer-events: none; display: flex; gap: 8px; align-items: center; }
.board-toast::before { content: '✓'; color: var(--accent); font-weight: 700; }
.board-toast.show { opacity: 1; transform: none; }

/* ── Fájdalompontok / megoldások ───────────────────────────────────────── */
.pain { padding: 96px 0; border-top: 1px solid var(--line); }
.pain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.pain h2 { font-family: var(--font-h); font-size: 34px; font-weight: 700; letter-spacing: -.04em; margin-bottom: 20px; line-height: 1.12; }
.pain-list { list-style: none; }
.pain-list li { padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 15px; color: var(--ink-soft); display: flex; align-items: flex-start; gap: 12px; line-height: 1.5; }
.pain-list li span, .pain-list li .x { color: var(--danger); font-weight: 700; font-size: 13px; flex-shrink: 0; margin-top: 3px; }
.pain-right { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 36px; box-shadow: var(--shadow-md); }
.pain-right h2 { font-size: 26px; }
.pain-right h3 { font-family: var(--font-h); font-size: 20px; font-weight: 700; margin-bottom: 20px; letter-spacing: -.02em; }
.check-list { list-style: none; }
.check-list li { padding: 10px 0; font-size: 14.5px; color: var(--ink-soft); display: flex; align-items: flex-start; gap: 12px; line-height: 1.5; }
.check-list li strong { color: var(--ink); font-weight: 600; }
.check-list li::before { content: ''; width: 20px; height: 20px; border-radius: 50%; background: var(--accent); flex-shrink: 0; margin-top: 1px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 11.5l-3-3 1-1 2 2 5-5 1 1z' fill='%230f1115'/%3E%3C/svg%3E"); background-size: 14px; background-repeat: no-repeat; background-position: center; }

/* ── Futószalag ────────────────────────────────────────────────────────── */
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 14px 0; overflow: hidden; white-space: nowrap; background: var(--surface); }
.marquee-track { display: inline-block; animation: scroll 40s linear infinite; font-family: var(--font-h); font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.marquee-track span { margin: 0 32px; }
.marquee-track span::before { content: '\25C6'; margin-right: 32px; color: var(--accent); font-size: 8px; vertical-align: middle; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── Modul-kártyák ─────────────────────────────────────────────────────── */
.features { padding: 96px 0; }
.features-head, .pricing-head, .faq-head { text-align: center; margin-bottom: 48px; }
.features-head h2, .pricing-head h2, .faq-head h2 { font-family: var(--font-h); font-size: 34px; font-weight: 700; letter-spacing: -.04em; margin-bottom: 12px; }
.features-head p, .pricing-head p, .faq-head p { font-size: 16px; color: var(--muted); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feat { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 30px 26px; transition: transform .25s cubic-bezier(.2, .7, .2, 1), box-shadow .25s, border-color .25s; }
.feat:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.feat .feat-num { display: inline-block; font-family: var(--font-h); font-size: 13px; font-weight: 700; color: var(--accent-ink); background: var(--accent-soft); padding: 4px 9px; border-radius: 8px; margin-bottom: 18px; line-height: 1; }
.feat h3 { font-family: var(--font-h); font-size: 17px; font-weight: 700; margin-bottom: 10px; letter-spacing: -.02em; }
.feat h3 a:hover { color: var(--accent-ink); }
.feat p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.feat p strong { color: var(--ink); font-weight: 600; }

/* ── Árak ──────────────────────────────────────────────────────────────── */
.pricing { padding: 96px 0; border-top: 1px solid var(--line); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; }
.plan { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 36px 30px; display: flex; flex-direction: column; position: relative; transition: transform .25s cubic-bezier(.2, .7, .2, 1), box-shadow .25s; }
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.plan.pop { border-color: var(--ink); box-shadow: var(--shadow-lg); }
.plan-label { position: absolute; top: -13px; left: 28px; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink); background: var(--accent); font-weight: 700; padding: 5px 12px; border-radius: 999px; }
.plan h3 { font-family: var(--font-h); font-size: 24px; font-weight: 700; letter-spacing: -.03em; margin-bottom: 16px; }
.plan-price { font-family: var(--font-h); font-size: 40px; font-weight: 700; letter-spacing: -.04em; margin-bottom: 4px; }
.plan-price span { font-size: 15px; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.plan-yearly { font-size: 13px; color: var(--muted); margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.plan-list { list-style: none; flex: 1; margin-bottom: 28px; }
.plan-list li { font-size: 14px; color: var(--ink-soft); padding: 8px 0; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 10px; }
.plan-list li:last-child { border-bottom: none; }
.plan-list li::before { content: '\2192'; color: var(--accent-ink); font-size: 12px; }
.plan-list li strong { color: var(--ink); font-weight: 600; }
.btn-plan { display: block; text-align: center; padding: 13px; font-family: var(--font-h); font-size: 14px; font-weight: 600; border: 1px solid var(--line-strong); border-radius: 12px; color: var(--ink); transition: transform .2s, box-shadow .2s, border-color .2s, background .2s; }
.btn-plan:hover { border-color: var(--ink); transform: translateY(-1px); }
.btn-plan.active { background: var(--accent); color: var(--ink); border-color: var(--accent); }
.btn-plan.active:hover { box-shadow: 0 12px 26px -12px var(--accent-glow); }
.pricing-note { text-align: center; margin-top: 24px; font-size: 13px; color: var(--muted); }
.extras { padding: 64px 0; border-top: 1px solid var(--line); }
.extras-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.extra-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 28px 24px; transition: transform .25s, box-shadow .25s; }
.extra-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.extra-item strong { display: block; font-family: var(--font-h); font-size: 18px; font-weight: 700; letter-spacing: -.02em; margin-bottom: 8px; color: var(--accent-ink); }
.extra-item p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── GYIK (statikus lista és <details>) ────────────────────────────────── */
.faq { padding: 80px 0; border-top: 1px solid var(--line); }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); padding: 22px 0; }
.faq-item h3 { font-family: var(--font-h); font-size: 17px; font-weight: 600; margin-bottom: 8px; letter-spacing: -.02em; }
.faq-item p { font-size: 15px; color: var(--muted); line-height: 1.7; }
.faq > .wrap > h2 { font-family: var(--font-h); font-size: 28px; font-weight: 700; letter-spacing: -.04em; margin-bottom: 16px; }
.faq details { border-bottom: 1px solid var(--line); padding: 18px 0; max-width: 760px; }
.faq summary { cursor: pointer; font-family: var(--font-h); font-size: 16.5px; font-weight: 600; letter-spacing: -.02em; list-style: none; display: flex; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--accent-ink); font-weight: 400; flex-shrink: 0; transition: transform .25s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { font-size: 15px; color: var(--muted); line-height: 1.75; margin-top: 12px; animation: wo-in .3s; }
/* A nyitást a site.js animálja magasságban; ilyenkor a CSS-beúszás nem duplázódik. */
.faq details, .home-faq details { box-sizing: border-box; }
.faq-anim details p { animation: none; }
.faq-animating { overflow: hidden; }
.faq summary, .home-faq summary { transition: color .2s; }
.faq summary:hover, .home-faq summary:hover { color: var(--accent-ink); }
.faq summary::after, .home-faq summary::after { transition: transform .3s cubic-bezier(.2, .7, .2, 1), color .2s; }
.faq details p a { color: var(--accent-ink); font-weight: 600; text-decoration: underline; text-decoration-color: var(--accent); text-underline-offset: 3px; }

/* ── CTA-sáv: sötét sziget a világos lapon ─────────────────────────────── */
.cta { padding: 64px 0 96px; }
.cta .wrap { background: var(--ink); color: #fff; border-radius: 28px; padding: 72px 40px; text-align: center; position: relative; overflow: hidden; }
.cta .wrap::before { content: ''; position: absolute; top: -140px; right: -80px; width: 460px; height: 460px; background: radial-gradient(circle, rgba(200, 255, 0, .22) 0%, transparent 60%); pointer-events: none; }
.cta h2 { font-family: var(--font-h); font-size: clamp(28px, 4vw, 44px); font-weight: 700; letter-spacing: -.04em; margin-bottom: 14px; position: relative; }
.cta p { font-size: 16px; color: #b9bec7; margin-bottom: 32px; position: relative; }
.cta .cta-links { position: relative; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta .btn-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .35); }
.cta .btn-ghost:hover { border-color: #fff; }

/* ── Lábléc ────────────────────────────────────────────────────────────── */
footer { padding: 36px 0 44px; border-top: 1px solid var(--line); background: var(--surface); }
.footer-inner { max-width: var(--max); margin: 0 auto; padding: 0 32px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--muted); flex-wrap: wrap; gap: 14px 28px; }
.footer-inner a { color: var(--muted); transition: color .2s; }
.footer-inner a:hover { color: var(--ink); }
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-bottom { max-width: var(--max); margin: 28px auto 0; padding: 18px 32px 0; border-top: 1px solid var(--line); text-align: center; font-size: 12px; color: var(--muted); }
.footer-bottom a { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); }
.footer-bottom a:hover { color: var(--ink); }
.footer-bottom a b { font-weight: 600; color: var(--ink-soft); transition: color .2s; }
.footer-bottom a:hover b { color: var(--ink); }
.heart { width: 15px; height: 15px; fill: transparent; stroke: currentColor; stroke-width: 1.8; transition: fill .3s, stroke .3s; transform-origin: center; position: relative; top: -1px; }
.footer-bottom a:hover .heart { fill: #e0245e; stroke: #e0245e; animation: heartbeat 1s ease-in-out infinite; }
@keyframes heartbeat { 0%, 100% { transform: scale(1); } 14% { transform: scale(1.3); } 28% { transform: scale(1); } 42% { transform: scale(1.22); } 70% { transform: scale(1); } }

/* ── Aloldalak fejléce ─────────────────────────────────────────────────── */
.page-header { padding: 136px 0 56px; border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; top: -260px; right: -200px; width: 620px; height: 620px; background: radial-gradient(circle, rgba(200, 255, 0, .22) 0%, transparent 62%); pointer-events: none; }
.page-header .wrap { position: relative; }
.page-header h1 { font-family: var(--font-h); font-size: clamp(34px, 5vw, 56px); font-weight: 700; letter-spacing: -.05em; line-height: 1.04; margin-bottom: 16px; max-width: 900px; }
.page-header p { font-size: 17px; color: var(--muted); line-height: 1.7; max-width: 620px; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; font-size: 12.5px; color: var(--faint); margin-bottom: 22px; list-style: none; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb li + li::before { content: '/'; margin-right: 8px; color: var(--line-strong); }
.post-meta { display: flex; flex-wrap: wrap; gap: 14px; font-size: 13px; color: var(--muted); margin-top: 18px; }
.post-meta strong { color: var(--ink-soft); font-weight: 600; }

/* ── Funkciók-oldal modul-szekciói ─────────────────────────────────────── */
.mod-index { border-top: 1px solid var(--line); padding: 40px 0 8px; }
.mod-index h2 { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 16px; }
.mod-index ol { list-style: none; display: grid; gap: 8px; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.mod-index a { display: flex; gap: 12px; align-items: baseline; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; color: var(--ink); font-size: 14px; font-weight: 500; transition: border-color .2s, transform .2s; }
.mod-index a:hover { border-color: var(--ink); transform: translateY(-2px); }
.mod-index span { color: var(--accent-ink); font-size: 12px; font-weight: 700; font-variant-numeric: tabular-nums; }
.feature-section { padding: 80px 0; border-bottom: 1px solid var(--line); scroll-margin-top: 80px; }
.feature-section:last-of-type { border-bottom: none; }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.feature-grid.reverse { direction: rtl; }
.feature-grid.reverse > * { direction: ltr; }
.feature-left .feat-num { font-family: var(--font-h); font-size: 60px; font-weight: 700; color: var(--line-strong); line-height: 1; margin-bottom: 14px; }
.feature-left h2 { font-family: var(--font-h); font-size: 30px; font-weight: 700; letter-spacing: -.04em; margin-bottom: 14px; line-height: 1.12; }
.feature-left > p { font-size: 15.5px; color: var(--muted); line-height: 1.7; margin-bottom: 24px; }
.feature-bullets { list-style: none; }
.feature-bullets li { padding: 10px 0; font-size: 14.5px; color: var(--ink-soft); display: flex; align-items: flex-start; gap: 10px; border-bottom: 1px solid var(--line); line-height: 1.5; }
.feature-bullets li::before { content: '\2192'; color: var(--accent-ink); font-size: 12px; flex-shrink: 0; margin-top: 3px; }
.feature-right { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 32px; box-shadow: var(--shadow-md); }
.feature-right h3 { font-family: var(--font-h); font-size: 13px; font-weight: 700; color: var(--accent-ink); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 18px; }
.feature-right ul { list-style: none; }
.feature-right ul li { padding: 8px 0; font-size: 14px; color: var(--ink-soft); display: flex; align-items: center; gap: 10px; }
.feature-right ul li::before { content: ''; width: 18px; height: 18px; border-radius: 50%; background: var(--accent); flex-shrink: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 11.5l-3-3 1-1 2 2 5-5 1 1z' fill='%230f1115'/%3E%3C/svg%3E"); background-size: 13px; background-repeat: no-repeat; background-position: center; }

/* ── Kapcsolat ─────────────────────────────────────────────────────────── */
.contact { padding: 72px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 40px 36px; box-shadow: var(--shadow-sm); }
.contact-card h2 { font-family: var(--font-h); font-size: 24px; font-weight: 700; letter-spacing: -.03em; margin-bottom: 20px; }
.contact-card p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 14px; }
.contact-email { display: inline-block; font-family: var(--font-h); font-size: 24px; font-weight: 700; color: var(--accent-ink); letter-spacing: -.02em; margin-bottom: 8px; }
.contact-detail { font-size: 14px; color: var(--muted); line-height: 1.8; }
.contact-detail strong { color: var(--ink); font-weight: 600; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.form-group input, .form-group textarea { background: var(--surface); border: 1px solid var(--line-strong); color: var(--ink); font-family: var(--font-b); font-size: 15px; padding: 12px 14px; border-radius: 10px; outline: none; transition: border-color .2s, box-shadow .2s; -webkit-appearance: none; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--ink); box-shadow: 0 0 0 3px var(--accent-glow); }
.form-group textarea { resize: vertical; min-height: 110px; }
.btn-submit { background: var(--accent); color: var(--ink); font-family: var(--font-h); font-size: 15px; font-weight: 600; padding: 14px 32px; border: none; border-radius: 12px; cursor: pointer; letter-spacing: -.01em; transition: transform .2s, box-shadow .2s; -webkit-appearance: none; align-self: flex-start; }
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -12px var(--accent-glow); }
.btn-submit[disabled] { opacity: .6; cursor: wait; transform: none; box-shadow: none; }
.form-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; opacity: 0; }
.form-consent { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--muted); line-height: 1.6; cursor: pointer; }
.form-consent input { margin-top: 3px; accent-color: var(--accent-ink); flex-shrink: 0; }
.form-consent a { color: var(--accent-ink); font-weight: 600; text-decoration: underline; }
.form-status { font-size: 13.5px; line-height: 1.6; min-height: 1.2em; margin: 0; }
.form-status.ok { color: var(--accent-ink); }
.form-status.err { color: var(--danger); }
.contact-success { display: flex; flex-direction: column; gap: 12px; padding: 24px; border: 1px solid var(--accent-ink); background: var(--accent-soft); border-radius: var(--r-sm); animation: wo-in .4s; }
.contact-success strong { font-family: var(--font-h); font-size: 20px; letter-spacing: -.03em; color: var(--accent-ink); }
.contact-success p { font-size: 14px; color: var(--ink-soft); line-height: 1.7; margin: 0; }
.contact-success .btn-submit { align-self: flex-start; }
.support { padding: 56px 0; border-top: 1px solid var(--line); }
.support-box { background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r); padding: 44px; max-width: 720px; margin: 0 auto; text-align: center; }
.support-box h2 { font-family: var(--font-h); font-size: 22px; font-weight: 700; letter-spacing: -.03em; margin-bottom: 14px; }
.support-box p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 8px; }
.support-box p:last-child { margin-bottom: 0; }

/* ── Jogi oldalak ──────────────────────────────────────────────────────── */
.legal { padding: 72px 0; }
.legal-content { max-width: 760px; }
.legal-content h2 { font-family: var(--font-h); font-size: 22px; font-weight: 700; letter-spacing: -.03em; margin-top: 44px; margin-bottom: 14px; padding-top: 28px; border-top: 1px solid var(--line); }
.legal-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.legal-content h3 { font-family: var(--font-h); font-size: 16px; font-weight: 600; letter-spacing: -.02em; margin-top: 26px; margin-bottom: 8px; }
.legal-content p { font-size: 15px; color: var(--ink-soft); line-height: 1.8; margin-bottom: 12px; }
.legal-content ul { list-style: none; margin-bottom: 16px; }
.legal-content ul li { font-size: 15px; color: var(--ink-soft); line-height: 1.8; padding: 4px 0 4px 22px; position: relative; }
.legal-content ul li::before { content: '\2192'; color: var(--accent-ink); font-size: 12px; position: absolute; left: 0; top: 7px; }
.legal-content strong { color: var(--ink); font-weight: 600; }
.legal-content a { color: var(--accent-ink); font-weight: 600; text-decoration: underline; text-decoration-color: var(--accent); text-underline-offset: 3px; }
.legal-content table { width: 100%; border-collapse: collapse; margin-bottom: 16px; font-size: 14px; }
.legal-content table th, .legal-content table td { text-align: left; padding: 10px 12px; color: var(--ink-soft); border-bottom: 1px solid var(--line); vertical-align: top; }
.legal-content table th { color: var(--ink); font-weight: 600; font-family: var(--font-h); }

/* ── Generált aloldalak és blog ────────────────────────────────────────── */
.content { padding: 64px 0; }
.content .wrap > * { max-width: 760px; }
.content h2 { font-family: var(--font-h); font-size: 27px; font-weight: 700; letter-spacing: -.04em; line-height: 1.2; margin: 48px 0 14px; }
.content h2:first-child { margin-top: 0; }
.content h3 { font-family: var(--font-h); font-size: 17px; font-weight: 700; letter-spacing: -.02em; margin: 26px 0 8px; }
.content p { font-size: 16px; color: var(--ink-soft); line-height: 1.8; margin-bottom: 14px; }
.content p strong, .content li strong { color: var(--ink); font-weight: 600; }
.content a { color: var(--accent-ink); font-weight: 600; text-decoration: underline; text-decoration-color: var(--accent); text-decoration-thickness: 2px; text-underline-offset: 3px; }
.content ul, .content ol { margin: 0 0 18px; list-style: none; }
.content ul li, .content ol li { font-size: 16px; color: var(--ink-soft); line-height: 1.75; padding: 6px 0 6px 26px; position: relative; }
.content ul li::before { content: '\2192'; color: var(--accent-ink); font-size: 13px; position: absolute; left: 0; top: 8px; }
.content ol { counter-reset: steps; }
.content ol li::before { counter-increment: steps; content: counter(steps) '.'; color: var(--accent-ink); font-family: var(--font-h); font-weight: 700; position: absolute; left: 0; top: 6px; }
.content blockquote { border-left: 3px solid var(--accent); background: var(--accent-soft); padding: 14px 20px; margin: 20px 0 22px; color: var(--ink); font-size: 16px; line-height: 1.7; border-radius: 0 12px 12px 0; }
.content table { width: 100%; border-collapse: collapse; margin: 8px 0 24px; font-size: 14.5px; }
.content th, .content td { text-align: left; padding: 12px; border-bottom: 1px solid var(--line); color: var(--ink-soft); vertical-align: top; line-height: 1.5; }
.content th { color: var(--ink); font-family: var(--font-h); font-weight: 600; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; }
.content td:first-child { color: var(--ink); font-weight: 600; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 24px 0 8px; max-width: none !important; }
.cards > div { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 26px 22px; transition: transform .25s, box-shadow .25s; }
.cards > div:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.cards h3 { font-family: var(--font-h); font-size: 16.5px; font-weight: 700; letter-spacing: -.02em; margin: 0 0 10px; }
.cards p { font-size: 14px; color: var(--muted); line-height: 1.7; margin: 0; }
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px 40px; margin: 24px 0 8px; max-width: none !important; }
.steps > div { position: relative; padding-left: 60px; }
.steps > div::before { counter-increment: step; content: counter(step, decimal-leading-zero); position: absolute; left: 0; top: -2px; font-family: var(--font-h); font-size: 30px; font-weight: 700; color: var(--accent-ink); background: var(--accent-soft); border-radius: 10px; padding: 4px 8px; line-height: 1; }
.steps h3 { margin: 0 0 6px; }
.steps p { font-size: 14.5px; margin: 0; }
.panel { background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r); padding: 26px 30px; margin: 24px 0; }
.panel h3 { margin-top: 0; color: var(--accent-ink); font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; }
.panel p:last-child { margin-bottom: 0; }
.related { padding: 48px 0; border-top: 1px solid var(--line); }
.related h2 { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 16px; }
.related ul { list-style: none; display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.related li a { display: block; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; font-size: 14.5px; font-weight: 600; color: var(--ink); transition: border-color .2s, transform .2s, box-shadow .2s; }
.related li a:hover { border-color: var(--ink); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.related li a small { display: block; font-size: 12.5px; color: var(--muted); font-weight: 400; margin-top: 4px; }
.author { display: flex; gap: 18px; align-items: flex-start; border: 1px solid var(--line); background: var(--surface); border-radius: var(--r); padding: 24px; margin-top: 40px; max-width: 760px; }
.author .mark { width: 44px; height: 44px; flex-shrink: 0; background: var(--accent); clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); }
.author strong { display: block; font-family: var(--font-h); font-size: 15px; letter-spacing: -.02em; }
.author span { font-size: 12.5px; color: var(--accent-ink); font-weight: 600; }
.author p { font-size: 13.5px; color: var(--muted); line-height: 1.7; margin: 8px 0 0; }
.post-list { display: grid; gap: 14px; margin: 0; max-width: none !important; }
.post-list article { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 30px 32px; transition: transform .25s, box-shadow .25s; }
.post-list article:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.post-list h2 { font-size: 22px; margin: 8px 0 10px; }
.post-list h2 a { color: var(--ink); text-decoration: none; }
.post-list h2 a:hover { color: var(--accent-ink); }
.post-list .post-meta { margin: 0 0 4px; }
.post-list p { margin-bottom: 12px; }
.post-list .more { font-size: 13.5px; font-weight: 600; color: var(--accent-ink); text-decoration: none; }

/* ── Bizalmi sáv ───────────────────────────────────────────────────────── */
.trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 28px; }
.trust div { display: flex; gap: 12px; align-items: flex-start; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; font-size: 13px; color: var(--ink-soft); line-height: 1.45; }
.trust svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; color: var(--accent-ink); }
.trust strong { display: block; color: var(--ink); font-weight: 600; font-size: 13px; }

/* ── „Így néz ki" — fülek és CSS-ben rajzolt képernyők ─────────────────── */
.showcase { padding: 96px 0; border-top: 1px solid var(--line); }
.tabs { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; margin-bottom: 28px; }
.tab { font-family: var(--font-h); font-size: 14px; font-weight: 600; padding: 10px 18px; border-radius: 999px; border: 1px solid var(--line-strong); background: var(--surface); color: var(--ink-soft); cursor: pointer; transition: background .2s, color .2s, border-color .2s, transform .15s; }
.tab:hover { border-color: var(--ink); color: var(--ink); }
.tab[aria-selected="true"] { background: var(--ink); color: #fff; border-color: var(--ink); }
.tab:active { transform: scale(.97); }
.pane { display: none; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; animation: wo-in .4s cubic-bezier(.2, .7, .2, 1); }
.pane[data-active] { display: grid; }
.pane h3 { font-family: var(--font-h); font-size: 28px; font-weight: 700; letter-spacing: -.04em; line-height: 1.15; margin-bottom: 14px; }
.pane > div > p { font-size: 16px; color: var(--muted); line-height: 1.7; margin-bottom: 18px; }
.pane .check-list li { font-size: 14.5px; }
.pane .more { display: inline-block; margin-top: 8px; }
.shot { background: var(--surface); border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow-lg); padding: 18px; position: relative; overflow: hidden; }
.shot::after { content: ''; position: absolute; inset: auto -60px -80px auto; width: 260px; height: 260px; background: radial-gradient(circle, rgba(200, 255, 0, .35), transparent 65%); pointer-events: none; }
.shot-bar { display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: var(--muted); padding: 2px 4px 12px; border-bottom: 1px solid var(--line); margin-bottom: 12px; }
.shot-bar b { color: var(--ink); font-family: var(--font-h); font-weight: 600; }
.chip { display: inline-block; font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 999px; background: var(--surface-2); color: var(--ink-soft); letter-spacing: .02em; }
.chip.lime { background: var(--accent); color: var(--ink); }
.chip.ink { background: var(--ink); color: #fff; }
.chip.warn { background: var(--danger-soft); color: var(--danger); }
.row-item { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 6px; border-bottom: 1px solid var(--line); font-size: 13.5px; }
.row-item:last-child { border-bottom: none; }
.row-item .plate { font-family: var(--font-h); font-weight: 700; font-size: 11.5px; letter-spacing: .06em; background: var(--accent); padding: 2px 6px; border-radius: 4px; margin-right: 8px; display: inline-block; white-space: nowrap; }
.row-item > span:first-child { min-width: 0; }
.row-item small { display: block; color: var(--muted); font-size: 12px; margin-top: 2px; }
.row-item b { font-family: var(--font-h); font-size: 16px; letter-spacing: -.02em; }
.phone { width: 260px; margin: 0 auto; background: var(--ink); border-radius: 36px; padding: 12px; box-shadow: var(--shadow-lg); position: relative; }
.phone::before { content: ''; position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 90px; height: 22px; background: var(--ink); border-radius: 0 0 14px 14px; z-index: 2; }
.phone-screen { background: var(--bg); border-radius: 26px; padding: 34px 14px 16px; min-height: 420px; }
.phone-screen h4 { font-family: var(--font-h); font-size: 18px; letter-spacing: -.03em; margin-bottom: 10px; }
.phone-screen .row-item { padding: 10px 4px; font-size: 12.5px; }
.phone-screen .row-item .plate { font-size: 10.5px; padding: 1px 5px; margin-right: 6px; }
.phone-screen .chip { padding: 3px 7px; font-size: 10px; white-space: nowrap; }
.phone-screen .btn-mini { display: block; width: 100%; text-align: center; background: var(--accent); color: var(--ink); font-family: var(--font-h); font-weight: 700; font-size: 13px; padding: 11px; border-radius: 12px; margin-top: 12px; }
.timeline { list-style: none; margin: 8px 0 0; }
.timeline li { display: flex; gap: 12px; align-items: flex-start; padding: 8px 0; font-size: 13.5px; color: var(--ink-soft); }
.timeline li::before { content: ''; width: 12px; height: 12px; border-radius: 50%; border: 2px solid var(--line-strong); background: var(--surface); flex-shrink: 0; margin-top: 3px; }
.timeline li.done::before { background: var(--accent); border-color: var(--accent-ink); }
.timeline li.now::before { background: var(--ink); border-color: var(--ink); box-shadow: 0 0 0 4px rgba(15, 17, 21, .1); }
.timeline li.now { color: var(--ink); font-weight: 600; }
.search-mock { display: flex; gap: 8px; align-items: center; background: var(--surface-2); border: 1px solid var(--line); border-radius: 12px; padding: 10px 12px; font-size: 14px; margin-bottom: 12px; }
.search-mock b { font-family: var(--font-h); letter-spacing: .04em; }
.search-mock span { color: var(--muted); margin-left: auto; font-size: 12px; }
.shelf { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 12px; }
.shelf div { background: var(--surface-2); border-radius: 10px; padding: 12px 8px; text-align: center; font-size: 12px; color: var(--muted); border: 1px solid transparent; }
.shelf div b { display: block; font-family: var(--font-h); font-size: 14px; color: var(--ink); margin-bottom: 2px; }
.shelf div.hit { background: var(--accent); color: var(--ink); border-color: var(--accent-ink); }
.shelf div.hit b { color: var(--ink); }
.bar-row { display: flex; align-items: center; gap: 10px; font-size: 13px; padding: 9px 4px; border-bottom: 1px solid var(--line); }
.bar-row:last-child { border-bottom: none; }
.bar-row .name { flex: 1; }
.bar-row .track { width: 110px; height: 6px; border-radius: 3px; background: var(--line); overflow: hidden; }
.bar-row .track i { display: block; height: 100%; background: var(--accent-ink); border-radius: 3px; }
.bar-row .track i.low { background: var(--danger); }
.bar-row b { font-family: var(--font-h); width: 34px; text-align: right; }

/* ── GYIK a főoldalon ──────────────────────────────────────────────────── */
.home-faq { padding: 80px 0; border-top: 1px solid var(--line); }
.home-faq .faq-head { margin-bottom: 24px; }
.home-faq .faq-list details { border-bottom: 1px solid var(--line); padding: 18px 0; }
.home-faq summary { cursor: pointer; font-family: var(--font-h); font-size: 17px; font-weight: 600; letter-spacing: -.02em; list-style: none; display: flex; justify-content: space-between; gap: 16px; }
.home-faq summary::-webkit-details-marker { display: none; }
.home-faq summary::after { content: '+'; color: var(--accent-ink); flex-shrink: 0; transition: transform .25s; }
.home-faq details[open] summary::after { transform: rotate(45deg); }
.home-faq details p { font-size: 15px; color: var(--muted); line-height: 1.75; margin-top: 12px; animation: wo-in .3s; }
.home-faq details p a { color: var(--accent-ink); font-weight: 600; text-decoration: underline; text-decoration-color: var(--accent); text-underline-offset: 3px; }

/* ── Egy nap a műhelyben (játék) ───────────────────────────────────────── */
.game-section { padding: 96px 0; border-top: 1px solid var(--line); }
.game-head { text-align: center; margin-bottom: 36px; }
.game-head h2 { font-family: var(--font-h); font-size: 34px; font-weight: 700; letter-spacing: -.04em; margin-bottom: 12px; }
.game-head p { font-size: 16px; color: var(--muted); max-width: 640px; margin: 0 auto; line-height: 1.6; }
.game { background: var(--surface); border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow-lg); padding: 22px; position: relative; overflow: hidden; }
.game-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-bottom: 16px; border-bottom: 1px solid var(--line); margin-bottom: 16px; }
.day-badge { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-h); font-weight: 700; font-size: 14px; padding: 8px 14px; border-radius: 999px; background: var(--surface-2); color: var(--ink); }
.day-badge.mechano { background: var(--accent); }
.day-desc { font-size: 13px; color: var(--muted); margin-top: 8px; max-width: 520px; line-height: 1.55; }
.game-stats { display: flex; gap: 8px; flex-wrap: wrap; }
.game-stat { background: var(--surface-2); border-radius: 12px; padding: 8px 14px; font-size: 12px; color: var(--muted); min-width: 92px; }
.game-stat b { display: block; font-family: var(--font-h); font-size: 20px; color: var(--ink); letter-spacing: -.03em; font-variant-numeric: tabular-nums; line-height: 1.1; }
.game-stat.time b { color: var(--accent-ink); }
.game-stat.bad b { color: var(--danger); }
.game-controls { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.game-btn { font-family: var(--font-h); font-size: 14px; font-weight: 600; padding: 11px 20px; border-radius: 12px; border: 1px solid var(--line-strong); background: var(--surface); color: var(--ink); cursor: pointer; transition: transform .15s, box-shadow .2s, border-color .2s, background .2s, opacity .2s; text-decoration: none; display: inline-block; }
.game-btn:hover { border-color: var(--ink); transform: translateY(-1px); }
.game-btn:active { transform: scale(.97); }
.game-btn.primary { background: var(--accent); border-color: var(--accent); }
.game-btn.primary:hover { box-shadow: 0 12px 26px -12px var(--accent-glow); }
.game-btn.small { font-size: 12px; padding: 7px 11px; border-radius: 9px; }
.game-btn[disabled] { opacity: .45; cursor: not-allowed; transform: none; box-shadow: none; }
.game-layout { display: grid; grid-template-columns: 1fr 1.5fr 1fr; gap: 14px; }
.game-panel { background: var(--surface-2); border-radius: 16px; padding: 12px; min-height: 340px; display: flex; flex-direction: column; }
.game-panel h3 { font-family: var(--font-b); font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); padding: 2px 4px 10px; display: flex; justify-content: space-between; align-items: center; }
.desk-busy { font-size: 12px; color: var(--danger); font-weight: 600; padding: 0 4px 8px; display: none; }
.desk-busy.on { display: block; animation: wo-in .2s; }
.car { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 10px 12px; margin-bottom: 8px; box-shadow: var(--shadow-sm); display: grid; grid-template-columns: 34px 1fr auto; gap: 10px; align-items: center; transition: transform .2s, box-shadow .2s, border-color .2s, opacity .3s; animation: wo-in .4s cubic-bezier(.2, .7, .2, 1); text-align: left; width: 100%; font: inherit; color: inherit; touch-action: none; user-select: none; position: relative; }
.car.ready { cursor: grab; }
.car.ready:hover { border-color: var(--ink); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.car.dragging { opacity: .35; }
.car.shake { animation: shake .4s; border-color: var(--danger); }
.car.gone { opacity: 0; transform: translateX(-16px); }
.car svg { width: 34px; height: 24px; }
.car .plate { font-family: var(--font-h); font-weight: 700; font-size: 11.5px; letter-spacing: .05em; background: var(--accent); padding: 1px 6px; border-radius: 4px; display: inline-block; white-space: nowrap; }
.car .job { font-size: 12.5px; font-weight: 600; color: var(--ink); margin-top: 3px; }
.car .pay { font-size: 12px; color: var(--accent-ink); font-weight: 600; white-space: nowrap; text-align: right; }
.car .hint { font-size: 11px; color: var(--muted); font-weight: 500; margin-top: 4px; }
.car .patience { grid-column: 1 / -1; height: 4px; border-radius: 2px; background: var(--line); overflow: hidden; }
.car .patience i { display: block; height: 100%; background: var(--accent-ink); border-radius: 2px; transition: width .2s linear, background .3s; }
.car .patience i.low { background: var(--danger); }
.car .intake { grid-column: 1 / -1; display: flex; align-items: center; gap: 8px; }
.car .intake .track { flex: 1; height: 6px; border-radius: 3px; background: var(--line); overflow: hidden; }
.car .intake .track i { display: block; height: 100%; background: var(--ink); width: 0; }
.drag-ghost { position: absolute; z-index: 50; pointer-events: none; width: 220px; opacity: .95; transform: rotate(-2deg); box-shadow: var(--shadow-lg); margin: 0; }
@keyframes shake { 0%, 100% { transform: translateX(0); } 25% { transform: translateX(-5px); } 75% { transform: translateX(5px); } }
.bays { display: grid; gap: 10px; flex: 1; }
.bay { background: var(--surface); border: 1px dashed var(--line-strong); border-radius: 14px; padding: 12px 14px; min-height: 92px; display: flex; flex-direction: column; justify-content: center; gap: 6px; transition: border-color .2s, background .2s, box-shadow .2s; position: relative; }
.bay.free { color: var(--faint); font-size: 13px; text-align: center; }
.bay.free.target { border-color: var(--accent-ink); background: var(--accent-soft); color: var(--accent-ink); }
.bay.free.over { border-style: solid; box-shadow: 0 0 0 3px var(--accent-glow); }
.bay.busy { border-style: solid; border-color: var(--line); box-shadow: var(--shadow-sm); }
.bay.waiting { border-color: var(--danger); background: var(--danger-soft); }
.bay.done { border-color: var(--accent-ink); background: var(--accent-soft); }
.bay .row { display: flex; justify-content: space-between; align-items: center; gap: 10px; font-size: 13px; }
.bay .row .plate { font-family: var(--font-h); font-weight: 700; font-size: 11.5px; letter-spacing: .05em; background: var(--accent); padding: 1px 6px; border-radius: 4px; white-space: nowrap; }
.bay .status { font-size: 12px; color: var(--muted); }
.bay .status.warn { color: var(--danger); font-weight: 600; }
.bay .status.ok { color: var(--accent-ink); font-weight: 600; }
.bay .progress { height: 6px; border-radius: 3px; background: var(--line); overflow: hidden; }
.bay .progress i { display: block; height: 100%; background: var(--accent-ink); border-radius: 3px; transition: width .12s linear; }
.side { display: flex; flex-direction: column; gap: 12px; }
.phone-box { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 10px 12px; font-size: 13px; display: flex; gap: 10px; align-items: center; min-height: 58px; }
.phone-box svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--ink-soft); }
.phone-box.ringing { border-color: var(--danger); background: var(--danger-soft); animation: ring .8s infinite; }
.phone-box.ringing svg { color: var(--danger); animation: shake .4s infinite; }
@keyframes ring { 0%, 100% { box-shadow: 0 0 0 0 rgba(201, 58, 58, .25); } 50% { box-shadow: 0 0 0 6px rgba(201, 58, 58, 0); } }
.phone-box.busy { border-color: var(--ink); }
.phone-box .txt { flex: 1; line-height: 1.35; }
.phone-box .txt small { display: block; color: var(--muted); font-size: 11.5px; }
.stock-list { display: grid; gap: 6px; }
.stock { background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: 8px 12px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; gap: 8px; flex-wrap: wrap; }
.stock b { font-family: var(--font-h); font-size: 17px; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.stock.empty b { color: var(--danger); }
.stock.alert { border-color: var(--accent-ink); background: var(--accent-soft); }
.stock .alert-row { flex-basis: 100%; display: flex; justify-content: space-between; align-items: center; gap: 8px; font-size: 11.5px; color: var(--accent-ink); font-weight: 600; animation: wo-in .3s; }
.stock .arriving { font-size: 11px; color: var(--accent-ink); font-weight: 600; margin-left: 6px; }
.tray { display: grid; gap: 6px; }
.tray .item { background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: 8px 10px; display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; gap: 8px; animation: wo-in .3s; }
.tray .item.auto { border-color: var(--accent-ink); color: var(--accent-ink); font-weight: 600; }
.game-feed { margin-top: 12px; font-size: 12.5px; color: var(--muted); min-height: 1.4em; display: grid; gap: 4px; }
.game-feed div { display: flex; gap: 8px; align-items: baseline; animation: wo-in .25s; }
.game-feed div::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--line-strong); flex-shrink: 0; position: relative; top: -1px; }
.game-feed div.good::before { background: var(--accent-ink); }
.game-feed div.bad::before { background: var(--danger); }
.game-overlay { position: absolute; inset: 0; background: rgba(251, 251, 248, .95); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; padding: 24px; text-align: center; animation: wo-in .3s; z-index: 5; overflow: auto; }
.game-overlay .card { max-width: 640px; width: 100%; }
.game-overlay h3 { font-family: var(--font-h); font-size: 30px; font-weight: 700; letter-spacing: -.04em; margin-bottom: 8px; }
.game-overlay p { font-size: 15px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 16px; }
.game-overlay .result { display: flex; justify-content: center; gap: 10px; margin: 18px 0 20px; flex-wrap: wrap; }
.game-overlay .result div { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 10px 16px; min-width: 110px; }
.game-overlay .result b { display: block; font-family: var(--font-h); font-size: 22px; letter-spacing: -.03em; }
.game-overlay .result span { font-size: 12px; color: var(--muted); }
.compare { width: 100%; border-collapse: collapse; margin: 16px 0 20px; font-size: 14px; background: var(--surface); border-radius: 14px; overflow: hidden; border: 1px solid var(--line); }
.compare th, .compare td { padding: 10px 12px; text-align: right; border-bottom: 1px solid var(--line); }
.compare th:first-child, .compare td:first-child { text-align: left; color: var(--ink-soft); font-weight: 500; }
.compare th { font-family: var(--font-h); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); background: var(--surface-2); }
.compare th.mechano { color: var(--accent-ink); }
.compare td { font-family: var(--font-h); font-weight: 600; font-variant-numeric: tabular-nums; }
.compare td.win { color: var(--accent-ink); }
.compare tr:last-child td { border-bottom: none; }
.game-overlay .actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.game-overlay .best { font-size: 12.5px; color: var(--muted); margin-top: 12px; }
.game-flash { position: absolute; right: 22px; top: 22px; background: var(--ink); color: #fff; font-size: 12.5px; padding: 8px 12px; border-radius: 10px; opacity: 0; transform: translateY(-6px); transition: opacity .25s, transform .25s; pointer-events: none; z-index: 6; }
.game-flash.show { opacity: 1; transform: none; }
.game-flash.gain { background: var(--accent-ink); }
.game-flash.loss { background: var(--danger); }
.money { position: absolute; font-family: var(--font-h); font-weight: 700; color: var(--accent-ink); font-size: 14px; pointer-events: none; animation: money 1s ease-out forwards; z-index: 4; }
@keyframes money { from { opacity: 1; transform: translateY(0); } to { opacity: 0; transform: translateY(-36px); } }

/* ── Görgetésre megjelenés ─────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s cubic-bezier(.2, .7, .2, 1); transition-delay: calc(var(--i, 0) * 70ms); }
.reveal.in-view { opacity: 1; transform: none; }

/* ── Reszponzív ────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .game-layout { grid-template-columns: 1fr 1fr; }
  .game-layout .game-panel:nth-child(3) { grid-column: 1 / -1; min-height: auto; }
  .stock-list { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .wrap { padding: 0 20px; }
  .nav-inner { padding: 0 20px; height: 60px; }
  .nav-right { display: none; }
  .hamburger { display: block; }
  .nav-mobile-buttons { display: flex; align-items: center; gap: 8px; }
  .hero { padding: 104px 0 48px; }
  .proof { grid-template-columns: 1fr 1fr; }
  .pain-grid, .feature-grid, .feature-grid.reverse, .contact-grid { grid-template-columns: 1fr; gap: 24px; direction: ltr; }
  .features-grid, .pricing-grid, .extras-grid, .cards, .steps { grid-template-columns: 1fr; }
  .board-cols { grid-template-columns: 1fr; }
  .col { min-height: auto; }
  .col:nth-child(3) { display: none; }
  .footer-inner { flex-direction: column; text-align: center; padding: 0 20px; }
  .cta .wrap { padding: 52px 24px; border-radius: 20px; }
  .content table { display: block; overflow-x: auto; }
  .trust { grid-template-columns: 1fr 1fr; }
  .pane { grid-template-columns: 1fr; gap: 24px; }
  .pane > .shot, .pane > .phone { order: -1; }
  .game { padding: 14px; border-radius: 18px; }
  .game-layout { grid-template-columns: 1fr; }
  .game-panel { min-height: auto; }
  .footer-bottom { padding: 18px 20px 0; }
}
@media (min-width: 769px) and (max-width: 960px) {
  .game-layout { grid-template-columns: 1fr 1fr; }
  .game-layout .side { grid-column: 1 / -1; }
  .trust { grid-template-columns: 1fr 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .lang-switch:hover .globe .globe-spin, .mobile-lang:hover .globe .globe-spin, .footer-bottom a:hover .heart { animation: none; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  h1 em, h2 em, h3 em { background-size: 100% 100%; }
}

/* Kalkulátor: az ajánlott csomag doboza és a többi csomag listája. */
.calc-result { margin-top: 24px; }
.calc-plan { background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r); padding: 22px 24px; }
.calc-plan h3 { font-family: var(--font-h); font-size: 26px; font-weight: 700; letter-spacing: -.03em; margin: 8px 0 4px; }
.calc-price { font-size: 16px; color: var(--ink-soft); }
.calc-price strong { font-family: var(--font-h); font-size: 22px; color: var(--ink); }
.calc-others-title { margin-top: 18px; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.calc-others { list-style: none; padding: 0; margin: 6px 0 0; font-size: 14px; color: var(--muted); }
.calc-others li { padding: 4px 0; }
.calc-roi { margin-top: 14px; font-size: 15px; color: var(--ink); background: var(--accent-soft); border-left: 3px solid var(--accent); padding: 10px 14px; border-radius: 6px; }
.contact-card h3 { font-family: var(--font-h); font-size: 14px; letter-spacing: .02em; margin: 18px 0 4px; }

/* Állapotoldal: komponensek és a jelző. */
.status-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 20px 0; max-width: none !important; }
.status-item { display: flex; align-items: center; justify-content: space-between; gap: 12px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 16px 18px; }
.status-item strong { font-family: var(--font-h); font-size: 15px; }
.status-item span { font-size: 13px; color: var(--muted); }
.status-dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; background: var(--line-strong); margin-right: 8px; vertical-align: middle; }
.status-ok .status-dot { background: #15803d; }
.status-error .status-dot { background: #b91c1c; }
.status-warn .status-dot { background: #b45309; }
.status-summary { font-family: var(--font-h); font-size: 20px; font-weight: 700; margin: 8px 0 4px; }
@media (max-width: 640px) { .status-grid { grid-template-columns: 1fr; } }
