:root {
  --bg: #0b1320;
  --bg-2: #0f1a29;
  --panel: rgba(255, 255, 255, .05);
  --border: rgba(255, 255, 255, .08);
  --text: #e7edf3;
  --muted: #a9b3c3;
  --brand: #eda81a;
  --brand2: #eeb747;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===================================================================
   HEADER
=================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 19, 32, .7);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.brand__logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  filter: drop-shadow(0 0 14px rgba(237,168,26,.35));
}

.brand__name {
  font-weight: 800;
  color: var(--brand2);
}

.nav {
  margin-left: auto;
  display: flex;
  gap: 20px;
}

.nav a {
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 600;
  transition: color .2s;
}

.nav a:hover { color: #fff; }

.hamburger {
  display: none;
  margin-left: auto;
  background: rgba(255,255,255,.08);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 10px;
  border-radius: 12px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 12px;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}

.mobile-nav a {
  color: var(--text);
  padding: 10px 6px;
  border-radius: 8px;
  text-decoration: none;
}

.mobile-nav a:hover {
  background: rgba(255,255,255,.06);
}

@media (max-width: 920px) {
  .nav { display: none; }
  .hamburger { display: block; }
}

/* ===================================================================
   HERO SZEKCIÓ
=================================================================== */
.hero {
  position: relative;
  overflow: hidden;
}

.hero__bg {
  height: 68vh;
  min-height: 420px;
  background: url('img/hatter.png') center/cover no-repeat;
  filter: saturate(.95);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.75));
}

.hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: center;
}

.hero__logo {
  width: 260px;
  max-width: 48vw;
  animation: float 6s ease-in-out infinite;
}

.hero__cta {
  display: flex;
  gap: 14px;
}

.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  transition: background .3s, transform .2s;
}

.btn--primary {
  background: var(--brand);
  color: #121212;
  box-shadow: 0 10px 30px -5px rgba(237,168,26,.45), 0 6px 14px -6px rgba(237,168,26,.35);
}
.btn--primary:hover { background: var(--brand2); transform: translateY(-1px); }

.btn--ghost {
  background: rgba(255,255,255,.08);
  border: 1px solid var(--border);
  color: #fff;
}
.btn--ghost:hover { background: rgba(255,255,255,.12); }

/* ===================================================================
   ÁLTALÁNOS SZEKCIÓK
=================================================================== */
.section {
  padding: 76px 0;
  border-top: 1px solid var(--border);
}

.section--alt {
  background: var(--bg-2);
}

.section__title {
  font-size: 2.1rem;
  margin-bottom: 18px;
  color: var(--brand2);
}

/* ===================================================================
   RÓLUNK / FEATURES
=================================================================== */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 16px;
  border-radius: 18px;
  transition: transform .2s ease;
}

.feature:hover { transform: translateY(-3px); }

.feature .icon { font-size: 1.6rem; }
.feature h3 { margin: 2px 0 6px; }
.feature p { margin: 0; color: #cbd5e1; }

/* ===================================================================
   STÁTUSZ
=================================================================== */
.status-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 18px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.card .label {
  font-size: 0.9rem;
  color: var(--muted);
}

.card .value {
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
}

.status-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #22c55e;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.3); }
}

/* ===================================================================
   SEGÉDLETEK / GUIDE KÁRTYÁK
=================================================================== */

.guides {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.guide-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  height: 100%;
}

.guide-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand2);
  box-shadow: 0 0 14px rgba(237,168,26,.25);
}

.guide-thumb {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 1px solid var(--border);
  filter: brightness(0.9);
  transition: filter .3s ease, transform .3s ease;
}

.guide-card:hover .guide-thumb {
  filter: brightness(1);
  transform: scale(1.02);
}

.guide-content {
  flex-grow: 1;
  padding: 20px 18px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 14px;
}

.guide-content h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
}

.guide-content p {
  flex-grow: 1;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  white-space: pre-line;
}

