/* =========================================================================
   Kis István · Coaching — Design System
   Paletta: mély navy/kék + hűvös világos háttér + visszafogott arany szikra
   Tipográfia: Source Serif 4 (címek) + Inter (szöveg)
   ========================================================================= */

:root {
  /* Brand — navy / kék */
  --navy-900: #0B1E3B;   /* legsötétebb — footer */
  --navy-800: #102A4F;   /* sötét szekciók */
  --navy:     #16345C;   /* mély brand (ikonok, chipek) */
  --brand:    #1E50A8;   /* elsődleges brand-kék */
  --brand-600:#2563C9;   /* gombok / akcent */
  --brand-500:#3B82F6;   /* élénk / linkek / hover */
  --brand-400:#6AA3F7;   /* világos akcent */

  /* Meleg szikra (visszafogottan) */
  --gold:      #D7A53C;
  --gold-soft: #E9C77A;

  /* Hűvös semlegesek */
  --bg:       #F6F9FD;
  --bg-alt:   #EBF1FA;
  --surface:  #FFFFFF;
  --sky-tint: #E4EEFB;   /* halvány kék tint */

  /* Szöveg */
  --ink:   #14223C;
  --ink-2: #45566F;
  --ink-3: #6B7A91;

  /* Vonalak / felületek */
  --line:      #E0E8F2;
  --line-soft: rgba(16, 40, 80, 0.08);

  /* Árnyékok (navy-ra hangolva) */
  --shadow-sm: 0 1px 2px rgba(16, 40, 80, 0.06), 0 2px 8px rgba(16, 40, 80, 0.05);
  --shadow:    0 6px 24px rgba(16, 40, 80, 0.09), 0 2px 8px rgba(16, 40, 80, 0.05);
  --shadow-lg: 0 24px 60px rgba(11, 30, 59, 0.16), 0 8px 24px rgba(11, 30, 59, 0.09);

  /* Forma */
  --r-sm:   10px;
  --r:      16px;
  --r-lg:   24px;
  --r-xl:   32px;
  --r-pill: 999px;

  /* Tipográfia */
  --font-display: "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Elrendezés */
  --container: 1160px;
  --narrow: 760px;

  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset / alap ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: var(--brand); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--brand-500); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 0.5em;
}

p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; }

::selection { background: var(--brand-600); color: #fff; }

:focus-visible {
  outline: 3px solid var(--brand-500);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Elrendezési segédek ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; position: relative; }
.section--tight { padding: 72px 0; }
.section--cream2 { background: var(--bg-alt); }
.section--petrol {
  background: var(--navy);
  color: #D5E2F2;
}
.section--petrol h1, .section--petrol h2, .section--petrol h3 { color: #fff; }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-600);
  margin-bottom: 18px;
}
.eyebrow::before { display: none; }
.eyebrow.center { justify-content: center; }
.section--petrol .eyebrow { color: var(--gold-soft); }
.section--petrol .eyebrow::before { background: var(--gold); }

h1 { font-size: clamp(2.4rem, 5.2vw, 3.75rem); }
h2 { font-size: clamp(1.95rem, 3.6vw, 2.8rem); }
h3 { font-size: 1.34rem; }

.lead {
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  line-height: 1.6;
  color: var(--ink-2);
}
.section--petrol .lead { color: #C4D4EC; }
.muted { color: var(--ink-3); }

/* ---------- Gombok ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: 15px 26px;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.18s var(--ease), box-shadow 0.25s var(--ease),
              background-color 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
/* A foglalós linkeken belüli ikon ne fogja el a kattintást, hogy a Cal popup mindig megnyíljon. */
[data-cal-link] svg { pointer-events: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--brand-600);
  color: #fff;
  box-shadow: 0 8px 22px rgba(37, 99, 201, 0.30);
}
.btn--primary:hover { background: var(--brand); color: #fff; box-shadow: 0 12px 28px rgba(37, 99, 201, 0.4); }

.btn--dark {
  background: var(--navy);
  color: #fff;
}
.btn--dark:hover { background: var(--navy-800); color: #fff; box-shadow: var(--shadow); }

.btn--ghost {
  background: transparent;
  color: var(--brand);
  border-color: rgba(30, 80, 168, 0.28);
}
.btn--ghost:hover { background: rgba(30, 80, 168, 0.06); color: var(--navy-800); border-color: var(--brand); }

.btn--on-dark {
  background: #fff;
  color: var(--navy-800);
}
.btn--on-dark:hover { background: var(--bg); color: var(--navy-900); }

.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background-color 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(246, 249, 253, 0.86);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom-color: var(--line);
  box-shadow: 0 2px 18px rgba(16, 40, 80, 0.06);
}
.nav {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand:hover { color: inherit; }
.brand__mark { width: 40px; height: 40px; border-radius: 11px; box-shadow: var(--shadow-sm); }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--font-display); font-weight: 600; font-size: 1.18rem; color: var(--ink); letter-spacing: -0.01em; }
.brand__tag { display: flex; justify-content: space-between; font-size: 0.68rem; font-weight: 600; text-transform: uppercase; color: var(--brand-600); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  display: block;
  padding: 9px 14px;
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--ink-2);
  border-radius: var(--r-pill);
  transition: color 0.2s, background-color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--brand); background: rgba(30, 80, 168, 0.07); }

