/* ============================================
   EVENTFLOW – Landing Page Styles
   Dark Premium · Gold #d4af7a
   ============================================ */

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

:root {
  --bg:          #0a0906;
  --bg-card:     #111008;
  --bg-card2:    #18160c;
  --border:      rgba(212,175,122,0.12);
  --gold:        #d4af7a;
  --gold-light:  #f0d4a0;
  --gold-dark:   #8a6830;
  --text:        #f5efe6;
  --text-mid:    #9a8a72;
  --text-dim:    #4a4030;
  --sans:        'Space Grotesk', sans-serif;
  --mono:        'Space Mono', monospace;
  --radius:      16px;
  --radius-sm:   8px;
  --radius-lg:   24px;
  --trans:       0.22s cubic-bezier(.4,0,.2,1);
  --shadow:      0 24px 80px rgba(0,0,0,0.7);
}

html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--bg); color: var(--text); overflow-x: hidden; }

/* ── Background ── */
.bg-root { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.bg-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 15% 5%, rgba(212,175,122,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 85% 85%, rgba(160,120,64,0.07) 0%, transparent 55%);
}
.bg-orb { position: absolute; border-radius: 50%; filter: blur(90px); animation: orbFloat 14s ease-in-out infinite alternate; }
.orb-1 { width:600px;height:600px;top:-200px;left:-150px;background:radial-gradient(circle,#d4af7a,transparent 70%);opacity:.2;animation-duration:16s; }
.orb-2 { width:500px;height:500px;bottom:-150px;right:-100px;background:radial-gradient(circle,#8a6830,transparent 70%);opacity:.18;animation-duration:12s;animation-delay:-4s; }
.orb-3 { width:350px;height:350px;top:45%;left:55%;background:radial-gradient(circle,#d4af7a,transparent 70%);opacity:.1;animation-duration:19s;animation-delay:-8s; }
@keyframes orbFloat { from{transform:translate(0,0) scale(1)} to{transform:translate(40px,50px) scale(1.12)} }
.bg-grid {
  position:absolute;inset:0;
  background-image: linear-gradient(rgba(212,175,122,0.03) 1px,transparent 1px), linear-gradient(90deg,rgba(212,175,122,0.03) 1px,transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%,black 20%,transparent 100%);
}

.start-bg{
  position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden;
  width: 100%;
  height: 100vh;
}
.start-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.9) 100%),
    linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url("https://eventmasterx.com/img/eventmasterX_background.jpg") center/cover no-repeat;
  z-index: -1;
}

/* ── Reusable ── */
.gold-text {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-inner { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section-label { font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; margin-bottom: 12px; }
.section-title { font-size: clamp(28px,4vw,46px); font-weight: 700; letter-spacing: -1.5px; line-height: 1.15; margin-bottom: 16px; }
.section-sub { font-size: 16px; color: var(--text-mid); max-width: 560px; line-height: 1.7; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0a0906; font-family: var(--sans); font-size: 14px; font-weight: 700;
  border: none; cursor: pointer; text-decoration: none;
  box-shadow: 0 6px 24px rgba(212,175,122,0.3);
  transition: transform var(--trans), box-shadow var(--trans);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(212,175,122,0.45); }
.btn-primary:active { transform: scale(0.97); }
.btn-primary.btn-large { padding: 16px 36px; font-size: 15px; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 50px;
  background: rgba(212,175,122,0.07); color: var(--gold);
  border: 1px solid rgba(212,175,122,0.25); font-family: var(--sans);
  font-size: 14px; font-weight: 600; text-decoration: none; cursor: pointer;
  transition: background var(--trans), box-shadow var(--trans);
}
.btn-ghost:hover { background: rgba(212,175,122,0.14); box-shadow: 0 0 20px rgba(212,175,122,0.15); }
.btn-ghost.btn-large { padding: 16px 36px; font-size: 15px; }

/* ══════════════════════════════
   NAVBAR – ausgelagert in css/nav.css
   (Regeln hier entfernt, nav.css wird separat geladen)
══════════════════════════════ */
/* Nav-Basisvariablen bleiben hier, Regeln in nav.css */

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  position: relative; z-index: 10; min-height: 100vh;
  display: flex; align-items: center; gap: 60px;
  max-width: 1200px; margin: 0 auto; padding: 120px 24px 80px;
  overflow: hidden;
}
.hero-content { flex: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(212,175,122,0.1); border: 1px solid rgba(212,175,122,0.25);
  border-radius: 50px; padding: 7px 16px; font-size: 12px; font-weight: 600;
  color: var(--gold); margin-bottom: 28px; font-family: var(--mono);
}
.hero-badge i { color: var(--gold); }

.hero-title { font-size: clamp(32px, 5vw, 58px); font-weight: 700; letter-spacing: -2px; line-height: 1.08; margin-bottom: 20px; }
.hero-sub { font-size: 17px; color: var(--text-mid); line-height: 1.7; margin-bottom: 36px; max-width: 500px; }

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats { display: flex; align-items: center; gap: 28px; }
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-num { font-size: 22px; font-weight: 700; font-family: var(--mono); color: var(--gold); }
.stat-label { font-size: 12px; color: var(--text-mid); }
.stat-div { width: 1px; height: 36px; background: var(--border); }

/* Hero Visual */
.hero-visual { flex-shrink: 0; width: 480px; position: relative; }
.hero-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
}
.main-card { animation: heroCardFloat 5s ease-in-out infinite alternate; }
@keyframes heroCardFloat { from{transform:translateY(0)} to{transform:translateY(-14px)} }

.hc-top {
  display: flex; align-items: center; gap: 10px; padding: 14px 18px;
  border-bottom: 1px solid var(--border); background: var(--bg-card2);
}
.hc-dot { width: 11px; height: 11px; border-radius: 50%; }
.hc-dot.red { background: #ff5f56; }
.hc-dot.yellow { background: #ffbd2e; }
.hc-dot.green { background: #27c93f; }
.hc-title { font-size: 12px; font-weight: 600; color: var(--text-mid); margin-left: 6px; font-family: var(--mono); }

.hc-body { padding: 20px 18px; display: flex; flex-direction: column; gap: 16px; }
.hc-event-row { display: flex; align-items: center; gap: 12px; padding: 12px; background: rgba(212,175,122,0.04); border: 1px solid var(--border); border-radius: var(--radius-sm); }
.hc-avatar { width: 38px; height: 38px; border-radius: 10px; background: linear-gradient(135deg,var(--gold),var(--gold-dark)); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: #0a0906; flex-shrink: 0; }
.hc-info { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.hc-info strong { font-size: 13px; font-weight: 600; color: var(--text); }
.hc-info span { font-size: 11px; color: var(--text-mid); }
.hc-badge { font-size: 10px; font-weight: 700; font-family: var(--mono); padding: 3px 8px; border-radius: 4px; }
.hc-badge.live { background: rgba(67,233,123,0.15); color: #43e97b; border: 1px solid rgba(67,233,123,0.3); }
.hc-badge.soon { background: rgba(212,175,122,0.15); color: var(--gold); border: 1px solid rgba(212,175,122,0.3); }

.hc-bar-wrap { display: flex; flex-direction: column; gap: 8px; padding: 4px 0; }
.hc-bar-label { display: flex; justify-content: space-between; font-size: 11px; color: var(--text-mid); }
.hc-bar { height: 6px; background: rgba(255,255,255,0.06); border-radius: 3px; overflow: hidden; }
.hc-bar-fill { height: 100%; background: linear-gradient(90deg,var(--gold),var(--gold-light)); border-radius: 3px; animation: barGrow 1.2s ease-out both; }
@keyframes barGrow { from{width:0%} }

/* Floating chips */
.float-chip {
  position: absolute; background: var(--bg-card2); border: 1px solid var(--border);
  border-radius: 50px; padding: 8px 16px; font-size: 12px; font-weight: 600;
  color: var(--text); display: flex; align-items: center; gap: 7px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4); white-space: nowrap;
}
.float-chip i { color: var(--gold); }
.chip-1 { top: -18px; right: 30px; animation: chipFloat 4s ease-in-out infinite alternate; }
.chip-2 { bottom: 60px; left: -30px; animation: chipFloat 5s ease-in-out infinite alternate-reverse; }
.chip-3 { bottom: -18px; right: 40px; animation: chipFloat 3.5s ease-in-out infinite alternate; }
@keyframes chipFloat { from{transform:translateY(0)} to{transform:translateY(-10px)} }

.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 11px; color: var(--text-dim); font-family: var(--mono); letter-spacing: 2px;
}
.scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100%{opacity:0.3} 50%{opacity:1} }

/* ══════════════════════════════
   STEPS
══════════════════════════════ */
.steps-section { position: relative; z-index: 10; padding: 120px 0; }
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 60px; position: relative; }

.step-card {
  padding: 36px 28px; position: relative;
  background: var(--bg-card); border: 1px solid var(--border);
  border-right: none; transition: background var(--trans);
}
.step-card:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.step-card:last-child { border-right: 1px solid var(--border); border-radius: 0 var(--radius) var(--radius) 0; }
.step-card:hover { background: rgba(212,175,122,0.04); }

.step-num {
  font-family: var(--mono); font-size: 11px; font-weight: 700; color: var(--gold);
  letter-spacing: 2px; margin-bottom: 18px;
}
.step-icon {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  background: rgba(212,175,122,0.08); border: 1px solid rgba(212,175,122,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--gold); margin-bottom: 18px;
  transition: background var(--trans), box-shadow var(--trans);
}
.step-card:hover .step-icon { background: rgba(212,175,122,0.15); box-shadow: 0 0 20px rgba(212,175,122,0.2); }
.step-card h3 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.step-card p { font-size: 13px; color: var(--text-mid); line-height: 1.65; }

/* connector arrow between steps */
.step-line {
  position: absolute; right: -18px; top: 50%; transform: translateY(-50%);
  width: 36px; height: 2px; background: linear-gradient(90deg, var(--border), rgba(212,175,122,0.3));
  z-index: 2;
}
.step-line::after {
  content: ''; position: absolute; right: -4px; top: 50%; transform: translateY(-50%);
  border: 5px solid transparent; border-left-color: rgba(212,175,122,0.4);
}

/* ══════════════════════════════
   FEATURE SLIDER
══════════════════════════════ */
.slider-section { position: relative; z-index: 10; padding: 120px 0; overflow: hidden; }
.slider-section .section-inner { margin-bottom: 60px; }

.slider-wrap { position: relative; }
.slider-track { display: flex; transition: transform 0.55s cubic-bezier(.65,0,.35,1); }
.slide {
  min-width: 100%; display: flex; align-items: center; gap: 80px;
  padding: 0 calc((100vw - 1160px)/2) 0 calc((100vw - 1160px)/2);
}
@media (max-width: 1200px) { .slide { padding: 0 24px; } }

.slide-visual { flex-shrink: 0; width: 420px; }
.slide-mockup {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
}
.mock-header {
  display: flex; align-items: center; gap: 8px; padding: 13px 18px;
  border-bottom: 1px solid var(--border); background: var(--bg-card2);
  font-size: 12px; color: var(--text-mid); font-family: var(--mono);
}
.mock-dots { display: flex; gap: 5px; }
.mock-dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--border); }

.mock-body { padding: 20px 18px; display: flex; flex-direction: column; gap: 10px; }
.mock-ticket-row {
  display: flex; align-items: center; gap: 12px; padding: 14px;
  background: rgba(212,175,122,0.04); border: 1px solid var(--border); border-radius: var(--radius-sm);
}
.mock-ticket-icon { width: 36px; height: 36px; border-radius: 10px; background: rgba(212,175,122,0.1); display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.mock-ticket-name { font-size: 13px; font-weight: 600; color: var(--text); }
.mock-ticket-price { font-size: 12px; color: var(--gold); font-family: var(--mono); }
.mock-buy-btn { margin-left: auto; padding: 6px 14px; border-radius: 50px; border: 1px solid rgba(212,175,122,0.3); background: rgba(212,175,122,0.08); color: var(--gold); font-size: 11px; font-weight: 700; cursor: pointer; flex-shrink: 0; font-family: var(--sans); }

/* Scanner mockup */
.mock-scanner { align-items: center; gap: 20px; }
.scanner-frame {
  width: 160px; height: 160px; margin: 0 auto; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.scanner-corner {
  position: absolute; width: 24px; height: 24px; border-color: var(--gold); border-style: solid;
}
.scanner-corner.tl { top: 0; left: 0; border-width: 3px 0 0 3px; }
.scanner-corner.tr { top: 0; right: 0; border-width: 3px 3px 0 0; }
.scanner-corner.bl { bottom: 0; left: 0; border-width: 0 0 3px 3px; }
.scanner-corner.br { bottom: 0; right: 0; border-width: 0 3px 3px 0; }
.scanner-line {
  position: absolute; left: 10px; right: 10px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: scanLine 2s ease-in-out infinite;
}
@keyframes scanLine { 0%,100%{top:10px} 50%{top:calc(100% - 12px)} }
.scanner-icon { font-size: 48px; color: rgba(212,175,122,0.15); }
.scanner-status { display: flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 50px; font-size: 13px; font-weight: 700; }
.scanner-status.ok { background: rgba(67,233,123,0.12); color: #43e97b; border: 1px solid rgba(67,233,123,0.25); }
.scanner-info { display: flex; flex-direction: column; gap: 3px; text-align: center; }
.scanner-info span:first-child { font-size: 14px; font-weight: 600; color: var(--text); }
.scanner-info span:last-child { font-size: 12px; color: var(--text-mid); }

/* Analytics mockup */
.mock-analytics { gap: 16px; }
.chart-bars { display: flex; align-items: flex-end; gap: 8px; height: 100px; padding: 0 4px; }
.chart-bar {
  flex: 1; background: rgba(212,175,122,0.12); border-radius: 4px 4px 0 0;
  display: flex; flex-direction: column; justify-content: flex-end; align-items: center; padding-bottom: 4px;
  transition: background var(--trans);
}
.chart-bar.active { background: linear-gradient(to top, var(--gold), var(--gold-light)); }
.chart-bar span { font-size: 9px; color: var(--text-dim); font-family: var(--mono); }
.analytics-chips { display: flex; gap: 10px; }
.a-chip { flex: 1; display: flex; align-items: center; gap: 8px; padding: 10px 12px; background: rgba(212,175,122,0.06); border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 12px; font-weight: 600; color: var(--text-mid); }
.a-chip i { color: var(--gold); }

/* Slide Content */
.slide-content { flex: 1; }
.slide-num { font-family: var(--mono); font-size: 11px; color: var(--text-dim); letter-spacing: 2px; margin-bottom: 16px; }
.slide-title { font-size: clamp(22px,3vw,34px); font-weight: 700; letter-spacing: -1px; color: var(--text); margin-bottom: 16px; line-height: 1.2; }
.slide-text { font-size: 15px; color: var(--text-mid); line-height: 1.7; margin-bottom: 24px; }
.slide-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.slide-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-mid); }
.slide-list li i { color: var(--gold); width: 16px; }

/* Slider Controls */
.slider-controls {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  margin-top: 48px; padding: 0 24px;
}
.slider-btn {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border);
  background: var(--bg-card); color: var(--text-mid); font-size: 14px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--trans), color var(--trans), border-color var(--trans);
}
.slider-btn:hover { background: rgba(212,175,122,0.1); color: var(--gold); border-color: rgba(212,175,122,0.3); }
.slider-dots { display: flex; gap: 8px; }
.sdot { width: 8px; height: 8px; border-radius: 50%; border: none; background: var(--text-dim); cursor: pointer; transition: background var(--trans), transform var(--trans), width var(--trans); }
.sdot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ══════════════════════════════
   4 FEATURES
══════════════════════════════ */
.features-section { position: relative; z-index: 10; padding: 120px 0; }
.features-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 60px; }

.feature-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 26px; display: flex; flex-direction: column; gap: 14px;
  transition: border-color var(--trans), box-shadow var(--trans), transform var(--trans);
}
.feature-card:hover { border-color: rgba(212,175,122,0.3); box-shadow: 0 16px 48px rgba(0,0,0,0.4); transform: translateY(-4px); }
.feature-icon {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  background: rgba(212,175,122,0.08); border: 1px solid rgba(212,175,122,0.2);
  display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--gold);
}
.feature-card h3 { font-size: 16px; font-weight: 700; color: var(--text); }
.feature-card p { font-size: 13px; color: var(--text-mid); line-height: 1.65; flex: 1; }
.feature-link { font-size: 12px; font-weight: 700; color: var(--gold); text-decoration: none; display: flex; align-items: center; gap: 6px; transition: gap var(--trans); }
.feature-link:hover { gap: 10px; }

