
:root {
  --green-dark:#0b3b26;
  --green:#1b7f4d;
  --green-soft:#d9efe4;
  --blue:#1775b8;
  --bg:#f2f7f4;
  --card:#ffffff;
  --muted:#657b72;
  --maxw:1150px;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:var(--bg);
  color:#062116;
}

a{color:inherit}

.container{
  max-width:var(--maxw);
  margin:0 auto;
  padding:0 20px;
}
.section{
  padding:50px 0;
}

/* TOP NAVBAR */
.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(10,45,30,0.97);
  color:#e5f6ee;
  font-size:14px;
  backdrop-filter:blur(8px);
}
.topbar-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:6px 20px;
  gap:16px;
}
.topbar a{
  color:#a7f4cf;
  text-decoration:none;
  font-weight:600;
}
.sep{margin:0 6px;color:#5ba88a}
.topbar-center{
  display:flex;
  gap:10px;
  font-size:13px;
  flex-wrap:wrap;
  justify-content:center;
}
.topbar-center a{
  color:#d7fff0;
  opacity:0.9;
}
.topbar-center a:hover{
  opacity:1;
  text-decoration:underline;
}

/* HERO – FŐOLDAL */
.hero{
  position:relative;
  min-height:75vh;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  color:#fff;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.08), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(0,0,0,0.45), transparent 60%),
    linear-gradient(135deg, #0b3b26, #1775b8);
  background-attachment:fixed;
  background-position:center center;
}
.hero-overlay{
  position:absolute;
  inset:0;
  background-image:
    radial-gradient(circle at 15% 80%, rgba(255,255,255,0.05), transparent 65%),
    linear-gradient(180deg, rgba(0,0,0,0.3), transparent 45%);
  pointer-events:none;
}
.hero-inner{
  position:relative;
  z-index:2;
  text-align:center;
  padding:40px 20px 70px;
}
.logo{
  width:150px;
  margin-bottom:10px;
  filter:drop-shadow(0 10px 26px rgba(0,0,0,0.5));
}
.hero-kicker{
  text-transform:uppercase;
  letter-spacing:0.18em;
  font-size:11px;
  color:#c1fbe1;
  margin-bottom:4px;
}
.hero h1{
  font-size:32px;
  margin:10px 0;
  text-shadow:0 6px 18px rgba(0,0,0,0.4);
}
.lead{
  max-width:650px;
  margin:0 auto 20px;
  font-size:16px;
}
.hero-ctas{
  display:flex;
  justify-content:center;
  gap:12px;
}

.hero-wave{
  position:absolute;
  bottom:-1px;
  left:0;
  width:100%;
  height:90px;
}
.hero-wave path{
  fill:var(--bg);
}

/* GOMBOK */
.btn{
  display:inline-block;
  padding:10px 18px;
  border-radius:999px;
  font-weight:600;
  text-decoration:none;
  font-size:15px;
  border:2px solid transparent;
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.btn.primary{
  background:linear-gradient(135deg,var(--green),var(--blue));
  color:#fff;
  box-shadow:0 8px 20px rgba(0,0,0,0.25);
}
.btn.primary:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 26px rgba(0,0,0,0.35);
}
.btn.ghost{
  background:transparent;
  color:var(--green-dark);
  border-color:var(--green-dark);
}
.btn.ghost:hover{
  background:rgba(11,59,38,0.08);
}

/* ÁLTALÁNOS CÍMEK */
h1,h2,h3{font-weight:700}
h2{
  font-size:24px;
  margin:0 0 22px;
  text-align:center;
  color:var(--green-dark);
}

/* SZOLGÁLTATÁSOK */
.service-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  gap:18px;
}
.service-card{
  background:var(--card);
  padding:18px 18px 20px;
  border-radius:14px;
  box-shadow:0 10px 28px rgba(10,30,20,0.06);
  border:1px solid rgba(10,60,40,0.05);
  transition:transform .22s ease, box-shadow .22s ease;
}
.service-card:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 40px rgba(10,30,20,0.12);
}
.svc-icon{
  font-size:26px;
  margin-bottom:8px;
}