.nav-cta { display: inline-flex; align-items: center; gap: 14px; }

/* A drawer-CTA csak mobilon kell; desktopon a gomb marad (nincs duplázás). */
.nav-links__cta { display: none; }

/* Hamburger */
.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 20px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.nav-toggle span::before { transform: translate(-50%, -7px); }
.nav-toggle span::after  { transform: translate(-50%,  7px); }
body.menu-open .nav-toggle span { background: transparent; }
body.menu-open .nav-toggle span::before { transform: translate(-50%, 0) rotate(45deg); }
body.menu-open .nav-toggle span::after  { transform: translate(-50%, 0) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 72px) 0 88px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -22%; right: -12%;
  width: 60vw; height: 60vw;
  max-width: 760px; max-height: 760px;
  background: radial-gradient(circle at center, rgba(59, 130, 246, 0.16), transparent 62%);
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -20%; left: -10%;
  width: 44vw; height: 44vw;
  max-width: 520px; max-height: 520px;
  background: radial-gradient(circle at center, rgba(215, 165, 60, 0.12), transparent 64%);
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 64px;
  align-items: center;
}
.hero h1 { margin-bottom: 22px; }
.hero h1 .accent { color: var(--brand-600); font-style: italic; }
.hero h1 .h1-soft { display: block; margin-top: 0.72em; font-size: 0.62em; font-weight: 500; color: var(--ink-2); }
.hero .lead { max-width: 30em; margin-bottom: 18px; }
.hero-subtext { max-width: 33em; margin-bottom: 30px; }
.hero-subtext p { font-size: 0.95rem; line-height: 1.62; color: var(--ink-2); margin: 0 0 0.65rem; }
.hero-subtext p:last-child { margin-bottom: 0; }

.hero-cta { margin-bottom: 30px; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 10px;
  list-style: none;
}
.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink-2);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  padding: 7px 14px;
  border-radius: var(--r-pill);
}
.hero-trust svg { width: 15px; height: 15px; color: var(--brand-500); flex: none; }

