/* ============================================================
   Flowdeal · közös stíluslap (valódi márka: app.flowdeal.hu)
   Inter + DM Sans · zöld primary · hűvös semlegesek
   ============================================================ */

:root {
  /* Brand tokens · átvéve a Flowdeal styles.css-ből */
  --primary:        oklch(0.62 0.17 145);
  --primary-hover:  oklch(0.54 0.16 145);
  --primary-press:  oklch(0.48 0.15 145);
  --primary-soft:   oklch(0.95 0.02 145);   /* accent / pale green */
  --primary-deep:   oklch(0.30 0.10 145);   /* accent-fg */
  --primary-strong: oklch(0.40 0.13 145);

  --fg:        oklch(0.18 0.02 260);
  --fg-2:      oklch(0.34 0.02 260);
  --muted-fg:  oklch(0.50 0.02 257);
  --bg:        oklch(0.985 0.002 247);
  --surface:   oklch(0.96 0.005 250);       /* secondary / muted · valódi token */
  --card:      #ffffff;

  --warning:        oklch(0.78 0.15 75);
  --warning-soft:   oklch(0.95 0.06 75);
  --warning-deep:   oklch(0.40 0.09 75);
  --destructive:    oklch(0.60 0.22 27);

  --ink:        oklch(0.22 0.02 260);        /* sidebar navy · footer/dark */
  --ink-soft:   oklch(0.28 0.02 260);
  --ink-line:   oklch(0.34 0.02 260);

  --border:    oklch(0.92 0.01 255);
  --border-2:  oklch(0.87 0.01 255);

  --radius: 8px;
  --r-sm: 6px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 16px;
  --r-2xl: 22px;
  --r-pill: 999px;

  --shadow-xs: 0 1px 2px rgba(20,24,40,0.05);
  --shadow-sm: 0 2px 6px rgba(20,24,40,0.06), 0 1px 2px rgba(20,24,40,0.04);
  --shadow-md: 0 10px 24px rgba(20,24,40,0.08), 0 2px 6px rgba(20,24,40,0.04);
  --shadow-lg: 0 28px 56px rgba(20,24,40,0.12), 0 6px 14px rgba(20,24,40,0.05);
  --shadow-brand: 0 10px 22px oklch(0.62 0.17 145 / 0.28);

  --container: 1200px;
  --container-narrow: 880px;
  --container-wide: 1320px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 220ms;

  --font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "DM Sans", "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0; padding: 0;
  font-family: var(--font);
  font-size: 16px; line-height: 1.55;
  color: var(--fg-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: var(--font); }
img { max-width: 100%; display: block; }

h1, h2, h3, h4, h5 { font-family: var(--font-display); color: var(--fg); letter-spacing: -0.02em; margin: 0; }
h1 { font-size: clamp(38px, 4.6vw, 60px); font-weight: 700; line-height: 1.05; }
h2 { font-size: clamp(28px, 3.2vw, 42px); font-weight: 700; line-height: 1.12; }
h3 { font-size: 22px; font-weight: 600; line-height: 1.25; }
h4 { font-size: 18px; font-weight: 600; line-height: 1.35; }

p { margin: 0; }
a { color: var(--primary-strong); text-decoration: none; }
a:hover { color: var(--primary-hover); }

.eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--primary); margin: 0 0 14px;
}
.lead { font-size: clamp(17px, 1.5vw, 20px); line-height: 1.6; color: var(--muted-fg); }
.muted { color: var(--muted-fg); }
.text-balance { text-wrap: balance; }
.text-pretty { text-wrap: pretty; }

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: var(--container-wide); margin: 0 auto; padding: 0 24px; }
.section { padding: 92px 0; }
.section-sm { padding: 64px 0; }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head.left { text-align: left; margin-left: 0; }
.bg-surface { background: var(--surface); }
.bg-soft { background: var(--primary-soft); }
.bg-ink { background: var(--ink); color: rgba(255,255,255,0.82); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 15px; line-height: 1;
  border: none; cursor: pointer; text-decoration: none; white-space: nowrap;
  padding: 13px 22px; border-radius: var(--r-md);
  transition: background var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out), transform 90ms ease-out, color var(--dur);
}
.btn:active { transform: scale(0.98); }
.btn svg { width: 18px; height: 18px; }
.btn-sm { padding: 9px 15px; font-size: 14px; border-radius: var(--r-sm); }
.btn-lg { padding: 16px 28px; font-size: 16px; }

.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-hover); color: #fff; }

.btn-outline { background: transparent; color: var(--fg); box-shadow: inset 0 0 0 1.5px var(--border-2); }
.btn-outline:hover { background: var(--surface); color: var(--fg); box-shadow: inset 0 0 0 1.5px var(--primary); }

.btn-ghost { background: transparent; color: var(--primary-strong); }
.btn-ghost:hover { background: var(--primary-soft); color: var(--primary-hover); }

.btn-white { background: #fff; color: var(--primary-hover); }
.btn-white:hover { background: var(--primary-soft); }

.btn-block { width: 100%; }

.link-arrow { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--primary-strong); }
.link-arrow:hover { gap: 9px; color: var(--primary-hover); }
.link-arrow svg { width: 17px; height: 17px; transition: transform var(--dur) var(--ease-out); }