/* PARALLAX SZEKCIÓ */
.parallax-section{
  position:relative;
  overflow:hidden;
}
.parallax-bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 10% 10%, rgba(255,255,255,0.09), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(0,0,0,0.35), transparent 60%),
    linear-gradient(135deg,#0b3b26,#0a6e3d);
  transform:translateZ(0);
}
.parallax-section .section{
  position:relative;
  z-index:2;
}
.parallax-section h2{
  color:#e5f6ee;
}
.why-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:12px;
}
.why-item{
  background:rgba(255,255,255,0.06);
  border-radius:12px;
  padding:12px 14px;
  color:#e4f5ed;
  border:1px solid rgba(255,255,255,0.18);
}

/* FOLYAMAT LÉPÉSEK */
.process-steps{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:14px;
}
.process-steps li{
  background:var(--card);
  border-radius:12px;
  padding:16px;
  box-shadow:0 8px 22px rgba(0,0,0,0.04);
  border:1px solid rgba(0,0,0,0.03);
}

/* REFERENCIÁK */
.references{
  background:var(--green-soft);
  border-top:1px solid rgba(0,0,0,0.03);
  border-bottom:1px solid rgba(0,0,0,0.03);
}
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:12px;
}
.ref-item{
  margin:0;
}
.ref-item img{
  width:100%;
  height:200px;
  object-fit:cover;
  border-radius:12px;
  box-shadow:0 8px 24px rgba(0,0,0,0.18);
  transform:translateY(0);
  transition:transform .2s ease, box-shadow .2s ease;
}
.ref-item img:hover{
  transform:translateY(-3px);
  box-shadow:0 14px 36px rgba(0,0,0,0.25);
}
.gallery-note{
  text-align:center;
  margin-top:10px;
  color:var(--muted);
}

/* BLOG BLOKK A FŐOLDALON – ERŐSEBB KONTRASZT */
.blog-preview{
  background:
    radial-gradient(circle at 10% 0%, rgba(255,255,255,0.6), transparent 60%),
    linear-gradient(135deg,#e1f0e7,#c5e0d2);
  border-top:1px solid rgba(0,0,0,0.04);
}
.blog-preview h2{
  color:var(--green-dark);
}
.blog-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:18px;
}
.blog-card{
  background:var(--card);
  border-radius:14px;
  padding:16px 18px 18px;
  box-shadow:0 8px 24px rgba(0,0,0,0.08);
  border:1px solid rgba(0,0,0,0.04);
}
.blog-card h3{
  margin:0 0 8px;
  font-size:18px;
  color:var(--green-dark);
}
.blog-card p{
  margin:0 0 10px;
  color:var(--muted);
  font-size:14px;
}
.blog-link{
  font-size:14px;
  font-weight:600;
  text-decoration:none;
  color:var(--green);
}
.blog-link:hover{
  text-decoration:underline;
}
.blog-more{
  margin-top:18px;
  text-align:center;
}

