/* ==========================================================================
   Sportpark Johannesplatz – Padel Tennis Erfurt
   Pure HTML/CSS/JS Rebuild
   ========================================================================== */

/* Design Tokens */
:root {
  --background: #ffffff;
  --foreground: #3d3d3d;
  --card: #ffffff;
  --muted: #f2f4f7;
  --muted-foreground: #737373;
  --border: #e3e7ec;
  --primary: #f0a52a;
  --primary-dark: #d08c15;
  --primary-fg: #ffffff;
  --secondary: #7ba2c0;
  --accent: #b3d151;
  --dark: #5c5c5c;
  --dark-deep: #1f1f1f;

  --radius: 0.75rem;
  --radius-lg: 1rem;
  --radius-2xl: 1rem;

  --shadow-card: 0 4px 30px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

  --gradient-primary: linear-gradient(135deg, hsl(36, 90%, 57%), hsl(36, 90%, 47%));
  --gradient-dark: linear-gradient(135deg, hsl(0, 0%, 20%), hsl(0, 0%, 12%));

  --container: 1200px;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  color: var(--foreground);
  background: var(--background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* Layout Helpers */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.section {
  padding: 5rem 0;
}
@media (min-width: 768px) {
  .section { padding: 7rem 0; }
}

.section--muted { background: var(--muted); }
.section--dark {
  background: var(--gradient-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.15;
  color: var(--foreground);
}

h1 {
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.875rem, 4vw, 3rem);
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

h3 { font-size: 1.375rem; }
h4 { font-size: 1rem; font-weight: 700; }

.section-title {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-title h2 { margin-bottom: 1rem; }
.section-title p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 640px;
  margin: 0 auto;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--primary-fg);
  box-shadow: 0 10px 25px -10px rgba(240, 165, 42, 0.5);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 35px -15px rgba(240, 165, 42, 0.6);
}

.btn-lg {
  padding: 1.1rem 2.25rem;
  font-size: 1.125rem;
}

.btn-dark {
  background: var(--dark-deep);
  color: #fff;
}
.btn-dark:hover {
  background: #000;
  transform: translateY(-2px);
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
  padding: 1rem 0;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 2.5rem;
  width: auto;
}
@media (min-width: 768px) {
  .nav-logo img { height: 3rem; }
}
.nav-links {
  display: none;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .nav-links { display: flex; }
}
.nav-links a {
  font-weight: 500;
  color: #fff;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.navbar.scrolled .nav-links a { color: var(--foreground); }
.nav-links a:hover { color: var(--primary); }

.nav-cta { display: none; }
@media (min-width: 1024px) { .nav-cta { display: inline-flex; } }

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  color: #fff;
  border-radius: 0.5rem;
}
.navbar.scrolled .nav-toggle { color: var(--foreground); }
@media (min-width: 1024px) { .nav-toggle { display: none; } }

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  flex-direction: column;
  gap: 1rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 0.5rem 0;
  font-weight: 500;
  color: var(--foreground);
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-of-type { border-bottom: none; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.6), rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.75));
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 1.5rem;
}
.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.hero h1 { color: #fff; margin-bottom: 1.25rem; }
.hero p {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  max-width: 720px;
  margin: 0 auto 2.25rem;
  color: rgba(255, 255, 255, 0.9);
}
.hero-helper {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  animation: bounce 2s ease-in-out infinite;
  z-index: 2;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

/* ==========================================================================
   GRID + CARDS (shared)
   ========================================================================== */
.grid {
  display: grid;
  gap: 1.5rem;
}
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}
@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--card);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  height: 100%;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.card-center { text-align: center; }

