:root {
  color-scheme: light;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
  color: #0b0d10;
  font-family: "Nunito", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  max-width: 100%;
}

button,
a {
  font: inherit;
}

.qber-icon {
  display: block;
  flex: 0 0 auto;
}


/* ==================================================
   QBER – FOGLALÁS / BÉRLŐI ÚTMUTATÓ
   ================================================== */

#qber-booking-guide {
  width: 100%;
  padding: clamp(42px, 6vw, 90px) clamp(18px, 5vw, 70px);
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
  color: #0b0d10;
}

#qber-booking-guide * {
  box-sizing: border-box;
}

#qber-booking-guide .qber-booking-guide__inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

/* ==================================================
   HERO
   ================================================== */

#qber-booking-guide .qber-booking-guide__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 34px;
  align-items: center;
  margin-bottom: clamp(42px, 6vw, 70px);
}

#qber-booking-guide .qber-booking-guide__eyebrow {
  margin-bottom: 12px;
  color: #004aad;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

#qber-booking-guide .qber-booking-guide__heading {
  margin: 0 0 18px;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

#qber-booking-guide .qber-booking-guide__lead {
  max-width: 680px;
  color: rgba(11, 13, 16, 0.7);
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  line-height: 1.72;
}

#qber-booking-guide .qber-booking-guide__lead p {
  margin: 0;
}

#qber-booking-guide .qber-booking-guide__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

#qber-booking-guide .qber-booking-guide__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(0, 74, 173, 0.12);
  box-shadow: 0 8px 20px rgba(11, 13, 16, 0.04);
  color: #0b0d10;
  font-size: 0.92rem;
  font-weight: 700;
}

/* ==================================================
   HERO VISUAL
   ================================================== */

#qber-booking-guide .qber-booking-guide__hero-visual {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#qber-booking-guide .qber-booking-guide__sticker-card {
  position: absolute;
  left: 2%;
  top: 16%;
  width: 210px;
  padding: 18px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 20px 55px rgba(11, 13, 16, 0.09);
  transform: rotate(-6deg);
}

#qber-booking-guide .qber-booking-guide__sticker-label {
  margin-bottom: 10px;
  color: #ff5757;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#qber-booking-guide .qber-booking-guide__qr {
  position: relative;
  width: 132px;
  height: 132px;
  margin: 0 auto 12px;
  padding: 8px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow:
    inset 0 0 0 1px rgba(11, 13, 16, 0.08),
    0 10px 24px rgba(11, 13, 16, 0.06);
  overflow: hidden;
}

#qber-booking-guide .qber-booking-guide__qr svg {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

#qber-booking-guide .qber-booking-guide__scan-line {
  position: absolute;
  left: 10px;
  right: 10px;
  top: 16px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #004aad, transparent);
  box-shadow: 0 0 10px rgba(0, 74, 173, 0.35);
  animation: qberScanLine 2.4s ease-in-out infinite;
}

#qber-booking-guide .qber-booking-guide__scan-line {
  position: absolute;
  left: 20px;
  right: 20px;
  top: 70px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #004aad, transparent);
  animation: qberScanLine 2.3s ease-in-out infinite;
}

#qber-booking-guide .qber-booking-guide__sticker-text {
  text-align: center;
  color: rgba(11, 13, 16, 0.65);
  font-size: 0.9rem;
  font-weight: 700;
}

#qber-booking-guide .qber-booking-guide__phone-card {
  position: absolute;
  right: 4%;
  top: 4%;
  width: 250px;
  padding: 12px;
  border-radius: 28px;
  background: #0b0d10;
  box-shadow: 0 24px 65px rgba(11, 13, 16, 0.18);
  animation: qberFloatPhone 4.8s ease-in-out infinite;
}

#qber-booking-guide .qber-booking-guide__phone-top {
  width: 78px;
  height: 6px;
  margin: 0 auto 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

#qber-booking-guide .qber-booking-guide__phone-screen {
  padding: 16px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

#qber-booking-guide .qber-booking-guide__phone-title {
  margin-bottom: 14px;
  color: #004aad;
  font-size: 1rem;
  font-weight: 800;
}

#qber-booking-guide .qber-booking-guide__phone-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: rgba(11, 13, 16, 0.72);
  font-size: 0.88rem;
  font-weight: 700;
}

