/* =========================
   HERO – szöveg + logó biztos méretezés
   ========================= */
.brand-hero__copy{ max-width: 720px; }

.brand-hero__logo{
  display:block;
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 10px;
  filter: drop-shadow(0 12px 26px rgba(0,0,0,.60));
}

/* H1 legyen tényleg hero cím */
.brand-hero__title{
  font-size: 32px;
  line-height: 1.06;
  margin: 0;
}

.brand-hero__sub{
  margin: 10px 0 0;
  color: rgba(245,238,220,.78);
  font-size: 14px;
}


/* =========================
   CTA mikroszöveg (CTA alatt)
   ========================= */
.cta-micro{
  margin-top: 10px;
  display:flex;
  align-items:flex-start;
  gap:10px;
  color: rgba(245,238,220,.78);
  font-size: 13px;
  line-height: 1.35;
}

.cta-micro__dot{
  width:10px;
  height:10px;
  border-radius: 999px;
  margin-top: 4px;
  background: rgba(198,90,46,.95);
  box-shadow: 0 0 0 4px rgba(198,90,46,.18);
  flex: 0 0 auto;
}


/* =========================
   Bizalom blokkok (hero alatt)
   ========================= */
.trust-row{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
  padding-bottom: 6px;
}

.trust{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 12px 14px;
  box-shadow: 0 10px 26px rgba(0,0,0,.22);
}

.trust__k{
  font-family: "Oswald","Inter",system-ui,sans-serif;
  letter-spacing: .6px;
  color: rgba(245,238,220,.95);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.1;
}

.trust__t{
  margin-top: 4px;
  color: rgba(245,238,220,.78);
  font-size: 13px;
}


/* =========================
   Mobil finomítás
   ========================= */
@media (max-width: 980px){
  .brand-hero__logo{
    width: 86px;
    height: 86px;
    margin: 0 auto 10px;
  }

  .brand-hero__title{ font-size: 22px; }
  .brand-hero__sub{ font-size: 13px; }

  .trust-row{
    grid-template-columns: 1fr;
  }
}


/* =========================
   HERO REVEAL – SAFE verzió
   (alapból látszik, JS csak rásegít)
   ========================= */

/* Alapból MINDIG látszódjon */
.js-hero-reveal{
  opacity: 1 !important;
  transform: none !important;
}

/* Ha a body megkapja az is-ready-t, akkor szépen animáljon be */
body.is-ready .js-hero-reveal{
  animation: heroFadeUp .55s ease both;
}

@keyframes heroFadeUp{
  from{ opacity: 0; transform: translateY(10px); }
  to  { opacity: 1; transform: translateY(0); }
}

/* Motion-safe */
@media (prefers-reduced-motion: reduce){
  body.is-ready .js-hero-reveal{
    animation: none !important;
  }
}


/* =========================
   HERO – LOGÓ + SZÖVEG EGY DOBOZBAN
   ========================= */

.brand-hero{
  position: relative;
  padding: 18px 0 18px;
  overflow: hidden;
}

.brand-hero__bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(1000px 360px at 18% 45%, rgba(198,90,46,.30), transparent 60%),
    radial-gradient(1000px 380px at 82% 35%, rgba(64,140,255,.20), transparent 62%),
    linear-gradient(180deg, rgba(11,15,20,.95), rgba(14,20,28,.95));
}

.brand-hero::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height:70px;
  background: linear-gradient(to bottom, rgba(11,15,20,0), rgba(11,15,20,1));
  pointer-events:none;
}

.brand-hero__inner{
  position: relative;
  z-index: 1;
}

/* a “doboz” */
.hero-card{
  display:flex;
  align-items: flex-start;
  gap: 16px;

  padding: 18px 18px;
  border-radius: 18px;

  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 46px rgba(0,0,0,.35);

  max-width: 980px;
}

/* logó bal oldalt */
.hero-card__logo{
  flex: 0 0 auto;
  width: 96px;
  height: 96px;
  object-fit: contain;
  filter: drop-shadow(0 12px 26px rgba(0,0,0,.60));
  margin-top: 2px;
}

/* szöveg jobbra */
.hero-card__text{
  flex: 1 1 auto;
  min-width: 0;
}

.hero-card__title{
  margin: 0;
  font-family: "Oswald","Inter",system-ui,sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .9px;
  color: rgba(245,238,220,.95);
  font-size: 30px;
  line-height: 1.08;
}

.hero-card__lead{
  margin: 10px 0 0;
  color: rgba(245,238,220,.78);
  font-size: 14px;
  line-height: 1.45;
  max-width: 760px;
}

/* mobil: logó felül, szöveg alatta (biztosan elfér) */
@media (max-width: 980px){
  .hero-card{
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 14px;
  }

  .hero-card__logo{
    width: 72px;
    height: 72px;
    margin: 0;
  }

  .hero-card__title{
    font-size: 22px;
    line-height: 1.12;
  }

  .hero-card__lead{
    font-size: 13px;
  }
}


/* =========================
   HERO REVEAL – SAFE (nem tűnhet el)
   ========================= */
.js-hero-reveal{
  opacity: 1 !important;
  transform: none !important;
}
body.is-ready .js-hero-reveal{
  animation: heroFadeUp .55s ease both;
}
@keyframes heroFadeUp{
  from{ opacity: 0; transform: translateY(10px); }
  to  { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce){
  body.is-ready .js-hero-reveal{ animation: none !important; }
}


/* =========================
   HERO – cikk jellegű layout
   ========================= */

.hero-article{
  max-width: 880px;
  margin: 0 auto;
}

.hero-article__image{
  float: left;                 /* ← EZ a KULCS */
  width: 160px;                /* logó méret */
  height: auto;
  margin: 6px 22px 12px 0;     /* körbefolyás */
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.55));
}

.hero-article__title{
  margin: 0 0 10px;
  font-family: "Oswald","Inter",system-ui,sans-serif;
  font-size: 34px;
  line-height: 1.08;
  color: rgba(245,238,220,.96);
}

.hero-article__lead{
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(234,240,246,.80);
}

/* float lezárása */
.hero-article::after{
  content:"";
  display: block;
  clear: both;
}
