/* ╔═══════════════════════════════════════════════════════════════════════╗
   ║  AEO.HU — modern komoly üzleti design system                          ║
   ║  Paletta: midnight navy + burnished brass + warm paper                ║
   ╚═══════════════════════════════════════════════════════════════════════╝ */

:root {
  /* Paletta */
  --navy:        #0B1E33;     /* mély midnight */
  --navy-2:      #112B47;     /* royal navy */
  --navy-3:      #1E3D5E;     /* hover-vonal */
  --navy-deep:   #07172A;     /* footer mélység */
  --ink:         #0A1726;
  --ink-2:       #25394F;
  --steel:       #4A5D74;     /* másodlagos szöveg */
  --steel-2:     #6E7E92;
  --muted:       #8B97A6;

  --brass:       #B8893A;     /* főakcent — réz/arany */
  --brass-dark:  #8E6A2A;
  --brass-soft:  rgba(184, 137, 58, .12);
  --brass-line:  rgba(184, 137, 58, .35);

  --crimson:     #8E2624;     /* másodakcent — pecsét/audit jelölésekhez */

  --paper:       #F6F2EA;     /* meleg háttér */
  --paper-2:     #EFE9DC;     /* sávok */
  --paper-3:     #E6DECB;
  --bg:          #FBFAF6;     /* alap háttér */
  --bg-2:        #FFFFFF;

  --rule:        #E2DAC6;     /* világos vonal */
  --rule-2:      #CFC4A6;     /* hangsúlyos vonal */

  /* Tipográfia */
  --font-serif:  'Source Serif 4', 'Source Serif Pro', Georgia, serif;
  --font-sans:   'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-mono:   'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  --shell:       1240px;
  --shell-wide:  1360px;
  --gutter:      32px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; }
html { scrollbar-gutter: stable; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ─── SHELL / SECTION ─── */
.a-shell      { max-width: var(--shell);      margin: 0 auto; padding: 0 var(--gutter); }
.a-shell-wide { max-width: var(--shell-wide); margin: 0 auto; padding: 0 var(--gutter); }
.a-section          { padding: 88px 0; }
.a-section--tight   { padding: 56px 0; }
.a-section--navy    { background: var(--navy); color: #E8EEF6; }
.a-section--ink     { background: var(--ink);  color: #E8EEF6; }
.a-section--paper   { background: var(--paper); }
.a-section--paper-2 { background: var(--paper-2); }

/* ─── HEADINGS ─── */
.a-h1 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0;
}
.a-h1 em { font-style: italic; color: var(--brass); }
.a-section--navy .a-h1, .a-section--ink .a-h1 { color: #F7F4ED; }

.a-h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.013em;
  color: var(--ink);
  margin: 0;
}
.a-h2 em { font-style: italic; color: var(--brass); }
.a-section--navy .a-h2, .a-section--ink .a-h2,
.a-stats-wrap .a-h2, .a-refscroll .a-h2 { color: #F7F4ED; }

.a-h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  color: var(--ink);
  margin: 0;
}
.a-section--navy .a-h3, .a-section--ink .a-h3 { color: #F7F4ED; }

/* Eyebrow — kicsi szürkés tipográfia szekciók fölött */
.a-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brass-dark);
}
.a-eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--brass);
}
.a-section--navy .a-eyebrow, .a-section--ink .a-eyebrow { color: var(--brass); }
.a-section--navy .a-eyebrow::before, .a-section--ink .a-eyebrow::before { background: var(--brass); }

.a-lead {
  font-size: 18.5px;
  line-height: 1.65;
  color: var(--steel);
  max-width: 720px;
  margin: 20px 0 0;
}
.a-section--navy .a-lead, .a-section--ink .a-lead { color: #C7D2E0; }

/* ─── SECTION HEAD ─── */
.a-sec-head { margin-bottom: 56px; }
.a-sec-head__top {
  display: flex; flex-wrap: wrap; gap: 20px;
  align-items: flex-end; justify-content: space-between;
  margin-bottom: 16px;
}
.a-sec-head__cta {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--brass-dark);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--brass);
  padding-bottom: 4px;
  transition: color .25s ease, gap .3s cubic-bezier(.2, .8, .2, 1);
}
.a-sec-head__cta:hover { color: var(--ink); gap: 14px; }

/* ═══════════════════════════════════════════════════════════════════════
   TOPBAR + HEADER
   ═══════════════════════════════════════════════════════════════════════ */
.a-topbar {
  background: var(--navy-deep);
  color: #B3C0D2;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .04em;
  border-bottom: 1px solid rgba(184, 137, 58, .18);
}
.a-topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  /* NB: csak függőleges padding — a horizontálist a .a-shell-wide gutter adja, hogy ne lógjon a szélen */
  padding-top: 10px;
  padding-bottom: 10px;
}
.a-topbar__left, .a-topbar__right {
  display: flex; align-items: center; gap: 22px;
}
.a-topbar a {
  display: inline-flex; align-items: center; gap: 7px;
  color: #B3C0D2;
  transition: color .25s ease;
}
.a-topbar a:hover { color: var(--brass); }
.a-topbar i { color: var(--brass); font-size: 12px; }
.a-topbar__sep { color: rgba(255,255,255,.15); }
.a-topbar__lang {
  display: inline-flex; gap: 6px;
}
.a-topbar__lang a { padding: 2px 7px; border: 1px solid transparent; }
.a-topbar__lang a.is-active { color: var(--brass); border-color: var(--brass-line); }

/* HEADER */
.a-header {
  background: var(--bg-2);
  border-bottom: 1px solid var(--rule);
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(6px);
}
.a-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding-top: 18px;
  padding-bottom: 18px;
  /* horizontális padding a .a-shell-wide-tól örökölve */
}
.a-logo {
  display: inline-flex; align-items: baseline;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 28px;
  color: var(--navy);
  letter-spacing: -.02em;
}
.a-logo__mark {
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--brass);
}
.a-logo__dot { color: var(--brass); }
.a-logo__tld {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--steel);
  margin-left: 8px;
  padding-left: 10px;
  border-left: 1px solid var(--rule-2);
  align-self: center;
}

/* NAV */
.a-nav {
  display: flex; gap: 4px;
  justify-self: center;
}
.a-nav__link {
  position: relative;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  transition: color .25s ease;
}
.a-nav__link::after {
  content: '';
  position: absolute;
  left: 16px; right: 16px;
  bottom: 4px;
  height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.2, .8, .2, 1);
}
.a-nav__link:hover { color: var(--navy); }
.a-nav__link:hover::after,
.a-nav__link.is-active::after { transform: scaleX(1); }
.a-nav__link.is-active { color: var(--navy); }

/* ── Hamburger gomb (csak mobilon) ── */
.a-menu-toggle__input { position: absolute; opacity: 0; pointer-events: none; }
.a-menu-toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: transparent;
  border: 1px solid var(--rule);
  position: relative;
  z-index: 60;
}
.a-menu-toggle__bar {
  width: 22px; height: 2px;
  background: var(--navy);
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), opacity .25s ease;
}
.a-menu-toggle__input:checked ~ .a-header .a-menu-toggle .a-menu-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.a-menu-toggle__input:checked ~ .a-header .a-menu-toggle .a-menu-toggle__bar:nth-child(2) {
  opacity: 0;
}
.a-menu-toggle__input:checked ~ .a-header .a-menu-toggle .a-menu-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobil menü overlay ── */
.a-mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--navy);
  color: #E8EEF6;
  z-index: 55;
  display: flex; flex-direction: column;
  transform: translateY(-100%);
  transition: transform .45s cubic-bezier(.2, .8, .2, 1);
  visibility: hidden;
  overflow-y: auto;
}
.a-menu-toggle__input:checked ~ .a-mobile-menu {
  transform: translateY(0);
  visibility: visible;
}
.a-mobile-menu::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass), transparent);
}
.a-mobile-menu__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(184, 137, 58, .2);
}
.a-mobile-menu__logo {
  color: #F7F4ED;
  font-size: 26px;
}
.a-mobile-menu__close {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: var(--brass);
  font-size: 22px;
  cursor: pointer;
  border: 1px solid rgba(184, 137, 58, .35);
  transition: background .25s ease;
}
.a-mobile-menu__close:hover { background: rgba(184, 137, 58, .12); }
.a-mobile-menu__nav {
  display: flex; flex-direction: column;
  padding: 24px 0;
  flex: 1;
}
.a-mobile-menu__link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 18px 28px;
  color: #E8EEF6;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -.005em;
  transition: background .25s ease, padding-left .35s cubic-bezier(.2, .8, .2, 1);
}
.a-mobile-menu__link:hover,
.a-mobile-menu__link.is-active {
  background: rgba(184, 137, 58, .08);
  padding-left: 36px;
}
.a-mobile-menu__link.is-active { color: var(--brass); }
.a-mobile-menu__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--brass);
}
.a-mobile-menu__link i {
  color: var(--brass);
  font-size: 14px;
}
.a-mobile-menu__foot {
  padding: 22px 28px 32px;
  border-top: 1px solid rgba(184, 137, 58, .2);
  display: flex; flex-direction: column; gap: 12px;
  background: var(--navy-deep);
}
.a-mobile-menu__contact {
  display: inline-flex; align-items: center; gap: 10px;
  color: #B3C0D2;
  font-family: var(--font-mono);
  font-size: 13px;
}
.a-mobile-menu__contact i { color: var(--brass); font-size: 13px; }
/* body scroll lock amíg a menü nyitva van */
.a-menu-toggle__input:checked ~ * { /* nincs általános blokk, csak utility */ }
html:has(.a-menu-toggle__input:checked) { overflow: hidden; }

