/* ===== MODELLO — Kutyakozmetikus tanfolyam landing (brand: felnottkepzes.hu) ===== */
:root {
  --navy: #0C1A47;
  --navy-2: #14245C;
  --navy-3: #1B2E6E;
  --blue: #2557D6;
  --blue-bright: #3D7BFF;
  --purple: #7B45E0;
  --ink: #18203B;
  --ink-soft: #38415F;
  --muted: #6A7392;
  --bg: #FFFFFF;
  --bg-soft: #F3F6FD;
  --bg-cool: #EEF2FC;
  --line: #E2E8F6;
  --line-soft: #EDF1FA;
  --blue-soft: #E5ECFD;
  --purple-soft: #EEE7FB;
  --grad: linear-gradient(120deg, #2557D6 0%, #5B4DDB 55%, #7B45E0 100%);
  --grad-soft: linear-gradient(120deg, #E8EEFE 0%, #F0EAFB 100%);
  --shadow-sm: 0 1px 2px rgba(12,26,71,.05), 0 6px 18px rgba(12,26,71,.06);
  --shadow-md: 0 4px 10px rgba(12,26,71,.08), 0 22px 48px rgba(12,26,71,.12);
  --shadow-blue: 0 10px 26px rgba(37,87,214,.30);
  --maxw: 1320px;
  --r: 16px;
  --r-lg: 26px;
  --font: "Poppins", -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

h1, h2, h3, h4 { font-family: var(--font); font-weight: 700; line-height: 1.12; letter-spacing: -0.02em; color: var(--ink); }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); }
h3 { font-size: 1.3rem; letter-spacing: -0.01em; }
p { text-wrap: pretty; }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

.eyebrow {
  font-weight: 700; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue); display: inline-flex; align-items: center; gap: 9px;
}
.eyebrow::before { content: ""; width: 24px; height: 3px; border-radius: 3px; background: var(--grad); }
.eyebrow.on-dark { color: #9FC0FF; }
.eyebrow.on-dark::before { background: linear-gradient(90deg, #5B8CFF, #A98BF0); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font); font-weight: 600; font-size: 1rem;
  padding: 14px 28px; border-radius: 100px; border: none; cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap; line-height: 1;
}
.btn-primary { background: var(--grad); color: #fff; box-shadow: var(--shadow-blue); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(37,87,214,.40); }
.nav-apply { padding: 10px 20px; font-size: .9rem; }
@media (prefers-reduced-motion: no-preference) {
  .nav-apply { animation: navApplyPulse 2.4s ease-in-out infinite; }
  .nav-apply:hover { animation: none; }
}
@keyframes navApplyPulse {
  0%   { box-shadow: 0 0 0 0 rgba(123,69,224,.5), var(--shadow-blue); }
  60%  { box-shadow: 0 0 0 8px rgba(123,69,224,0), var(--shadow-blue); }
  100% { box-shadow: 0 0 0 0 rgba(123,69,224,0), var(--shadow-blue); }
}
.btn-solid { background: var(--blue); color: #fff; box-shadow: var(--shadow-blue); }
.btn-solid:hover { background: #1c46b8; transform: translateY(-2px); }
.btn-ghost { background: #fff; color: var(--navy); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn-lg { padding: 17px 34px; font-size: 1.05rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* ===== Nav ===== */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.9); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line-soft); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 20px; }
.brand-logo { display: flex; align-items: center; }
.brand-logo img { height: 46px; width: auto; max-width: 54vw; transform-origin: left center; }
@media (prefers-reduced-motion: no-preference) {
  .brand-logo img { animation: logoPulse 2.8s ease-in-out infinite; }
  .brand-logo:hover img { animation: none; }
}
@keyframes logoPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.05); } }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-weight: 500; font-size: .95rem; color: var(--ink-soft); transition: color .15s; }
.nav-links a:hover { color: var(--blue); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone { font-weight: 600; font-size: .95rem; display: flex; align-items: center; gap: 7px; color: var(--navy); }
.ic-btn { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; border: 1.5px solid var(--line); color: var(--blue); transition: all .15s; }
.ic-btn:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.ic-btn svg { width: 18px; height: 18px; }
@media (max-width: 1000px) { .nav-links { display: none; } .nav-phone span { display: none; } }

/* ===== Hero ===== */
.hero { position: relative; background: radial-gradient(120% 120% at 80% 0%, #1C2E72 0%, var(--navy) 55%, #0A1538 100%); color: #fff; overflow: hidden; padding: 78px 0 90px; }
.hero::before { content: ""; position: absolute; inset: 0; background:
  radial-gradient(40% 50% at 88% 18%, rgba(123,69,224,.45), transparent 70%),
  radial-gradient(30% 42% at 6% 12%, rgba(61,123,255,.30), transparent 70%),
  radial-gradient(45% 55% at 8% 92%, rgba(61,123,255,.35), transparent 70%); pointer-events: none; }
.hero .wrap { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 54px; align-items: center; }
.hero h1 { font-size: clamp(2.6rem, 5vw, 4.1rem); color: #fff; font-weight: 700; }
.hero h1 .grad-text { background: linear-gradient(100deg, #6FA0FF, #B79BF3); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-tag { font-weight: 600; color: #AFC4F5; font-size: 1.05rem; margin: 18px 0 0; }
.hero-lead { font-size: 1.15rem; color: #C9D6F2; margin-top: 16px; max-width: 32em; }
.hero-actions { margin-top: 30px; }
.hero .btn-ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.28); }
.hero .btn-ghost:hover { background: rgba(255,255,255,.16); border-color: #fff; color: #fff; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
.pill { display: inline-flex; align-items: center; gap: 7px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); padding: 7px 14px; border-radius: 100px; font-size: .82rem; font-weight: 500; color: #E4ECFB; }
.hero-rating { display: flex; align-items: center; gap: 11px; margin-top: 26px; }
.stars { color: #FFC24B; font-size: 1.05rem; letter-spacing: 2px; }
.hero-rating b { font-weight: 700; }
.hero-rating span { font-size: .9rem; color: #AEBEDF; }
.google-badge { display: none; }
/* Lebegő Google-értékelés kártya a hero képen */
.hero-google { position: absolute; left: -22px; top: 38px; z-index: 3; display: flex; flex-direction: column; gap: 7px; width: 232px; padding: 12px 14px; border-radius: 14px; background: #fff; border: 2px solid rgba(37,87,214,.28); box-shadow: 0 14px 34px rgba(5,12,40,.38); transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease; }
.hero-google:hover { transform: translateY(-3px); border-color: rgba(123,69,224,.55); box-shadow: 0 20px 44px rgba(5,12,40,.46); }
.hg-head { display: flex; align-items: center; gap: 9px; }
.hg-logo { flex: none; width: 26px; height: 26px; display: grid; place-items: center; }
.hg-logo svg { width: 22px; height: 22px; }
.hg-name { font-size: .72rem; font-weight: 700; color: #202124; line-height: 1.2; }
.hg-score { display: flex; align-items: center; gap: 8px; }
.hg-score b { font-size: 1.4rem; font-weight: 800; color: #202124; line-height: 1; }
.hg-stars { color: #FBBC05; font-size: .92rem; letter-spacing: 1px; }
.hg-foot { display: flex; align-items: center; justify-content: space-between; gap: 8px; border-top: 1px solid #EEE; padding-top: 8px; }
.hg-avatars { display: inline-flex; align-items: center; }
.hg-av { flex: none; width: 23px; height: 23px; border: 2px solid #fff; border-radius: 50%; box-shadow: 0 1px 3px rgba(0,0,0,.16); display: grid; place-items: center; overflow: hidden; }
.hg-av:nth-child(1) { background: linear-gradient(135deg, #3D7BFF, #5B4DDB); }
.hg-av:nth-child(2) { background: linear-gradient(135deg, #7B45E0, #C77DFF); }
.hg-av:nth-child(3) { background: linear-gradient(135deg, #1FA98A, #3FB6A8); }
.hg-av:not(:first-child) { margin-left: -9px; }
.hg-av svg { width: 16px; height: 16px; fill: rgba(255,255,255,.92); }
.hg-count { font-size: .76rem; font-weight: 600; color: #5F6368; }

.hero-media { position: relative; }
.hero-media image-slot { width: 100%; height: 500px; box-shadow: 0 30px 60px rgba(5,12,40,.5); border: 1px solid rgba(255,255,255,.12); }
.hero-float { position: absolute; background: #fff; border-radius: 16px; padding: 15px 19px; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 13px; }
.hero-float .num { font-size: 1.7rem; font-weight: 800; line-height: 1; }
.hero-float .lbl { font-size: .8rem; color: var(--muted); font-weight: 500; max-width: 9.5em; line-height: 1.35; }
.hero-float.a { left: -24px; bottom: 34px; }
.hero-float.b { right: -20px; top: 210px; }
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-media image-slot { height: 360px; }
  .hero-float.a { left: 10px; bottom: 10px; } .hero-float.b { right: 10px; bottom: 10px; }
  .hero-float { max-width: 47%; padding: 12px 14px; }
  .hero-google { left: 10px; top: 10px; width: 200px; }
}

/* ===== Stats band ===== */
.stats { background: var(--navy-2); color: #fff; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 30px 22px; text-align: center; border-right: 1px solid rgba(255,255,255,.1); }
.stat:last-child { border-right: none; }
.stat .big { font-size: 2.1rem; font-weight: 800; line-height: 1; }
.stat .big .grad-text { background: linear-gradient(100deg, #6FA0FF, #B79BF3); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .lbl { font-size: .9rem; color: #B6C4E6; margin-top: 8px; font-weight: 500; }
@media (max-width: 700px) { .stats-row { grid-template-columns: repeat(2, 1fr); } .stat:nth-child(2) { border-right: none; } .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.1); } }

/* ===== Section scaffolding ===== */
section.block { padding: 71px 0; }
.sec-head { max-width: 42em; margin-bottom: 46px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head.center .eyebrow { justify-content: center; }
.sec-head p { font-size: 1.1rem; color: var(--ink-soft); margin-top: 14px; }

/* ===== Facts cards ===== */
.facts { background: var(--bg-soft); }
.facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.fact { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 24px; }
.fact .k { font-size: .74rem; text-transform: uppercase; letter-spacing: .09em; color: var(--blue); font-weight: 700; }
.fact .v { font-size: 1.4rem; font-weight: 700; margin-top: 8px; line-height: 1.15; }
.fact .v small { display: block; font-size: .85rem; font-weight: 500; color: var(--muted); margin-top: 3px; }
@media (max-width: 860px) { .facts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .facts-grid { grid-template-columns: 1fr; } }

/* ===== Split + learn ===== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: start; }
@media (max-width: 920px) { .split { grid-template-columns: 1fr; gap: 36px; } }
.learn-list { display: flex; flex-direction: column; }
.learn-item { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.learn-item:last-child { border-bottom: none; }
.learn-item .tick { flex: none; width: 32px; height: 32px; border-radius: 10px; background: var(--blue-soft); color: var(--blue); display: grid; place-items: center; font-weight: 800; font-size: .95rem; }
.learn-item h4 { font-size: 1.05rem; font-weight: 600; }
.learn-item p { font-size: .95rem; color: var(--muted); margin-top: 3px; }
.learn-media image-slot { width: 100%; height: 100%; min-height: 470px; box-shadow: var(--shadow-md); }

/* ===== Curriculum ===== */
.curri { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 760px) { .curri { grid-template-columns: 1fr; } }
.module { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 28px; transition: transform .18s, box-shadow .2s, border-color .2s; overflow: hidden; }
.module::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--grad); opacity: 0; transition: opacity .2s; }
.module:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: transparent; }
.module:hover::before { opacity: 1; }
.module .mtop { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.module .idx { font-weight: 700; color: var(--blue); font-size: .92rem; }
.module .hrs { background: var(--bg-cool); color: var(--navy); font-weight: 600; font-size: .82rem; padding: 5px 12px; border-radius: 100px; }
.module h3 { font-size: 1.2rem; margin-bottom: 8px; }
.module p { font-size: .95rem; color: var(--muted); }
.curri-total { margin-top: 20px; text-align: center; font-weight: 600; color: var(--ink-soft); }
.curri-total b { font-weight: 800; }

/* ===== Process timeline ===== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: s; }
@media (max-width: 880px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 28px 24px; position: relative; }
.step .n { counter-increment: s; width: 46px; height: 46px; border-radius: 13px; background: var(--grad); color: #fff; font-weight: 800; font-size: 1.2rem; display: grid; place-items: center; margin-bottom: 16px; }
.step .n::before { content: counter(s); }
.step h4 { font-size: 1.08rem; font-weight: 600; }
.step p { font-size: .92rem; color: var(--muted); margin-top: 6px; }

/* ===== Career band ===== */
.career { position: relative; background: radial-gradient(120% 120% at 10% 0%, #1C2E72, var(--navy) 60%, #0A1538); color: #fff; overflow: hidden; }
.career::before { content: ""; position: absolute; inset: 0; background: radial-gradient(40% 60% at 92% 80%, rgba(123,69,224,.4), transparent 70%); }
.career .wrap { position: relative; z-index: 2; }
.career h2 { color: #fff; }
.career .sec-head p { color: #C3D0EF; }
.career-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 8px; }
@media (max-width: 760px) { .career-stats { grid-template-columns: 1fr; gap: 20px; } }
.cstat { border-top: 2px solid rgba(255,255,255,.2); padding-top: 18px; }
.cstat .big { font-size: clamp(2rem,3.6vw,2.7rem); font-weight: 800; line-height: 1; background: linear-gradient(100deg, #7FACFF, #BBA0F5); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cstat .desc { color: #C3D0EF; margin-top: 10px; font-size: .96rem; }

/* ===== Audience chips ===== */
.chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chip { background: #fff; border: 1px solid var(--line); border-radius: 100px; padding: 11px 20px; font-weight: 500; color: var(--ink-soft); font-size: .97rem; display: inline-flex; align-items: center; gap: 9px; transition: all .15s; }
.chip::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--grad); }
.chip:hover { border-color: var(--blue); color: var(--navy); }

/* ===== Formats ===== */
.formats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 760px) { .formats { grid-template-columns: 1fr; } }
.format { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 30px 26px; transition: transform .18s, box-shadow .2s; }
.format:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.format .ic { width: 50px; height: 50px; border-radius: 14px; background: var(--grad-soft); display: grid; place-items: center; font-size: 1.4rem; margin-bottom: 16px; }
.format h3 { font-size: 1.18rem; }
.format p { color: var(--muted); margin-top: 8px; font-size: .95rem; }
/* per-card accent colors for Képzési formák */
.formats .format:nth-child(1) { --a: 224,163,37; }
.formats .format:nth-child(2) { --a: 31,169,138; }
.formats .format:nth-child(3) { --a: 123,69,224; }
.formats .format:nth-child(1):hover { border-color: rgba(224,163,37,.5); box-shadow: 0 16px 40px rgba(12,26,71,.14), 0 0 36px rgba(224,163,37,.30); }
.formats .format:nth-child(2):hover { border-color: rgba(31,169,138,.5); box-shadow: 0 16px 40px rgba(12,26,71,.14), 0 0 36px rgba(31,169,138,.28); }
.formats .format:nth-child(3):hover { border-color: rgba(123,69,224,.5); box-shadow: 0 16px 40px rgba(12,26,71,.14), 0 0 36px rgba(123,69,224,.30); }

/* ===== Harmonikus kártya-akcentusok a többi szekcióban ===== */
/* Technikák (6) */
.tech-grid .tech:nth-child(1) { --a: 37,87,214; }
.tech-grid .tech:nth-child(2) { --a: 123,69,224; }
.tech-grid .tech:nth-child(3) { --a: 31,169,138; }
.tech-grid .tech:nth-child(4) { --a: 46,155,214; }
.tech-grid .tech:nth-child(5) { --a: 224,163,37; }
.tech-grid .tech:nth-child(6) { --a: 224,86,111; }
.tech-grid .tech:nth-child(1):hover { border-color: rgba(37,87,214,.45); box-shadow: 0 16px 40px rgba(12,26,71,.14), 0 0 34px rgba(37,87,214,.26); }
.tech-grid .tech:nth-child(2):hover { border-color: rgba(123,69,224,.45); box-shadow: 0 16px 40px rgba(12,26,71,.14), 0 0 34px rgba(123,69,224,.28); }
.tech-grid .tech:nth-child(3):hover { border-color: rgba(31,169,138,.45); box-shadow: 0 16px 40px rgba(12,26,71,.14), 0 0 34px rgba(31,169,138,.26); }
.tech-grid .tech:nth-child(4):hover { border-color: rgba(46,155,214,.45); box-shadow: 0 16px 40px rgba(12,26,71,.14), 0 0 34px rgba(46,155,214,.26); }
.tech-grid .tech:nth-child(5):hover { border-color: rgba(224,163,37,.5); box-shadow: 0 16px 40px rgba(12,26,71,.14), 0 0 34px rgba(224,163,37,.30); }
.tech-grid .tech:nth-child(6):hover { border-color: rgba(224,86,111,.45); box-shadow: 0 16px 40px rgba(12,26,71,.14), 0 0 34px rgba(224,86,111,.28); }

/* Folyamat lépések (4) */
.steps .step:nth-child(1) .n { background: linear-gradient(135deg,#3D7BFF,#2557D6); }
.steps .step:nth-child(2) .n { background: linear-gradient(135deg,#9B6BEC,#7B45E0); }
.steps .step:nth-child(3) .n { background: linear-gradient(135deg,#34C3A2,#1FA98A); }
.steps .step:nth-child(4) .n { background: linear-gradient(135deg,#EFB94A,#E0A325); }
.steps .step:nth-child(1):hover { border-color: rgba(37,87,214,.45); box-shadow: 0 16px 40px rgba(12,26,71,.14), 0 0 34px rgba(37,87,214,.26); }
.steps .step:nth-child(2):hover { border-color: rgba(123,69,224,.45); box-shadow: 0 16px 40px rgba(12,26,71,.14), 0 0 34px rgba(123,69,224,.28); }
.steps .step:nth-child(3):hover { border-color: rgba(31,169,138,.45); box-shadow: 0 16px 40px rgba(12,26,71,.14), 0 0 34px rgba(31,169,138,.26); }
.steps .step:nth-child(4):hover { border-color: rgba(224,163,37,.5); box-shadow: 0 16px 40px rgba(12,26,71,.14), 0 0 34px rgba(224,163,37,.30); }

/* Miért a MODELLO (4) */
.why-grid .why-item:nth-child(1) { --a: 37,87,214; }
.why-grid .why-item:nth-child(2) { --a: 123,69,224; }
.why-grid .why-item:nth-child(3) { --a: 31,169,138; }
.why-grid .why-item:nth-child(4) { --a: 224,163,37; }
.why-grid .why-item:nth-child(1):hover { border-color: rgba(37,87,214,.45); box-shadow: 0 16px 40px rgba(12,26,71,.13), 0 0 32px rgba(37,87,214,.24); }
.why-grid .why-item:nth-child(2):hover { border-color: rgba(123,69,224,.45); box-shadow: 0 16px 40px rgba(12,26,71,.13), 0 0 32px rgba(123,69,224,.26); }
.why-grid .why-item:nth-child(3):hover { border-color: rgba(31,169,138,.45); box-shadow: 0 16px 40px rgba(12,26,71,.13), 0 0 32px rgba(31,169,138,.24); }
.why-grid .why-item:nth-child(4):hover { border-color: rgba(224,163,37,.5); box-shadow: 0 16px 40px rgba(12,26,71,.13), 0 0 32px rgba(224,163,37,.28); }

/* Tananyag modulok (4) — bal akcentuscsík + index szín */
.curri .module:nth-child(1)::before { background: linear-gradient(180deg,#3D7BFF,#2557D6); }
.curri .module:nth-child(2)::before { background: linear-gradient(180deg,#9B6BEC,#7B45E0); }
.curri .module:nth-child(3)::before { background: linear-gradient(180deg,#34C3A2,#1FA98A); }
.curri .module:nth-child(4)::before { background: linear-gradient(180deg,#EFB94A,#E0A325); }
.curri .module:nth-child(2) .idx { color: #7B45E0; }
.curri .module:nth-child(3) .idx { color: #1FA98A; }
.curri .module:nth-child(4) .idx { color: #C5891A; }
.curri .module:nth-child(1):hover { box-shadow: 0 16px 40px rgba(12,26,71,.14), 0 0 34px rgba(37,87,214,.24); }
.curri .module:nth-child(2):hover { box-shadow: 0 16px 40px rgba(12,26,71,.14), 0 0 34px rgba(123,69,224,.26); }
.curri .module:nth-child(3):hover { box-shadow: 0 16px 40px rgba(12,26,71,.14), 0 0 34px rgba(31,169,138,.24); }
.curri .module:nth-child(4):hover { box-shadow: 0 16px 40px rgba(12,26,71,.14), 0 0 34px rgba(224,163,37,.28); }

/* Tény-kártyák (8) — címke szín + glow ciklus */
.facts-grid .fact:nth-child(6n+1) .k { color: #2557D6; }
.facts-grid .fact:nth-child(6n+2) .k { color: #7B45E0; }
.facts-grid .fact:nth-child(6n+3) .k { color: #1FA98A; }
.facts-grid .fact:nth-child(6n+4) .k { color: #2E9BD6; }
.facts-grid .fact:nth-child(6n+5) .k { color: #C5891A; }
.facts-grid .fact:nth-child(6n+6) .k { color: #E0566F; }
.facts-grid .fact:nth-child(6n+1):hover { border-color: rgba(37,87,214,.4); box-shadow: 0 14px 34px rgba(12,26,71,.12), 0 0 30px rgba(37,87,214,.22); }
.facts-grid .fact:nth-child(6n+2):hover { border-color: rgba(123,69,224,.4); box-shadow: 0 14px 34px rgba(12,26,71,.12), 0 0 30px rgba(123,69,224,.24); }
.facts-grid .fact:nth-child(6n+3):hover { border-color: rgba(31,169,138,.4); box-shadow: 0 14px 34px rgba(12,26,71,.12), 0 0 30px rgba(31,169,138,.22); }
.facts-grid .fact:nth-child(6n+4):hover { border-color: rgba(46,155,214,.4); box-shadow: 0 14px 34px rgba(12,26,71,.12), 0 0 30px rgba(46,155,214,.22); }
.facts-grid .fact:nth-child(6n+5):hover { border-color: rgba(224,163,37,.45); box-shadow: 0 14px 34px rgba(12,26,71,.12), 0 0 30px rgba(224,163,37,.26); }
.facts-grid .fact:nth-child(6n+6):hover { border-color: rgba(224,86,111,.4); box-shadow: 0 14px 34px rgba(12,26,71,.12), 0 0 30px rgba(224,86,111,.24); }

/* ===== Why us ===== */
.why-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
@media (max-width: 760px) { .why-grid { grid-template-columns: 1fr; } }
.why-item { display: flex; gap: 15px; background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 22px; }
.why-item .ic { flex: none; width: 44px; height: 44px; border-radius: 12px; background: var(--blue-soft); color: var(--blue); display: grid; place-items: center; font-size: 1.2rem; }
.why-item h4 { font-size: 1.04rem; font-weight: 600; }
.why-item p { font-size: .93rem; color: var(--muted); margin-top: 4px; }

/* ===== Reviews ===== */
.reviews { background: var(--bg-soft); }
.rev-head { display: flex; align-items: end; justify-content: space-between; flex-wrap: wrap; gap: 20px; margin-bottom: 38px; }
.rev-score { display: flex; align-items: center; gap: 16px; }
.rev-score .n { font-size: 3.3rem; font-weight: 800; line-height: 1; }
.rev-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
@media (max-width: 860px) { .rev-grid { grid-template-columns: 1fr; } }
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 26px; display: flex; flex-direction: column; gap: 13px; }
.review .stars { font-size: .95rem; }
.review p { font-size: 1rem; color: var(--ink-soft); }
.review .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review .who image-slot.rev-av { width: 52px; height: 52px; flex: none; box-shadow: 0 2px 8px rgba(12,26,71,.14); border: 2px solid #fff; }
.review .who b { display: block; font-size: .94rem; font-weight: 600; }
.review .who span { font-size: .82rem; color: var(--muted); }

/* ===== FAQ ===== */
.faq-list { max-width: 840px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq { background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.faq summary { list-style: none; cursor: pointer; padding: 22px 26px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-weight: 600; font-size: 1.08rem; color: var(--navy); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus { flex: none; width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--line); display: grid; place-items: center; font-size: 1.1rem; transition: transform .2s, background .2s, color .2s, border-color .2s; }
.faq[open] summary .plus { transform: rotate(45deg); background: var(--blue); color: #fff; border-color: var(--blue); }
.faq .ans { padding: 0 26px 24px; color: var(--ink-soft); font-size: 1rem; }
.faq .ans strong { color: var(--blue); }

/* ===== CTA ===== */
.cta-band { position: relative; background: var(--grad); color: #fff; border-radius: var(--r-lg); padding: 56px; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 80% at 85% 20%, rgba(255,255,255,.18), transparent 70%); }
.cta-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.2fr 1fr; gap: 46px; align-items: center; }
@media (max-width: 820px) { .cta-band { padding: 38px 26px; } .cta-grid { grid-template-columns: 1fr; gap: 30px; } }
.cta-band h2 { color: #fff; font-size: clamp(1.9rem,3.4vw,2.6rem); }
.cta-band p { color: rgba(255,255,255,.88); margin-top: 14px; font-size: 1.08rem; }
.cta-band .btn-primary { background: #fff; color: var(--blue); box-shadow: 0 10px 26px rgba(7,15,45,.25); }
.cta-band .btn-primary:hover { background: #fff; color: var(--navy); }
.cta-band .btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,.14); border-color: #fff; color: #fff; }
.cta-card { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22); border-radius: var(--r); padding: 26px; backdrop-filter: blur(6px); }
.cta-card .row { display: flex; align-items: flex-start; gap: 14px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.cta-card .row:last-child { border-bottom: none; }
.cta-card .ic { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.18); display: grid; place-items: center; font-size: 1.05rem; flex: none; }
.cta-card .row small { display: block; color: rgba(255,255,255,.78); font-size: .76rem; margin-bottom: 3px; }
.cta-card .row b { font-size: .98rem; color: #fff; font-weight: 600; display: block; line-height: 1.5; }
.cta-card .row a { color: #fff; }

/* ===== Footer ===== */
footer { background: var(--navy); color: #C6D2EC; padding: 60px 0 30px; }
.foot-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 36px; }
@media (max-width: 900px) { .foot-top { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 560px) { .foot-top { grid-template-columns: 1fr; } }
.foot-brand .wordmark { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.foot-brand .wm-mark { width: 38px; height: 38px; border-radius: 11px; background: var(--grad); display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 1.2rem; }
.foot-brand .wm-text { font-weight: 700; font-size: 1.25rem; color: #fff; line-height: 1; }
.foot-brand .wm-text small { display: block; font-weight: 500; font-size: .68rem; color: #8FA2CC; letter-spacing: .04em; margin-top: 3px; }
.foot-brand p { font-size: .9rem; color: #9DACCF; max-width: 28em; }
.foot-social { display: flex; gap: 10px; margin-top: 18px; }
.foot-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #C6D2EC; transition: all .15s; }
.foot-social a:hover { background: var(--blue); color: #fff; }
.foot-social svg { width: 18px; height: 18px; }
.foot-col h5 { font-size: .8rem; text-transform: uppercase; letter-spacing: .09em; color: #fff; margin-bottom: 15px; font-weight: 600; }
.foot-col a { display: block; color: #A6B4D6; font-size: .92rem; padding: 5px 0; transition: color .15s; }
.foot-col a:hover { color: #fff; }
.foot-col .ctline { font-size: .92rem; color: #A6B4D6; padding: 5px 0; }
.foot-col .ctline a:hover { color: #fff; }
.foot-legal { margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); font-size: .76rem; line-height: 1.7; color: #8294BC; text-align: center; }
.foot-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 16px; margin-top: 16px; }
.foot-links a { font-size: .8rem; color: #A6B4D6; }
.foot-links a:hover { color: #fff; }
.foot-copy { margin-top: 18px; font-size: .82rem; color: #7C8DB6; text-align: center; background: linear-gradient(100deg, #7C8DB6 30%, #C9D6F2 50%, #7C8DB6 70%); background-size: 220% 100%; -webkit-background-clip: text; background-clip: text; }
@media (prefers-reduced-motion: no-preference) {
  .foot-copy { color: transparent; animation: copyShimmer 6s linear infinite; }
}
@keyframes copyShimmer { 0% { background-position: 120% 0; } 100% { background-position: -120% 0; } }

/* ===== Footer banner (logo slot + content) ===== */
.foot-banner {
  display: grid; grid-template-columns: 200px 1fr; gap: 22px; align-items: stretch;
  margin-top: 36px; padding: 22px; border-radius: var(--r-lg);
  background: linear-gradient(120deg, rgba(61,123,255,.10), rgba(123,69,224,.10));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 0 0 1px rgba(123,69,224,.10), 0 18px 44px rgba(5,12,40,.55), inset 0 1px 0 rgba(255,255,255,.06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.foot-banner:hover {
  border-color: rgba(123,140,255,.5);
  box-shadow: 0 0 0 1px rgba(123,69,224,.35), 0 24px 60px rgba(5,12,40,.65), 0 0 40px rgba(61,123,255,.25);
}
@media (prefers-reduced-motion: no-preference) {
  .foot-banner:hover { animation: cardPulse 2s ease-in-out infinite; }
}
.foot-banner-logo {
  width: 100%; height: 100%; min-height: 150px;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 8px 24px rgba(5,12,40,.4);
}
.foot-banner-body { display: flex; flex-direction: column; align-items: flex-start; text-align: left; gap: 9px; padding: 6px 8px; }
.foot-banner-body .fb-tag { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #9FC0FF; align-self: center; text-align: center; }
.foot-banner-body h4 { font-size: 1.22rem; font-weight: 700; color: #fff; line-height: 1.25; align-self: center; text-align: center; }
.foot-banner-body p { font-size: .94rem; color: #B6C4E6; max-width: none; align-self: center; text-align: center; }
.foot-banner-body .btn { margin-top: 6px; }
.fb-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 16px; }
@media (max-width: 560px) { .fb-feature { grid-template-columns: 1fr; } }
.fb-card { position: relative; display: flex; flex-direction: column; gap: 4px; padding: 16px 18px; border-radius: 14px; background: linear-gradient(135deg, rgba(61,123,255,.16), rgba(123,69,224,.16)); border: 1px solid rgba(123,140,255,.28); transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease; }
.fb-card:hover { transform: translateY(-3px); border-color: rgba(123,140,255,.6); box-shadow: 0 12px 28px rgba(5,12,40,.4), 0 0 24px rgba(91,140,255,.22); }
.fb-card-tag { font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #9FC0FF; }
.fb-card strong { font-size: 1.04rem; color: #fff; font-weight: 700; }
.fb-card-desc { font-size: .82rem; color: #B6C4E6; line-height: 1.4; }
.fb-services { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; padding: 0; }
.fb-services li { display: inline-flex; }
.fb-services a { display: inline-flex; align-items: center; gap: 7px; font-size: .82rem; font-weight: 600; color: #DCE6FB; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16); padding: 7px 13px; border-radius: 100px; transition: background .15s, border-color .15s, color .15s; }
.fb-services a::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: linear-gradient(135deg, #5B8CFF, #A98BF0); flex: none; }
.fb-services a:hover { background: rgba(91,140,255,.18); border-color: rgba(123,140,255,.55); color: #fff; }
.fb-all-chip { color: #fff !important; background: linear-gradient(135deg, rgba(37,87,214,.55), rgba(123,69,224,.55)) !important; border-color: rgba(168,123,240,.6) !important; font-weight: 700 !important; }
.fb-all { display: inline-block; margin-top: 16px; font-size: .9rem; font-weight: 700; color: #9FC0FF; transition: color .15s; }
.fb-all:hover { color: #fff; }
/* Országos Média Hálózat kártya + lenyíló buborék */
.omh { margin-top: 16px; }
.omh-card { display: flex; align-items: center; gap: 12px; width: 100%; text-align: left; cursor: pointer; padding: 13px 15px; border-radius: 14px; background: linear-gradient(120deg, rgba(61,123,255,.16), rgba(123,69,224,.18)); border: 1px solid rgba(123,140,255,.32); color: #fff; transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease; }
.omh-card:hover { transform: translateY(-2px); border-color: rgba(168,123,240,.7); box-shadow: 0 12px 28px rgba(5,12,40,.4), 0 0 24px rgba(123,69,224,.3); }
.omh-badge { flex: none; font-size: .64rem; font-weight: 800; letter-spacing: .1em; color: #fff; background: linear-gradient(135deg, #2557D6, #7B45E0); padding: 4px 9px; border-radius: 100px; }
.omh-main { flex: 1; display: flex; flex-direction: row; flex-wrap: wrap; align-items: baseline; justify-content: center; text-align: center; gap: 4px 12px; }
.omh-main strong { font-size: .98rem; font-weight: 700; }
.omh-main span { font-size: .8rem; color: #C3D0EF; line-height: 1.4; }
.omh-link { font-size: .82rem; font-weight: 700; color: #9FC0FF; white-space: nowrap; transition: color .15s; }
.omh-link:hover { color: #fff; }
.omh-chev { flex: none; width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.3); display: grid; place-items: center; font-size: 1.05rem; transition: transform .2s, background .2s; }
.omh-card[aria-expanded="true"] .omh-chev { transform: rotate(45deg); background: #7B45E0; border-color: #7B45E0; }
.omh-panel { margin-top: 12px; padding: 22px 24px; border-radius: 16px; color: #EAF0FF; position: relative; overflow: hidden;
  background: linear-gradient(125deg, rgba(37,87,214,.22), rgba(123,69,224,.26) 55%, rgba(46,155,214,.22));
  border: 1px solid rgba(123,140,255,.4); box-shadow: 0 16px 40px rgba(5,12,40,.45); }
@media (prefers-reduced-motion: no-preference) {
  .omh-panel { animation: omhPulse 2.6s ease-in-out infinite; }
}
@keyframes omhPulse {
  0%   { box-shadow: 0 16px 40px rgba(5,12,40,.45), 0 0 0 0 rgba(123,69,224,.5); }
  60%  { box-shadow: 0 16px 40px rgba(5,12,40,.45), 0 0 26px 6px rgba(61,123,255,.35); }
  100% { box-shadow: 0 16px 40px rgba(5,12,40,.45), 0 0 0 0 rgba(123,69,224,.5); }
}
.omh-panel p { font-size: .9rem; line-height: 1.6; margin-bottom: 11px; color: #DDE6FB; max-width: none; }
.omh-panel .omh-tags { font-weight: 600; color: #9FC0FF; }
.omh-panel .omh-slogan { font-size: 1.05rem; font-weight: 800; margin-bottom: 0; background: linear-gradient(100deg, #6FA0FF, #C9A0FF); -webkit-background-clip: text; background-clip: text; color: transparent; }
.foot-banner-body p.fb-note { margin-top: 12px; font-size: .74rem; line-height: 1.5; color: #93A3C8; max-width: none; }
.fb-ai { margin-top: 10px; font-size: .74rem; line-height: 1.7; }
.fb-ai-label { font-weight: 700; color: #9FC0FF; margin-right: 4px; }
.fb-ai-links { display: inline; }
.fb-ai-links a { color: #B6C4E6; font-weight: 600; white-space: nowrap; transition: color .15s; }
.fb-ai-links a::after { content: " · "; color: #4A557A; font-weight: 400; }
.fb-ai-links a:last-child::after { content: ""; }
.fb-ai-links a:hover { color: #fff; }

/* AZAR partner sáv — a footer alatt, önálló szekció */
.azar-band { position: relative; padding: 32px 0; border-top: 1px solid rgba(255,255,255,.08); background: linear-gradient(rgba(8,18,48,.84), rgba(8,18,48,.9)), url("images/azar-bg.jpg") center/cover no-repeat; }
.azar-band .wrap { position: relative; z-index: 1; }
.azar-band .foot-banner { margin-top: 0; background: rgba(8,18,48,.42); }
.azar-logo-tile { display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,.35); border: 1px solid rgba(255,255,255,.18); }
.azar-logo-tile img { width: 120px; height: 120px; object-fit: contain; border-radius: 12px; }

/* AZAR logó-oszlop: kulcsszó-doboz fent + nagy logó + kulcsszó-doboz lent */
.azar-logo-col { display: flex; flex-direction: column; gap: 12px; align-items: stretch; justify-content: space-between; height: 100%; }
.azar-kw { background: rgba(123,69,224,.14); border: 1px solid rgba(123,140,255,.28); border-radius: 12px; padding: 11px 13px; text-align: center; }
.azar-kw strong { display: block; font-size: .82rem; font-weight: 700; color: #fff; line-height: 1.25; }
.azar-kw span { display: block; font-size: .7rem; color: #B6C4E6; margin-top: 3px; line-height: 1.35; }
.azar-logo-col .azar-logo-tile { border-radius: 16px; padding: 16px; min-height: 0; transition: transform .2s ease, box-shadow .25s ease, border-color .2s ease; }
.azar-logo-col .azar-logo-tile img { width: 150px; height: 150px; }
.azar-logo-col .azar-logo-tile:hover { transform: translateY(-3px); border-color: rgba(168,123,240,.7); }
@media (prefers-reduced-motion: no-preference) {
  .azar-logo-col .azar-logo-tile:hover { animation: azarPulse 1.5s ease-in-out infinite; }
}
@keyframes azarPulse {
  0%   { box-shadow: 0 0 0 0 rgba(123,69,224,.55), 0 8px 22px rgba(5,12,40,.4); }
  70%  { box-shadow: 0 0 0 14px rgba(123,69,224,0), 0 8px 22px rgba(5,12,40,.4); }
  100% { box-shadow: 0 0 0 0 rgba(123,69,224,0), 0 8px 22px rgba(5,12,40,.4); }
}
@media (max-width: 640px) {
  .foot-banner { grid-template-columns: 1fr; gap: 16px; padding: 18px; }
  .foot-banner-logo { min-height: 130px; }
}

/* ===== Learn block (symmetric: media + aside left) ===== */
.learn-split { align-items: stretch; }
.learn-media-col { display: flex; flex-direction: column; gap: 18px; }
.learn-media-col image-slot { width: 100%; flex: 1 1 auto; min-height: 280px; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.learn-cert { display: flex; align-items: center; gap: 16px; background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 22px 24px; }
.learn-cert .ic { flex: none; width: 50px; height: 50px; border-radius: 13px; background: var(--grad); color: #fff; display: grid; place-items: center; font-size: 1.4rem; }
.learn-cert h4 { font-size: 1.04rem; font-weight: 700; }
.learn-cert p { font-size: .9rem; color: var(--muted); margin-top: 3px; }
.learn-aside { background: var(--grad-soft); border: 1px solid var(--line); border-radius: var(--r); padding: 26px; }
.learn-aside h4 { font-size: 1.12rem; font-weight: 700; margin-bottom: 13px; }
.learn-aside ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.learn-aside li { display: flex; gap: 11px; font-size: .96rem; color: var(--ink-soft); }
.learn-aside li::before { content: "\2713"; color: var(--blue); font-weight: 800; flex: none; }

/* ===== Techniques grid ===== */
.tech-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 860px) { .tech-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .tech-grid { grid-template-columns: 1fr; } }
.tech { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 28px; }
.tech .ic { width: 52px; height: 52px; border-radius: 14px; background: var(--grad-soft); display: grid; place-items: center; font-size: 1.5rem; margin-bottom: 16px; }
.tech h3 { font-size: 1.12rem; }
.tech p { color: var(--muted); margin-top: 8px; font-size: .95rem; }

/* ===== Promo / ad boxes ===== */
.promo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 760px) { .promo-grid { grid-template-columns: 1fr; } }
.promo { position: relative; border-radius: var(--r-lg); padding: 40px; display: flex; flex-direction: column; align-items: flex-start; gap: 13px; overflow: hidden; }
.promo::after { content: ""; position: absolute; right: -50px; top: -50px; width: 180px; height: 180px; border-radius: 50%; background: radial-gradient(circle, rgba(123,69,224,.20), transparent 70%); pointer-events: none; }
.promo .tag { font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; position: relative; z-index: 1; }
.promo h3 { font-size: clamp(1.35rem, 2.4vw, 1.7rem); position: relative; z-index: 1; }
.promo p { font-size: 1rem; position: relative; z-index: 1; }
.promo .btn { margin-top: 8px; position: relative; z-index: 1; }
.promo-a { background: var(--grad); color: #fff; }
.promo-a h3 { color: #fff; }
.promo-a .tag { color: rgba(255,255,255,.85); }
.promo-a p { color: rgba(255,255,255,.92); }
.promo-a .btn { background: #fff; color: var(--blue); }
.promo-a .btn:hover { background: #fff; color: var(--navy); }
.promo-b { background: #fff; border: 1px solid var(--line); color: var(--ink); }
.promo-b .tag { color: var(--blue); }
.promo-b p { color: var(--muted); }
.promo-b .btn { background: var(--grad); color: #fff; }

/* ===== Full shadow + hover pulse on all cards ===== */
.fact, .module, .step, .format, .why-item, .review, .promo, .tech, .learn-aside, .learn-cert {
  box-shadow: 0 4px 22px rgba(12,26,71,.07), 0 1px 4px rgba(12,26,71,.05);
}
.fact, .step, .review, .tech, .promo, .learn-cert, .module, .format, .why-item { transition: transform .22s ease, box-shadow .22s ease, border-color .2s ease; }
/* all cards: lift + soft blue/purple glow on hover (matches footer banner) */
.fact:hover, .module:hover, .step:hover, .format:hover, .why-item:hover, .review:hover, .promo:hover, .tech:hover, .learn-cert:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(12,26,71,.16), 0 3px 10px rgba(12,26,71,.09), 0 0 34px rgba(61,123,255,.16);
}
/* only compact, visual cards pulse — text-heavy ones just lift so reading isn't disturbed */
@media (prefers-reduced-motion: no-preference) {
  .fact:hover, .format:hover, .tech:hover, .promo:hover, .step:hover, .foot-banner:hover {
    animation: cardPulse 2s ease-in-out infinite;
  }
}
@keyframes cardPulse {
  0% { transform: translateY(-5px) scale(1); }
  50% { transform: translateY(-6px) scale(1.008); }
  100% { transform: translateY(-5px) scale(1); }
}

/* ===== Szekció hátterek: erős, egymásba folyó aurora + nonfiguratív pöttyminta ===== */
.tint { position: relative; overflow: hidden; background: #FBFCFF; }
.tint > .wrap { position: relative; z-index: 1; }
/* aurora színmező — fent/lent elhalványul, az alsó folt a KÖVETKEZŐ szekció színe → folyamatos átmenet */
.tint::before {
  content: ""; position: absolute; inset: -2px 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(40% 50% at 13% 14%, rgba(var(--t), .22), transparent 62%),
    radial-gradient(44% 54% at 88% 20%, rgba(var(--t), .15), transparent 62%),
    radial-gradient(70% 70% at 50% 112%, rgba(var(--t2, var(--t)), .20), transparent 72%);
  -webkit-mask: linear-gradient(180deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
  mask: linear-gradient(180deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
}
/* nonfiguratív pöttyháló — finoman, felülről elhalványulva */
.tint::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: radial-gradient(rgba(var(--t), .17) 1.3px, transparent 1.5px);
  background-size: 27px 27px;
  -webkit-mask: radial-gradient(135% 82% at 50% -2%, #000 0%, transparent 70%);
  mask: radial-gradient(135% 82% at 50% -2%, #000 0%, transparent 70%);
  opacity: .55;
}
/* szekció-folyam: --t = saját szín, --t2 = a következő szekció színe */
.flow1  { --t: 37,87,214;   --t2: 123,69,224; }
.flow2  { --t: 123,69,224;  --t2: 31,169,138; }
.flow3  { --t: 31,169,138;  --t2: 224,163,37; }
.flow4  { --t: 224,163,37;  --t2: 46,155,214; }
.flow5  { --t: 46,155,214;  --t2: 37,87,214; }
.flow6  { --t: 123,69,224;  --t2: 224,86,111; }
.flow7  { --t: 31,169,138;  --t2: 37,87,214; }
.flow8  { --t: 37,87,214;   --t2: 123,69,224; }
.flow9  { --t: 224,163,37;  --t2: 224,86,111; }
.flow10 { --t: 46,155,214;  --t2: 123,69,224; }
.flow11 { --t: 123,69,224;  --t2: 37,87,214; }
.flow12 { --t: 31,169,138;  --t2: 123,69,224; }
.flow13 { --t: 46,155,214;  --t2: 123,69,224; }

/* ===== Vélemény-csúszka (279) ===== */
.rev-more { text-align: center; max-width: 44em; margin: 64px auto 30px; }
.rev-more h3 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
.rev-more p { color: var(--ink-soft); margin-top: 10px; font-size: 1.05rem; }
.rev-slider { display: flex; align-items: stretch; gap: 14px; }
.rs-viewport { flex: 1 1 auto; overflow: hidden; }
.rs-track { display: grid; grid-template-columns: repeat(var(--pp, 4), 1fr); gap: 16px; }
.rs-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 26px; display: flex; flex-direction: column; gap: 13px;
  box-shadow: 0 4px 22px rgba(12,26,71,.07), 0 1px 4px rgba(12,26,71,.05);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.rs-card:hover { transform: translateY(-5px); border-color: rgba(123,69,224,.35); box-shadow: 0 16px 40px rgba(12,26,71,.14), 0 0 32px rgba(123,69,224,.18); }
.rs-card .stars { font-size: .95rem; color: #FFC24B; letter-spacing: 1px; }
.rs-card p { font-size: .98rem; color: var(--ink-soft); font-style: italic; line-height: 1.55; }
.rs-card .who { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 6px; }
.rs-av { flex: none; width: 46px; height: 46px; border-radius: 50%; background: var(--grad); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: .92rem; box-shadow: 0 6px 16px rgba(37,87,214,.28); }
.rs-card .who b { display: block; font-size: .95rem; font-weight: 600; color: var(--ink); }
.rs-card .who span { font-size: .82rem; color: var(--muted); }

.rs-nav {
  flex: none; align-self: center; width: 52px; height: 52px; border-radius: 50%; cursor: pointer;
  background: #fff; border: 1px solid var(--line); color: var(--navy);
  display: grid; place-items: center; transition: all .18s ease;
  box-shadow: 0 6px 18px rgba(12,26,71,.10);
}
.rs-nav svg { width: 20px; height: 20px; }
.rs-nav:hover:not(:disabled) { background: var(--grad); color: #fff; border-color: transparent; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(123,69,224,.34), 0 0 26px rgba(61,123,255,.28); }
.rs-nav:disabled { opacity: .35; cursor: default; }

.rs-footer { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-top: 26px; }
.rs-dots { display: flex; gap: 8px; }
.rs-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(12,26,71,.18); transition: all .2s ease; }
.rs-dot.is-active { width: 26px; border-radius: 5px; background: var(--grad); }
.rs-counter { font-weight: 600; color: var(--ink-soft); font-size: .95rem; letter-spacing: .02em; }

@keyframes rsInRight { from { opacity: 0; transform: translateX(34px); } to { opacity: 1; transform: none; } }
@keyframes rsInLeft  { from { opacity: 0; transform: translateX(-34px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: no-preference) {
  .rs-track.rs-in-right { animation: rsInRight .38s ease; }
  .rs-track.rs-in-left  { animation: rsInLeft .38s ease; }
}
@media (max-width: 600px) { .rs-nav { width: 44px; height: 44px; } }

/* ===== Modern, üveg-hatású ikon-badge-ek (SVG ikonok) ===== */
.format .ic, .tech .ic, .why-item .ic {
  position: relative;
  background:
    radial-gradient(125% 125% at 28% 16%, rgba(255,255,255,.95), rgba(255,255,255,0) 56%),
    linear-gradient(150deg, rgba(var(--a, 37,87,214), .18), rgba(var(--a, 37,87,214), .08));
  color: rgb(var(--a, 37,87,214));
  border: 1px solid rgba(var(--a, 37,87,214), .26);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7), 0 8px 18px rgba(var(--a, 37,87,214), .20);
  font-size: 0;
  overflow: hidden;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s ease;
}
.format .ic::after, .tech .ic::after, .why-item .ic::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: linear-gradient(140deg, rgba(255,255,255,.55), rgba(255,255,255,0) 45%);
  mix-blend-mode: screen; opacity: .7;
}
.format .ic svg, .tech .ic svg, .why-item .ic svg, .learn-cert .ic svg, .cta-card .ic svg {
  position: relative; z-index: 1;
  fill: none; stroke: currentColor; stroke-width: 1.85;
  stroke-linecap: round; stroke-linejoin: round;
}
.format .ic svg, .tech .ic svg { width: 27px; height: 27px; }
.why-item .ic svg { width: 23px; height: 23px; }
.format:hover .ic, .tech:hover .ic, .why-item:hover .ic {
  transform: translateY(-3px) rotate(-5deg) scale(1.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 14px 28px rgba(var(--a), .34), 0 0 22px rgba(var(--a), .26);
}
/* Bizonyítvány badge — márkagradiens, fehér ikon */
.learn-cert .ic svg { width: 26px; height: 26px; stroke: #fff; }
.learn-cert:hover .ic { transform: translateY(-2px) rotate(-4deg) scale(1.06); box-shadow: 0 14px 30px rgba(37,87,214,.4); transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s ease; }
/* CTA kapcsolati ikonok */
.cta-card .ic svg { width: 18px; height: 18px; stroke: #fff; }

/* ===== Kapcsolódó képzések ===== */
.rel-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 980px) { .rel-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .rel-grid { grid-template-columns: 1fr; } }
.rel-card {
  display: flex; flex-direction: column; gap: 8px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 24px;
  box-shadow: 0 4px 22px rgba(12,26,71,.07), 0 1px 4px rgba(12,26,71,.05);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.rel-card:hover { transform: translateY(-5px); border-color: rgba(37,87,214,.4); box-shadow: 0 16px 40px rgba(12,26,71,.14), 0 0 30px rgba(37,87,214,.18); }
.rel-card .rc-tag { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); }
.rel-card h3 { font-size: 1.1rem; font-weight: 700; letter-spacing: -.01em; }
.rel-card p { font-size: .9rem; color: var(--muted); line-height: 1.5; }
.rel-card .rc-link { margin-top: auto; padding-top: 6px; color: var(--blue); font-weight: 600; font-size: .9rem; }
.rel-card:hover .rc-link { color: var(--purple); }
.rel-all { text-align: center; margin-top: 28px; }

/* ===== Intézeti álláspont (editorial) ===== */
.editorial { display: grid; grid-template-columns: 1.15fr .85fr; gap: 30px; align-items: stretch; }
@media (max-width: 940px) { .editorial { grid-template-columns: 1fr; gap: 24px; } }
.ed-text { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 40px; box-shadow: 0 4px 22px rgba(12,26,71,.07), 0 1px 4px rgba(12,26,71,.05); display: flex; flex-direction: column; }
.ed-text h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-top: 14px; }
.ed-lead { font-size: 1.22rem; font-weight: 600; color: var(--navy); line-height: 1.45; margin: 20px 0 18px; padding-left: 20px; border-left: 4px solid; border-image: var(--grad) 1; }
.ed-text p { color: var(--ink-soft); margin-top: 14px; font-size: 1rem; line-height: 1.7; }
.ed-sign { display: flex; align-items: center; gap: 14px; margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line-soft); }
.ed-sign { margin-top: auto; }
.ed-mark { flex: none; width: 48px; height: 48px; border-radius: 13px; background: var(--grad); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 1.3rem; box-shadow: 0 8px 18px rgba(37,87,214,.28); }
.ed-sign b { display: block; font-size: 1rem; color: var(--ink); }
.ed-sign span { font-size: .86rem; color: var(--muted); }

.ed-aside { display: flex; flex-direction: column; gap: 18px; justify-content: space-between; }
.ed-chart-2 { display: flex; flex-direction: column; }
.ed-legend { display: flex; flex-wrap: wrap; gap: 8px 16px; margin-bottom: 8px; }
.ed-legend .lg { display: inline-flex; align-items: center; gap: 7px; font-size: .82rem; font-weight: 600; color: var(--ink-soft); }
.ed-legend .lg::before { content: ""; width: 16px; height: 4px; border-radius: 3px; }
.ed-legend .lg-hu::before { background: #2557D6; }
.ed-legend .lg-eu::before { background: #7B45E0; }
.ed-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ed-stat { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 20px; box-shadow: 0 4px 18px rgba(12,26,71,.06); }
.ed-stat .num { font-size: 1.7rem; font-weight: 800; line-height: 1; }
.ed-stat .lbl { font-size: .82rem; color: var(--muted); margin-top: 8px; line-height: 1.4; }
.ed-chart { margin: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 22px; box-shadow: 0 4px 18px rgba(12,26,71,.06); }
.ed-chart figcaption { font-size: .9rem; font-weight: 600; color: var(--ink); margin-bottom: 12px; line-height: 1.4; }
.ed-chart figcaption span { display: block; font-weight: 500; color: var(--muted); font-size: .8rem; margin-top: 2px; }
.ed-chart svg { width: 100%; height: auto; display: block; }
.ed-bars rect { fill: url(#barGrad); }

/* harmadik grafikon — vízszintes sávok */
.ed-chart-3 .ed-hbars { display: flex; flex-direction: column; gap: 12px; margin-top: 4px; }
.hbar { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 6px 10px; }
.hb-name { font-size: .86rem; font-weight: 600; color: var(--ink-soft); }
.hb-val { font-size: .9rem; font-weight: 800; color: var(--navy); grid-row: 1 / span 2; align-self: center; }
.hb-track { grid-column: 1 / 2; height: 9px; border-radius: 100px; background: var(--bg-cool); overflow: hidden; }
.hb-fill { display: block; height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--hc), color-mix(in srgb, var(--hc) 60%, #fff)); }

/* ===== Magyarország-térkép szekció ===== */
.mapsec { position: relative; overflow: hidden; background: radial-gradient(120% 120% at 80% 0%, #1C2E72 0%, var(--navy) 55%, #0A1538 100%); color: #fff; }
.mapsec::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(42% 50% at 90% 12%, rgba(123,69,224,.4), transparent 70%), radial-gradient(45% 55% at 6% 95%, rgba(61,123,255,.32), transparent 70%); }
.mapsec .wrap { position: relative; z-index: 1; }
.mapsec h2 { color: #fff; }
.mapsec .sec-head p { color: #C3D0EF; }
.map-wrap { display: grid; grid-template-columns: 1fr 320px; gap: 28px; align-items: center; }
@media (max-width: 900px) { .map-wrap { grid-template-columns: 1fr; gap: 22px; } }
.map-canvas { background: transparent; border: 0; border-radius: 0; padding: 0; box-shadow: none; position: relative; }
.map-canvas svg { width: 100%; height: auto; display: block; overflow: visible; }
.hu-map-img { width: 100%; height: auto; display: block; border-radius: 12px; }
.map-canvas { position: relative; }
.map-dots { position: absolute; inset: 0; pointer-events: none; }
.mdot { position: absolute; transform: translate(-50%, -50%); width: 0; height: 0; background: none; border: 0; padding: 0; cursor: pointer; pointer-events: auto; outline: none; }
.mdot-core { position: absolute; left: 0; top: 0; transform: translate(-50%, -50%); width: 9px; height: 9px; border-radius: 50%; background: var(--dc, #3D7BFF); border: 2px solid #fff; box-shadow: 0 1px 4px rgba(5,12,40,.5); z-index: 2; transition: width .15s, height .15s; }
.mdot.seat .mdot-core { width: 12px; height: 12px; }
.mdot-halo { position: absolute; left: 0; top: 0; transform: translate(-50%, -50%); width: 12px; height: 12px; border-radius: 50%; background: var(--dc, #3D7BFF); z-index: 1; }
@media (prefers-reduced-motion: no-preference) {
  .mdot-halo { animation: mdotPulse 2.2s ease-out infinite; animation-delay: var(--delay, 0s); }
}
@keyframes mdotPulse { 0% { transform: translate(-50%,-50%) scale(.7); opacity: .6; } 70% { opacity: 0; } 100% { transform: translate(-50%,-50%) scale(3.4); opacity: 0; } }
.mdot-label { position: absolute; left: 0; top: -10px; transform: translate(-50%, -100%); white-space: nowrap; background: #0A1538; color: #fff; font-size: 11px; font-weight: 700; padding: 4px 9px; border-radius: 7px; opacity: 0; pointer-events: none; transition: opacity .15s; box-shadow: 0 4px 12px rgba(5,12,40,.5); z-index: 5; }
.mdot:hover .mdot-core, .mdot:focus .mdot-core { width: 15px; height: 15px; }
.mdot:hover .mdot-label, .mdot:focus .mdot-label { opacity: 1; }
.mdot-name { position: absolute; left: 9px; top: 50%; transform: translateY(calc(-50% + var(--dy, 0px))); white-space: nowrap; font-size: 8.5px; font-weight: 600; color: #fff; letter-spacing: .01em; pointer-events: none; text-shadow: 0 1px 2px rgba(5,12,40,.95), 0 0 3px rgba(5,12,40,.9); z-index: 4; }
.mdot.seat .mdot-name { font-size: 10.5px; font-weight: 800; }
.mdot.lbl-left .mdot-name { left: auto; right: 9px; }
.mdot:hover .mdot-name, .mdot:focus .mdot-name { font-weight: 800; z-index: 9; }
.map-border { stroke: rgba(150,180,255,.45); stroke-width: 1.6; stroke-linejoin: round; }
.map-glow { pointer-events: none; }
.map-roads line { stroke: rgba(159,192,255,.28); stroke-width: 1; stroke-linecap: round; }
.map-halo { transform-box: fill-box; transform-origin: center; }
@media (prefers-reduced-motion: no-preference) {
  .map-halo { animation: mapPulse 2.4s ease-out infinite; }
}
@keyframes mapPulse { 0% { transform: scale(.8); opacity: .55; } 70% { opacity: 0; } 100% { transform: scale(3.4); opacity: 0; } }
.map-dot { stroke: #0A1538; stroke-width: 1; cursor: pointer; transition: r .15s ease; }
.map-dot.seat { stroke: #fff; stroke-width: 1.5; }
.map-city { cursor: pointer; outline: none; }
.map-city:hover .map-dot, .map-city:focus .map-dot { r: 8; }
.map-city .map-label { fill: #fff; font-size: 12px; font-weight: 700; opacity: 0; paint-order: stroke; stroke: #0A1538; stroke-width: 3px; transition: opacity .15s ease; pointer-events: none; }
.map-city:hover .map-label, .map-city:focus .map-label { opacity: 1; }

.map-info { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16); border-radius: var(--r-lg); padding: 26px; backdrop-filter: blur(8px); box-shadow: 0 18px 44px rgba(5,12,40,.5); }
.mi-kicker { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #9FC0FF; }
.mi-city { font-size: 1.4rem; color: #fff; margin: 8px 0 18px; line-height: 1.2; min-height: 1.2em; }
.mi-phone-row { display: flex; flex-direction: column; gap: 4px; padding: 14px 16px; border-radius: 14px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); margin-bottom: 16px; }
.mi-label { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #AEBEDF; }
.mi-phone { font-size: 1.35rem; font-weight: 800; color: #fff; letter-spacing: .01em; }
.mi-phone.flash { animation: phoneFlash .6s ease; }
.mi-email { font-size: .98rem; font-weight: 600; color: #9FC0FF; margin-top: 4px; word-break: break-all; }
.mi-email.flash { animation: phoneFlash .6s ease; }
@keyframes phoneFlash { 0% { color: #FFC24B; text-shadow: 0 0 16px rgba(255,194,75,.8); transform: translateX(6px); } 100% { color: #fff; text-shadow: none; transform: none; } }
.mi-cta { width: 100%; text-align: center; justify-content: center; font-size: .92rem; line-height: 1.3; white-space: normal; padding: 14px 18px; height: auto; }
.mi-legend { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 16px; font-size: .82rem; color: #C3D0EF; }
.mi-legend span { display: inline-flex; align-items: center; gap: 8px; }
.mi-legend i { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.mi-legend .dot-seat { background: #3D7BFF; border: 1.5px solid #fff; }
.mi-legend .dot-town { background: #E0A325; }

/* ===== Plusz szolgáltatások (jogosítvány + nyelvvizsga) ===== */
.svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 760px) { .svc-grid { grid-template-columns: 1fr; } }
.svc-card { position: relative; overflow: hidden; display: flex; flex-direction: column; gap: 12px; padding: 34px;
  border-radius: var(--r-lg); background: linear-gradient(140deg, rgba(var(--sa), .10), rgba(var(--sa), .02));
  border: 1px solid rgba(var(--sa), .24); box-shadow: 0 6px 22px rgba(12,26,71,.07);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.svc-card::before { content: ""; position: absolute; left: 0; top: 0; right: 0; height: 4px; background: linear-gradient(90deg, rgb(var(--sa)), rgba(var(--sa), .35)); }
.svc-card:hover { transform: translateY(-5px); border-color: rgba(var(--sa), .5); box-shadow: 0 18px 44px rgba(12,26,71,.14), 0 0 34px rgba(var(--sa), .22); }
.svc-top { display: flex; align-items: center; gap: 14px; }
.svc-ic { flex: none; width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(145deg, rgb(var(--sa)), rgba(var(--sa), .68)); display: grid; place-items: center; color: #fff; box-shadow: 0 8px 18px rgba(var(--sa), .30); }
.svc-ic svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.svc-tag { font-size: .72rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: rgb(var(--sa)); background: rgba(var(--sa), .12); padding: 6px 13px; border-radius: 100px; }
.svc-card h3 { font-size: 1.4rem; }
.svc-card p { color: var(--ink-soft); font-size: .98rem; line-height: 1.6; }
.svc-link { margin-top: auto; padding-top: 8px; font-weight: 700; color: rgb(var(--sa)); font-size: .98rem; }
.svc-license { --sa: 31,169,138; }
.svc-lang { --sa: 46,155,214; }

/* content always visible; no JS/animation dependency for legibility */