/* ---------- Badges / chips ---------- */
.badge { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 700; padding: 5px 11px; border-radius: var(--r-pill); letter-spacing: 0.02em; }
.badge-green { background: var(--primary-soft); color: var(--primary-deep); }
.badge-amber { background: var(--warning-soft); color: var(--warning-deep); }
.badge-ink { background: var(--ink); color: #fff; }

/* ---------- Cards ---------- */
.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px;
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--dur) var(--ease-out), transform var(--dur) var(--ease-out), border-color var(--dur);
}
.card-hover:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--border-2); }
.icon-tile { width: 46px; height: 46px; border-radius: 11px; display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.icon-tile svg { width: 23px; height: 23px; }
.icon-tile.green { background: var(--primary-soft); color: var(--primary-strong); }
.icon-tile.solid { background: var(--primary); color: #fff; }
.icon-tile.amber { background: var(--warning-soft); color: var(--warning-deep); }
.icon-tile.purple { background: oklch(0.93 0.045 288); color: oklch(0.52 0.19 285); }
.icon-tile.pink { background: oklch(0.94 0.04 18); color: oklch(0.57 0.21 25); }
.icon-tile.ink { background: var(--ink); color: #fff; }

/* ---------- Grids ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Kiemelt ügyféltörténet kártya */
.story-feature { display: grid; grid-template-columns: 1fr 1fr; }
.story-feature > * { min-width: 0; }
@media (max-width: 760px) {
  .story-feature { grid-template-columns: 1fr; }
  .story-feature .story-feature-body { padding: 36px 26px; }
  .story-feature .story-feature-quote { padding: 36px 26px; }
}

/* ---------- Nav ---------- */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.9); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.nav-inner { display: flex; align-items: center; gap: 34px; height: 68px; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex: 0 0 auto; }
.nav-logo .word { font-family: var(--font-display); font-size: 22px; font-weight: 700; letter-spacing: -0.03em; color: var(--fg); }
.brand-logo { display: block; width: auto; }
.brand-logo-light { filter: brightness(0) invert(1); }
.nav-links { display: flex; align-items: center; gap: 6px; flex: 1; }
.nav-links > a, .nav-mega-trigger { font-size: 14.5px; font-weight: 600; color: var(--fg); padding: 8px 12px; border-radius: var(--r-sm); transition: background var(--dur), color var(--dur); cursor: pointer; }
.nav-links > a:hover, .nav-mega-trigger:hover { background: var(--surface); color: var(--primary-strong); }
.nav-links > a.active, .nav-mega-trigger.active { color: var(--primary-strong); }

/* Funkciók mega menü */
.nav-mega { position: relative; display: flex; align-items: center; }
.nav-mega-trigger { display: inline-flex; align-items: center; gap: 4px; }
.mega-chev { width: 15px; height: 15px; transition: transform var(--dur) var(--ease-out); }
.nav-mega:hover .mega-chev { transform: rotate(180deg); }
.mega { position: absolute; top: calc(100% + 16px); left: 0; width: 720px; max-width: 86vw; background: #fff; border: 1px solid var(--border); border-radius: var(--r-xl); box-shadow: var(--shadow-lg); padding: 16px; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out); z-index: 130; }
.mega::before { content: ''; position: absolute; top: -16px; left: 0; right: 0; height: 16px; }
.mega.open { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.mega-link { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: var(--r-md); text-decoration: none; }
.mega-link:hover { background: var(--surface); }
.mega-link .icon-tile { width: 38px; height: 38px; }
.mega-link .icon-tile svg { width: 19px; height: 19px; }
.mega-txt { display: flex; flex-direction: column; min-width: 0; }
.mega-txt strong { font-size: 14.5px; font-weight: 600; color: var(--fg); line-height: 1.25; }
.mega-txt span { font-size: 12.5px; color: var(--muted-fg); line-height: 1.3; }
.mega-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 10px; padding: 14px 12px 4px; border-top: 1px solid var(--border); }
.nav-cta { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.nav-cta .login { font-size: 14.5px; font-weight: 600; color: var(--fg); padding: 8px 10px; }
.nav-cta .login:hover { color: var(--primary-strong); }
.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: var(--fg); }
.nav-mobile { display: none; }

/* ---- Nyelvválasztó ---- */
.lang { position: relative; }
.lang-btn { display: inline-flex; align-items: center; gap: 7px; background: none; border: 1px solid var(--border); border-radius: var(--r-md); padding: 6px 9px; cursor: pointer; font-family: inherit; font-size: 14px; font-weight: 600; color: var(--fg); transition: background var(--dur), border-color var(--dur); }
.lang-btn:hover { background: var(--surface); border-color: var(--border-2); }
.lang-btn-flagonly { padding: 7px 8px; }
.flag { width: 28px; height: 19px; border-radius: 3px; display: block; flex: 0 0 auto; box-shadow: 0 0 0 1px rgba(20,24,40,0.08); }
.lang-btn .chev, .lang-btn > svg:last-of-type { width: 15px; height: 15px; color: var(--muted-fg); }
.lang-menu { position: absolute; top: calc(100% + 8px); right: 0; min-width: 168px; background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--shadow-md); padding: 6px; z-index: 130; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity var(--dur), transform var(--dur); }
.lang-menu.open { opacity: 1; visibility: visible; transform: none; }
.lang-item { display: flex; align-items: center; gap: 11px; width: 100%; background: none; border: none; padding: 9px 10px; border-radius: var(--r-sm); cursor: pointer; font-family: inherit; font-size: 14px; font-weight: 600; color: var(--fg); text-align: left; }
.lang-item:hover { background: var(--surface); }
.lang-item.active { background: var(--primary-soft); color: var(--primary-strong); }
.lang-item .flag { width: 23px; height: 15px; }

@media (max-width: 1000px) {
  .nav-links { display: none; }
  .nav-inner { justify-content: space-between; gap: 12px; }
  .nav-cta .login { display: none; }
  .nav-cta .btn-primary { display: none; }
  .lang-label { display: none; }
  .nav-cta { gap: 8px; margin-left: auto; }
  .nav-burger { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; padding: 0; border: 1px solid var(--border); border-radius: var(--r-md); }
  .nav-burger:hover { background: var(--surface); }
  .nav-cta .lang-btn-flagonly { width: 42px; height: 42px; padding: 0; justify-content: center; }
  .nav-cta .lang-btn-flagonly .flag { width: 30px; height: 20px; }
  .nav-mobile.open { display: block; position: absolute; top: 68px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md); padding: 12px 24px 20px; max-height: calc(100vh - 68px); overflow-y: auto; }
  .nav-mobile.open > a { display: block; padding: 12px 8px; font-weight: 600; color: var(--fg); border-bottom: 1px solid var(--border); }
  .nav-mobile.open .m-cta { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
  .m-acc { border-bottom: 1px solid var(--border); }
  .m-acc-btn { display: flex; align-items: center; justify-content: space-between; width: 100%; background: none; border: none; padding: 12px 8px; font-family: inherit; font-size: 16px; font-weight: 600; color: var(--fg); cursor: pointer; }
  .m-acc-btn .mega-chev { transition: transform var(--dur); }
  .m-acc-btn .mega-chev.up { transform: rotate(180deg); }
  .m-acc-panel { display: none; padding: 4px 0 10px; }
  .m-acc-panel.open { display: block; }
  .m-sub { display: flex; align-items: center; gap: 12px; padding: 9px 8px; font-size: 14.5px; font-weight: 600; color: var(--fg-2); }
  .m-sub .icon-tile { width: 32px; height: 32px; }
  .m-sub .icon-tile svg { width: 17px; height: 17px; }
  .m-sub-all { color: var(--primary-strong); font-weight: 700; padding-left: 8px; }
}

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,0.7); padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .word { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: #fff; letter-spacing: -0.03em; }
.footer-brand p { margin: 16px 0 0; font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.6); max-width: 280px; }
.footer-badges { display: flex; align-items: center; gap: 14px; margin-top: 22px; }
.footer-badges img { height: 56px; width: auto; display: block; }
.footer-ask { margin-top: 26px; }
.footer-ask-label { display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 12px; }
.footer-ask-row { display: flex; align-items: center; gap: 12px; }
.footer-ask-row a { display: inline-flex; border-radius: 11px; overflow: hidden; transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out); }
.footer-ask-row a:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.footer-ask-row img { width: 40px; height: 40px; display: block; }

