:root{
  --bg:#070a10;
  --panel:#0c1220;
  --panel2:#0a0f1a;
  --text:#e8edf6;
  --muted:#a9b3c7;
  --line:rgba(255,255,255,.10);
  --steel:rgba(255,255,255,.14);
  --blue:#2aa6ff;
  --blue2:#1e6bff;
  --shine:linear-gradient(90deg, rgba(42,166,255,.0), rgba(42,166,255,.35), rgba(42,166,255,.0));
  --radius:18px;
  --shadow: 0 20px 60px rgba(0,0,0,.45);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color:var(--text);
  background: radial-gradient(1200px 700px at 20% -10%, rgba(42,166,255,.20), transparent 55%),
              radial-gradient(900px 600px at 90% 10%, rgba(255,255,255,.10), transparent 55%),
              var(--bg);
}

a{color:inherit;text-decoration:none}
.container{width:min(1100px, calc(100% - 40px)); margin:0 auto}

.hidden{display:none}
.muted{color:var(--muted)}
.center{text-align:center;margin-top:18px}
.w100{width:100%}
.divider{height:1px;background:var(--line); margin:16px 0}

.siteHeader{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(7,10,16,.55);
  border-bottom:1px solid var(--line);
}
.headerInner{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0; gap:14px;
}
.brand{display:flex;align-items:center;gap:12px;min-width:220px}
.brandLogo{width:46px;height:46px;object-fit:contain;filter: drop-shadow(0 8px 18px rgba(0,0,0,.4))}
.brandName{font-weight:800;letter-spacing:.2px}
.brandTag{font-size:12px;color:var(--muted)}

.navToggle{display:none}
.navList{display:flex;gap:16px;list-style:none;padding:0;margin:0}
.navLink{
  font-weight:700; font-size:14px; color:var(--muted);
  padding:10px 10px; border-radius:12px;
  transition: .2s ease;
}
.navLink:hover{color:var(--text); background:rgba(255,255,255,.06)}
.navLink.active{color:var(--text); background:rgba(42,166,255,.12); box-shadow: inset 0 0 0 1px rgba(42,166,255,.22)}

.headerCta{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px; border-radius:14px;
  background: linear-gradient(135deg, rgba(42,166,255,.95), rgba(30,107,255,.95));
  box-shadow: 0 16px 40px rgba(30,107,255,.25);
  font-weight:900;
}

.hero{position:relative; overflow:hidden; border-bottom:1px solid var(--line)}
.heroBg{position:absolute; inset:0; z-index:0}
.heroVideo{
  width:100%; height:100%; object-fit:cover;
  filter: saturate(1.05) contrast(1.05) brightness(.85);
  transform: scale(1.02);
}
.heroOverlay{
  position:absolute; inset:0;
  background: radial-gradient(900px 600px at 20% 10%, rgba(42,166,255,.22), transparent 55%),
              linear-gradient(180deg, rgba(7,10,16,.20), rgba(7,10,16,.90));
}

.heroGrid{
  position:relative; z-index:1;
  display:grid; gap:24px;
  grid-template-columns: 1.15fr .85fr;
  padding:56px 0 42px;
}
.pill{
  display:inline-flex; gap:8px; align-items:center;
  padding:8px 12px; border-radius:999px;
  background: rgba(255,255,255,.06);
  border:1px solid var(--line);
  color:var(--muted);
  font-weight:700; font-size:12px;
}
h1{margin:14px 0 10px; font-size:46px; line-height:1.05; letter-spacing:-.5px}
.lead{font-size:16px;color:var(--muted); max-width:58ch}

