/* ============================================
   AGZ 2026 – LANDINGPAGE 2.0
   Mobile First | Performance Optimized
   ============================================ */

:root {
  --red: #E10E1E;
  --red-dark: #B80B17;
  --red-light: #FFE6E8;
  --black: #0A0A0A;
  --black-2: #141414;
  --black-3: #1F1F1F;
  --black-soft: #383838;
  --gray-50: #FAFAFA;
  --gray-100: #F4F4F5;
  --gray-200: #E5E5E5;
  --gray-300: #D4D4D4;
  --gray-400: #A1A1AA;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .05);
  --shadow: 0 4px 12px rgba(0, 0, 0, .08);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, .12);
  --shadow-red: 0 8px 28px rgba(225, 14, 30, .35);

  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter Tight', system-ui, -apple-system, sans-serif;

  --radius: 8px;
  --radius-lg: 14px;

  --sticky-h: 50px;
  --topbar-h: 38px;
  --header-h: 72px;

  --container: 1240px;
}

/* ============================================
   RESET & BASE
============================================ */
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  /* padding-top wird per JS gesetzt = exakte Höhe der Sticky Bar */
}

body.sticky-closed {
  padding-top: 0 !important;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: 0;
  background: none;
  cursor: pointer;
  color: inherit;
}

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 32px;
  }
}

/* ============================================
   STICKY BAR
============================================ */
.sticky-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  transition: transform .35s ease;
}

.sticky-bar.is-hidden {
  transform: translateY(-100%);
}

.sticky-bar__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 7px 38px 7px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
}

.sticky-bar__text {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  line-height: 1.25;
  text-align: left;
  flex: 1;
  min-width: 0;
}

.sticky-bar__text > span:last-child {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.sticky-bar__icon {
  display: inline-flex;
  width: 14px;
  height: 14px;
  animation: flicker 1.5s ease-in-out infinite alternate;
  flex-shrink: 0;
}

.sticky-bar__icon svg {
  width: 100%;
  height: 100%;
}

@keyframes flicker {
  0% {
    transform: scale(1) rotate(-2deg);
  }
  100% {
    transform: scale(1.08) rotate(2deg);
  }
}

.sticky-bar__cta {
  background: var(--white);
  color: var(--red);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .04em;
  padding: 7px 12px;
  border-radius: 4px;
  transition: transform .2s ease, box-shadow .2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.sticky-bar__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .25);
}

.sticky-bar__close {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  opacity: .85;
  transition: opacity .2s;
}

.sticky-bar__close:hover {
  opacity: 1;
}

.sticky-bar__close svg {
  width: 16px;
  height: 16px;
}

@media (min-width: 768px) {
  .sticky-bar__text {
    font-size: 14px;
    gap: 10px;
    justify-content: center;
    text-align: center;
    flex: initial;
  }

  .sticky-bar__text > span:last-child {
    -webkit-line-clamp: initial;
    display: inline;
  }

  .sticky-bar__icon {
    width: 18px;
    height: 18px;
  }

  .sticky-bar__cta {
    font-size: 12px;
    padding: 9px 18px;
  }

  .sticky-bar__inner {
    gap: 20px;
    padding: 10px 50px 10px 24px;
  }
}

/* ============================================
   TOP BAR
============================================ */
.topbar {
  background: var(--black);
  color: var(--white);
  display: none;
}

@media (min-width: 1024px) {
  .topbar {
    display: block;
  }
}

.topbar__inner {
  max-width: var(--container);
  margin: 0 auto;
  //padding: 0 32px;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar__contact, .topbar__social {
  display: flex;
  gap: 14px;
}

.topbar a {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: .8;
  transition: opacity .2s, transform .2s;
}

.topbar a:hover {
  opacity: 1;
  transform: translateY(-1px);
  color: var(--red);
}

.topbar svg {
  width: 18px;
  height: 18px;
}

/* ============================================
   HEADER
============================================ */
.header {
  position: relative;
  background: var(--black);
  color: var(--white);
  z-index: 60;
}

.header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 12px 20px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.header__logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.header__logo img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  transition: transform .3s;
}

.header__logo:hover img {
  transform: scale(105%);
}

