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

:root {
  --orange: #FF6600;
  --orange-dark: #CC4400;
  --orange-light: #FF8833;
  --black: #0d0d0d;
  --dark: #1a1a1a;
  --gray: #333333;
  --mid-gray: #666666;
  --light-gray: #f5f5f5;
  --white: #ffffff;
  --font-display: 'Barlow Condensed', Impact, sans-serif;
  --font-body: 'Lato', Helvetica, sans-serif;
  --radius: 10px;
  --shadow: 0 4px 30px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 60px rgba(0,0,0,0.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray);
  background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; transition: opacity 0.2s; }
a:hover { opacity: 0.85; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }

.section-label {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.section-label.light { background: rgba(255,255,255,0.2); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 20px;
}
.section-title.centered { text-align: center; }
.section-title.light { color: var(--white); }
.section-intro { font-size: 1.1rem; color: var(--mid-gray); margin-bottom: 48px; }
.section-intro.centered { text-align: center; max-width: 680px; margin-left: auto; margin-right: auto; }
.section-intro.light { color: rgba(255,255,255,0.85); }
.accent { color: var(--orange); }
.accent-light { color: #FFD700; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 14px 32px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  border: none;
}
.btn-header {
  background: var(--orange);
  color: var(--white);
  font-size: 0.95rem;
  padding: 10px 22px;
}
.btn-header:hover { background: var(--orange-dark); opacity: 1; }
.btn-hero {
  background: var(--orange);
  color: var(--white);
  font-size: 1.25rem;
  padding: 18px 44px;
  box-shadow: 0 6px 30px rgba(255,102,0,0.4);
  animation: pulse-btn 2.5s infinite;
}
.btn-hero:hover { background: var(--orange-dark); transform: translateY(-2px); opacity: 1; }
.btn-large { font-size: 1.4rem; padding: 20px 52px; }
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255,102,0,0.35);
}
.btn-primary:hover { background: var(--orange-dark); opacity: 1; }
.btn-white {
  background: var(--white);
  color: var(--orange);
  font-size: 1.2rem;
  padding: 16px 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover { background: #f0f0f0; opacity: 1; }
.btn-footer {
  display: inline-block;
  margin-top: 16px;
  background: var(--orange);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 700;
}

@keyframes pulse-btn {
  0%, 100% { box-shadow: 0 6px 30px rgba(255,102,0,0.4); }
  50% { box-shadow: 0 8px 40px rgba(255,102,0,0.65); }
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 20px;
}
.logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.logo-icon { font-size: 1.6rem; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.logo-text strong { color: var(--orange); }
.main-nav { display: flex; gap: 28px; }
.main-nav a {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.main-nav a:hover { color: var(--orange); opacity: 1; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--black) 0%, #1a0a00 50%, #2d1200 100%);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,102,0,0.12) 0%, transparent 60%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FF6600' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 60px;
  max-width: 720px;
}
.event-badge {
  display: inline-block;
  background: rgba(255,102,0,0.15);
  border: 1px solid rgba(255,102,0,0.4);
  color: var(--orange-light);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.hero-highlight { color: var(--orange); display: block; font-size: 0.7em; }
.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  max-width: 580px;
  line-height: 1.6;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 36px;
}
.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 600;
}
.meta-icon { font-size: 1.1rem; }
.hero-urgency {
  margin-top: 14px;
  color: #FFD700;
  font-size: 0.9rem;
  font-weight: 700;
}
.hero-image-block {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 45%;
  max-width: 600px;
  z-index: 1;
  pointer-events: none;
}
.hero-image-block img {
  width: 100%;
  object-fit: contain;
}

/* ===== INTRO ===== */
.intro { background: var(--white); }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.intro-text p { margin-bottom: 16px; font-size: 1.05rem; color: var(--gray); }
.intro-image { position: relative; }
.intro-image img { border-radius: 12px; box-shadow: var(--shadow-lg); }
.intro-image-caption {
  background: var(--orange);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 0 0 12px 12px;
  font-size: 0.9rem;
  text-align: center;
}

/* ===== PROGRAMM ===== */
.programm { background: var(--light-gray); }
.programm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.programm-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--orange);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
}
.programm-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(255,102,0,0.1);
  line-height: 1;
}
.card-icon { font-size: 2rem; margin-bottom: 14px; }
.programm-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}
.programm-card p { font-size: 0.95rem; color: var(--mid-gray); }
.cta-center { text-align: center; }
.cta-sub { margin-top: 10px; font-size: 0.9rem; color: var(--mid-gray); }