/* CTA gomb a fejlécben */
.a-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 22px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .01em;
  border: 1px solid transparent;
  background: var(--navy);
  color: #F4EFE2;
  transition: background .3s ease, color .3s ease, border-color .3s ease, transform .25s ease;
}
.a-btn:hover { background: var(--navy-2); transform: translateY(-1px); }
.a-btn--brass {
  background: var(--brass);
  color: var(--navy-deep);
}
.a-btn--brass:hover { background: var(--brass-dark); color: #fff; }
.a-btn--ghost {
  background: transparent;
  border-color: var(--rule-2);
  color: var(--ink-2);
}
.a-btn--ghost:hover { border-color: var(--navy); color: var(--navy); }
.a-btn--ghost-light {
  background: transparent;
  border-color: rgba(255,255,255,.25);
  color: #E8EEF6;
}
.a-btn--ghost-light:hover { border-color: var(--brass); color: var(--brass); }
.a-btn i { font-size: 14px; }

/* ═══════════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════════ */
.a-hero {
  position: relative;
  background: var(--navy);
  color: #E8EEF6;
  overflow: hidden;
  padding: 100px 0 88px;
}
.a-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(184, 137, 58, .15) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(30, 61, 94, .8) 0%, transparent 50%);
  pointer-events: none;
}
/* Vékony arany hairline keret a hero tetejébe */
.a-hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass), transparent);
}
.a-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 80px;
  align-items: center;
}
.a-hero__main { min-width: 0; }
.a-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 28px;
}
.a-hero__eyebrow span:first-child {
  padding: 4px 9px;
  border: 1px solid var(--brass-line);
  background: rgba(184, 137, 58, .08);
}
.a-hero h1 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(44px, 6vw, 84px);
  line-height: 1;
  letter-spacing: -.022em;
  margin: 0 0 28px;
  color: #F7F4ED;
}
.a-hero h1 em { font-style: italic; color: var(--brass); }
.a-hero h1 .a-hero__rule {
  display: block;
  width: 84px; height: 2px;
  background: var(--brass);
  margin: 24px 0;
}
.a-hero__lead {
  font-size: 19px;
  line-height: 1.65;
  color: #C7D2E0;
  max-width: 540px;
  margin: 0 0 36px;
}
.a-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero információs panel — jobboldali "certified" stamp */
.a-hero__panel {
  background: rgba(7, 23, 42, .55);
  border: 1px solid rgba(184, 137, 58, .35);
  padding: 32px;
  position: relative;
  backdrop-filter: blur(8px);
}
.a-hero__panel::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(184, 137, 58, .15);
  pointer-events: none;
}
.a-hero__panel-eyebrow {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 14px;
}
.a-hero__panel-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: #F7F4ED;
  margin: 0 0 22px;
  line-height: 1.25;
}
.a-hero__panel-list {
  margin: 0; padding: 0; list-style: none;
}
.a-hero__panel-list li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 12px;
  align-items: flex-start;
  padding: 11px 0;
  border-bottom: 1px dashed rgba(255,255,255,.1);
  font-size: 14px;
  color: #D7DEEA;
}
.a-hero__panel-list li:last-child { border-bottom: 0; }
.a-hero__panel-list i { color: var(--brass); font-size: 13px; padding-top: 4px; }
.a-hero__panel-foot {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(184, 137, 58, .25);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.a-hero__panel-foot strong { color: var(--brass); font-weight: 500; }

/* Hero alsó scroll-strip */
.a-hero__strip {
  margin-top: 72px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
}
.a-hero__strip-item { color: #D7DEEA; }
.a-hero__strip-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 36px;
  font-weight: 500;
  color: var(--brass);
  letter-spacing: -.01em;
  line-height: 1;
  margin-bottom: 6px;
}
.a-hero__strip-lbl {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}

/* ═══════════════════════════════════════════════════════════════════════
   BEMUTATKOZÁS — intro grid
   ═══════════════════════════════════════════════════════════════════════ */
.a-intro {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: flex-start;
}
.a-intro__left { position: sticky; top: 110px; }
/* Image-style intro — baloldali kép aranykerettel */
.a-intro__img {
  position: relative;
  overflow: hidden;
  background: var(--paper-2);
  aspect-ratio: 4 / 5;
}
.a-intro__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.03);
  position: relative; z-index: 2;
  transition: transform .8s cubic-bezier(.2, .8, .2, 1);
}
.a-intro__left:hover .a-intro__img img { transform: scale(1.03); }
.a-intro__img::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(184, 137, 58, .55);
  z-index: 3;
  pointer-events: none;
}
.a-intro__img-caption {
  margin-top: 16px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
  padding: 12px 0 0;
  border-top: 1px solid var(--rule);
}
.a-intro__img-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 40px;
  line-height: 1;
  color: var(--brass);
  letter-spacing: -.02em;
}
.a-intro__img-lbl {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--steel);
  text-align: right;
  max-width: 160px;
  line-height: 1.4;
}
.a-intro__body p {
  font-size: 17px;
  line-height: 1.72;
  color: var(--ink-2);
  margin: 0 0 18px;
}
.a-intro__body p:first-of-type {
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 24px;
}
.a-intro__body p strong { color: var(--navy); font-weight: 600; }

/* ═══════════════════════════════════════════════════════════════════════
   AEO MAGYARÁZAT BLOKK
   ═══════════════════════════════════════════════════════════════════════ */
.a-define {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.a-define__big {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -.015em;
  color: var(--ink);                            /* alap: világos szekcióban sötét szöveg */
  margin: 18px 0 28px;
}
.a-define__big em { font-style: italic; color: var(--brass-dark); }
.a-section--navy .a-define__big em,
.a-section--ink .a-define__big em { color: var(--brass); }
.a-section--navy .a-define__big,
.a-section--ink .a-define__big { color: #F7F4ED; }

.a-define__stamp {
  position: relative;
  padding: 48px;
  background: var(--bg-2);                      /* alap: tiszta fehér panel */
  border: 1px solid var(--rule-2);
}
/* Paper-szekcióban: mélyebb háttér + erősebb keret a jobb kontraszthoz */
.a-section--paper .a-define__stamp,
.a-section--paper-2 .a-define__stamp {
  background: #FFFFFF;
  border-color: var(--rule-2);
  box-shadow: 0 1px 0 rgba(0,0,0,.02), 0 8px 24px rgba(11, 30, 51, .04);
}
.a-section--navy .a-define__stamp,
.a-section--ink .a-define__stamp {
  background: rgba(255,255,255,.03);
  border-color: rgba(184, 137, 58, .35);
}
.a-define__stamp::before, .a-define__stamp::after {
  content: '';
  position: absolute;
  width: 26px; height: 26px;
  border: 2px solid var(--brass);
}
.a-define__stamp::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.a-define__stamp::after  { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }
.a-define__stamp-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brass-dark);
  margin-bottom: 14px;
}
.a-section--navy .a-define__stamp-num,
.a-section--ink .a-define__stamp-num { color: var(--brass); }
.a-define__stamp-title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 20px;
  line-height: 1.2;
}
.a-section--navy .a-define__stamp-title,
.a-section--ink .a-define__stamp-title { color: #F7F4ED; }
.a-define__stamp-text {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--steel);
  margin: 0;
}
.a-section--navy .a-define__stamp-text,
.a-section--ink .a-define__stamp-text { color: #C7D2E0; }
.a-define__stamp-text em {
  font-style: italic;
  color: var(--brass);
}

/* ═══════════════════════════════════════════════════════════════════════
   STATS — "editorial almanach" — dramatic italic numerals, mono kicker
   ═══════════════════════════════════════════════════════════════════════ */
.a-stats-wrap {
  background: var(--navy);
  color: #E8EEF6;
  position: relative;
  overflow: hidden;
}
.a-stats-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(184, 137, 58, .10) 0%, transparent 60%),
    radial-gradient(ellipse at 100% 100%, rgba(30, 61, 94, .6) 0%, transparent 50%);
  pointer-events: none;
}
.a-stats-wrap::after {
  /* hairline arany határoló-vonal, csak a középső zónában */
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, var(--brass-line) 50%, transparent 90%);
}

.a-stats-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  padding: 56px 0 28px;
  border-bottom: 1px solid rgba(184, 137, 58, .25);
  flex-wrap: wrap; gap: 16px;
}
.a-stats-head__kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brass);
  display: inline-flex; align-items: center; gap: 14px;
}
.a-stats-head__kicker::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--brass);
}
.a-stats-head__date {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}

.a-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 56px 0 64px;
  position: relative;
}
.a-stats__item {
  position: relative;
  padding: 8px 32px 0 0;
  cursor: default;
}
/* vékony, magasság-65% függőleges arany vonal */
.a-stats__item + .a-stats__item::before {
  content: '';
  position: absolute;
  left: -16px; top: 18%;
  width: 1px; height: 64%;
  background: linear-gradient(180deg, transparent, var(--brass-line), transparent);
}
.a-stats__roman {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .18em;
  color: rgba(255,255,255,.4);
  margin-bottom: 18px;
}
.a-stats__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(72px, 9vw, 128px);
  line-height: .92;
  letter-spacing: -.025em;
  color: var(--brass);
  margin: 0 0 22px;
  display: inline-block;
  transition: transform .55s cubic-bezier(.2, .8, .2, 1), color .35s ease;
}
.a-stats__item:hover .a-stats__num { transform: translateY(-4px); color: #E5B872; }
.a-stats__rule {
  width: 32px; height: 1px;
  background: var(--brass);
  margin-bottom: 14px;
  transition: width .55s cubic-bezier(.2, .8, .2, 1);
}
.a-stats__item:hover .a-stats__rule { width: 64px; }
.a-stats__lbl {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  color: #F7F4ED;
  margin-bottom: 6px;
  letter-spacing: -.005em;
  line-height: 1.25;
}
.a-stats__sub {
  font-size: 13px;
  color: #93A1B5;
  line-height: 1.55;
  max-width: 220px;
}

/* ═══════════════════════════════════════════════════════════════════════
   TEAM — munkatársak (rolunk.php)
   ═══════════════════════════════════════════════════════════════════════ */
.a-team-lead {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
  align-items: flex-end;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--rule);
}
.a-team-lead__text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  max-width: 520px;
  position: relative;
  padding-left: 28px;
}
.a-team-lead__text::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 16px; height: 1px;
  background: var(--brass);
}
.a-team-lead__cite {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brass-dark);
  margin-top: 16px;
  display: block;
  padding-left: 28px;
}