/* ══════════════════════════════
   TECHNIK
══════════════════════════════ */
.technik-section { position: relative; z-index: 10; padding: 120px 0; }
.technik-inner { max-width: 1160px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; gap: 80px; }

.technik-visual { flex-shrink: 0; width: 420px; }
.technik-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 36px; box-shadow: var(--shadow);
}
.tk-icon-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 28px; }
.tk-icon-item {
  display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 20px 10px;
  background: rgba(212,175,122,0.05); border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-size: 11px; color: var(--text-mid); transition: background var(--trans);
}
.tk-icon-item:hover { background: rgba(212,175,122,0.1); }
.tk-icon-item i { font-size: 24px; color: var(--gold); }
.tk-label { text-align: center; font-size: 12px; color: var(--text-dim); font-family: var(--mono); }

.technik-content { flex: 1; }
.technik-text { font-size: 16px; color: var(--text-mid); line-height: 1.7; margin-bottom: 28px; }
.technik-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.technik-list li { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--text-mid); }
.technik-list li i { color: var(--gold); width: 18px; }
.technik-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ══════════════════════════════
   APP SECTION
══════════════════════════════ */
.app-section { position: relative; z-index: 10; padding: 120px 0; }
.app-section .section-inner { display: flex; align-items: center; gap: 80px; }
.app-content { flex: 1; }
.app-text { font-size: 16px; color: var(--text-mid); line-height: 1.7; margin-bottom: 32px; }
.app-features { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.app-feat-item { display: flex; align-items: center; gap: 16px; }
.af-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm); flex-shrink: 0;
  background: rgba(212,175,122,0.08); border: 1px solid rgba(212,175,122,0.2);
  display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--gold);
}
.app-feat-item > div:last-child { display: flex; flex-direction: column; gap: 2px; }
.app-feat-item strong { font-size: 14px; font-weight: 600; color: var(--text); }
.app-feat-item span { font-size: 12px; color: var(--text-mid); }