.icon-box {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.875rem;
  background: var(--gradient-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.icon-box-soft {
  background: rgba(123, 162, 192, 0.15);
  color: var(--secondary);
}
.icon-box svg, .icon-box-soft svg { width: 1.75rem; height: 1.75rem; }

.card h3 { margin-bottom: 0.5rem; font-size: 1.25rem; }
.card p { color: var(--muted-foreground); font-size: 0.95rem; }

/* ==========================================================================
   OPENING SECTION
   ========================================================================== */
.opening-card {
  position: relative;
  text-align: center;
}
.opening-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.opening-card .icon-box { margin: 0 auto 1.25rem; }
.opening-date {
  color: var(--primary);
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

/* ==========================================================================
   VIDEO SECTION
   ========================================================================== */
.team-image {
  max-width: 900px;
  margin: 0 auto 3rem;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.team-image img { width: 100%; height: auto; }
.team-caption {
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted-foreground);
  margin-top: 1rem;
  font-style: italic;
}

.video-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-wrapper--vertical {
  aspect-ratio: 9 / 16;
  max-width: 360px;
}

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}
.gallery-item {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  cursor: pointer;
}
@media (min-width: 768px) {
  .gallery-item { aspect-ratio: 3 / 4; }
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:hover::after { background: rgba(0, 0, 0, 0.2); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 1rem;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 95vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 1rem;
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255, 255, 255, 0.2); }

/* ==========================================================================
   PRICING
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1050px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}
.pricing-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.pricing-card.featured {
  background: var(--gradient-dark);
  color: #fff;
  border: 2px solid var(--primary);
}
.pricing-card.featured h3,
.pricing-card.featured .pricing-sub { color: #fff; }
.pricing-card .icon-box { margin-bottom: 1rem; }
.pricing-card.featured .icon-box { background: rgba(255, 255, 255, 0.1); }
.pricing-card h3 { font-size: 1.5rem; margin-bottom: 0.25rem; }
.pricing-sub {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}
.featured-badge {
  position: absolute;
  top: -0.85rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0.85rem;
  font-size: 0.95rem;
  border-radius: 0.5rem;
}
.price-row + .price-row { margin-top: 0.25rem; }
.price-row span:last-child { font-weight: 700; color: var(--primary); }
.pricing-card.featured .price-row span:last-child { color: var(--primary); }
.price-row.highlight { background: rgba(240, 165, 42, 0.1); }
.pricing-card.featured .price-row.highlight { background: rgba(240, 165, 42, 0.2); }

.equipment-card {
  max-width: 520px;
  margin: 3rem auto 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  text-align: center;
}
.equipment-card h3 { margin-bottom: 1.25rem; }
.equipment-card .price-row {
  text-align: left;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  padding: 0.85rem 0;
}
.equipment-card .price-row:last-child { border-bottom: none; }

/* ==========================================================================
   BOOKING (glass cards)
   ========================================================================== */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}
.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}
.glass-card .icon-box { margin: 0 auto 1.25rem; }

/* ==========================================================================
   PADEL SOCCER
   ========================================================================== */
.padel-soccer-intro {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
  font-size: 1.05rem;
  color: var(--muted-foreground);
}
.padel-soccer-cta {
  text-align: center;
  margin-top: 3rem;
}
.padel-soccer-cta p {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.final-cta {
  text-align: center;
  position: relative;
  z-index: 1;
}
.final-cta h2 { color: #fff; margin-bottom: 1.25rem; }
.final-cta p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}
.final-cta-decor {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}
.final-cta-decor--1 {
  top: -8rem; right: -8rem;
  width: 24rem; height: 24rem;
  background: rgba(240, 165, 42, 0.15);
}
.final-cta-decor--2 {
  bottom: -8rem; left: -8rem;
  width: 20rem; height: 20rem;
  background: rgba(123, 162, 192, 0.15);
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.15rem 1.35rem;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  color: var(--foreground);
  transition: background 0.2s;
}
.faq-question:hover { background: rgba(0, 0, 0, 0.02); }
.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 0 1.35rem 1.15rem;
  color: var(--muted-foreground);
  line-height: 1.65;
  font-size: 0.95rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: #1f1f1f;
  color: rgba(255, 255, 255, 0.85);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}