.a-team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 32px;
}
.a-person {
  position: relative;
  display: flex; flex-direction: column;
  text-decoration: none;
}
/* fotó-keret — passepartout brass */
.a-person__img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--paper-3);
  margin-bottom: 22px;
}
.a-person__img img {
  position: relative; z-index: 2;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(.5) contrast(1.03) brightness(.96);
  transition: filter .6s ease, transform .8s cubic-bezier(.2, .8, .2, 1);
}
.a-person:hover .a-person__img img { filter: grayscale(0) contrast(1.05); transform: scale(1.03); }
.a-person__img::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(184, 137, 58, .55);
  z-index: 3;
  pointer-events: none;
  transition: inset .55s cubic-bezier(.2, .8, .2, 1), border-color .35s ease;
}
.a-person:hover .a-person__img::before {
  inset: 8px;
  border-color: rgba(184, 137, 58, .95);
}
/* 4 arany sarokpipa hoverre */
.a-person__img::after {
  content: '';
  position: absolute;
  inset: 4px;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  transition: opacity .5s ease, inset .55s cubic-bezier(.2, .8, .2, 1);
  background:
    linear-gradient(var(--brass), var(--brass)) left top    / 14px 1px no-repeat,
    linear-gradient(var(--brass), var(--brass)) left top    / 1px 14px no-repeat,
    linear-gradient(var(--brass), var(--brass)) right top   / 14px 1px no-repeat,
    linear-gradient(var(--brass), var(--brass)) right top   / 1px 14px no-repeat,
    linear-gradient(var(--brass), var(--brass)) left bottom / 14px 1px no-repeat,
    linear-gradient(var(--brass), var(--brass)) left bottom / 1px 14px no-repeat,
    linear-gradient(var(--brass), var(--brass)) right bottom/ 14px 1px no-repeat,
    linear-gradient(var(--brass), var(--brass)) right bottom/ 1px 14px no-repeat;
}
.a-person:hover .a-person__img::after { opacity: 1; }

/* fej-vonal a kép alatt (kis brass marker → kihúzódik hoverre) */
.a-person__head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: flex-start;
  padding-top: 4px;
}
.a-person__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--brass-dark);
  padding-top: 6px;
  position: relative;
}
.a-person__num::after {
  content: '';
  position: absolute;
  left: 0; bottom: -8px;
  width: 18px; height: 1px;
  background: var(--brass);
  transition: width .55s cubic-bezier(.2, .8, .2, 1);
}
.a-person:hover .a-person__num::after { width: 32px; }
.a-person__name {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -.008em;
  color: var(--ink);
  margin: 0 0 6px;
  transition: color .35s ease;
}
.a-person:hover .a-person__name { color: var(--navy); }
.a-person__role {
  font-family: var(--font-sans);
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--steel);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════════════
   SZOLGÁLTATÁSOK — services grid
   ═══════════════════════════════════════════════════════════════════════ */
.a-svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.a-svc--wide { grid-column: span 2; }
.a-svc {
  position: relative;
  padding: 36px 36px 36px 38px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--bg-2);
  transition: background .3s ease;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: flex-start;
}
.a-svc:hover { background: var(--paper); }
.a-svc__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--brass-dark);
  padding-top: 4px;
  min-width: 28px;
}
.a-svc__body { min-width: 0; }
.a-svc__icon {
  position: absolute;
  right: 36px; top: 36px;
  font-size: 22px;
  color: var(--rule-2);
  transition: color .3s ease;
}
.a-svc:hover .a-svc__icon { color: var(--brass); }
.a-svc__cim {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 8px;
  letter-spacing: -.005em;
  line-height: 1.2;
  padding-right: 40px;
}
.a-svc__lead {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--steel);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════════
   FEATURE BLOCK — nevesített szekciók (Munkamódszer, Garancia)
   ═══════════════════════════════════════════════════════════════════════ */
.a-feat {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: center;
  padding: 72px 0;
  border-top: 1px solid var(--rule);
  position: relative;
}
.a-feat:last-of-type { border-bottom: 1px solid var(--rule); }
.a-feat__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--brass);
  margin-bottom: 12px;
  display: inline-flex; align-items: center; gap: 14px;
}
.a-feat__num::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--brass);
}
.a-feat__label {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brass-dark);
  margin-bottom: 22px;
}
.a-feat__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.05;
  color: var(--ink);
  margin: 0 0 24px;
  letter-spacing: -.012em;
}
.a-feat__title em { font-style: italic; color: var(--brass); }
.a-feat__body p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-2);
  margin: 0 0 14px;
}
.a-feat__body p strong { color: var(--navy); }

/* Esettanulmány / stat-panel a feature jobb oldalán */
.a-feat__panel {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--rule-2);
  padding: 36px 40px;
}
.a-feat__panel::before, .a-feat__panel::after {
  content: '';
  position: absolute;
  width: 22px; height: 22px;
  border: 2px solid var(--brass);
}
.a-feat__panel::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.a-feat__panel::after  { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }
.a-feat__panel-kicker {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brass-dark);
  margin-bottom: 14px;
}
.a-feat__panel-stat {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(64px, 7vw, 112px);
  line-height: .95;
  color: var(--brass);
  letter-spacing: -.025em;
  margin-bottom: 14px;
}
.a-feat__panel-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 14px;
  line-height: 1.2;
}
.a-feat__panel-text {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--steel);
  margin: 0;
}
.a-feat__panel-text em { font-style: italic; color: var(--brass-dark); }
.a-feat__panel-rule {
  height: 1px;
  background: var(--rule);
  margin: 18px 0;
}
.a-feat__panel-cite {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--steel-2);
}

/* feature flipped variant: panel balra, body jobbra */
.a-feat--flipped { grid-template-columns: 1.2fr 1fr; }
.a-feat--flipped .a-feat__panel { order: -1; }

/* Welcome / slogan block — speciális hero-bővítés */
.a-welcome {
  margin-top: 28px;
  padding: 28px 36px;
  background: rgba(184, 137, 58, .08);
  border-left: 3px solid var(--brass);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
}
.a-welcome__slogan {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1;
  color: var(--brass);
  letter-spacing: -.018em;
  padding-right: 28px;
  border-right: 1px solid rgba(184, 137, 58, .35);
  white-space: nowrap;
}
.a-welcome__text {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.55;
  color: #E8EEF6;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════════
   WHYWORLD — "Miért kell a világnak az AEO?" 3-blokkos magyarázat
   ═══════════════════════════════════════════════════════════════════════ */
.a-whyworld {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
  background: var(--bg-2);
}
.a-whyworld__item {
  padding: 40px 36px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.a-whyworld__item::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 3px; height: 56px;
  background: var(--brass);
}
.a-whyworld__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--brass-dark);
  margin-bottom: 18px;
  display: inline-flex; align-items: center; gap: 12px;
}
.a-whyworld__num::after {
  content: '';
  width: 28px; height: 1px;
  background: var(--brass);
}
.a-whyworld__cim {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 16px;
  letter-spacing: -.008em;
}
.a-whyworld__lead {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--steel);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════════
   ELIGIBLE — jogosult szereplők grid (9 ikon)
   ═══════════════════════════════════════════════════════════════════════ */
.a-eligible {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(184,137,58,.25);
  border-left: 1px solid rgba(184,137,58,.25);
}
.a-eligible__item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: center;
  padding: 28px 30px;
  border-right: 1px solid rgba(184,137,58,.25);
  border-bottom: 1px solid rgba(184,137,58,.25);
  background: rgba(255,255,255,.02);
  transition: background .35s ease;
}
.a-eligible__item:hover { background: rgba(184,137,58,.06); }
.a-eligible__icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--brass);
  color: var(--brass);
  font-size: 24px;
  position: relative;
}
.a-eligible__icon::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(184,137,58,.25);
}
.a-eligible__cim {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  color: #F7F4ED;
  letter-spacing: -.005em;
  line-height: 1.2;
}

/* ═══════════════════════════════════════════════════════════════════════
   CONDITIONS — 4 feltétel kártya
   ═══════════════════════════════════════════════════════════════════════ */
.a-cond {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
  background: var(--bg-2);
}
.a-cond__item {
  padding: 32px 28px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  transition: background .3s ease;
}
.a-cond__item:hover { background: var(--paper); }
.a-cond__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 44px;
  line-height: 1;
  color: var(--brass);
  margin-bottom: 18px;
  letter-spacing: -.015em;
}
.a-cond__cim {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
  margin: 0 0 10px;
}
.a-cond__lead {
  font-size: 14px;
  line-height: 1.65;
  color: var(--steel);
  margin: 0;
}

/* KKV megjegyzés — aranyozott infodoboz */
.a-kkv-note {
  margin-top: 28px;
  padding: 22px 28px;
  background: var(--brass-soft);
  border-left: 3px solid var(--brass);
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  align-items: center;
}
.a-kkv-note i { color: var(--brass-dark); font-size: 22px; }
.a-kkv-note__text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.55;
}
.a-kkv-note__text strong { color: var(--navy); font-style: normal; font-weight: 600; }

/* ═══════════════════════════════════════════════════════════════════════
   CHECKLIST — 9 pontos szolgáltatási alapelv-lista
   ═══════════════════════════════════════════════════════════════════════ */
.a-checklist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
  background: var(--bg-2);
}
.a-checklist__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 24px 28px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  align-items: flex-start;
  transition: background .3s ease;
}
.a-checklist__item:hover { background: var(--paper); }
.a-checklist__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--brass-dark);
  padding-top: 4px;
}
.a-checklist__text {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-2);
}

/* ═══════════════════════════════════════════════════════════════════════
   AEO BENEFITS — tab-választós rendszer (AEOC · AEOS · AEOF)
   ═══════════════════════════════════════════════════════════════════════ */
.a-aeop {
  position: relative;
}
.a-aeop__input { position: absolute; opacity: 0; pointer-events: none; }   /* radio inputek elrejtve */

/* Mobil accordion-headerek — desktopon elrejtve */
.a-aeop__acc { display: none; }

