:root{
  --bg:#0b1220;
  --panel:#0f1b2f;
  --text:#e8eefc;
  --muted:#b8c5e6;
  --line:rgba(255,255,255,.08);
  --shadow:0 18px 40px rgba(0,0,0,.35);
  --brand:#2e6bff;
  --brand2:#1b3fbd;
  --wrap:1180px;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial;
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(46,107,255,.30), transparent 55%),
    radial-gradient(900px 500px at 80% 10%, rgba(0,180,255,.15), transparent 60%),
    linear-gradient(180deg, #060b14, #0a1020 40%, #070d18);
}
a{color:inherit;text-decoration:none}
.wrap{width:min(var(--wrap), calc(100% - 40px)); margin:0 auto}

/* Header */
.header{
  position:sticky; top:0; z-index:50;
  background:rgba(8,14,26,.65);
  backdrop-filter: blur(12px);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex; align-items:center; gap:16px;
  padding:14px 0;
}
.brand{display:flex; align-items:center; gap:10px; font-weight:900; letter-spacing:.3px}
.logo{
  width:34px; height:34px; border-radius:999px;
  background: radial-gradient(circle at 30% 30%, #fff, #b9d0ff 30%, #2e6bff 62%, #0a1a44);
  box-shadow:0 10px 24px rgba(46,107,255,.35);
  border:1px solid rgba(255,255,255,.25);
}
.navlinks{margin-left:auto; display:flex; gap:16px; color:var(--muted); font-weight:800; font-size:13px}
.navlinks a:hover{color:#fff}
.btn{
  height:40px; padding:0 16px; border-radius:12px;
  display:inline-flex; align-items:center; justify-content:center;
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  box-shadow:0 12px 26px rgba(0,0,0,.22);
  font-weight:900;
}
.btn.primary{
  border-color:rgba(46,107,255,.45);
  background:linear-gradient(180deg, rgba(46,107,255,.95), rgba(27,63,189,.95));
  box-shadow:0 16px 34px rgba(46,107,255,.22);
}

/* Mobile menu */
.hamburger{display:none; margin-left:10px; width:44px; height:44px; border-radius:12px; border:1px solid var(--line); background:rgba(255,255,255,.04); position:relative}
.hamburger span{position:absolute; left:11px; right:11px; height:2px; background:#fff; border-radius:2px; opacity:.9}
.hamburger span:nth-child(1){top:14px}
.hamburger span:nth-child(2){top:21px}
.hamburger span:nth-child(3){top:28px}
.mobilePanel{display:none; padding:10px 0 14px}
.mobilePanel a{display:block; padding:12px 0; border-bottom:1px solid rgba(255,255,255,.06); color:var(--muted); font-weight:900}

/* Hero card */
.heroCard{
  margin:22px 0 34px;
  border-radius:22px; overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
}
.heroMedia{position:relative; height:520px; background:#0a0f1c}
.heroMedia video{position:absolute; inset:0; width:100%; height:100%; object-fit:cover}
.heroOverlay{position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(5,10,18,.82) 0%, rgba(5,10,18,.55) 40%, rgba(5,10,18,.10) 80%),
    linear-gradient(180deg, rgba(0,0,0,.0) 55%, rgba(0,0,0,.55) 100%);
}
.heroContent{position:absolute; inset:0; display:flex; align-items:center; padding:46px}
.heroText h1{margin:0; font-size:56px; line-height:1.05; letter-spacing:-.8px}
.lead{margin:12px 0 0; font-size:18px; font-weight:800; color:rgba(232,238,252,.82)}

/* Cards */
.cards{display:grid; grid-template-columns:repeat(3,1fr); gap:16px; padding:18px 18px 0; margin-top:-10px}
.card{
  border-radius:18px; overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  box-shadow: 0 12px 28px rgba(0,0,0,.22);
}
.cardImg{height:120px; background:#0a0f1c center/cover no-repeat}
.cardBody{padding:14px}
.cardBody h3{margin:0; font-size:16px; font-weight:950}
.cardBody p{margin:6px 0 0; font-size:13px; color:rgba(232,238,252,.72); font-weight:750}

/* ZF banner */
.zfBanner{padding:16px 18px 0}
.zfInner{
  height:180px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.10);
  background:#0a0f1c center/cover no-repeat;
  position:relative;
  overflow:hidden;
}
.zfInner::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(90deg, rgba(5,10,18,.70) 0%, rgba(5,10,18,.28) 60%, rgba(5,10,18,.12) 100%);
}
.zfText{
  position:absolute; left:22px; top:50%;
  transform:translateY(-50%);
  font-size:34px; font-weight:950; letter-spacing:-.3px;
  z-index:1;
}

/* Panels */
.twoCol{display:grid; grid-template-columns:1.1fr .9fr; gap:16px; padding:16px 18px}
.panel{
  border-radius:20px; overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  box-shadow: 0 12px 28px rgba(0,0,0,.22);
}
.panel.dark{background:rgba(7,12,22,.65)}
.panel.darker{background:rgba(7,12,22,.75)}
.panelHead{padding:16px 16px 0}
.panelHead h2{margin:0; font-size:22px; font-weight:950}
.panelHead p{margin:6px 0 0; font-size:13px; font-weight:800; color:rgba(232,238,252,.66)}
.panelImg{height:170px; background:#0a0f1c center/cover no-repeat; margin-top:14px; border-top:1px solid rgba(255,255,255,.08)}

.priceList{padding:14px 16px 18px; display:grid; gap:10px}
.priceRow{
  display:flex; justify-content:space-between; align-items:center;
  padding:12px 12px; border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.16);
  font-weight:950;
}
.priceRow span{color:rgba(232,238,252,.84); font-weight:850}

/* Bottom */
.bottomRow{display:grid; grid-template-columns:1fr 1fr; gap:16px; padding:0 18px 16px}
.reviews{padding:14px 16px 18px; display:grid; gap:12px}
.review{display:flex; gap:12px; padding:12px; border-radius:16px; border:1px solid rgba(255,255,255,.10); background:rgba(0,0,0,.16)}
.avatar{width:40px; height:40px; border-radius:999px; background:linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.05)); border:1px solid rgba(255,255,255,.12)}
.review b{display:block; font-weight:950}
.review p{margin:4px 0 0; font-size:13px; font-weight:750; color:rgba(232,238,252,.75)}