/* Hero portré */
.hero-portrait { position: relative; justify-self: center; }
.hero-portrait__frame {
  position: relative;
  width: min(420px, 80vw);
  aspect-ratio: 1;
  border-radius: 30px 30px 30px 90px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid #fff;
  z-index: 2;
}
.hero-portrait__frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-portrait__blob {
  position: absolute;
  inset: auto -22px -26px auto;
  width: 78%; height: 78%;
  background: linear-gradient(150deg, var(--brand-500), var(--navy-800));
  border-radius: 90px 30px 30px 30px;
  z-index: 1;
}
.hero-portrait__badge {
  position: absolute;
  left: -28px; bottom: 34px;
  z-index: 3;
  background: #fff;
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 230px;
}
.hero-portrait__badge .icon {
  width: 40px; height: 40px; flex: none;
  display: grid; place-items: center;
  background: var(--sky-tint);
  color: var(--brand);
  border-radius: 11px;
}
.hero-portrait__badge .icon svg { width: 22px; height: 22px; }
.hero-portrait__badge b { display: block; font-size: 0.95rem; color: var(--ink); font-family: var(--font-display); }
.hero-portrait__badge span { font-size: 0.78rem; color: var(--ink-3); line-height: 1.3; }

/* ---------- Hitelességi sáv (logók) ---------- */
.trustbar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg); }
.trustbar .container { padding-top: 30px; padding-bottom: 30px; }
.trustbar__label {
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  margin-bottom: 18px;
}
.trustbar__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px 40px;
  list-style: none;
}
.trustbar__logos li {
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 600;
  color: var(--ink-2);
  opacity: 0.74;
  letter-spacing: 0.01em;
  transition: opacity 0.2s;
}
.trustbar__logos li:hover { opacity: 1; }

/* ---------- Rólam ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}
.about-figure { position: relative; }
.about-figure img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
}
.about-figure .quote-card {
  margin-top: 20px;
  background: var(--navy);
  color: #D5E2F2;
  border-radius: var(--r-lg);
  padding: 26px 28px;
  position: relative;
}
.about-figure .quote-card .mark {
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 0.6;
  color: var(--gold);
  display: block;
  height: 26px;
}
.about-figure .quote-card p { font-family: var(--font-display); font-size: 1.12rem; font-style: italic; margin: 0 0 8px; color: #fff; }
.about-figure .quote-card cite { font-style: normal; font-size: 0.84rem; color: #9FB6D6; }

.about-body > p { margin-bottom: 1.15rem; }
.about-body .lead { color: var(--ink); }

.cred-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.cred-list li {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--brand);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 8px 15px;
  box-shadow: var(--shadow-sm);
}

/* ---------- Szolgáltatás-kártyák ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  overflow: hidden;
}
.card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-600), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card:hover::after { transform: scaleX(1); }

.card.is-primary { background: linear-gradient(180deg, #fff, #F3F8FF); border-color: var(--sky-tint); }

.card__icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: var(--navy);
  color: #fff;
  margin-bottom: 20px;
}
.card.is-primary .card__icon { background: var(--brand-600); }
.card__icon svg { width: 27px; height: 27px; }

.card__who {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-600);
  margin-bottom: 8px;
}
.card h3 { margin-bottom: 10px; }
.card p { color: var(--ink-2); font-size: 0.98rem; margin-bottom: 16px; }
.card__topics { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.card__topics li {
  position: relative;
  padding-left: 26px;
  font-size: 0.94rem;
  color: var(--ink-2);
}
.card__topics li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 14px; height: 8px;
  border-left: 2px solid var(--brand-600);
  border-bottom: 2px solid var(--brand-600);
  transform: rotate(-45deg);
}

/* ---------- Coaching: kiemelt vezetői kártya + alárendelt területek ---------- */
.card-featured {
  background: linear-gradient(150deg, var(--navy), var(--navy-900));
  color: #C4D4EC;
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1.2fr 0.85fr;
  gap: 44px;
  align-items: center;
}
.card-featured__badge { display: inline-block; background: var(--gold); color: var(--navy-900); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 13px; border-radius: var(--r-pill); margin-bottom: 18px; }
.card-featured h3 { color: #fff; font-size: clamp(1.5rem, 2.4vw, 1.95rem); margin-bottom: 6px; }
.card-featured__who { color: var(--gold-soft); font-size: 0.92rem; font-weight: 600; margin: 0 0 16px; }
.card-featured__main > p { color: #C4D4EC; font-size: 1.02rem; line-height: 1.6; margin: 0 0 26px; }
.card-featured__topics { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.card-featured__topics li { position: relative; padding-left: 30px; color: #E6EDF7; font-size: 1rem; }
.card-featured__topics li::before { content: ""; position: absolute; left: 2px; top: 8px; width: 14px; height: 8px; border-left: 2.5px solid var(--gold); border-bottom: 2.5px solid var(--gold); transform: rotate(-45deg); }

.cards-secondary__label { text-align: center; margin: 40px 0 20px; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; color: var(--ink-3); text-transform: uppercase; }
.cards-secondary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card-mini { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px 24px; box-shadow: var(--shadow-sm); transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.card-mini:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-mini__icon { width: 46px; height: 46px; border-radius: 12px; background: var(--sky-tint); color: var(--brand); display: grid; place-items: center; margin-bottom: 14px; }
.card-mini__icon svg { width: 23px; height: 23px; }
.card-mini h3 { font-size: 1.12rem; margin-bottom: 7px; }
.card-mini p { font-size: 0.92rem; color: var(--ink-2); margin: 0; line-height: 1.55; }

/* ---------- Folyamat (Hogyan dolgozom) ---------- */
.process-intro {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--brand-600);
  border-radius: var(--r);
  padding: 24px 28px;
  margin-bottom: 48px;
  font-family: var(--font-display);
  font-size: 1.22rem;
  line-height: 1.5;
  color: var(--ink);
  max-width: 820px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: step;
}
.step {
  position: relative;
  padding-top: 18px;
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--brand-600);
  display: block;
  margin-bottom: 8px;
  line-height: 1;
}
.step::after {
  content: "";
  position: absolute;
  top: 30px; left: 64px; right: -11px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--line) 0 6px, transparent 6px 12px);
}
.step:last-child::after { display: none; }
.step h3 { font-size: 1.12rem; margin-bottom: 6px; }
.step p { font-size: 0.92rem; color: var(--ink-2); margin: 0; }

.format-note {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 44px;
}
.format-note .chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--sky-tint);
  border-radius: var(--r-pill);
  padding: 10px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy-800);
}
.format-note .chip svg { width: 17px; height: 17px; color: var(--brand); }