/* ── Tab-választó sor ── */
.a-aeop__tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 48px;
  border: 1px solid var(--rule);
  background: var(--bg-2);
}
.a-aeop__tab {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 26px 28px;
  border-right: 1px solid var(--rule);
  cursor: pointer;
  position: relative;
  transition: background .35s ease, color .35s ease;
}
.a-aeop__tab:last-of-type { border-right: 0; }
.a-aeop__tab:hover { background: var(--paper); }
.a-aeop__tab-code {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--brass);
  width: 64px;
  border-right: 1px solid var(--rule);
  padding-right: 18px;
  transition: color .35s ease, border-color .35s ease;
}
.a-aeop__tab-name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.005em;
  line-height: 1.2;
  transition: color .35s ease;
}
.a-aeop__tab-count {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--steel-2);
  text-transform: uppercase;
  transition: color .35s ease;
}
/* aktív állapot — kiválasztott tab */
#aeop-c:checked ~ .a-aeop__tabs label[for="aeop-c"],
#aeop-s:checked ~ .a-aeop__tabs label[for="aeop-s"],
#aeop-f:checked ~ .a-aeop__tabs label[for="aeop-f"] {
  background: var(--navy);
  color: #F7F4ED;
}
#aeop-c:checked ~ .a-aeop__tabs label[for="aeop-c"] .a-aeop__tab-name,
#aeop-s:checked ~ .a-aeop__tabs label[for="aeop-s"] .a-aeop__tab-name,
#aeop-f:checked ~ .a-aeop__tabs label[for="aeop-f"] .a-aeop__tab-name { color: #F7F4ED; }
#aeop-c:checked ~ .a-aeop__tabs label[for="aeop-c"] .a-aeop__tab-code,
#aeop-s:checked ~ .a-aeop__tabs label[for="aeop-s"] .a-aeop__tab-code,
#aeop-f:checked ~ .a-aeop__tabs label[for="aeop-f"] .a-aeop__tab-code {
  color: var(--brass);
  border-right-color: rgba(184, 137, 58, .35);
}
#aeop-c:checked ~ .a-aeop__tabs label[for="aeop-c"] .a-aeop__tab-count,
#aeop-s:checked ~ .a-aeop__tabs label[for="aeop-s"] .a-aeop__tab-count,
#aeop-f:checked ~ .a-aeop__tabs label[for="aeop-f"] .a-aeop__tab-count { color: var(--brass); }
/* alsó arany jelölő-vonal aktív tabon */
.a-aeop__tab::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: var(--brass);
  transform: scaleX(0);
  transition: transform .4s cubic-bezier(.2, .8, .2, 1);
}
#aeop-c:checked ~ .a-aeop__tabs label[for="aeop-c"]::after,
#aeop-s:checked ~ .a-aeop__tabs label[for="aeop-s"]::after,
#aeop-f:checked ~ .a-aeop__tabs label[for="aeop-f"]::after { transform: scaleX(1); }

/* ── Panel rendszer ── */
.a-aeop__panels { position: relative; }
.a-aeop__panel {
  display: none;
  animation: a-aeop-fade .45s ease;
}
#aeop-c:checked ~ .a-aeop__panels .a-aeop__panel[data-aeop="c"],
#aeop-s:checked ~ .a-aeop__panels .a-aeop__panel[data-aeop="s"],
#aeop-f:checked ~ .a-aeop__panels .a-aeop__panel[data-aeop="f"] { display: block; }
@keyframes a-aeop-fade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Panel intro */
.a-aeop__intro {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
  padding: 24px 0 32px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 36px;
}
.a-aeop__hero-code {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 88px;
  line-height: 1;
  color: var(--brass);
  letter-spacing: -.03em;
}
.a-aeop__hero-name {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.01em;
  margin: 0 0 10px;
  line-height: 1.15;
}
.a-aeop__hero-desc {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--steel);
  margin: 0;
  max-width: 720px;
}

/* Sub-section heading (AEOC dupla-listához) */
.a-aeop__group {
  margin-bottom: 36px;
}
.a-aeop__group:last-child { margin-bottom: 0; }
.a-aeop__group-h {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brass-dark);
}
.a-aeop__group-h::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--brass);
}
.a-aeop__group-h em {
  font-style: italic;
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--ink);
  letter-spacing: -.005em;
  text-transform: none;
  font-weight: 600;
}

/* ── Card-grid (a tényleges előny-tételek) ── */
.a-bcards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  list-style: none;
  margin: 0; padding: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.a-bcard {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 22px 24px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--bg-2);
  transition: background .3s ease;
}
.a-bcard:hover { background: var(--paper); }
.a-bcard__num {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .14em;
  color: var(--brass-dark);
  padding-top: 4px;
  min-width: 24px;
}
.a-bcard__text {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-2);
}

/* ═══════════════════════════════════════════════════════════════════════
   MUTUAL RECOGNITION — országok kártya-csíkban
   ═══════════════════════════════════════════════════════════════════════ */
.a-mutual {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid rgba(184,137,58,.25);
  border-left: 1px solid rgba(184,137,58,.25);
}
.a-mutual__item {
  padding: 28px 24px;
  border-right: 1px solid rgba(184,137,58,.25);
  border-bottom: 1px solid rgba(184,137,58,.25);
  position: relative;
  transition: background .3s ease;
}
.a-mutual__item:hover { background: rgba(184,137,58,.06); }
.a-mutual__code {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 600;
  color: var(--brass);
  letter-spacing: .04em;
  margin-bottom: 8px;
}
.a-mutual__name {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: #F7F4ED;
  margin-bottom: 14px;
  letter-spacing: -.005em;
}
.a-mutual__status {
  display: inline-block;
  padding: 3px 10px;
  border: 1px solid var(--brass-line);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brass);
}
.a-mutual__item--pending .a-mutual__status {
  color: #E5B872;
  border-style: dashed;
}

/* ═══════════════════════════════════════════════════════════════════════
   WHY US — érv-grid
   ═══════════════════════════════════════════════════════════════════════ */
.a-whyus {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
  background: var(--bg-2);
}
.a-whyus__item {
  padding: 36px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
  transition: background .3s ease;
}
.a-whyus__item:hover { background: var(--paper); }
.a-whyus__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 40px;
  line-height: 1;
  color: var(--brass);
  margin-bottom: 18px;
}
.a-whyus__cim {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 10px;
  letter-spacing: -.005em;
}
.a-whyus__lead {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--steel);
  margin: 0;
}
.a-whyus__lead strong { color: var(--navy); font-weight: 600; }

.a-whyus-quote {
  margin-top: 48px;
  padding: 36px 48px;
  border-left: 3px solid var(--brass);
  background: var(--paper);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink);
}

/* ═══════════════════════════════════════════════════════════════════════
   EVAL — elbírálási folyamat 3 fázis
   ═══════════════════════════════════════════════════════════════════════ */
.a-eval {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.a-eval__item {
  background: var(--bg-2);
  border: 1px solid var(--rule);
  padding: 36px 32px;
  position: relative;
}
.a-eval__item::before {
  content: '';
  position: absolute;
  inset: 7px;
  border: 1px solid var(--brass-line);
  pointer-events: none;
}
.a-eval__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--brass-dark);
  margin-bottom: 14px;
}
.a-eval__time {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 38px;
  line-height: 1;
  color: var(--brass);
  letter-spacing: -.015em;
  margin: 0 0 14px;
}
.a-eval__cim {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 10px;
  line-height: 1.25;
}
.a-eval__lead {
  font-size: 14px;
  line-height: 1.65;
  color: var(--steel);
  margin: 0;
}
.a-eval-summary {
  margin-top: 36px;
  padding: 28px 32px;
  background: var(--navy);
  color: #F7F4ED;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
  border: 1px solid rgba(184,137,58,.25);
  position: relative;
}
.a-eval-summary::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(184,137,58,.18);
  pointer-events: none;
}
.a-eval-summary__lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brass);
}
.a-eval-summary__val {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 28px;
  color: #F7F4ED;
  font-weight: 500;
}
.a-eval-summary__val em { color: var(--brass); }

/* ═══════════════════════════════════════════════════════════════════════
   FOLYAMAT — process timeline
   ═══════════════════════════════════════════════════════════════════════ */
.a-process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.a-process::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 42px;
  height: 1px;
  background: var(--brass-line);
}
.a-proc {
  padding: 0 28px 0 0;
  position: relative;
}
.a-proc__head {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 26px;
  position: relative;
}
.a-proc__circle {
  width: 84px; height: 84px;
  border: 1px solid var(--brass);
  display: flex; align-items: center; justify-content: center;
  background: var(--bg);
  position: relative;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 32px;
  color: var(--brass);
  z-index: 2;
}
.a-proc__circle::before {
  content: '';
  position: absolute;
  inset: 5px;
  border: 1px solid var(--brass-line);
}
.a-proc__cim {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 10px;
  line-height: 1.2;
}
.a-proc__lead {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--steel);
  margin: 0;
  padding-right: 12px;
}

/* ═══════════════════════════════════════════════════════════════════════
   BENEFITS — AEO előnyök
   ═══════════════════════════════════════════════════════════════════════ */
.a-ben {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(184, 137, 58, .25);
  border-left: 1px solid rgba(184, 137, 58, .25);
}
.a-ben__item {
  padding: 36px;
  border-right: 1px solid rgba(184, 137, 58, .25);
  border-bottom: 1px solid rgba(184, 137, 58, .25);
  background: rgba(255,255,255,.02);
  transition: background .3s ease;
}
.a-ben__item:hover { background: rgba(184, 137, 58, .06); }
.a-ben__icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--brass);
  color: var(--brass);
  font-size: 22px;
  margin-bottom: 20px;
  position: relative;
}
.a-ben__icon::before {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(184, 137, 58, .25);
}
.a-ben__cim {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  color: #F7F4ED;
  margin: 0 0 8px;
  line-height: 1.25;
}
.a-ben__lead {
  font-size: 14px;
  line-height: 1.65;
  color: #B3C0D2;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════════════════ */
.a-test-feature {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  padding: 48px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.a-test-feature__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.4;
  color: var(--ink);
  margin: 0;
  position: relative;
  padding-left: 36px;
}
.a-test-feature__quote::before {
  content: '"';
  position: absolute;
  left: 0; top: -16px;
  font-size: 84px;
  font-family: var(--font-serif);
  color: var(--brass);
  line-height: 1;
}
.a-test-feature__cite {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brass-dark);
  margin-top: 24px;
  display: block;
}
.a-test-feature__cite strong { color: var(--ink); font-weight: 500; }

.a-test-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.a-test {
  background: var(--bg-2);
  border: 1px solid var(--rule);
  padding: 32px;
  position: relative;
  transition: border-color .3s ease, transform .4s cubic-bezier(.2, .8, .2, 1);
}
.a-test:hover { border-color: var(--brass); transform: translateY(-2px); }
.a-test::before {
  content: '"';
  position: absolute;
  top: 8px; right: 22px;
  font-family: var(--font-serif);
  font-size: 64px;
  color: var(--brass-soft);
  line-height: 1;
}
.a-test__text {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-2);
  margin: 0 0 24px;
  font-style: italic;
  font-family: var(--font-serif);
}
.a-test__cite {
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}
.a-test__name {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}
.a-test__role {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--steel-2);
}
.a-test__author {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--brass-dark);
  margin-top: 4px;
}
.a-test__author::before {
  content: '—';
  font-family: var(--font-mono);
  color: var(--brass);
  font-style: normal;
}

