.b2b-page {
  padding-top: 0px !important;
}

.festival-cover {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  background: #000;
  overflow: hidden;
  isolation: isolate;
}

.festival-cover__backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #000;
}

/* Blurred image fill */
.festival-cover__blurred-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: blur(18px) brightness(0.42) saturate(1.05);
  transform: scale(1.06);
  opacity: 0.9;
  pointer-events: none;
}

/* Main image */
.festival-cover__main-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  background: transparent;
}

/* Overlay for readability */
.festival-cover__shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
      radial-gradient(700px 320px at 50% 50%, rgba(0,0,0,0.35), transparent 62%),
      linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.40) 45%, rgba(0,0,0,0.55) 100%);
}

/* Subtle grain */
.festival-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.055;
  background-image:
    radial-gradient(circle at 20% 30%, #fff 0.7px, transparent 1px),
    radial-gradient(circle at 80% 70%, #fff 0.7px, transparent 1px),
    radial-gradient(circle at 60% 20%, #fff 0.7px, transparent 1px),
    radial-gradient(circle at 30% 80%, #fff 0.7px, transparent 1px);
  background-size: 9px 9px, 11px 11px, 13px 13px, 7px 7px;
  background-position: 0 0, 2px 3px, 1px 5px, 4px 1px;
}

/* =========================
   COVER CONTENT
   ========================= */
.festival-cover__inner {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(920px, calc(100% - 32px));
  padding: 100px 12px 0px 12px;
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
  pointer-events: auto;
  opacity: 0;
  filter: blur(6px);
}

/* Entrance animation */
.festival-cover.is-visible .festival-cover__inner {
  animation: festivalCoverReveal 900ms cubic-bezier(.2,.8,.2,1) 180ms forwards;
}

@keyframes festivalCoverReveal {
  0% {
    opacity: 0;
    transform: translate(-50%, calc(-50% + 22px));
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
    filter: blur(0);
  }
}

/* Top label */
.festival-cover__tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: 0 auto;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  background: rgba(0,0,0,0.34);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.9);
}

.festival-cover__tag-icons {
  display: inline-flex;
  gap: 5px;
}

.festival-cover__tag-icons span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: block;
}

.festival-cover__tag-icons span:nth-child(1) { background: var(--wef-red); }
.festival-cover__tag-icons span:nth-child(2) { background: var(--wef-yellow); }
.festival-cover__tag-icons span:nth-child(3) { background: var(--wef-green); }

/* Title */
.festival-cover__headline {
  font-family: WildHeads;
  margin: 0;
  text-align: center;
  font-size: 50px;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--text);
  letter-spacing: 2px;
  text-shadow:
    0 6px 20px rgba(0,0,0,0.55),
    0 2px 6px rgba(0,0,0,0.45);
}

.festival-cover__headline-mark {
  color: var(--wef-red);
}

/* Subtitle */
.festival-cover__description {
  margin: 0 auto;
  text-align: center;
  max-width: 70ch;
  font-size: 18px;
  line-height: 1.55;
  color: var(--muted);
  text-shadow: 0 2px 8px rgba(0,0,0,0.45);
}

/* Actions */
.festival-cover__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin-top: 4px;
}

/* =========================
   OPTIONAL BOTTOM CONTROL
   ========================= */
.festival-cover__panel {
  position: absolute;
  z-index: 5;
  right: max(12px, env(safe-area-inset-right));
  bottom: max(12px, env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  gap: 8px;
}

.festival-cover__panel-btn {
  appearance: none;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(0,0,0,0.42);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: background 120ms ease, border-color 120ms ease, transform 120ms ease;
}

.festival-cover__panel-btn:hover {
  background: rgba(0,0,0,0.58);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-1px);
}

.festival-cover__panel-btn:focus-visible {
  outline: 2px solid var(--wef-yellow);
  outline-offset: 2px;
}

/* =========================
   OPTIONAL LOADER
   ========================= */
.festival-cover__preload {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(0,0,0,0.16), rgba(0,0,0,0.55)),
    #000;
  transition: opacity 240ms ease, visibility 240ms ease;
}

