/* ═══════════════════════════════════════════════════════
   SmartFlow Studio — teljes, a live HTML-hez illesztett stíluslap
   ═══════════════════════════════════════════════════════ */

:root {
  --bg: #0a0a0f;
  --bg-alt: #111118;
  --bg-card: rgba(255,255,255,0.03);
  --card-bg: rgba(255,255,255,0.03);      /* alias, mert a HTML inline stílusai ezt a nevet használják */
  --bg-card-hover: rgba(255,255,255,0.05);
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.14);
  --text: #f0f0f5;
  --text-muted: #a8a8b8;
  --muted: #a8a8b8;                        /* alias, mert a HTML inline stílusai ezt a nevet használják */
  --text-dim: #7a7a90;
  --accent: #5b6ef5;
  --accent-hover: #4a5ce0;
  --accent-light: rgba(91,110,245,0.12);
  --accent-border: rgba(91,110,245,0.3);
  --accent-glow: rgba(91,110,245,0.35);
  --green: #22c55e;
  --red: #ef4444;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-card: clamp(20px, 2vw, 24px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
h1, h2, h3 { font-family: var(--font-display); color: var(--text); letter-spacing: -0.02em; }

.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── Háttér "orb" fényfoltok ── */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}
.orb1 { width: 420px; height: 420px; background: var(--accent); top: -100px; left: -100px; }
.orb2 { width: 360px; height: 360px; background: #8a5cf5; bottom: -80px; right: -80px; }

/* ── Gombok ── */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 13px 26px;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 700;
  transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(91,110,245,0.35); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-strong);
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: border-color 0.15s, background 0.15s;
}
.btn-secondary:hover { border-color: var(--accent); background: var(--accent-light); }

/* ── Section alapok ── */
section { padding: 90px 24px; position: relative; z-index: 1; }
.section-tag {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
section > h2, section h2.fade-in {
  text-align: center;
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
  font-weight: 700;
  line-height: 1.25;
  max-width: 720px;
  margin: 0 auto 16px;
}
.section-sub {
  text-align: center;
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 44px;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   NAVIGÁCIÓ — a valódi HTML szerkezete: bare <nav>, <ul>, .logo,
   .hamburger, #mobile-menu, .mobile-close
   ═══════════════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1160px;
  margin: 0 auto;
  padding: 18px 24px;
  background: rgba(10,10,15,0.75);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.logo { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--text); }
.logo span { color: var(--accent); }
nav ul { display: flex; align-items: center; gap: 28px; }
nav ul li a { font-size: 0.88rem; font-weight: 500; color: var(--muted); transition: color 0.15s; }
nav ul li a:hover { color: var(--text); }
nav ul li a.btn-primary { color: #fff; padding: 9px 18px; font-size: 0.85rem; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; z-index: 210; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 6px;
  position: fixed;
  top: 0; right: 0;
  width: 78%;
  max-width: 320px;
  height: 100vh;
  padding: 90px 28px 28px;
  background: var(--bg-alt);
  border-left: 1px solid var(--border);
  z-index: 205;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 12px 4px; font-size: 1rem; font-weight: 500; color: var(--muted); border-bottom: 1px solid var(--border); }
.mobile-menu a.btn-primary { text-align: center; margin-top: 12px; border-bottom: none; color: #fff; }
.mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  display: flex; align-items: center; justify-content: center;
}

@media (max-width: 900px) {
  nav ul { display: none; }
  .hamburger { display: flex; }
}

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
.hero { padding: 150px 24px 70px; text-align: center; overflow: hidden; }
.hero-inner { max-width: 760px; margin: 0 auto; }
.hero-eyebrow { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.hero h1 { font-size: clamp(1.9rem, 4.8vw, 3rem); font-weight: 700; line-height: 1.18; margin-bottom: 20px; }
.hero h1 .line2 { color: var(--accent); }
.hero-sub { font-size: 1.02rem; color: var(--muted); max-width: 520px; margin: 0 auto 30px; line-height: 1.65; }
.hero-sub.glow-active { text-shadow: 0 0 24px var(--accent-glow); }
.hero-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }
.hero-trust { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.hero-trust span { font-size: 0.8rem; color: var(--text-dim); }
.hero-trust span::before { content: '✓ '; color: var(--accent); font-weight: 700; }

.guarantee-bar {
  display: flex; justify-content: center; gap: 28px; flex-wrap: wrap;
  padding: 20px 24px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  position: relative; z-index: 1;
}
.guarantee-bar span { display: flex; align-items: center; gap: 7px; font-size: 0.8rem; color: var(--muted); }
.guarantee-bar i { width: 16px; height: 16px; color: var(--accent); }
/* ═══════════════════════════════════════════════════════
   AKCIÓ-SÁV
   ═══════════════════════════════════════════════════════ */
.promo-banner {
  padding: 0 24px 70px;
  position: relative;
  z-index: 1;
}
.promo-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(160deg, rgba(91,110,245,0.14), rgba(138,92,245,0.08));
  border: 1px solid var(--accent-border);
  border-radius: 22px;
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
}
.promo-inner::before {
  content: '';
  position: absolute;
  top: -60%; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  opacity: 0.4;
  pointer-events: none;
}

.promo-badge-wrap { margin-bottom: 18px; }
.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  position: relative;
  z-index: 1;
}
.promo-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #fff;
  animation: promo-pulse 1.6s ease-in-out infinite;
}
@keyframes promo-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.promo-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  max-width: 520px;
  margin: 0 auto 22px;
  position: relative;
  z-index: 1;
}
.promo-highlight {
  color: var(--accent);
  position: relative;
}

