/* ============================================
   MUNICH EVENT PLANNER - Main Stylesheet
   Brand Colors: Gelb #FCC900 | Gold #F8B414 | Orange #F19431 | Rot-Orange #E84F2F | Rot #E73D2C
   Fonts: Anton (Headlines) | Titillium Web (Body)
   Theme: Light / White
   ============================================ */


/* ---- CSS Variables ---- */
:root {
  --blue: #c7321f;
  --green: #f19431;
  --neon: #fcc900;
  --light: #fede15;
  --akzent: #c7451a;
  --dark: #12100e;
  --dark-2: #1c1917;
  --dark-3: #292524;
  --white: #ffffff;
  --gray: #7a7067;
  --gray-light: #e9e2d6;
  --bg: #ffffff;
  --bg-alt: #fdf8ef;
  --bg-card: #ffffff;
  --text: #231f1c;
  --text-muted: #6b6156;
  --border: rgba(0, 0, 0, 0.08);
  --gradient: linear-gradient(135deg, #fcc900 0%, #f8b414 30%, #f19431 60%, #e84f2f 85%, #e73d2c 100%);
  --gradient-text: linear-gradient(90deg, #c7321f, #d8481f, #e1571f, #e8731a);
  --shadow: 0 20px 60px rgba(241, 148, 49, 0.22);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-card-hover: 0 12px 40px rgba(0, 0, 0, 0.1);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Akzent in dunklen Abschnitten ----
   Auf hellem Grund ist das Logogelb als Schrift unlesbar, auf dunklem Grund
   ist das dunkle Orange zu schwach. Deshalb wird --akzent (und der
   Verlaufstext) in den dunklen Abschnitten auf die hellen Logotoene gesetzt. */
.hero, .cta-section, .footer, .hs-dark, .hs-vs, .hs-ticker, .hs-edcard,
.hs-leaderboard, .theme-dark {
  --akzent: #fcc900;
  --gradient-text: linear-gradient(90deg, #fcc900, #f8b414, #f19431, #e84f2f);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Titillium Web', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: 'Anton', sans-serif;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: var(--text);
}

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

/* ---- Layout ---- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-sm {
  padding: 60px 0;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Titillium Web', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient);
  color: #12100e;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(252, 201, 0, 0.35);
}

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

.btn-outline:hover {
  border-color: var(--green);
  color: var(--akzent);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 48px;
  font-size: 1.1rem;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  height: 56px;
  width: auto;
}

/* Logo switching: white over dark hero, dark on light scrolled bg */
.navbar-logo-dark {
  display: none;
}

.navbar.scrolled .navbar-logo-white {
  display: none;
}

.navbar.scrolled .navbar-logo-dark {
  display: block;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.navbar-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  transition: var(--transition);
}

.navbar.scrolled .navbar-nav a {
  color: var(--text-muted);
}

.navbar-nav a:hover {
  color: var(--akzent);
}

.navbar-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.navbar .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}

.navbar .btn-outline:hover {
  color: var(--neon);
  border-color: var(--neon);
}

.navbar.scrolled .btn-outline {
  color: var(--text);
  border-color: var(--border);
}

.navbar.scrolled .btn-outline:hover {
  color: var(--akzent);
  border-color: var(--green);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.navbar.scrolled .nav-toggle span {
  background: var(--text);
}

/* ============================================
   HERO SECTION (stays dark)
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--dark);
  color: var(--white);
}

.hero h1, .hero h2, .hero h3, .hero h4 {
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(199, 50, 31, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(252, 201, 0, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(241, 148, 49, 0.15) 0%, transparent 50%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(252, 201, 0, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(252, 201, 0, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding-top: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(252, 201, 0, 0.1);
  border: 1px solid rgba(252, 201, 0, 0.3);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--neon);
  margin-bottom: 32px;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--neon);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  margin-bottom: 24px;
  line-height: 1.0;
}

.hero p {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}

.hero .btn-outline:hover {
  border-color: var(--neon);
  color: var(--neon);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat-number {
  font-family: 'Anton', sans-serif;
  font-size: 2.5rem;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

/* Floating elements */
.hero-float {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  z-index: 1;
}

.hero-float-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 24px;
  backdrop-filter: blur(10px);
  width: 160px;
  text-align: center;
  animation: float 3s ease-in-out infinite;
}

.hero-float-card:nth-child(2) { animation-delay: 0.5s; }
.hero-float-card:nth-child(3) { animation-delay: 1s; }
.hero-float-card:nth-child(4) { animation-delay: 1.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-float-icon {
  font-size: 2rem;
  margin-bottom: 8px;
  color: var(--neon);
}

.hero-float-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.75;
}

.hero-float-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar-section {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.trust-bar {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

.trust-bar-icon {
  color: var(--akzent);
  display: flex;
  align-items: center;
}

.trust-bar-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

/* ============================================
   LEISTUNGEN (Services)
   ============================================ */
.leistungen-section {
  background: var(--bg);
}

.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.leistung-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.leistung-card:hover {
  border-color: rgba(241, 148, 49, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.leistung-card-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(199, 50, 31, 0.08), rgba(252, 201, 0, 0.08));
  border: 1px solid rgba(241, 148, 49, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--akzent);
  margin-bottom: 20px;
}

.leistung-card-icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.75;
}

.leistung-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.leistung-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  flex-grow: 1;
}

.leistung-link {
  display: inline-block;
  margin-top: 16px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--akzent);
  transition: var(--transition);
}

.leistung-link:hover {
  color: var(--blue);
}

@media (max-width: 1024px) {
  .leistungen-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar { gap: 24px; }
}

@media (max-width: 768px) {
  .leistungen-grid { grid-template-columns: 1fr; }
  .trust-bar { flex-direction: column; align-items: center; gap: 16px; }
}

/* ============================================
   HOW IT WORKS (Light)
   ============================================ */
.how-it-works {
  background: var(--bg-alt);
}

.section-label {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--akzent);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
  position: relative;
}

.steps-grid::after {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.67% + 20px);
  right: calc(16.67% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--neon));
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Anton', sans-serif;
  font-size: 1.75rem;
  color: #12100e;
  margin: 0 auto 24px;
  position: relative;
}

