:root{
  --bg: #ffffff;
  --ink:#0b1220;
  --muted: rgba(11,18,32,.64);

  --card:#ffffff;
  --stroke: rgba(11,18,32,.14);
  --shadow: none;           /* nincs lebegés */

  --blue:#1d5cff;
  --blue2:#2f7bff;

  --r: 0px;                 /* NÉGYZETES minden */
  --max:1200px;
}


*{ box-sizing:border-box; }
html,body{ height:100%; }
html{ scroll-behavior:smooth; }

body{
  margin:0;
  font-family:"Instrument Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: #ffffff; /* fehér mindenhol */
}


/* layout */
.container{ width:min(var(--max), 92vw); margin:0 auto; }
a{ color:inherit; text-decoration:none; }



/* =========================
   TRANSPARENT NAV – LARGE, BLACK, NARROW
   ========================= */

.nav{
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 100;
  pointer-events: none;
}

/* kicsit keskenyebb, mint a normál container */
.nav--narrow{
  max-width: 1180px;   /* állítható: 1100–1200 */
}

.nav__inner{
  pointer-events: auto;

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 32px;

  padding: 12px 6px;

  background: transparent;
  border: none;
  box-shadow: none;
}

/* BRAND */
.brand{
  display:flex;
  align-items:center;
  gap: 14px;
  text-decoration:none;
}

.brand__logo{
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand__text{
  display:flex;
  flex-direction:column;
  line-height: 1.05;
}

.brand__title{
  font-weight: 950;
  font-size: 17px;          /* NAGYOBB */
  letter-spacing: -.3px;
  color: #0b1220;           /* FEKETE */
}

.brand__sub{
  font-size: 13px;          /* NAGYOBB */
  font-weight: 700;
  color: rgba(11,18,32,.65);
  margin-top: 3px;
}

/* LINKS */
.nav__links{
  display:flex;
  align-items:center;
  gap: 26px;
}

.navlink{
  position: relative;
  font-size: 15px;          /* NAGYOBB */
  font-weight: 900;
  color: #0b1220;           /* FEKETE */
  text-decoration:none;
  padding: 8px 0;
}

/* underline hover */
.navlink::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-4px;
  width:0%;
  height:2px;
  background:#0b1220;
  transition: width .18s ease;
}

.navlink:hover::after{
  width:100%;
}

/* CTA – csak erősebb súly + enyhe kék */
.navlink--cta{
  color: #1d5cff;
  font-weight: 950;
}

.navlink--cta::after{
  background:#1d5cff;
}

/* MOBILE */
@media (max-width: 900px){
  .nav__links .navlink:not(.navlink--cta){
    display:none;
  }

  .brand__sub{
    display:none;
  }
}




/* HERO */
.hero{
  background: transparent !important;
}

.hero__overlay{
  display:none; /* vagy opacity: 0; */
}


.hero__content{
  position:relative;
  max-width: 62ch;
  padding-bottom: 18px;
}

.hero__kicker{
  display:inline-flex;
  padding: 10px 12px;
  border-radius: 0;
  background: #ffffff;
  border: 1px solid var(--stroke);
  font-weight: 900;
  font-size: 13px;
}


.hero__h1{
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1.02;
  margin: 16px 0 10px;
  letter-spacing: -1px;
}
.hero__accent{
  color: var(--blue);
}

.hero__lead{
  font-size: clamp(16px, 1.25vw, 18px);
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 16px;

  background: #ffffff;              /* nem üveges */
  border: 1px solid var(--stroke);
  padding: 12px 14px;
  border-radius: 0;

  backdrop-filter: none;            /* OFF */
}


.hero__actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 10px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;

  border-radius: 0;                 /* NÉGYZETES */
  border:1px solid var(--stroke);
  background: #ffffff;
  color: rgba(11,18,32,.88);
  font-weight: 900;
  box-shadow: none;
}