/* Phone */
.app-visual { flex-shrink: 0; width: 320px; position: relative; display: flex; justify-content: center; }
.phone-frame {
  width: 260px; height: 520px; background: var(--bg-card2); border: 2px solid var(--border);
  border-radius: 40px; position: relative; overflow: hidden; box-shadow: var(--shadow);
  animation: phoneFloat 5s ease-in-out infinite alternate;
}
@keyframes phoneFloat { from{transform:translateY(0) rotate(-2deg)} to{transform:translateY(-16px) rotate(1deg)} }
.phone-notch { position: absolute; top: 14px; left: 50%; transform: translateX(-50%); width: 60px; height: 10px; background: var(--bg); border-radius: 5px; z-index: 2; }
.phone-screen { position: absolute; inset: 0; padding: 32px 0 0; display: flex; flex-direction: column; overflow: hidden; }

.ps-header { display: flex; align-items: center; justify-content: space-between; padding: 10px 16px; }
.ps-event-name { font-size: 14px; font-weight: 700; color: var(--text); }
.ps-header i { color: var(--text-dim); }

.ps-hero-img { height: 100px; margin: 0 12px 12px; border-radius: var(--radius-sm); overflow: hidden; }
.ps-img-placeholder { height: 100%; background: linear-gradient(135deg, rgba(212,175,122,0.15), rgba(138,104,48,0.2)); display: flex; align-items: center; justify-content: center; }
.ps-img-placeholder i { font-size: 36px; color: rgba(212,175,122,0.4); }