#qber-booking-guide .qber-booking-guide__phone-item span {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #004aad;
}

#qber-booking-guide .qber-booking-guide__phone-button {
  margin-top: 14px;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #004aad;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
}

/* ==================================================
   0. LÉPÉS – HONNAN FOGLALTÁL?
   ================================================== */

#qber-booking-guide
.qber-booking-guide__step-zero {

  display: grid;

  grid-template-columns:
    64px
    minmax(0, 1fr);

  gap: 24px;

  align-items: flex-start;

  margin-bottom:
    clamp(34px, 5vw, 54px);

  padding:
    clamp(24px, 4vw, 38px);

  border:
    1px solid
    rgba(0, 74, 173, 0.12);

  border-radius: 22px;

  background:
    linear-gradient(
      135deg,
      #eef5ff 0%,
      #ffffff 58%,
      #fff7f7 100%
    );

  box-shadow:
    0 18px 48px
    rgba(11, 13, 16, 0.055);
}


#qber-booking-guide
.qber-booking-guide__step-zero-number {

  width: 58px;
  height: 58px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 17px;

  background: #004aad;

  color: #ffffff;

  font-size: 1.15rem;
  font-weight: 900;

  box-shadow:
    0 10px 24px
    rgba(0, 74, 173, 0.2);
}


#qber-booking-guide
.qber-booking-guide__step-zero-label {

  display: block;

  margin-bottom: 7px;

  color: #ff5757;

  font-size: 0.76rem;
  font-weight: 800;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}


#qber-booking-guide
.qber-booking-guide__step-zero h3 {

  margin: 0 0 10px;

  font-size:
    clamp(1.5rem, 2.6vw, 2.25rem);

  line-height: 1.15;
}


#qber-booking-guide
.qber-booking-guide__step-zero-intro {

  max-width: 760px;

  margin: 0 0 22px;

  color:
    rgba(11, 13, 16, 0.68);

  line-height: 1.7;
}


#qber-booking-guide
.qber-booking-guide__source-grid {

  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 14px;
}


#qber-booking-guide
.qber-booking-guide__source-card {

  display: grid;

  grid-template-columns:
    46px
    minmax(0, 1fr);

  gap: 14px;

  padding: 20px;

  border:
    1px solid
    rgba(11, 13, 16, 0.06);

  border-radius: 16px;

  background:
    rgba(255, 255, 255, 0.86);
}


#qber-booking-guide
.qber-booking-guide__source-icon {

  width: 42px;
  height: 42px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 12px;

  background:
    rgba(0, 74, 173, 0.08);

  color: #004aad;
}


#qber-booking-guide
.qber-booking-guide__source-type {

  display: block;

  margin-bottom: 5px;

  color: #004aad;

  font-size: 0.75rem;
  font-weight: 800;

  letter-spacing: 0.05em;

  text-transform: uppercase;
}


#qber-booking-guide
.qber-booking-guide__source-card h4 {

  margin: 0 0 9px;

  font-size: 1.05rem;

  line-height: 1.3;
}


#qber-booking-guide
.qber-booking-guide__source-card p {

  margin: 0 0 8px;

  color:
    rgba(11, 13, 16, 0.65);

  font-size: 0.93rem;

  line-height: 1.58;
}


#qber-booking-guide
.qber-booking-guide__source-card p:last-child {

  margin-bottom: 0;
}


#qber-booking-guide
.qber-booking-guide__step-zero-next {

  display: flex;

  align-items: center;

  gap: 10px;

  margin-top: 18px;

  padding-top: 17px;

  border-top:
    1px solid
    rgba(11, 13, 16, 0.08);

  color:
    rgba(11, 13, 16, 0.76);

  font-weight: 700;
}


#qber-booking-guide
.qber-booking-guide__step-zero-next-icon {

  color: #004aad;

  font-size: 1.15rem;

  font-weight: 900;
}


/* TABLET / MOBIL */

@media screen and (max-width: 760px) {

  #qber-booking-guide
  .qber-booking-guide__source-grid {

    grid-template-columns: 1fr;
  }

}