.footer-logo img { height: 3rem; margin-bottom: 1rem; }
.footer p { font-size: 0.9rem; color: rgba(255, 255, 255, 0.6); max-width: 300px; }
.footer h4 { color: #fff; margin-bottom: 1.25rem; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 0.08em; }
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--primary); }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}
.footer-contact div {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.footer-contact svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--primary);
}
.footer-contact a:hover { color: var(--primary); }
.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.footer-socials a {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.footer-socials a:hover {
  background: var(--primary);
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; }
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a:hover { color: var(--primary); }

/* ==========================================================================
   SCROLL ANIMATIONS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   HANSEFIT SECTION
   ========================================================================== */
.hansefit-section {
  position: relative;
  background: linear-gradient(135deg, #1a2332 0%, #0f1620 100%);
  color: #fff;
  overflow: hidden;
}
.hansefit-decor {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.hansefit-decor--1 {
  top: -10rem; right: -8rem;
  width: 28rem; height: 28rem;
  background: rgba(240, 165, 42, 0.18);
}
.hansefit-decor--2 {
  bottom: -10rem; left: -8rem;
  width: 24rem; height: 24rem;
  background: rgba(123, 162, 192, 0.15);
}
.hansefit-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 960px) {
  .hansefit-inner { grid-template-columns: 1.3fr 1fr; gap: 4rem; }
}
.hansefit-eyebrow {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(240, 165, 42, 0.15);
  border: 1px solid rgba(240, 165, 42, 0.4);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
}
.hansefit-content h2 {
  color: #fff;
  margin-bottom: 1.25rem;
}
.hansefit-lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1.75rem;
  max-width: 600px;
}
.hansefit-checks {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.hansefit-checks li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.98rem;
}
.hansefit-checks .check {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
}
.hansefit-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}
.hansefit-cta-hint {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}
.hansefit-visual {
  display: flex;
  justify-content: center;
}
.hansefit-card {
  position: relative;
  width: 100%;
  max-width: 360px;
  padding: 2.5rem 2rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 1.5rem;
  text-align: center;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}
.hansefit-card-badge {
  position: absolute;
  top: -0.85rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  letter-spacing: 0.08em;
}
.hansefit-card-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: var(--gradient-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.hansefit-card-icon svg { width: 2.25rem; height: 2.25rem; }
.hansefit-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
}
.hansefit-card-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.hansefit-card-foot {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  font-style: italic;
}