.promo-slots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 26px;
  position: relative;
  z-index: 1;
}
.promo-slot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
}
.promo-slots-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  margin-left: 8px;
}

.promo-text {
  max-width: 540px;
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
}
.promo-text p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 14px;
  text-align: left;
}
.promo-text p:last-child { margin-bottom: 0; }
.promo-text strong { color: var(--text); }
.promo-why {
  background: rgba(255,255,255,0.03);
  border-left: 2px solid var(--accent);
  padding: 12px 16px;
  border-radius: 0 8px 8px 0;
  font-size: 0.85rem !important;
}

.promo-cta {
  position: relative;
  z-index: 1;
  font-size: 0.95rem;
  padding: 14px 32px;
}

@media (max-width: 600px) {
  .promo-inner { padding: 34px 22px; }
  .promo-text p { text-align: left; }
}
/* ── Statisztika-sáv ── */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px;
  position: relative; z-index: 1;
}
.stat { text-align: center; }
.stat-num { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; color: var(--text); }
.stat-num span { color: var(--accent); }
.stat-label { font-size: 0.8rem; color: var(--muted); margin-top: 6px; }

/* ═══════════════════════════════════════════════════════
   FOLYAMAT (#folyamat) — process-grid
   ═══════════════════════════════════════════════════════ */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
.process-step { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 28px 22px; }
.process-num { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--accent); margin-bottom: 14px; }
.process-step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.process-step p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* ── Hogyan dolgozom (#how) — steps (a folyamat-tól külön elnevezés) ── */
.steps { display: flex; flex-direction: column; gap: 18px; max-width: 720px; margin: 0 auto; }
.step { display: flex; gap: 20px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 24px; }
.step-num { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--accent); min-width: 40px; }
.step-body h3 { font-size: 1.05rem; margin-bottom: 6px; }
.step-body p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

/* ═══════════════════════════════════════════════════════
   SMARTFLOW OS KIEMELT AJÁNLAT
   ═══════════════════════════════════════════════════════ */
.smartflow-highlight { max-width: 900px; margin: 0 auto; text-align: center; }
.smartflow-card { padding: 40px 32px; }
.smartflow-card > .service-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-light);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.smartflow-image {
  width: 100%;
  max-width: 640px;
  margin: 20px auto;
  border-radius: 14px;
  border: 1px solid var(--border);
  cursor: zoom-in;
}
#lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: zoom-out;
}
#lightbox img { max-width: 90vw; max-height: 90vh; border-radius: 10px; }