/* ===== REFERENTEN ===== */
.dark-section { background: var(--dark); }
.referenten-grid { display: flex; flex-direction: column; gap: 60px; }
.referent-card {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: center;
}
.referent-card.reverse { grid-template-columns: 1fr 320px; }
.referent-img-wrapper img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}
.referent-placeholder {
  width: 260px;
  height: 320px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.placeholder-initial {
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 900;
  color: rgba(255,255,255,0.3);
}
.referent-info h3 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 6px;
}
.referent-title {
  color: var(--orange);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.referent-info p { color: rgba(255,255,255,0.75); font-size: 1rem; margin-bottom: 16px; }
.referent-info strong { color: var(--white); }
.referent-stats {
  display: flex;
  gap: 32px;
  margin-top: 24px;
}
.stat { display: flex; flex-direction: column; }
.stat strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.stat span { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 4px; }
.referent-quote {
  background: rgba(255,102,0,0.12);
  border-left: 4px solid var(--orange);
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  color: rgba(255,255,255,0.9);
  font-style: italic;
  font-size: 1.05rem;
  margin-top: 16px;
}

/* ===== VENUE ===== */
.venue { background: var(--white); }
.venue-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.venue-details { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.venue-detail-item { display: flex; align-items: flex-start; gap: 16px; }
.detail-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.venue-detail-item div { display: flex; flex-direction: column; }
.venue-detail-item strong { color: var(--black); font-size: 0.95rem; }
.venue-detail-item span { color: var(--mid-gray); font-size: 0.9rem; }

/* ===== FÜR WEN ===== */
.orange-section { background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%); }
.fuer-wen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 48px;
}
.fw-item {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.25);
  transition: background 0.2s;
}
.fw-item:hover { background: rgba(255,255,255,0.25); }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--light-gray); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.25s;
}
.testimonial-card:hover { transform: translateY(-4px); }
.testimonial-card.featured {
  border: 2px solid var(--orange);
  box-shadow: 0 8px 40px rgba(255,102,0,0.15);
}
.featured-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stars { font-size: 1.1rem; margin-bottom: 14px; }
.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-family: var(--font-display);
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; color: var(--black); font-size: 0.95rem; }
.testimonial-author span { font-size: 0.82rem; color: var(--mid-gray); }
.rating-summary {
  text-align: center;
  padding: 40px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  max-width: 480px;
  margin: 0 auto;
}
.rating-number {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.rating-stars { font-size: 1.8rem; margin: 8px 0; }
.rating-text { font-size: 0.9rem; color: var(--mid-gray); }

/* ===== WARUM ===== */
.warum { background: var(--white); }
.warum-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.warum-text p { margin-bottom: 16px; font-size: 1.05rem; }
.urgency-box {
  background: #FFF5EE;
  border: 2px solid var(--orange);
  border-radius: 10px;
  padding: 24px;
  margin-top: 24px;
}
.urgency-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--orange);
  margin-bottom: 10px;
}
.warum-benefits {
  background: var(--light-gray);
  border-radius: 12px;
  padding: 36px 32px;
}
.warum-benefits h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 24px;
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 0.97rem;
  color: var(--gray);
}
.benefit-check {
  color: var(--orange);
  font-weight: 900;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.price-box {
  background: var(--black);
  color: var(--white);
  border-radius: 10px;
  padding: 24px;
  text-align: center;
  margin-top: 28px;
}
.price-old { font-size: 0.9rem; color: rgba(255,255,255,0.5); text-decoration: line-through; }
.price-current { font-family: var(--font-display); font-size: 2.5rem; font-weight: 900; color: var(--orange); margin: 4px 0; }
.price-saving { font-size: 0.9rem; color: #4CAF50; font-weight: 700; }

/* ===== FINAL CTA ===== */
.final-cta {
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.final-cta-inner {
  position: relative;
  text-align: center;
  padding: 60px 0;
}
.cta-bg-image {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  opacity: 0.12;
  pointer-events: none;
}
.cta-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.cta-subtitle { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-bottom: 28px; }
.cta-event-details {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 36px;
}
.cta-guarantee { margin-top: 20px; font-size: 0.88rem; color: rgba(255,255,255,0.5); }

/* ===== FAQ ===== */
.faq { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.faq-item {
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.faq-item h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}
.faq-item p { font-size: 0.95rem; color: var(--mid-gray); line-height: 1.6; }
.faq-item a { color: var(--orange); font-weight: 700; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--black);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-text { color: var(--white); }
.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  margin-top: 16px;
  line-height: 1.6;
}
.affiliate-notice { font-size: 0.8rem !important; color: rgba(255,255,255,0.35) !important; margin-top: 12px !important; font-style: italic; }
.footer-links h4, .footer-event h4 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 0.9rem; }
.footer-links a:hover { color: var(--orange); }
.footer-event p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 6px; }
.footer-bottom {
  padding-top: 28px;
  text-align: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.82rem;
}

/* ===== PAGE TEMPLATE (inner pages) ===== */
.page-hero {
  background: var(--black);
  padding: 80px 0 60px;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
}
.page-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}
.page-content h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--black);
  margin: 32px 0 12px;
}
.page-content p { margin-bottom: 14px; color: var(--gray); line-height: 1.75; }
.page-content ul { padding-left: 24px; margin-bottom: 14px; }
.page-content li { margin-bottom: 8px; color: var(--gray); }
.page-content a { color: var(--orange); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-image-block { display: none; }
  .intro-grid, .programm-grid, .venue-grid, .warum-grid, .footer-grid,
  .referent-card, .referent-card.reverse { grid-template-columns: 1fr; }
  .referent-card.reverse { direction: ltr; }
  .referent-placeholder { width: 100%; height: 200px; }
  .placeholder-initial { font-size: 5rem; }
  .testimonials-grid, .faq-grid, .fuer-wen-grid { grid-template-columns: 1fr; }
  .main-nav { display: none; }
  .logo-text { font-size: 1.1rem; }
  .hero { min-height: auto; padding: 60px 0 40px; }
  .referent-stats { flex-wrap: wrap; gap: 16px; }
}

@media (max-width: 600px) {
  .section { padding: 56px 0; }
  .hero-meta { flex-direction: column; gap: 10px; }
  .cta-event-details { flex-direction: column; gap: 8px; }
  .nav-container { flex-wrap: wrap; }
}