.festival-cover__preload.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.festival-cover__preload-ring {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.16);
  border-top-color: var(--wef-yellow);
  animation: festivalSpin 1s linear infinite;
}

@keyframes festivalSpin {
  to { transform: rotate(360deg); }
}

/* =========================
   RESPONSIVE
   ========================= */

/* Large desktop */
@media (min-width: 1440px) {
  .festival-cover__inner {
    width: min(980px, 70vw);
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .festival-cover__inner {
    width: min(760px, calc(100% - 32px));
    gap: 12px;
    padding: 100px 10px 0px 10px;
  }

  .festival-cover__buttons {
    gap: 10px;
  }

  .festival-cover__panel {
    right: 10px;
    bottom: 10px;
  }

  .festival-cover__panel-btn {
    padding: 9px 10px;
    font-size: 11px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .festival-cover {
    min-height: 70svh;
    min-height: 70vh; 
  }

  .festival-cover__backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .festival-cover__main-image {
    object-fit: cover;
    object-position: center center;
  }

  .festival-cover__inner {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 95vw;
    padding: 100px 10px 0px 10px;
    gap: 10px;
    justify-items: center;
    text-align: center;
  }

  .festival-cover.is-visible .festival-cover__inner {
    animation: festivalCoverRevealMobile 900ms cubic-bezier(.2,.8,.2,1) 180ms forwards;
  }

  @keyframes festivalCoverRevealMobile {
    0% {
      opacity: 0;
      transform: translate(-50%, calc(-50% + 18px));
      filter: blur(6px);
    }
    100% {
      opacity: 1;
      transform: translate(-50%, -50%);
      filter: blur(0);
    }
  }

  .festival-cover__tagline {
    font-size: 10px;
    padding: 7px 10px;
  }

  .festival-cover__headline {
    font-size: 30px;
    text-align: center;
  }

  .festival-cover__description {
    font-size: 17px;
    margin: 0 auto;
    text-align: center;
  }

  .festival-cover__buttons {
    justify-content: center;
    gap: 8px;
    margin-top: 2px;
  }

  .festival-cover__panel {
    right: 10px;
    bottom: 10px;
  }

  .festival-cover__panel-btn {
    padding: 8px 10px;
    font-size: 11px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .festival-cover.is-visible .festival-cover__inner {
    animation: none;
    opacity: 1;
    transform: translate(-50%, -50%);
    filter: none;
  }

  .festival-cover__preload-ring {
    animation: none;
  }

  .festival-cover__panel-btn {
    transition: none;
  }
}

/* =========================
   BENEFITS
   ========================= */
.b2b-benefits{
  padding: 0 0 80px 0;
}

.b2b-benefits .festival-info__title{
  text-align: center;
  margin-bottom: 30px;
}

.b2b-benefit-card{
  position: relative;
  padding: 24px 22px;
  border-radius: 22px;
  background: rgba(10,12,16,.46);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 22px 56px rgba(0,0,0,.34),
    0 0 0 1px rgba(255,255,255,.04) inset;
  overflow: hidden;
}

.b2b-benefit-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(600px 220px at 18% 20%, rgba(121,213,255,.06), transparent 55%),
    radial-gradient(600px 220px at 82% 80%, rgba(252,200,72,.05), transparent 55%);
  pointer-events:none;
}

.b2b-benefit-card__number{
  position: relative;
  z-index: 1;
  color: rgba(245,241,232,.28);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.b2b-benefit-card__title{
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 1px;
  text-wrap: balance;
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

.b2b-benefit-card__title.item1{
  color: var(--wef-red);
}

.b2b-benefit-card__title.item2{
  color: var(--wef-yellow);
}

.b2b-benefit-card__title.item3{
  color: var(--wef-green);
}

.b2b-benefit-card__text{
  color: var(--fi-muted);
  font-size: 16px;
  line-height: 1.55;
  text-wrap: balance;
  margin-top: 10px;
}

/* =========================
   PACKAGES
   ========================= */
.b2b-packages{
  padding: 0 0 80px 0;
}

.b2b-packages .festival-info__title{
  text-align: center;
  margin-bottom: 30px;
}

.b2b-package-card{
  position: relative;
  height: 100%;
  padding: 28px 24px;
  border-radius: 24px;
  background: rgba(10,12,16,.50);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 24px 64px rgba(0,0,0,.38),
    0 0 0 1px rgba(255,255,255,.04) inset;
  overflow: hidden;
}

.b2b-package-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(700px 240px at 14% 18%, rgba(239,67,80,.08), transparent 58%),
    radial-gradient(700px 240px at 84% 80%, rgba(43,182,115,.07), transparent 58%);
  pointer-events:none;
}

.b2b-package-card--featured{
  border-color: rgba(239,67,80,.34);
  box-shadow:
    0 28px 72px rgba(0,0,0,.42),
    0 0 0 1px rgba(239,67,80,.18) inset,
    0 0 24px rgba(239,67,80,.08);
}

.b2b-package-card--small{
  padding-top: 26px;
}

.b2b-package-card__top{
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 25px;
  vertical-align: middle;
}

.b2b-package-card__label{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(8, 10, 14, 0.34);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #F4EFE6;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.02),
    0 8px 18px rgba(0,0,0,0.18);
}

.b2b-package-card__budget{
  color: rgba(245,241,232,.92);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .04em;
  white-space: nowrap;
}

.b2b-package-card__title{
  margin-bottom: 20px;
  color: var(--fi-text);
  font-family: WildHeads;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.4;
  text-wrap: balance;
  text-shadow:
    0 4px 0 rgba(0,0,0,0.35),
    0 10px 30px rgba(0,0,0,0.35);
    text-transform: uppercase;
}

.b2b-package-card__list{
  position: relative;
  z-index: 1;
  margin: 0;
  padding-left: 0px;
  color: var(--muted);
  display: grid;
  gap: 12px;
  line-height: 1.55;
  font-size: 17px;
}

.b2b-package-card__list strong{
  color: var(--wef-green);
}

.b2b-package-card__list li::marker{
  color: var(--muted);
}

/* =========================
   CTA
   ========================= */
.b2b-cta{
  padding: 0 0 80px 0;
}

.b2b-cta__box{
  position: relative;
  padding: 34px 24px;
  border-radius: 26px;
  background: rgba(10,12,16,.54);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 28px 70px rgba(0,0,0,.42),
    0 0 0 1px rgba(255,255,255,.04) inset;
  overflow: hidden;
}

.b2b-cta__box::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(800px 260px at 20% 25%, rgba(239,67,80,.10), transparent 55%),
    radial-gradient(800px 260px at 82% 72%, rgba(43,182,115,.08), transparent 55%);
  pointer-events:none;
}

.b2b-cta__badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(8, 10, 14, 0.34);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #F4EFE6;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.02),
    0 8px 18px rgba(0,0,0,0.18);

  margin-bottom: 20px;
}

.b2b-cta__title{
  margin-bottom: 20px;
  color: var(--fi-text);
  font-family: WildHeads;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 1.4;
  text-wrap: balance;
  text-shadow:
    0 4px 0 rgba(0,0,0,0.35),
    0 10px 30px rgba(0,0,0,0.35);
  text-transform: uppercase;
}

@media (max-width: 991.98px){
  .b2b-cta__title{
    font-size: 30px;
  }
}

.b2b-cta__text{
  position: relative;
  z-index: 1;
  margin: 0 auto;
  max-width: 72ch;
  color: var(--muted);
  line-height: 1.55;
  font-size: 18px;
}

.b2b-cta__actions{
  position: relative;
  z-index: 1;
  margin-top: 24px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 991.98px){
  .b2b-page{
    padding-top: 104px;
  }

  .b2b-package-card__title{
    font-size: 24px;
  }
}

@media (max-width: 767.98px){
  .b2b-page{
    padding-top: 92px;
  }

  .b2b-hero{
    padding-bottom: 44px;
  }

  .b2b-hero__title{
    font-size: clamp(32px, 9vw, 52px);
    line-height: .94;
  }

  .b2b-hero__subtitle{
    font-size: 14px;
    line-height: 1.55;
  }

  .b2b-intro__box,
  .b2b-benefit-card,
  .b2b-package-card,
  .b2b-cta__box{
    border-radius: 20px;
  }

  .b2b-intro__box{
    padding: 22px 18px;
  }

  .b2b-benefit-card{
    padding: 20px 18px;
  }

  .b2b-package-card{
    padding: 22px 18px;
  }

  .b2b-package-card__top{
    gap: 10px;
  }

  .b2b-package-card__budget{
    white-space: normal;
    font-size: 13px;
  }

  .b2b-package-card__title{
    font-size: 22px;
  }

  .b2b-package-card__list{
    font-size: 14px;
    line-height: 1.58;
  }

  .b2b-cta__box{
    padding: 26px 18px;
  }

  .b2b-cta__title{
    font-size: clamp(26px, 8vw, 38px);
    line-height: .98;
  }

  .b2b-cta__text{
    font-size: 14px;
    line-height: 1.58;
  }
}

/* ========================
   LINEUP SECTION
   ======================== */
.lp-section {
  position: relative;
  z-index: 2;
  padding: 0 0 80px;
  background: transparent;
}

/* Header */
.lp-header {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.lp-ribbon {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff7f5;
  background: var(--wef-red);
  border: 2px solid rgba(0,0,0,0.65);
  box-shadow:
    0 8px 0 rgba(0,0,0,.36),
    0 14px 24px rgba(0,0,0,.24);
  transform: rotate(-0.8deg);
}

.lp-title {
  margin-top: 20px;
  color: var(--fi-text);
  font-family: WildHeads;
  font-size: 50px;
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 1.3;
  text-wrap: balance;
  text-shadow:
    0 4px 0 rgba(0,0,0,0.35),
    0 10px 30px rgba(0,0,0,0.35);
  text-transform: uppercase;
}

/* Grid */
.lp-grid {
  /* mosteneste row g-4 din Bootstrap */
}

/* Card */
.lp-card {
  display: grid;
  gap: 10px;
  width: 100%;
  text-decoration: none;
  color: inherit;
  border-radius: 16px;
  padding: 10px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)),
    rgba(8,10,14,0.34);
  border: 1px solid rgba(255,255,255,0.11);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 12px 24px rgba(0,0,0,0.18),
    inset 0 0 0 1px rgba(255,255,255,0.02);
  transition:
    transform .2s ease,
    border-color .2s ease,
    box-shadow .2s ease,
    background .2s ease;
}

