/* =========================================================================
   SpinVault — valódi pénzes kaszinók 2026
   Stílusok: alaprendszer, kaszinó kártyák, elrendezés, komponensek
   ========================================================================= */

/* ---------- 1. Betűtípusok (self-hosted, változó tengelyű) ---------- */
@font-face {
  font-family: 'Bricolage Grotesque';
  src: url('../fonts/bricolage-var.woff2') format('woff2');
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter Var';
  src: url('../fonts/inter-var.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ---------- 2. Tokenek ---------- */
:root {
  --ink: #101a2c;
  --ink-2: #1e2c45;
  --slate: #5b6b85;
  --slate-2: #7f8ea6;
  --base: #f2f5fa;
  --base-2: #e9eefa;
  --surface: #ffffff;
  --line: #e1e8f2;
  --line-2: #eef2f8;

  --paprika: #e0402b;
  --paprika-d: #b52a19;
  --paprika-l: #fdece8;
  --jade: #12876a;
  --jade-l: #e2f2ed;
  --gold: #f2b33d;
  --gold-d: #a97400;
  --gold-l: #fdf3df;

  --shadow-s: 0 1px 2px rgba(16, 26, 44, .05), 0 2px 8px rgba(16, 26, 44, .05);
  --shadow-m: 0 2px 6px rgba(16, 26, 44, .05), 0 14px 32px rgba(16, 26, 44, .09);
  --shadow-l: 0 4px 10px rgba(16, 26, 44, .06), 0 26px 56px rgba(16, 26, 44, .14);

  --r-xs: 8px;
  --r-s: 12px;
  --r-m: 18px;
  --r-l: 26px;

  --wrap: 1260px;
  --head-h: 62px;

  --f-display: 'Bricolage Grotesque', 'Segoe UI', system-ui, sans-serif;
  --f-body: 'Inter Var', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}

/* ---------- 3. Alapok ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--base);
  color: var(--ink-2);
  font-family: var(--f-body);
  font-size: 1.0625rem;
  line-height: 1.72;
  font-feature-settings: 'kern' 1, 'liga' 1;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--paprika-d); }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--paprika);
  outline-offset: 3px;
  border-radius: 4px;
}

h1, h2, h3, h4 {
  font-family: var(--f-display);
  color: var(--ink);
  line-height: 1.14;
  letter-spacing: -.02em;
  margin: 0 0 .5em;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 1.25rem + 3.2vw, 3.35rem); letter-spacing: -.035em; }
h2 { font-size: clamp(1.5rem, 1.16rem + 1.5vw, 2.15rem); letter-spacing: -.028em; }
h3 { font-size: clamp(1.18rem, 1.06rem + .55vw, 1.5rem); }
h4 { font-size: 1.06rem; letter-spacing: -.01em; }
p { margin: 0 0 1.15em; }

.wrap { width: min(100% - 32px, var(--wrap)); margin-inline: auto; }
@media (min-width: 700px) { .wrap { width: min(100% - 56px, var(--wrap)); } }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- 4. Fejléc ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, .93);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header__in {
  display: flex; align-items: center; gap: 14px;
  min-height: var(--head-h);
}
.brand { display: flex; align-items: center; margin-right: auto; text-decoration: none; }
.brand img { height: 30px; width: auto; }
@media (min-width: 700px) { .brand img { height: 34px; } }

.head-badge {
  display: none; align-items: center; gap: 6px;
  font-size: .72rem; font-weight: 700; letter-spacing: .06em;
  color: var(--paprika-d); background: var(--paprika-l);
  border: 1px solid #f6cfc6; padding: 5px 10px; border-radius: 999px;
}
@media (min-width: 560px) { .head-badge { display: inline-flex; } }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 40px; border: 1px solid var(--line);
  background: var(--surface); border-radius: var(--r-xs); cursor: pointer; padding: 0;
}
.nav-toggle span { position: relative; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ''; position: absolute; left: 0; width: 18px; height: 2px; background: var(--ink); border-radius: 2px;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
@media (min-width: 1000px) { .nav-toggle { display: none; } }

.mobile-nav {
  display: none; border-top: 1px solid var(--line); background: var(--surface);
  padding: 10px 0 16px;
}
.mobile-nav.is-open { display: block; }
.mobile-nav ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.mobile-nav a {
  display: block; padding: 11px 12px; border-radius: var(--r-xs);
  font-weight: 600; font-size: .95rem; color: var(--ink-2); text-decoration: none;
}
.mobile-nav a:hover { background: var(--base); }

/* ---------- 5. Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(168deg, #ffffff 0%, #f4f7fc 52%, #eaf0f9 100%);
  border-bottom: 1px solid var(--line);
  padding: clamp(30px, 4.5vw, 62px) 0 clamp(26px, 3.5vw, 44px);
}
.hero::before, .hero::after {
  content: ''; position: absolute; border-radius: 50%; pointer-events: none;
}
.hero::before {
  width: 460px; height: 460px; right: -170px; top: -190px;
  background: radial-gradient(circle at 50% 50%, rgba(224, 64, 43, .10), rgba(224, 64, 43, 0) 68%);
}
.hero::after {
  width: 420px; height: 420px; left: -180px; bottom: -240px;
  background: radial-gradient(circle at 50% 50%, rgba(18, 135, 106, .12), rgba(18, 135, 106, 0) 68%);
}
.hero__in { position: relative; z-index: 1; max-width: 940px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .74rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: var(--paprika-d); margin-bottom: 16px;
}
.eyebrow::before {
  content: ''; width: 22px; height: 2px; background: var(--paprika); border-radius: 2px;
}
.hero h1 { margin-bottom: .38em; }
.hero__lead {
  font-size: clamp(1.03rem, .98rem + .35vw, 1.24rem);
  color: var(--ink-2); max-width: 76ch;
}
.hero__lead + .hero__lead { color: var(--slate); font-size: 1.02rem; }

.trust-strip {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px; margin: 26px 0 0; padding: 0; list-style: none;
}
@media (min-width: 780px) { .trust-strip { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.trust-strip li {
  display: flex; gap: 10px; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-s); padding: 12px 13px; box-shadow: var(--shadow-s);
}
.trust-strip b { display: block; font-size: .9rem; color: var(--ink); font-weight: 700; line-height: 1.3; }
.trust-strip span { font-size: .78rem; color: var(--slate); line-height: 1.45; }
.tick {
  flex: 0 0 auto; width: 20px; height: 20px; border-radius: 50%;
  background: var(--jade-l); display: grid; place-items: center; margin-top: 2px;
}
.tick svg { width: 11px; height: 11px; stroke: var(--jade); }

/* ---------- 6. Elrendezés ---------- */
.layout { display: grid; gap: 34px; padding: clamp(28px, 3.6vw, 48px) 0 40px; align-items: start; }
@media (min-width: 1080px) {
  .layout { grid-template-columns: minmax(0, 1fr) 330px; gap: 44px; }
}
.content { min-width: 0; }

section[id] { scroll-margin-top: calc(var(--head-h) + 14px); }
.block { margin-bottom: clamp(38px, 4.5vw, 62px); }
.block > h2 { margin-bottom: .55em; }
.block__eyebrow {
  display: block; font-size: .72rem; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: var(--paprika); margin-bottom: 10px;
}

/* ---------- 7. Gombok ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--f-body); font-weight: 700; font-size: .95rem; letter-spacing: -.005em;
  text-decoration: none; border: 0; cursor: pointer; white-space: nowrap;
  padding: 13px 22px; border-radius: 999px; transition: transform .14s ease, box-shadow .18s ease, background .18s;
}
.btn--play {
  background: linear-gradient(180deg, #e8503b, var(--paprika) 55%, var(--paprika-d));
  color: #fff; box-shadow: 0 2px 0 rgba(140, 30, 16, .35), 0 8px 20px rgba(224, 64, 43, .3);
}
.btn--play:hover { transform: translateY(-2px); box-shadow: 0 3px 0 rgba(140, 30, 16, .35), 0 14px 26px rgba(224, 64, 43, .38); }
.btn--play:active { transform: translateY(0); }
.btn--sm { padding: 10px 16px; font-size: .855rem; }
.btn--block { width: 100%; }
.btn--ghost {
  background: var(--surface); color: var(--ink); border: 1.5px solid var(--line);
}
.btn--ghost:hover { border-color: var(--slate-2); }

/* ---------- 8. Zseton jelvény (aláírás elem) ---------- */
.chip-badge {
  position: relative; flex: 0 0 auto;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--ink); color: #fff;
  display: grid; place-items: center;
  font-family: var(--f-display); font-weight: 700; font-size: 1rem; line-height: 1;
  box-shadow: 0 0 0 3px var(--surface), 0 0 0 4.5px var(--ink);
}
.chip-badge::after {
  content: ''; position: absolute; inset: 3px; border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, .32);
}
.chip-badge--gold { background: linear-gradient(160deg, #f6c463, var(--gold) 55%, #d99a1f); color: var(--ink); box-shadow: 0 0 0 3px var(--surface), 0 0 0 4.5px var(--gold); }
.chip-badge--gold::after { border-color: rgba(16, 26, 44, .28); }
.chip-badge--silver { background: linear-gradient(160deg, #dfe6f0, #b9c5d6); color: var(--ink); box-shadow: 0 0 0 3px var(--surface), 0 0 0 4.5px #c3cfdf; }
.chip-badge--silver::after { border-color: rgba(16, 26, 44, .25); }
.chip-badge--bronze { background: linear-gradient(160deg, #e5a878, #c07f4c); color: #fff; box-shadow: 0 0 0 3px var(--surface), 0 0 0 4.5px #c07f4c; }

/* ---------- 9. Kaszinó kártya (közös mobil alap = függőleges) ---------- */
.podium { display: grid; gap: 18px; margin: 26px 0 30px; }
.stack { display: grid; gap: 14px; }

.ccard {
  position: relative;
  display: flex; flex-direction: column; gap: 14px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-m); padding: 22px 18px 20px;
  box-shadow: var(--shadow-s);
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s;
}
.ccard:hover { box-shadow: var(--shadow-m); border-color: #cfdaea; }

.ccard__rank { position: absolute; top: -14px; left: 18px; }

.ccard__logo {
  align-self: center;
  width: 108px; height: 108px; border-radius: var(--r-s);
  overflow: hidden; background: var(--ink); flex: 0 0 auto;
  box-shadow: 0 1px 3px rgba(16, 26, 44, .2);
}
.ccard__logo img { width: 100%; height: 100%; object-fit: cover; }

.ccard__head { text-align: center; }
.ccard__name { font-size: 1.32rem; margin: 0 0 6px; }
.ccard__name a { color: inherit; text-decoration: none; }
.ccard__name a:hover { color: var(--paprika-d); }

.score { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.stars { display: inline-flex; gap: 2px; }
.stars svg { width: 14px; height: 14px; fill: var(--gold); }
.score b {
  font-family: var(--f-display); font-size: 1rem; color: var(--ink);
  background: var(--gold-l); border: 1px solid #f4dcae;
  padding: 1px 8px; border-radius: 999px; line-height: 1.5;
}

.tags { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin: 0; padding: 0; }
.tags li {
  font-size: .74rem; font-weight: 600; color: var(--slate);
  background: var(--base); border: 1px solid var(--line-2);
  padding: 3px 9px; border-radius: 999px; white-space: nowrap;
}

.ccard__offer {
  background: linear-gradient(180deg, #fff8f6, var(--paprika-l));
  border: 1px solid #f7d6cd; border-radius: var(--r-s);
  padding: 12px 14px; text-align: center;
}
.offer-label {
  display: block; font-size: .67rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--paprika-d); margin-bottom: 3px;
}
.offer-text {
  margin: 0; font-family: var(--f-display); font-weight: 700;
  font-size: 1.02rem; line-height: 1.32; color: var(--ink); letter-spacing: -.015em;
}

.ccard__cta { display: grid; gap: 8px; justify-items: center; }
.ccard__note { font-size: .7rem; color: var(--slate-2); text-align: center; line-height: 1.4; }

.ccard__feats { list-style: none; margin: 0; padding: 0; display: grid; gap: 7px; }
.ccard__feats li { display: flex; gap: 9px; font-size: .875rem; color: var(--ink-2); line-height: 1.45; }
.ccard__feats .tick { width: 17px; height: 17px; margin-top: 3px; }
.ccard__feats .tick svg { width: 9px; height: 9px; }

.ribbon {
  position: absolute; top: -13px; right: 16px;
  background: var(--ink); color: #fff;
  font-size: .66rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px; white-space: nowrap;
}
.ribbon--gold { background: linear-gradient(160deg, #f6c463, var(--gold)); color: var(--ink); }

/* Kiemelt (1.) kártya */
.ccard--hero { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-l), var(--shadow-m); }

/* --- asztali nézet: 3 keskeny függőleges kártya egy sorban --- */
@media (min-width: 860px) {
  .podium { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
  .ccard--tall { padding: 26px 20px 22px; }
  .ccard--tall .ccard__logo { width: 124px; height: 124px; }
}

/* --- asztali nézet: teljes szélességű, alacsony vízszintes kártyák --- */
@media (min-width: 860px) {
  .ccard--wide {
    display: grid; align-items: center;
    grid-template-columns: 46px 84px minmax(150px, 1fr) minmax(200px, 1.25fr) 176px;
    gap: 20px; padding: 16px 22px 16px 16px;
  }
  .ccard--wide .ccard__rank { position: static; }
  .ccard--wide .chip-badge { width: 34px; height: 34px; font-size: .92rem; box-shadow: none; }
  .ccard--wide .chip-badge--gold, .ccard--wide .chip-badge--silver, .ccard--wide .chip-badge--bronze { box-shadow: none; }
  .ccard--wide .ccard__logo { width: 84px; height: 84px; align-self: center; }
  .ccard--wide .ccard__head { text-align: left; }
  .ccard--wide .ccard__name { font-size: 1.14rem; margin-bottom: 4px; }
  .ccard--wide .score { margin-bottom: 6px; }
  .ccard--wide .tags { justify-content: flex-start; }
  .ccard--wide .ccard__offer { text-align: left; padding: 10px 14px; }
  .ccard--wide .offer-text { font-size: .95rem; }
  .ccard--wide .ccard__feats { display: none; }
  .ccard--wide .ccard__cta { justify-items: stretch; }
  .ccard--wide .ribbon { top: -11px; right: 20px; }
}

/* ---------- 10. Mini kaszinó kártyák a szövegblokkokban ---------- */
.picks {
  margin: 26px 0; padding: 20px 18px;
  background: var(--surface); border: 1px solid var(--line);
  border-left: 4px solid var(--paprika);
  border-radius: var(--r-m); box-shadow: var(--shadow-s);
}
.picks__mark { width: 25px; height: 25px; flex: 0 0 auto; }
.picks__title {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--f-display); font-weight: 700; font-size: 1.02rem;
  color: var(--ink); margin: 0 0 4px;
}
.picks__sub { font-size: .84rem; color: var(--slate); margin: 0 0 16px; }
.picks__grid { display: grid; gap: 12px; }
@media (min-width: 620px) { .picks__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.mcard {
  display: flex; flex-direction: column; gap: 10px; align-items: center; text-align: center;
  background: var(--base); border: 1px solid var(--line-2);
  border-radius: var(--r-s); padding: 14px 12px;
  transition: border-color .18s, background .18s;
}
.mcard:hover { background: #fff; border-color: #cfdaea; }
.mcard__logo { width: 56px; height: 56px; border-radius: 10px; overflow: hidden; background: var(--ink); }
.mcard__logo img { width: 100%; height: 100%; object-fit: cover; }
.mcard__name { font-family: var(--f-display); font-weight: 700; font-size: .98rem; color: var(--ink); line-height: 1.2; }
.mcard__offer { font-size: .78rem; color: var(--slate); line-height: 1.4; margin: -4px 0 2px; }
.mcard .btn { width: 100%; }

/* ---------- 11. Oldalsáv ---------- */
.rail { display: grid; gap: 16px; }
@media (min-width: 1080px) {
  .rail {
    position: sticky; top: calc(var(--head-h) + 18px);
    max-height: calc(100vh - var(--head-h) - 36px);
    overflow-y: auto; scrollbar-width: thin; padding-right: 2px;
  }
  .rail::-webkit-scrollbar { width: 6px; }
  .rail::-webkit-scrollbar-thumb { background: #d3dcea; border-radius: 3px; }
}
.rail-box {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-m); box-shadow: var(--shadow-s); overflow: hidden;
}
.rail-box__head {
  display: flex; align-items: center; gap: 9px;
  padding: 13px 16px; border-bottom: 1px solid var(--line-2);
  background: linear-gradient(180deg, #fff, #f8fafd);
}
.rail-box__head h3 { margin: 0; font-size: 1rem; letter-spacing: -.02em; }
.rail-box__head .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--paprika); flex: 0 0 auto; }
.rail-list { list-style: none; margin: 0; padding: 6px; display: grid; gap: 2px; }
.rail-item {
  display: grid; grid-template-columns: 22px 40px 1fr auto; align-items: center; gap: 10px;
  padding: 9px 8px; border-radius: var(--r-xs); text-decoration: none; color: inherit;
  transition: background .15s;
}
.rail-item:hover { background: var(--base); }
.rail-item__rank { font-family: var(--f-display); font-weight: 700; font-size: .92rem; color: var(--slate-2); text-align: center; }
.rail-item__logo { width: 40px; height: 40px; border-radius: 9px; overflow: hidden; background: var(--ink); }
.rail-item__logo img { width: 100%; height: 100%; object-fit: cover; }
.rail-item__name { font-weight: 700; font-size: .9rem; color: var(--ink); line-height: 1.2; }
.rail-item__offer { font-size: .74rem; color: var(--slate); line-height: 1.35; display: block; }
.rail-item__go {
  font-size: .74rem; font-weight: 700; color: #fff; background: var(--paprika);
  padding: 6px 11px; border-radius: 999px; white-space: nowrap;
}
.rail-facts { list-style: none; margin: 0; padding: 12px 16px 14px; display: grid; gap: 9px; }
.rail-facts li { display: flex; justify-content: space-between; gap: 12px; font-size: .84rem; border-bottom: 1px dashed var(--line); padding-bottom: 8px; }
.rail-facts li:last-child { border-bottom: 0; padding-bottom: 0; }
.rail-facts b { color: var(--ink); font-weight: 700; text-align: right; }
.rail-note { padding: 14px 16px 16px; font-size: .8rem; color: var(--slate); line-height: 1.55; }
.rail-note strong { color: var(--ink); }
.rail-box--dark { background: var(--ink); border-color: var(--ink); color: #c6d2e4; }
.rail-box--dark .rail-box__head { background: none; border-color: rgba(255, 255, 255, .1); }
.rail-box--dark h3 { color: #fff; }
.rail-box--dark .rail-note { color: #b6c4da; }
.rail-box--dark .rail-note strong { color: var(--gold); }

/* ---------- 12. Szövegkomponensek ---------- */
.toc {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-m);
  padding: 18px 20px 20px; box-shadow: var(--shadow-s); margin-bottom: 34px;
}
.toc h2 { font-size: 1.05rem; margin: 0 0 12px; }
.toc ol { list-style: none; counter-reset: toc; margin: 0; padding: 0; columns: 1; }
@media (min-width: 620px) { .toc ol { columns: 2; column-gap: 28px; } }
.toc li { counter-increment: toc; break-inside: avoid; margin-bottom: 7px; }
.toc a {
  display: flex; gap: 9px; font-size: .89rem; font-weight: 500;
  color: var(--ink-2); text-decoration: none; line-height: 1.4;
}
.toc a::before {
  content: counter(toc, decimal-leading-zero);
  font-family: var(--f-display); font-weight: 700; font-size: .78rem;
  color: var(--paprika); flex: 0 0 auto; padding-top: 1px;
}
.toc a:hover { color: var(--paprika-d); }

.callout {
  display: flex; gap: 13px; align-items: flex-start;
  border-radius: var(--r-m); padding: 16px 18px; margin: 22px 0;
  font-size: .93rem; line-height: 1.6;
}
.callout p { margin: 0; }
.callout p + p { margin-top: .6em; }
.callout__icon { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; }
.callout__icon svg { width: 15px; height: 15px; }
.callout--warn { background: var(--paprika-l); border: 1px solid #f6cfc6; color: #7c2312; }
.callout--warn .callout__icon { background: var(--paprika); }
.callout--warn .callout__icon svg { fill: #fff; }
.callout--info { background: #eef4fd; border: 1px solid #d5e2f6; color: #1c3355; }
.callout--info .callout__icon { background: #2f6ad0; }
.callout--info .callout__icon svg { fill: #fff; }
.callout--help { background: var(--jade-l); border: 1px solid #c6e4da; color: #0d4c3c; }
.callout--help .callout__icon { background: var(--jade); }
.callout--help .callout__icon svg { fill: #fff; }
.callout strong { color: inherit; }

.checklist { list-style: none; margin: 22px 0; padding: 0; display: grid; gap: 10px; }
@media (min-width: 640px) { .checklist { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.checklist li {
  display: flex; gap: 11px; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-s); padding: 13px 15px; font-size: .92rem; line-height: 1.5;
  box-shadow: var(--shadow-s);
}

.bullets { list-style: none; margin: 20px 0; padding: 0; display: grid; gap: 11px; }
.bullets li { display: flex; gap: 12px; align-items: flex-start; font-size: .96rem; line-height: 1.6; }
.bullets li::before {
  content: ''; flex: 0 0 auto; width: 9px; height: 9px; margin-top: .55em;
  border-radius: 50%; background: var(--paprika); box-shadow: 0 0 0 3px var(--paprika-l);
}
.bullets strong { color: var(--ink); }

.figure { margin: 26px 0; }
.figure img { width: 100%; border-radius: var(--r-m); border: 1px solid var(--line); background: var(--surface); }
.figure figcaption { margin-top: 9px; font-size: .8rem; color: var(--slate); line-height: 1.5; }

/* ---------- 13. Táblázatok ---------- */
.table-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-m); box-shadow: var(--shadow-s); overflow: hidden; margin: 24px 0;
}
.table-card__head { padding: 15px 18px 13px; border-bottom: 1px solid var(--line-2); }
.table-card__head h3 { margin: 0; font-size: 1.02rem; }
.table-card__head p { margin: 3px 0 0; font-size: .82rem; color: var(--slate); }
.tbl { width: 100%; border-collapse: collapse; font-size: .9rem; }
.tbl thead th {
  text-align: left; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--slate); font-weight: 700; padding: 11px 18px; background: var(--base);
  border-bottom: 1px solid var(--line);
}
.tbl td { padding: 12px 18px; border-bottom: 1px solid var(--line-2); vertical-align: middle; }
.tbl tbody tr:last-child td { border-bottom: 0; }
.tbl tbody tr:hover { background: #fbfcfe; }
.tbl td:first-child { font-weight: 700; color: var(--ink); }
.tbl .num { font-variant-numeric: tabular-nums; white-space: nowrap; }
.pill {
  display: inline-block; font-size: .72rem; font-weight: 700;
  padding: 3px 9px; border-radius: 999px; white-space: nowrap;
}
.pill--fast { background: var(--jade-l); color: var(--jade); }
.pill--mid { background: var(--gold-l); color: var(--gold-d); }
.pill--slow { background: var(--paprika-l); color: var(--paprika-d); }
.pill--none { background: var(--base-2); color: var(--slate); }

@media (max-width: 700px) {
  .tbl thead { display: none; }
  .tbl, .tbl tbody, .tbl tr, .tbl td { display: block; width: 100%; }
  .tbl tr { border-bottom: 1px solid var(--line); padding: 10px 16px 12px; }
  .tbl tr:last-child { border-bottom: 0; }
  .tbl td { border: 0; padding: 4px 0; display: flex; justify-content: space-between; gap: 14px; }
  .tbl td::before {
    content: attr(data-th); font-size: .72rem; font-weight: 700; letter-spacing: .06em;
    text-transform: uppercase; color: var(--slate-2); flex: 0 0 auto;
  }
  .tbl td:first-child {
    font-family: var(--f-display); font-size: 1.02rem; padding-bottom: 8px;
  }
  .tbl td:first-child::before { display: none; }
}

/* ---------- 14. Értékelő blokkok ---------- */
.review {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-m);
  padding: 20px 18px; margin-bottom: 16px; box-shadow: var(--shadow-s);
}
.review__top { display: flex; gap: 14px; align-items: center; margin-bottom: 14px; }
.review__logo { width: 64px; height: 64px; border-radius: 12px; overflow: hidden; background: var(--ink); flex: 0 0 auto; }
.review__logo img { width: 100%; height: 100%; object-fit: cover; }
.review__titles { min-width: 0; }
.review h3 { margin: 0 0 2px; font-size: 1.16rem; }
.review__offer { font-size: .85rem; font-weight: 600; color: var(--paprika-d); line-height: 1.35; }
.review p { font-size: .96rem; }
.review__grid { display: grid; gap: 16px; }
@media (min-width: 760px) {
  .review { padding: 24px 26px; }
  .review__grid { grid-template-columns: minmax(0, 1fr) 232px; align-items: start; gap: 26px; }
  .review__aside { border-left: 1px solid var(--line-2); padding-left: 22px; }
}
.review__aside .btn { width: 100%; margin-top: 12px; }
.review .ccard__feats { margin-bottom: 2px; }

/* ---------- 15. Lépések ---------- */
.steps { list-style: none; counter-reset: step; margin: 24px 0; padding: 0; display: grid; gap: 12px; }
.steps li {
  counter-increment: step; position: relative;
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-s); padding: 14px 16px; box-shadow: var(--shadow-s);
}
.steps li::before {
  content: counter(step); flex: 0 0 auto;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--ink); color: #fff;
  font-family: var(--f-display); font-weight: 700; font-size: .95rem;
  display: grid; place-items: center;
  box-shadow: inset 0 0 0 2px var(--ink), inset 0 0 0 3.5px rgba(255, 255, 255, .28);
}
.steps b { display: block; color: var(--ink); font-size: .97rem; }
.steps span { font-size: .88rem; color: var(--slate); line-height: 1.55; }

/* ---------- 16. GYIK ---------- */
.faq { display: grid; gap: 10px; margin: 20px 0 8px; }
.faq details {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-s); box-shadow: var(--shadow-s); overflow: hidden;
}
.faq summary {
  cursor: pointer; list-style: none; padding: 16px 52px 16px 18px; position: relative;
  font-family: var(--f-display); font-weight: 700; font-size: 1.02rem; color: var(--ink);
  line-height: 1.35;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ''; position: absolute; right: 18px; top: 50%;
  width: 11px; height: 11px; margin-top: -6px;
  border-right: 2.5px solid var(--paprika); border-bottom: 2.5px solid var(--paprika);
  transform: rotate(45deg); transition: transform .22s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq details[open] summary { border-bottom: 1px solid var(--line-2); }
.faq__body { padding: 14px 18px 18px; font-size: .95rem; }
.faq__body p:last-child { margin-bottom: 0; }
.faq h3 { margin: 26px 0 12px; font-size: 1.1rem; }

/* ---------- 17. CTA sáv ---------- */
.cta-band {
  background: var(--ink); color: #cfd9e8; border-radius: var(--r-l);
  padding: clamp(24px, 3.4vw, 40px); margin: 34px 0;
  display: grid; gap: 18px; align-items: center;
  background-image: radial-gradient(circle at 88% 12%, rgba(224, 64, 43, .32), transparent 46%),
                    radial-gradient(circle at 10% 92%, rgba(242, 179, 61, .2), transparent 44%);
}
@media (min-width: 820px) { .cta-band { grid-template-columns: minmax(0, 1fr) auto; gap: 32px; } }
.cta-band h2 { color: #fff; margin-bottom: .35em; }
.cta-band p { margin: 0; font-size: .96rem; }
.cta-band__side { display: grid; gap: 10px; justify-items: stretch; min-width: 240px; }
.cta-band__brand { display: flex; align-items: center; gap: 12px; }
.cta-band__brand img { width: 52px; height: 52px; border-radius: 12px; }
.cta-band__brand b { color: #fff; font-family: var(--f-display); font-size: 1.1rem; display: block; }
.cta-band__brand span { font-size: .78rem; color: var(--gold); }

/* ---------- 18. Lábléc ---------- */
.site-footer { background: var(--ink); color: #9fb0c9; padding: 44px 0 30px; margin-top: 20px; }
.site-footer__grid { display: grid; gap: 28px; }
@media (min-width: 820px) { .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; } }
.site-footer img.flogo { height: 34px; width: auto; margin-bottom: 14px; }
.site-footer p { font-size: .87rem; line-height: 1.65; }
.site-footer h4 { color: #fff; font-size: .95rem; margin-bottom: 12px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.site-footer a { color: #b9c7dc; text-decoration: none; font-size: .88rem; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.age-badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0 0; }
.age-badge {
  display: inline-flex; align-items: center; gap: 7px;
  border: 1px solid rgba(255, 255, 255, .22); color: #dbe4f0;
  border-radius: 999px; padding: 6px 13px; font-size: .78rem; font-weight: 600;
}
.age-badge b { color: var(--gold); }
.site-footer__bottom {
  margin-top: 30px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: .8rem; color: #8598b3;
}

/* ---------- 19. Mobil ragadós CTA + fel gomb ---------- */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: none; align-items: center; gap: 12px;
  background: rgba(255, 255, 255, .97); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line); padding: 9px 14px calc(9px + env(safe-area-inset-bottom));
  box-shadow: 0 -6px 22px rgba(16, 26, 44, .12);
  transform: translateY(110%); transition: transform .3s ease;
}
.mobile-cta.is-visible { transform: translateY(0); }
.mobile-cta img { width: 40px; height: 40px; border-radius: 9px; flex: 0 0 auto; }
.mobile-cta__txt { min-width: 0; flex: 1; }
.mobile-cta__txt b { display: block; font-size: .87rem; color: var(--ink); line-height: 1.2; }
.mobile-cta__txt span { font-size: .72rem; color: var(--slate); display: block; line-height: 1.3; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mobile-cta .btn { padding: 11px 17px; font-size: .87rem; }
.mobile-cta__close {
  position: absolute; top: -20px; right: 10px; width: 40px; height: 40px;
  border-radius: 50%; border: 1px solid var(--line); background: #fff; color: var(--slate);
  cursor: pointer; font-size: 18px; line-height: 1; display: grid; place-items: center; padding: 0;
  box-shadow: 0 2px 8px rgba(16,26,44,.14);
}
@media (max-width: 859px) { .mobile-cta { display: flex; } body.has-mcta { padding-bottom: 74px; } }

.totop {
  position: fixed; right: 16px; bottom: 84px; z-index: 55;
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line);
  background: #fff; color: var(--ink); box-shadow: var(--shadow-m);
  display: grid; place-items: center; cursor: pointer;
  opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s;
}
.totop.is-visible { opacity: 1; visibility: visible; }
.totop svg { width: 16px; height: 16px; stroke: var(--ink); }
@media (min-width: 860px) { .totop { bottom: 24px; } }

/* ---------- 20. Egyéb ---------- */
.section-note { font-size: .82rem; color: var(--slate-2); margin-top: -6px; }
.updated {
  display: inline-flex; align-items: center; gap: 7px; font-size: .78rem;
  color: var(--slate); background: var(--surface); border: 1px solid var(--line);
  border-radius: 999px; padding: 5px 12px; margin-bottom: 16px;
}
.updated b { color: var(--ink); font-weight: 700; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
