:root {
  --bg: #0a0a0f;
  --bg2: #111118;
  --bg3: #1a1a24;
  --accent: #5b6ef5;
  --accent2: #8b5cf6;
  --accent-glow: rgba(91,110,245,0.18);
  --text: #f0f0f5;
  --muted: #7a7a90;
  --border: rgba(255,255,255,0.07);
  --card-bg: rgba(255,255,255,0.03);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 0; opacity: 0.4;
}

.orb {
  position: fixed; border-radius: 50%;
  filter: blur(120px); pointer-events: none; z-index: 0; opacity: 0.35;
}
.orb1 { width: 600px; height: 600px; background: var(--accent); top: -200px; right: -100px; }
.orb2 { width: 400px; height: 400px; background: var(--accent2); bottom: 10%; left: -100px; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.2rem 5%;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--border);
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(20px);
}
.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 1.4rem;
  letter-spacing: -0.02em; color: var(--text); text-decoration: none;
}
.logo span { color: var(--accent); }
.nav-back {
  color: var(--muted); text-decoration: none; font-size: 0.88rem;
  display: flex; align-items: center; gap: 6px; transition: color 0.2s;
}
.nav-back:hover { color: var(--text); }
.nav-cta {
  background: var(--accent); color: #fff !important;
  padding: 0.5rem 1.25rem; border-radius: 6px;
  font-weight: 500 !important; text-decoration: none; transition: opacity 0.2s !important;
}
.nav-cta:hover { opacity: 0.85; }
.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 8px;
  margin-top: 4px;
}
.checkbox-item {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 10px; padding: 10px 14px;
  cursor: pointer; transition: border-color 0.2s, background 0.2s;
  font-size: 0.88rem; color: var(--text); user-select: none;
}
.checkbox-item:hover {
  border-color: rgba(91,110,245,0.4);
  background: rgba(91,110,245,0.06);
}
.checkbox-item input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--accent);
  cursor: pointer; flex-shrink: 0;
}
.checkbox-item:has(input:checked) {
  border-color: rgba(91,110,245,0.5);
  background: rgba(91,110,245,0.1);
}
/* KINEK SZEKCIÓ */
.kinek-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 3rem;
}

.kinek-img img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 0 40px rgba(91,110,245,0.1);
  display: block;
}

@media (max-width: 768px) {
  .kinek-hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
#kinek {
  background: var(--bg2);
}

.kinek-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: start;
  margin-top: 2rem;
}
.kinek-side-img {
  position: sticky;
  top: 6rem;
}

.kinek-side-img img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 0 40px rgba(91,110,245,0.1);
  display: block;
}

@media (max-width: 768px) {
  .kinek-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .kinek-side-img {
    position: static;
    order: -1;
  }
}

.kinek-content h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.kinek-content h3::before {
  content: '→ ';
  color: var(--accent);
}

.kinek-content p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.85;
  margin-bottom: 1rem;
}

.kinek-content strong {
  color: var(--text);
  font-weight: 500;
}
/* HERO — bal igazított, kisebb mint a főoldal */
.hero {
  position: relative; z-index: 1; overflow: hidden;
  min-height: 78vh;
  display: flex; align-items: center;
  padding: 8rem 5% 4rem;
}

.hero-inner {
  max-width: 1300px;  /* ← volt 1100px */
  width: 100%;
  position: relative; z-index: 2;
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;  /* ← egyenlő, vagy próbáld: 0.8fr 1.2fr */
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.hero-map img {
  width: 100%;
  border-radius: 16px;
  border: none;              /* ← keret eltávolítva */
  box-shadow: none;          /* ← árnyék eltávolítva */
  opacity: 1;                /* ← teljes átlátszatlanság */
  display: block;
  transition: opacity 0.3s;
}
.hero-map img:hover { opacity: 1; }

/* Breadcrumb — egyértelmű aloldal jelzés */
.breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.78rem; color: var(--muted);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { color: rgba(255,255,255,0.2); font-size: 0.7rem; }
.breadcrumb-current { color: var(--text); }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-glow);
  border: 1px solid rgba(91,110,245,0.3);
  border-radius: 100px; padding: 0.35rem 1rem;
  font-size: 0.78rem; color: #9aa8ff;
  margin-bottom: 1.5rem; letter-spacing: 0.06em; text-transform: uppercase;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px;
  background: var(--accent); border-radius: 50%;
  box-shadow: 0 0 8px var(--accent); animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 1.1; letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}
h1 .accent { color: var(--accent); }

.hero-sub {
  font-size: 1.05rem; color: var(--muted);
  max-width: 520px; margin-bottom: 2.5rem; line-height: 1.8;
}

.hero-btns {
  display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #fff;
  padding: 0.85rem 2rem; border-radius: 8px;
  font-weight: 500; font-size: 0.95rem; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 30px rgba(91,110,245,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 50px rgba(91,110,245,0.5); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--text);
  padding: 0.85rem 2rem; border-radius: 8px;
  border: 1px solid var(--border); font-weight: 400;
  font-size: 0.95rem; text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.2); background: var(--card-bg); }