/* ── Paginator (CSS-only radio-alapú lapozás) ── */
.a-test-pager { position: relative; }
.a-test-pager__input { position: absolute; opacity: 0; pointer-events: none; }
.a-test-pager__page {
  display: none;
  animation: a-test-fade .45s ease;
}
@keyframes a-test-fade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* aktív oldal megjelenítése */
#test-p1:checked ~ .a-test-pager__pages .a-test-pager__page[data-page="1"],
#test-p2:checked ~ .a-test-pager__pages .a-test-pager__page[data-page="2"],
#test-p3:checked ~ .a-test-pager__pages .a-test-pager__page[data-page="3"],
#test-p4:checked ~ .a-test-pager__pages .a-test-pager__page[data-page="4"],
#test-p5:checked ~ .a-test-pager__pages .a-test-pager__page[data-page="5"] { display: block; }

/* Vezérlő sáv — alul */
.a-test-pager__nav {
  margin-top: 40px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
}
.a-test-pager__indicator {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--steel);
}
.a-test-pager__indicator strong {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  color: var(--brass);
  margin-right: 4px;
  letter-spacing: -.01em;
}
.a-test-pager__dots {
  display: flex; gap: 8px; align-items: center;
}
.a-test-pager__dot {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--rule-2);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-2);
  cursor: pointer;
  transition: background .3s ease, color .3s ease, border-color .3s ease;
  background: var(--bg-2);
}
.a-test-pager__dot:hover { border-color: var(--brass); color: var(--brass-dark); }
#test-p1:checked ~ .a-test-pager__nav label[for="test-p1"],
#test-p2:checked ~ .a-test-pager__nav label[for="test-p2"],
#test-p3:checked ~ .a-test-pager__nav label[for="test-p3"],
#test-p4:checked ~ .a-test-pager__nav label[for="test-p4"],
#test-p5:checked ~ .a-test-pager__nav label[for="test-p5"] {
  background: var(--navy);
  color: var(--brass);
  border-color: var(--navy);
}
.a-test-pager__prev, .a-test-pager__next {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-2);
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--rule-2);
  background: var(--bg-2);
  cursor: pointer;
  transition: background .3s ease, color .3s ease, border-color .3s ease;
}
.a-test-pager__prev:hover, .a-test-pager__next:hover {
  background: var(--paper);
  border-color: var(--brass);
  color: var(--brass-dark);
}

/* ═══════════════════════════════════════════════════════════════════════
   REFERENCIA LISTA — tabular grid
   ═══════════════════════════════════════════════════════════════════════ */
.a-ref-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-bottom: 56px;
}
.a-ref-meta__num {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
  color: var(--brass);
  letter-spacing: -.01em;
  margin-bottom: 6px;
}
.a-ref-meta__lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--steel);
}

.a-ref-list {
  columns: 3;
  column-gap: 40px;
  column-rule: 1px solid var(--rule);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink-2);
}
.a-ref-list__item {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  padding: 6px 0;
  border-bottom: 1px dashed var(--rule);
  break-inside: avoid;
}
.a-ref-list__num {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--brass-dark);
  padding-top: 4px;
}
.a-ref-list__name { font-size: 14.5px; }

.a-ref-industries {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
  border: 1px solid var(--rule);
  background: var(--bg-2);
}
.a-ref-industries__item {
  padding: 28px 32px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.a-ref-industries__item:nth-child(3n) { border-right: 0; }
.a-ref-industries__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 38px;
  font-weight: 500;
  color: var(--brass);
  line-height: 1;
  margin-bottom: 8px;
}
.a-ref-industries__lbl {
  font-size: 14.5px;
  color: var(--ink-2);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════════════
   CIKKEK
   ═══════════════════════════════════════════════════════════════════════ */
.a-art-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.a-art {
  padding: 36px;
  background: var(--bg-2);
  border: 1px solid var(--rule);
  position: relative;
  transition: border-color .3s ease;
  display: flex; flex-direction: column;
}
.a-art:hover { border-color: var(--brass); }
.a-art__meta {
  display: flex; gap: 14px; align-items: center;
  margin-bottom: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.a-art__forras {
  color: var(--brass-dark);
  padding: 3px 9px;
  border: 1px solid var(--brass-line);
}
.a-art__date { color: var(--steel); }
.a-art__cim {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
  margin: 0 0 14px;
}
.a-art__lead {
  font-size: 15px;
  line-height: 1.65;
  color: var(--steel);
  margin: 0 0 22px;
  flex: 1;
}
.a-art__link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--navy);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--brass);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: gap .3s cubic-bezier(.2, .8, .2, 1);
}
.a-art__link:hover { gap: 14px; }

/* ═══════════════════════════════════════════════════════════════════════
   CTA SAV
   ═══════════════════════════════════════════════════════════════════════ */
.a-cta {
  background: var(--navy);
  color: #E8EEF6;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.a-cta::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass), transparent);
}
.a-cta__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: center;
}
.a-cta h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.1;
  letter-spacing: -.012em;
  color: #F7F4ED;
  margin: 0 0 18px;
}
.a-cta h2 em { font-style: italic; color: var(--brass); }
.a-cta p {
  color: #C7D2E0;
  font-size: 17px;
  line-height: 1.65;
  margin: 0;
  max-width: 580px;
}
.a-cta__actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }

/* ═══════════════════════════════════════════════════════════════════════
   KONTAKT FORM
   ═══════════════════════════════════════════════════════════════════════ */
.a-form {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: flex-start;
}
.a-form__info { position: sticky; top: 110px; }
.a-form__info-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--rule);
}
.a-form__info-item:last-child { border-bottom: 1px solid var(--rule); }
.a-form__info-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--brass-line);
  color: var(--brass);
  font-size: 14px;
}
.a-form__info-lbl {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 3px;
}
.a-form__info-val {
  font-size: 16px;
  color: var(--ink);
  font-weight: 500;
}
.a-form__info-val a { color: var(--ink); border-bottom: 1px solid var(--brass); }
.a-form__info-val a:hover { color: var(--brass-dark); }

.a-form__card {
  background: var(--bg-2);
  padding: 48px;
  border: 1px solid var(--rule);
  position: relative;
}
.a-form__card::before {
  content: '';
  position: absolute;
  inset: 7px;
  border: 1px solid var(--brass-line);
  pointer-events: none;
}
.a-form__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}
.a-form__row--single { grid-template-columns: 1fr; }
.a-form__field { display: flex; flex-direction: column; }
.a-form__label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 7px;
}
.a-form__input,
.a-form__textarea,
.a-form__select {
  font-family: var(--font-sans);
  font-size: 15px;
  padding: 12px 14px;
  background: var(--paper);
  border: 1px solid var(--rule);
  color: var(--ink);
  transition: border-color .3s ease, background .3s ease;
  outline: none;
}
.a-form__input:focus,
.a-form__textarea:focus,
.a-form__select:focus {
  border-color: var(--brass);
  background: #fff;
}
.a-form__textarea { resize: vertical; min-height: 140px; }
.a-form__radio-group {
  display: flex; gap: 24px;
  padding: 14px 0;
}
.a-form__radio {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14.5px;
  color: var(--ink-2);
  cursor: pointer;
}
.a-form__radio input { accent-color: var(--brass); }
.a-form__submit {
  margin-top: 16px;
  padding: 14px 32px;
  background: var(--navy);
  color: #F4EFE2;
  border: 0;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .03em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 12px;
  transition: background .3s ease;
}
.a-form__submit:hover { background: var(--brass); color: var(--navy-deep); }
.a-form__legal {
  font-size: 12px;
  color: var(--steel);
  margin: 18px 0 0;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════════════
   REFSCROLL — kompakt 3-soros marquee referencia-csík
   ═══════════════════════════════════════════════════════════════════════ */
.a-refscroll {
  background: var(--navy);
  color: #E8EEF6;
  position: relative;
  overflow: hidden;
  padding: 72px 0 56px;
}
.a-refscroll::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 100%, rgba(184, 137, 58, .10) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 0%, rgba(30, 61, 94, .55) 0%, transparent 55%);
  pointer-events: none;
}
.a-refscroll::after {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass), transparent);
}