.guide-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.btn--primary {
  background: linear-gradient(180deg, #e8a91c, #d99500);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  border-radius: 10px;
  padding: 10px 24px;
  box-shadow: 0 4px 12px rgba(237,168,26,0.3);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  transition: all .25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
}

.btn--primary:hover {
  background: linear-gradient(180deg, #f0b935, #e3a414);
  box-shadow: 0 6px 16px rgba(237,168,26,0.5);
  transform: translateY(-2px);
}

.btn--ghost {
  background: rgba(255,255,255,.08);
  border: 1px solid var(--border);
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  padding: 10px 20px;
  transition: background .2s ease, transform .2s ease, color .2s ease;
  text-decoration: none;
}

.btn--ghost:hover {
  background: rgba(255,255,255,.12);
  color: var(--brand2);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .guide-thumb {
    height: 160px;
  }
  .guide-content {
    padding: 16px;
  }
  .guide-content h3 {
    font-size: 1.1rem;
  }
}

/* ===================================================================
   MUNKÁK / JOBS ÚJ DIZÁJN
=================================================================== */
.job-category {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand2);
  margin: 40px 0 20px;
  text-align: left;
}

.jobs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.job {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px 18px;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
}

.job__icon {
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--brand2);
}

.job h3 {
  margin: 4px 0 6px;
  font-size: 1.1rem;
  font-weight: 700;
}

.job p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.4;
}

.job:hover {
  transform: translateY(-4px);
  border-color: var(--brand2);
  box-shadow: 0 0 10px rgba(237,168,26,.35);
}

.coming-soon h3 span {
  color: var(--brand2);
  font-size: .85rem;
  font-weight: 500;
}

.coming-soon::after {
  content: "Soon";
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: .75rem;
  font-weight: 700;
  color: var(--brand);
  opacity: .8;
}


/* ===================================================================
   HOGYAN CSATLAKOZZ / TIMELINE STÍLUS
=================================================================== */
.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  margin-top: 40px;
}

.steps-timeline::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--brand2), rgba(238,183,71,0));
  border-radius: 2px;
  opacity: .4;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  transition: transform .3s ease;
}

.step:hover {
  transform: translateX(6px);
}

.step-icon {
  min-width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand);
  color: #111;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(237,168,26,.4);
  position: relative;
  z-index: 2;
}

.step-content {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 18px;
  flex: 1;
  transition: background .3s ease, box-shadow .3s ease;
}

.step-content:hover {
  background: rgba(255,255,255,.06);
  box-shadow: 0 0 12px rgba(237,168,26,.25);
}

.step-content h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.step-content p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.4;
}

/* mobilon a függőleges vonal eltűnik */
@media (max-width: 700px) {
  .steps-timeline::before {
    display: none;
  }
  .steps-timeline {
    gap: 20px;
  }
  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* ===================================================================
   GYIK
=================================================================== */
.faq details {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px;
}

.faq details + details { margin-top: 10px; }
.faq summary { cursor: pointer; font-weight: 800; }
.faq p { margin: 8px 0 0; color: #cbd5e1; }

/* ===================================================================
   STAFF / VEZETŐSÉG
=================================================================== */
.staff {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.staff-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  text-align: center;
  padding: 24px 16px;
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
  overflow: hidden;
}

.staff-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 12px rgba(237,168,26,.25);
}

.staff-role {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.staff-role span {
  font-weight: 500;
  color: var(--brand2);
}

.staff-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--brand);
  background: var(--bg-2);
  padding: 4px;
  box-shadow: 0 0 8px rgba(237,168,26,.35);
  transition: transform .3s ease, box-shadow .3s ease, filter .4s ease;
}

.staff-card:hover .staff-avatar {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(237,168,26,.55);
  filter: brightness(1.1);
}

.staff-avatar {
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 8px rgba(237,168,26,.3); }
  50% { box-shadow: 0 0 14px rgba(237,168,26,.55); }
}

.staff-name {
  margin-top: 12px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .3px;
}

/* ===================================================================
   LÁBLÉC
=================================================================== */
.footer {
  border-top: 1px solid var(--border);
  background: #0a111c;
  padding: 18px 0;
  text-align: center;
  color: #a6b0bf;
}

/* ===================================================================
   ANIMÁCIÓK
=================================================================== */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.ping-sub {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  margin-left: 4px;
}