@media screen and (max-width: 600px) {

  #qber-booking-guide
  .qber-booking-guide__step-zero {

    grid-template-columns: 1fr;

    gap: 17px;

    padding: 21px 17px;
  }


  #qber-booking-guide
  .qber-booking-guide__step-zero-number {

    width: 50px;
    height: 50px;

    border-radius: 14px;
  }


  #qber-booking-guide
  .qber-booking-guide__source-card {

    grid-template-columns:
      40px
      minmax(0, 1fr);

    gap: 12px;

    padding: 16px;
  }


  #qber-booking-guide
  .qber-booking-guide__source-icon {

    width: 38px;
    height: 38px;
  }

}

/* ==================================================
   QUICK GRID
   ================================================== */

#qber-booking-guide .qber-booking-guide__quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: clamp(38px, 5vw, 60px);
}

#qber-booking-guide .qber-booking-guide__quick-card {
  padding: 22px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(11, 13, 16, 0.07);
  box-shadow: 0 12px 30px rgba(11, 13, 16, 0.04);
}

#qber-booking-guide .qber-booking-guide__quick-number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 12px;
  background: rgba(0, 74, 173, 0.08);
  color: #004aad;
  font-size: 0.95rem;
  font-weight: 900;
}

#qber-booking-guide .qber-booking-guide__quick-card h4 {
  margin: 0 0 8px;
  font-size: 1.04rem;
  line-height: 1.25;
}

#qber-booking-guide .qber-booking-guide__quick-card p {
  margin: 0;
  color: rgba(11, 13, 16, 0.68);
  line-height: 1.6;
  font-size: 0.94rem;
}

/* ==================================================
   FLOW
   ================================================== */

#qber-booking-guide .qber-booking-guide__flow-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: clamp(42px, 6vw, 70px);
}

#qber-booking-guide .qber-booking-guide__flow-card {
  padding: clamp(22px, 4vw, 34px);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(11, 13, 16, 0.06);
}

#qber-booking-guide .qber-booking-guide__flow-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

#qber-booking-guide .qber-booking-guide__flow-icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(0, 74, 173, 0.08);
  color: #004aad;
}

#qber-booking-guide .qber-booking-guide__flow-top span {
  display: block;
  margin-bottom: 4px;
  color: #ff5757;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#qber-booking-guide .qber-booking-guide__flow-top h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.2;
}

#qber-booking-guide .qber-booking-guide__list {
  margin: 0;
  padding-left: 22px;
  color: rgba(11, 13, 16, 0.72);
  line-height: 1.7;
}

#qber-booking-guide .qber-booking-guide__list li {
  margin-bottom: 9px;
}

#qber-booking-guide .qber-booking-guide__list li::marker {
  color: #004aad;
  font-weight: 800;
}

/* ==================================================
   TIPS
   ================================================== */

#qber-booking-guide .qber-booking-guide__tips {
  margin-bottom: clamp(42px, 6vw, 70px);
}

#qber-booking-guide .qber-booking-guide__tips-heading {
  margin-bottom: 22px;
}

#qber-booking-guide .qber-booking-guide__tips-heading span {
  display: block;
  margin-bottom: 8px;
  color: #004aad;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#qber-booking-guide .qber-booking-guide__tips-heading h3 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.12;
}

#qber-booking-guide .qber-booking-guide__tips-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

#qber-booking-guide .qber-booking-guide__tip-card {
  padding: 22px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(11, 13, 16, 0.07);
  box-shadow: 0 12px 32px rgba(11, 13, 16, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#qber-booking-guide .qber-booking-guide__tip-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(11, 13, 16, 0.07);
}

#qber-booking-guide .qber-booking-guide__tip-card svg,
#qber-booking-guide .qber-booking-guide__tip-card .qber-icon {
  color: #004aad;
}

#qber-booking-guide .qber-booking-guide__tip-card h4 {
  margin: 12px 0 8px;
  font-size: 1.02rem;
}

#qber-booking-guide .qber-booking-guide__tip-card p {
  margin: 0;
  color: rgba(11, 13, 16, 0.68);
  line-height: 1.62;
  font-size: 0.94rem;
}

/* ==================================================
   CTA
   ================================================== */

#qber-booking-guide .qber-booking-guide__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 22px;
  background: #004aad;
  color: #ffffff;
  box-shadow: 0 22px 55px rgba(0, 74, 173, 0.18);
}

#qber-booking-guide .qber-booking-guide__cta-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  opacity: 0.76;
}

#qber-booking-guide .qber-booking-guide__cta h3 {
  max-width: 680px;
  margin: 0 0 10px;
  color: #ffffff;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.15;
}