.hero-trust {
  display: flex; gap: 2rem; flex-wrap: wrap; align-items: center;
}
.trust-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.82rem; color: var(--muted);
}
.trust-item::before { content: '✓'; color: var(--accent); font-weight: 700; }

/* SECTIONS */
section { position: relative; z-index: 1; padding: 6rem 5%; }

.section-tag {
  font-size: 0.75rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 1rem; font-weight: 500;
}

h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 1rem;
}

.section-sub {
  color: var(--muted); font-size: 1rem;
  max-width: 480px; margin-bottom: 3.5rem; line-height: 1.75;
}

/* MIÉRT KÁRTYÁK */
#miert { background: var(--bg2); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0;
}
/* FLOW */
.flow {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 3rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 1rem;
 overflow: visible;        /* ← volt overflow-x: auto */
  justify-content: center;  /* ← add hozzá */
  padding: 4rem 0 6rem;
  
  
}

.flow-step {
  display: flex;
   overflow: visible; 
  flex-direction: column;
  align-items: center;
  position: relative;
  flex-shrink: 0;
}

.flow-circle {
  width: 120px;   /* ← volt 100px */
  height: 120px;
   overflow: visible; 
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--border);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  cursor: pointer; position: relative;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.flow-circle:hover {
  border-color: var(--accent);
  background: rgba(91,110,245,0.08);
  transform: scale(1.08);
  box-shadow: 0 0 30px rgba(91,110,245,0.2);
}

.flow-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--accent); line-height: 1;
}
.flow-label {
  font-size: 0.7rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-top: 4px;
}

/* Tooltip hover */
.flow-tooltip {
  position: absolute;
  top: calc(100% + 20px);      /* ← volt bottom */
  bottom: unset;
  transform: translateX(-50%) translateY(6px);
  left: 50%; transform: translateX(-50%);
  width: 220px;
  background: var(--bg3);
  border: 1px solid rgba(91,110,245,0.3);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  font-size: 0.82rem; color: var(--muted);
  line-height: 1.6;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  transform: translateX(-50%) translateY(6px);
  z-index: 100;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.flow-tooltip::before {        /* ← nyíl felülre mutat */
  content: '';
  position: absolute;
  bottom: 100%; left: 50%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-bottom-color: rgba(91,110,245,0.35);
}
.flow-tooltip::after {
  content: '';
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: rgba(91,110,245,0.3);
}
.flow-circle:hover .flow-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
/* Összekötő vonal */
.flow-line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, var(--accent), rgba(91,110,245,0.2));
  min-width: 60px;
  position: relative;
}
.flow-line::after {
  content: '›';
  position: absolute; right: -6px; top: 50%;
  transform: translateY(-50%);
  color: var(--accent); font-size: 1rem;
}

@media (max-width: 640px) {
  .flow {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .flow-step {
    margin-bottom: 0.5rem;
  }
  .flow-circle {
    width: 90px;
    height: 90px;
  }
  .flow-line {
    width: 1px;
    height: 120px;
    min-width: unset;
    background: linear-gradient(180deg, var(--accent), rgba(91,110,245,0.2));
    margin-left: 0;
  }
  .flow-line::after {
    content: '›';
    right: unset; top: unset;
    bottom: -8px; left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }
  .flow-tooltip {
    top: 50%;
    left: calc(100% + 15px);
    bottom: unset;
    transform: translateY(-50%);
    width: 160px;
    z-index: 200;
    color: var(--text);
  }
  .flow-circle:hover .flow-tooltip {
    transform: translateY(-50%);
  }
    .flow-tooltip::before {
    top: 50%;
    left: unset;
    bottom: unset;
    right: 100%;
    transform: translateY(-50%);
    border-bottom-color: transparent;
    border-right-color: rgba(91,110,245,0.35);
  }
}
.why-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.75rem;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  cursor: default;
  background: transparent;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}
.why-item::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(
    ellipse at top left,
    rgba(91,110,245,0.08) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s;
}
.why-item:hover { background: rgba(91,110,245,0.04); }
.why-item:hover::before { opacity: 1; }

.why-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem; font-weight: 700;
  color: rgba(91,110,245,0.15);
  line-height: 1; min-width: 48px;
  letter-spacing: -0.04em;
  transition: color 0.3s;
}
.why-item:hover .why-num { color: rgba(91,110,245,0.4); }
.why-item:hover .why-body h3 {
  color: var(--accent);  /* ← kék lesz hoverre */
}
.why-body p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
  transition: color 0.3s;  /* ← add hozzá */
}

.why-item:hover .why-body p {
  color: var(--text);  /* ← fehérebbre vált hoverre */
}