.heroActions{display:flex; gap:10px; margin:18px 0 14px; flex-wrap:wrap}
.btnPrimary,.btnGhost{
  border:none; cursor:pointer;
  padding:12px 14px; border-radius:14px;
  font-weight:900;
  display:inline-flex; align-items:center; justify-content:center;
  transition:.2s ease; gap:10px;
}
.btnPrimary{
  background: linear-gradient(135deg, rgba(42,166,255,.98), rgba(30,107,255,.98));
  box-shadow: 0 16px 40px rgba(30,107,255,.22);
}
.btnPrimary:hover{transform: translateY(-1px)}
.btnGhost{
  background: rgba(255,255,255,.06);
  border:1px solid var(--line);
  color:var(--text);
}
.btnGhost:hover{background: rgba(255,255,255,.10)}

.trustRow{display:flex;gap:12px;flex-wrap:wrap;margin-top:8px}
.trustItem{
  display:flex; gap:8px; align-items:center;
  padding:10px 12px; border-radius:14px;
  background: rgba(12,18,32,.55);
  border:1px solid var(--line);
  box-shadow: var(--shadow);
}
.trustItem span{color:var(--blue)}

.heroCard{
  background: rgba(12,18,32,.68);
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:18px;
  position:relative;
  overflow:hidden;
}
.heroCard:before{
  content:"";
  position:absolute; inset:-40px -40px auto -40px;
  height:120px;
  background: var(--shine);
  transform: rotate(12deg);
  opacity:.55;
  animation: sweep 6s ease-in-out infinite;
}
@keyframes sweep{0%,100%{transform:translateX(-35%) rotate(12deg)}50%{transform:translateX(35%) rotate(12deg)}}

.cardTitle{font-weight:900;font-size:18px}
.cardSub{color:var(--muted);margin:6px 0 12px}

.form{display:grid;gap:10px}
label{display:grid;gap:6px;font-weight:800;font-size:13px}
input,select,textarea{
  padding:12px 12px;
  border-radius:14px;
  background: rgba(0,0,0,.25);
  border:1px solid rgba(255,255,255,.12);
  color: var(--text);
  outline:none;
}
input:focus,select:focus,textarea:focus{border-color: rgba(42,166,255,.55); box-shadow: 0 0 0 4px rgba(42,166,255,.12)}

.formMsg{font-weight:800;font-size:13px; min-height:18px}

.section{padding:52px 0}
.sectionAlt{background: rgba(255,255,255,.02); border-top:1px solid var(--line); border-bottom:1px solid var(--line)}
.sectionHead{display:flex;justify-content:space-between;gap:18px;align-items:flex-end;margin-bottom:18px}
.sectionHead h2{margin:0;font-size:28px}
.sectionHead p{margin:0;color:var(--muted);max-width:62ch}