.ps-section { padding: 8px 14px 12px; border-bottom: 1px solid var(--border); }
.ps-label { font-size: 9px; font-weight: 700; letter-spacing: 1.5px; color: var(--text-dim); text-transform: uppercase; font-family: var(--mono); margin-bottom: 8px; }
.ps-act-row { display: flex; align-items: center; gap: 10px; }
.ps-act-avatar { width: 32px; height: 32px; border-radius: 8px; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; color: #0a0906; flex-shrink: 0; }
.ps-act-row strong { font-size: 12px; font-weight: 600; color: var(--text); display: block; }
.ps-act-row span { font-size: 10px; color: var(--text-mid); }
.ps-live-dot { width: 8px; height: 8px; border-radius: 50%; background: #43e97b; margin-left: auto; box-shadow: 0 0 8px #43e97b; animation: livePulse 2s ease-in-out infinite; }
@keyframes livePulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(0.8)} }

.ps-ticket-mini { display: flex; align-items: center; gap: 8px; padding: 8px 10px; background: rgba(212,175,122,0.06); border: 1px solid var(--border); border-radius: 8px; font-size: 11px; color: var(--text-mid); }
.ps-ticket-mini i:first-child { color: var(--gold); }
.ps-ticket-mini i:last-child { margin-left: auto; color: var(--text-dim); font-size: 10px; }
.ps-ticket-mini span { flex: 1; }

