*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #F5B800;
  --primary-dark: #d4a000;
  --primary-text: #1a1a1a;
  --text: #111827;
  --text-secondary: #6B7280;
  --bg: #FFFFFF;
  --bg-alt: #F9FAFB;
  --border: #E5E7EB;
  --radius: 16px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --text: #F0F0F0;
    --text-secondary: #9CA3AF;
    --bg: #121212;
    --bg-alt: #1E1E1E;
    --border: #2D2D2D;
  }
}

html { scroll-behavior: smooth; }
body { font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif; color: var(--text); background: var(--bg); -webkit-font-smoothing: antialiased; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
a { color: inherit; text-decoration: none; }

/* NAV */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
@media (prefers-color-scheme: dark) { .nav { background: rgba(18,18,18,0.92); } }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 60px; }
.logo { font-family: 'Pacifico', cursive; font-size: 22px; font-weight: 400; color: var(--text); }
.logo span { color: var(--primary); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 14px; font-weight: 600; color: var(--text-secondary); transition: color .15s; }
.nav-links a:hover { color: var(--text); }
.btn-download-nav {
  background: var(--primary);
  color: var(--primary-text) !important;
  padding: 8px 20px; border-radius: 10px;
  font-size: 14px; font-weight: 700;
  transition: background .15s !important;
}
.btn-download-nav:hover { background: var(--primary-dark) !important; }