.header__nav {
  display: none;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

@media (min-width: 1024px) {
  .header__nav {
    display: flex;
  }
}

.header__nav a {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 10px 12px;
  color: var(--white);
  position: relative;
  transition: color .2s;
}

.header__nav a:hover {
  color: var(--red);
}

.header__nav a:not(.header__cta)::after {
  content: '';
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform .3s;
}

.header__nav a:not(.header__cta):hover::after {
  transform: scaleX(1);
}

.header__cta {
  background: var(--red);
  color: var(--white) !important;
  border-radius: 4px;
  padding: 11px 22px !important;
  margin-right: 8px;
  transition: background .2s, transform .2s;
}

.header__cta:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.header__cta::after {
  display: none !important;
}

.header__cart {
  display: flex;
  align-items: center;
}

.header__cart-btn {
  position: relative;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background .2s;
}

.header__cart-btn:hover {
  background: rgba(255, 255, 255, .08);
}

.header__cart-btn svg {
  width: 20px;
  height: 20px;
}

.header__cart-badge {
  position: absolute;
  top: 4px;
  right: 2px;
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 8px;
  margin-left: auto;
}

.header__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: transform .3s, opacity .3s;
}

@media (min-width: 1024px) {
  .header__burger {
    display: none;
  }
}

.header__burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__burger.is-open span:nth-child(2) {
  opacity: 0;
}

.header__burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   MOBILE MENU – fixed under header
   --sb-h und --hd-h werden per JS gesetzt
============================================ */
.mobile-menu {
  position: fixed;
  top: calc(var(--sb-h, var(--sticky-h)) + var(--hd-h, var(--header-h)));
  left: 0;
  right: 0;
  background: var(--black);
  border-top: 1px solid var(--black-3);
  padding: 8px 20px 24px;
  z-index: 150;
  transform: translateY(-120%);
  opacity: 0;
  visibility: hidden;
  transition: transform .35s ease, opacity .25s ease, visibility 0s linear .35s;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-height: calc(100vh - var(--sb-h, var(--sticky-h)) - var(--hd-h, var(--header-h)));
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .4);
}

.mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition: transform .35s ease, opacity .25s ease, visibility 0s;
}

body.sticky-closed .mobile-menu {
  top: var(--hd-h, var(--header-h));
  max-height: calc(100vh - var(--hd-h, var(--header-h)));
}

.mobile-menu a {
  color: var(--white);
  padding: 16px 8px;
  font-weight: 700;
  letter-spacing: .04em;
  border-bottom: 1px solid var(--black-3);
  font-size: 14px;
  transition: color .2s, padding-left .2s;
}

.mobile-menu a:hover, .mobile-menu a:focus {
  color: var(--red);
  padding-left: 16px;
}

.mobile-menu a:last-child {
  border-bottom: 0;
}

@media (min-width: 1024px) {
  .mobile-menu {
    display: none;
  }
}

/* ============================================
   BUTTONS
============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
  border-radius: 4px;
  transition: transform .2s ease, box-shadow .25s ease, background .2s;
  min-height: 48px;
  position: relative;
  overflow: hidden;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn--primary {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}

.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .3), transparent);
  transform: translateX(-100%);
  transition: transform .6s;
}

.btn--primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(225, 14, 30, .45);
}

.btn--primary:hover::before {
  transform: translateX(100%);
}

.btn--outline {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}

.btn--outline:hover {
  background: var(--red);
  color: var(--white);
}

.btn--ghost {
  background: var(--white);
  color: var(--black);
}

.btn--ghost:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--block {
  width: 100%;
}

.btn--lg {
  padding: 16px 28px;
  font-size: 15px;
  min-height: 54px;
}

.btn--xl {
  padding: 20px 38px;
  font-size: 16px;
  min-height: 60px;
}

/* ============================================
   HERO
============================================ */
.hero {
  position: relative;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  padding: 36px 0 56px;
  min-height: 620px;
  display: flex;
  align-items: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, .28) 0%, rgba(10, 10, 10, .4) 60%, rgba(10, 10, 10, .5) 100%),
  linear-gradient(90deg, rgba(10, 10, 10, .46) 0%, rgba(10, 10, 10, .2) 70%, rgba(10, 10, 10, .32) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 1024px) {
  .hero__content {
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    padding: 0 32px;
    align-items: start;
  }

  .hero {
    padding: 60px 0 80px;
    min-height: 660px;
  }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 9vw, 80px);
  line-height: .95;
  letter-spacing: .005em;
  margin-bottom: 16px;
}