.a-refscroll__head {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
  gap: 32px;
  padding-bottom: 36px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(184, 137, 58, .25);
}
.a-refscroll__intro { max-width: 720px; }
.a-refscroll__eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 16px;
}
.a-refscroll__eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--brass);
}
.a-refscroll__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.1;
  letter-spacing: -.013em;
  color: #F7F4ED;
  margin: 0;
}
.a-refscroll__title em { font-style: italic; color: var(--brass); }
.a-refscroll__stat {
  text-align: right;
  border-left: 1px solid rgba(184, 137, 58, .3);
  padding-left: 32px;
}
.a-refscroll__stat-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(56px, 6vw, 96px);
  line-height: 1;
  color: var(--brass);
  letter-spacing: -.025em;
  margin-bottom: 8px;
}
.a-refscroll__stat-lbl {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

/* A marquee 3 sora */
.a-refscroll__rows {
  position: relative;
  margin: 0 -32px;                                    /* edge-to-edge */
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.a-refscroll__track {
  display: flex;
  width: max-content;
  gap: 14px;
  padding: 6px 0;
  animation: a-refscroll-x 80s linear infinite;
}
.a-refscroll__track--reverse { animation-direction: reverse; animation-duration: 95s; }
.a-refscroll__track--slow    { animation-duration: 110s; }
.a-refscroll__rows:hover .a-refscroll__track { animation-play-state: paused; }
@keyframes a-refscroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.a-refscroll__chip {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  border: 1px solid rgba(184, 137, 58, .25);
  background: rgba(255,255,255,.02);
  font-family: var(--font-serif);
  font-size: 14.5px;
  font-weight: 500;
  color: #D7DEEA;
  white-space: nowrap;
  transition: background .35s ease, color .35s ease, border-color .35s ease;
}
.a-refscroll__chip:hover {
  background: rgba(184, 137, 58, .12);
  color: #F7F4ED;
  border-color: var(--brass);
}
.a-refscroll__chip-num {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: .08em;
  color: var(--brass);
}

/* Alsó CTA-sáv a marquee alatt */
.a-refscroll__foot {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
}
.a-refscroll__foot-text {
  font-size: 14px;
  color: #93A1B5;
  font-family: var(--font-mono);
  letter-spacing: .05em;
}
.a-refscroll__foot-text strong { color: var(--brass); font-weight: 500; }

/* ═══════════════════════════════════════════════════════════════════════
   FAQ — expandable
   ═══════════════════════════════════════════════════════════════════════ */
.a-faq {
  border-top: 1px solid var(--rule);
}
.a-faq__item {
  border-bottom: 1px solid var(--rule);
}
.a-faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 0;
  display: grid;
  grid-template-columns: 48px 1fr 32px;
  gap: 20px;
  align-items: flex-start;
  transition: color .3s ease;
}
.a-faq__item summary::-webkit-details-marker { display: none; }
.a-faq__num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--brass-dark);
  padding-top: 6px;
}
.a-faq__q {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  letter-spacing: -.005em;
}
.a-faq__toggle {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--rule-2);
  color: var(--brass-dark);
  font-size: 12px;
  transition: background .3s ease, color .3s ease, transform .4s cubic-bezier(.2, .8, .2, 1);
}
.a-faq__item[open] .a-faq__toggle {
  background: var(--navy);
  color: var(--brass);
  transform: rotate(45deg);
  border-color: var(--navy);
}
.a-faq__item:hover summary { color: var(--brass-dark); }
.a-faq__a {
  padding: 0 0 28px 68px;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ink-2);
  max-width: 880px;
}
.a-faq__a p { margin: 0 0 14px; }
.a-faq__a p:last-child { margin-bottom: 0; }
.a-faq__a strong { color: var(--navy); font-weight: 600; }
.a-faq__a em { font-style: italic; color: var(--brass-dark); }
.a-faq__link {
  color: var(--brass-dark);
  border-bottom: 1px solid var(--brass-line);
  display: inline-flex; align-items: center; gap: 6px;
  transition: color .25s ease, border-color .25s ease;
}
.a-faq__link:hover { color: var(--brass); border-color: var(--brass); }
.a-faq__link i { font-size: 11px; }

/* Listák a válaszokon belül */
.a-faq__list {
  margin: 8px 0 16px;
  padding: 0;
  list-style: none;
}
.a-faq__list li {
  position: relative;
  padding: 5px 0 5px 22px;
  border-bottom: 1px dashed var(--rule);
}
.a-faq__list li:last-child { border-bottom: 0; }
.a-faq__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 16px;
  width: 10px; height: 1px;
  background: var(--brass);
}
.a-faq__list--cols {
  columns: 2;
  column-gap: 32px;
}
.a-faq__list--cols li { break-inside: avoid; }
/* Számozott lista (folyamat-lépések) */
.a-faq__list--num {
  list-style: none;
  counter-reset: faqnum;
}
.a-faq__list--num li {
  counter-increment: faqnum;
  padding-left: 44px;
}
.a-faq__list--num li::before {
  content: counter(faqnum, decimal-leading-zero);
  background: transparent;
  width: auto; height: auto;
  top: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--brass-dark);
  letter-spacing: .1em;
}
/* Figyelmeztető lista (szankciók) */
.a-faq__list--warn li::before { background: var(--crimson); }

/* Jegyzet-doboz (példa, speciális eset) */
.a-faq__note {
  margin: 18px 0;
  padding: 18px 22px;
  background: var(--brass-soft);
  border-left: 3px solid var(--brass);
}
.a-faq__note-h {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brass-dark);
  margin-bottom: 8px;
}
.a-faq__note p { margin: 0; font-size: 15px; }

/* ═══════════════════════════════════════════════════════════════════════
   PAGE HERO (al-oldalakhoz)
   ═══════════════════════════════════════════════════════════════════════ */
.a-page-hero {
  background: var(--navy);
  color: #E8EEF6;
  padding: 72px 0 56px;
  position: relative;
  border-bottom: 1px solid rgba(184, 137, 58, .25);
}
.a-page-hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass) 30%, var(--brass) 70%, transparent);
}
.a-page-hero__inner { max-width: 980px; }
.a-bread {
  display: flex; gap: 10px; align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #8A9AB0;
  margin-bottom: 24px;
}
.a-bread a { color: var(--brass); }
.a-bread__sep { color: rgba(255,255,255,.2); }
.a-page-hero h1 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1.08;
  letter-spacing: -.018em;
  color: #F7F4ED;
  margin: 0 0 22px;
}
.a-page-hero h1 em { font-style: italic; color: var(--brass); }
.a-page-hero__lead {
  font-size: 19px;
  line-height: 1.6;
  color: #C7D2E0;
  margin: 0;
  max-width: 760px;
}

/* ═══════════════════════════════════════════════════════════════════════
   ROLUNK — fact box
   ═══════════════════════════════════════════════════════════════════════ */
.a-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
  margin-bottom: 56px;
  background: var(--bg-2);
}
.a-facts__item {
  padding: 24px 28px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.a-facts__item:nth-child(3n) { border-right: 0; }
.a-facts__lbl {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 6px;
}
.a-facts__val {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.005em;
}

/* PROSE blokk al-oldalakhoz */
.a-prose {
  max-width: 820px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.78;
  color: var(--ink-2);
}
.a-prose h2 {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 600;
  color: var(--ink);
  margin: 48px 0 18px;
  letter-spacing: -.01em;
}
.a-prose h2:first-child { margin-top: 0; }
.a-prose h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin: 32px 0 12px;
}
.a-prose p { margin: 0 0 16px; }
.a-prose ul { margin: 0 0 18px; padding-left: 22px; }
.a-prose ul li { margin-bottom: 8px; }
.a-prose strong { color: var(--navy); font-weight: 600; }
.a-prose a { color: var(--brass-dark); border-bottom: 1px solid var(--brass-line); }
.a-prose a:hover { color: var(--brass); }
.a-prose blockquote {
  margin: 32px 0;
  padding: 24px 32px;
  background: var(--paper);
  border-left: 3px solid var(--brass);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 19px;
  color: var(--ink);
  line-height: 1.55;
}

/* ═══════════════════════════════════════════════════════════════════════
   CIKKEK — listázó oldal (cikkek.php)
   ═══════════════════════════════════════════════════════════════════════ */
.a-cikkek-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 24px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-bottom: 48px;
}
.a-cikkek-meta__item {
  padding: 12px 32px;
  border-right: 1px solid var(--rule);
}
.a-cikkek-meta__item:last-child { border-right: 0; }
.a-cikkek-meta__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 48px;
  line-height: 1;
  color: var(--brass);
  letter-spacing: -.018em;
  margin-bottom: 6px;
}
.a-cikkek-meta__lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--steel);
}

.a-cikkek-list { display: flex; flex-direction: column; gap: 0; }
.a-cikkek-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 36px;
  padding: 48px 0;
  border-top: 1px solid var(--rule);
  position: relative;
  transition: padding-left .35s cubic-bezier(.2, .8, .2, 1);
}
.a-cikkek-row:last-child { border-bottom: 1px solid var(--rule); }
.a-cikkek-row::before {
  content: '';
  position: absolute;
  left: 0; top: 48px;
  width: 0; height: 1px;
  background: var(--brass);
  transition: width .55s cubic-bezier(.2, .8, .2, 1);
}
.a-cikkek-row:hover { padding-left: 12px; }
.a-cikkek-row:hover::before { width: 84px; }

.a-cikkek-row__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 76px;
  line-height: 1;
  color: var(--brass);
  letter-spacing: -.025em;
}
.a-cikkek-row__body { min-width: 0; max-width: 820px; }
.a-cikkek-row__meta {
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.a-cikkek-row__forras {
  padding: 4px 12px;
  background: var(--brass);
  color: var(--navy-deep);
  font-weight: 500;
}
.a-cikkek-row__date { color: var(--steel-2); }
.a-cikkek-row__type {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 10px;
  border: 1px solid var(--brass-line);
  color: var(--brass-dark);
}
.a-cikkek-row__type i { font-size: 10px; }
.a-cikkek-row__type--prose {
  border-color: var(--rule-2);
  color: var(--steel);
}
.a-cikkek-row__author {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--steel);
}
.a-cikkek-row__cim {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.1;
  letter-spacing: -.012em;
  color: var(--ink);
  margin: 0 0 16px;
}
.a-cikkek-row__cim a {
  color: inherit;
  background-image: linear-gradient(var(--brass), var(--brass));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  transition: background-size .5s cubic-bezier(.2, .8, .2, 1);
}
.a-cikkek-row__cim a:hover { background-size: 100% 1px; }
.a-cikkek-row__lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.6;
  color: var(--steel);
  margin: 0 0 22px;
}
.a-cikkek-row__cta {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--brass-dark);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--brass-line);
  padding-bottom: 4px;
  transition: gap .3s cubic-bezier(.2, .8, .2, 1), color .3s ease;
}
.a-cikkek-row__cta:hover { gap: 14px; color: var(--brass); }

/* ═══════════════════════════════════════════════════════════════════════
   ARTICLE READER (cikk.php) — magazin-stílusú olvasó-oldal
   ═══════════════════════════════════════════════════════════════════════ */
.a-article-hero {
  background: var(--navy);
  color: #E8EEF6;
  padding: 80px 0 60px;
  position: relative;
  border-bottom: 1px solid rgba(184, 137, 58, .25);
}
.a-article-hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass), transparent);
}
.a-article-hero__inner { max-width: 920px; }
.a-article-hero__meta {
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.a-article-hero__forras {
  padding: 4px 12px;
  border: 1px solid var(--brass-line);
  background: rgba(184, 137, 58, .08);
  color: var(--brass);
}
.a-article-hero__date { color: rgba(255,255,255,.5); }
.a-article-hero__type {
  padding: 4px 12px;
  background: var(--brass);
  color: var(--navy-deep);
}
.a-article-hero__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(34px, 4.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -.018em;
  color: #F7F4ED;
  margin: 0 0 24px;
}
.a-article-hero__lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  color: #C7D2E0;
  margin: 0 0 32px;
  max-width: 780px;
}
.a-article-hero__byline {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 14px 22px;
  border: 1px solid rgba(184, 137, 58, .3);
  background: rgba(7, 23, 42, .4);
}
.a-article-hero__byline i {
  color: var(--brass);
  font-size: 14px;
}
.a-article-hero__byline-name {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  color: #F7F4ED;
  line-height: 1.2;
}
.a-article-hero__byline-role {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brass);
  margin-top: 3px;
}