.step-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ============================================
   PARTY PACKAGES GRID (Light)
   ============================================ */
.packages {
  background: var(--bg);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 64px;
}

.party-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  box-shadow: var(--shadow-card);
}

.party-card:hover {
  transform: translateY(-6px);
  border-color: rgba(241, 148, 49, 0.3);
  box-shadow: var(--shadow-card-hover);
}

.party-card-visual {
  height: 200px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.party-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: transform 0.5s ease;
}

.party-card:hover .party-card-img {
  transform: scale(1.07);
}

.party-card-emoji {
  font-size: 5rem;
  z-index: 2;
  position: relative;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.3));
}

.party-card-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.65;
}

/* Hero image */
.party-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.party-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(252, 201, 0, 0.92);
  color: #12100e;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  z-index: 3;
}

.party-card-body {
  padding: 24px;
}

.party-card-title {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.party-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}

.party-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.party-card-tag {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.party-card-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.party-card-btn {
  background: var(--gradient);
  color: #12100e;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-family: 'Titillium Web', sans-serif;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
  width: 100%;
  text-align: center;
  display: block;
}

.party-card-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(252, 201, 0, 0.3);
}

/* Party Card Color Themes */
.theme-summer .party-card-overlay { background: linear-gradient(135deg, #f97316, #eab308); }
.theme-caribbean .party-card-overlay { background: linear-gradient(135deg, #06b6d4, #0ea5e9); }
.theme-hawaii .party-card-overlay { background: linear-gradient(135deg, #f43f5e, #ec4899); }
.theme-oktoberfest .party-card-overlay { background: linear-gradient(135deg, #0369a1, #1d4ed8); }
.theme-disco .party-card-overlay { background: linear-gradient(135deg, #7c3aed, #a855f7); }
.theme-casino .party-card-overlay { background: linear-gradient(135deg, #065f46, #047857); }
.theme-hollywood .party-card-overlay { background: linear-gradient(135deg, #78350f, #92400e); }
.theme-apres-ski .party-card-overlay { background: linear-gradient(135deg, #0c4a6e, #0369a1); }
.theme-ibiza .party-card-overlay { background: linear-gradient(135deg, #be185d, #db2777); }
.theme-jungle .party-card-overlay { background: linear-gradient(135deg, #14532d, #166534); }
.theme-blackwhite .party-card-overlay { background: linear-gradient(135deg, #1c1917, #292524); }
.theme-tropical .party-card-overlay { background: linear-gradient(135deg, #065f46, #0891b2); }

/* ============================================
   USP SECTION (Light)
   ============================================ */
.usp-section {
  background: var(--bg-alt);
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.usp-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.usp-card:hover {
  border-color: rgba(241, 148, 49, 0.3);
  box-shadow: var(--shadow-card-hover);
}

.usp-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(199, 50, 31, 0.1), rgba(252, 201, 0, 0.1));
  border: 1px solid rgba(241, 148, 49, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
  color: var(--akzent);
}

.usp-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.75;
}

.usp-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.usp-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================
   TESTIMONIALS (Light)
   ============================================ */
.testimonials {
  background: var(--bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.testimonial-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Anton', sans-serif;
  font-size: 1rem;
  color: #12100e;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.testimonial-company {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================
   CTA SECTION (stays dark for contrast)
   ============================================ */
.cta-section {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section h2, .cta-section h3, .cta-section h4 {
  color: var(--white);
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(252, 201, 0, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(199, 50, 31, 0.2) 0%, transparent 60%);
}

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

.cta-section h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  margin: 0 auto 40px;
}

.cta-section .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}

.cta-section .btn-outline:hover {
  border-color: var(--neon);
  color: var(--neon);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER (stays dark)
   ============================================ */
.footer {
  background: var(--dark);
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 60px 0 32px;
}

.footer h4 { color: rgba(255,255,255,0.4); }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  height: 64px;
  margin-bottom: 24px;
}

.footer-desc {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
  color: rgba(255,255,255,0.7);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.75;
}

.footer-social a:hover {
  background: rgba(252, 201, 0, 0.15);
  border-color: var(--neon);
  color: var(--neon);
}

.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover { color: var(--neon); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
}

.footer-bottom-links a:hover { color: var(--neon); }

/* ============================================
   PARTY PAGE STYLES (Hero stays dark)
   ============================================ */
.party-hero {
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  padding-bottom: 60px;
  color: var(--white);
}

.party-hero h1, .party-hero h2, .party-hero h3, .party-hero h4 {
  color: var(--white);
}

.party-hero-bg {
  position: absolute;
  inset: 0;
}

.party-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(18,16,14,0.95));
}

.party-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
}

.party-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}

.party-breadcrumb a { transition: var(--transition); }
.party-breadcrumb a:hover { color: var(--neon); }
.party-breadcrumb span { color: rgba(255,255,255,0.3); }

.party-hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: 16px;
}

.party-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin-bottom: 32px;
}

.party-hero-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.party-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

.party-meta-item strong { color: var(--neon); }

/* ============================================
   CALCULATOR (Light)
   ============================================ */
.calculator-section {
  background: var(--bg-alt);
}

.calculator-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  margin-top: 48px;
  align-items: start;
}

.calc-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.calc-group {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-card);
}

.calc-group-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.calc-group-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* Guest Slider */
.guest-slider-container {
  margin-top: 8px;
}

.guest-display {
  font-family: 'Anton', sans-serif;
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 8px;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.guest-display span {
  font-size: 1rem;
  font-family: 'Titillium Web', sans-serif;
  color: var(--text-muted);
  -webkit-text-fill-color: var(--text-muted);
}

.slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(0,0,0,0.08);
  outline: none;
  margin: 16px 0;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gradient);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(252, 201, 0, 0.3);
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Option Cards */
.calc-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.calc-option {
  position: relative;
}

.calc-option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.calc-option-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 12px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  background: var(--bg);
}

.calc-option-label:hover {
  border-color: rgba(241, 148, 49, 0.4);
}

.calc-option input:checked + .calc-option-label {
  border-color: var(--green);
  background: rgba(241, 148, 49, 0.06);
}

.calc-option-icon {
  font-size: 1.75rem;
}

.calc-option-name {
  font-weight: 700;
  font-size: 0.85rem;
}

.calc-option-price {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.calc-option input:checked + .calc-option-label .calc-option-price {
  color: var(--akzent);
}

/* Included items */
.calc-included {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.calc-included-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.calc-included-item::before {
  content: '✓';
  width: 22px;
  height: 22px;
  background: rgba(252, 201, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--akzent);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Price Summary Card */
.price-summary {
  position: sticky;
  top: 100px;
  background: var(--bg-card);
  border: 1px solid rgba(241, 148, 49, 0.2);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.price-summary-header {
  background: linear-gradient(135deg, rgba(199, 50, 31, 0.95), rgba(232, 79, 47, 0.92));
  padding: 24px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  color: var(--white);
}

.price-summary-header h3 {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-bottom: 4px;
}

.price-per-person {
  font-family: 'Anton', sans-serif;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--white);
  -webkit-text-fill-color: var(--white);
}

.price-per-person-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

.price-summary-body {
  padding: 24px;
}

.price-breakdown {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.price-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.price-line-label {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.price-line-value {
  font-weight: 700;
  color: var(--text);
}

.price-divider {
  height: 1px;
  background: var(--border);
  margin: 4px 0;
}

.price-total-line {
  padding-top: 16px;
  border-top: 2px solid rgba(241, 148, 49, 0.3);
  margin-top: 4px;
}

.price-total-label {
  font-weight: 700;
  font-size: 1rem;
}

.price-total-value {
  font-family: 'Anton', sans-serif;
  font-size: 1.5rem;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-summary-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 8px;
}

.price-summary-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}

/* ---- Calculator v2: Duration Buttons ---- */
.duration-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.duration-btn {
  padding: 10px 18px;
  border-radius: 50px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: 'Titillium Web', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.duration-btn:hover {
  border-color: rgba(241,148,49,0.4);
  color: var(--text);
}

.duration-btn.active {
  background: rgba(241,148,49,0.08);
  border-color: var(--green);
  color: var(--akzent);
}

/* ---- Time Row ---- */
.time-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.time-select {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: 'Titillium Web', sans-serif;
  font-size: 0.9rem;
  padding: 10px 14px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c7451a' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.time-select:focus {
  outline: none;
  border-color: var(--green);
}

.end-time-display {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 8px 14px;
  background: var(--bg-alt);
  border-radius: 8px;
  white-space: nowrap;
}

.end-time-night {
  color: #d97706;
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.2);
}

/* ---- Calc Badges ---- */
.calc-badge {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 12px;
}

.calc-badge-night {
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.25);
  color: #d97706;
}

.calc-badge-bundle {
  background: rgba(241,148,49,0.06);
  border: 1px solid rgba(241,148,49,0.2);
  color: var(--akzent);
}

/* ---- Section Required Badge ---- */
.req-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-family: 'Titillium Web', sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: rgba(241,148,49,0.1);
  color: var(--akzent);
  border: 1px solid rgba(241,148,49,0.25);
  border-radius: 50px;
  padding: 2px 10px;
  vertical-align: middle;
  margin-left: 10px;
  text-transform: uppercase;
}

/* ---- Deco Package Cards ---- */
.deco-packages {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 10px;
}

.deco-option {
  position: relative;
}

.deco-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.deco-option-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 12px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.deco-option-label:hover {
  border-color: rgba(241,148,49,0.35);
}

.deco-option input:checked + .deco-option-label {
  border-color: var(--green);
  background: rgba(241,148,49,0.05);
}

.deco-option-icon {
  font-size: 1.6rem;
}

.deco-option-name {
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--text);
  line-height: 1.2;
}

.deco-option-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.deco-option input:checked + .deco-option-label .deco-option-sub {
  color: var(--akzent);
}

/* ---- Calc option label without price ---- */
.calc-option-label.no-price {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px 8px;
}

/* ============================================
   WHAT'S INCLUDED SECTION (Light)
   ============================================ */
.whats-included {
  background: var(--bg);
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.included-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-card);
}

.included-card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(199, 50, 31, 0.08), rgba(252, 201, 0, 0.08));
  border: 1px solid rgba(241, 148, 49, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--akzent);
}

.included-card-icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.75;
}

.included-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.included-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.included-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.included-list li::before {
  content: '→';
  color: var(--akzent);
  font-weight: 700;
}

/* ============================================
   CONTACT FORM (Light)
   ============================================ */
.contact-section {
  background: var(--bg-alt);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 48px;
  align-items: start;
}

.contact-info h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.contact-info p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  background: rgba(241, 148, 49, 0.08);
  border: 1px solid rgba(241, 148, 49, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  color: var(--akzent);
}

.contact-detail-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.75;
}

.contact-detail-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-detail-value {
  font-weight: 600;
  font-size: 0.95rem;
}

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-card);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.form-control {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text);
  font-family: 'Titillium Web', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--green);
  background: rgba(241, 148, 49, 0.03);
}

.form-control::placeholder { color: rgba(0,0,0,0.3); }

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

select.form-control {
  cursor: pointer;
}

.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .calculator-layout { grid-template-columns: 1fr; }
  .price-summary { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-float { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .navbar-nav, .navbar-cta .btn-outline { display: none; }
  .nav-toggle { display: flex; }

  .navbar.menu-open .navbar-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--white);
    color: var(--text);
    align-items: center;
    justify-content: center;
    gap: 32px;
    font-size: 1.5rem;
    z-index: -1;
  }

  .navbar.menu-open .navbar-nav a {
    color: var(--text);
  }

  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::after { display: none; }
  .usp-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
}

/* ============================================
   BLOG ARTICLE STYLES
   ============================================ */
.blog-article h2 {
  font-size: 1.8rem;
  margin-top: 56px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(241, 148, 49, 0.15);
}

.blog-article h2:first-child {
  margin-top: 0;
}

.blog-article h3 {
  font-size: 1.25rem;
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--text);
}

.blog-article p {
  margin-bottom: 20px;
  color: var(--text-muted);
}

.blog-article > p:first-of-type {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--text);
}

.blog-article ul, .blog-article ol {
  margin-bottom: 28px;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-article li {
  position: relative;
  padding: 14px 20px 14px 44px;
  color: var(--text-muted);
  line-height: 1.7;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.blog-article li::before {
  content: '\2713';
  position: absolute;
  left: 16px;
  top: 16px;
  color: var(--akzent);
  font-weight: 700;
  font-size: 0.9rem;
}

.blog-article a {
  color: var(--akzent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(241, 148, 49, 0.3);
  transition: var(--transition);
}

.blog-article a:hover {
  color: var(--blue);
  text-decoration-color: var(--blue);
}

.blog-article strong {
  color: var(--text);
}

.blog-article blockquote {
  border-left: 4px solid var(--green);
  padding: 20px 24px;
  margin: 32px 0;
  background: var(--bg-alt);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--text-muted);
}

/* ============================================
   SERVICE PAGE CONTENT
   ============================================ */
.service-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.service-list-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.service-list-item:hover {
  border-color: rgba(241, 148, 49, 0.3);
  box-shadow: var(--shadow-card-hover);
}

.service-list-check {
  color: var(--akzent);
  flex-shrink: 0;
  margin-top: 2px;
}

.service-list-check svg {
  width: 22px;
  height: 22px;
  stroke-width: 2;
}

.service-list-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text);
}

.service-list-text strong {
  color: var(--text);
  display: block;
  margin-bottom: 2px;
}

.service-text-content {
  max-width: 800px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.service-text-content p {
  margin-bottom: 16px;
}

.service-text-content strong {
  color: var(--text);
  font-weight: 700;
}

@media (max-width: 768px) {
  .service-list-grid { grid-template-columns: 1fr; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--gradient);
  border: none;
  border-radius: 50%;
  color: #12100e;
  font-size: 1.25rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   BROKER / FIRMENEVENT SECTION (Homepage, Light)
   ============================================ */
.broker-section {
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}

.broker-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(199, 50, 31, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(252, 201, 0, 0.03) 0%, transparent 60%);
}

.broker-section .container { position: relative; z-index: 2; }

.broker-intro {
  max-width: 700px;
  margin-bottom: 48px;
}

.broker-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.broker-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  box-shadow: var(--shadow-card);
}

.broker-card:hover {
  border-color: rgba(241, 148, 49, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.broker-card-icon {
  font-size: 2.5rem;
  margin-bottom: 14px;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(199, 50, 31, 0.08), rgba(252, 201, 0, 0.08));
  border: 1px solid rgba(241, 148, 49, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--akzent);
  margin-left: auto;
  margin-right: auto;
}

.broker-card-icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.75;
}

.broker-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.broker-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.broker-cta {
  text-align: center;
  margin-top: 48px;
}

/* ============================================
   FIRMENEVENT PAGE - Multi-Step Form (Light)
   ============================================ */
.fe-form-container {
  max-width: 800px;
  margin: 0 auto;
}

.fe-step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
}

.fe-step-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Anton', sans-serif;
  font-size: 1rem;
  color: var(--text-muted);
  transition: var(--transition);
  flex-shrink: 0;
}

.fe-step-dot.active {
  background: rgba(241, 148, 49, 0.1);
  border-color: var(--green);
  color: var(--akzent);
}

.fe-step-dot.done {
  background: var(--gradient);
  border-color: transparent;
  color: #12100e;
}

.fe-step-line {
  width: 60px;
  height: 2px;
  background: var(--border);
  transition: var(--transition);
}

.fe-step-line.done {
  background: linear-gradient(90deg, var(--green), var(--blue));
}

.fe-step {
  display: none;
}

.fe-step.active {
  display: block;
  animation: fadeUp 0.3s ease;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.fe-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 12px;
}

.fe-type-card {
  position: relative;
}

.fe-type-card input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.fe-type-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 16px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border);
  background: var(--bg-card);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.fe-type-label:hover {
  border-color: rgba(241, 148, 49, 0.4);
}

.fe-type-card input:checked + .fe-type-label {
  border-color: var(--green);
  background: rgba(241, 148, 49, 0.05);
}

.fe-type-icon {
  font-size: 2rem;
}

.fe-type-name {
  font-weight: 700;
  font-size: 0.9rem;
}

.fe-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}

.fe-service-item {
  position: relative;
}

.fe-service-item input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.fe-service-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--bg-card);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
}