.smartflow-features { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin: 24px 0; }
.smartflow-features span { font-size: 0.85rem; color: var(--muted); }
.smartflow-offer { background: var(--accent-light); border: 1px solid var(--accent-border); border-radius: 14px; padding: 16px 20px; margin: 20px auto; max-width: 560px; }
.smartflow-offer-badge { display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.smartflow-offer-text { font-size: 0.9rem; color: #d5d5e0; }
.smartflow-offer-text strong { color: var(--text); }

/* ═══════════════════════════════════════════════════════
   SZOLGÁLTATÁSOK (#services)
   ═══════════════════════════════════════════════════════ */
#services { max-width: 1180px; margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(20px, 2.4vw, 28px); }
.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: clamp(30px, 3vw, 36px) clamp(26px, 2.6vw, 30px);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  background: var(--bg-card-hover);
  box-shadow: 0 24px 48px -20px rgba(0,0,0,0.55), 0 0 0 1px var(--accent-glow), 0 0 40px -8px var(--accent-glow);
}
/* Ikon-négyzet a szolgáltatás-kártyákon (elkülönítve a "Miért mi" .why-item-től) */
.service-card > .why-icon {
  width: clamp(56px, 6vw, 64px);
  height: clamp(56px, 6vw, 64px);
  border-radius: 16px;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.service-card:hover > .why-icon { transform: scale(1.08) rotate(-4deg); }
.service-card > .why-icon i, .service-card > .why-icon svg { width: 26px; height: 26px; stroke-width: 2; }

.service-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: var(--text); margin: 0 0 10px; line-height: 1.35; }
.service-card p { font-size: 0.9rem; line-height: 1.65; color: var(--muted); margin: 0 0 26px; flex-grow: 1; }

.service-price { display: flex; flex-direction: column; gap: 2px; padding-top: 20px; margin-bottom: 24px; border-top: 1px solid var(--border); }
/* Ár-szám a kártyákon (elkülönítve a smartflow-card felső jelvényétől) */
.service-price > .service-tag { font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; color: var(--text); letter-spacing: -0.01em; }
.service-price-label { font-size: 0.72rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.08em; }

.service-cta-group { display: flex; gap: 10px; }
.cta-secondary, .cta-primary {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 12px 14px;
  border-radius: 10px;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
  white-space: nowrap;
}
.cta-secondary { background: transparent; border: 1px solid var(--border-strong); color: var(--muted); }
.cta-secondary:hover { border-color: var(--accent); color: var(--text); }
.cta-primary { background: var(--accent); border: 1px solid var(--accent); color: #fff; }
.cta-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
.cta-arrow { transition: transform 0.2s ease; font-size: 0.95rem; line-height: 1; }
.cta-primary:hover .cta-arrow, .cta-secondary:hover .cta-arrow { transform: translateX(3px); }

/* ═══════════════════════════════════════════════════════
   IPARÁGI MEGOLDÁSOK (#industries)
   ═══════════════════════════════════════════════════════ */
#industries { max-width: 1180px; margin: 0 auto; }
.ind-h2 { text-align: center; font-size: clamp(1.7rem, 3.5vw, 2.3rem); font-weight: 700; margin-bottom: 16px; }
.ind-sub { text-align: center; font-size: 0.95rem; color: var(--muted); max-width: 620px; margin: 0 auto 30px; line-height: 1.6; }
.ind-divider { width: 60px; height: 2px; background: var(--accent); margin: 0 auto 50px; border-radius: 2px; }

.ind-row { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-bottom: 80px; }
.ind-row.flip { direction: rtl; }
.ind-row.flip > * { direction: ltr; }

.ind-mockup { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.ind-bar { display: flex; align-items: center; gap: 6px; padding: 10px 14px; background: rgba(255,255,255,0.03); border-bottom: 1px solid var(--border); }
.dot { width: 9px; height: 9px; border-radius: 50%; }
.dot.dr { background: #f87171; }
.dot.dy { background: #fbbf24; }
.dot.dg { background: #34d399; }
.ind-url { margin-left: 10px; font-size: 0.72rem; color: var(--text-dim); }
.ind-scroll { max-height: 340px; overflow-y: auto; }
.ind-scroll img { width: 100%; display: block; }
.ind-scroll-hint { text-align: center; font-size: 0.72rem; color: var(--text-dim); padding: 8px; }

.ind-text-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.ind-text h3 { font-size: 1.3rem; margin-bottom: 14px; line-height: 1.3; }
.ind-text p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; margin-bottom: 14px; }
.ind-features { margin: 16px 0 22px; }
.ind-features li {
  font-size: 0.88rem;
  color: var(--muted);
  padding: 6px 0 6px 22px;
  position: relative;
}
.ind-features li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.ind-cta {
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.92rem;
  border-bottom: 1.5px solid var(--accent);
  padding-bottom: 2px;
}

/* ═══════════════════════════════════════════════════════
   MIÉRT MI (#miert-mi)
   ═══════════════════════════════════════════════════════ */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1100px; margin: 0 auto; }
.why-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 26px 22px; }
.why-item > .why-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--accent-light);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.why-item h3 { font-size: 1rem; margin-bottom: 6px; }
.why-item p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* ═══════════════════════════════════════════════════════
   ÁRAZÁS — csomagok + moduláris lista
   ═══════════════════════════════════════════════════════ */
.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1100px; margin: 40px auto; padding: 0 24px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto 20px; }

.price-card { position: relative; background: var(--bg-card); border: 1px solid var(--border); border-radius: 18px; padding: 30px 26px; }
.price-card.featured { border-color: var(--accent-border); background: rgba(91,110,245,0.06); }
.featured-label {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff; font-size: 0.7rem; font-weight: 700;
  padding: 4px 14px; border-radius: 999px;
}
.price-name { font-size: 0.85rem; color: var(--muted); margin-bottom: 6px; }
.price-amount { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; margin-bottom: 2px; }
.price-period { font-size: 0.78rem; color: var(--text-dim); margin-bottom: 20px; }
.price-features { margin-bottom: 24px; }
.price-features li { font-size: 0.85rem; color: var(--muted); padding: 7px 0; border-bottom: 1px solid var(--border); }
.price-features li::before { content: '✓ '; color: var(--green); font-weight: 700; margin-right: 4px; }
.price-btn { display: block; text-align: center; padding: 12px 20px; border-radius: 10px; font-size: 0.88rem; font-weight: 700; }
.price-btn-outline { border: 1.5px solid var(--border-strong); color: var(--text); }
.price-btn-outline:hover { border-color: var(--accent); }

.pricing-divider { text-align: center; margin: 10px auto 40px; position: relative; max-width: 1100px; }
.pricing-divider span { display: inline-block; background: var(--bg); padding: 0 16px; font-size: 0.82rem; color: var(--text-dim); position: relative; z-index: 1; }
.pricing-divider::before { content: ''; position: absolute; top: 50%; left: 24px; right: 24px; height: 1px; background: var(--border); }

/* ── Moduláris kalkulátor-elemek (jelenleg wrapper nélkül, egyenként) ── */
.calc-item {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 700px;
  margin: 0 auto 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 18px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.calc-item:has(.calc-check:checked) { border-color: var(--accent-border); background: rgba(91,110,245,0.07); }
.calc-check { display: none; }
.calc-box {
  width: 20px; height: 20px; min-width: 20px;
  border: 1.5px solid var(--border-strong);
  border-radius: 6px;
  background: var(--bg);
  position: relative;
  transition: background 0.15s, border-color 0.15s;
}
.calc-check:checked ~ .calc-box { background: var(--accent); border-color: var(--accent); }
.calc-check:checked ~ .calc-box::after {
  content: ''; position: absolute; left: 6px; top: 2px; width: 5px; height: 10px;
  border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg);
}
.calc-info { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.calc-title { font-size: 0.95rem; font-weight: 600; }
.calc-desc { font-size: 0.78rem; color: var(--text-dim); }
.calc-price { font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; color: var(--accent); white-space: nowrap; }

/* ═══════════════════════════════════════════════════════
   TARTALOM SZEKCIÓK (SEO cikkek)
   ═══════════════════════════════════════════════════════ */
.content-section { padding: 70px 24px; }
.content-inner { max-width: 760px; margin: 0 auto; }
.content-inner h2 { font-size: 1.7rem; margin-bottom: 18px; text-align: left; }
.content-inner p { font-size: 0.95rem; line-height: 1.75; color: var(--muted); margin-bottom: 16px; }
.content-inner strong { color: var(--text); }
.content-list { margin: 0 0 16px 20px; padding: 0; }
.content-list li { font-size: 0.95rem; line-height: 1.7; color: var(--muted); margin-bottom: 10px; }
.content-list strong { color: var(--text); }

/* ═══════════════════════════════════════════════════════
   GYIK (#faq)
   ═══════════════════════════════════════════════════════ */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
}
.faq-icon { width: 22px; height: 22px; flex-shrink: 0; color: var(--accent); transition: transform 0.2s ease; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.active .faq-body { max-height: 400px; }
.faq-body-inner { padding: 0 20px 20px; font-size: 0.88rem; color: var(--muted); line-height: 1.7; }

.faq-cta {
  max-width: 760px;
  margin: 40px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--accent-light);
  border: 1px solid var(--accent-border);
  border-radius: 16px;
  padding: 24px 28px;
  flex-wrap: wrap;
}
.faq-cta-title { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.faq-cta-sub { font-size: 0.85rem; color: var(--muted); }

/* ═══════════════════════════════════════════════════════
   RÓLUNK (#about)
   ═══════════════════════════════════════════════════════ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; max-width: 1100px; margin: 40px auto 0; align-items: start; }

/* ═══════════════════════════════════════════════════════
   LÁBLÉC
   ═══════════════════════════════════════════════════════ */
footer { padding: 50px 24px 30px; text-align: center; border-top: 1px solid var(--border); position: relative; z-index: 1; }
footer p { font-size: 0.82rem; color: var(--text-dim); }
.footer-links { display: flex; justify-content: center; gap: 16px; margin-top: 16px; }
.footer-links a { color: var(--muted); transition: color 0.15s; font-size: 0.82rem; }
.footer-links a:hover { color: var(--text); }

/* ═══════════════════════════════════════════════════════
   RESZPONZÍV
   ═══════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .process-grid, .why-grid, .stats { grid-template-columns: 1fr 1fr; }
  .package-grid, .pricing-grid { grid-template-columns: 1fr; }
  .ind-row, .ind-row.flip { grid-template-columns: 1fr; direction: ltr; }
  .about-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .process-grid, .why-grid, .stats { grid-template-columns: 1fr; }
  .guarantee-bar { gap: 14px 20px; }
  section { padding: 60px 20px; }
  .service-cta-group { flex-direction: column; }
  .steps { padding: 0; }
  .faq-cta { flex-direction: column; text-align: center; }
}
/* ═══════════════════════════════════════════════════════
   ÁRKALKULÁTOR / KONFIGURÁTOR
   ═══════════════════════════════════════════════════════ */
.config-section { max-width: 1160px; margin: 0 auto; }

.config-progress {
  max-width: 700px;
  margin: 0 auto 40px;
  height: 4px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
}
.config-progress-bar {
  height: 100%;
  width: 15%;
  background: linear-gradient(90deg, var(--accent), #8a5cf5);
  border-radius: 999px;
  transition: width 0.4s ease;
}

.config-wrap {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  align-items: start;
}

.config-steps { display: flex; flex-direction: column; gap: 20px; }

.config-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px 28px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.config-step:focus-within, .config-step:hover {
  border-color: var(--border-strong);
}

.config-step-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.config-step-num {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.config-step-head h3 { font-size: 1.05rem; margin: 0; flex: 1; }

.config-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 3px 10px;
  border-radius: 999px;
  margin-left: 8px;
  vertical-align: middle;
}
.config-badge-auto {
  animation: badge-pop 0.35s ease;
}
@keyframes badge-pop {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* Radio kártyák */
.config-radio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.config-radio-grid-4 { grid-template-columns: repeat(4, 1fr); }
.config-radio-grid-2 { grid-template-columns: repeat(2, 1fr); }

.config-radio-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}
.config-radio-card:hover { transform: translateY(-2px); border-color: var(--border-strong); }
.config-radio-card input { position: absolute; opacity: 0; }
.config-radio-card:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent-light);
  box-shadow: 0 0 0 1px var(--accent-border);
}
.config-radio-icon {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: var(--accent-light);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
.config-radio-icon i { width: 18px; height: 18px; }
.config-radio-title { font-size: 0.92rem; font-weight: 700; color: var(--text); }
.config-radio-price { font-family: var(--font-display); font-size: 0.85rem; font-weight: 700; color: var(--accent); }
.config-radio-desc { font-size: 0.78rem; color: var(--text-dim); line-height: 1.5; }

/* Checkbox sorok */
.config-check-list { display: flex; flex-direction: column; gap: 8px; }
.config-check-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.config-check-row:hover { background: var(--bg-card-hover); }
.config-check-row:has(input:checked) { background: var(--accent-light); border-color: var(--accent-border); }
.config-check-row input { position: absolute; opacity: 0; }
.config-check-box {
  width: 19px; height: 19px; min-width: 19px;
  border: 1.5px solid var(--border-strong);
  border-radius: 6px;
  position: relative;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.config-check-row input:checked ~ .config-check-box { background: var(--accent); border-color: var(--accent); }
.config-check-row input:checked ~ .config-check-box::after {
  content: ''; position: absolute; left: 5px; top: 1px;
  width: 5px; height: 10px;
  border: solid #fff; border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.config-check-info { flex: 1; display: flex; align-items: center; gap: 6px; }
.config-check-title { font-size: 0.92rem; font-weight: 600; color: var(--text); }
.config-check-price { font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; color: var(--text); white-space: nowrap; }
.config-price-sub { font-size: 0.7rem; color: var(--text-dim); font-weight: 500; }

/* Tooltip */
.config-tooltip {
  position: relative;
  display: inline-flex;
  color: var(--text-dim);
  cursor: help;
}
.config-tooltip i { width: 14px; height: 14px; }
.config-tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 130%; left: 50%;
  transform: translateX(-50%);
  background: #101018;
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 400;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid var(--border-strong);
  white-space: normal;
  width: 200px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 20;
}
.config-tooltip:hover::after { opacity: 1; }

/* Slider */
.config-slider-row { display: flex; align-items: center; gap: 14px; }
.config-slider-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1.5px solid var(--border-strong);
  color: var(--text);
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.config-slider-btn:hover { border-color: var(--accent); color: var(--accent); }
#landingSlider {
  flex: 1;
  accent-color: var(--accent);
  height: 4px;
}
.config-slider-value {
  min-width: 56px;
  text-align: right;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text);
}
.config-slider-note { font-size: 0.8rem; color: var(--text-dim); margin-top: 10px; }

/* ── Összegzés panel ── */
.config-summary {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 26px;
  position: sticky;
  top: 100px;
}
.config-summary-title { font-size: 1.05rem; margin-bottom: 16px; }
.config-summary-list { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; min-height: 20px; }
.config-summary-item { font-size: 0.82rem; color: var(--text-muted); display: flex; justify-content: space-between; gap: 10px; }
.config-summary-item span:last-child { color: var(--text); font-weight: 600; white-space: nowrap; }

.config-recommendation {
  font-size: 0.82rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.03);
  border-left: 2px solid var(--accent);
  padding: 10px 14px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 18px;
  line-height: 1.6;
  min-height: 20px;
}