.lp-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.18);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.013)),
    rgba(8,10,14,0.42);
  box-shadow:
    0 18px 30px rgba(0,0,0,0.24),
    0 0 20px rgba(239,67,80,0.08),
    0 0 22px rgba(43,182,115,0.06),
    inset 0 0 0 1px rgba(255,255,255,0.02);
}

/* Image wrap */
.lp-card__image-wrap {
  position: relative;
  z-index: 1;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(6,8,12,0.45);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.02),
    0 8px 16px rgba(0,0,0,0.16);
  width: 100%;
  aspect-ratio: 1 / 1; /* patrат consistent */
}

.lp-card__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  background: #06070A;
  transition: transform .35s ease, filter .25s ease;
}

.lp-card:hover .lp-card__image {
  transform: scale(1.04);
  filter: saturate(1.03) contrast(1.02);
}

/* Name */
.lp-card__name {
  margin: 0;
  text-align: center;
  color: #F5F1E8;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

/* CTA */
.lp-actions {
  margin-top: 32px;
}

/* ========================
   Responsive
   ======================== */
@media (max-width: 767.98px) {
  .lp-section {
    padding-bottom: 60px;
  }

  .lp-title {
    font-size: 35px;
  }

  .lp-ribbon {
    min-height: 38px;
    font-size: 12px;
    padding: 0 12px;
  }

  .lp-card__name {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lp-card,
  .lp-card__image {
    transition: none;
  }
}