.cardsGrid{
  display:grid; gap:14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.card{
  background: rgba(12,18,32,.52);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: 0 18px 55px rgba(0,0,0,.35);
  transition:.18s ease;
}
.card:hover{transform: translateY(-3px); border-color: rgba(42,166,255,.22)}
.card h3{margin:0 0 6px}
.card p{margin:0;color:var(--muted)}

.refsGrid{
  display:grid; gap:14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.refCard{
  overflow:hidden;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(12,18,32,.55);
  box-shadow: var(--shadow);
  transition:.18s ease;
}
.refCard:hover{transform: translateY(-3px)}
.refCard img{width:100%; height:220px; object-fit:cover}
.refBody{padding:14px}
.refBody h3{margin:0 0 6px}
.bullets{margin:10px 0 0; padding-left:18px; color:var(--muted)}

.ctaBand{
  padding:44px 0;
  background: radial-gradient(800px 400px at 20% 10%, rgba(42,166,255,.20), transparent 60%),
              radial-gradient(900px 500px at 90% 10%, rgba(255,255,255,.10), transparent 60%),
              rgba(255,255,255,.02);
  border-top:1px solid var(--line);
}
.ctaInner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  max-width:980px;
  margin:0 auto;
}
@media (max-width: 720px){
  .ctaInner{justify-content:flex-start;}
}

.ctaInner h2{margin:0 0 6px}
.ctaInner p{margin:0;color:var(--muted)}

.footer{padding:28px 0 90px; border-top:1px solid var(--line)}
@media (max-width: 920px){
  .footer{padding-bottom:130px;}
}

.footerGrid{display:grid;grid-template-columns: 1fr 1fr; gap:16px}
.footerTitle{font-weight:900;margin-bottom:8px}
.footerLink{display:block;color:var(--muted);padding:4px 0}
.footerLink:hover{color:var(--text)}
.tiny{color:var(--muted); font-size:12px; margin-top:12px}

.callFab{
  position:fixed; right:14px; bottom:14px; z-index:60;
  background: linear-gradient(135deg, rgba(42,166,255,.98), rgba(30,107,255,.98));
  color:#fff; font-weight:900;
  padding:12px 14px; border-radius:999px;
  box-shadow: 0 18px 45px rgba(30,107,255,.25);
  display:none;
}
@media (max-width: 920px){
  h1{font-size:38px}
  .heroGrid{grid-template-columns:1fr; padding:44px 0 34px}
  .cardsGrid{grid-template-columns:1fr}
  .refsGrid{grid-template-columns:1fr}
  .navToggle{display:inline-flex; background:rgba(255,255,255,.06); border:1px solid var(--line); color:var(--text); padding:10px 12px; border-radius:14px}
  .navList{display:none; position:absolute; right:20px; top:64px; background: rgba(7,10,16,.95); border:1px solid var(--line); border-radius:16px; padding:10px; box-shadow: var(--shadow); flex-direction:column; min-width:220px}
  .navList.open{display:flex}
  .headerCta{display:none}
  .callFab{display:inline-flex}
}

.cookie{
  position:fixed; left:14px; right:14px; bottom:14px; z-index:70;
  display:none;
}
.cookieInner{
  display:flex; gap:12px; justify-content:space-between; align-items:center;
  padding:14px;
  background: rgba(12,18,32,.92);
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.cookieBtns{display:flex; gap:10px; flex-wrap:wrap}


#preloader{
  position:fixed; inset:0; z-index:100;
  background: radial-gradient(900px 500px at 20% 10%, rgba(42,166,255,.16), transparent 60%),
              var(--bg);
  display:flex; align-items:center; justify-content:center;
}
.loader{display:grid; gap:10px; place-items:center}
.loaderRing{
  width:58px; height:58px; border-radius:999px;
  border: 4px solid rgba(255,255,255,.12);
  border-top-color: rgba(42,166,255,.9);
  animation: spin .85s linear infinite;
}
@keyframes spin{to{transform:rotate(360deg)}}
.loaderText{color:var(--muted); font-weight:900}
.hero{ cursor: pointer; }

.heroHoverHint{
  display:inline-flex;
  align-items:center;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: var(--muted);
  font-weight:800;
  font-size:13px;
}

/* finom "shine" animáció hover előtt (poszteren is látszik) */
.heroOverlay::after{
  content:"";
  position:absolute;
  inset:-40%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.14), transparent);
  transform: translateX(-45%) rotate(10deg);
  animation: heroShine 6.5s ease-in-out infinite;
  pointer-events:none;
  opacity:.65;
}

@keyframes heroShine{
  0%,100%{ transform: translateX(-45%) rotate(10deg); }
  50%{ transform: translateX(45%) rotate(10deg); }
}

/* hoverre tisztuljon a videó */
.heroVideo{ transition: filter .25s ease, transform .25s ease; }
.hero:hover .heroVideo{
  filter: saturate(1.1) contrast(1.06) brightness(.92);
  transform: scale(1.03);
}
.hero:hover .heroOverlay::after{ opacity:0; animation:none; }
/* CTA beljebb (különösen Referenciák oldalon) */
.ctaBand{
  padding: 34px 0;
}
.ctaBand > .container{
  width: min(980px, calc(100% - 40px)); /* beljebb hozza a tartalmat */
}
.ctaInner{
  padding: 16px 18px;                 /* belső tér */
  border-radius: 18px;
}
@media (max-width: 720px){
  .ctaInner{ padding: 14px 14px; }
}