/* ==========================================================================
   MODAL
   ========================================================================== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 1rem;
  overflow-y: auto;
}
.modal.open { display: flex; }
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 22, 32, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.modal-dialog {
  position: relative;
  background: #fff;
  width: 100%;
  max-width: 760px;
  border-radius: 1.5rem;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
  margin: auto 0;
  animation: slideUp 0.4s ease;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  background: rgba(15, 22, 32, 0.85);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.modal-close:hover {
  background: var(--primary);
  transform: rotate(90deg);
}
.modal-content {
  padding: 2.5rem;
}
@media (max-width: 640px) {
  .modal-content { padding: 1.75rem 1.25rem; }
  .modal-dialog { border-radius: 1rem; }
}
.modal-header {
  margin-bottom: 1.75rem;
}
.modal-header .hansefit-eyebrow {
  background: rgba(240, 165, 42, 0.1);
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}
.modal-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--foreground);
  margin: 0;
}
.modal-video {
  margin-bottom: 2rem;
  border-radius: 1rem;
  overflow: hidden;
  background: #000;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}
.modal-video video {
  width: 100%;
  height: auto;
  display: block;
}
.modal-video-caption {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted-foreground);
  margin-top: 0.75rem;
  font-style: italic;
}
.modal-text {
  color: var(--foreground);
  line-height: 1.7;
  font-size: 1rem;
}
.modal-text p { margin-bottom: 1rem; }
.modal-text h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--foreground);
  margin: 2rem 0 0.75rem;
}
.modal-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.modal-list li {
  padding-left: 0.25rem;
  font-size: 0.98rem;
}
.modal-list--checks li { font-weight: 600; }

.modal-highlight {
  background: linear-gradient(135deg, rgba(240, 165, 42, 0.1), rgba(240, 165, 42, 0.05));
  border-left: 4px solid var(--primary);
  padding: 1.25rem 1.5rem;
  border-radius: 0.75rem;
  margin: 1.5rem 0;
}
.modal-highlight p { margin: 0; font-size: 1.05rem; font-weight: 600; }

.modal-note {
  background: rgba(123, 162, 192, 0.08);
  border: 1px solid rgba(123, 162, 192, 0.25);
  padding: 1.25rem 1.5rem;
  border-radius: 0.75rem;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}
.modal-note ol { margin: 0.75rem 0 0 1.25rem; padding: 0; }
.modal-note ol li { margin-bottom: 0.4rem; }

.modal-steps {
  list-style: none;
  counter-reset: steps;
  padding: 0;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.modal-steps li {
  counter-increment: steps;
  padding: 1.25rem 1.5rem 1.25rem 4rem;
  background: var(--muted);
  border-radius: 0.85rem;
  position: relative;
}
.modal-steps li::before {
  content: counter(steps);
  position: absolute;
  left: 1.25rem;
  top: 1.25rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
}
.modal-steps strong { display: block; margin-bottom: 0.35rem; font-size: 1.05rem; }
.modal-steps p { margin: 0; font-size: 0.93rem; color: var(--muted-foreground); }
.modal-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
}
.modal-link:hover { text-decoration: underline; }

.modal-example {
  background: #f8fafc;
  border: 1px dashed var(--border);
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  margin: 1rem 0;
  font-size: 0.95rem;
}

.modal-warning {
  background: linear-gradient(135deg, #fff3e0, #ffe8cc);
  border: 2px solid var(--primary);
  padding: 1.5rem;
  border-radius: 1rem;
  margin: 2rem 0;
  font-size: 0.95rem;
}
.modal-warning strong { color: var(--primary-dark); display: block; margin-bottom: 0.5rem; font-size: 1.05rem; }
.modal-warning p { margin: 0.5rem 0; }

.modal-closing {
  text-align: center;
  font-size: 1.1rem;
  margin: 2rem 0 1.5rem;
  color: var(--foreground);
}
.modal-cta {
  text-align: center;
  margin-top: 1.5rem;
}

/* Body lock when modal open */
body.modal-open { overflow: hidden; }

/* ==========================================================================
   LEGAL PAGES
   ========================================================================== */
.legal-page {
  padding-top: 8rem;
  padding-bottom: 5rem;
  min-height: 100vh;
}
.legal-page h1 { margin-bottom: 2rem; }
.legal-page h2 { font-size: 1.5rem; margin-top: 2.5rem; margin-bottom: 0.75rem; }
.legal-page p, .legal-page li {
  font-size: 1rem;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}
.legal-page ul { padding-left: 1.5rem; list-style: disc; margin-bottom: 1rem; }
.legal-page a { color: var(--primary); }
.legal-page a:hover { text-decoration: underline; }
.legal-lead {
  font-size: 1.125rem;
  color: var(--muted-foreground, #555);
  margin-top: -1rem;
  margin-bottom: 1.5rem;
}
.legal-download {
  margin: 1.5rem 0 2.5rem;
}
.legal-download .btn { display: inline-flex; align-items: center; }
.legal-table-wrap {
  margin: 1rem 0 1.5rem;
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.08);
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  background: #fff;
}
.legal-table thead {
  background: linear-gradient(135deg, var(--primary, #ff7a00) 0%, var(--primary-dark, #e85d00) 100%);
  color: #fff;
}
.legal-table th,
.legal-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.legal-table tbody tr:last-child td { border-bottom: none; }
.legal-table tbody tr:nth-child(even) { background: rgba(0,0,0,0.025); }
.legal-table th { font-weight: 700; }
.legal-footer-note {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.08);
  font-size: 0.9rem;
  color: var(--muted-foreground, #777);
  text-align: center;
}

/* ==========================================================================
   STORNIERUNG / WETTERHINWEIS
   ========================================================================== */
.cancellation-section {
  background: linear-gradient(180deg, #fff5f5 0%, #ffe6e6 100%);
  position: relative;
  overflow: hidden;
}
.cancellation-decor {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
  opacity: 0.55;
}
.cancellation-decor--1 {
  top: -120px;
  left: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.45), transparent 70%);
}
.cancellation-decor--2 {
  bottom: -150px;
  right: -100px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.30), transparent 70%);
}