/* KAPCSOLAT SZEKCIÓ – ERŐSEBB DIZÁJN */
.contact{
  background:
    radial-gradient(circle at 0 0, rgba(255,255,255,0.5), transparent 60%),
    linear-gradient(135deg,#0b3b26,#1775b8);
  color:#e5f6ee;
}
.contact h2{
  color:#e5f6ee;
}
.contact-grid{
  display:grid;
  grid-template-columns:1.1fr 1.2fr;
  gap:20px;
  align-items:flex-start;
}
.contact-info p{margin:4px 0;}
.contact-info .small{color:#c9e8da;font-size:14px;}
.contact-form form{
  background:var(--card);
  color:#062116;
  padding:18px 18px 20px;
  border-radius:14px;
  box-shadow:0 10px 28px rgba(0,0,0,0.35);
}
label{
  display:block;
  font-size:14px;
  margin-bottom:4px;
  color:var(--green-dark);
}
input,textarea{
  width:100%;
  border-radius:8px;
  border:1px solid #c5d8cf;
  padding:8px 10px;
  margin-bottom:10px;
  font:inherit;
}

/* LÁBLÉC */
.site-footer{
  background:var(--green-dark);
  color:#e5f6ee;
  padding:16px 0;
  margin-top:0;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:14px;
}

/* ÚSZÓ TELEFON GOMB */
.floating-call{
  position:fixed;
  right:16px;
  bottom:18px;
  width:52px;
  height:52px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,var(--green),var(--blue));
  color:#fff;
  text-decoration:none;
  font-size:24px;
  box-shadow:0 10px 26px rgba(0,0,0,0.45);
  z-index:60;
}

/* REVEAL ANIMÁCIÓK */
.reveal{
  opacity:0;
  transform:translateY(20px);
  transition:opacity .7s ease, transform .7s ease;
}
.reveal.in{
  opacity:1;
  transform:translateY(0);
}
.delay-1{transition-delay:.12s;}
.delay-2{transition-delay:.24s;}

/* ───────────────────────────── */
/*        ULTRA TURBO UI         */
/* ───────────────────────────── */

.muted{opacity:.85}

.skip-link{
  position:absolute;
  left:-999px;
  top:8px;
  background:#fff;
  color:#062116;
  padding:10px 12px;
  border-radius:10px;
  z-index:999;
  box-shadow:0 12px 30px rgba(0,0,0,.25);
}
.skip-link:focus{left:12px;}

.brand-dot{
  display:inline-block;
  width:10px;height:10px;
  border-radius:999px;
  margin-right:8px;
  background:linear-gradient(135deg,var(--green),var(--blue));
  box-shadow:0 0 0 4px rgba(27,127,77,.18);
  vertical-align:middle;
}

.mini-cta{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  text-decoration:none;
  font-weight:700;
  color:#e5f6ee;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.06);
}
.mini-cta.ghost{
  background:transparent;
}
.mini-cta:hover{filter:brightness(1.05)}

.nav-toggle{
  display:none;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.08);
  color:#e5f6ee;
  border-radius:12px;
  padding:8px 10px;
  font-size:18px;
  cursor:pointer;
}

.trustbar{
  margin:22px auto 0;
  max-width:820px;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
}
.trust-pill{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.18);
  color:#e5f6ee;
  padding:10px 12px;
  border-radius:999px;
  font-size:13px;
  backdrop-filter:blur(8px);
}

.section-lead{
  margin:-10px auto 18px;
  max-width:820px;
  text-align:center;
  color:var(--muted);
}

.solutions{
  padding-top:56px;
}
.solutions-grid,
.solution-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:18px;
}

.solution-card{
  background:linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.96));
  border-radius:16px;
  padding:18px;
  box-shadow:0 16px 44px rgba(10,30,20,.10);
  border:1px solid rgba(10,60,40,.06);
}
.solution-icon{font-size:28px; margin-bottom:8px;}
.solution-card h3{margin:6px 0 8px; color:var(--green-dark)}
.solution-card p{margin:0 0 12px; color:var(--muted); font-size:14px; line-height:1.55}
.solution-cta{display:flex; gap:10px; flex-wrap:wrap}
.btn.mini{padding:8px 12px; font-size:13px}