.hero__title span {
  display: block;
}

.hero__subtitle {
  font-size: clamp(15px, 2.2vw, 18px);
  font-weight: 500;
  letter-spacing: .02em;
  margin-bottom: 48px;
  max-width: 540px;
  text-transform: uppercase;
}

.hero__bullets {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

@media (min-width: 600px) {
  .hero__bullets {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 22px 32px;
  }
}

.hero__bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__bullet-icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
}

.hero__bullet-icon svg {
  width: 30px;
  height: 30px;
  fill: var(--red);
}

.hero__bullets strong {
  display: block;
  font-weight: 800;
  font-size: 14px;
  line-height: 1.2;
}

.hero__bullets span {
  display: block;
  font-size: 14px;
  font-weight: 800;
}

.hero__trust {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding-top: 24px;
}

@media (min-width: 600px) {
  .hero__trust {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  border-right: 0;
}


@media (min-width: 600px) {
  .trust-item {
    border-right: 1px solid rgba(255, 255, 255, .55);
  }

  .trust-item:last-child {
    border-right: 0;
  }
}

.trust-item__icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;

}

.trust-item__icon--star {
  color: #FFC700;
}

.trust-item__icon--shield {
  color: #22A745;
}

.trust-item__icon--award {
  color: #FFC700;
}

.trust-item__icon svg {
  width: 28px;
  height: 28px;
}

.trust-item strong {
  display: block;
  font-weight: 800;
  font-size: 14px;
  line-height: 1.2;
}

.trust-item small {
  display: block;
  font-size: 12px;
  margin-top: 2px;
}

.hero__right {
  display: none;
}

@media (min-width: 1024px) {
  .hero__right {
    display: flex;
    justify-content: flex-end;
    padding-top: 20px;
  }
}

.hero__date-badge {
  text-align: right;
  font-family: var(--font-display);
  letter-spacing: .04em;
  line-height: 1.2;
}

.hero__date {
  display: block;
  font-size: 24px;
  color: rgba(255, 255, 255, .95);
  font-weight: 700;
}

.hero__location {
  display: block;
  font-size: 18px;
  color: rgba(255, 255, 255, .9);
  margin-top: 6px;
  font-weight: 700;
}

.hero__country {
  display: block;
  font-size: 18px;
  color: rgba(255, 255, 255, .85);
  font-weight: 700;
}

/* ============================================
   SECTION GENERICS
============================================ */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 32px);
  letter-spacing: .02em;
  text-align: center;
  line-height: 1.05;
  margin-bottom: 36px;
  color: var(--black);
}

.section-title--light {
  color: var(--white);
}

.section-title--sm {
  font-size: clamp(24px, 3.8vw, 20px);
  margin-bottom: 24px;
  text-align: left;
}

.text-red {
  color: var(--red);
}

/* ============================================
   VALUE PROPOSITION – Icons OHNE Hintergrund
============================================ */
.value {
  padding: 56px 0 64px;
  background: var(--white);
}

@media (min-width: 768px) {
  .value {
    padding: 80px 0 88px;
  }
}

.value__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 20px;
}

@media (min-width: 768px) {
  .value__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px 28px;
  }
}

@media (min-width: 1024px) {
  .value__grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.value-card {
  text-align: center;
  padding: 12px 8px;
  transition: transform .3s;
}

.value-card:hover {
  transform: translateY(-4px);
}

.value-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  transition: transform .3s;
}

.value-card:hover .value-card__icon {
  transform: scale(1.1);
}

.value-card__icon svg {
  width: 44px;
  height: 44px;
  fill: var(--red);
}

.value-card h3 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  margin-bottom: 6px;
  color: var(--black);
  line-height: 1.25;
}

.value-card p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.5;
}

/* ============================================
   IMPRESSIONS
============================================ */
.impressions {
  padding: 56px 0 64px;
  background: var(--black-soft);
  color: var(--white);
}

@media (min-width: 768px) {
  .impressions {
    padding: 80px 0 88px;
  }
}

.impressions__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .impressions__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}

@media (min-width: 1024px) {
  .impressions__grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.impressions__item {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  cursor: pointer;
}

.impressions__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease, filter .4s;
  filter: saturate(1.1);
}