.gallery{padding:14px 16px 18px; display:grid; grid-template-columns:repeat(3,1fr); gap:10px}
.g{height:90px; border-radius:14px; border:1px solid rgba(255,255,255,.10); background:#0a0f1c center/cover no-repeat}

/* Contact */
.contact{
  margin:0 18px 18px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(46,107,255,.08), rgba(0,0,0,0));
  padding:18px;
}
.contact h2{margin:0 0 12px; font-size:22px; font-weight:950}
.contactGrid{display:grid; gap:8px; color:rgba(232,238,252,.82); font-weight:850; font-size:13px}

/* Footer */
.footer{padding:16px 18px 22px; color:rgba(232,238,252,.65); font-weight:800; font-size:13px}

/* Responsive */
@media (max-width: 980px){
  .navlinks{display:none}
  .btn.primary{display:none}
  .hamburger{display:inline-flex}
  .heroMedia{height:420px}
  .heroText h1{font-size:40px}
  .cards{grid-template-columns:1fr}
  .twoCol{grid-template-columns:1fr}
  .bottomRow{grid-template-columns:1fr}
  .gallery{grid-template-columns:repeat(2,1fr)}
}
@media (max-width: 520px){
  .wrap{width:min(var(--wrap), calc(100% - 26px))}
  .heroContent{padding:26px}
}

/* Hero image (video helyett) */
.heroMedia .heroImage{
  position:absolute; inset:0;
  width:100%; height:100%;
  background:#0a0f1c center/cover no-repeat;
}