/* HERO */
.hero { padding: 80px 0 60px; background: linear-gradient(160deg, #fffbeb 0%, var(--bg) 60%); }
.hero-inner { display: flex; align-items: center; gap: 60px; }
.hero-text { flex: 1; min-width: 0; }
.hero-badge { display: inline-block; background: #fef3c7; color: #92400e; font-size: 13px; font-weight: 700; padding: 5px 14px; border-radius: 20px; margin-bottom: 20px; }
.hero-text h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 900; line-height: 1.15; margin-bottom: 18px; }
.gradient-text { background: linear-gradient(90deg, var(--primary), #fbbf24); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { font-size: 17px; color: var(--text-secondary); line-height: 1.65; max-width: 480px; margin-bottom: 32px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }

.btn-primary-large {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: var(--primary-text);
  padding: 14px 28px; border-radius: 14px;
  font-size: 15px; font-weight: 700;
  transition: background .15s, transform .1s;
}
.btn-primary-large:hover { background: var(--primary-dark); transform: translateY(-1px); }

.btn-secondary-large {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--text); color: #fff;
  padding: 14px 28px; border-radius: 14px;
  font-size: 15px; font-weight: 700;
  transition: background .15s, transform .1s;
}
.btn-secondary-large:hover { background: #1f2937; transform: translateY(-1px); }

.btn-white-outline {
  background: transparent !important;
  border: 2px solid rgba(255,255,255,0.6);
  color: #fff !important;
}
.btn-white-outline:hover { background: rgba(255,255,255,0.1) !important; }

/* PHONE MOCKUP */
.hero-phone { flex-shrink: 0; }
.phone-mock { width: 220px; height: 420px; background: #1a1a1a; border-radius: 40px; padding: 12px; box-shadow: 0 40px 80px rgba(0,0,0,0.2), 0 0 0 2px #333; }
.phone-screen { width: 100%; height: 100%; background: #e8f4e8; border-radius: 30px; overflow: hidden; position: relative; }
.map-bg { width: 100%; height: 100%; background: linear-gradient(135deg, #d4edda 0%, #c8e6c9 30%, #b2dfdb 60%, #c5e1a5 100%); position: relative; }
.map-pin { position: absolute; font-size: 28px; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)); animation: float 3s ease-in-out infinite; }
.pin-1 { top: 25%; left: 30%; animation-delay: 0s; }
.pin-2 { top: 50%; left: 55%; animation-delay: 1s; }
.pin-3 { top: 68%; left: 22%; animation-delay: 2s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* STATS */
.stats { background: #111827; padding: 36px 0; }
.stats-inner { display: flex; align-items: center; justify-content: center; }
.stat { text-align: center; padding: 0 40px; }
.stat-num { display: block; font-size: 28px; font-weight: 900; color: #fff; }
.stat-label { display: block; font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 4px; font-weight: 500; }
.stat-sep { width: 1px; height: 40px; background: rgba(255,255,255,0.15); flex-shrink: 0; }

/* SHARED */
.section-tag { display: inline-block; background: #fef3c7; color: #92400e; font-size: 12px; font-weight: 700; padding: 4px 14px; border-radius: 20px; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 12px; }
.section-tag-white { background: rgba(255,255,255,0.2); color: #fff; }
section h2 { font-size: clamp(26px, 4vw, 36px); font-weight: 900; margin-bottom: 12px; }
.section-sub { font-size: 16px; color: var(--text-secondary); line-height: 1.6; max-width: 540px; margin-bottom: 48px; }

/* FEATURES */
.features { padding: 96px 0; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.feature-card { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; transition: box-shadow .2s, transform .2s; }
.feature-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.07); transform: translateY(-2px); }
.feature-icon { font-size: 32px; margin-bottom: 14px; }
.feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* VERANSTALTER */
.veranstalter { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); padding: 96px 0; }
.veranstalter-inner { display: flex; align-items: center; gap: 60px; }
.veranstalter-text { flex: 1; }
.text-white { color: #fff; }
.veranstalter-sub { color: rgba(255,255,255,0.75); font-size: 16px; line-height: 1.65; max-width: 460px; margin-bottom: 28px; }
.veranstalter-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 36px; }
.veranstalter-list li { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.85); font-size: 15px; font-weight: 500; }
.check { color: #4ade80; font-size: 16px; font-weight: 700; }
.veranstalter-visual { flex-shrink: 0; }
.v-card { background: rgba(255,255,255,0.08); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.15); border-radius: 20px; padding: 24px; min-width: 280px; color: #fff; }
.v-card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.v-avatar { font-size: 36px; }
.v-name { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.v-badge { font-size: 12px; color: #4ade80; font-weight: 600; }
.v-meta { display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 16px; }
.v-attendees { display: flex; align-items: center; gap: 6px; }
.v-dot { width: 24px; height: 24px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.3); margin-left: -6px; }
.v-dot:first-child { margin-left: 0; }
.v-fav-count { font-size: 13px; color: rgba(255,255,255,0.8); font-weight: 600; margin-left: 6px; }

/* SCREENSHOTS */
.screenshots { padding: 96px 0; background: var(--bg); }
.screenshots-scroll {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  padding: 24px 4px 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.screenshots-scroll::-webkit-scrollbar { display: none; }
.screenshot-item {
  flex-shrink: 0;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 200px;
}
.phone-frame {
  width: 200px;
  height: 432px;
  background: #1a1a1a;
  border-radius: 36px;
  padding: 10px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.18), 0 0 0 1.5px #333;
  position: relative;
  overflow: hidden;
}
.phone-frame::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 22px;
  background: #1a1a1a;
  border-radius: 12px;
  z-index: 2;
}
.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  display: block;
}
.screenshot-label { font-size: 15px; font-weight: 700; color: var(--text); }
.screenshot-desc { font-size: 13px; color: var(--text-secondary); text-align: center; }

/* HOW IT WORKS */
.how { padding: 96px 0; background: var(--bg-alt); }
.steps { display: flex; align-items: flex-start; gap: 0; margin-top: 48px; }
.step { flex: 1; text-align: center; padding: 0 24px; }
.step-num { width: 52px; height: 52px; background: var(--primary); color: var(--primary-text); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 900; margin: 0 auto 16px; }
.step h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.step-arrow { flex-shrink: 0; font-size: 28px; color: var(--border); padding-top: 14px; }

/* DOWNLOAD */
.download { padding: 96px 0; text-align: center; background: linear-gradient(160deg, #fffbeb 0%, var(--bg) 100%); }
.download h2 { font-size: 36px; font-weight: 900; margin-bottom: 12px; }
.download p { font-size: 16px; color: var(--text-secondary); margin-bottom: 32px; }
.download-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; margin-bottom: 16px; }
.store-btn { display: inline-flex; align-items: center; gap: 14px; background: var(--text); color: #fff; padding: 14px 28px; border-radius: 14px; transition: background .15s, transform .1s; }
.store-btn:hover { background: #1f2937; transform: translateY(-2px); }
.store-label { font-size: 11px; color: rgba(255,255,255,0.7); line-height: 1; }
.store-name { font-size: 18px; font-weight: 800; line-height: 1.3; }
.download-note { font-size: 13px; color: var(--text-secondary); }

/* FOOTER */
.footer { border-top: 1px solid var(--border); padding: 32px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: var(--text-secondary); transition: color .15s; }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 13px; color: var(--text-secondary); }

/* COOKIE BANNER */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: #111827; color: #fff;
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.cookie-banner p { font-size: 13px; color: rgba(255,255,255,0.8); line-height: 1.5; max-width: 640px; }
.cookie-banner a { color: var(--primary); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn-accept { background: var(--primary); color: var(--primary-text); border: none; padding: 9px 22px; border-radius: 8px; font-size: 13px; font-weight: 700; cursor: pointer; transition: background .15s; }
.cookie-btn-accept:hover { background: var(--primary-dark); }
.cookie-btn-reject { background: transparent; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.3); padding: 9px 22px; border-radius: 8px; font-size: 13px; font-weight: 600; cursor: pointer; transition: border-color .15s, color .15s; }
.cookie-btn-reject:hover { border-color: rgba(255,255,255,0.6); color: #fff; }

/* LEGAL PAGES */
.legal { max-width: 720px; margin: 60px auto; padding: 0 24px 80px; }
.legal h1 { font-size: 32px; font-weight: 900; margin-bottom: 8px; }
.legal .legal-date { font-size: 13px; color: var(--text-secondary); margin-bottom: 40px; }
.legal h2 { font-size: 20px; font-weight: 700; margin: 36px 0 10px; border-top: 1px solid var(--border); padding-top: 28px; }
.legal h3 { font-size: 16px; font-weight: 700; margin: 20px 0 8px; }
.legal p { font-size: 15px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 12px; }
.legal address { font-style: normal; font-size: 15px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 12px; }
.legal ul, .legal ol { padding-left: 22px; margin-bottom: 12px; }
.legal li { font-size: 15px; color: var(--text-secondary); line-height: 1.75; }
.legal a { color: var(--primary); }
.legal strong { color: var(--text); }
.legal-notice { background: #fef3c7; border-left: 3px solid var(--primary); padding: 12px 16px; border-radius: 4px; margin: 20px 0; font-size: 13px; color: #92400e; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-inner { flex-direction: column; }
  .hero-phone { display: none; }
  .stats-inner { flex-wrap: wrap; gap: 24px; }
  .stat-sep { display: none; }
  .veranstalter-inner { flex-direction: column; }
  .veranstalter-visual { width: 100%; }
  .v-card { min-width: auto; }
  .steps { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); padding: 0; margin: 4px 0; }
  .nav-links { gap: 16px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .nav-links a:not(.btn-download-nav) { display: none; }
}
