:root {
  --bg: #0a1128;
  --bg-alt: #101a3d;
  --card: #15204a;
  --border: #25346b;
  --text: #eef2ff;
  --muted: #9aa8d0;
  --accent: #fbbf24;
  --accent-2: #f59e0b;
  --blue: #3b5bd6;
  --accent-soft: rgba(251, 191, 36, .12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

h1, h2, h3 { line-height: 1.25; }

a { color: inherit; }

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 17, 40, .88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-size: 1.3rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -.5px;
}
.logo span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  transition: color .2s;
}
.nav-links a:hover { color: var(--text); }

/* Nyelvváltó */
.lang-switch {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
}
.lang-switch .lang {
  padding: 5px 14px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--muted);
  transition: background .2s, color .2s;
}
.lang-switch .lang:hover { color: var(--text); }
.lang-switch .lang.active {
  background: var(--blue);
  color: #fff;
}

.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #1a1205 !important;
  padding: 8px 18px;
  border-radius: 999px;
}
.nav-cta:hover { filter: brightness(1.08); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.6rem;
  cursor: pointer;
}

/* ---- Hero ---- */
.hero {
  padding: 96px 0 72px;
  text-align: center;
  background:
    radial-gradient(700px 300px at 50% -60px, rgba(59, 91, 214, .35), transparent 70%),
    radial-gradient(500px 220px at 50% 0, rgba(251, 191, 36, .1), transparent 70%),
    var(--bg);
}

.hero-eyebrow {
  display: inline-block;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-soft);
  background: var(--accent-soft);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -1px;
  max-width: 820px;
  margin: 0 auto 20px;
}

.hero-sub {
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 720px;
  margin: 0 auto 32px;
}
.hero-sub strong { color: var(--text); }

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-badges {
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  color: var(--muted);
  font-size: .95rem;
}

/* ---- Gombok ---- */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .15s, box-shadow .2s, filter .2s;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #1a1205;
  box-shadow: 0 8px 24px rgba(251, 191, 36, .28);
}
.btn-primary:hover { box-shadow: 0 10px 30px rgba(251, 191, 36, .42); }

.btn-outline {
  border: 1px solid var(--border);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.btn-lg { padding: 16px 44px; font-size: 1.1rem; }

/* ---- Szekciók ---- */
section { padding: 72px 0; }
section h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  text-align: center;
  margin-bottom: 12px;
}
.section-sub {
  text-align: center;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto 48px;
}

/* ---- Európa ---- */
.features { background: var(--bg-alt); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px;
  transition: border-color .2s, transform .2s;
}
.feature-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}
.feature-card h3 { margin-bottom: 8px; font-size: 1.1rem; color: var(--accent); }
.feature-card p { color: var(--muted); font-size: .95rem; }

/* ---- Csomagok ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color .2s, transform .2s;
}
.price-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.price-card.featured {
  border: 1px solid var(--accent);
  background: linear-gradient(160deg, var(--accent-soft), var(--card) 55%);
  box-shadow: 0 0 40px rgba(251, 191, 36, .12);
}

.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #1a1205;
  font-size: .78rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.price-card h3 { font-size: 1.1rem; margin-bottom: 10px; }

.price {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 16px;
}
.price span {
  display: block;
  font-size: .8rem;
  font-weight: 500;
  color: var(--muted);
}

.price-card ul {
  list-style: none;
  margin-bottom: 22px;
  flex: 1;
}
.price-card li {
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: .93rem;
}
.price-card li:last-child { border-bottom: none; }
.price-card li strong { color: var(--text); }

.btn-card {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #1a1205;
  text-align: center;
  padding: 11px;
  border-radius: 999px;
}
.btn-card:hover { filter: brightness(1.08); }

.pricing-note {
  text-align: center;
  color: var(--muted);
  font-size: .9rem;
  margin-top: 32px;
}

/* ---- CTA ---- */
.cta {
  text-align: center;
  background:
    radial-gradient(600px 250px at 50% 0, rgba(59, 91, 214, .3), transparent 70%),
    var(--bg-alt);
}
.cta p { color: var(--muted); margin: 10px 0 28px; font-size: 1.1rem; }

/* ---- GYIK ---- */
.faq-list { max-width: 780px; margin: 0 auto; }

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 700;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--accent);
  transition: transform .2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 22px 18px;
  color: var(--muted);
}

/* ---- SEO szöveg ---- */
.seo-text { background: var(--bg-alt); }
.seo-text h2 { text-align: left; margin-bottom: 18px; }
.seo-text p { color: var(--muted); margin-bottom: 16px; max-width: 860px; }
.seo-text strong { color: var(--text); }

/* ---- Footer ---- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-grid p { color: var(--muted); font-size: .95rem; margin-top: 8px; }
.footer-grid h3 { font-size: 1rem; margin-bottom: 12px; }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a { color: var(--muted); text-decoration: none; font-size: .95rem; }
.footer-grid a:hover { color: var(--accent); }

.copyright {
  text-align: center;
  color: var(--muted);
  font-size: .85rem;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

/* ---- Reszponzív ---- */
@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    padding: 18px 20px;
    gap: 16px;
  }
  .nav-links.open { display: flex; }

  .hero { padding: 64px 0 48px; }
  section { padding: 52px 0; }
  .footer-grid { grid-template-columns: 1fr; }
}