.config-price-block {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  margin-bottom: 18px;
}
.config-price-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; }
.config-price-label { font-size: 0.8rem; color: var(--text-dim); }
.config-price-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  transition: color 0.2s ease;
}
.config-price-row-sub .config-price-value { font-size: 1rem; color: var(--text-muted); font-weight: 700; }
.config-price-value.pulse { animation: price-pulse 0.35s ease; }
@keyframes price-pulse {
  0% { transform: scale(1.08); color: var(--accent); }
  100% { transform: scale(1); }
}

.config-whatyouget { margin-bottom: 20px; }
.config-whatyouget-title { font-size: 0.85rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.config-whatyouget-list { display: flex; flex-direction: column; gap: 5px; }
.config-whatyouget-list li {
  list-style: none;
  font-size: 0.78rem;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}
.config-whatyouget-list li::before {
  content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700;
}

.config-cta {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 0.95rem;
  padding: 15px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.config-cta:hover { transform: translateY(-2px); }

@media (max-width: 900px) {
  .config-wrap { grid-template-columns: 1fr; }
  .config-summary { position: static; order: 99; }
  .config-radio-grid, .config-radio-grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .config-radio-grid, .config-radio-grid-4 { grid-template-columns: 1fr; }
  .config-step { padding: 20px; }
}
/* ═══════════════════════════════════════════════════════
   AKCIÓK
   ═══════════════════════════════════════════════════════ */
.promo-section { max-width: 1180px; margin: 0 auto; }

.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.promo-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.promo-card:hover { transform: translateY(-4px); border-color: var(--border-strong); }

.promo-card-featured {
  border-color: var(--accent-border);
  background: linear-gradient(160deg, rgba(91,110,245,0.1), rgba(138,92,245,0.05));
}
.promo-card-featured::before {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 220px; height: 220px;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}

.promo-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.promo-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: promo-pulse 1.6s ease-in-out infinite;
}
@keyframes promo-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.promo-card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.promo-card-icon i { width: 22px; height: 22px; }

.promo-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.35;
}
.promo-card-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}
.promo-card-text strong { color: var(--text); }