/* ---------- Miért én ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.why-item {
  display: flex;
  gap: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r);
  padding: 26px;
}
.why-item .why-icon {
  flex: none;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(215, 165, 60, 0.18);
  color: var(--gold-soft);
  display: grid; place-items: center;
}
.why-item .why-icon svg { width: 24px; height: 24px; }
.why-item h3 { font-size: 1.16rem; margin-bottom: 6px; color: #fff; }
.why-item p { margin: 0; color: #C4D4EC; font-size: 0.96rem; }

/* ---------- Tapasztalat (idővonal) ---------- */
.exp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.timeline { position: relative; padding-left: 30px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 5px; top: 6px; bottom: 6px;
  width: 2px;
  background: linear-gradient(var(--brand-600), var(--line));
}
.tl-item { position: relative; padding-bottom: 28px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: "";
  position: absolute;
  left: -30px; top: 5px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--surface);
  border: 3px solid var(--brand-600);
}
.tl-item .tl-when { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em; color: var(--brand-600); text-transform: uppercase; }
.tl-item h3 { font-size: 1.12rem; margin: 3px 0 2px; }
.tl-item .tl-org { font-size: 0.9rem; color: var(--ink-3); margin-bottom: 4px; }
.tl-item p { font-size: 0.93rem; color: var(--ink-2); margin: 0; }