.btn--primary{
  background: linear-gradient(135deg, rgba(47,123,255,1), rgba(29,92,255,1));
  color:#fff;
  border-color: rgba(29,92,255,.35);
  box-shadow: none;
}


.btn--soft{
  background: rgba(255,255,255,.86);
}

.hero__badges{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 14px;
}

.badge{
  padding:10px 12px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.55);
  background: rgba(255,255,255,.70);
  color: rgba(11,18,32,.82);
  font-weight: 900;
  font-size: 13px;
}

/* USP row */
.usp{
  position:relative;
  margin-top: 22px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.usp__item{
  background: #ffffff;
  border: 1px solid var(--stroke);
  border-radius: 0;
  padding: 14px;
  box-shadow: none;
  display:flex;
  gap: 12px;
  align-items:flex-start;
}


.usp__icon{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  background: rgba(29,92,255,.10);
  border: 1px solid rgba(29,92,255,.14);
}

.usp__title{ font-weight: 950; letter-spacing:-.2px; }
.usp__sub{ color: var(--muted); font-weight: 700; font-size: 13px; margin-top: 2px; }

@media (max-width: 980px){
  .usp{ grid-template-columns:1fr; }
}

/* sections */
.section{
  padding: 54px 0;
}
.section--alt{
  background: #ffffff;
  border-top: 1px solid rgba(11,18,32,.08);
  border-bottom: 1px solid rgba(11,18,32,.08);
}


.section__head{
  display:flex;
  justify-content:space-between;
  gap: 16px;
  flex-wrap:wrap;
  margin-bottom: 18px;
}

.h2{
  font-size: clamp(22px, 2.5vw, 34px);
  margin:0;
  letter-spacing:-.4px;
}

.sub{
  margin: 6px 0 0;
  color: var(--muted);
  line-height:1.6;
  max-width: 74ch;
}

/* cards */
.cards{
  display:grid;
  gap: 14px;
}
.cards--4{ grid-template-columns: repeat(4, 1fr); }
.cards--3{ grid-template-columns: repeat(3, 1fr); }

@media (max-width: 1100px){
  .cards--4{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px){
  .cards--4, .cards--3{ grid-template-columns: 1fr; }
}

.card{
  background: #ffffff;              /* nem átlátszó */
  border: 1px solid var(--stroke);
  border-radius: 0;                 /* NÉGYZETES */
  padding: 18px;
  box-shadow: none;                 /* nincs árnyék */
}


.card__icon{
  width: 46px;
  height: 46px;
  border-radius: 0;                 /* NÉGYZETES */
  display:grid;
  place-items:center;
  background: rgba(29,92,255,.08);
  border: 1px solid rgba(29,92,255,.18);
  font-size: 20px;
  margin-bottom: 10px;
}


.card__title{
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 950;
  letter-spacing: -.2px;
}

.card__text{
  margin:0;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 650;
}



/*-- uj proba */

/* Services – image-left cards (square, white) */
.serviceGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 1100px){
  .serviceGrid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px){
  .serviceGrid{ grid-template-columns: 1fr; }
}

.serviceCard{
  display:grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;

  background:#fff;
  border:1px solid rgba(11,18,32,.14);
  border-radius:0;
  padding:16px;
}

.serviceMedia{
  width:120px;
  height:92px;
  border-radius:0;
  overflow:hidden;
  background:#fff;
  border:1px solid rgba(11,18,32,.14);
}

.serviceMedia img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.serviceBody h3{
  margin:0 0 6px;
  font-size:18px;
  font-weight:900;
  letter-spacing:-.2px;
}

.serviceBody p{
  margin:0 0 10px;
  color: rgba(11,18,32,.62);
  line-height:1.55;
  font-weight:600;
}

.serviceLink{
  display:inline-flex;
  gap:8px;
  font-weight:900;
  font-size:13px;
  color: #1d5cff;
  text-decoration:none;
}

.serviceLink:hover{
  text-decoration:underline;
}








/* split */
.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}
@media (max-width: 980px){
  .split{ grid-template-columns: 1fr; }
}