/* Solutions -> egységes CTA a landingre */
.solutions-cta{
  margin-top:18px;
  background:linear-gradient(135deg, rgba(23,117,184,.18), rgba(26,160,85,.16));
  border:1px solid rgba(255,255,255,.16);
  border-radius:18px;
  padding:18px;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:16px;
}
.solutions-cta h3{margin:0 0 8px; color:#fff; font-size:20px;}
/* Extra kontraszt (sötét háttéren is jól olvasható) */
.solutions-cta p{margin:0 0 10px; color:rgba(255,255,255,.92) !important; line-height:1.6; text-shadow:0 1px 0 rgba(0,0,0,.35)}
.solutions-cta-list{margin:0; padding-left:18px; color:rgba(255,255,255,.95) !important; text-shadow:0 1px 0 rgba(0,0,0,.35)}
.solutions-cta strong{color:#fff !important}
.solutions-cta-list li{margin:8px 0;}
.solutions-cta-right{display:flex; flex-direction:column; justify-content:center; gap:10px;}
.btn-lg{padding:14px 18px; font-size:15px; border-radius:16px;}
.solutions-cta-mini{color:rgba(255,255,255,.70); font-size:12px; font-weight:700; line-height:1.45;}

@media (max-width: 780px){
  .solutions-cta{grid-template-columns:1fr;}
}

.estimate{
  margin-top:22px;
}
.estimate-inner{
  background:linear-gradient(135deg,#eaf6ef,#d7efe2);
  border:1px solid rgba(0,0,0,.05);
  border-radius:18px;
  padding:18px;
  box-shadow:0 16px 44px rgba(10,30,20,.08);
}
.estimate-inner h3{margin:0 0 6px; color:var(--green-dark)}
.estimate-form{display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-top:12px}
.estimate-form label{margin:0;}
.estimate-form input,
.estimate-form select{width:100%; border-radius:10px; border:1px solid #c5d8cf; padding:10px 12px; font:inherit; background:#fff}
.estimate-form button{grid-column:1 / -1}
.estimate-result{margin-top:12px;}

.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:18px;
}
.testimonial-card{
  background:var(--card);
  border-radius:16px;
  padding:18px;
  border:1px solid rgba(0,0,0,.04);
  box-shadow:0 12px 32px rgba(0,0,0,.07);
}
.testimonial-card p{margin:8px 0 12px; color:var(--muted); line-height:1.6}
.stars{letter-spacing:2px; color:var(--green)}
.who{font-weight:700; color:var(--green-dark)}
.review-cta{margin-top:16px; display:flex; justify-content:center; gap:12px; flex-wrap:wrap}

.faq-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:12px;
}
.faq details{
  background:var(--card);
  border-radius:14px;
  padding:14px 16px;
  border:1px solid rgba(0,0,0,.04);
  box-shadow:0 10px 28px rgba(0,0,0,.05);
}
.faq summary{cursor:pointer; font-weight:800; color:var(--green-dark)}
.faq details p{margin:10px 0 0; color:var(--muted); line-height:1.6}

.contact-link,
.link-on-dark{
  color:#e5f6ee;
  text-decoration:underline;
}
.contact-mini{
  margin-top:14px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.contact-mini-item{
  padding:10px 12px;
  border-radius:12px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.18);
}

.form-status{margin-top:10px; font-weight:700}
.form-status.ok{color:#0b3b26}
.form-status.err{color:#7a0b0b}

.footer-link{color:#a7f4cf; text-decoration:none}
.footer-link:hover{text-decoration:underline}

/* Mobil alsó CTA sáv */
.stickyBar{
  position:fixed;
  left:14px; right:14px; bottom:14px;
  display:none;
  gap:10px;
  z-index:120;
}
.stickyBar a{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:16px;
  text-decoration:none;
  font-weight:900;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(10,45,30,.92);
  color:#e5f6ee;
  backdrop-filter:blur(10px);
}
.stickyBar a.primary{
  border:none;
  color:#fff;
  background:linear-gradient(135deg,var(--green),var(--blue));
  box-shadow:0 14px 30px rgba(0,0,0,.35);
}

/* Chat UI */
.chatFab{
  position:fixed;
  right:16px;
  bottom:86px;
  width:56px;
  height:56px;
  border-radius:999px;
  border:none;
  background:linear-gradient(135deg,var(--green),var(--blue));
  color:#fff;
  font-weight:900;
  font-size:20px;
  box-shadow:0 16px 40px rgba(0,0,0,.35);
  cursor:pointer;
  z-index:130;
}
.chatWrap{
  position:fixed;
  right:16px;
  bottom:150px;
  width:360px;
  max-width:calc(100vw - 32px);
  height:520px;
  max-height:calc(100vh - 190px);
  border-radius:18px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(10,14,24,.94);
  backdrop-filter:blur(10px);
  box-shadow:0 20px 60px rgba(0,0,0,.45);
  z-index:131;
  display:none;
  overflow:hidden;
}
/* Chat "fogantyú" – kattintásra bezár */
.chatHandleRow{
  display:flex;
  justify-content:center;
  padding:8px 0 0;
  background:rgba(255,255,255,.03);
}
.chatHandle{
  width:72px;
  height:6px;
  border-radius:999px;
  border:none;
  background:rgba(255,255,255,.22);
  cursor:pointer;
}
.chatHandle:hover{background:rgba(255,255,255,.32)}
.chatHeader{
  padding:12px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  border-bottom:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
}
.chatTitle{display:flex; align-items:center; gap:10px}
.chatDot{
  width:10px;height:10px;border-radius:999px;
  background:linear-gradient(135deg,var(--green),var(--blue));
  box-shadow:0 0 0 4px rgba(23,117,184,.18);
}
.chatName{font-weight:900; color:#fff}
.chatMini{font-size:12px; color:rgba(255,255,255,.70); font-weight:700}
.chatClose{
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.03);
  color:#fff;
  border-radius:12px;
  padding:8px 10px;
  cursor:pointer;
  font-weight:900;
}
.chatBody{padding:12px; height:calc(520px - 54px - 72px); overflow:auto}
.msg{margin:10px 0; display:flex; gap:10px; align-items:flex-start}
.bubble{
  max-width:90%;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  color:#fff;
  font-size:13px;
  line-height:1.45;
  white-space:pre-wrap;
}
.bot .bubble{border-top-left-radius:6px}
.user{justify-content:flex-end}
.user .bubble{border-top-right-radius:6px; background:rgba(23,117,184,.18)}
.quickRow{display:flex; flex-wrap:wrap; gap:8px; margin-top:8px}
.quick{
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.03);
  color:#fff;
  border-radius:999px;
  padding:8px 10px;
  cursor:pointer;
  font-weight:800;
  font-size:12px;
}
.chatInput{
  border-top:1px solid rgba(255,255,255,.10);
  padding:10px;
  display:flex;
  gap:8px;
  background:rgba(255,255,255,.02);
}
.chatInput input{
  flex:1;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.22);
  color:#fff;
  outline:none;
}
.sendBtn{
  padding:12px 14px;
  border-radius:14px;
  border:none;
  font-weight:900;
  background:linear-gradient(135deg,var(--green),var(--blue));
  color:#fff;
  cursor:pointer;
  white-space:nowrap;
}

/* Reszponzív finomítás */
@media (max-width: 860px){
  .topbar-inner{padding:10px 20px}
  .nav-toggle{display:inline-flex}
  .topbar-center{display:none; flex-direction:column; gap:8px; padding:10px 0; width:100%}
  .topbar-center.open{display:flex}
  .topbar-right{display:none}
}

@media (max-width: 820px){
  .stickyBar{display:flex;}
  .container{padding:0 16px}
  .contact-grid{grid-template-columns:1fr}
  .footer-inner{flex-direction:column; gap:8px; text-align:center}
  .floating-call{display:none}
}

@media (prefers-reduced-motion: reduce){
  .reveal{transition:none}
  .btn{transition:none}
}

/* ───────────────────────────── */
/*         BLOG – ULTRA          */
/* ───────────────────────────── */

/* BLOG FŐOLDAL ( /blog/ ) */
.blog-hero{
  padding:60px 0 40px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255,255,255,0.12), transparent 60%),
    linear-gradient(135deg,#0b3b26,#1775b8);
  color:#e5f6ee;
  text-align:center;
}
.blog-hero h1{
  margin:0 0 8px;
  font-size:28px;
}
.blog-hero p{
  margin:0;
  font-size:15px;
  opacity:0.9;
}
.blog-list{
  padding:40px 0 50px;
}
.blog-list-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:18px;
}
.blog-list-card{
  background:var(--card);
  border-radius:16px;
  padding:18px 18px 20px;
  box-shadow:0 12px 32px rgba(0,0,0,0.07);
  border:1px solid rgba(0,0,0,0.03);
}
.blog-meta{
  font-size:12px;
  color:var(--muted);
  margin-bottom:6px;
}
.blog-list-card h2{
  font-size:18px;
  margin:0 0 8px;
  text-align:left;
}
.blog-list-card p{
  margin:0 0 10px;
  font-size:14px;
  color:var(--muted);
}
.blog-list-card a{
  font-size:14px;
  font-weight:600;
  text-decoration:none;
  color:var(--green);
}
.blog-list-card a:hover{text-decoration:underline;}

/* EGYEDI CIKK OLDALAK ( /blog/*.html ) */
.post-wrap{
  max-width:880px;
  margin:0 auto;
  padding:30px 20px 60px;
}
.post-back{
  margin-bottom:12px;
}
.post-back a{
  font-size:13px;
  text-decoration:none;
  color:var(--green);
}
.post-back a:hover{text-decoration:underline;}

.post-hero{
  margin-bottom:24px;
  padding:22px 22px 24px;
  border-radius:18px;
  background:
    radial-gradient(circle at 5% 0%, rgba(255,255,255,0.2), transparent 55%),
    linear-gradient(135deg,#0b3b26,#1775b8);
  color:#e5f6ee;
  box-shadow:0 16px 40px rgba(0,0,0,0.35);
}
.post-hero h1{
  font-size:26px;
  margin:0 0 8px;
}
.post-meta{
  font-size:13px;
  opacity:0.9;
  margin-bottom:6px;
}
.post-hero-img{
  margin-top:10px;
  font-size:32px;
}

/* CIKK TÖRZS – KÁRTYA STÍLUS */
.post-content{
  background:var(--card);
  border-radius:18px;
  padding:22px 22px 26px;
  box-shadow:0 14px 36px rgba(0,0,0,0.06);
  border:1px solid rgba(0,0,0,0.03);
}
.post-content h2{
  font-size:20px;
  margin:22px 0 8px;
  color:var(--green-dark);
}
.post-content h3{
  font-size:17px;
  margin:16px 0 6px;
  color:var(--green);
}
.post-content p{
  margin:8px 0;
  font-size:15px;
  line-height:1.65;
}
.post-content ul, .post-content ol{
  margin:6px 0 12px 20px;
  padding:0;
  font-size:15px;
}
.post-content li{margin:3px 0;}

/* TARTALOMJEGYZÉK BOX */
.post-toc{
  background:var(--green-soft);
  border-radius:12px;
  padding:10px 12px 12px;
  font-size:14px;
  margin:10px 0 16px;
}
.post-toc strong{
  display:block;
  margin-bottom:4px;
  color:var(--green-dark);
}

/* TIPP / FIGYELMEZTETÉS / INFO BOXOK */
.tip-box, .warn-box, .info-box{
  border-radius:12px;
  padding:10px 12px;
  font-size:14px;
  margin:10px 0 14px;
}
.tip-box{
  background:#e3f7ec;
  border:1px solid #b3e4c6;
}
.warn-box{
  background:#fff3e0;
  border:1px solid #ffd199;
}
.info-box{
  background:#e6f0fb;
  border:1px solid #bfd5ff;
}

/* CIKK VÉGI CTA */
.post-cta{
  margin-top:24px;
  padding:16px 18px;
  background:var(--green-soft);
  border-radius:14px;
  font-size:14px;
}
.post-cta strong{color:var(--green-dark);}

/* KAPCSOLÓDÓ CIKKEK A CIKK VÉGÉN */
.related-posts{
  margin-top:24px;
  border-top:1px solid rgba(0,0,0,0.05);
  padding-top:16px;
}
.related-posts h3{
  margin:0 0 8px;
  font-size:16px;
}
.related-links{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  font-size:14px;
}
.related-links a{
  text-decoration:none;
  color:var(--green);
}
.related-links a:hover{text-decoration:underline;}

/* RESPONSIVE */
@media(max-width:900px){
  .topbar-inner{
    flex-direction:column;
    gap:4px;
    text-align:center;
  }
  .hero{
    background-attachment:scroll;
  }
  .hero h1{font-size:26px;}
  .contact-grid{
    grid-template-columns:1fr;
  }
  .footer-inner{
    flex-direction:column;
    gap:6px;
    text-align:center;
  }
}



/* =========================
   RICH TURBO LAYER (2026)
   – több mélység, több vizuál, modern hero
========================= */

body{
  background:
    radial-gradient(900px 500px at 10% 0%, rgba(34,166,255,.22), transparent 55%),
    radial-gradient(800px 500px at 90% 10%, rgba(69,209,154,.20), transparent 60%),
    radial-gradient(900px 650px at 60% 90%, rgba(255,255,255,.05), transparent 60%),
    linear-gradient(180deg, #071018 0%, #050910 100%);
}

.section-lead{
  max-width: 78ch;
  color: rgba(255,255,255,.78);
  margin: 10px auto 0;
  text-align:center;
}

.hero{
  background-image:
    radial-gradient(700px 380px at 15% 10%, rgba(34,166,255,.30), transparent 60%),
    radial-gradient(700px 420px at 85% 15%, rgba(69,209,154,.26), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,0));
}

.hero-inner{ display:none; } /* replaced by hero-grid */

.hero-grid{
  position: relative;
  z-index: 2;
  padding: 64px 18px 70px;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 34px;
  align-items:center;
}
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; padding-top: 44px; }
}