.ps-nav { display: flex; border-top: 1px solid var(--border); margin-top: auto; }
.ps-nav-item { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 10px 0; font-size: 9px; color: var(--text-dim); transition: color var(--trans); }
.ps-nav-item.active { color: var(--gold); }
.ps-nav-item i { font-size: 16px; }

.phone-glow { position: absolute; bottom: -40px; left: 50%; transform: translateX(-50%); width: 200px; height: 200px; background: radial-gradient(circle, rgba(212,175,122,0.25) 0%, transparent 70%); pointer-events: none; }

/* ══════════════════════════════
   CTA
══════════════════════════════ */
.cta-section { position: relative; z-index: 10; padding: 80px 24px; overflow: hidden; }
.cta-inner {
  max-width: 700px; margin: 0 auto; text-align: center; position: relative;
  background: var(--bg-card); border: 1px solid rgba(212,175,122,0.2);
  border-radius: var(--radius-lg); padding: 72px 48px;
  box-shadow: 0 0 80px rgba(212,175,122,0.08);
}
.cta-orb { position: absolute; top: -60px; left: 50%; transform: translateX(-50%); width: 300px; height: 300px; background: radial-gradient(circle, rgba(212,175,122,0.15) 0%, transparent 70%); pointer-events: none; }
.cta-inner h2 { font-size: clamp(24px,4vw,40px); font-weight: 700; letter-spacing: -1.5px; margin-bottom: 14px; }
.cta-inner p { font-size: 16px; color: var(--text-mid); margin-bottom: 36px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer { position: relative; z-index: 10; border-top: 1px solid var(--border); padding: 72px 24px 0; }
.footer-inner { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 60px; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-size: 18px; font-weight: 700; margin-bottom: 14px;
  background: linear-gradient(90deg, var(--text), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.footer-logo i { -webkit-text-fill-color: var(--gold); color: var(--gold); }
.footer-logo img { width: 150px; }
.footer-brand p { font-size: 13px; color: var(--text-mid); line-height: 1.6; margin-bottom: 20px; max-width: 240px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 10px; background: rgba(212,175,122,0.06); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--text-mid);
  text-decoration: none; transition: background var(--trans), color var(--trans);
}
.footer-socials a:hover { background: rgba(212,175,122,0.14); color: var(--gold); }

.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text); margin-bottom: 6px; font-family: var(--mono); }
.footer-col a { font-size: 13px; color: var(--text-mid); text-decoration: none; transition: color var(--trans); }
.footer-col a:hover { color: var(--gold); }