.cancellation-card {
  position: relative;
  background: #ffffff;
  border: 2px solid #dc2626;
  border-radius: 1.25rem;
  padding: 2rem 1.5rem;
  max-width: 920px;
  margin: 0 auto;
  box-shadow: 0 25px 60px rgba(220, 38, 38, 0.22);
  z-index: 1;
}
@media (min-width: 768px) {
  .cancellation-card { padding: 3rem 3.25rem; }
}

.cancellation-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.30);
}
.cancellation-eyebrow svg { width: 1rem; height: 1rem; }

.cancellation-card h2 {
  color: #1f1f1f;
  margin-bottom: 0.85rem;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
}
.cancellation-accent {
  background: linear-gradient(135deg, #ef4444, #b91c1c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cancellation-headline {
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  color: var(--foreground);
  margin-bottom: 1.75rem;
  line-height: 1.55;
  font-weight: 500;
}

.cancellation-rules {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
@media (min-width: 768px) {
  .cancellation-rules {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}

.cancellation-rule {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.4rem 1.25rem;
  border-radius: 0.95rem;
  border: 2px solid var(--border);
  background: #fafafa;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cancellation-rule:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}
.cancellation-rule--ok {
  border-color: #16a34a;
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
}
.cancellation-rule--no {
  border-color: #dc2626;
  background: linear-gradient(135deg, #fef2f2, #fee2e2);
}

.cancellation-rule-icon {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}
.cancellation-rule--ok .cancellation-rule-icon {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}
.cancellation-rule--no .cancellation-rule-icon {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}
.cancellation-rule-icon svg { width: 1.5rem; height: 1.5rem; }

.cancellation-rule-text strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--foreground);
  line-height: 1.3;
}
.cancellation-rule-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.65rem;
}
.cancellation-rule-tag--ok {
  background: #16a34a;
  color: #fff;
}
.cancellation-rule-tag--no {
  background: #dc2626;
  color: #fff;
}
.cancellation-rule-text p {
  margin: 0;
  font-size: 0.95rem;
  color: #525252;
  line-height: 1.55;
}

.cancellation-tip {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.06), rgba(220, 38, 38, 0.10));
  border-left: 4px solid #dc2626;
  padding: 1.25rem 1.5rem;
  border-radius: 0.85rem;
  font-size: 0.98rem;
  color: var(--foreground);
  line-height: 1.55;
}
.cancellation-tip strong { color: #b91c1c; }
.cancellation-tip-icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #dc2626;
  color: #dc2626;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cancellation-tip-icon svg { width: 1.15rem; height: 1.15rem; }

/* ==========================================================================
   STICKY APP BUTTON (mobile only)
   ========================================================================== */
.sticky-app-btn {
  display: none;
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 90;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.85rem 1.5rem;
  background: #000;
  color: #fff;
  border-radius: 0.875rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.sticky-app-btn:active {
  transform: scale(0.97);
}
.sticky-app-btn.visible {
  display: flex;
}
@media (min-width: 769px) {
  .sticky-app-btn { display: none !important; }
}
.sticky-app-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  fill: #fff;
  flex-shrink: 0;
}
.sticky-app-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.sticky-app-small {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0.85;
}
.sticky-app-store {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