.fe-service-label:hover {
  border-color: rgba(241, 148, 49, 0.3);
}

.fe-service-item input:checked + .fe-service-label {
  border-color: var(--green);
  background: rgba(241, 148, 49, 0.04);
}

.fe-service-icon {
  font-size: 1.3rem;
}

.fe-form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  gap: 16px;
}

.fe-form-nav .btn-back {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 12px 28px;
  border-radius: 50px;
  font-family: 'Titillium Web', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
}

.fe-form-nav .btn-back:hover {
  border-color: var(--text-muted);
  color: var(--text);
}

/* ============================================
   FIRMENEVENT PAGE - Trust Cards (Light)
   ============================================ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.trust-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.trust-card:hover {
  border-color: rgba(241, 148, 49, 0.3);
  box-shadow: var(--shadow-card-hover);
}

.trust-card-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.trust-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.trust-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================
   FAQ ACCORDION (Light)
   ============================================ */
.faq-section {
  background: var(--bg);
}

.faq-list {
  max-width: 800px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.faq-item:hover {
  border-color: rgba(0,0,0,0.12);
}

.faq-item.open {
  border-color: rgba(241, 148, 49, 0.3);
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
}

.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--akzent);
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ============================================
   RESPONSIVE - Broker & Firmenevent
   ============================================ */
@media (max-width: 1024px) {
  .broker-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .broker-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .fe-type-grid { grid-template-columns: repeat(2, 1fr); }
  .fe-service-grid { grid-template-columns: 1fr; }
  .fe-step-line { width: 30px; }
  .fe-form-nav { flex-direction: column; }
  .fe-form-nav .btn-back { width: 100%; text-align: center; }
  .fe-form-nav .btn { width: 100%; justify-content: center; }
}