.impressions__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(225, 14, 30, .3));
  opacity: 0;
  transition: opacity .3s;
}

.impressions__item:hover img {
  transform: scale(1.08);
}

.impressions__item:hover::after {
  opacity: 1;
}

.impressions__cta {
  text-align: center;
}

/* ============================================
   INCLUDED – Icons OHNE Hintergrund
============================================ */
.included {
  padding: 56px 0 64px;
  background: var(--white);
}

@media (min-width: 768px) {
  .included {
    padding: 80px 0 88px;
  }
}

.included__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 20px;
}

@media (min-width: 768px) {
  .included__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px 28px;
  }
}

@media (min-width: 1024px) {
  .included__grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.included-item {
  text-align: center;
  padding: 8px;
}

.included-item__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  transition: transform .3s;
}

.included-item:hover .included-item__icon {
  transform: translateY(-4px) scale(1.05);
}

.included-item__icon svg {
  width: 48px;
  height: 48px;
  fill: var(--red);
}

.included-item h3 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  margin-bottom: 6px;
  line-height: 1.25;
}

.included-item p {
  font-size: 12.5px;
  color: var(--gray-600);
  line-height: 1.5;
}

/* ============================================
   PAKETE – Horizontale Cards mit Foto links
   (Mobile + Desktop gleiches Layout, wie Mockup)
============================================ */
.pakete {
  padding: 56px 0 64px;
  background: var(--gray-50);
}

@media (min-width: 768px) {
  .pakete {
    padding: 80px 0 88px;
  }
}

.pakete__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 920px;
  margin: 0 auto;
}

.paket-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
}

@media (min-width: 600px) {
  .paket-card {
    grid-template-columns: 160px 1fr auto;
  }
}

@media (min-width: 768px) {
  .paket-card {
    grid-template-columns: 200px 1fr auto;
  }
}

.paket-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-300);
}

.paket-card--featured {
  border-color: var(--red);
  box-shadow: 0 10px 28px rgba(225, 14, 30, .12);
}

.paket-card--featured:hover {
  box-shadow: 0 16px 40px rgba(225, 14, 30, .18);
}

.paket-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  background: var(--red);
  color: var(--white);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .06em;
  padding: 6px 12px;
  border-radius: 4px;
  box-shadow: 0 3px 10px rgba(225, 14, 30, .35);
}

@media (min-width: 600px) {
  .paket-card__badge {
    top: 0;
    left: 0;
    border-radius: 0 0 6px 0;
    font-size: 11px;
  }
}

.paket-card__image {
  position: relative;
  overflow: hidden;
  background: var(--gray-100);
  aspect-ratio: 16 / 9; /* Mobile: Bild oben full-width */
}

@media (min-width: 600px) {
  .paket-card__image {
    aspect-ratio: auto; /* Desktop: Bild links, füllt Höhe */
    min-height: 100%;
  }
}

.paket-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.paket-card:hover .paket-card__image img {
  transform: scale(1.05);
}

.paket-card__body {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  min-width: 0;
}

@media (min-width: 600px) {
  .paket-card__body {
    padding: 20px 22px;
  }
}

.paket-card__main {
  flex: 1;
  min-width: 0;
}

.paket-card__body h3 {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: .02em;
  margin-bottom: 8px;
  line-height: 1.15;
  color: var(--black);
}

@media (min-width: 600px) {
  .paket-card__body h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }
}

.paket-card__features {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.paket-card__features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--gray-700);
  line-height: 1.3;
}

@media (min-width: 600px) {
  .paket-card__features li {
    font-size: 13.5px;
    gap: 9px;
  }
}

.paket-card__features svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--gray-500);
}

@media (min-width: 600px) {
  .paket-card__features svg {
    width: 16px;
    height: 16px;
  }
}

.paket-card__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  padding: 16px 18px;
  border-top: 1px solid var(--gray-200);
  grid-column: 1 / -1;
}

@media (min-width: 600px) {
  .paket-card__cta {
    border-top: 0;
    border-left: 1px solid var(--gray-200);
    grid-column: auto;
    padding: 20px 22px;
    min-width: 180px;
  }
}

.paket-card__price {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: flex-end;
  gap: 6px;
  line-height: 1.1;
}

.paket-card__price-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--gray-500);
}

.paket-card__price-amount {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  color: var(--black);
  margin: 0;
}