.media{
  border-radius: var(--r);
  overflow:hidden;
  border:1px solid var(--stroke);
  background: #fff;
  box-shadow: var(--shadow);
  position:relative;
  min-height: 340px;
}
.media img{
  width:100%;
  height:100%;
  object-fit: cover;
}
.media__cap{
  position:absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,.85);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(10px);
  font-weight: 900;
  color: rgba(11,18,32,.84);
}

.panel{
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: var(--r);
  padding: 20px;
  box-shadow: var(--shadow);
}
.panel--wide{ max-width: 920px; margin: 0 auto; }

.checks{ display:grid; gap: 10px; margin-top: 12px; }
.check{
  display:flex;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(11,18,32,.08);
  background: rgba(245,247,251,.80);
  align-items:flex-start;
}
.check__dot{
  width: 22px;
  height: 22px;
  border-radius: 8px;
  display:grid;
  place-items:center;
  background: linear-gradient(135deg, rgba(47,123,255,.98), rgba(29,92,255,.92));
  color:#fff;
  font-weight: 950;
  flex: 0 0 auto;
  margin-top: 1px;
}
.check__title{ font-weight: 950; margin-bottom: 2px; }
.check__sub{ color: var(--muted); font-weight: 650; }

/* CTA */
.cta{
  margin-top: 18px;
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: var(--r);
  padding: 18px;
  box-shadow: var(--shadow);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 14px;
}
.cta__title{ font-weight: 950; font-size: 18px; letter-spacing:-.2px; }
.cta__sub{ color: var(--muted); margin-top: 3px; }
.cta__actions{ display:flex; gap: 10px; flex-wrap:wrap; }
@media (max-width: 980px){
  .cta{ flex-direction: column; align-items:flex-start; }
}

/* contact shell */
.contactShell{
  max-width: 980px;
  margin: 0 auto;
}

.contact__title{
  font-size: 20px;
  font-weight: 950;
  margin-bottom: 8px;
}

.contactActions{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
  margin-top: 14px;
}

/* footer */
.footer{
  padding: 28px 0 44px;
  color: rgba(11,18,32,.55);
  font-size: 14px;
  text-align:left;
}

/* =========================
   Quote form (kinézet: világos / clean)
   ========================= */
.qf{ margin-top: 10px; }
.qf__top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  margin-bottom: 12px;
}
.qf__title{
  font-weight: 950;
}

.qf__progress{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:8px;
  min-width: 140px;
}
.qf__bar{
  width: 140px;
  height: 10px;
  border-radius: 999px;
  background: rgba(11,18,32,.08);
  border:1px solid rgba(11,18,32,.10);
  overflow:hidden;
}
.qf__bar span{
  display:block;
  height:100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(47,123,255,.98), rgba(29,92,255,.92));
  transition: width .35s ease;
}
.qf__steptext{
  color: rgba(11,18,32,.75);
  font-weight: 900;
  font-size: 12px;
}

.qf__step{ display:none; }
.qf__step.is-active{ display:block; }

.qf__grid2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.qf__grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
@media (max-width: 980px){
  .qf__grid2, .qf__grid3{ grid-template-columns: 1fr; }
  .qf__progress{ align-items:flex-start; }
}

.qf__field{
  display:flex;
  flex-direction:column;
  gap:6px;
  margin-top: 10px;
}
.qf__label{
  font-weight: 900;
  font-size: 13px;
  color: rgba(11,18,32,.88);
}