.hero-copy .logo{ width: 84px; height:auto; margin-bottom: 10px; filter: drop-shadow(0 18px 40px rgba(0,0,0,.35)); }
.hero-copy h1{ text-shadow: 0 18px 60px rgba(0,0,0,.45); }
.hero-copy .lead{ max-width: 62ch; }

.hero-ctas .btn{
  box-shadow: 0 14px 40px rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
}

.hero-ctas .btn.primary{
  border:none;
  box-shadow: 0 18px 55px rgba(34,166,255,.20);
}

.hero-media{
  position: relative;
  min-height: 420px;
}

.media-card{
  position: relative;
  height: 420px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  box-shadow: 0 30px 90px rgba(0,0,0,.55);
  overflow:hidden;
}

.media-card:before{
  content:"";
  position:absolute; inset:-2px;
  background:
    radial-gradient(420px 260px at 20% 10%, rgba(34,166,255,.22), transparent 60%),
    radial-gradient(420px 300px at 90% 20%, rgba(69,209,154,.22), transparent 60%);
  pointer-events:none;
}

.media-img{
  position:absolute;
  width: 62%;
  height: 62%;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.20);
  box-shadow: 0 22px 60px rgba(0,0,0,.55);
  transform: translateZ(0);
  filter: saturate(1.05) contrast(1.05);
}