@media (min-width: 600px) {
  .paket-card__price-amount {
    font-size: 32px;
  }
}

.paket-card--featured .paket-card__price-amount {
  color: var(--red);
}

.paket-card__price-per {
  font-size: 10.5px;
  color: var(--gray-500);
  letter-spacing: .04em;
  white-space: nowrap;
}

.paket-card__cta .btn {
  width: 100%;
  padding: 11px 18px;
  font-size: 12.5px;
  min-height: 40px;
  letter-spacing: .05em;
}

@media (min-width: 600px) {
  .paket-card__cta .btn {
    width: auto;
    min-width: 140px;
  }
}

/* ---- Zeitraum-Auswahl (erscheint nach Klick auf "JETZT BUCHEN") ---- */
.paket-card__period {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
  animation: paket-period-in .3s ease;
}
.paket-card__period[hidden],
.paket-card__buy[hidden] {
  display: none !important;
}
@keyframes paket-period-in {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.paket-card__period-label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--gray-700);
}
.paket-card__period-select {
  width: 100%;
  padding: 10px 30px 10px 12px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  background: var(--white);
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23404040' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px 16px;
  font: inherit;
  font-size: 13.5px;
  color: var(--black);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color .2s, box-shadow .2s;
}
.paket-card__period-select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(225, 14, 30, .15);
}
.paket-card__continue.is-disabled,
.paket-card__continue[aria-disabled="true"] {
  opacity: .5;
  cursor: not-allowed;
  pointer-events: none;
}
@media (min-width: 600px) {
  .paket-card__cta .paket-card__period .btn {
    width: 100%;
    min-width: 0;
  }
}

/* ============================================
   CONVERSION BOX
============================================ */
.conversion-box {
  margin-top: 48px;
  background: var(--red-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 768px) {
  .conversion-box {
    grid-template-columns: repeat(3, 1fr);
    padding: 36px 32px;
    gap: 100px;
  }
}

.conversion-box__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.conversion-box__icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}

.conversion-box__icon svg {
  width: 36px;
  height: 36px;
  fill: var(--red);
}

.conversion-box__item h4 {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .03em;
  margin-bottom: 4px;
  color: var(--red);
}

.conversion-box__item p {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.45;
}

/* ---- Ticket Only ---- */
.pakete__ticket-only {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 14px;
  font-size: 14px;
  color: var(--gray-600);
  text-align: center;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.pakete__ticket-only-label {
  font-weight: 500;
}
.pakete__ticket-only-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font-weight: 700;
  border-bottom: 1px solid transparent;
  transition: border-color .2s, color .2s;
}
.pakete__ticket-only-link:hover {
  color: var(--red-dark);
  border-bottom-color: currentColor;
}
.pakete__ticket-only-link svg {
  width: 14px;
  height: 14px;
}

/* Period-Auswahl im Ticket-Only-Kontext: max so breit wie die Paket-Boxen (.pakete__list max-width 920px) */
.pakete__ticket-only .paket-card__period {
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  text-align: left;
}

/* ============================================
   COUNTDOWN
============================================ */
.countdown {
  padding: 56px 0 64px;
  background: var(--black-soft);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .countdown {
    padding: 72px 0 80px;
  }
}

.countdown::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(225, 14, 30, .25), transparent 70%);
  filter: blur(40px);
  animation: floatA 8s ease-in-out infinite;
}

.countdown::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(225, 14, 30, .2), transparent 70%);
  filter: blur(40px);
  animation: floatB 10s ease-in-out infinite;
}

@keyframes floatA {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(40px, 20px);
  }
}

@keyframes floatB {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-40px, -20px);
  }
}

.countdown__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

@media (min-width: 900px) {
  .countdown__inner {
    flex-direction: row;
    justify-content: center;
    gap: 48px;
  }
}

.countdown__timer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  max-width: 100%;
}

@media (min-width: 768px) {
  .countdown__timer {
    gap: 14px;
  }
}

.countdown__unit {
  background: var(--red);
  border-radius: var(--radius);
  padding: 14px 6px;
  min-width: 72px;
  text-align: center;
  transition: transform .3s;
  box-shadow: 0 8px 24px rgba(225, 14, 30, .25);
}

.countdown__unit:hover {
  transform: translateY(-3px);
}