.footer-bottom { border-top: 1px solid var(--border); padding: 24px 0; max-width: 1160px; margin: 0 auto; display: flex; justify-content: space-between; font-size: 12px; color: var(--text-dim); }

#cookiePopup{
  width: 100%;
  height: auto;
  position: fixed;
  bottom: -100%;
  left: 0;
  padding: 50px 0;
  background: rgba(10,9,6,0.97);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  box-shadow: 0px 0px 20px rgba(212, 167, 74, 0.7);
  z-index: 9999;
  transition: 0.2s;
  border-top: 0px 0px 20px #d4af7a
}

#cookiePopup.active{
  position: fixed;
  bottom: 0;
}

#cookiePopup .container{
  max-width: 1240px; margin: 0 auto; padding: 0 28px;
}

#cookiePopup .cookieHeader{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

#cookiePopup .cookieHeader h3{
  font-size: 22px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

#cookiePopup .cookieHeader .cookieCloseBtn{
  font-size: 22px;
  cursor: pointer;
  color: #fff;
}

#cookiePopup .textBox{
  width: 100%;
  margin-top: 15px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}

#cookiePopup .textBox p{
  font-size: 15px;
  color: #fff;
  letter-spacing: 1px;
}

#cookiePopup .textBox .cookieButtons a:nth-child(1){
  margin-left: 0;
}