.media-img.img-a{ left: 8%; top: 10%; transform: rotate(-2deg); }
.media-img.img-b{ right: 8%; top: 18%; width: 52%; height: 52%; transform: rotate(3deg); }
.media-img.img-c{ left: 20%; bottom: 10%; width: 56%; height: 44%; transform: rotate(1deg); }

@media (max-width: 980px){
  .hero-media{ min-height: 360px; }
  .media-card{ height: 360px; }
  .media-img{ width: 70%; height: 56%; }
}

.media-badges{
  position:absolute;
  left: 16px;
  bottom: 16px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  z-index: 3;
}

.media-badge{
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 13px;
  color: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.20);
  background: rgba(0,0,0,.22);
  backdrop-filter: blur(10px);
}

.impact{
  margin-top: 12px;
  text-align:center;
}
.impact-grid{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 980px){
  .impact-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px){
  .impact-grid{ grid-template-columns: 1fr; }
}
.impact-card{
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
  padding: 18px 16px;
}
.impact-num{
  font-size: 44px;
  font-weight: 1000;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #a7f4cf, #7cc7ff);
  -webkit-background-clip: text;
  background-clip:text;
  color: transparent;
  line-height: 1;
}
.impact-label{
  font-weight: 950;
  margin-top: 8px;
}
.impact-sub{
  color: rgba(255,255,255,.78);
  font-size: 13px;
  margin-top: 6px;
  line-height:1.35;
}