/* ---------- Security / trust ---------- */
.sec-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 24px; }
.sec-card { display: flex; gap: 24px; align-items: flex-start; background: #fff; border: 1px solid var(--border); border-radius: var(--r-2xl); padding: 30px 32px; }
.sec-card > img { height: 96px; width: auto; flex: 0 0 auto; }
.sec-card h3 { font-size: 20px; margin: 2px 0 10px; }
.sec-card .muted { font-size: 15px; line-height: 1.6; }
.sec-why { display: flex; align-items: flex-start; gap: 9px; margin: 16px 0 0; font-size: 14px; font-weight: 600; color: var(--primary-strong); line-height: 1.5; }
.sec-why svg { width: 17px; height: 17px; flex: 0 0 auto; margin-top: 1px; }
.sec-points { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.sec-point { background: #fff; border: 1px solid var(--border); border-radius: var(--r-xl); padding: 24px; }
.sec-point .icon-tile { margin-bottom: 16px; }
.sec-point h4 { font-size: 15.5px; margin: 0 0 7px; }
.sec-point .muted { font-size: 14px; line-height: 1.55; }
@media (max-width: 900px) {
  .sec-grid { grid-template-columns: 1fr; }
  .sec-points { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .sec-card { flex-direction: column; gap: 18px; }
  .sec-points { grid-template-columns: 1fr; }
}
.footer-col h5 { font-size: 12.5px; font-weight: 700; color: #fff; letter-spacing: 0.06em; text-transform: uppercase; margin: 0 0 16px; }
.footer-col a { display: block; color: rgba(255,255,255,0.66); font-size: 14px; padding: 6px 0; }
.footer-col a:hover { color: #fff; }
.footer-base { margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 13px; color: rgba(255,255,255,0.55); }
.footer-base .social { display: flex; gap: 14px; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-legal a { color: rgba(255,255,255,0.66); font-size: 13px; }
.footer-legal a:hover { color: #fff; }
.footer-base .social a { color: rgba(255,255,255,0.6); display: inline-flex; }
.footer-base .social a:hover { color: #fff; }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 28px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-base { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 360px) {
  .footer { padding-top: 56px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-brand p { max-width: none; }
}

/* ---------- Hero ---------- */
.hero { padding: 80px 0 88px; position: relative; overflow: hidden;
  background:
    radial-gradient(95% 95% at 0% 115%, oklch(0.93 0.05 150) 0%, oklch(0.93 0.05 150 / 0) 58%),
    radial-gradient(78% 80% at 102% 45%, oklch(0.95 0.035 150) 0%, oklch(0.95 0.035 150 / 0) 55%),
    linear-gradient(180deg, oklch(0.99 0.01 150) 0%, #ffffff 58%);
}
.hero::before {
  content: ""; position: absolute; inset: -25%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(40% 44% at 24% 28%, oklch(0.88 0.095 150 / 0.62) 0%, oklch(0.88 0.095 150 / 0) 62%),
    radial-gradient(44% 48% at 76% 54%, oklch(0.9 0.08 168 / 0.55) 0%, oklch(0.9 0.08 168 / 0) 62%),
    radial-gradient(38% 42% at 52% 90%, oklch(0.91 0.07 152 / 0.5) 0%, oklch(0.91 0.07 152 / 0) 60%);
  animation: hero-drift 20s ease-in-out infinite;
  will-change: transform;
}
@keyframes hero-drift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  33% { transform: translate3d(4%, -3.5%, 0) scale(1.09); }
  66% { transform: translate3d(-3.5%, 3%, 0) scale(1.05); }
}
@media (prefers-reduced-motion: reduce) { .hero::before { animation: none; } }
.hero-grid { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero h1 { margin-bottom: 20px; }
.hero .lead { margin-bottom: 30px; max-width: 540px; }
.hero-cta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-checks { list-style: none; margin: 0 0 30px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 28px; max-width: 560px; }
.hero-checks li { display: flex; align-items: flex-start; gap: 11px; font-size: 15px; line-height: 1.4; color: var(--fg-2); font-weight: 500; }
.ck-circle { flex: 0 0 auto; width: 22px; height: 22px; margin-top: 1px; border-radius: 50%; border: 1.5px solid var(--primary); color: var(--primary); display: inline-flex; align-items: center; justify-content: center; }
.ck-circle svg { width: 13px; height: 13px; stroke-width: 3; }
@media (max-width: 560px) { .hero-checks { grid-template-columns: 1fr; } }
.hero-trust { margin-top: 22px; font-size: 14px; color: var(--muted-fg); display: flex; align-items: center; gap: 8px; }
.hero-trust svg { width: 17px; height: 17px; color: var(--primary); }
.hero-img { display: block; width: 100%; height: auto; border-radius: var(--r-xl); }
.hero-shot { display: block; width: 100%; height: auto; filter: drop-shadow(0 26px 54px rgba(20,24,40,0.16)); }
@media (min-width: 981px) {
  .hero-visual { position: relative; }
  .hero-shot { width: 132%; max-width: none; }
}

/* ---------- AI asszisztens kártya (hero) ---------- */.assistant-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-2xl); box-shadow: var(--shadow-lg); padding: 22px; max-width: 460px; margin-left: auto; }
.ac-head { display: flex; align-items: center; gap: 13px; }
.ac-avatar { flex: 0 0 auto; width: 44px; height: 44px; border-radius: 13px; background: var(--primary); color: #fff; display: inline-flex; align-items: center; justify-content: center; }
.ac-avatar svg { width: 22px; height: 22px; }
.ac-head-txt { flex: 1; min-width: 0; }
.ac-title { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--fg); }
.ac-sub { font-size: 13px; color: var(--muted-fg); margin-top: 1px; }
.ac-live { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--primary-strong); background: var(--primary-soft); padding: 5px 10px; border-radius: var(--r-pill); }
.ac-live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--primary); }
.ac-suggestion { margin-top: 18px; background: var(--primary-soft); border-radius: var(--r-lg); padding: 14px 16px; }
.ac-suggestion p { margin: 0; font-size: 14.5px; line-height: 1.5; color: var(--primary-deep); }
.ac-email { margin-top: 14px; border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
.ac-email-row { display: flex; gap: 12px; padding: 10px 15px; border-bottom: 1px solid var(--border); font-size: 13.5px; }
.ac-email-row .ac-k { color: var(--muted-fg); width: 58px; flex: 0 0 auto; }
.ac-email-row .ac-v { color: var(--fg); font-weight: 500; }
.ac-email-body { margin: 0; padding: 14px 15px; font-size: 14px; line-height: 1.55; color: var(--fg-2); }
.ac-actions { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.ac-actions .btn svg { width: 16px; height: 16px; }
@media (max-width: 980px) { .assistant-card { max-width: 100%; margin: 0 auto; } }

/* ---------- AI asszisztens panel (teljes szélességű blokk) ---------- */
.ai-card { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; border: 1px solid var(--border); border-radius: var(--r-2xl); padding: 52px;
  background: linear-gradient(135deg, oklch(0.94 0.06 150) 0%, oklch(0.97 0.03 165) 30%, oklch(0.985 0.015 270) 58%, oklch(0.95 0.05 150) 100%);
  background-size: 220% 220%;
  animation: ai-bg-drift 16s ease-in-out infinite;
}
@keyframes ai-bg-drift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@media (prefers-reduced-motion: reduce) { .ai-card { animation: none; } }
.ai-card .eyebrow { display: inline-flex; align-items: center; gap: 8px; }
.ai-card .eyebrow svg { width: 18px; height: 18px; }
.ai-card h2 { margin-top: 14px; }
.ai-checks { list-style: none; margin: 28px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 16px 26px; }
.ai-checks li { display: flex; align-items: flex-start; gap: 11px; font-size: 15px; line-height: 1.4; color: var(--fg-2); font-weight: 500; }
.ai-mock { background: #fff; border: 1px solid var(--border); border-radius: var(--r-xl); box-shadow: var(--shadow-lg); overflow: hidden; }
.ai-mock-bar { display: flex; gap: 7px; padding: 14px 16px; border-bottom: 1px solid var(--border); }
.ai-mock-bar span { width: 11px; height: 11px; border-radius: 50%; background: var(--border-2); }
.ai-mock-body { min-height: 310px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; padding: 40px; text-align: center; }
.ai-bot { width: 66px; height: 66px; border-radius: var(--r-lg); background: var(--primary-soft); color: var(--primary-strong); display: inline-flex; align-items: center; justify-content: center; }
.ai-bot svg { width: 30px; height: 30px; }
.ai-mock-body p { margin: 0; color: var(--muted-fg); font-size: 15px; max-width: 280px; }
@media (max-width: 900px) {
  .ai-card { grid-template-columns: 1fr; gap: 32px; padding: 32px; }
  .ai-checks { grid-template-columns: 1fr; }
}

/* ---------- Pipeline board (nagy, hero alatt) ---------- */
/* ---------- Pipeline board (lebegő rátét a hero képen) ---------- */
.pb-float { position: absolute; left: -72px; bottom: -34px; width: 600px; transform: scale(0.58); transform-origin: bottom left; z-index: 5; }
.pb-float .pb-board { box-shadow: var(--shadow-lg); }
@media (max-width: 980px) {
  .pb-float { position: static; transform: none; width: 100%; margin-top: 26px; }
}
.pb-board { background: #fff; border: 1px solid var(--border); border-radius: var(--r-2xl); box-shadow: var(--shadow-lg); overflow: hidden; }
.pb-bar { display: flex; align-items: center; gap: 9px; padding: 18px 26px; border-bottom: 1px solid var(--border); }
.pb-dot { width: 13px; height: 13px; border-radius: 50%; flex: 0 0 auto; }
.pb-url { margin-left: auto; font-family: var(--font-mono, ui-monospace, "SF Mono", Menlo, monospace); font-size: 16px; color: var(--muted-fg); letter-spacing: -0.01em; }
.pb-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; padding: 28px; }
.pb-col-head { display: flex; align-items: center; justify-content: space-between; padding: 4px 4px 14px; border-bottom: 1px solid var(--border); margin-bottom: 16px; }
.pb-name { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--fg); }
.pb-cdot { width: 11px; height: 11px; border-radius: 50%; }
.pb-count { font-size: 17px; font-weight: 600; color: var(--muted-fg); }
.pb-deals { display: flex; flex-direction: column; gap: 16px; }
.pb-deal { background: var(--surface); border-left: 5px solid var(--primary); border-radius: var(--r-lg); padding: 16px 18px; transition: box-shadow var(--dur), transform var(--dur); }
.pb-deal:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.pb-deal-name { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--fg); line-height: 1.2; }
.pb-deal-meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 12px; }
.pb-amt { font-size: 15px; color: var(--muted-fg); }
.pb-code { font-size: 14px; color: var(--muted-fg); font-weight: 500; }
@media (max-width: 880px) {
  .pb-cols { grid-template-columns: 1fr 1fr; gap: 16px; padding: 18px; }
  .pb-url { font-size: 13px; }
}
@media (max-width: 520px) {
  .pb-cols { grid-template-columns: 1fr; }
}

/* ---------- Pipeline mock ---------- */
.pipeline { background: #fff; border-radius: var(--r-xl); box-shadow: var(--shadow-lg); overflow: hidden; border: 1px solid var(--border); }
.pipeline-bar { display: flex; align-items: center; gap: 8px; padding: 13px 16px; border-bottom: 1px solid var(--border); background: var(--surface); }
.pipeline-bar .dot { width: 10px; height: 10px; border-radius: 50%; }
.pipeline-bar .title { margin-left: 8px; font-size: 13px; font-weight: 600; color: var(--fg); }
.pipeline-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 14px; background: var(--surface); }
.pl-col { background: #fff; border: 1px solid var(--border); border-radius: var(--r-md); padding: 10px; min-height: 230px; }
.pl-col-h { display: flex; align-items: center; justify-content: space-between; font-size: 11.5px; font-weight: 700; color: var(--muted-fg); text-transform: uppercase; letter-spacing: 0.04em; padding: 2px 2px 10px; }
.pl-deal { background: var(--bg); border: 1px solid var(--border); border-left: 3px solid var(--primary); border-radius: var(--r-sm); padding: 9px 10px; margin-bottom: 8px; transition: box-shadow var(--dur); }
.pl-deal:hover { box-shadow: var(--shadow-sm); }
.pl-deal .pn { font-size: 12.5px; font-weight: 600; color: var(--fg); }
.pl-deal .pv { font-size: 11.5px; color: var(--muted-fg); margin-top: 3px; display: flex; align-items: center; gap: 5px; }
.pl-deal .av { width: 16px; height: 16px; border-radius: 50%; background: var(--primary-soft); display: inline-block; }

/* ---------- Logo strip ---------- */
.logostrip { padding: 44px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.logostrip .label { text-align: center; font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-fg); margin-bottom: 28px; }
.marquee { position: relative; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
}
.marquee-track { display: flex; width: max-content; animation: marquee-scroll 38s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-group { display: flex; align-items: center; gap: 72px; padding-right: 72px; margin: 0; list-style: none; }
@keyframes marquee-scroll { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }
.logostrip .name { font-family: var(--font-display); font-size: 21px; font-weight: 700; color: var(--muted-fg); opacity: 0.62; letter-spacing: -0.02em; white-space: nowrap; transition: opacity var(--dur); }
.logostrip .name:hover { opacity: 1; }

/* ---------- Sustainability ---------- */
.eco { position: relative; overflow: hidden; text-align: center; background: #ffffff; }
.eco::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 62%;
  background: url("forest-silhouette.svg") center bottom / cover no-repeat;
  opacity: 0.13; pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 55%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 55%);
}
.eco-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.eco .eyebrow { margin-bottom: 16px; }
.eco h2 { margin-bottom: 20px; }
.eco h2 sub { font-size: 0.6em; font-weight: inherit; }
.eco .lead { max-width: 680px; margin: 0 auto 38px; }
.eco-badges { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px; margin-bottom: 40px; }
.eco-badge { display: inline-flex; align-items: center; gap: 11px; background: #fff; border: 1px solid var(--border); border-radius: var(--r-pill); padding: 8px 19px 8px 8px; font-size: 14.5px; font-weight: 600; color: var(--fg); box-shadow: var(--shadow-sm); transition: box-shadow var(--dur) var(--ease-out), transform var(--dur) var(--ease-out); }
.eco-badge:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.eco-badge .icon-tile { width: 34px; height: 34px; border-radius: 9px; }
.eco-badge .icon-tile svg { width: 18px; height: 18px; }
.eco .btn-outline { background: #fff; }
.eco .btn-outline:hover { background: var(--primary-soft); box-shadow: inset 0 0 0 1.5px var(--primary); }

/* ---------- Stats band ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.stat .val { font-family: var(--font-display); font-weight: 700; font-size: clamp(36px, 4vw, 52px); color: var(--primary-deep); line-height: 1; letter-spacing: -0.03em; }
.stat .lab { margin-top: 10px; font-size: 14.5px; font-weight: 500; color: var(--primary-deep); }

/* ---------- Feature list rows ---------- */
.feat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.feat-row > * { min-width: 0; }
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; }
@media (max-width: 860px) { .contact-layout { grid-template-columns: 1fr; gap: 28px; } }
.feat-row.flip .feat-visual { order: -1; }
.feat-list { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.feat-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; color: var(--fg-2); }
.feat-list .ck { width: 22px; height: 22px; border-radius: 50%; background: var(--primary-soft); color: var(--primary-strong); display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; margin-top: 1px; }
.feat-list .ck svg { width: 14px; height: 14px; }

/* ---------- Window placeholder visual ---------- */
.win-mock { background: #fff; border: 1px solid var(--border); border-radius: var(--r-2xl); box-shadow: var(--shadow-lg); overflow: hidden; }
.win-bar { display: flex; align-items: center; gap: 8px; padding: 16px 20px; border-bottom: 1px solid var(--border); }
.win-bar span { width: 11px; height: 11px; border-radius: 50%; background: var(--border-2); flex: 0 0 auto; }
.win-body { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; min-height: 320px; padding: 48px 32px; background: linear-gradient(180deg, oklch(0.985 0.01 150) 0%, #ffffff 60%); }
.win-icon { width: 72px; height: 72px; border-radius: 18px; }
.win-icon svg { width: 34px; height: 34px; }
.win-label { margin: 0; font-size: 16px; color: var(--muted-fg); text-align: center; }
.feat-img { width: 100%; height: auto; display: block; border: 1px solid var(--border); border-radius: var(--r-2xl); box-shadow: var(--shadow-lg); }

/* ---------- Animated automation flow ---------- */
.flow-canvas { width: 100%; background: var(--bg-2, #f7f8fa); border: 1px solid var(--border); border-radius: var(--r-2xl); box-shadow: var(--shadow-lg); padding: 20px 18px; display: flex; flex-direction: column; align-items: center; }

/* AI prompt panel */
.flow-ai { width: 100%; border: 1px solid oklch(0.9 0.04 290); border-radius: var(--r-xl, 16px); padding: 15px 15px 13px; margin-bottom: 18px; background: linear-gradient(135deg, oklch(0.96 0.03 295) 0%, oklch(0.975 0.018 270) 45%, oklch(0.96 0.035 165) 100%); }
.flow-ai-head { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.flow-ai-icon { width: 34px; height: 34px; border-radius: 10px; flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center; color: #fff; background: linear-gradient(140deg, #7c6cf5 0%, #4f8df5 100%); box-shadow: 0 5px 12px oklch(0.62 0.2 285 / 0.32); }
.flow-ai-icon svg { width: 18px; height: 18px; }
.flow-ai-title { font-family: var(--font-display); font-size: 15px; font-weight: 800; color: #6a4fe0; letter-spacing: -0.01em; }
.flow-ai-sub { font-size: 11.5px; color: var(--muted-fg); margin-top: 2px; }
.flow-ai-input { position: relative; background: #fff; border: 1px solid oklch(0.88 0.05 290); border-radius: 10px; padding: 10px 12px; min-height: 48px; font-size: 12.5px; line-height: 1.5; }
.flow-ai-sizer { visibility: hidden; }
.flow-ai-layer { position: absolute; top: 10px; left: 12px; right: 12px; }
.flow-ai-ph { color: var(--muted-fg); }
.flow-ai-text { color: var(--fg); }
.flow-caret { display: inline-block; width: 2px; height: 1.05em; background: #6a4fe0; margin-left: 1px; vertical-align: -2px; animation: flow-blink 1s steps(1) infinite; }
@keyframes flow-blink { 50% { opacity: 0; } }
.flow-ai-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 11px; }
.flow-ai-chip { display: inline-flex; align-items: center; gap: 5px; background: #fff; border: 1px solid oklch(0.85 0.06 290); border-radius: var(--r-pill, 999px); padding: 5px 10px; font-size: 11.5px; font-weight: 700; color: #6a4fe0; }
.flow-ai-chip svg { width: 13px; height: 13px; }
.flow-ai-chip svg:last-child { color: var(--muted-fg); }
.flow-ai-btn { display: inline-flex; align-items: center; gap: 6px; background: var(--primary); color: #fff; border-radius: var(--r-md, 8px); padding: 8px 13px; font-size: 12px; font-weight: 700; box-shadow: var(--shadow-sm); transition: background var(--dur) var(--ease-out); }
.flow-ai-btn.loading { background: var(--primary-hover, #017737); }
.flow-ai-btn svg { width: 14px; height: 14px; }
.flow-ai-btn.loading svg { animation: flow-spin 0.9s linear infinite; }
@keyframes flow-spin { to { transform: rotate(360deg); } }

.flow-pill, .flow-step, .flow-conn, .flow-flag { opacity: 0; transform: translateY(8px); transition: opacity .42s var(--ease-out), transform .42s var(--ease-out); }
.flow-pill.in, .flow-step.in, .flow-conn.in, .flow-flag.in { opacity: 1; transform: translateY(0); }
.flow-pill { display: inline-flex; align-items: center; gap: 7px; background: #fff; border: 1px solid var(--border); border-radius: var(--r-pill, 999px); box-shadow: var(--shadow-sm); padding: 7px 13px; font-size: 12.5px; font-weight: 600; color: var(--fg); }
.flow-pill svg { width: 15px; height: 15px; color: var(--muted-fg); }
.flow-step { position: relative; width: 100%; background: #fff; border: 1px solid var(--border); border-radius: var(--r-xl, 16px); box-shadow: var(--shadow-sm); padding: 14px 16px; display: flex; align-items: center; gap: 12px; }
.flow-num { position: absolute; top: -9px; left: -7px; min-width: 21px; height: 21px; padding: 0 5px; background: #fff; border: 1px solid var(--border); border-radius: 6px; box-shadow: var(--shadow-xs, 0 1px 2px rgba(0,0,0,.05)); display: inline-flex; align-items: center; justify-content: center; font-size: 11.5px; font-weight: 700; color: var(--fg-2); }
.flow-tile { width: 36px; height: 36px; border-radius: 9px; background: var(--bg-2, #f1f2f4); color: var(--ink, #404346); display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.flow-tile svg { width: 18px; height: 18px; }
.flow-text { flex: 1 1 auto; min-width: 0; }
.flow-eyebrow { font-size: 10.5px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--muted-fg); }
.flow-title { font-size: 14px; font-weight: 700; color: var(--fg); margin-top: 2px; }
.flow-trash { color: var(--muted-fg); display: inline-flex; flex: 0 0 auto; }
.flow-trash svg { width: 16px; height: 16px; }
.flow-conn { position: relative; height: 36px; display: flex; align-items: center; justify-content: center; }
.flow-conn::before { content: ""; position: absolute; top: 0; bottom: 0; width: 1.5px; background: var(--border-2, #e1e3e7); }
.flow-plus { position: relative; width: 28px; height: 28px; border-radius: 50%; background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-xs, 0 1px 2px rgba(0,0,0,.05)); display: inline-flex; align-items: center; justify-content: center; color: var(--muted-fg); }
.flow-plus svg { width: 14px; height: 14px; }
.flow-flag { width: 34px; height: 34px; border-radius: 50%; background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-sm); display: inline-flex; align-items: center; justify-content: center; color: var(--muted-fg); }
.flow-flag svg { width: 16px; height: 16px; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--primary-soft); border-radius: var(--r-2xl); padding: 64px 48px; text-align: center; position: relative; overflow: hidden; }
.cta-band h2 { margin-bottom: 14px; }
.cta-band p { font-size: 18px; color: var(--primary-deep); margin: 0 auto 28px; max-width: 520px; }
.cta-band .micro { margin-top: 18px; font-size: 14px; color: var(--primary-deep); opacity: 0.8; }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 4px; font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--fg); }
.faq-q .chev { width: 34px; height: 34px; border-radius: 50%; background: var(--surface); display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; transition: transform var(--dur), background var(--dur); }
.faq-q .chev svg { width: 18px; height: 18px; color: var(--fg-2); }
.faq-item.open .faq-q .chev { transform: rotate(180deg); background: var(--primary-soft); }
.faq-item.open .faq-q .chev svg { color: var(--primary-strong); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height 320ms var(--ease-out); }
.faq-a .inner { padding: 0 4px 24px; font-size: 15.5px; line-height: 1.65; color: var(--muted-fg); max-width: 90%; }

/* ---------- Pricing ---------- */
.price-toggle { display: inline-flex; flex-wrap: wrap; align-items: center; gap: 14px; justify-content: center; margin: 0 auto 44px; font-size: 15px; font-weight: 600; }
.help-cta-btns { display: inline-grid; grid-template-columns: 1fr 1fr; align-items: stretch; gap: 14px; max-width: 100%; }
@media (max-width: 560px) { .help-cta-btns { display: grid; grid-template-columns: 1fr; width: 100%; } }
.switch { width: 52px; height: 30px; border-radius: 999px; background: var(--primary); position: relative; cursor: pointer; border: none; transition: background var(--dur); }
.switch .knob { position: absolute; top: 3px; left: 3px; width: 24px; height: 24px; border-radius: 50%; background: #fff; transition: transform var(--dur) var(--ease-out); box-shadow: var(--shadow-sm); }
.switch.annual .knob { transform: translateX(22px); }
.switch.monthly { background: var(--border-2); }
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: start; }
.price-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-xl); padding: 28px 24px; display: flex; flex-direction: column; }
@property --pd-angle { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
.price-card.featured {
  border: 2px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    conic-gradient(from var(--pd-angle), var(--primary), oklch(0.8 0.13 150), #6961f2, var(--primary)) border-box;
  box-shadow: var(--shadow-md); position: relative;
  animation: pd-border-spin 5s linear infinite;
}
@keyframes pd-border-spin { to { --pd-angle: 360deg; } }
@media (prefers-reduced-motion: reduce) { .price-card.featured { animation: none; } }
.price-card .pop { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); }
.price-card .plan { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--fg); }
.price-card .ai { font-size: 13px; font-weight: 600; color: var(--primary-strong); margin-top: 4px; display: flex; align-items: center; gap: 5px; }
.price-card .desc { font-size: 13.5px; color: var(--muted-fg); margin: 14px 0 20px; min-height: 56px; line-height: 1.45; }
.price-card .amount { font-family: var(--font-display); font-size: 44px; font-weight: 700; color: var(--fg); letter-spacing: -0.03em; line-height: 1; }
.price-card .per { font-size: 13px; color: var(--muted-fg); margin: 10px 0 20px; }
.price-card .feats { display: flex; flex-direction: column; gap: 11px; margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--border); }
.price-card .feats .ftitle { font-size: 13px; font-weight: 700; color: var(--fg); margin-bottom: 2px; }
.price-card .feats li { display: flex; gap: 9px; font-size: 13.5px; color: var(--fg-2); line-height: 1.4; }
.price-card .feats li svg { width: 17px; height: 17px; color: var(--primary); flex: 0 0 auto; margin-top: 1px; }

/* comparison table */
.cmp-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.cmp-table th, .cmp-table td { padding: 16px 18px; text-align: center; border-bottom: 1px solid var(--border); }
.cmp-table th:first-child, .cmp-table td:first-child { text-align: left; }
.cmp-table thead th { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--fg); }
.cmp-table .grouprow td { background: var(--surface); font-weight: 700; color: var(--fg); text-align: left; }
.cmp-table td.feat { color: var(--fg-2); }
.cmp-table .yes { color: var(--primary); }
.cmp-table .no { color: var(--border-2); }

/* ---------- Forms ---------- */
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.field label { font-size: 14px; font-weight: 600; color: var(--fg); }
.field input, .field textarea, .field select {
  font-family: var(--font); font-size: 15px; color: var(--fg);
  padding: 12px 14px; border: 1.5px solid var(--border); border-radius: var(--r-md);
  background: #fff; transition: border-color var(--dur), box-shadow var(--dur); width: 100%;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-soft); }
.field textarea { resize: vertical; min-height: 130px; }

/* ---------- Misc ---------- */
.pagehero { padding: 72px 0 56px; text-align: center; }
.pagehero .container-narrow > .lead { margin: 18px auto 0; }
.divider { height: 1px; background: var(--border); border: none; margin: 0; }
.tag { display: inline-block; font-size: 12.5px; font-weight: 700; color: var(--primary-strong); background: var(--primary-soft); padding: 4px 11px; border-radius: var(--r-pill); }
.soon-badge {
  display: inline-flex; align-items: center;
  font-family: var(--font); font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--primary-deep); background: var(--primary-soft);
  padding: 3px 8px; border-radius: var(--r-pill);
  line-height: 1; white-space: nowrap; vertical-align: middle;
}
.footer-col .soon-badge { margin-left: 8px; }

/* entrance animation */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(14px); transition: opacity 520ms var(--ease-out), transform 520ms var(--ease-out); }
  .reveal.in { opacity: 1; transform: none; }
}

/* orbit connection lines: dotted, flowing toward the Flowdeal logo */
.orbit-line {
  stroke-dasharray: 1.5 7;
  stroke-dashoffset: 0;
  opacity: .55;
  animation: orbitFlow 1.1s linear infinite;
}
@keyframes orbitFlow {
  to { stroke-dashoffset: -17; }
}
@media (prefers-reduced-motion: reduce) {
  .orbit-line { animation: none; }
}

/* ---------- Űrlap mezők (általános) ---------- */
.fld { display: flex; flex-direction: column; gap: 7px; }
.fld label { font-size: 14px; font-weight: 600; color: var(--fg); }
.fld label .req { color: var(--destructive); }
.fld input, .fld select, .fld textarea { font-family: var(--font); font-size: 15px; padding: 12px 14px; border: 1.5px solid var(--border-2); border-radius: var(--r-md); background: #fff; color: var(--fg); width: 100%; }
.fld input::placeholder, .fld textarea::placeholder { color: var(--muted-fg); }
.fld input:focus, .fld select:focus, .fld textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px var(--primary-soft); }
.fld textarea { resize: vertical; min-height: 100px; line-height: 1.55; }
.fld-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .fld-row { grid-template-columns: 1fr; } }

/* Helyszámláló sáv (kompakt, széles) */
.live-spots { max-width: 940px; margin: 0 auto; display: flex; align-items: center; gap: 30px; background: #fff; border: 1px solid var(--border); border-radius: var(--r-xl); padding: 18px 28px; box-shadow: var(--shadow-sm); }
.spots-left { display: flex; align-items: center; gap: 14px; flex: 0 0 auto; }
.spots-num { font-family: var(--font-display); font-weight: 800; font-size: 46px; line-height: 1; color: var(--primary-strong); letter-spacing: -0.03em; }
.spots-left .lbl { display: flex; flex-direction: column; }
.spots-left .lbl strong { font-family: var(--font-display); font-size: 15px; color: var(--fg); line-height: 1.2; }
.spots-left .lbl span { font-size: 13px; color: var(--muted-fg); margin-top: 2px; }
.spots-prog { flex: 1; min-width: 0; }
.spots-bar { height: 10px; border-radius: var(--r-pill); background: var(--surface); overflow: hidden; margin: 0 0 8px; }
.spots-fill { height: 100%; border-radius: var(--r-pill); background: var(--primary); transition: width 1.1s var(--ease-out); }
.spots-prog .cap { font-size: 13px; font-weight: 600; color: var(--muted-fg); }
@media (max-width: 620px) {
  .live-spots { flex-direction: column; align-items: stretch; gap: 16px; padding: 20px; }
  .spots-num { font-size: 40px; }
}

/* ---------- Béta program ---------- */
.beta-offer { display: grid; grid-template-columns: 1fr 360px; gap: 48px; align-items: center; background: var(--ink); border-radius: var(--r-2xl); padding: 52px; box-shadow: var(--shadow-lg); }
.beta-offer h2 { color: #fff; font-size: clamp(26px, 3vw, 38px); margin: 12px 0 16px; }
.beta-offer .lead { color: rgba(255,255,255,0.74); }
.beta-offer .eyebrow { color: oklch(0.82 0.13 145); }
.beta-ticket { background: #fff; border-radius: var(--r-xl); padding: 28px; box-shadow: var(--shadow-lg); }
.beta-ticket .bt-plan { display: flex; align-items: center; justify-content: space-between; }
.beta-ticket .bt-plan strong { font-family: var(--font-display); font-size: 22px; color: var(--fg); }
.beta-ticket .bt-price { margin: 14px 0 6px; display: flex; align-items: baseline; gap: 8px; }
.beta-ticket .bt-old { font-size: 18px; color: var(--muted-fg); text-decoration: line-through; }
.beta-ticket .bt-free { font-family: var(--font-display); font-size: 32px; font-weight: 800; color: var(--primary-strong); letter-spacing: -0.02em; }
.beta-ticket ul { display: flex; flex-direction: column; gap: 10px; margin: 18px 0 0; }
.beta-ticket li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--fg-2); }
.beta-ticket li svg { width: 17px; height: 17px; color: var(--primary-strong); flex: 0 0 auto; margin-top: 2px; }
@media (max-width: 820px) { .beta-offer { grid-template-columns: 1fr; gap: 32px; padding: 36px 26px; } }

/* Hibabejelentő mock */
.bug-panel { border: 1px solid var(--border); border-radius: var(--r-xl); background: #fff; box-shadow: var(--shadow-lg); overflow: hidden; width: 100%; max-width: 520px; }
.bug-panel-bar { display: flex; align-items: center; gap: 10px; padding: 15px 20px; border-bottom: 1px solid var(--border); }
.bug-panel-bar .icon-tile { width: 34px; height: 34px; }
.bug-panel-bar strong { color: var(--fg); font-size: 15px; }
.bug-panel-body { padding: 20px; display: flex; flex-direction: column; gap: 16px; }
.sev-row { display: flex; gap: 8px; }
.sev { flex: 1; text-align: center; font-size: 13px; font-weight: 700; padding: 8px 6px; border-radius: var(--r-md); border: 1.5px solid var(--border); color: var(--muted-fg); cursor: default; }
.sev.low { border-color: var(--primary); background: var(--primary-soft); color: var(--primary-deep); }
.sev.mid { color: var(--warning-deep); }
.sev.crit { color: var(--destructive); }
.bug-drop { border: 1.5px dashed var(--border-2); border-radius: var(--r-md); padding: 18px; text-align: center; color: var(--muted-fg); font-size: 13.5px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.bug-drop svg { width: 17px; height: 17px; }

/* Hibabejelentő mock */
.bug-fakeinput { font-size: 15px; padding: 10px 14px; border: 1.5px solid var(--border-2); border-radius: var(--r-md); background: #fff; color: var(--fg); height: 64px; display: flex; align-items: center; line-height: 1.4; box-sizing: border-box; overflow: hidden; }
.bug-fakeinput.empty { color: var(--muted-fg); }
.type-caret::after { content: ''; display: inline-block; width: 2px; height: 1em; background: var(--primary); margin-left: 2px; vertical-align: -2px; animation: caretBlink 1s steps(1) infinite; }
@keyframes caretBlink { 50% { opacity: 0; } }
.sev.picked { border-color: var(--primary); background: var(--primary-soft); color: var(--primary-deep); }
.sev.justpicked { animation: sevPick 0.5s ease; }
@keyframes sevPick { 0% { transform: scale(1); } 42% { transform: scale(1.08); } 100% { transform: scale(1); } }
.bug-drop { position: relative; height: 64px; box-sizing: border-box; padding: 10px 16px; }
.bug-drop.attached { border-style: solid; border-color: var(--primary); background: var(--primary-soft); color: var(--primary-deep); justify-content: flex-start; gap: 12px; height: 64px; }
.shot-thumb { width: 46px; height: 34px; border-radius: 5px; background: #fff; border: 1px solid var(--border-2); flex: 0 0 auto; overflow: hidden; box-shadow: var(--shadow-xs); }
.shot-thumb .st-bar { height: 9px; background: var(--primary-soft); }
.shot-thumb .st-line { height: 3px; border-radius: 2px; background: var(--border-2); margin: 4px 5px 0; }
.shot-thumb .st-line.s { width: 55%; }
.shot-meta { text-align: left; line-height: 1.3; }
.shot-meta b { color: var(--primary-deep); font-size: 13.5px; font-weight: 600; display: block; }
.shot-meta span { color: var(--primary-strong); font-size: 12px; }
.bug-fly { position: absolute; left: 50%; top: 50%; display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--border); border-radius: var(--r-md); padding: 7px 12px 7px 7px; box-shadow: var(--shadow-lg); animation: shotFly 1s var(--ease-out) both; }
@keyframes shotFly {
  0% { transform: translate(80px, -80px) scale(0.8) rotate(-7deg); opacity: 0; }
  35% { opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1) rotate(0); opacity: 1; }
}
.spin { width: 15px; height: 15px; border: 2px solid rgba(255,255,255,0.45); border-top-color: #fff; border-radius: 50%; display: inline-block; animation: spin 0.7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.beta-form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-2xl); padding: 40px; box-shadow: var(--shadow-md); max-width: 760px; margin: 0 auto; }
.beta-success { text-align: center; padding: 24px 0; }
.beta-success .icon-tile { width: 64px; height: 64px; margin: 0 auto 20px; }
.beta-success .icon-tile svg { width: 32px; height: 32px; }

/* ---------- Jelentkezési modal (karrier) ---------- */
.apply-overlay { position: fixed; inset: 0; z-index: 1000; background: rgba(20,22,24,0.55); display: flex; align-items: flex-start; justify-content: center; padding: 5vh 20px 40px; overflow-y: auto; animation: apply-fade var(--dur-fast) var(--ease-out); }
@keyframes apply-fade { from { opacity: 0; } to { opacity: 1; } }
.apply-modal { position: relative; background: #fff; border-radius: var(--r-2xl); box-shadow: var(--shadow-lg); width: 100%; max-width: 620px; padding: 40px; animation: apply-rise var(--dur-base) var(--ease-out); }
@keyframes apply-rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.apply-close { position: absolute; top: 18px; right: 18px; width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--border); background: #fff; color: var(--muted-fg); display: inline-flex; align-items: center; justify-content: center; cursor: pointer; transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out); }
.apply-close:hover { background: var(--surface); color: var(--fg); }
.apply-close svg { width: 18px; height: 18px; }
.apply-head { margin-bottom: 24px; padding-right: 40px; }
.apply-file { display: flex; align-items: center; gap: 11px; border: 1.5px dashed var(--border-2); border-radius: var(--r-md); padding: 13px 16px; cursor: pointer; color: var(--muted-fg); font-size: 14.5px; transition: border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out); }
.apply-file:hover { border-color: var(--primary); background: var(--primary-soft); }
.apply-file input[type="file"] { display: none; }
.apply-file svg { width: 19px; height: 19px; flex: 0 0 auto; color: var(--primary-strong); }
.apply-success { text-align: center; padding: 12px 0; }
.apply-success .icon-tile { width: 60px; height: 60px; margin: 0 auto 18px; }
.apply-success .icon-tile svg { width: 30px; height: 30px; }
@media (max-width: 560px) { .apply-modal { padding: 30px 22px; } }

/* ---------- Rólunk · alapító idézet ---------- */
.founder-quote { display: grid; grid-template-columns: 200px 1fr; gap: 44px; align-items: center; background: var(--ink); border-radius: var(--r-2xl); padding: 52px; margin: 0 auto; max-width: 1000px; box-shadow: var(--shadow-lg); }
.fq-photo img { width: 200px; height: 220px; border-radius: var(--r-xl); object-fit: cover; display: block; }
.fq-body .qmark { width: 40px; height: 40px; color: var(--primary); }
.fq-body blockquote { margin: 14px 0 0; font-family: var(--font-display); font-weight: 600; font-size: clamp(20px, 2.2vw, 28px); line-height: 1.45; color: #fff; text-wrap: pretty; }
.fq-body figcaption { margin-top: 24px; display: flex; flex-direction: column; }
.fq-body figcaption strong { color: #fff; font-size: 16.5px; font-weight: 700; }
.fq-body figcaption span { color: rgba(255,255,255,0.6); font-size: 14px; margin-top: 3px; }
@media (max-width: 760px) {
  .founder-quote { grid-template-columns: 1fr; text-align: center; padding: 40px 26px; gap: 26px; }
  .fq-photo img { width: 150px; height: 165px; margin: 0 auto; }
  .fq-body .qmark { margin: 0 auto; }
  .fq-body figcaption { align-items: center; }
}

/* ---------- Tudásbázis: kategória + cikk ---------- */
.crumbs { display: flex; align-items: center; flex-wrap: wrap; gap: 7px; font-size: 13.5px; color: var(--muted-fg); margin-bottom: 24px; }
.crumbs a { color: var(--muted-fg); font-weight: 600; }
.crumbs a:hover { color: var(--primary-strong); }
.crumbs svg { width: 15px; height: 15px; opacity: 0.7; }
.crumbs span { color: var(--fg); font-weight: 600; }

.kb-cat-head, .kb-art-head { padding-top: 48px; padding-bottom: 24px; }
.kb-cat-head-row { display: flex; align-items: center; gap: 18px; }

.kb-art-list { display: flex; flex-direction: column; gap: 14px; max-width: 820px; margin: 0 auto; }
.kb-art-card { display: flex; align-items: center; gap: 20px; padding: 22px 26px; background: #fff; border: 1px solid var(--border); border-radius: var(--r-xl); text-decoration: none; box-shadow: var(--shadow-sm); }
.kb-art-num { width: 38px; height: 38px; border-radius: var(--r-pill); background: var(--primary-soft); color: var(--primary-deep); font-family: var(--font-display); font-weight: 700; font-size: 17px; display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.kb-art-card-body { flex: 1; min-width: 0; }
.kb-art-card-body h3 { margin: 0 0 5px; font-size: 18px; color: var(--fg); }
.kb-art-card-body p { margin: 0 0 9px; font-size: 14.5px; color: var(--muted-fg); line-height: 1.5; }
.kb-art-meta { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--primary-strong); }
.kb-art-meta svg { width: 14px; height: 14px; }
.kb-art-arrow { width: 19px; height: 19px; color: var(--muted-fg); flex: 0 0 auto; }
.kb-art-card:hover .kb-art-arrow { color: var(--primary-strong); }

.kb-art-headmeta { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 600; color: var(--muted-fg); margin: 16px 0 0; }
.kb-art-headmeta svg { width: 16px; height: 16px; }

.kb-doc-layout { display: grid; grid-template-columns: minmax(0,1fr) 300px; gap: 56px; align-items: start; }
.kb-doc-main { max-width: 720px; }
.kb-doc-block { margin-bottom: 32px; }
.kb-doc-block h2 { font-size: 23px; margin: 0 0 14px; }
.kb-h3 { font-size: 17px; margin: 20px 0 8px; }
.kb-doc-main p { font-size: 16.5px; color: var(--fg-2); line-height: 1.75; margin: 0 0 14px; }

.kb-ol { margin: 8px 0 16px; padding: 0; counter-reset: kb; display: flex; flex-direction: column; gap: 12px; }
.kb-ol li { position: relative; padding-left: 42px; font-size: 16px; color: var(--fg-2); line-height: 1.6; counter-increment: kb; }
.kb-ol li::before { content: counter(kb); position: absolute; left: 0; top: -1px; width: 28px; height: 28px; border-radius: var(--r-pill); background: var(--primary); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 14px; display: inline-flex; align-items: center; justify-content: center; }
.kb-ul { display: flex; flex-direction: column; gap: 10px; margin: 6px 0 16px; }
.kb-ul li { display: flex; gap: 11px; align-items: flex-start; font-size: 16px; color: var(--fg-2); line-height: 1.6; }
.kb-ul li svg { width: 18px; height: 18px; color: var(--primary-strong); flex: 0 0 auto; margin-top: 3px; }

.kb-callout { display: flex; gap: 13px; align-items: flex-start; border-radius: var(--r-lg); padding: 16px 18px; margin: 16px 0 20px; }
.kb-callout strong { display: block; font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.kb-callout p { margin: 0; font-size: 15px; line-height: 1.55; }
.kb-callout-ic { width: 32px; height: 32px; border-radius: 9px; display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.kb-callout-ic svg { width: 18px; height: 18px; }
.kb-tip { background: var(--primary-soft); }
.kb-tip .kb-callout-ic { background: var(--primary); color: #fff; }
.kb-tip strong { color: var(--primary-deep); }
.kb-tip p { color: var(--primary-deep); }
.kb-note { background: var(--warning-soft); }
.kb-note .kb-callout-ic { background: var(--warning); color: #fff; }
.kb-note strong, .kb-note p { color: var(--warning-deep); }

.kb-helpful { margin-top: 40px; padding: 22px 24px; background: var(--surface); border-radius: var(--r-lg); display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.kb-helpful > span { font-weight: 600; color: var(--fg); }
.kb-helpful-btns { display: flex; gap: 10px; }
.kb-helpful-btns .btn svg { width: 16px; height: 16px; }

.kb-prevnext { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.kb-pn { display: flex; flex-direction: column; gap: 6px; padding: 18px 20px; border: 1px solid var(--border); border-radius: var(--r-lg); text-decoration: none; }
.kb-pn:hover { border-color: var(--border-2); box-shadow: var(--shadow-sm); }
.kb-pn-next { text-align: right; align-items: flex-end; }
.kb-pn-lab { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--primary-strong); }
.kb-pn-lab svg { width: 15px; height: 15px; }
.kb-pn-t { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--fg); line-height: 1.35; }

.kb-doc-side { position: sticky; top: 88px; }
.kb-doc-toc { border: 1px solid var(--border); border-radius: var(--r-xl); padding: 20px; background: #fff; }
.kb-doc-toc-h { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted-fg); margin: 0 0 12px; }
.kb-doc-toc nav { display: flex; flex-direction: column; gap: 2px; }
.kb-doc-toc nav a { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--fg-2); padding: 8px 10px; border-radius: var(--r-md); line-height: 1.4; }
.kb-doc-toc nav a:hover { background: var(--surface); color: var(--fg); }
.kb-doc-toc nav a.active { background: var(--primary-soft); color: var(--primary-deep); font-weight: 700; }
.kb-toc-num { width: 20px; height: 20px; border-radius: var(--r-pill); background: var(--surface); color: var(--muted-fg); font-size: 11.5px; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; margin-top: 1px; }
.kb-doc-toc nav a.active .kb-toc-num { background: var(--primary); color: #fff; }

@media (max-width: 980px) {
  .kb-doc-layout { grid-template-columns: 1fr; gap: 36px; }
  .kb-doc-side { position: static; order: -1; }
  .kb-doc-main { max-width: none; }
}
@media (max-width: 600px) {
  .kb-cat-head-row { flex-direction: column; align-items: flex-start; gap: 14px; }
  .kb-prevnext { grid-template-columns: 1fr; }
  .kb-art-card { padding: 18px 18px; gap: 14px; }
}

/* ---------- Forrás oldalak (Tudásbázis / Súgóközpont) ---------- */
.res-hero { padding: 64px 0 8px; text-align: center; }
.res-search { position: relative; max-width: 560px; margin: 26px auto 0; }
.res-search svg.s-ic { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; color: var(--muted-fg); pointer-events: none; }
.res-search input { width: 100%; font-family: var(--font); font-size: 16px; padding: 16px 18px 16px 50px; border: 1.5px solid var(--border-2); border-radius: var(--r-pill); background: #fff; box-shadow: var(--shadow-sm); color: var(--fg); }
.res-search input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px var(--primary-soft); }
.res-search input::placeholder { color: var(--muted-fg); }

.kb-cat { display: block; text-decoration: none; }
.kb-cat .icon-tile { width: 46px; height: 46px; }
.kb-cat h3 { margin: 16px 0 6px; font-size: 18px; color: var(--fg); }
.kb-cat p { margin: 0 0 12px; font-size: 14.5px; color: var(--muted-fg); line-height: 1.55; }
.kb-cat .kb-count { font-size: 13px; font-weight: 700; color: var(--primary-strong); display: inline-flex; align-items: center; gap: 6px; }
.kb-cat .kb-count svg { width: 15px; height: 15px; transition: transform var(--dur) var(--ease-out); }
.kb-cat:hover .kb-count svg { transform: translateX(3px); }

.res-articles { display: flex; flex-direction: column; max-width: 760px; margin: 0 auto; border: 1px solid var(--border); border-radius: var(--r-xl); overflow: hidden; background: #fff; }
.res-article { display: flex; align-items: center; gap: 14px; padding: 17px 22px; border-bottom: 1px solid var(--border); text-decoration: none; color: var(--fg); }
.res-article:last-child { border-bottom: none; }
.res-article:hover { background: var(--surface); }
.res-article .ra-ic { width: 34px; height: 34px; border-radius: 9px; background: var(--primary-soft); color: var(--primary-strong); display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.res-article .ra-ic svg { width: 17px; height: 17px; }
.res-article .ra-t { flex: 1; font-weight: 600; font-size: 15.5px; }
.res-article .ra-cat { font-size: 12.5px; font-weight: 600; color: var(--muted-fg); white-space: nowrap; }
.res-article > svg.ra-arrow { width: 18px; height: 18px; color: var(--muted-fg); flex: 0 0 auto; }
.res-empty { text-align: center; color: var(--muted-fg); padding: 40px 0; }

.help-channel { text-align: center; text-decoration: none; display: flex; flex-direction: column; align-items: center; }
.help-channel .icon-tile { width: 52px; height: 52px; }
.help-channel h3 { margin: 16px 0 6px; font-size: 18px; color: var(--fg); }
.help-channel p { margin: 0; font-size: 14px; color: var(--muted-fg); }
.help-channel .hc-meta { margin-top: 12px; font-size: 13px; font-weight: 700; color: var(--primary-strong); }

/* ---------- Megoldás oldalak ---------- */
.sol-subnav { border-bottom: 1px solid var(--border); background: var(--bg); position: sticky; top: 68px; z-index: 20; }
.sol-subnav-row { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; padding: 10px 0; }
.sol-subnav-row a { font-size: 14.5px; font-weight: 600; color: var(--fg-2); padding: 8px 16px; border-radius: var(--r-pill); }
.sol-subnav-row a:hover { background: var(--surface); color: var(--primary-strong); }
.sol-subnav-row a.active { background: var(--primary-soft); color: var(--primary-deep); }

.sol-quote { margin: 0; text-align: center; max-width: 720px; margin-inline: auto; }
.sol-quote svg { width: 38px; height: 38px; color: var(--primary); opacity: 0.5; }
.sol-quote blockquote { margin: 18px 0 0; font-family: var(--font-display); font-weight: 600; font-size: clamp(20px, 2.4vw, 28px); line-height: 1.4; color: var(--fg); text-wrap: balance; }
.sol-quote figcaption { margin-top: 18px; font-size: 14.5px; font-weight: 600; color: var(--muted-fg); }

/* ---------- Jogi oldalak ---------- */
.legal-head { padding-top: 56px; padding-bottom: 24px; }
.legal-updated { display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 600; color: var(--muted-fg); margin: 16px 0 0; }
.legal-updated svg { width: 16px; height: 16px; }
.legal-note { display: flex; gap: 12px; align-items: flex-start; background: var(--warning-soft); border-radius: var(--r-lg); padding: 16px 18px; margin-bottom: 40px; max-width: 920px; }
.legal-note svg { width: 20px; height: 20px; color: var(--warning-deep); flex: 0 0 auto; margin-top: 1px; }
.legal-note span { font-size: 14px; color: var(--warning-deep); line-height: 1.5; }

.legal-layout { display: grid; grid-template-columns: minmax(0,1fr) 260px; gap: 56px; align-items: start; }
.legal-layout > *, .job-layout > *, .kb-doc-layout > * { min-width: 0; }
.legal-main { max-width: 720px; }
.legal-block { margin-bottom: 40px; scroll-margin-top: 96px; }
.legal-block:last-child { margin-bottom: 0; }
.legal-block h2 { font-size: 23px; margin: 0 0 16px; }
.legal-h3 { font-size: 17px; margin: 22px 0 8px; }
.legal-main p { font-size: 16px; color: var(--fg-2); line-height: 1.7; margin: 0 0 14px; }

.legal-ul { display: flex; flex-direction: column; gap: 11px; margin: 4px 0 16px; }
.legal-ul li { display: flex; gap: 11px; align-items: flex-start; font-size: 16px; color: var(--fg-2); line-height: 1.6; }
.legal-ul li svg { width: 18px; height: 18px; color: var(--primary-strong); flex: 0 0 auto; margin-top: 3px; }

.legal-dl { margin: 6px 0 8px; border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
.legal-dl-row { display: grid; grid-template-columns: 220px 1fr; gap: 16px; padding: 14px 18px; border-bottom: 1px solid var(--border); }
.legal-dl-row:last-child { border-bottom: none; }
.legal-dl-row:nth-child(even) { background: var(--surface); }
.legal-dl dt { font-weight: 600; color: var(--muted-fg); font-size: 14.5px; }
.legal-dl dd { margin: 0; font-weight: 600; color: var(--fg); font-size: 15px; }

.legal-table-wrap { overflow-x: auto; margin: 6px 0 10px; border: 1px solid var(--border); border-radius: var(--r-lg); }
.legal-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.legal-table th { text-align: left; background: var(--surface); color: var(--fg); font-weight: 700; padding: 12px 16px; white-space: nowrap; }
.legal-table td { padding: 12px 16px; border-top: 1px solid var(--border); color: var(--fg-2); vertical-align: top; }

.legal-side { position: sticky; top: 88px; }
.legal-toc { border-left: 2px solid var(--border); padding-left: 20px; }
.legal-toc-h { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted-fg); margin: 0 0 10px; }
.legal-toc nav { display: flex; flex-direction: column; gap: 2px; }
.legal-toc nav a { font-size: 14px; color: var(--fg-2); padding: 5px 0; line-height: 1.4; }
.legal-toc nav a:hover { color: var(--primary-strong); }
.legal-toc nav a.active { color: var(--primary-strong); font-weight: 700; }

@media (max-width: 960px) {
  .legal-layout { grid-template-columns: 1fr; gap: 36px; }
  .legal-side { position: static; order: -1; }
  .legal-toc { border-left: none; border-top: 1px solid var(--border); padding-left: 0; padding-top: 18px; }
  .legal-main { max-width: none; }
}
@media (max-width: 560px) {
  .legal-dl-row { grid-template-columns: 1fr; gap: 3px; }
}

/* ---------- Karrier · állás aloldal ---------- */
.job-head { padding-top: 56px; padding-bottom: 32px; }
.job-back { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; font-size: 14.5px; color: var(--muted-fg); margin-bottom: 26px; }
.job-back:hover { color: var(--primary-strong); }
.job-back svg { width: 17px; height: 17px; }
.job-head-row { display: flex; align-items: center; gap: 18px; }
.job-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }

.job-layout { display: grid; grid-template-columns: minmax(0,1fr) 340px; gap: 56px; align-items: start; }
.job-main { max-width: 680px; }
.job-block { margin-bottom: 44px; }
.job-block:last-child { margin-bottom: 0; }
.job-block h2 { font-size: 24px; margin: 0 0 18px; }

.job-callout { display: flex; gap: 14px; align-items: flex-start; background: var(--primary-soft); border-radius: var(--r-lg); padding: 20px 22px; margin-top: 22px; }
.job-callout svg { width: 22px; height: 22px; color: var(--primary-strong); flex: 0 0 auto; margin-top: 2px; }
.job-callout p { margin: 0; font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--primary-deep); line-height: 1.5; }

.job-check { display: flex; flex-direction: column; gap: 14px; }
.job-check li { display: flex; gap: 13px; align-items: flex-start; font-size: 16px; color: var(--fg-2); line-height: 1.55; }
.job-check-ic { width: 24px; height: 24px; border-radius: var(--r-pill); display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; margin-top: 1px; }
.job-check-ic svg { width: 14px; height: 14px; }
.job-check-ic.green { background: var(--primary-soft); color: var(--primary-strong); }
.job-check-ic.purple { background: oklch(0.93 0.045 288); color: oklch(0.52 0.19 285); }
.job-check-ic.amber { background: var(--warning-soft); color: var(--warning-deep); }

.job-side { position: sticky; top: 88px; }
.job-side-card { padding: 26px; }
.job-facts { margin: 18px 0 22px; display: flex; flex-direction: column; gap: 16px; }
.job-fact { display: flex; gap: 13px; align-items: flex-start; }
.job-fact-ic { width: 34px; height: 34px; border-radius: 9px; background: var(--surface); color: var(--primary-strong); display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.job-fact-ic svg { width: 17px; height: 17px; }
.job-fact dt { font-size: 12.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted-fg); }
.job-fact dd { margin: 2px 0 0; font-size: 15px; font-weight: 600; color: var(--fg); line-height: 1.35; }

@media (max-width: 960px) {
  .job-layout { grid-template-columns: 1fr; gap: 40px; }
  .job-side { position: static; }
  .job-main { max-width: none; }
  .job-side-card { max-width: 480px; }
}
@media (max-width: 680px) {
  .job-head-row { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .feat-row { grid-template-columns: 1fr; gap: 36px; }
  .feat-row.flip .feat-visual { order: 0; }
}
@media (max-width: 680px) {
  .section { padding: 60px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .orbit-wrap { transform: scale(0.86); transform-origin: center; }
  .price-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: 48px 24px; }
  h1 { font-size: 34px; }
}

/* Blog article body — TipTap 'blog' render variant (DB-driven /blog/<slug>) */
.article-prose { max-width: 760px; margin: 0 auto; }
.article-prose > :first-child { margin-top: 0; }
.article-prose h2 { font-size: 26px; margin: 38px 0 14px; line-height: 1.25; }
.article-prose h3 { font-size: 20px; margin: 28px 0 10px; line-height: 1.3; }
.article-prose p { font-size: 17px; color: var(--fg-2); line-height: 1.8; margin: 0 0 18px; }
.article-prose ul, .article-prose ol { margin: 0 0 18px; padding-left: 24px; display: flex; flex-direction: column; gap: 8px; }
.article-prose li { font-size: 17px; color: var(--fg-2); line-height: 1.7; }
.article-prose a { color: var(--primary-strong); text-decoration: underline; text-underline-offset: 2px; }
.article-prose strong { color: var(--fg); }
.article-prose blockquote { margin: 24px 0; padding: 6px 0 6px 22px; border-left: 3px solid var(--primary); color: var(--fg); font-size: 18px; font-style: italic; }
.article-prose pre { background: var(--ink); color: #fff; padding: 18px 20px; border-radius: var(--r-lg); overflow: auto; margin: 0 0 18px; font-size: 14px; }
.article-prose code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.92em; }
.article-prose :not(pre) > code { background: var(--surface); padding: 2px 6px; border-radius: 6px; }
.article-prose .article-img, .article-prose .article-video { margin: 26px 0; }
.article-prose .article-img img { width: 100%; height: auto; border-radius: var(--r-lg); display: block; }
.article-prose .article-video { position: relative; aspect-ratio: 16 / 9; }
.article-prose .article-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; border-radius: var(--r-lg); }
.article-prose hr { border: 0; border-top: 1px solid var(--border); margin: 32px 0; }
.article-prose .kb-callout { margin: 24px 0; }