#cookiePopup .textBox .cookieButtons{
  margin-top: 20px;
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
/* ══════════════════════════════
   RESPONSIVE – Layout (Navbar-Regeln → css/nav.css)
══════════════════════════════ */

/* ── 1280px ── */
@media (max-width: 1280px) {
  .hero-visual { width: 420px; }
  #cookiePopup { padding: 15px 20px; }
}

/* ── 1080px: Tablet Landscape ── */
@media (max-width: 1080px) {
  .hero { flex-direction: column; padding-top: 100px; text-align: center; gap: 48px; }
  .hero-content { align-items: center; display: flex; flex-direction: column; }
  .hero-visual { width: 100%; max-width: 520px; }
  .hero-sub { max-width: 100%; }
  .chip-1 { right: 10px; }
  .chip-2 { left: 0; }
  .chip-3 { right: 10px; }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .step-card:first-child { border-radius: var(--radius) var(--radius) 0 0; border-right: 1px solid var(--border); border-bottom: none; }
  .step-card:nth-child(2) { border-right: 1px solid var(--border); border-bottom: none; }
  .step-card:last-child  { border-radius: 0 0 var(--radius) var(--radius); border-top: none; border-right: 1px solid var(--border); }
  .step-line { display: none; }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .technik-inner { flex-direction: column; }
  .technik-visual { width: 100%; }
  .app-section .section-inner { flex-direction: column; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1/-1; }
  .slide { flex-direction: column; gap: 40px; padding: 0 24px; }
  .slide-visual { width: 100%; max-width: 460px; margin: 0 auto; }
  .btn-large { justify-content: center;}
}

/* ── 768px ── */
@media (max-width: 768px) {
  .section-title { letter-spacing: -1px; }
  .hero-stats { flex-wrap: wrap; gap: 14px; justify-content: center; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .chip-2 { display: none; }
}

/* ── 540px: Smartphone ── */
@media (max-width: 540px) {
  .hero { padding: 90px 16px 60px; gap: 36px; }
  .hero-title { letter-spacing: -1.5px; }
  .hero-btns { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-stats { gap: 10px; }
  .stat-num { font-size: 18px; }
  .float-chip { display: none; }
  .steps-section, .features-section, .technik-section, .app-section { padding: 72px 0; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card { border-right: 1px solid var(--border) !important; border-radius: 0 !important; }
  .step-card:first-child { border-radius: var(--radius) var(--radius) 0 0 !important; }
  .step-card:last-child  { border-radius: 0 0 var(--radius) var(--radius) !important; }
  .cta-inner { padding: 40px 20px; }
  .cta-btns { flex-direction: column; align-items: stretch; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: 1; }
  .slider-section .section-inner { padding: 0 16px; }
  #cookiePopup { padding: 10px 16px; }
}

/* ── 380px ── */
@media (max-width: 380px) {
  .hero-badge { font-size: 10px; padding: 6px 12px; }
  .section-inner { padding: 0 16px; }
  #cookiePopup { padding: 7px 12px; }
}

/* ── Scroll-Reveal Animation ── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