.exp-aside {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.exp-aside h3 { font-size: 1.2rem; margin-bottom: 18px; }
.fact-list { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
.fact-list li { display: flex; gap: 14px; align-items: flex-start; }
.fact-list .num { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; color: var(--brand); line-height: 1; min-width: 64px; }
.fact-list .lbl { font-size: 0.92rem; color: var(--ink-2); }
.exp-aside .edu { border-top: 1px solid var(--line); padding-top: 20px; }
.exp-aside .edu p { font-size: 0.92rem; color: var(--ink-2); margin-bottom: 8px; }
.exp-aside .edu strong { color: var(--ink); }

/* ---------- GYIK ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--ink);
  padding: 24px 44px 24px 0;
  cursor: pointer;
  position: relative;
  display: block;
  letter-spacing: -0.01em;
}
.faq-q::after {
  content: "";
  position: absolute;
  right: 6px; top: 30px;
  width: 13px; height: 13px;
  border-right: 2.4px solid var(--brand-600);
  border-bottom: 2.4px solid var(--brand-600);
  transform: rotate(45deg);
  transition: transform 0.3s var(--ease);
}
.faq-item.open .faq-q::after { transform: rotate(-135deg); }
.faq-a {
  overflow: hidden;
}
/* JS nélkül a válaszok nyitva (láthatók) maradnak; a harmonika a .js-hez kötött. */
.js .faq-a {
  max-height: 0;
  transition: max-height 0.4s var(--ease);
}
.faq-a-inner { padding: 0 44px 24px 0; color: var(--ink-2); }
.faq-a-inner p:last-child { margin-bottom: 0; }

/* ---------- CTA sáv ---------- */
.cta-band {
  text-align: left;
  background-image: linear-gradient(rgba(11, 30, 59, 0.80), rgba(11, 30, 59, 0.86)), url("assets/cta-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.cta-band .container { max-width: 1080px; display: grid; grid-template-columns: 1.4fr 0.8fr; gap: 56px; align-items: center; }
.cta-band h2 { margin-bottom: 16px; }
.cta-band p { font-size: 1.12rem; color: #C4D4EC; margin-bottom: 30px; }
.cta-band .btn-row { justify-content: flex-start; }
.cta-band .reassure { margin-top: 20px; font-size: 0.88rem; color: #9FB6D6; }

/* ---------- Kapcsolat ---------- */
.contact-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 56px; align-items: stretch; }
.contact-grid .lead { font-size: 1.12rem; }
.contact-intro { display: flex; flex-direction: column; }
.contact-methods { list-style: none; display: flex; flex-direction: column; gap: 14px; margin: 28px 0 0; }
.contact-methods li {
  display: flex; align-items: center; gap: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.contact-methods li:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.contact-methods .ic {
  flex: none; width: 44px; height: 44px; border-radius: 11px;
  background: var(--navy); color: #fff;
  display: grid; place-items: center;
}
.contact-methods .ic svg { width: 21px; height: 21px; }
.contact-methods .ct-label { display: block; font-size: 0.78rem; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 1px; }
.contact-methods .ct-value { font-weight: 600; color: var(--ink); }
.contact-methods a.ct-value:hover { color: var(--brand); }

/* „Mire számíthatsz" — lazán megdöntött kártya a CTA-sávban (hoverre kiegyenesedik) */
.expect-note {
  justify-self: end;
  text-align: left;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  border-radius: var(--r);
  padding: 24px 28px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
  transform: rotate(-2deg);
  transition: transform 0.4s var(--ease);
  max-width: 380px;
}
.expect-note:hover { transform: rotate(0); }
.expect-note__title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: #fff; margin: 0 0 14px; }
.expect-note ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.expect-note li { position: relative; padding-left: 28px; font-size: 0.95rem; color: #E6EDF7; }
.expect-note li::before {
  content: "";
  position: absolute;
  left: 2px; top: 7px;
  width: 13px; height: 7px;
  border-left: 2px solid var(--gold-soft);
  border-bottom: 2px solid var(--gold-soft);
  transform: rotate(-45deg);
}

/* Űrlap */
.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px;
  box-shadow: var(--shadow);
}
.contact-photo { margin: 8px 0 0; flex: 1 1 auto; min-height: 240px; }
.contact-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--r); box-shadow: var(--shadow-sm); display: block; transform: scaleX(-1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  padding: 13px 15px;
  transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brand-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.14);
}
.form-consent { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 20px; font-size: 0.86rem; color: var(--ink-2); }
.form-consent input { margin-top: 4px; width: 17px; height: 17px; flex: none; accent-color: var(--brand); }
.form-note { font-size: 0.82rem; color: var(--ink-3); margin: 14px 0 0; text-align: center; }
.form-status { font-size: 0.92rem; margin-top: 14px; text-align: center; font-weight: 500; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-900);
  color: #AFC0DA;
  padding: 64px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .brand__name { color: #fff; }
.footer-brand p { font-size: 0.94rem; color: #8DA1C2; margin: 16px 0 0; max-width: 34ch; }
.footer-col h4 { color: #fff; font-family: var(--font-sans); font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { color: #AFC0DA; font-size: 0.95rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 26px;
  font-size: 0.85rem;
  color: #7E92B2;
}
.footer-bottom a { color: #7E92B2; }
.footer-bottom a:hover { color: #fff; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.16);
  display: grid; place-items: center;
  color: #AFC0DA;
}
.footer-social a:hover { background: rgba(255,255,255,0.1); color: #fff; }
.footer-social svg { width: 18px; height: 18px; }

/* ---------- Scroll-reveal animáció ----------
   A tartalom JS nélkül is látható: a rejtés csak akkor lép életbe, ha a
   <html>-en ott a .js osztály (lásd az inline scriptet az index.html fejlécében). */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.js .reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

/* ---------- Mobil menü overlay ---------- */
.menu-backdrop {
  position: fixed; inset: 0;
  background: rgba(11, 30, 59, 0.45);
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 90;
  backdrop-filter: blur(2px);
}
body.menu-open .menu-backdrop { opacity: 1; visibility: visible; }

/* =========================================================================
   Reszponzív
   ========================================================================= */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-portrait { order: -1; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-figure { max-width: 460px; }
  .exp-grid { grid-template-columns: 1fr; gap: 44px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-photo { flex: none; min-height: 0; }
  .contact-photo img { height: auto; }
  .cta-band .container { grid-template-columns: 1fr; gap: 32px; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 28px 22px; }
  .step::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .section { padding: 68px 0; }
  .section--tight { padding: 56px 0; }
  .section-head { margin-bottom: 40px; }

  /* Mobil navigáció */
  .nav-toggle { display: block; z-index: 101; }
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100dvh;
    width: min(82vw, 340px);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--bg);
    box-shadow: -20px 0 50px rgba(11, 30, 59, 0.2);
    padding: calc(var(--header-h) + 16px) 22px 28px;
    transform: translateX(100%);
    transition: transform 0.36s var(--ease);
    z-index: 95;
    overflow-y: auto;
  }
  body.menu-open .nav-links { transform: translateX(0); }
  .nav-links a { padding: 14px 16px; font-size: 1.05rem; border-radius: 12px; }
  .nav-links .nav-links__cta { display: block; margin-top: 12px; }
  .nav-links .nav-links__cta a { background: var(--brand-600); color: #fff; text-align: center; font-weight: 600; }
  .nav-cta .btn { display: none; }

  .cards { grid-template-columns: 1fr; gap: 18px; }
  .card-featured { grid-template-columns: 1fr; gap: 26px; padding: 30px 24px; }
  .cards-secondary { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-portrait__frame { border-radius: 24px 24px 24px 64px; }
  .hero-portrait__badge { left: 50%; transform: translateX(-50%); bottom: -22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 420px) {
  .container { padding: 0 18px; }
  .card { padding: 28px 24px; }
  .contact-form { padding: 26px 20px; }
  .hero-trust { gap: 8px; }
}

/* ---------- Mozgáscsökkentés ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js .reveal { opacity: 1 !important; transform: none !important; }
}