/* SEO/AI additions */
.kicker{
  display:inline-flex; gap:8px; align-items:center;
  padding:6px 10px; border-radius:999px;
  background: rgba(46,107,255,.14);
  border:1px solid rgba(46,107,255,.28);
  color:#cfe0ff;
  font-weight:900; font-size:12px;
  letter-spacing:.3px; margin:0 0 12px;
}
.heroChips{margin-top:16px; display:flex; gap:10px; flex-wrap:wrap}
.chip{
  padding:10px 12px; border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.22);
  font-weight:900; font-size:14px;
}
.chip a{text-decoration:underline}
/* Kiemelt banner */
.banner{
  margin:16px 18px 0;
  border-radius:20px; overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:#0a0f1c center/cover no-repeat;
  position:relative;
  min-height:180px;
}
.bannerOverlay{
  position:absolute; inset:0;
  background:linear-gradient(90deg, rgba(5,10,18,.82) 0%, rgba(5,10,18,.45) 55%, rgba(5,10,18,.10) 100%);
}
.bannerText{
  position:relative; z-index:1;
  padding:22px;
  max-width: 760px;
}
.bannerText h2{margin:0; font-size:28px; font-weight:950; letter-spacing:-.3px}
.bannerText p{margin:10px 0 0; color:rgba(232,238,252,.78); font-weight:750; line-height:1.45}
/* Panel body text */
.panelBodyText{padding:0 16px 16px; color:rgba(232,238,252,.78); font-weight:750; line-height:1.5}
/* FAQ */
.faq{margin:0 18px 16px}
.faqBody{padding:14px 16px 18px}
.faq details{border:1px solid rgba(255,255,255,.10); background:rgba(0,0,0,.16); border-radius:14px; padding:12px; margin:10px 0}
.faq summary{cursor:pointer; font-weight:950}
.faq details p{margin:10px 0 0; color:rgba(232,238,252,.78); font-weight:750; line-height:1.45}
/* Contact CTA */
.contactCta{
  margin:0 18px 18px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(46,107,255,.10), rgba(0,0,0,0));
  padding:18px;
  display:flex; justify-content:space-between; gap:16px; align-items:center;
}
.contactCta h2{margin:0; font-size:22px; font-weight:950}
.contactCta p{margin:8px 0 0; color:rgba(232,238,252,.78); font-weight:750; line-height:1.45; max-width: 70ch}
.ctaBtns{display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end}
/* Pages */
.page{padding:24px 0 36px}
.page h1{margin:0 0 10px; font-size:38px; letter-spacing:-.4px}
.small{font-size:13px; color:rgba(232,238,252,.70); font-weight:700}
.contactCards{display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-top:16px}
.contactCard{
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.16);
  padding:16px;
}
.contactCard h2{margin:0; font-size:18px; font-weight:950}
.contactCard p{margin:10px 0 0; font-weight:800; color:rgba(232,238,252,.82)}
@media (max-width: 980px){
  .contactCta{flex-direction:column; align-items:flex-start}
  .ctaBtns{justify-content:flex-start}
  .contactCards{grid-template-columns:1fr}
}


/* Conversion-friendly contact blocks */
.ctaMeta{margin-top:12px; display:grid; gap:8px; color:rgba(232,238,252,.82); font-weight:850; font-size:13px}
.ctaMeta div{display:flex; gap:10px; align-items:flex-start}
.ctaMeta span{opacity:.9}
.btn.ghost{
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.02);
}
.quickActions{display:flex; gap:10px; flex-wrap:wrap; margin:14px 0 6px}
.quickActions .btn{height:40px}
@media (max-width: 980px){
  .quickActions{width:100%}
}

/* Overlay fix v1: régi beégett szövegek/gombok elrejtése képeken */
.heroOverlay{
  /* erősebb fedés felül és balról (ha a képen maradt régi menü/szöveg) */
  background:
    linear-gradient(180deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.35) 28%, rgba(0,0,0,.45) 100%),
    linear-gradient(90deg, rgba(5,10,18,.70) 0%, rgba(5,10,18,.55) 42%, rgba(5,10,18,.12) 82%);
}

/* A banner bal oldalán (ahol a "tovább" gomb/szöveg volt) ráfedünk egy sötét réteget */
.banner::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(5,10,18,.92) 0%, rgba(5,10,18,.72) 40%, rgba(5,10,18,.18) 85%),
    linear-gradient(180deg, rgba(0,0,0,.40) 0%, rgba(0,0,0,.05) 60%);
  pointer-events:none;
}

/* Biztonsági fedés a régi zfInner blokkon is (ha valahol még használatban lenne) */
.zfInner::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(5,10,18,.92) 0%, rgba(5,10,18,.65) 55%, rgba(5,10,18,.10) 100%);
  pointer-events:none;
}


/* FULL WIDTH IMAGE FIX */
.serviceCard img{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
}

.serviceCard{
  overflow:hidden;
}

.serviceCard .cardImage{
  padding:0 !important;
  margin:0 !important;
}


/* Card image cover fix (desktop+mobile) */
.cardImg{
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-color: #0a0f1c;
}
.card{
  overflow:hidden;
}

/* Performance: render below-the-fold lazily */
.cvAuto{
  content-visibility:auto;
  contain-intrinsic-size: 800px 600px;
}
/* Gallery images */
.gallery .g img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  border-radius:14px;
}
.gallery .g{overflow:hidden}

.linkList{margin:0; padding-left:18px}
.linkList li{margin:8px 0}
.linkList a{text-decoration:underline}


/* EDGE-TO-EDGE service cards: no white gaps, full cover */
.cards{gap:16px}
.card{overflow:hidden}
.cardImg{
  height:210px;
  width:100%;
  background-size:cover !important;
  background-position:center !important;
  background-repeat:no-repeat !important;
  background-color:#0a0f1c;
}
.cardBody{padding:18px 18px 20px}
@media (max-width: 720px){
  /* make cards visually edge-to-edge inside the section */
  .wrap{padding-left:12px; padding-right:12px}
  #szolgaltatasok.cards{margin-left:-12px; margin-right:-12px; padding-left:12px; padding-right:12px}
  .card{border-radius:22px}
  .cardImg{height:190px}
}