#qber-booking-guide .qber-booking-guide__cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

#qber-booking-guide .qber-booking-guide__cta-button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 12px;
  background: #ffffff;
  color: #004aad;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, gap 0.2s ease;
}

#qber-booking-guide .qber-booking-guide__cta-button:hover {
  transform: translateY(-2px);
  gap: 16px;
}

/* ==================================================
   ANIMATION
   ================================================== */

@keyframes qberScanLine {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  50% {
    transform: translateY(42px);
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    transform: translateY(84px);
    opacity: 0;
  }
}

@keyframes qberFloatPhone {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* ==================================================
   TABLET
   ================================================== */

@media screen and (max-width: 980px) {

  #qber-booking-guide .qber-booking-guide__hero {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  #qber-booking-guide .qber-booking-guide__hero-visual {
    min-height: 340px;
  }

  #qber-booking-guide .qber-booking-guide__quick-grid,
  #qber-booking-guide .qber-booking-guide__tips-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #qber-booking-guide .qber-booking-guide__flow-grid {
    grid-template-columns: 1fr;
  }

  #qber-booking-guide .qber-booking-guide__cta {
    flex-direction: column;
    align-items: flex-start;
  }

}

@media screen and (max-width: 640px) {

  #qber-booking-guide {
    padding: 38px 16px;
  }

  #qber-booking-guide .qber-booking-guide__sticker-card {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: 220px;
    margin-right: auto;
  }

  #qber-booking-guide .qber-booking-guide__phone-card {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    max-width: 250px;
    margin-left: auto;
  }

  #qber-booking-guide .qber-booking-guide__hero-visual {
    min-height: auto;
    display: grid;
    gap: 16px;
  }

  #qber-booking-guide .qber-booking-guide__notice {
    grid-template-columns: 1fr;
  }

  #qber-booking-guide .qber-booking-guide__quick-grid,
  #qber-booking-guide .qber-booking-guide__tips-grid {
    grid-template-columns: 1fr;
  }

  #qber-booking-guide .qber-booking-guide__cta-button {
    width: 100%;
  }

}

/* ==================================================
   HERO ILLUSZTRÁCIÓ – RESZPONZÍV FINOMHANGOLÁS
   ================================================== */


/* --------------------------------------------------
   KÖZEPES DESKTOP / TABLET
   1200px alatt már ne absolute legyen
   -------------------------------------------------- */

@media screen and (max-width: 1200px) {

  #qber-booking-guide
  .qber-booking-guide__hero {

    grid-template-columns: 1fr;

    gap: 32px;
  }


  #qber-booking-guide
  .qber-booking-guide__hero-content {

    max-width: 760px;
  }


  #qber-booking-guide
  .qber-booking-guide__hero-visual {

    position: relative;

    width: 100%;
    max-width: 620px;

    min-height: auto;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
      minmax(190px, 220px)
      minmax(220px, 250px);

    justify-content: center;
    align-items: center;

    gap: clamp(24px, 5vw, 55px);

    padding:
      18px
      24px
      28px;
  }


  #qber-booking-guide
  .qber-booking-guide__sticker-card {

    position: relative;

    left: auto;
    top: auto;

    width: 100%;

    justify-self: end;

    transform: rotate(-4deg);
  }


  #qber-booking-guide
  .qber-booking-guide__phone-card {

    position: relative;

    right: auto;
    top: auto;

    width: 100%;

    justify-self: start;
  }

}



/* --------------------------------------------------
   TABLET
   -------------------------------------------------- */

@media screen and (max-width: 950px) {

  #qber-booking-guide
  .qber-booking-guide__hero-visual {

    max-width: 540px;

    grid-template-columns:
      190px
      220px;

    gap: 34px;

    padding:
      16px
      22px
      26px;
  }


  #qber-booking-guide
  .qber-booking-guide__sticker-card {

    width: 190px;

    justify-self: end;
  }


  #qber-booking-guide
  .qber-booking-guide__phone-card {

    width: 220px;

    justify-self: start;
  }

}



/* --------------------------------------------------
   KISEBB TABLET
   -------------------------------------------------- */