.promo-list {
  margin: 0 0 18px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.promo-list li {
  list-style: none;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.promo-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.promo-benefit {
  background: rgba(255,255,255,0.03);
  border-left: 2px solid var(--accent);
  border-radius: 0 8px 8px 0;
  padding: 10px 14px;
  margin-bottom: 10px;
}
.promo-benefit-us { border-left-color: #8a5cf5; }
.promo-benefit-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent);
  margin-bottom: 4px;
}
.promo-benefit-us .promo-benefit-label { color: #8a5cf5; }
.promo-benefit p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; margin: 0; }

.promo-card-link {
  display: inline-block;
  margin-top: auto;
  padding-top: 14px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent);
}
.promo-card-link:hover { color: var(--accent-hover); }

@media (max-width: 900px) {
  .promo-grid { grid-template-columns: 1fr; }
}
/* ═══════════════════════════════════════════════════════
   VISSZA A TETEJÉRE GOMB
   ═══════════════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, border-color 0.2s ease, background 0.2s ease;
  z-index: 250;
  backdrop-filter: blur(8px);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  border-color: var(--accent);
  background: var(--accent-light);
  color: var(--accent);
}
.back-to-top svg { width: 20px; height: 20px; }

@media (max-width: 560px) {
  .back-to-top { width: 42px; height: 42px; right: 16px; bottom: 16px; }
}
/* ═══════════════════════════════════════════════════════
   ÁRAJÁNLAT-KÉRŐ MODAL
   ═══════════════════════════════════════════════════════ */