/* ── Cikk-törzs ── */
.a-article {
  max-width: 760px;
  margin: 0 auto;
  font-family: var(--font-serif);
}
.a-article__lead {
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.6;
  color: var(--ink);
  font-weight: 500;
  margin: 0 0 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}
.a-article__lead strong { color: var(--brass-dark); font-weight: 600; }
.a-article__lead em { font-style: italic; color: var(--brass-dark); }

.a-article__p {
  font-size: 17.5px;
  line-height: 1.78;
  color: var(--ink-2);
  margin: 0 0 18px;
  font-family: var(--font-serif);
  font-weight: 400;
}
.a-article__p strong { color: var(--navy); font-weight: 600; }
.a-article__p em { font-style: italic; color: var(--brass-dark); }
/* drop-cap az első bekezdésen */
.a-article__p.is-first::first-letter {
  font-family: var(--font-serif);
  font-size: 74px;
  font-weight: 600;
  float: left;
  line-height: .85;
  padding: 6px 14px 0 0;
  color: var(--brass);
  letter-spacing: -.02em;
}

.a-article__h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -.012em;
  color: var(--ink);
  margin: 48px 0 18px;
  position: relative;
  padding-left: 26px;
}
.a-article__h2::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 14px; height: 2px;
  background: var(--brass);
}
.a-article__h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 22px;
  color: var(--ink);
  margin: 36px 0 12px;
}

.a-article__quote {
  margin: 36px -32px;
  padding: 32px 56px;
  background: var(--paper);
  border-left: 4px solid var(--brass);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 24px;
  line-height: 1.45;
  color: var(--ink);
  position: relative;
}
.a-article__quote-mark {
  position: absolute;
  left: 16px; top: -8px;
  font-family: var(--font-serif);
  font-size: 78px;
  color: var(--brass);
  line-height: 1;
}

.a-article__callout {
  margin: 32px 0;
  padding: 28px 32px;
  background: var(--navy);
  color: #F7F4ED;
  position: relative;
}
.a-article__callout::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(184, 137, 58, .25);
  pointer-events: none;
}
.a-article__callout-h {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 10px;
}
.a-article__callout p {
  font-family: var(--font-serif);
  font-size: 17.5px;
  line-height: 1.55;
  color: #E8EEF6;
  margin: 0;
}

/* Interjú-formátum: Q és A blokkok */
.a-article__q {
  margin: 40px 0 16px;
  padding: 24px 28px;
  background: var(--paper);
  border-top: 1px solid var(--rule-2);
  border-bottom: 1px solid var(--rule-2);
}
.a-article__q-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brass-dark);
  margin-bottom: 10px;
}
.a-article__q-text {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: -.005em;
}
.a-article__a {
  font-family: var(--font-serif);
  font-size: 17.5px;
  line-height: 1.78;
  color: var(--ink-2);
  margin: 0 0 14px;
  padding-left: 28px;
  border-left: 2px solid var(--rule);
}
.a-article__a strong { color: var(--navy); font-weight: 600; }
.a-article__a em { font-style: italic; color: var(--brass-dark); }

/* Cikk-vége láb */
.a-article__foot {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 18px;
}
.a-article__back {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brass-dark);
  border-bottom: 1px solid var(--brass-line);
  padding-bottom: 4px;
  transition: gap .3s ease;
}
.a-article__back:hover { gap: 18px; color: var(--brass); }
.a-article__share {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--steel);
}
.a-article__share a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--rule-2);
  color: var(--steel);
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.a-article__share a:hover {
  background: var(--navy);
  color: var(--brass);
  border-color: var(--navy);
}

/* ═══════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════ */
.a-footer { background: var(--navy-deep); color: #B3C0D2; }
.a-footer__top {
  padding: 72px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.a-footer__top-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}
.a-footer__brand .a-logo { color: #F4EFE2; }
.a-footer__brand .a-logo__tld { color: #B3C0D2; border-left-color: rgba(255,255,255,.15); }
.a-footer__about {
  font-size: 14px;
  line-height: 1.7;
  color: #93A1B5;
  margin: 18px 0 0;
  max-width: 380px;
}
.a-footer__col-h {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 20px;
}
.a-footer__col ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 11px;
}
.a-footer__col a {
  font-size: 14px;
  color: #B3C0D2;
  transition: color .3s ease, padding-left .3s cubic-bezier(.2, .8, .2, 1);
  display: inline-flex; align-items: center;
}
.a-footer__col a:hover { color: var(--brass); padding-left: 4px; }
.a-footer__contact {
  display: flex; flex-direction: column; gap: 14px;
  font-size: 14px;
}
.a-footer__contact-row {
  display: grid; grid-template-columns: 18px 1fr; gap: 10px;
  align-items: flex-start;
}
.a-footer__contact i { color: var(--brass); font-size: 13px; padding-top: 4px; }
.a-footer__contact a { color: #B3C0D2; }
.a-footer__contact a:hover { color: var(--brass); }

/* ── Cégadatok sáv — visszafogott egysoros névjegy, mélyebb regiszter ── */
.a-footer__company {
  background: #030B17;                                /* mélyebb, mint a navy-deep */
  border-top: 1px solid rgba(0,0,0,.35);
  border-bottom: 1px solid rgba(0,0,0,.35);
  box-shadow:
    inset 0  1px 0 rgba(255,255,255,.025),            /* finom highlight a tetejéről */
    inset 0 -1px 0 rgba(255,255,255,.025);            /* és az aljáról — bemélyedés érzet */
}
.a-footer__company-inner {
  padding: 18px 32px;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12.5px;
  color: #93A1B5;
}
.a-footer__company-eyebrow {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brass);
}
.a-footer__company-name {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 14px;
  color: #D7DEEA;
  letter-spacing: -.005em;
  margin: 0;
}
.a-footer__company-meta {
  display: inline-flex; align-items: center; gap: 16px;
  flex-wrap: wrap;
}
.a-footer__company-meta-sep {
  color: rgba(255,255,255,.18);
  user-select: none;
}
.a-footer__company-meta-item {
  display: inline-flex; align-items: center; gap: 7px;
}
.a-footer__company-meta-lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #6E7F95;
}
.a-footer__company-meta-val { color: #B3C0D2; }
.a-footer__company-meta-val--mono {
  font-family: var(--font-mono);
  letter-spacing: .03em;
  color: var(--brass);
  font-size: 12px;
}

.a-footer__bottom {
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  color: #6E7F95;
}
.a-footer__bottom a { color: #93A1B5; }
.a-footer__bottom a:hover { color: var(--brass); }
.a-footer__legal { display: flex; gap: 20px; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .a-hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .a-intro { grid-template-columns: 1fr; gap: 36px; }
  .a-intro__left { position: static; }
  .a-define { grid-template-columns: 1fr; gap: 36px; }
  .a-process { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .a-process::before { display: none; }
  .a-ref-list { columns: 2; }
  .a-form { grid-template-columns: 1fr; gap: 36px; }
  .a-team { grid-template-columns: repeat(2, 1fr); gap: 40px 28px; }
  .a-team-lead { grid-template-columns: 1fr; gap: 18px; }
  .a-feat, .a-feat--flipped { grid-template-columns: 1fr; gap: 36px; padding: 48px 0; }
  .a-feat--flipped .a-feat__panel { order: 0; }
  .a-welcome { grid-template-columns: 1fr; gap: 12px; padding: 22px 24px; }
  .a-welcome__slogan { border-right: 0; padding-right: 0; padding-bottom: 12px; border-bottom: 1px solid rgba(184,137,58,.35); }
  .a-checklist { grid-template-columns: repeat(2, 1fr); }
  .a-aeop__tabs { grid-template-columns: 1fr; }
  .a-aeop__tab { border-right: 0; border-bottom: 1px solid var(--rule); }
  .a-aeop__tab:last-of-type { border-bottom: 0; }
  .a-aeop__intro { grid-template-columns: 1fr; gap: 16px; }
  .a-aeop__hero-code { font-size: 72px; }
  .a-bcards { grid-template-columns: repeat(2, 1fr); }
  .a-mutual { grid-template-columns: repeat(2, 1fr); }
  .a-whyus { grid-template-columns: repeat(2, 1fr); }
  .a-eval { grid-template-columns: 1fr; }
}
@media (max-width: 1100px) and (min-width: 821px) {
  .a-whyworld { grid-template-columns: 1fr; }
  .a-eligible { grid-template-columns: repeat(2, 1fr); }
  .a-cond { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .a-cikkek-meta { grid-template-columns: 1fr; gap: 8px; }
  .a-cikkek-meta__item { border-right: 0; border-bottom: 1px solid var(--rule); padding: 14px 0; }
  .a-cikkek-meta__item:last-child { border-bottom: 0; }
  .a-cikkek-row { grid-template-columns: 1fr; gap: 18px; padding: 36px 0; }
  .a-cikkek-row__num { font-size: 56px; }
  .a-checklist { grid-template-columns: 1fr; }
  .a-bcards { grid-template-columns: 1fr; }

  /* ── Miért velünk? — kompakt mobilon ── */
  .a-whyus { grid-template-columns: 1fr; }
  .a-whyus__item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px 18px;
    padding: 22px 20px;
    align-items: flex-start;
  }
  .a-whyus__num {
    font-size: 30px;
    margin-bottom: 0;
    grid-row: 1 / span 2;
    align-self: flex-start;
    line-height: 1;
    padding-top: 2px;
  }
  .a-whyus__cim { font-size: 17px; margin-bottom: 6px; grid-column: 2; }
  .a-whyus__lead { font-size: 14px; grid-column: 2; }
  .a-whyus-quote { margin-top: 32px; padding: 24px 28px; font-size: 17px; line-height: 1.5; }

  /* ── AEO-előnyök — accordion mobilon ── */
  .a-aeop__tabs { display: none; }                /* desktop tab-strip elrejtve */
  .a-aeop__acc {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border: 1px solid var(--rule);
    background: var(--bg-2);
    cursor: pointer;
    transition: background .3s ease, border-color .3s ease, color .3s ease;
    margin-bottom: -1px;                          /* dupla-szegély eltüntetése */
  }
  .a-aeop__acc-code {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .04em;
    color: var(--brass);
    padding-right: 12px;
    border-right: 1px solid var(--rule);
  }
  .a-aeop__acc-name {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.25;
    display: flex; flex-direction: column;
    gap: 2px;
  }
  .a-aeop__acc-count {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--steel);
  }
  .a-aeop__acc-toggle {
    width: 30px; height: 30px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--rule-2);
    color: var(--brass-dark);
    font-size: 12px;
    transition: transform .35s cubic-bezier(.2, .8, .2, 1), background .25s ease, color .25s ease;
  }
  /* aktív accordion-header — kiválasztott állapot */
  #aeop-c:checked ~ .a-aeop__panels label[for="aeop-c"],
  #aeop-s:checked ~ .a-aeop__panels label[for="aeop-s"],
  #aeop-f:checked ~ .a-aeop__panels label[for="aeop-f"] {
    background: var(--navy);
    border-color: var(--navy);
  }
  #aeop-c:checked ~ .a-aeop__panels label[for="aeop-c"] .a-aeop__acc-name,
  #aeop-s:checked ~ .a-aeop__panels label[for="aeop-s"] .a-aeop__acc-name,
  #aeop-f:checked ~ .a-aeop__panels label[for="aeop-f"] .a-aeop__acc-name { color: #F7F4ED; }
  #aeop-c:checked ~ .a-aeop__panels label[for="aeop-c"] .a-aeop__acc-count,
  #aeop-s:checked ~ .a-aeop__panels label[for="aeop-s"] .a-aeop__acc-count,
  #aeop-f:checked ~ .a-aeop__panels label[for="aeop-f"] .a-aeop__acc-count { color: rgba(255,255,255,.55); }
  #aeop-c:checked ~ .a-aeop__panels label[for="aeop-c"] .a-aeop__acc-code,
  #aeop-s:checked ~ .a-aeop__panels label[for="aeop-s"] .a-aeop__acc-code,
  #aeop-f:checked ~ .a-aeop__panels label[for="aeop-f"] .a-aeop__acc-code { border-right-color: rgba(184, 137, 58, .35); }
  #aeop-c:checked ~ .a-aeop__panels label[for="aeop-c"] .a-aeop__acc-toggle,
  #aeop-s:checked ~ .a-aeop__panels label[for="aeop-s"] .a-aeop__acc-toggle,
  #aeop-f:checked ~ .a-aeop__panels label[for="aeop-f"] .a-aeop__acc-toggle {
    background: var(--brass);
    color: var(--navy);
    border-color: var(--brass);
    transform: rotate(45deg);                     /* + → × */
  }
  /* Panel padding csökkentése a header alatt */
  .a-aeop__panel { padding: 20px 0 32px; }
  .a-aeop__intro { padding: 0 0 22px; margin-bottom: 24px; gap: 18px; }
  .a-aeop__hero-code { font-size: 56px; }
  .a-aeop__hero-name { font-size: 22px; margin-bottom: 6px; }
  .a-aeop__hero-desc { font-size: 14.5px; }
  .a-aeop__group-h { margin: 24px 0 12px; }
  .a-aeop__group:first-child .a-aeop__group-h { margin-top: 8px; }
  .a-whyworld { grid-template-columns: 1fr; }
  .a-eligible { grid-template-columns: 1fr; }
  .a-cond { grid-template-columns: 1fr; }

  /* ── Kölcsönös elismerés — kompakt vízszintes elrendezés ── */
  .a-mutual { grid-template-columns: 1fr; }
  .a-mutual__item {
    display: grid;
    grid-template-columns: 56px 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
  }
  .a-mutual__code {
    font-size: 22px;
    margin-bottom: 0;
    line-height: 1;
  }
  .a-mutual__name {
    font-size: 15px;
    margin-bottom: 0;
    line-height: 1.25;
  }
  .a-mutual__status {
    padding: 3px 8px;
    font-size: 9.5px;
    letter-spacing: .08em;
    white-space: nowrap;
  }
}

