/* ============================================================
   CSOK Igénylés – GSCpro-inspired Light Design
   ============================================================ */

/* ── 1. Variables ─────────────────────────────────────────── */
:root {
  --brand:       #f97316;
  --brand-mid:   #ea580c;
  --brand-dark:  #c2410c;
  --coral:       #f43f5e;
  --blue:        #2563eb;
  --blue-light:  #3b82f6;
  --teal:        #0d9488;
  --green:       #22c55e;
  --purple:      #d946ef;
  --yellow:      #facc15;
  --gold:        #f59e0b;
  --red:         #ef4444;
  --navy:        #1e293b;
  --navy-mid:    #334155;
  --navy-light:  #475569;
  --white:       #ffffff;
  --light:       #f8fafc;
  --light-2:     #f1f5f9;
  --border:      #e2e8f0;
  --text:        #0f172a;
  --text-muted:  #64748b;
  --text-light:  #94a3b8;

  --grad-hero:   linear-gradient(135deg, #fff7ed 0%, #eff6ff 50%, #fdf4ff 100%);
  --grad-brand:  linear-gradient(135deg, #f97316, #f43f5e);
  --grad-text:   linear-gradient(135deg, #f97316, #f43f5e, #d946ef);
  --grad-blue:   linear-gradient(135deg, #2563eb, #1d4ed8);
  --grad-teal:   linear-gradient(135deg, #0d9488, #0891b2);
  --grad-cta:    linear-gradient(135deg, #f97316, #ea580c, #f43f5e);

  --shadow-xs:   0 1px 3px rgba(0,0,0,.05);
  --shadow-sm:   0 2px 8px rgba(0,0,0,.06);
  --shadow:      0 4px 24px rgba(0,0,0,.08);
  --shadow-md:   0 8px 40px rgba(0,0,0,.10);
  --shadow-lg:   0 20px 60px rgba(0,0,0,.14);
  --shadow-brand:0 8px 30px rgba(249,115,22,.35);
  --shadow-blue: 0 8px 30px rgba(37,99,235,.25);

  --radius-sm:   8px;
  --radius:      12px;
  --radius-lg:   16px;
  --radius-xl:   20px;
  --radius-2xl:  28px;
  --radius-full: 999px;

  --ease:        cubic-bezier(.4,0,.2,1);
  --trans:       all .2s var(--ease);
  --trans-md:    all .3s var(--ease);
  --header-h:    72px;
  --container:   1200px;
}

/* ── 2. Reset ─────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text); background: var(--white);
  -webkit-font-smoothing: antialiased; overflow-x: hidden; line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--trans); }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font: inherit; }
input, select, textarea { font: inherit; }
input[type=number]::-webkit-inner-spin-button { -webkit-appearance: none; appearance: none; }
input[type=number] { -moz-appearance: textfield; appearance: textfield; }
[id] { scroll-margin-top: 88px; }

/* ── 3. Typography ────────────────────────────────────────── */
h1,h2,h3,h4,h5 { font-weight: 800; line-height: 1.15; color: var(--navy); letter-spacing: -.02em; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: 1.3rem; font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; }
p  { line-height: 1.75; color: var(--text-muted); }
.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── 4. Layout ────────────────────────────────────────────── */
.container    { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section      { padding: 96px 0; }
.section--sm  { padding: 56px 0; }
.section--xs  { padding: 36px 0; }
.bg-light     { background: var(--light); }
.bg-light-2   { background: var(--light-2); }
.bg-white     { background: var(--white); }
.bg-light-blue{ background: #eff6ff; }
.bg-navy      { background: var(--navy); }
.bg-dark      { background: #0f172a; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p  { font-size: 1.1rem; }
.bg-navy .section-header h2 { color: var(--white); }
.bg-navy .section-header p  { color: rgba(255,255,255,.65); }
.bg-navy h3 { color: var(--white); }
.bg-navy p  { color: rgba(255,255,255,.65); }

/* ── 5. Badges ────────────────────────────────────────────── */
.section-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 16px; border-radius: var(--radius-full);
  font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; margin-bottom: 16px;
}
.section-badge--blue  { background: #dbeafe; color: #1d4ed8; }
.section-badge--green { background: #dcfce7; color: #15803d; }
.section-badge--gold,
.section-badge--brand { background: #fff7ed; color: var(--brand-dark); }
.section-badge--navy  { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.2); }
.section-badge--teal  { background: #ccfbf1; color: #134e4a; }
.tag { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }

/* ── 6. Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-xl);
  font-size: .95rem; font-weight: 700; letter-spacing: -.01em;
  transition: var(--trans-md); cursor: pointer; border: none; white-space: nowrap;
}
.btn-gold,.btn-brand { background: var(--grad-brand); color: var(--white); box-shadow: var(--shadow-brand); }
.btn-gold:hover,.btn-brand:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(249,115,22,.45); }
.btn-primary { background: var(--grad-blue); color: var(--white); box-shadow: var(--shadow-blue); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(37,99,235,.40); }
.btn-outline-white { background: rgba(255,255,255,.15); color: var(--white); border: 2px solid rgba(255,255,255,.4); backdrop-filter: blur(8px); }
.btn-outline-white:hover { background: rgba(255,255,255,.25); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--border); }
.btn-outline:hover { border-color: var(--brand); color: var(--brand-mid); transform: translateY(-2px); }
.btn-navy { background: linear-gradient(135deg, var(--navy), var(--navy-mid)); color: var(--white); box-shadow: var(--shadow); }
.btn-navy:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-sm   { padding: 9px 18px; font-size: .85rem; border-radius: var(--radius-lg); }
.btn-lg   { padding: 18px 40px; font-size: 1.1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── 7. Header ────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  transition: all .3s var(--ease);
}
.site-header.scrolled { background: rgba(255,255,255,.97); box-shadow: 0 1px 20px rgba(0,0,0,.08); }
.site-header.hero-mode { background: rgba(255,255,255,.88); }
.header-inner { display: flex; align-items: center; gap: 24px; height: var(--header-h); }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.1rem; color: var(--navy); flex-shrink: 0; }
.logo-icon-wrap {
  width: 40px; height: 40px; background: var(--grad-brand);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; box-shadow: var(--shadow-brand); transition: var(--trans-md);
}
.logo:hover .logo-icon-wrap { transform: scale(1.08); }
.logo-text strong { color: var(--brand-mid); }
.logo-text em { font-style: normal; color: var(--text-muted); font-size: .85em; }
.main-nav { flex: 1; display: flex; justify-content: center; }
.main-nav ul { display: flex; gap: 2px; align-items: center; }
.main-nav a { padding: 8px 14px; border-radius: var(--radius); font-size: .9rem; font-weight: 500; color: #374151; transition: var(--trans); }
.main-nav a:hover,.main-nav a.active { color: var(--brand-mid); background: #fff7ed; }
.main-nav .has-dropdown { position: relative; }
.main-nav .dropdown {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  min-width: 220px; padding: 8px;
  opacity: 0; visibility: hidden; transition: all .2s var(--ease); pointer-events: none;
}
.main-nav .has-dropdown:hover .dropdown { opacity: 1; visibility: visible; pointer-events: all; }
.main-nav .dropdown li a { display: block; padding: 8px 12px; border-radius: var(--radius-sm); font-size: .875rem; }
.main-nav .dropdown li a:hover { background: #fff7ed; color: var(--brand-mid); }
.chevron { font-size: .65rem; }
.header-phone { font-size: .82rem; font-weight: 600; color: var(--text-muted); display: none; }
@media (min-width: 1100px) { .header-phone { display: block; } }
.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.burger { display: none; flex-direction: column; gap: 5px; width: 36px; height: 36px; align-items: center; justify-content: center; }
.burger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--trans); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── 8. Mobile nav ────────────────────────────────────────── */
.mobile-nav {
  display: none; flex-direction: column;
  position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 999;
  padding: 20px 24px; gap: 4px; overflow-y: auto;
  border-top: 1px solid var(--border);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { display: block; padding: 12px 14px; font-size: 1rem; font-weight: 500; color: var(--navy); border-radius: var(--radius); transition: var(--trans); }
.mobile-nav a:hover { background: #fff7ed; color: var(--brand-mid); }
.mobile-nav-group h5 { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-light); padding: 12px 14px 4px; }
.mobile-nav-cta { padding: 16px 0 0; }
@media (max-width: 960px) { .main-nav { display: none; } .header-phone { display: none !important; } .burger { display: flex; } }

/* ── 9. Hero ──────────────────────────────────────────────── */
.hero {
  min-height: 100vh; background: var(--grad-hero);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding-top: var(--header-h);
}
.hero::before {
  content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(249,115,22,.1) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(244,63,94,.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(37,99,235,.07) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite; pointer-events: none;
}
@keyframes float {
  0%,100% { transform: translate(0,0) rotate(0deg); }
  33%     { transform: translate(2%,-2%) rotate(1deg); }
  66%     { transform: translate(-1%,1%) rotate(-1deg); }
}
.blob,.blob-1,.blob-2,.hero-blob-3 {
  position: absolute; border-radius: 50%;
  filter: blur(60px); opacity: 0.3;
  animation: blob-move 15s ease-in-out infinite; pointer-events: none;
}
.blob-1 { width: 400px; height: 400px; background: linear-gradient(135deg,#fb923c,#f43f5e); top: 10%; right: -5%; }
.blob-2 { width: 350px; height: 350px; background: linear-gradient(135deg,#3b82f6,#8b5cf6); bottom: 10%; left: -5%; animation-delay: -5s; }
.hero-blob-3 { width: 250px; height: 250px; background: linear-gradient(135deg,#facc15,#22c55e); top: 50%; left: 40%; animation-delay: -10s; }
@keyframes blob-move {
  0%,100% { transform: translate(0,0) scale(1); }
  25%     { transform: translate(30px,-30px) scale(1.05); }
  50%     { transform: translate(-20px,20px) scale(0.95); }
  75%     { transform: translate(10px,-10px) scale(1.02); }
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; width: 100%; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.85); backdrop-filter: blur(8px);
  border: 1px solid rgba(249,115,22,.25); color: var(--brand-mid);
  border-radius: var(--radius-full); padding: 6px 16px;
  font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-badge::before {
  content: ''; display: inline-block; width: 8px; height: 8px;
  background: var(--brand); border-radius: 50%; animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 0 rgba(249,115,22,.5); }
  50%     { box-shadow: 0 0 0 6px rgba(249,115,22,0); }
}
.hero-content h1 { color: var(--navy); }
.hero-content h1 span {
  background: var(--grad-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-subtitle { font-size: 1.1rem; color: var(--text-muted); line-height: 1.75; margin: 20px 0 32px; }
.hero-bullets { display: flex; flex-direction: column; gap: 8px; margin-bottom: 32px; }
.hero-bullet { display: flex; align-items: center; gap: 10px; font-size: .875rem; font-weight: 500; color: #374151; }
.hero-bullet::before {
  content: '✓'; min-width: 20px; height: 20px;
  background: #dcfce7; color: #15803d; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; font-weight: 900;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 20px; margin-top: 24px; padding-top: 24px; border-top: 1px solid rgba(0,0,0,.08); flex-wrap: wrap; }
.hero-trust-item { font-size: .78rem; color: var(--text-muted); font-weight: 500; display: flex; align-items: center; gap: 6px; }
.hero-trust-item::before { content: '✓'; color: #22c55e; font-weight: 900; }
.hero-calc {
  background: var(--white); border-radius: var(--radius-2xl);
  box-shadow: 0 50px 100px -20px rgba(0,0,0,.15), 0 0 0 1px rgba(0,0,0,.04); overflow: hidden;
}
.hero-calc-header { background: var(--grad-brand); padding: 20px 24px; color: var(--white); }
.hero-calc-header h3 { color: var(--white); font-size: 1rem; margin-bottom: 4px; }
.hero-calc-header p  { color: rgba(255,255,255,.8); font-size: .82rem; margin: 0; }
.hero-calc-body { padding: 24px; }

/* ── 10. Stats bar ────────────────────────────────────────── */
.stats-bar { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-bar-inner { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item { text-align: center; padding: 28px 20px; border-right: 1px solid var(--border); transition: var(--trans-md); }
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: #fff7ed; }
.stat-value {
  font-size: 2rem; font-weight: 900; letter-spacing: -.03em; line-height: 1; margin-bottom: 6px;
  background: var(--grad-brand);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: .78rem; color: var(--text-muted); font-weight: 500; }

/* ── 11. Calculator ───────────────────────────────────────── */
.toggle-group { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 8px; }
.toggle-btn { padding: 7px 14px; border-radius: var(--radius); border: 2px solid var(--border); font-size: .82rem; font-weight: 600; color: var(--text-muted); cursor: pointer; transition: var(--trans); background: var(--white); }
.toggle-btn.active { border-color: var(--brand); background: #fff7ed; color: var(--brand-mid); }
.toggle-btn:hover:not(.active) { border-color: #d1d5db; color: var(--text); }
.form-row { display: grid; gap: 16px; margin-bottom: 16px; }
.form-row-2 { grid-template-columns: 1fr 1fr; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: .78rem; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: .05em; }
.form-hint  { font-size: .72rem; color: var(--text-light); }
.calc-row   { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-bottom: 16px; }
.calc-group { display: flex; flex-direction: column; gap: 6px; }
.calc-label { font-size: .75rem; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: .05em; }
.calc-input-wrap { position: relative; }
.calc-input-wrap input { width: 100%; padding: 10px 44px 10px 12px; border: 2px solid var(--border); border-radius: var(--radius); font-size: .95rem; font-weight: 700; color: var(--navy); background: var(--light); outline: none; transition: var(--trans); }
.calc-input-wrap input:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(249,115,22,.12); background: var(--white); }
.input-suffix { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); font-size: .75rem; font-weight: 700; color: var(--text-light); }
.calc-slider-wrap { display: flex; align-items: center; gap: 12px; }
.calc-slider { flex: 1; -webkit-appearance: none; appearance: none; height: 6px; background: linear-gradient(to right, var(--brand) 0%, var(--brand) var(--pct,66%), var(--border) var(--pct,66%), var(--border) 100%); border-radius: 3px; outline: none; cursor: pointer; }
.calc-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%; background: var(--white); border: 3px solid var(--brand); box-shadow: 0 2px 8px rgba(249,115,22,.35); cursor: pointer; transition: var(--trans); }
.calc-slider::-moz-range-thumb { width: 20px; height: 20px; border-radius: 50%; background: var(--white); border: 3px solid var(--brand); cursor: pointer; }
.calc-slider-val { font-size: .85rem; font-weight: 800; color: var(--brand-mid); min-width: 40px; text-align: right; }
.calc-result-preview { background: #fff7ed; border: 1px solid rgba(249,115,22,.2); border-radius: var(--radius-lg); padding: 16px 20px; margin-top: 16px; }
.calc-result-row { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; }
.calc-result-row:not(:last-child) { border-bottom: 1px solid rgba(249,115,22,.12); }
.calc-result-label  { font-size: .78rem; color: var(--text-muted); }
.calc-result-value  { font-size: .95rem; font-weight: 800; color: var(--brand-mid); }
.calc-result-value.highlight { font-size: 1.15rem; color: var(--brand); }

/* ── 12. How it works ─────────────────────────────────────── */
.process-steps,.how-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.process-step { text-align: center; padding: 0 16px; }
.step-number { width: 56px; height: 56px; border-radius: 50%; background: var(--grad-brand); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; font-weight: 900; margin: 0 auto 16px; box-shadow: var(--shadow-brand); }
.step-icon { font-size: 2.5rem; margin-bottom: 16px; }

/* ── 13. Product cards ────────────────────────────────────── */
.product-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.product-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; transition: var(--trans-md); display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-8px); box-shadow: 0 25px 50px -12px rgba(0,0,0,.12); border-color: transparent; }
.product-card-head { padding: 28px 24px 24px; color: var(--white); }
.product-card-head--green { background: linear-gradient(135deg,#16a34a,#22c55e); }
.product-card-head--blue  { background: var(--grad-blue); }
.product-card-head--teal  { background: var(--grad-teal); }
.product-card-head h3 { color: var(--white); font-size: 1.1rem; margin: 8px 0 6px; }
.product-card-head p  { color: rgba(255,255,255,.8); font-size: .85rem; margin: 0; }
.product-card-icon    { font-size: 2rem; line-height: 1; }
.product-card-body    { padding: 20px 24px; flex: 1; display: flex; flex-direction: column; gap: 14px; }
.product-card-footer  { padding: 16px 24px 20px; }
.product-feature      { display: flex; align-items: center; gap: 12px; }
.product-feature-icon { font-size: 1.2rem; flex-shrink: 0; }
.product-feature-val  { font-size: .95rem; font-weight: 800; color: var(--navy); line-height: 1.2; }
.product-feature-lbl  { font-size: .75rem; color: var(--text-light); margin-top: 2px; }

/* ── 14. Benefits (dark bg) ───────────────────────────────── */
.benefits-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.benefit-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); padding: 28px; transition: var(--trans-md); }
.benefit-card:hover { background: rgba(255,255,255,.12); transform: translateY(-4px); }
.benefit-icon { font-size: 2rem; margin-bottom: 14px; }
.benefit-card h3 { font-size: 1rem; margin-bottom: 8px; }

/* ── 15. FAQ ──────────────────────────────────────────────── */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: var(--trans); }
.faq-item:hover { border-color: rgba(249,115,22,.3); }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 18px 22px; cursor: pointer; font-weight: 700; font-size: .95rem; color: var(--navy); transition: var(--trans); gap: 12px; }
.faq-question:hover { color: var(--brand-mid); }
.faq-icon { font-style: normal; font-size: 1.4rem; font-weight: 300; flex-shrink: 0; color: var(--text-light); transition: transform .2s; }
.faq-question.open .faq-icon { transform: rotate(45deg); color: var(--brand); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .25s; padding: 0 22px; }
.faq-answer.open { max-height: 300px; padding: 0 22px 18px; }
.faq-answer p { font-size: .9rem; margin: 0; }

/* ── 16. CTA section ──────────────────────────────────────── */
.cta-section { background: var(--grad-cta); position: relative; overflow: hidden; }
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='m36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-section .container { position: relative; z-index: 2; }
.cta-section h2 { color: var(--white); }
.cta-section p  { color: rgba(255,255,255,.85); }
.cta-trust { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 20px; }
.cta-trust-item { font-size: .8rem; color: rgba(255,255,255,.8); display: flex; align-items: center; gap: 6px; }
.cta-trust-item::before { content: '✓'; font-weight: 900; }
.cta-grid { display: grid; grid-template-columns: 1fr 460px; gap: 56px; align-items: start; }
.cta-section .cta-grid h2 { color: var(--white); }
.cta-section .cta-grid p  { color: rgba(255,255,255,.8); }
.cta-features { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.cta-feature  { display: flex; gap: 14px; align-items: flex-start; }
.cta-feature-icon { width: 44px; height: 44px; border-radius: var(--radius); background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.cta-feature h4 { color: var(--white); font-size: .95rem; margin-bottom: 4px; }

/* ── 17. Lead form ────────────────────────────────────────── */
.lead-form-premium,.lead-form-card,.lf-card { background: var(--white); border-radius: var(--radius-2xl); box-shadow: 0 50px 100px -20px rgba(0,0,0,.2); padding: 32px; }
.lf-header { text-align: center; margin-bottom: 24px; }
.lf-header h3 { color: var(--navy); font-size: 1.1rem; margin-bottom: 8px; }
.lf-header p  { color: var(--text-muted); font-size: .875rem; }
.lf-steps { display: flex; align-items: center; margin-bottom: 24px; }
.lf-step-indicator { display: flex; align-items: center; gap: 6px; font-size: .75rem; font-weight: 700; color: var(--text-light); flex: 1; }
.lf-step-indicator.active { color: var(--brand); }
.lf-step-indicator.done   { color: #22c55e; }
.lf-step-num { width: 24px; height: 24px; border-radius: 50%; border: 2px solid currentColor; display: flex; align-items: center; justify-content: center; font-size: .7rem; font-weight: 900; }
.lf-step-connector { flex: 1; height: 2px; background: var(--border); margin: 0 8px; }
.lf-step-connector.done { background: #22c55e; }
.lf-input-group { margin-bottom: 16px; }
.lf-input-group label { display: block; font-size: .78rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .04em; }
.lf-input-group input,.lf-input-group select,.lf-input-group textarea { width: 100%; padding: 11px 14px; border: 2px solid var(--border); border-radius: var(--radius); font-size: .9rem; color: var(--text); background: var(--light); transition: var(--trans); outline: none; }
.lf-input-group input:focus,.lf-input-group select:focus,.lf-input-group textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(249,115,22,.12); background: var(--white); }
.lf-chip-group { display: flex; flex-wrap: wrap; gap: 8px; }
.lf-chip { padding: 7px 14px; border-radius: var(--radius-full); border: 2px solid var(--border); font-size: .8rem; font-weight: 600; cursor: pointer; transition: var(--trans); background: var(--white); color: var(--text-muted); }
.lf-chip.selected { border-color: var(--brand); background: #fff7ed; color: var(--brand-mid); }
.lf-chip:hover:not(.selected) { border-color: #d1d5db; color: var(--text); }
.lf-privacy { font-size: .72rem; color: var(--text-light); text-align: center; margin-top: 8px; }
.lf-success { text-align: center; padding: 24px 0; }
.lf-success-icon { font-size: 2.5rem; margin-bottom: 12px; }
.lf-final-success { display: none; }
.lf-final-success:not(.hidden) { display: block; animation: fadeIn .4s ease; }

/* ── 18. Blog ─────────────────────────────────────────────── */
.blog-hero { background: var(--grad-hero); position: relative; overflow: hidden; padding-top: calc(var(--header-h) + 56px); padding-bottom: 56px; }
.blog-filter { display: flex; gap: 8px; flex-wrap: wrap; }
.blog-filter-btn { padding: 7px 16px; border-radius: var(--radius-full); border: 2px solid var(--border); font-size: .8rem; font-weight: 600; color: var(--text-muted); transition: var(--trans); background: var(--white); }
.blog-filter-btn:hover { border-color: var(--brand); color: var(--brand-mid); }
.blog-filter-btn.active { border-color: var(--brand); background: #fff7ed; color: var(--brand-mid); }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.blog-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; transition: var(--trans-md); display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px -12px rgba(0,0,0,.12); border-color: transparent; }
.blog-card-img { position: relative; aspect-ratio: 16/9; background: var(--grad-hero); overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-img-placeholder { display: flex; align-items: center; justify-content: center; height: 100%; font-size: 4rem; background: linear-gradient(135deg,#fff7ed,#eff6ff); }
.blog-card-cat { position: absolute; top: 12px; left: 12px; background: var(--brand); color: var(--white); padding: 4px 12px; border-radius: var(--radius-full); font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card-title { font-size: 1.05rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card-title:hover { color: var(--brand-mid); }
.blog-card-excerpt { font-size: .87rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card-meta { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--border); font-size: .78rem; color: var(--text-light); }
.blog-card-date { display: flex; align-items: center; gap: 5px; }
.blog-card-read { color: var(--brand-mid); font-weight: 700; font-size: .8rem; display: flex; align-items: center; gap: 4px; }

/* ── 19. Blog post ────────────────────────────────────────── */
.post-hero { background: var(--grad-hero); position: relative; overflow: hidden; padding: calc(var(--header-h) + 48px) 0 48px; }
.post-hero-inner h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--navy); margin-bottom: 20px; }
.post-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .8rem; color: var(--text-light); margin-bottom: 20px; flex-wrap: wrap; }
.post-breadcrumb a:hover { color: var(--brand-mid); }
.post-hero-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.post-cat-badge { padding: 4px 12px; background: var(--brand); color: var(--white); border-radius: var(--radius-full); font-size: .72rem; font-weight: 700; text-transform: uppercase; }
.post-hero-meta-item { font-size: .82rem; color: var(--text-muted); }
.post-featured-img { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); max-height: 480px; }
.post-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.post-layout { display: grid; grid-template-columns: 1fr 340px; gap: 48px; padding: 56px 0; align-items: start; }
.post-content { min-width: 0; }
.post-content h2 { font-size: 1.5rem; margin: 36px 0 16px; padding-top: 8px; border-top: 2px solid rgba(249,115,22,.15); }
.post-content h3 { font-size: 1.15rem; margin: 24px 0 12px; }
.post-content p  { margin-bottom: 16px; font-size: .98rem; line-height: 1.8; }
.post-content ul,.post-content ol { margin: 16px 0 20px 20px; display: flex; flex-direction: column; gap: 8px; }
.post-content li { font-size: .95rem; color: var(--text-muted); line-height: 1.7; }
.post-content ul li { list-style: disc; }
.post-content ol li { list-style: decimal; }
.post-content strong { color: var(--navy); }
.post-sidebar { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 20px; }
.post-sidebar-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 24px; }
.post-sidebar-card h4 { font-size: .9rem; margin-bottom: 14px; color: var(--navy); }
.sidebar-cta { background: var(--grad-cta); border: none; }
.sidebar-cta h4 { color: var(--white); }
.sidebar-cta p  { color: rgba(255,255,255,.8); font-size: .85rem; margin-bottom: 14px; }
.toc { display: flex; flex-direction: column; gap: 4px; }
.toc li a { font-size: .83rem; color: var(--text-muted); padding: 4px 8px; border-radius: var(--radius-sm); display: block; transition: var(--trans); border-left: 2px solid transparent; }
.toc li a:hover { color: var(--brand-mid); border-left-color: var(--brand); background: #fff7ed; }
.related-post { display: flex; gap: 12px; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid var(--border); }
.related-post:last-child { border-bottom: none; }
.related-post-img { width: 56px; height: 56px; border-radius: var(--radius); overflow: hidden; flex-shrink: 0; }
.related-post-img img { width: 100%; height: 100%; object-fit: cover; }
.related-post-title { font-size: .82rem; font-weight: 700; color: var(--navy); line-height: 1.35; transition: var(--trans); }
.related-post-title:hover { color: var(--brand-mid); }
.related-post-date { font-size: .72rem; color: var(--text-light); margin-top: 4px; }

/* ── 20. Footer ───────────────────────────────────────────── */
.site-footer { background: var(--navy); color: var(--white); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; }
.footer-brand .logo-text strong { color: var(--brand); }
.footer-brand .logo-text em     { color: rgba(255,255,255,.5); }
.footer-brand p { color: rgba(255,255,255,.55); font-size: .875rem; margin-top: 16px; }
.footer-social { display: flex; gap: 8px; margin-top: 20px; }
.footer-social a { width: 36px; height: 36px; border-radius: var(--radius); background: rgba(255,255,255,.1); color: rgba(255,255,255,.7); display: flex; align-items: center; justify-content: center; font-size: .8rem; font-weight: 700; transition: var(--trans); border: 1px solid rgba(255,255,255,.12); }
.footer-social a:hover { background: var(--brand); color: var(--white); border-color: transparent; }
.footer-links h4 { color: var(--white); font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px; }
.footer-links ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links li a { color: rgba(255,255,255,.55); font-size: .875rem; transition: var(--trans); }
.footer-links li a:hover { color: var(--brand); padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.4); }
.footer-legal { max-width: 640px; }

/* ── 21. Animations ───────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── 22. Scrollbar ────────────────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb { background: var(--grad-brand); border-radius: 4px; }

/* ── 23. Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-grid > :last-child { display: block; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .product-cards { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .cta-grid { grid-template-columns: 1fr; }
  .stats-bar-inner { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .post-layout { grid-template-columns: 1fr; }
  .post-sidebar { position: static; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero { padding-top: var(--header-h); min-height: auto; padding-bottom: 60px; }
  .product-cards { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .process-steps,.how-steps { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-legal { max-width: 100%; }
  .hero-content h1 { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; }
  .cta-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .calc-row { grid-template-columns: 1fr; }
  .stats-bar-inner { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
}
/* ── Extra: index.php calc card classes ─────────────────── */
.hero-calc-card {
  background: var(--white); border-radius: var(--radius-2xl);
  box-shadow: 0 50px 100px -20px rgba(0,0,0,.15), 0 0 0 1px rgba(0,0,0,.04);
  overflow: hidden;
}
.calc-card-header {
  background: var(--grad-brand); padding: 20px 24px; color: var(--white);
}
.calc-card-header h3 { color: var(--white); font-size: 1rem; margin-bottom: 4px; }
.calc-card-header p  { color: rgba(255,255,255,.8); font-size: .82rem; margin: 0; }
.calc-card-body   { padding: 20px 24px; }
.calc-card-footer { padding: 16px 24px 24px; }
.calc-field { display: flex; flex-direction: column; gap: 6px; }
.calc-field label { font-size: .75rem; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: .05em; }
.num-group { display: flex; gap: 6px; flex-wrap: wrap; }
.num-btn {
  padding: 7px 14px; border-radius: var(--radius);
  border: 2px solid var(--border);
  font-size: .82rem; font-weight: 600; color: var(--text-muted);
  cursor: pointer; transition: var(--trans); background: var(--white);
}
.num-btn.active { border-color: var(--brand); background: #fff7ed; color: var(--brand-mid); }
.num-btn:hover:not(.active) { border-color: #d1d5db; color: var(--text); }
.calc-row-full { margin-bottom: 16px; }
.calc-submit {
  width: 100%; padding: 15px 28px; border-radius: var(--radius-xl);
  background: var(--grad-brand); color: var(--white);
  font-size: 1rem; font-weight: 700; cursor: pointer; border: none;
  box-shadow: var(--shadow-brand); transition: var(--trans-md);
}
.calc-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(249,115,22,.45); }
.calc-disclaimer { font-size: .72rem; color: var(--text-light); text-align: center; margin-top: 10px; }
.hero-note { font-size: .82rem; color: var(--text-muted); margin-top: 16px; }

/* ── Stats aliases ────────────────────────────────────────── */
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-val {
  font-size: 2rem; font-weight: 900; letter-spacing: -.03em; line-height: 1; margin-bottom: 6px;
  background: var(--grad-brand);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-val span { font-size: 1.2rem; }
@media (max-width: 768px) { .stats-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stats-grid .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stats-grid .stat-item:last-child { border-bottom: none; }
}

/* ── Extra: CSS Variable fix ──────────────────────────────── */
/* NOTE: --light-blue injected via JS override below; added as append */

/* ── Page Hero (aloldalak hero szekciója) ─────────────────── */
.page-hero {
  background: var(--grad-hero);
  position: relative; overflow: hidden;
  padding: calc(var(--header-h) + 72px) 0 72px;
}
.page-hero::before {
  content: ''; position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(249,115,22,.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 60%, rgba(244,63,94,.08) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite; pointer-events: none;
}
.page-hero h1 { color: var(--navy); max-width: 780px; }
.page-hero > .container > p,
.page-hero p { color: var(--text-muted); font-size: 1.05rem; margin-top: 14px; max-width: 640px; }
.page-hero .section-badge { display: inline-flex; }

/* ── Page Content ─────────────────────────────────────────── */
.page-content { padding: 64px 0; }

/* ── How-it-works steps ───────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.step-card {
  text-align: center; padding: 36px 28px;
  background: var(--white); border-radius: var(--radius-xl);
  border: 1px solid var(--border); transition: var(--trans-md);
  position: relative;
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.step-num {
  display: inline-flex; width: 36px; height: 36px; border-radius: 50%;
  background: var(--grad-brand); color: var(--white);
  align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 900;
  box-shadow: var(--shadow-brand);
  position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
}
.step-icon { font-size: 2.4rem; margin-bottom: 12px; }
.step-icon--blue  { color: var(--blue); }
.step-icon--green { color: var(--green); }
.step-icon--gold  { color: var(--gold); }
.step-card h3 { margin-bottom: 10px; font-size: 1.05rem; }
.step-card p  { font-size: .87rem; }
@media (max-width: 768px) { .steps-grid { grid-template-columns: 1fr; } }

/* ── Rate table ───────────────────────────────────────────── */
.rate-table {
  width: 100%; border-collapse: collapse;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); font-size: .9rem;
}
.rate-table thead tr { background: var(--navy); color: var(--white); }
.rate-table th { padding: 14px 16px; text-align: left; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; white-space: nowrap; }
.rate-table td { padding: 14px 16px; border-bottom: 1px solid var(--border); color: var(--text); }
.rate-table tbody tr:last-child td { border-bottom: none; }
.rate-table tbody tr:nth-child(even) { background: var(--light); }
.rate-table tbody tr:hover { background: #fff7ed; }
.rate-table tbody tr:hover td { color: var(--navy); }

/* ── Lead form (lead-form.php osztályai) ──────────────────── */
.hidden { display: none !important; }
.lf-step-bar { margin-bottom: 28px; }
.lf-step-indicator { display: flex; align-items: center; gap: 0; }
.lf-step-item {
  display: flex; align-items: center; gap: 8px; flex: 1;
  font-size: .78rem; font-weight: 600; color: var(--text-light);
}
.lf-step-item.active { color: var(--brand-mid); }
.lf-step-item.done   { color: #22c55e; }
.lf-step-circle {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid currentColor;
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 900; flex-shrink: 0;
}
.lf-step-item.active .lf-step-circle { background: var(--brand); border-color: var(--brand); color: var(--white); }
.lf-step-item.done .lf-step-circle   { background: #22c55e; border-color: #22c55e; color: var(--white); }
.lf-step-connector { flex: 1; height: 2px; background: var(--border); margin: 0 8px; max-width: 40px; }
.lf-step-label { font-size: .75rem; }
.lf-panel-title {
  font-size: 1.05rem; font-weight: 800; color: var(--navy);
  margin-bottom: 6px; margin-top: 4px;
}
.lf-panel-sub { font-size: .875rem; color: var(--text-muted); margin-bottom: 20px; line-height: 1.65; }
.lf-field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.lf-field label {
  font-size: .75rem; font-weight: 700; color: var(--navy);
  text-transform: uppercase; letter-spacing: .05em;
}
.lf-field input, .lf-field select, .lf-field textarea {
  padding: 11px 14px; border: 2px solid var(--border);
  border-radius: var(--radius); font-size: .92rem; color: var(--text);
  background: var(--light); outline: none; transition: var(--trans);
  width: 100%;
}
.lf-field input:focus, .lf-field select:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(249,115,22,.12); background: var(--white); }
.lf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 480px) { .lf-row { grid-template-columns: 1fr; } }
.lf-gdpr { margin-bottom: 14px; }
.lf-checkbox-label {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .82rem; color: var(--text-muted); cursor: pointer; line-height: 1.5;
}
.lf-checkbox-label input[type=checkbox] { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; accent-color: var(--brand); }
.lf-checkbox-label a { color: var(--brand-mid); text-decoration: underline; }
.lf-btn {
  width: 100%; padding: 14px 28px; border-radius: var(--radius-xl);
  font-size: .95rem; font-weight: 700; cursor: pointer; border: none;
  transition: var(--trans-md); text-align: center; display: block;
}
.lf-btn-gold { background: var(--grad-brand); color: var(--white); box-shadow: var(--shadow-brand); }
.lf-btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(249,115,22,.45); }
.lf-btn-navy { background: linear-gradient(135deg, var(--navy), var(--navy-mid)); color: var(--white); box-shadow: var(--shadow); }
.lf-btn-navy:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.lf-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.lf-chips .lf-chip {
  padding: 8px 16px; border-radius: var(--radius-full);
  border: 2px solid var(--border); font-size: .82rem; font-weight: 600;
  cursor: pointer; transition: var(--trans); background: var(--white); color: var(--text-muted);
}
.lf-chips .lf-chip:hover { border-color: var(--brand); color: var(--brand-mid); }
.lf-chips .lf-chip.selected { border-color: var(--brand); background: #fff7ed; color: var(--brand-mid); }
.lf-sent-notice {
  background: #dcfce7; border: 1px solid #86efac;
  border-radius: var(--radius); padding: 12px 16px;
  font-size: .875rem; font-weight: 600; color: #15803d;
  margin-bottom: 20px;
}
.lf-final-success-icon { font-size: 3rem; margin-bottom: 12px; }

/* ── Section badge --navy fix (visible on light bg too) ───── */
.section-badge--navy {
  background: var(--navy) !important;
  color: var(--white) !important;
  border: none !important;
}
/* On dark bg-navy sections, keep the transparent style */
.bg-navy .section-badge--navy {
  background: rgba(255,255,255,.12) !important;
  border: 1px solid rgba(255,255,255,.2) !important;
}

/* ── CSS variable --light-blue (used in inline styles) ────── */
:root { --light-blue: #eff6ff; }

/* ── Blog hero mobile-nav gap fix ─────────────────────────── */
.blog-hero { padding-top: calc(var(--header-h) + 64px); padding-bottom: 64px; }

/* ── blog-card-featured hover ─────────────────────────────── */
.blog-card-featured:hover { box-shadow: var(--shadow-md) !important; }

/* ── Dropdown nav – z-index & pointer events fix ─────────── */
.main-nav .dropdown {
  z-index: 1100;
}

/* ── page-hero btn-outline-white → works on light bg ─────── */
.page-hero .btn-outline-white {
  background: transparent;
  color: var(--navy);
  border: 2px solid rgba(0,0,0,.2);
}
.page-hero .btn-outline-white:hover {
  border-color: var(--brand);
  color: var(--brand-mid);
}

/* ── Responsive additions ─────────────────────────────────── */
@media (max-width: 768px) {
  .page-hero { padding: calc(var(--header-h) + 40px) 0 48px; }
  .lf-step-connector { max-width: 24px; }
  .rate-table { font-size: .8rem; }
  .rate-table th, .rate-table td { padding: 10px 10px; }
}
/* ╔══════════════════════════════════════════════════════════╗
   ║  DESIGN JAVÍTÁSOK v3                                     ║
   ╚══════════════════════════════════════════════════════════╝ */

/* ── FIX: form szöveg white-on-white bug ─────────────────────────────────
   .cta-section p specificitása (0,1,1) legyőzi .lf-panel-sub (0,1,0)
   ─────────────────────────────────────────────────────────────────────── */
.cta-section .lead-form-premium                   { color: var(--text); }
.cta-section .lead-form-premium p                 { color: var(--text-muted) !important; }
.cta-section .lead-form-premium h3,
.cta-section .lead-form-premium h4                { color: var(--navy) !important; }
.cta-section .lead-form-premium label             { color: var(--navy) !important; }
.cta-section .lead-form-premium .lf-privacy       { color: var(--text-light) !important; }
.cta-section .lead-form-premium .lf-panel-title   { color: var(--navy) !important; }
.cta-section .lead-form-premium .lf-panel-sub     { color: var(--text-muted) !important; }
.cta-section .lead-form-premium .lf-step-label    { color: var(--text-muted) !important; }

/* ── FIX: grid-2 osztály (csok-plusz kártyák) ───────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
@media (max-width: 760px) { .grid-2 { grid-template-columns: 1fr; } }

/* ── TELJES MENÜ ÚJRATERVEZÉS ─────────────────────────────────────────── */

/* Desktop nav – clean pill style */
.main-nav { flex: 1; display: flex; justify-content: center; }
.main-nav > ul { display: flex; gap: 2px; align-items: center; list-style: none; }
.main-nav > ul > li > a {
  padding: 9px 16px;
  border-radius: var(--radius-full);
  font-size: .875rem; font-weight: 600; color: var(--navy-mid);
  display: flex; align-items: center; gap: 5px;
  transition: var(--trans); white-space: nowrap;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active {
  color: var(--brand-mid);
  background: linear-gradient(135deg, #fff7ed 0%, #fef3c7 100%);
}
.chevron {
  font-size: .55rem; display: inline-block;
  transition: transform .22s var(--ease); line-height: 1;
  margin-left: 2px; opacity: .65;
}
.has-dropdown:hover .chevron { transform: rotate(180deg); }

/* Desktop dropdown – floating card */
.main-nav .has-dropdown { position: relative; }
.main-nav .dropdown {
  position: absolute; top: calc(100% + 10px);
  left: 50%; transform: translateX(-50%) translateY(-6px) scale(.97);
  transform-origin: top center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 64px -8px rgba(0,0,0,.16), 0 0 0 1px rgba(0,0,0,.04);
  min-width: 240px; padding: 10px;
  opacity: 0; visibility: hidden;
  transition: all .22s var(--ease);
  pointer-events: none; z-index: 1100;
  list-style: none;
}
/* kis nyíl a tetején */
.main-nav .dropdown::before {
  content: '';
  position: absolute; top: -5px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px; height: 10px;
  background: var(--white);
  border-left: 1px solid var(--border); border-top: 1px solid var(--border);
}
.main-nav .has-dropdown:hover .dropdown {
  opacity: 1; visibility: visible; pointer-events: all;
  transform: translateX(-50%) translateY(0) scale(1);
}
.main-nav .dropdown li a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: var(--radius);
  font-size: .875rem; font-weight: 500; color: var(--navy-mid);
  transition: var(--trans);
}
.main-nav .dropdown li a:hover {
  background: linear-gradient(135deg, #fff7ed, #fef3c7);
  color: var(--brand-mid);
  transform: translateX(4px);
}
.main-nav .dropdown li a::before {
  content: attr(data-icon);
  font-size: 1rem; width: 32px; height: 32px;
  background: var(--light); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; border: 1px solid var(--border);
}

/* Burger gomb */
.burger {
  display: none; flex-direction: column; gap: 5px;
  width: 40px; height: 40px; border-radius: var(--radius);
  align-items: center; justify-content: center;
  background: var(--light); border: 1px solid var(--border);
  transition: var(--trans); cursor: pointer;
}
.burger:hover { background: #fff7ed; border-color: var(--brand); }
.burger span { display: block; width: 18px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--trans); }
.burger.open { background: var(--brand); border-color: var(--brand); }
.burger.open span { background: var(--white); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV – teljes újratervezés ─────────────────────── */
.mobile-nav {
  /* Mindig a DOM-ban, animált megjelenés */
  display: flex; flex-direction: column;
  position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 1099;
  overflow-y: auto; overflow-x: hidden;
  
  /* Zárt állapot */
  opacity: 0; visibility: hidden;
  transform: translateX(100%);
  transition: opacity .3s var(--ease), visibility .3s var(--ease), transform .3s var(--ease);
  pointer-events: none;
  
  /* Layout */
  padding: 0; gap: 0;
  border-top: none;
}
.mobile-nav.open {
  opacity: 1; visibility: visible;
  transform: translateX(0);
  pointer-events: all;
}

/* Fejléc sáv */
.mobile-nav::before {
  content: '';
  display: block;
  height: 4px;
  background: var(--grad-brand);
  flex-shrink: 0;
}

/* Nav linkek wrapper */
.mobile-nav > a,
.mobile-nav > .mobile-nav-group,
.mobile-nav > .mobile-nav-cta {
  padding-left: 20px;
  padding-right: 20px;
}

.mobile-nav > a {
  display: flex; align-items: center;
  padding: 15px 20px;
  font-size: 1rem; font-weight: 600; color: var(--navy);
  border-bottom: 1px solid var(--light-2);
  transition: var(--trans);
}
.mobile-nav > a:hover,
.mobile-nav > a.active {
  color: var(--brand-mid);
  background: linear-gradient(90deg, #fff7ed, transparent);
}
.mobile-nav > a.active {
  border-left: 3px solid var(--brand);
  padding-left: 17px;
}

/* Submenu csoport */
.mobile-nav-group {
  background: var(--light);
  border-bottom: 1px solid var(--border);
}
.mobile-nav-group h5 {
  font-size: .68rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .1em; color: var(--brand-mid);
  padding: 12px 20px 6px;
}
.mobile-nav-group a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 20px 11px 28px;
  font-size: .9rem; font-weight: 500; color: var(--text-muted);
  transition: var(--trans);
  border-bottom: 1px solid rgba(0,0,0,.04);
}
.mobile-nav-group a::before { content: '↳'; color: var(--brand); font-size: .8rem; }
.mobile-nav-group a:hover { color: var(--brand-mid); background: #fff7ed; }
.mobile-nav-group a.active { color: var(--brand-mid); font-weight: 700; }
.mobile-nav-group a:last-child { border-bottom: none; }

/* CTA gomb alul */
.mobile-nav-cta {
  padding: 20px;
  margin-top: auto;
  background: var(--light);
  border-top: 1px solid var(--border);
}
.mobile-nav-cta .btn { font-size: .95rem; }

/* Overlay backdrop */
body.nav-open::after {
  content: '';
  position: fixed; inset: 0; z-index: 1098;
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(2px);
  animation: fadeIn .3s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ── Blog kategória filter – továbbfejlesztett design ─────── */
.blog-filter-wrap {
  background: var(--white);
  border-bottom: 2px solid var(--light-2);
  padding: 16px 0;
}
.blog-filter {
  display: flex; gap: 8px; flex-wrap: wrap;
  align-items: center;
}
.blog-filter-label {
  font-size: .72rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .1em; color: var(--text-light);
  margin-right: 4px; white-space: nowrap;
}
.blog-filter-btn {
  padding: 8px 18px; border-radius: var(--radius-full);
  border: 2px solid var(--border);
  font-size: .82rem; font-weight: 700;
  color: var(--text-muted); background: var(--white);
  transition: var(--trans); white-space: nowrap;
  display: flex; align-items: center; gap: 5px;
}
.blog-filter-btn:hover {
  border-color: var(--brand); color: var(--brand-mid);
  background: #fff7ed; transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(249,115,22,.15);
}
.blog-filter-btn.active {
  border-color: var(--brand); background: var(--grad-brand);
  color: var(--white); box-shadow: var(--shadow-brand);
}
.blog-filter-btn.active:hover { transform: translateY(-1px); }

/* Blog szekció padding mobilon */
@media (max-width: 640px) {
  .blog-filter { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; }
  .blog-filter::-webkit-scrollbar { height: 3px; }
  .blog-filter::-webkit-scrollbar-thumb { background: var(--brand); border-radius: 2px; }
}

/* ── Blog CTA szekció (egyszerű, nincs form) ──────────────── */
.cta-section--center {
  text-align: center;
}
.cta-section--center .section-badge { display: inline-flex; margin-bottom: 20px; }
.cta-section--center h2 { max-width: 640px; margin: 0 auto 16px; }
.cta-section--center > .container > p { max-width: 540px; margin: 0 auto 28px; }
.cta-section--center .btn { display: inline-flex; }
.cta-section--center .cta-trust { justify-content: center; }

/* ── Mobilon btn-outline fehér hátéren fix ────────────────── */
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--brand);
  color: var(--brand-mid);
  background: #fff7ed;
}

/* ── Responsive fixes ─────────────────────────────────────── */
@media (max-width: 960px) {
  .main-nav { display: none !important; }
  .header-phone { display: none !important; }
  .burger { display: flex !important; }
}
@media (max-width: 640px) {
  .grid-2 { grid-template-columns: 1fr; }
  .product-card { min-width: 0; }
  .cta-grid { gap: 32px; }
}
/* ╔══════════════════════════════════════════════════════════╗
   ║  KALKULÁTOR DESIGN + MOBIL FIX  v4                      ║
   ╚══════════════════════════════════════════════════════════╝ */

/* ── Required csillag ────────────────────────────────────── */
.req-star { color: var(--coral); font-size: .9em; margin-left: 1px; }

/* ── Input error állapot ─────────────────────────────────── */
.calc-input-wrap input.input-error {
  border-color: var(--coral) !important;
  background: #fff1f2 !important;
  animation: shake .4s var(--ease);
}
@keyframes shake {
  0%,100% { transform: translateX(0); }
  20%,60%  { transform: translateX(-4px); }
  40%,80%  { transform: translateX(4px); }
}

/* ── Validációs hibaüzenet ───────────────────────────────── */
.calc-validation-msg {
  display: none;
  align-items: center;
  gap: 8px;
  background: #fff1f2;
  border: 1px solid #fecdd3;
  color: #e11d48;
  font-size: .82rem;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: var(--radius);
  margin-bottom: 12px;
}

/* ── Dedikált kalkulátor oldal – teljes széles kártya ─────── */
.page-calc-section { background: var(--light); padding: 72px 0 96px; }
.page-calc-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  box-shadow: 0 32px 80px -12px rgba(0,0,0,.12), 0 0 0 1px rgba(0,0,0,.04);
  overflow: hidden;
  max-width: 860px;
  margin: 0 auto;
}
.page-calc-card .calc-card-header {
  background: var(--grad-brand);
  padding: 28px 36px;
}
.page-calc-card .calc-card-header h2 {
  color: var(--white); font-size: 1.5rem; margin-bottom: 6px;
}
.page-calc-card .calc-card-header p {
  color: rgba(255,255,255,.85); font-size: .95rem; margin: 0;
}
.page-calc-card .calc-card-body { padding: 32px 36px 8px; }
.page-calc-card .calc-card-footer { padding: 8px 36px 36px; }
.page-calc-card .calc-row { grid-template-columns: repeat(2,1fr); gap: 20px; }

/* ── Kalkulátor szekció stats ────────────────────────────── */
.calc-hero-stats {
  display: flex; gap: 28px; flex-wrap: wrap;
  margin-top: 28px;
}
.calc-hero-stat {
  display: flex; align-items: center; gap: 10px;
  font-size: .875rem; font-weight: 600; color: var(--text-muted);
}
.calc-hero-stat-icon {
  width: 36px; height: 36px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.calc-hero-stat strong { color: var(--navy); display: block; font-size: .95rem; }

/* ── Mobil kalkulátor javítások ─────────────────────────── */
@media (max-width: 1024px) {
  .hero { padding-bottom: 56px; min-height: auto; }
  .hero-calc-card { max-width: 560px; margin: 0 auto; }
}
@media (max-width: 768px) {
  .page-calc-card .calc-card-header { padding: 22px 20px; }
  .page-calc-card .calc-card-body   { padding: 20px 20px 8px; }
  .page-calc-card .calc-card-footer { padding: 8px 20px 24px; }
  .page-calc-card .calc-row { grid-template-columns: 1fr; }
  .calc-hero-stats { gap: 16px; }
}
@media (max-width: 480px) {
  .hero-calc-card { border-radius: var(--radius-xl); }
  .calc-card-body { padding: 16px; }
  .calc-card-footer { padding: 12px 16px 20px; }
  .calc-row { grid-template-columns: 1fr !important; gap: 12px; }
  .num-group { gap: 4px; }
  .num-btn { padding: 7px 10px; font-size: .8rem; }
  .toggle-btn { padding: 7px 12px; font-size: .82rem; }
}

/* ╔══════════════════════════════════════════════════════════╗
   ║  EREDMENY.PHP STILUSOK                                   ║
   ╚══════════════════════════════════════════════════════════╝ */

/* ── Eredmények Hero ─────────────────────────────────────── */
.results-hero {
  background: var(--grad-cta);
  padding: calc(var(--header-h) + 48px) 0 48px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.results-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='m36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.results-hero .container { position: relative; z-index: 2; }
.results-hero h1 { color: var(--white); margin-bottom: 12px; }
.results-hero > .container > p { color: rgba(255,255,255,.9); font-size: 1.05rem; max-width: 600px; }

.results-summary {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 28px;
}
.result-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  padding: 7px 14px;
  border-radius: var(--radius-full);
  font-size: .82rem; font-weight: 600;
  color: var(--white);
  backdrop-filter: blur(4px);
}

/* ── Eredmények Content ─────────────────────────────────── */
.results-content { padding: 48px 0 64px; background: var(--light); }
.results-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-bottom: 32px;
}
@media (max-width: 1024px) {
  .results-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto 32px; }
}

/* ── Eredmény Kártyák ───────────────────────────────────── */
.result-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: flex; flex-direction: column;
  transition: var(--trans-md);
}
.result-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.result-card-head {
  padding: 24px;
  color: var(--white);
  position: relative;
}
.result-card-head--green { background: linear-gradient(135deg, #16a34a, #22c55e); }
.result-card-head--blue  { background: var(--grad-blue); }
.result-card-head--slate { background: linear-gradient(135deg, #475569, #64748b); }

.result-card-label {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; opacity: .9; margin-bottom: 6px;
}
.result-card-head h3 { color: var(--white); font-size: 1.25rem; margin-bottom: 8px; }

.result-monthly { margin-top: 16px; }
.result-monthly-label { font-size: .78rem; opacity: .9; margin-bottom: 4px; }
.result-monthly-val { font-size: 2rem; font-weight: 800; color: var(--white); line-height: 1; }
.result-monthly-val small { font-size: .85rem; font-weight: 600; margin-left: 4px; opacity: .8; }
.result-monthly-range { font-size: 1.4rem; font-weight: 800; line-height: 1.3; text-align: center; }

.result-card-body { padding: 24px; flex: 1; }
.result-card-cta { padding: 0 24px 24px; }

/* Badge-ek */
.result-badge-eligible {
  display: inline-flex; align-items: center; gap: 6px;
  background: #f0fdf4; color: #166534;
  border: 1.5px solid #86efac;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: .78rem; font-weight: 700;
  margin-bottom: 16px;
}
.result-badge-ineligible {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fef2f2; color: #991b1b;
  border: 1.5px solid #fecaca;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: .78rem; font-weight: 700;
  margin-bottom: 16px;
}
.ineligible-reason {
  font-size: .9rem; color: var(--text-muted);
  background: #f8fafc; border-left: 3px solid var(--coral);
  padding: 12px 16px; border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 16px;
}

/* Részletek lista */
.result-detail {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--light-2);
  font-size: .88rem;
}
.result-detail:last-child { border-bottom: none; }
.result-detail-key { color: var(--text-muted); font-weight: 500; }
.result-detail-val { color: var(--navy); font-weight: 700; text-align: right; }

/* Vissza nem térítendő kiemelés */
.result-grant {
  background: linear-gradient(135deg, #fffbeb, #fef3c7);
  border: 1.5px solid #fcd34d;
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 16px;
  display: flex; justify-content: space-between; align-items: center;
}
.result-grant-label { font-size: .8rem; font-weight: 700; color: #92400e; }
.result-grant-val { font-size: 1.1rem; font-weight: 800; color: #78350f; }

/* Jogi nyilatkozat */
.disclaimer-box {
  background: #eff6ff;
  border: 1.5px solid #bfdbfe;
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin: 32px 0;
}
.disclaimer-box p {
  font-size: .88rem; color: #1e40af; line-height: 1.65; margin: 0;
}