/* BP Eagles – Hero section */

.bpe-hero,
.bpe-hero * {
  box-sizing: border-box;
}

.bpe-hero {
  --hero-blue: #0097df;
  --hero-blue-bright: #12acf3;
  --hero-black: #030609;
  --hero-text: #f5f7f9;
  --hero-muted: #9ba6af;
  --hero-line: rgba(255, 255, 255, 0.12);
  --hero-shell: 1380px;
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: clamp(720px, calc(100svh - 120px), 930px);
  flex-direction: column;
  overflow: hidden;
  color: var(--hero-text);
  background: var(--hero-black);
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif;
}

.bpe-hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, #030609 0%, rgba(3, 6, 9, 0.98) 31%, rgba(3, 6, 9, 0.67) 55%, rgba(3, 6, 9, 0.08) 82%),
    linear-gradient(0deg, #030609 0%, transparent 27%);
}

.bpe-hero::after {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--hero-blue), transparent);
  opacity: 0.58;
}

.bpe-hero__media {
  position: absolute;
  z-index: -3;
  inset: 0;
}

.bpe-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.92) contrast(1.04);
  transform: scale(1.015);
  animation: bpeHeroMedia 14s ease-out both;
}

.bpe-hero__grid {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.055;
  background-image:
    linear-gradient(rgba(255,255,255,.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.4) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.bpe-hero__glow {
  position: absolute;
  z-index: -1;
  top: 8%;
  left: 27%;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: rgba(0, 151, 223, 0.1);
  filter: blur(110px);
}

.bpe-hero__arc {
  position: absolute;
  z-index: -1;
  top: 4%;
  right: -11%;
  width: min(60vw, 880px);
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
}

.bpe-hero__arc--outer {
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.bpe-hero__arc--inner {
  top: 7%;
  right: -9%;
  width: min(55vw, 800px);
  border: 2px solid rgba(0, 151, 223, 0.28);
}

.bpe-hero__shell,
.bpe-hero-stats__shell {
  width: min(calc(100% - 64px), var(--hero-shell));
  margin-inline: auto;
}

.bpe-hero__shell {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  padding-block: clamp(70px, 8vh, 110px) clamp(130px, 18vh, 185px);
}

.bpe-hero__content {
  width: min(670px, 53%);
}

.bpe-hero__eyebrow {
  display: flex;
  margin-bottom: 24px;
  align-items: center;
  gap: 11px;
  color: var(--hero-blue-bright);
  font-family: "Inter", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.bpe-hero__eyebrow-mark {
  width: 22px;
  height: 2px;
  background: var(--hero-blue);
  box-shadow: 0 0 12px rgba(0, 151, 223, 0.8);
}

.bpe-hero__eyebrow-code {
  margin-left: 8px;
  padding-left: 18px;
  border-left: 1px solid var(--hero-line);
  color: #69757e;
  font-size: 8px;
  letter-spacing: 0.13em;
}

.bpe-hero__title {
  margin: 0;
  color: #fff;
  font-size: clamp(62px, 6.1vw, 102px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.84;
  text-transform: uppercase;
}

.bpe-hero__title span {
  display: block;
}

.bpe-hero__title-accent {
  color: var(--hero-blue);
  text-shadow: 0 0 38px rgba(0, 151, 223, 0.14);
}

.bpe-hero__description {
  max-width: 590px;
  margin: 30px 0 0;
  color: #a7b0b7;
  font-family: "Inter", Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.72;
}

.bpe-hero__actions {
  display: flex;
  margin-top: 34px;
  align-items: center;
  gap: 14px;
}

.bpe-hero-button {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  padding: 0 25px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  overflow: hidden;
  border: 1px solid transparent;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 200ms ease, box-shadow 200ms ease, color 200ms ease;
}

.bpe-hero-button > * {
  position: relative;
  z-index: 1;
}

.bpe-hero-button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  transition: transform 200ms ease;
}

.bpe-hero-button:hover svg {
  transform: translateX(4px);
}

.bpe-hero-button--primary {
  background: var(--hero-blue);
  box-shadow: 0 12px 35px rgba(0, 151, 223, 0.18);
}

.bpe-hero-button--primary::before {
  position: absolute;
  inset: 0;
  content: "";
  background: #fff;
  transform: translateX(-102%);
  transition: transform 230ms ease;
}

.bpe-hero-button--primary:hover::before,
.bpe-hero-button--primary:focus-visible::before {
  transform: translateX(0);
}

.bpe-hero-button--primary:hover,
.bpe-hero-button--primary:focus-visible {
  color: #031018 !important;
}

.bpe-hero-button--primary:hover span,
.bpe-hero-button--primary:focus-visible span {
  color: #031018 !important;
}

.bpe-hero-button--secondary {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(4, 9, 13, 0.56);
  backdrop-filter: blur(10px);
}

.bpe-hero-button--secondary:hover,
.bpe-hero-button--secondary:focus-visible {
  border-color: var(--hero-blue);
  color: #fff !important;
  box-shadow: inset 0 0 0 1px rgba(0, 151, 223, 0.2);
}

.bpe-hero-button--secondary:hover span,
.bpe-hero-button--secondary:focus-visible span {
  color: #fff !important;
}

.bpe-hero__status {
  display: flex;
  margin-top: 26px;
  align-items: center;
  gap: 10px;
  color: #6f7c86;
  font-family: "Inter", Arial, sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bpe-hero__status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--hero-blue-bright);
  box-shadow: 0 0 10px var(--hero-blue);
  animation: bpePulse 2s ease-in-out infinite;
}

.bpe-hero__status-separator {
  width: 1px;
  height: 12px;
  margin-inline: 4px;
  background: var(--hero-line);
}

.bpe-hero-stats {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid var(--hero-line);
  background: rgba(3, 7, 10, 0.84);
  backdrop-filter: blur(17px);
}

.bpe-hero-stats__shell {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.bpe-stat {
  position: relative;
  display: grid;
  min-height: 112px;
  grid-template-columns: 43px auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 20px 42px;
  border-left: 1px solid var(--hero-line);
}

.bpe-stat:last-child {
  border-right: 1px solid var(--hero-line);
}

.bpe-stat::after {
  position: absolute;
  top: -1px;
  left: 0;
  width: 0;
  height: 1px;
  content: "";
  background: var(--hero-blue);
  transition: width 450ms ease;
}

.bpe-stat:hover::after {
  width: 100%;
}

.bpe-stat__icon {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border: 1px solid rgba(0, 151, 223, 0.27);
  color: var(--hero-blue);
  background: rgba(0, 151, 223, 0.06);
  clip-path: polygon(7px 0, 100% 0, 100% calc(100% - 7px), calc(100% - 7px) 100%, 0 100%, 0 7px);
}

.bpe-stat__icon svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linejoin: miter;
  stroke-width: 1.35;
}

.bpe-stat__number {
  min-width: 58px;
  color: #fff;
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
}

.bpe-stat__number--text {
  min-width: 94px;
  font-size: 34px;
  letter-spacing: 0.025em;
}

.bpe-stat__number sup {
  color: var(--hero-blue);
  font-size: 20px;
  vertical-align: top;
}

.bpe-stat__label {
  display: flex;
  padding-left: 18px;
  flex-direction: column;
  border-left: 1px solid var(--hero-line);
}

.bpe-stat__label strong {
  color: #e8edf0;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bpe-stat__label span {
  margin-top: 4px;
  color: #63707a;
  font-family: "Inter", Arial, sans-serif;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.bpe-hero__edge-label {
  position: absolute;
  z-index: 2;
  top: 50%;
  color: rgba(255, 255, 255, 0.22);
  font-family: "Inter", Arial, sans-serif;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.bpe-hero__edge-label--left {
  left: 15px;
  transform: translateY(-50%) rotate(180deg);
}

.bpe-hero__edge-label--right {
  right: 15px;
  transform: translateY(-50%);
}

.bpe-hero__scroll {
  position: absolute;
  z-index: 5;
  right: 34px;
  bottom: 136px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
  transform: rotate(90deg);
  transform-origin: right center;
}

.bpe-hero__scroll i {
  position: relative;
  display: block;
  width: 42px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
}

.bpe-hero__scroll i::after {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--hero-blue);
  transform: translateX(-100%);
  animation: bpeScrollLine 2s ease-in-out infinite;
}

[data-bpe-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.22, 1, .36, 1);
}

.bpe-hero.is-ready [data-bpe-reveal] {
  opacity: 1;
  transform: translateY(0);
}

.bpe-hero.is-ready .bpe-hero__title {
  transition-delay: 80ms;
}

.bpe-hero.is-ready .bpe-hero__description {
  transition-delay: 150ms;
}

.bpe-hero.is-ready .bpe-hero__actions {
  transition-delay: 220ms;
}

.bpe-hero.is-ready .bpe-hero__status {
  transition-delay: 290ms;
}

.bpe-hero.is-ready .bpe-stat:nth-child(1) { transition-delay: 260ms; }
.bpe-hero.is-ready .bpe-stat:nth-child(2) { transition-delay: 330ms; }
.bpe-hero.is-ready .bpe-stat:nth-child(3) { transition-delay: 400ms; }

@keyframes bpeHeroMedia {
  from { transform: scale(1.06); }
  to { transform: scale(1.015); }
}

@keyframes bpePulse {
  50% { opacity: 0.45; box-shadow: 0 0 3px var(--hero-blue); }
}

@keyframes bpeScrollLine {
  0% { transform: translateX(-100%); }
  55%, 100% { transform: translateX(100%); }
}

@media (max-width: 1100px) {
  .bpe-hero__shell,
  .bpe-hero-stats__shell {
    width: min(calc(100% - 40px), var(--hero-shell));
  }

  .bpe-hero__content {
    width: 57%;
  }

  .bpe-hero__title {
    font-size: clamp(58px, 7vw, 82px);
  }

  .bpe-stat {
    padding-inline: 24px;
    gap: 12px;
  }
}

/* Kisebb laptopok: 1280–1366 px szélesség */
@media (max-width: 1366px) and (min-width: 901px) {
  .bpe-hero {
    min-height: clamp(680px, calc(100svh - 108px), 820px);
  }

  .bpe-hero__shell {
    padding-top: clamp(58px, 7vh, 84px);
    padding-bottom: 150px;
  }

  .bpe-hero__content {
    width: min(620px, 52%);
  }

  .bpe-hero__title {
    font-size: clamp(62px, 6.1vw, 86px);
  }

  .bpe-hero__description {
    max-width: 535px;
    margin-top: 24px;
    font-size: 13px;
  }

  .bpe-hero__actions {
    margin-top: 28px;
  }

  .bpe-hero-stats__shell {
    width: min(calc(100% - 40px), var(--hero-shell));
  }

  .bpe-stat {
    min-height: 100px;
  }
}

/* Tablet álló és fekvő nézet */
@media (max-width: 900px) {
  .bpe-hero {
    min-height: 990px;
  }

  .bpe-hero::before {
    background:
      linear-gradient(0deg, #030609 0%, rgba(3, 6, 9, 0.97) 42%, rgba(3, 6, 9, 0.18) 79%, rgba(3, 6, 9, 0.25) 100%);
  }

  .bpe-hero__media {
    height: 52%;
  }

  .bpe-hero__media img {
    object-position: 67% center;
  }

  .bpe-hero__shell {
    width: min(calc(100% - 40px), var(--hero-shell));
    align-items: flex-end;
    padding: 360px 0 286px;
  }

  .bpe-hero__content {
    width: 100%;
  }

  .bpe-hero__eyebrow {
    margin-bottom: 18px;
  }

  .bpe-hero__title {
    font-size: clamp(56px, 10vw, 78px);
  }

  .bpe-hero__description {
    max-width: 620px;
  }

  .bpe-hero-stats__shell {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .bpe-stat {
    min-height: 84px;
    padding: 12px 22px;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid var(--hero-line);
  }

  .bpe-stat:last-child {
    border-right: 0;
    border-bottom: 0;
  }

  .bpe-stat__icon {
    width: 38px;
    height: 38px;
  }

  .bpe-stat__number {
    font-size: 36px;
  }

  .bpe-stat__number--text {
    font-size: 29px;
  }

  .bpe-hero__scroll,
  .bpe-hero__edge-label {
    display: none;
  }
}

@media (max-width: 520px) {
  .bpe-hero {
    min-height: 940px;
  }

  .bpe-hero__shell {
    width: min(calc(100% - 32px), var(--hero-shell));
    padding-top: 300px;
  }

  .bpe-hero__eyebrow-code {
    display: none;
  }

  .bpe-hero__title {
    font-size: clamp(46px, 14vw, 64px);
  }

  .bpe-hero__description {
    margin-top: 22px;
    font-size: 13px;
  }

  .bpe-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .bpe-hero-button {
    width: 100%;
  }
}

/* Keskeny telefonok */
@media (max-width: 390px) {
  .bpe-hero {
    min-height: 930px;
  }

  .bpe-hero__media {
    height: 42%;
  }

  .bpe-hero__shell {
    width: min(calc(100% - 28px), var(--hero-shell));
    padding-top: 270px;
  }

  .bpe-hero__title {
    font-size: 43px;
  }

  .bpe-hero__description {
    line-height: 1.6;
  }

  .bpe-stat {
    grid-template-columns: 38px 64px 1fr;
    gap: 9px;
    padding-inline: 16px;
  }

  .bpe-stat__label {
    padding-left: 12px;
  }
}

/* Alacsony, fekvő mobilnézet */
@media (max-height: 520px) and (orientation: landscape) and (max-width: 900px) {
  .bpe-hero {
    min-height: 760px;
  }

  .bpe-hero__media {
    height: 100%;
    opacity: 0.58;
  }

  .bpe-hero__shell {
    align-items: center;
    padding: 48px 0 270px;
  }

  .bpe-hero__content {
    max-width: 560px;
  }

  .bpe-hero__title {
    font-size: 54px;
  }

  .bpe-hero__description {
    max-width: 500px;
    margin-top: 16px;
  }

  .bpe-hero__actions {
    margin-top: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bpe-hero *,
  .bpe-hero *::before,
  .bpe-hero *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Hero főcím színe – Elementor globális stílus felülírása */
.bpe-hero .bpe-hero__title,
.bpe-hero .bpe-hero__title span:not(.bpe-hero__title-accent) {
  color: #ffffff !important;
}

.bpe-hero .bpe-hero__title .bpe-hero__title-accent {
  color: var(--hero-blue) !important;
}