.quote-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.quote-overlay.open { display: flex; }

.quote-modal {
  position: relative;
  background: #101018;
  border: 1px solid var(--border-strong);
  border-radius: 20px;
  width: 100%;
  max-width: 460px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}

.quote-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-dim);
  cursor: pointer;
  font-size: 0.9rem;
}
.quote-close:hover { color: var(--text); background: var(--bg-card-hover); }

.quote-title { font-size: 1.3rem; margin-bottom: 6px; }
.quote-sub { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 22px; line-height: 1.5; }

.quote-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  margin: 14px 0 6px;
}
.quote-input, .quote-textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 0.92rem;
  color: var(--text);
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.15s ease;
}
.quote-input:focus, .quote-textarea:focus { border-color: var(--accent); }
.quote-textarea { resize: vertical; min-height: 80px; }
.quote-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.quote-submit {
  width: 100%;
  margin-top: 20px;
  font-size: 0.95rem;
}
.quote-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.quote-error {
  color: #ef4444;
  font-size: 0.82rem;
  margin-top: 10px;
  text-align: center;
}
/* ═══════════════════════════════════════════════════════
   KAPCSOLAT — 3 ikonos felugró panel
   ═══════════════════════════════════════════════════════ */

.contact-btn-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.contact-popover {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 2px;
  z-index: 300;
  pointer-events: none;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--text-dim, #8b8b96);
  background: rgba(16, 16, 24, 0.92);
  backdrop-filter: blur(6px);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.2s ease, background 0.2s ease;
  pointer-events: none;
  white-space: nowrap;
}

.contact-popover.open {
  pointer-events: auto;
}
.contact-popover.open .contact-channel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.contact-popover.open .contact-channel:nth-child(1) { transition-delay: 0.04s; }
.contact-popover.open .contact-channel:nth-child(2) { transition-delay: 0.10s; }
.contact-popover.open .contact-channel:nth-child(3) { transition-delay: 0.16s; }

.contact-channel:hover {
  background: rgba(255, 255, 255, 0.1);
}

.contact-channel-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-channel-icon svg {
  width: 18px;
  height: 18px;
}

.contact-channel-label {
  font-size: 0.9rem;
  font-weight: 600;
}

.contact-channel-whatsapp:hover { color: #25d366; }
.contact-channel-facebook:hover { color: #0866ff; }
.contact-channel-email:hover    { color: var(--accent, #5b6ef5); }
@media (max-width: 768px) {
  .contact-btn-wrap {
    position: relative !important;
  }
  .contact-popover {
    position: absolute !important;
    top: calc(100% + 10px);
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
}