.why-body h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 1rem;
  margin-bottom: 0.4rem; color: var(--text);
    color: var(--text);
  transition: color 0.3s; 
}
.why-body p { color: var(--muted); font-size: 0.88rem; line-height: 1.7; }
/* FOLYAMAT */
.steps { display: flex; flex-direction: column; gap: 0; max-width: 680px; }
.step { display: flex; gap: 2rem; padding: 2rem 0; border-bottom: 1px solid var(--border); }
.step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Space Grotesk', sans-serif; font-size: 3rem; font-weight: 700;
  color: rgba(91,110,245,0.18); line-height: 1; min-width: 60px; letter-spacing: -0.04em;
}
.step-body h3 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.1rem; margin-bottom: 0.4rem; }
.step-body p { color: var(--muted); font-size: 0.9rem; }

/* ÁRAK */
#arak { background: var(--bg2); }
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; max-width: 900px;
}
.price-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 16px; padding: 2rem; transition: transform 0.2s;
}
.price-card:hover { transform: translateY(-3px); }
.price-card.featured { border-color: rgba(91,110,245,0.5); background: rgba(91,110,245,0.06); position: relative; }
.featured-label {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.06em; padding: 4px 14px; border-radius: 100px;
  text-transform: uppercase; white-space: nowrap;
}
.price-name { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1rem; color: var(--muted); margin-bottom: 0.75rem; letter-spacing: 0.04em; text-transform: uppercase; }
.price-amount { font-family: 'Space Grotesk', sans-serif; font-size: 2.5rem; font-weight: 700; letter-spacing: -0.03em; margin-bottom: 0.25rem; }
.price-period { font-size: 0.8rem; color: var(--muted); margin-bottom: 1.5rem; }
.price-features { list-style: none; margin-bottom: 2rem; }
.price-features li { font-size: 0.88rem; color: var(--muted); padding: 0.4rem 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px; }
.price-features li:last-child { border-bottom: none; }
.price-features li::before { content: '✓'; color: var(--accent); font-weight: 600; font-size: 0.8rem; flex-shrink: 0; }
.price-btn { display: block; text-align: center; padding: 0.75rem; border-radius: 8px; text-decoration: none; font-weight: 500; font-size: 0.9rem; transition: all 0.2s; }
.price-btn-outline { border: 1px solid var(--border); color: var(--text); }
.price-btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.price-btn-filled { background: var(--accent); color: #fff; box-shadow: 0 0 20px rgba(91,110,245,0.3); }
.price-btn-filled:hover { opacity: 0.85; }

/* FAQ */
.faq-list { max-width: 700px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; padding: 1.25rem 0; background: none; border: none; display: flex; justify-content: space-between; align-items: center; cursor: pointer; text-align: left; font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 500; color: var(--text); transition: color 0.2s; }
.faq-q:hover { color: var(--accent); }
.faq-icon { font-size: 1.2rem; color: var(--accent); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a p { padding: 0 0 1.25rem; font-size: 0.88rem; color: var(--muted); line-height: 1.75; }

/* KAPCSOLAT */
.contact-wrap { max-width: 600px; background: var(--card-bg); border: 1px solid var(--border); border-radius: 20px; padding: 3rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 1rem; }
.form-group label { font-size: 0.8rem; color: var(--muted); letter-spacing: 0.02em; }
.form-group input, .form-group textarea { background: var(--bg3); border: 1px solid var(--border); border-radius: 8px; padding: 0.75rem 1rem; color: var(--text); font-family: 'Inter', sans-serif; font-size: 0.9rem; outline: none; transition: border-color 0.2s; }
.form-group input:focus, .form-group textarea:focus { border-color: rgba(91,110,245,0.5); }
.form-group textarea { resize: vertical; min-height: 120px; }
.privacy-row { display: flex; gap: 10px; align-items: flex-start; background: var(--bg3); border: 1px solid var(--border); border-radius: 8px; padding: 12px 14px; margin-bottom: 1rem; cursor: pointer; font-size: 0.82rem; color: var(--muted); line-height: 1.6; }
.privacy-row a { color: var(--accent); text-decoration: underline; }
.submit-btn { width: 100%; padding: 1rem; background: var(--accent); color: #fff; border: none; border-radius: 8px; font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 500; cursor: pointer; transition: opacity 0.2s, transform 0.1s; box-shadow: 0 0 30px rgba(91,110,245,0.3); -webkit-tap-highlight-color: transparent; }
.submit-btn:hover { opacity: 0.85; }
.submit-btn:active { transform: scale(0.99); }

/* FOOTER */
footer { position: relative; z-index: 1; padding: 2.5rem 5%; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; background: var(--bg); }
footer p { font-size: 0.85rem; color: var(--muted); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.85rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }

/* FADE IN */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* RESPONSIVE */
@media (max-width: 768px) {
  section { padding: 4rem 5%; }
  .why-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 100%; }
  h2 { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-map { order: -1; }
}
@media (max-width: 640px) {
  .hero { padding: 7rem 5% 4rem; min-height: 70vh; }
  h1 { font-size: clamp(1.7rem, 7vw, 2.2rem); }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; padding: 1rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-wrap { padding: 1.5rem 1.25rem; }
  footer { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .orb1 { width: 300px; height: 300px; }
  .orb2 { width: 200px; height: 200px; }
}