.beforeafter{ text-align:center; }
.ba-wrap{ margin-top: 18px; display:flex; justify-content:center; }
.ba{
  position: relative;
  width: min(980px, 100%);
  aspect-ratio: 16/9;
  border-radius: 24px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  box-shadow: 0 30px 90px rgba(0,0,0,.55);
}
.ba-img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit: cover;
}
.ba-before{
  clip-path: inset(0 45% 0 0);
}
.ba-range{
  position:absolute;
  left: 14px; right: 14px; bottom: 14px;
  width: calc(100% - 28px);
  z-index: 5;
}
.ba-handle{
  position:absolute;
  top:0; bottom:0;
  left:55%;
  width: 2px;
  background: rgba(255,255,255,.85);
  z-index: 4;
  box-shadow: 0 0 0 8px rgba(34,166,255,.14);
}
.ba-label{
  position:absolute;
  top: 14px;
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 950;
  font-size: 12px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.28);
  backdrop-filter: blur(10px);
  z-index: 6;
}
.ba-label.left{ left: 14px; }
.ba-label.right{ right: 14px; }



/* =========================
   RICH TURBO – KONTRASZT FIX (2026-01)
   - h2 címek legyenek jól olvashatók sötét háttéren
   - hero "ghost" gomb legyen világos
   - sticky gombok mind "teli" stílusúak
========================= */