.qf input, .qf select, .qf textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(11,18,32,.14);
  background: #fff;
  color: rgba(11,18,32,.92);
  outline:none;
  font: inherit;
  box-shadow: 0 10px 24px rgba(10,16,32,.06);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.qf input:focus, .qf select:focus, .qf textarea:focus{
  border-color: rgba(29,92,255,.55);
  box-shadow: 0 0 0 4px rgba(29,92,255,.14), 0 10px 24px rgba(10,16,32,.08);
}
.qf input::placeholder, .qf textarea::placeholder{ color: rgba(11,18,32,.45); }
.qf option{ color: #0b1220; }

.qf__conditional{ display:none; }
.qf__conditional.is-on{ display:grid; }

.qf__radios{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(11,18,32,.14);
  background: rgba(245,247,251,.75);
}
.qf__radios label{
  display:flex;
  align-items:center;
  gap:8px;
  font-weight: 900;
  color: rgba(11,18,32,.80);
  font-size: 13px;
}
.qf__radios input{ width:auto; box-shadow:none; }

.qf__nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin-top: 14px;
}
.qf__navRight{ display:flex; gap:10px; flex-wrap:wrap; }

.qf__summary{
  margin-top: 10px;
  padding: 14px;
  border-radius: 12px;
  border:1px solid rgba(11,18,32,.12);
  background: rgba(245,247,251,.80);
}
.qf__summaryTitle{
  font-weight: 950;
  color: rgba(11,18,32,.92);
  margin-bottom: 6px;
}
.qf__summaryText{
  color: rgba(11,18,32,.72);
  line-height: 1.55;
  font-weight: 700;
  font-size: 14px;
}
.qf__note{
  margin-top: 10px;
  color: rgba(11,18,32,.64);
  font-size: 13px;
  font-weight: 700;
}

.qf .is-error{
  border-color: rgba(255, 90, 120, .55) !important;
  box-shadow: 0 0 0 4px rgba(255, 90, 120, .16), 0 10px 24px rgba(10,16,32,.08) !important;
}



.statsBar{
  margin-top: 10px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(11,18,32,.12);
  border-bottom: 1px solid rgba(11,18,32,.12);
}

@media (max-width: 980px){
  .statsBar{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px){
  .statsBar{ grid-template-columns: 1fr; }
}

.stat{
  text-align:center;
}

.statNum{
  font-size: 42px;
  font-weight: 950;
  letter-spacing: -1px;
  color: #0b1220;
  line-height: 1.0;
}

.statLabel{
  margin-top: 6px;
  color: rgba(11,18,32,.62);
  font-weight: 700;
  font-size: 14px;
}





/* Szolgáltatás csempék ne legyenek túl szélesek */
.servicesInner{
  max-width: 1100px;   /* <-- itt tudsz játszani: 1000–1150 */
  margin: 0 auto;     /* középre */
}




/* ONE global background for the whole site */
html, body{
  height: 100%;
}

body{
  background-image: url("work.jpg");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* EZ a “végig ott van” */
}

/* ====== FORCE: ezek is legyenek "hero-szerű" üveg / áttetsző ====== */

/* WHY bal oldali kép-kártya: ne fehér legyen */
#miert .card-media{
  background: var(--tile) !important;
  border: 1px solid var(--tileStroke) !important;
  box-shadow: var(--shadowDark) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

/* WHY kép alatti felirat: sötét üveg */
#miert .card-media__cap{
  background: rgba(0,0,0,.22) !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  color: rgba(255,255,255,.90) !important;
}

/* Referenciák alatti CTA sáv: ne legyen fehér */
#referenciak .cta-band__inner{
  background: var(--tile) !important;
  border: 1px solid var(--tileStroke) !important;
  box-shadow: var(--shadowDark) !important;
  color: var(--white) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

#referenciak .cta-band__sub{
  color: var(--whiteMuted) !important;
}

/* CTA gombok sötét üvegesen (a primary maradhat) */
#referenciak .cta-band__inner .btn:not(.btn--primary){
  background: rgba(255,255,255,.10) !important;
  border-color: rgba(255,255,255,.16) !important;
  color: rgba(255,255,255,.92) !important;
  box-shadow: none !important;
}

#referenciak .cta-band__inner .btn:not(.btn--primary):hover{
  background: rgba(255,255,255,.16) !important;
}