@media (min-width: 768px) {
  .countdown__unit {
    padding: 18px 12px;
    min-width: 92px;
  }
}

.countdown__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 48px);
  line-height: 1;
  color: var(--white);
}

.countdown__label {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .85);
}

.countdown__social-proof {
  margin-top: 32px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 14px;
  flex-wrap: wrap;
  text-align: center;
}

.avatars {
  display: flex;
}

.avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--black);
  background-color: var(--gray-700);
  background-size: cover;
  background-position: center;
  margin-left: -10px;
}

.avatar:first-child {
  margin-left: 0;
}

/* ============================================
   FAQ + REVIEWS
============================================ */
.faq-section,
.reviews-section {
  padding: 56px 0 64px;
  background: var(--white);
}

@media (min-width: 768px) {
  .faq-section,
  .reviews-section {
    padding: 80px 0 88px;
  }
}

.reviews-section {
  background: var(--gray-50);
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 8px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 600;
  font-size: 15px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item__toggle {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--gray-300);
  border-radius: 50%;
  font-size: 16px;
  font-weight: 400;
  color: var(--gray-700);
  flex-shrink: 0;
  transition: transform .3s, background .3s, color .3s, border-color .3s;
}

.faq-item[open] .faq-item__toggle {
  transform: rotate(45deg);
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.faq-item p {
  padding: 0 4px 16px;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  animation: slideDown .35s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reviews__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

@media (min-width: 900px) {
  .reviews__list  {
    flex-direction: row;
  }
}

.review {
  border: 1px solid var(--gray-200);
  //background: var(--gray-50);
  border-radius: var(--radius);
  padding: 18px 18px 16px;
  transition: transform .3s, box-shadow .3s;
}

.review:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.review__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.review__header img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.review__stars {
  display: flex;
  gap: 2px;
  color: #FFB400;
}

.review__stars svg {
  width: 14px;
  height: 14px;
}

.review p {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.5;
  margin-bottom: 8px;
  font-style: italic;
}

.review__author {
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
}

/* ============================================
   FOOTER TRUST
============================================ */
.footer-trust {
  padding: 36px 0;
  background: var(--black-soft);
  color: var(--white);
}

.footer-trust__grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  //display: grid;
  //grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}

@media (min-width: 768px) {
  .footer-trust__grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 28px;
  }
}

.footer-trust__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  text-align: left;
  width: 100%;
}

@media (min-width: 768px) {
  .footer-trust__item {
    width: auto;
  }
}

.footer-trust__icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-trust__icon svg {
  width: 28px;
  height: 28px;
}

.footer-trust__item h4 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1.3;
}

.footer-trust__item p {
  font-size: 13px;
  color: rgba(255, 255, 255, .7);
}

/* ============================================
   FINAL CTA
============================================ */
.final-cta {
  padding: 64px 0;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, .1), transparent 40%),
  radial-gradient(circle at 80% 70%, rgba(255, 255, 255, .08), transparent 40%);
}

.final-cta .container {
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 36px);
  letter-spacing: .02em;
  margin-bottom: 28px;
}

.final-cta .text-red {
  color: var(--white);
}

.final-cta .btn--primary {
  background: var(--black);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .3);
}

.final-cta .btn--primary:hover {
  background: #000;
  transform: translateY(-3px);
}

/* ============================================
   FOOTER
============================================ */
.footer {
  padding: 24px 0;
  background: var(--black-2);
  color: rgba(255, 255, 255, .6);
  text-align: center;
  font-size: 14px;
}

/* ============================================
   ANIMATIONS
============================================ */
.reveal,
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible,
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .reveal, .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}

a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 2px;
}

@media print {
  .sticky-bar, .topbar, .header, .mobile-menu, .countdown, .final-cta {
    display: none;
  }
}

.cc-window.cc-banner {
  text-align: center;
  background: white !important;
  color: black !important;
}

.cc-window.cc-banner .cc-btn.cc-dismiss {
  color: white;
  padding: 12px 24px;
  background: var(--red);
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

@media screen and (max-width: 414px) and (orientation: portrait),
screen and (max-width: 736px) and (orientation: landscape) {
  .cc-window.cc-banner .cc-compliance {
    padding: 8px 16px 16px;
  }

  .cc-window.cc-banner .cc-btn.cc-dismiss {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
}