@media screen and (max-width: 700px) {

  #qber-booking-guide
  .qber-booking-guide__hero-visual {

    max-width: 480px;

    grid-template-columns:
      175px
      205px;

    gap: 24px;

    padding:
      12px
      20px
      24px;
  }


  #qber-booking-guide
  .qber-booking-guide__sticker-card {

    width: 175px;
  }


  #qber-booking-guide
  .qber-booking-guide__phone-card {

    width: 205px;
  }

}



/* --------------------------------------------------
   MOBIL
   Nem teljesen középre, hanem enyhén lépcsőzetesen
   -------------------------------------------------- */

@media screen and (max-width: 560px) {

  #qber-booking-guide
  .qber-booking-guide__hero-visual {

    width: 100%;
    max-width: 390px;

    grid-template-columns: 1fr;

    gap: 8px;

    padding:
      8px
      0
      22px;

    margin:
      0
      auto;
  }


  #qber-booking-guide
  .qber-booking-guide__sticker-card {

    width: 190px;

    justify-self: start;

    margin-left: 7%;

    transform: rotate(-4deg);

    z-index: 1;
  }


  #qber-booking-guide
  .qber-booking-guide__phone-card {

    width: 220px;

    justify-self: end;

    margin-right: 5%;

    margin-top: -16px;

    z-index: 2;
  }

}



/* --------------------------------------------------
   NAGYON KIS MOBIL
   -------------------------------------------------- */

@media screen and (max-width: 390px) {

  #qber-booking-guide
  .qber-booking-guide__hero-visual {

    max-width: 340px;
  }


  #qber-booking-guide
  .qber-booking-guide__sticker-card {

    width: 170px;

    margin-left: 3%;
  }


  #qber-booking-guide
  .qber-booking-guide__phone-card {

    width: 205px;

    margin-right: 2%;

    margin-top: -12px;
  }

}

@media (prefers-reduced-motion: reduce) {

  #qber-booking-guide * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

}



/* ==================================================
   JOGI LÁBLÉC
   ================================================== */

.qber-legal-footer {
  border-top: 1px solid rgba(11, 13, 16, 0.08);
  background: #ffffff;
  color: #0b0d10;
}

.qber-legal-footer__inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 24px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 24px;
}

.qber-legal-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.qber-legal-footer__brand strong {
  color: #004aad;
  font-size: 1rem;
}

.qber-legal-footer__brand span,
.qber-legal-footer__copy {
  color: rgba(11, 13, 16, 0.62);
  font-size: 0.84rem;
  line-height: 1.45;
}

.qber-legal-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.qber-legal-footer__links a {
  color: #004aad;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.qber-legal-footer__links a:hover {
  text-decoration: underline;
}

.qber-legal-footer__copy {
  text-align: right;
  white-space: nowrap;
}

@media screen and (max-width: 820px) {
  .qber-legal-footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 14px;
  }

  .qber-legal-footer__brand {
    align-items: center;
  }

  .qber-legal-footer__copy {
    text-align: center;
    white-space: normal;
  }
}

/* ==================================================
   JOGI DOKUMENTUM OLDALAK
   ================================================== */

.qber-legal-page {
  min-height: 100vh;
  padding: 54px 18px 80px;
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
}

.qber-legal-page__inner {
  width: min(920px, 100%);
  margin: 0 auto;
}

.qber-legal-page__back {
  display: inline-flex;
  margin-bottom: 28px;
  color: #004aad;
  font-weight: 800;
  text-decoration: none;
}

.qber-legal-page__back:hover {
  text-decoration: underline;
}

.qber-legal-page__card {
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid rgba(11, 13, 16, 0.08);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(11, 13, 16, 0.06);
}

.qber-legal-page__eyebrow {
  margin-bottom: 10px;
  color: #004aad;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.qber-legal-page h1 {
  margin: 0 0 28px;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.08;
}

.qber-legal-page__content {
  color: rgba(11, 13, 16, 0.76);
  line-height: 1.75;
}

.qber-legal-page__content h2 {
  margin: 34px 0 12px;
  color: #0b0d10;
  font-size: 1.35rem;
}

.qber-legal-page__content h3 {
  margin: 26px 0 10px;
  color: #0b0d10;
  font-size: 1.08rem;
}

.qber-legal-page__content p,
.qber-legal-page__content ul,
.qber-legal-page__content ol {
  margin: 0 0 16px;
}

.qber-legal-page__placeholder {
  padding: 18px;
  border-radius: 12px;
  background: #eef5ff;
  color: #004aad;
  font-weight: 700;
}