main h2{
  color: rgba(255,255,255,.92);
  text-shadow: 0 10px 40px rgba(0,0,0,.35);
}

/* Ha blog kártyában van h2, maradjon sötét a fehér háttéren */
.blog-list-card h2{
  color:#062116;
  text-shadow:none;
}

/* Hero ghost gomb – ne legyen sötétzöld sötét alapon */
.hero .btn.ghost{
  color:#e5f6ee;
  border-color: rgba(255,255,255,.45);
  background: rgba(255,255,255,.10);
}
.hero .btn.ghost:hover{
  background: rgba(255,255,255,.16);
}

/* Sticky CTA: mindkét gomb "teli" legyen (primary osztállyal együtt is) */
.stickyBar a{
  border:none;
  background: linear-gradient(135deg, rgba(69,209,154,.95), rgba(34,166,255,.95));
  color:#ffffff;
  box-shadow: 0 14px 30px rgba(0,0,0,.35);
}
.stickyBar a:hover{ filter: brightness(1.03); }



/* === RICH FIX 2: konzisztens "teli buborék" + jobb kontraszt sötét részeken === */

/* HERO: a másodlagos (ghost) CTA is legyen "teli" */
.hero .btn.ghost{
  border:none;
  color:#ffffff;
  background: linear-gradient(135deg, rgba(69,209,154,.92), rgba(34,166,255,.92));
  box-shadow: 0 18px 55px rgba(34,166,255,.16);
}
.hero .btn.ghost:hover{
  filter: brightness(1.05);
  background: linear-gradient(135deg, rgba(69,209,154,.98), rgba(34,166,255,.98));
}

/* VISSZAJELZÉSEK: a két CTA buborék legyen egységes (két "teli" gomb) */
.testimonials .center .btn.ghost{
  border:none;
  color:#ffffff;
  background: linear-gradient(135deg, rgba(69,209,154,.92), rgba(34,166,255,.92));
  box-shadow: 0 18px 55px rgba(34,166,255,.14);
}
.testimonials .center .btn.ghost:hover{
  filter: brightness(1.05);
  background: linear-gradient(135deg, rgba(69,209,154,.98), rgba(34,166,255,.98));
}

/* Sticky CTA: mindkét gomb teli és egységes */
.stickyBar a{
  border:none !important;
  color:#ffffff !important;
  background: linear-gradient(135deg, rgba(69,209,154,.95), rgba(34,166,255,.95)) !important;
  box-shadow: 0 14px 30px rgba(0,0,0,.35) !important;
}

/* MINI-ESTIMATOR (Gyors szűrő): sötét háttéren ne vesszen el a label/szöveg */
.mini-estimator,
.mini-estimator h3{
  color: rgba(255,255,255,.94);
}
.mini-estimator p{
  color: rgba(255,255,255,.78);
}
.mini-estimator-form label{
  color: rgba(255,255,255,.88) !important;
}
.mini-estimator-form input,
.mini-estimator-form select{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.94);
}
.mini-estimator-form input::placeholder{
  color: rgba(255,255,255,.60);
}

/* IMPACT (Gyors tények): biztos kontraszt */
.impact-label{ color: rgba(255,255,255,.92); }
.impact-sub{ color: rgba(255,255,255,.82); }



/* --- Contact CTA panel (landingre terel) --- */
.contact-panel{
  padding:18px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  box-shadow: 0 18px 55px rgba(0,0,0,.45);
}
.contact-panel-head h3{ margin:0 0 10px; font-size:22px; }
.contact-panel-head p{ margin:0 0 12px; color: rgba(255,255,255,.80); line-height:1.55; }
.contact-panel-list{ margin:0 0 14px; padding-left:18px; color: rgba(255,255,255,.88); }
.contact-panel-list li{ margin:8px 0; }
.contact-panel-actions{ display:flex; gap:10px; flex-wrap:wrap; }
.contact-panel-foot{ margin-top:12px; font-size:13px; color: rgba(255,255,255,.75); }

.contact-trust-img{
  width:100%;
  max-width:220px;
  border-radius:14px;
  margin-top:12px;
  border:1px solid rgba(255,255,255,.12);
  display:block;
  height:auto;
  background:rgba(0,0,0,.18);
}