@media (max-width: 820px) {
  .a-section { padding: 64px 0; }
  .a-hero { padding: 64px 0; }
  .a-hero__strip { grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
  .a-stats { grid-template-columns: repeat(2, 1fr); gap: 48px 24px; padding: 40px 0 56px; }
  .a-stats__item { padding-right: 0; }
  .a-stats__item + .a-stats__item::before { display: none; }
  .a-stats__item:nth-child(3)::before, .a-stats__item:nth-child(4)::before {
    content: ''; position: absolute; left: -12px; top: 18%; width: 1px; height: 64%;
    background: linear-gradient(180deg, transparent, var(--brass-line), transparent);
    display: block;
  }
  .a-stats-head { padding: 40px 0 22px; }
  .a-svc-grid { grid-template-columns: 1fr; }
  .a-svc--wide { grid-column: auto; }      /* mobilon ne span 2 — egy oszlop */
  .a-svc { padding: 28px 24px 28px 24px; }
  .a-svc__icon { right: 24px; top: 28px; font-size: 18px; }
  .a-svc__cim { font-size: 19px; padding-right: 36px; }

  /* ── PROCESS mobilon — szám balra (mindkét sort átfogja), tartalom jobbra ── */
  .a-process { grid-template-columns: 1fr; gap: 0; }
  .a-process::before { display: none; }    /* vízszintes timeline-vonal elrejtve */
  .a-proc {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 18px;
    row-gap: 6px;
    padding: 22px 0;
    border-bottom: 1px solid var(--rule);
    align-items: flex-start;
  }
  .a-proc:last-child { border-bottom: 0; }
  .a-proc__head {
    grid-column: 1;
    grid-row: 1 / span 2;       /* a szám a teljes magasságot átfogja */
    margin-bottom: 0;
    align-self: flex-start;
  }
  .a-proc__circle {
    width: 52px; height: 52px;
    font-size: 22px;
  }
  .a-proc__circle::before { inset: 3px; }
  .a-proc__cim { grid-column: 2; grid-row: 1; font-size: 17px; margin: 0; padding-top: 4px; }
  .a-proc__lead { grid-column: 2; grid-row: 2; font-size: 14px; padding-right: 0; margin: 0; }
  .a-ben { grid-template-columns: 1fr; }
  .a-test-feature { grid-template-columns: 1fr; gap: 32px; padding: 32px 0; }
  .a-test-grid { grid-template-columns: 1fr; }
  .a-art-grid { grid-template-columns: 1fr; }
  .a-ref-list { columns: 1; }
  .a-ref-meta { grid-template-columns: 1fr; gap: 12px; }
  .a-ref-industries { grid-template-columns: 1fr; }
  .a-ref-industries__item { border-right: 0; }
  .a-cta__inner { grid-template-columns: 1fr; gap: 32px; }
  .a-cta__actions { justify-content: flex-start; }
  .a-facts { grid-template-columns: 1fr; }
  .a-facts__item { border-right: 0; }
  .a-form__row { grid-template-columns: 1fr; }
  .a-form__card { padding: 28px; }
  .a-footer__top-inner {
    grid-template-columns: 1fr 1fr;      /* 2 oszlop mobilon */
    gap: 32px 24px;
    padding-bottom: 0;
  }
  .a-footer__brand { grid-column: 1 / -1; }     /* brand: teljes szélesség */
  .a-footer__col:nth-of-type(4) { grid-column: 1 / -1; }   /* Kapcsolat: teljes szélesség */
  .a-footer__top { padding: 56px 0 40px; }
  .a-footer__about { max-width: none; }
  .a-footer__company-inner { padding: 16px 20px; gap: 10px; flex-direction: column; text-align: center; }
  .a-footer__company-meta { gap: 12px; }

  /* ── HEADER mobilon ── */
  :root { --gutter: 24px; }
  .a-header__inner { grid-template-columns: 1fr auto; gap: 12px; padding-top: 16px; padding-bottom: 16px; }
  .a-logo {
    font-size: 32px;
    letter-spacing: -.022em;
    align-items: center;
  }
  .a-logo__tld { display: none; }
  .a-nav { display: none; }
  .a-header__cta { display: none; }
  .a-menu-toggle { display: inline-flex; width: 48px; height: 48px; }

  /* ── TOPBAR mobilon — kontakt balra, nyelvváltó jobbra ── */
  .a-topbar__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 9px;
    padding-bottom: 9px;
  }
  .a-topbar__left {
    display: flex; align-items: center; gap: 14px;
    flex: 1; min-width: 0;
    font-size: 10.5px;
  }
  .a-topbar__left a { gap: 6px; }
  .a-topbar__left a:last-child { white-space: nowrap; }
  .a-topbar__right {
    display: flex; align-items: center;
    gap: 10px;
    flex-shrink: 0;
  }
  .a-topbar__right > span:first-child { display: none; }   /* "Magyarország · EU" elrejtve */
  .a-topbar__sep { display: none; }
  .a-topbar__lang { font-size: 11px; }
  .a-topbar__lang a { padding: 2px 8px; }

  .a-faq__a { padding-left: 0; word-wrap: break-word; overflow-wrap: break-word; }
  .a-faq__a a { word-break: break-all; }  /* hosszú URL-ek tördelése */
  .a-faq__list--cols { columns: 1; }
  .a-faq__item summary { grid-template-columns: 32px 1fr 32px; gap: 12px; padding: 22px 0; }
  .a-faq__q { font-size: 18px; line-height: 1.3; }
  .a-faq__num { padding-top: 4px; }
  /* footer meta vertikális elválasztó megjelenítve mobilon */
  .a-footer__company-meta-sep { display: none; }
  /* hero h1 finomítás */
  .a-hero h1 { word-wrap: break-word; overflow-wrap: break-word; hyphens: auto; }
  /* prose word-wrap */
  .a-prose, .a-article { word-wrap: break-word; overflow-wrap: break-word; }
  .a-refscroll__head { grid-template-columns: 1fr; align-items: flex-start; }
  .a-refscroll__stat { border-left: 0; border-top: 1px solid rgba(184,137,58,.25); padding: 18px 0 0; text-align: left; }
  .a-refscroll__chip { padding: 8px 14px; font-size: 13.5px; }
}
@media (prefers-reduced-motion: reduce) {
  .a-refscroll__track { animation: none; }
}
