/* ============================================================
   Edelmetalle Lion – Design System v2
   ============================================================ */

:root {
  --gold:         #C9A227;
  --gold-light:   #E8C75A;
  --gold-dark:    #9B7B1A;
  --gold-glow:    rgba(201,162,39,0.18);
  --dark:         #0C0C1A;
  --dark-mid:     #12122A;
  --dark-card:    #181830;
  --dark-card2:   #1E1E38;
  --dark-border:  rgba(201,162,39,0.14);
  --border-dim:   rgba(255,255,255,0.07);
  --text:         #E6E6F2;
  --text-muted:   rgba(230,230,242,0.52);
  --text-dim:     rgba(230,230,242,0.32);
  --white:        #ffffff;
  --green:        #4CAF50;
  --red:          #f44336;
  --blue:         #4A9FE0;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --r:            12px;
  --r-lg:         18px;
  --r-xl:         24px;
  --t:            all 0.32s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  background: var(--dark);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.72;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
input, textarea, select { font-family: inherit; color: var(--text); }
ul, ol { list-style: none; }

/* Particle Canvas */
#particles {
  position: fixed; inset: 0;
  z-index: 0; pointer-events: none;
}

/* ── Typography ── */
.gold-text {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 55%, var(--gold-dark) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-tag {
  display: inline-block;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,162,39,0.09);
  border: 1px solid rgba(201,162,39,0.22);
  padding: 0.3em 1em;
  border-radius: 99px;
  margin-bottom: 1rem;
}
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.2;
  margin-bottom: 1rem;
}
.section-header p { color: var(--text-muted); font-size: 1.05rem; }

/* ── Container ── */
.container {
  max-width: 1200px; margin: 0 auto;
  padding: 0 2rem; position: relative; z-index: 1;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #0C0C1A; font-weight: 700; font-size: 0.95rem;
  padding: 0.9rem 2rem; border-radius: var(--r);
  transition: var(--t);
  box-shadow: 0 4px 24px rgba(201,162,39,0.32);
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.12); opacity: 0;
  transition: opacity 0.25s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 36px rgba(201,162,39,0.5); }
.btn-primary:hover::after { opacity: 1; }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--text); font-weight: 500; font-size: 0.95rem;
  padding: 0.9rem 1.8rem; border-radius: var(--r);
  border: 1px solid rgba(255,255,255,0.13);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  transition: var(--t);
}
.btn-secondary:hover {
  border-color: var(--gold); color: var(--gold);
  background: rgba(201,162,39,0.06);
  transform: translateY(-2px);
}
.link-btn {
  display: inline; background: none; border: none; padding: 0;
  color: var(--gold); text-decoration: underline;
  font-size: inherit; font-family: inherit;
  cursor: pointer;
}

/* ── Scroll Animations ── */
[data-animate] {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-animate].visible { opacity: 1; transform: translateY(0); }
[data-delay="0"]   { transition-delay: 0s; }
[data-delay="100"] { transition-delay: .1s; }
[data-delay="200"] { transition-delay: .2s; }
[data-delay="300"] { transition-delay: .3s; }
[data-delay="400"] { transition-delay: .4s; }
[data-delay="500"] { transition-delay: .5s; }
[data-delay="600"] { transition-delay: .6s; }

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; padding: 1rem 0;
  transition: var(--t);
}
#navbar.scrolled {
  background: rgba(12,12,26,0.96);
  backdrop-filter: blur(24px) saturate(1.5);
  border-bottom: 1px solid var(--dark-border);
  padding: 0.65rem 0;
}
.nav-container {
  max-width: 1200px; margin: 0 auto;
  padding: 0 2rem;
  display: flex; align-items: center; gap: 1.5rem;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.65rem;
  font-family: var(--font-display); font-size: 1.15rem;
  color: var(--text); white-space: nowrap; flex-shrink: 0;
}
.nav-logo strong { color: var(--gold); }

.nav-links {
  display: flex; gap: 0.15rem; margin: 0 auto;
}
.nav-link {
  display: block; padding: 0.4rem 0.85rem;
  font-size: 0.875rem; font-weight: 400;
  color: var(--text-muted); border-radius: 8px;
  transition: var(--t); white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--text); background: rgba(255,255,255,0.05);
}
.nav-link.active { color: var(--gold); }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0C0C1A; font-weight: 700; font-size: 0.85rem;
  padding: 0.55rem 1.3rem; border-radius: 8px;
  white-space: nowrap; transition: var(--t);
  box-shadow: 0 2px 14px rgba(201,162,39,0.28);
  flex-shrink: 0;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 22px rgba(201,162,39,0.45); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 6px; margin-left: auto; flex-shrink: 0;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: var(--t);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 7rem 2rem 4rem;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 65% at 72% 38%, rgba(201,162,39,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 45% 45% at 25% 72%, rgba(201,162,39,0.04) 0%, transparent 60%),
    linear-gradient(180deg, var(--dark) 0%, var(--dark-mid) 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,162,39,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,39,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}

.hero-content {
  max-width: 600px; position: relative; z-index: 1;
  margin-left: calc((100vw - 1200px) / 2);
  padding-left: 2rem;
}
@media (max-width: 1260px) { .hero-content { margin-left: 0; padding-left: 0; } }

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.77rem; color: var(--gold);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeUp .8s ease both;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--gold); border-radius: 50%;
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(201,162,39,.5); }
  50%      { box-shadow: 0 0 0 7px rgba(201,162,39,0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 5.8rem);
  font-weight: 900; line-height: 1.03;
  margin-bottom: 1.5rem;
  animation: fadeUp .9s .08s ease both;
}
.title-line { display: block; }

.hero-subtitle {
  font-size: 1.1rem; color: var(--text-muted);
  line-height: 1.9; margin-bottom: 2.5rem;
  animation: fadeUp .9s .18s ease both;
}

.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeUp .9s .28s ease both;
}

.hero-stats {
  display: flex; align-items: center; gap: 1.5rem;
  animation: fadeUp .9s .38s ease both;
}
.stat { text-align: center; }
.stat-value {
  display: block;
  font-family: var(--font-display); font-size: 1.45rem;
  font-weight: 700; color: var(--gold);
}
.stat-label {
  display: block; font-size: 0.72rem; font-weight: 500;
  color: var(--text-muted); text-transform: uppercase; letter-spacing: .1em;
}
.stat-divider { width: 1px; height: 34px; background: var(--dark-border); }

/* Hero Visual */
.hero-visual {
  position: absolute; right: 6%; top: 50%;
  transform: translateY(-50%);
  width: 380px; height: 380px;
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
}
@media (max-width: 1040px) { .hero-visual { display: none; } }

.gold-orb { position: absolute; border-radius: 50%; filter: blur(44px); pointer-events: none; }
.orb-1 {
  width: 290px; height: 290px;
  background: radial-gradient(circle, rgba(201,162,39,0.14), transparent 70%);
  animation: orbFloat1 6s ease-in-out infinite;
}
.orb-2 {
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(201,162,39,0.07), transparent 70%);
  top: 8%; right: 4%;
  animation: orbFloat2 8s ease-in-out infinite;
}
@keyframes orbFloat1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-18px,-18px)} }
@keyframes orbFloat2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(14px,24px)} }

.coin-stack { position: relative; width: 140px; height: 200px; }
.coin {
  position: absolute; width: 120px; height: 120px; border-radius: 50%;
  border: 2px solid var(--gold);
  background: radial-gradient(circle at 35% 35%, rgba(201,162,39,.28), rgba(201,162,39,.04));
  box-shadow: 0 0 22px rgba(201,162,39,.14), inset 0 0 32px rgba(201,162,39,.04);
  left: 50%; transform: translateX(-50%);
}
.coin-1 { top: 80px; opacity: .18; }
.coin-2 { top: 60px; opacity: .32; }
.coin-3 { top: 40px; opacity: .5;  animation: coinFloat 4s ease-in-out infinite; }
.coin-4 { top: 20px; opacity: .72; animation: coinFloat 4s .3s ease-in-out infinite; }
.coin-5 { top: 0;    opacity: .9;  animation: coinFloat 4s .6s ease-in-out infinite; }
@keyframes coinFloat {
  0%,100%{transform:translateX(-50%) translateY(0)}
  50%{transform:translateX(-50%) translateY(-12px)}
}

.floating-badge {
  position: absolute;
  display: flex; align-items: center; gap: .7rem;
  background: rgba(24,24,48,.92);
  border: 1px solid var(--dark-border);
  border-radius: var(--r); padding: .75rem 1rem;
  backdrop-filter: blur(14px);
  font-size: .78rem; line-height: 1.4;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}
.badge-xray { bottom: 28px; right: -20px; animation: badgeFloat 5s ease-in-out infinite; }
@keyframes badgeFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: var(--text-dim); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  z-index: 1; animation: fadeIn 1.5s 1.2s ease both;
}
.scroll-arrow {
  width: 18px; height: 18px;
  border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce { 0%,100%{transform:rotate(45deg) translateY(0)} 50%{transform:rotate(45deg) translateY(6px)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }

/* ══════════════════════════════════════════
   SERVICES
══════════════════════════════════════════ */
.services {
  padding: 7rem 0; background: var(--dark-mid);
  position: relative; z-index: 1;
}
.services::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .25;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.25rem;
}

.service-card {
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: var(--r-lg); padding: 2rem;
  position: relative; transition: var(--t); overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,162,39,.05) 0%, transparent 55%);
  opacity: 0; transition: opacity .3s;
}
.service-card:hover {
  border-color: rgba(201,162,39,.36); transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,.36), 0 0 0 1px rgba(201,162,39,.08);
}
.service-card:hover::before { opacity: 1; }
.service-card.featured {
  border-color: rgba(201,162,39,.3);
  background: linear-gradient(150deg, rgba(201,162,39,.05) 0%, var(--dark-card) 55%);
}

.featured-badge {
  position: absolute; top: 1.1rem; right: 1.1rem;
  background: var(--gold); color: #0C0C1A;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .25em .75em; border-radius: 99px;
}

.service-icon { width: 60px; height: 60px; margin-bottom: 1.2rem; }
.service-icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 700;
  margin-bottom: .6rem; position: relative;
}
.service-card p {
  color: var(--text-muted); font-size: .88rem;
  margin-bottom: 1rem; position: relative; line-height: 1.65;
}
.service-tags { display: flex; flex-wrap: wrap; gap: .35rem; position: relative; }
.service-tags span {
  font-size: .7rem; color: var(--gold);
  background: rgba(201,162,39,.08); border: 1px solid rgba(201,162,39,.2);
  padding: .2em .75em; border-radius: 99px; font-weight: 500;
}

/* ══════════════════════════════════════════
   ÜBER UNS / FISCHER
══════════════════════════════════════════ */
.about {
  padding: 7rem 0; background: var(--dark); position: relative; z-index: 1;
}

.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
@media (max-width: 920px) { .about-grid { grid-template-columns: 1fr; gap: 3rem; } }

.about-visual { position: relative; }
.about-image-wrap { position: relative; padding: 1.5rem; }
.about-image-bg {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 40% 40%, rgba(201,162,39,.1), transparent 70%);
  border-radius: var(--r-lg);
}

/* Fischer Device */
.fischer-device-wrap {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.5rem 1.2rem;
  position: relative; z-index: 1;
}
.fischer-device-label {
  font-size: .72rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem; opacity: .85;
}
.fischer-svg { width: 100%; height: auto; display: block; }

.fischer-specs {
  display: flex; flex-direction: column; gap: .5rem;
  margin-top: 1.2rem; padding-top: 1.2rem;
  border-top: 1px solid var(--dark-border);
}
.spec-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: .82rem; color: var(--text-muted);
}
.spec-item svg { flex-shrink: 0; }

.floating-tag {
  position: absolute;
  display: flex; align-items: center; gap: .55rem;
  background: rgba(12,12,26,.94);
  border: 1px solid var(--dark-border);
  border-radius: var(--r); padding: .7rem 1rem;
  backdrop-filter: blur(14px);
  font-size: .78rem; line-height: 1.4;
  box-shadow: 0 8px 32px rgba(0,0,0,.4); z-index: 2;
}
.tag-certified { bottom: -16px; right: 24px; animation: badgeFloat 6.5s 1s ease-in-out infinite; }

.about-content .section-tag { margin-bottom: .8rem; }
.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  font-weight: 700; line-height: 1.18; margin-bottom: 1.2rem;
}
.about-lead { font-size: 1.05rem; margin-bottom: 1rem; }
.about-content p { color: var(--text-muted); margin-bottom: 1.4rem; font-size: .96rem; }
.about-content strong { color: var(--text); }

.about-highlights { display: flex; flex-direction: column; gap: .85rem; margin-bottom: 2rem; }
.highlight {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: .9rem 1rem;
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: var(--r); transition: var(--t);
}
.highlight:hover { border-color: rgba(201,162,39,.28); background: rgba(201,162,39,.03); }
.highlight-icon {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,162,39,.09); border-radius: 8px; flex-shrink: 0;
}
.highlight strong { display: block; font-size: .92rem; }
.highlight span { display: block; font-size: .8rem; color: var(--text-muted); }

.about-contact-quick { display: flex; gap: 1rem; flex-wrap: wrap; }
.quick-link {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .65rem 1.2rem;
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: var(--r); font-size: .88rem; font-weight: 500;
  transition: var(--t);
}
.quick-link:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,162,39,.05); }

/* ══════════════════════════════════════════
   MARKTPREISE (LIVE)
══════════════════════════════════════════ */
.prices {
  padding: 7rem 0; background: var(--dark-mid);
  position: relative; z-index: 1;
}
.prices::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .2;
}

.price-live-wrapper {
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.4);
}

.price-live-topbar {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(201,162,39,.05);
  border-bottom: 1px solid var(--dark-border);
  flex-wrap: wrap;
}
.live-pill {
  display: flex; align-items: center; gap: .5rem;
  background: rgba(201,162,39,.1); border: 1px solid rgba(201,162,39,.25);
  border-radius: 99px; padding: .25em .9em;
  font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold);
}
.live-dot {
  width: 7px; height: 7px;
  background: var(--gold); border-radius: 50%;
  animation: pulse 1.8s infinite;
}
.price-timestamp { font-size: .8rem; color: var(--text-muted); }
.price-source-note {
  font-size: .72rem; color: var(--text-dim);
  margin-left: auto;
}

.price-table-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  padding: 1.5rem;
  gap: 1rem;
}

/* Loading state */
.price-loading {
  grid-column: 1 / -1;
  display: flex; align-items: center; gap: 1rem;
  justify-content: center;
  padding: 3rem; color: var(--text-muted); font-size: .9rem;
}
.loading-ring {
  width: 28px; height: 28px;
  border: 2px solid rgba(201,162,39,.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin .9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Price Row */
.price-row {
  background: var(--dark-card2); border: 1px solid var(--dark-border);
  border-radius: var(--r); padding: 1rem 1.2rem;
  display: flex; align-items: center; gap: 1rem;
  transition: var(--t);
}
.price-row:hover { border-color: rgba(201,162,39,.3); background: rgba(201,162,39,.03); }
.price-row.is-primary { border-color: rgba(201,162,39,.25); }

.pm-symbol {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; flex-shrink: 0; font-family: var(--font-display);
  font-size: .9rem; font-weight: 700;
}
.pm-symbol.au  { background: rgba(201,162,39,.12); color: var(--gold); border: 1px solid rgba(201,162,39,.3); }
.pm-symbol.ag  { background: rgba(192,192,192,.1); color: #C0C0C0; border: 1px solid rgba(192,192,192,.25); }
.pm-symbol.pt  { background: rgba(74,159,224,.08); color: #4A9FE0; border: 1px solid rgba(74,159,224,.2); }
.pm-symbol.pd  { background: rgba(150,180,220,.08); color: #96B4DC; border: 1px solid rgba(150,180,220,.18); }

.pm-info { flex: 1; min-width: 0; }
.pm-name { display: block; font-size: .9rem; font-weight: 600; }
.pm-sub  { display: block; font-size: .72rem; color: var(--text-muted); }

.pm-price { text-align: right; }
.pm-value {
  display: block; font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 700; color: var(--gold);
  white-space: nowrap;
}
.pm-change {
  display: inline-flex; align-items: center; gap: .2rem;
  font-size: .7rem; font-weight: 500; padding: .15em .5em; border-radius: 4px;
}
.pm-change.up   { color: #4CAF50; background: rgba(76,175,80,.1); }
.pm-change.down { color: #f44336; background: rgba(244,67,54,.1); }
.pm-change svg  { width: 10px; height: 10px; }

.price-disclaimer {
  text-align: center; font-size: .78rem; color: var(--text-dim);
  padding: 1.5rem 1.5rem .5rem; max-width: 760px; margin: 0 auto;
}

/* ══════════════════════════════════════════
   PROZESS
══════════════════════════════════════════ */
.process { padding: 7rem 0; background: var(--dark); position: relative; z-index: 1; }

.process-steps {
  display: flex; align-items: flex-start; gap: 0;
  overflow-x: auto; padding-bottom: .5rem;
}
@media (max-width: 768px) {
  .process-steps { flex-direction: column; align-items: stretch; }
  .process-connector { width: 100% !important; height: 40px; padding: 0 !important; }
  .process-connector .connector-line { width: 2px !important; height: 100%; margin: 0 auto; }
  .process-connector .connector-line::after { right: -4px; top: auto; bottom: -4px; border-right: none; border-bottom: 2px solid var(--gold); border-left: 2px solid var(--gold); transform: rotate(-45deg); }
}

.process-step {
  flex: 1; min-width: 170px; text-align: center;
  padding: 2rem 1.5rem;
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: var(--r-lg); transition: var(--t);
}
.process-step:hover { border-color: rgba(201,162,39,.3); transform: translateY(-4px); }

.step-number {
  font-family: var(--font-display); font-size: 2.8rem; font-weight: 900;
  color: rgba(201,162,39,.1); line-height: 1; margin-bottom: .7rem;
}
.step-icon { width: 48px; height: 48px; margin: 0 auto .9rem; }
.process-step h4 { font-size: .95rem; font-weight: 600; margin-bottom: .5rem; }
.process-step p { font-size: .83rem; color: var(--text-muted); line-height: 1.65; }

.process-connector {
  width: 52px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  padding-top: 4.5rem;
}
.connector-line {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, rgba(201,162,39,.25), rgba(201,162,39,.6), rgba(201,162,39,.25));
  position: relative;
}
.connector-line::after {
  content: ''; position: absolute; right: -4px; top: -4px;
  width: 8px; height: 8px;
  border-top: 2px solid var(--gold); border-right: 2px solid var(--gold);
  transform: rotate(45deg);
}

/* ══════════════════════════════════════════
   ÖFFNUNGSZEITEN & KARTE
══════════════════════════════════════════ */
.hours { padding: 7rem 0; background: var(--dark-mid); position: relative; z-index: 1; }
.hours::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: .2;
}

.hours-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
}
@media (max-width: 920px) { .hours-grid { grid-template-columns: 1fr; gap: 3rem; } }

.hours-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700; margin: .8rem 0 1rem;
}
.hours-content > p { color: var(--text-muted); font-size: .95rem; margin-bottom: 2rem; }

.hours-table { display: flex; flex-direction: column; gap: .7rem; }
.hours-row {
  display: flex; align-items: center; gap: 1rem;
  padding: .9rem 1.1rem;
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: var(--r); transition: var(--t);
}
.hours-row:hover { border-color: rgba(201,162,39,.22); }
.hours-row.appointment { border-style: dashed; }

.hours-day { display: flex; align-items: center; gap: .55rem; min-width: 130px; }
.day-short {
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,162,39,.09); border-radius: 6px;
  font-size: .78rem; font-weight: 700; color: var(--gold);
}
.day-full { font-size: .88rem; font-weight: 500; }
.hours-time { flex: 1; font-size: .88rem; }

.hours-status {
  font-size: .68rem; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; padding: .25em .75em; border-radius: 99px;
  white-space: nowrap;
}
.hours-status.open { background: rgba(76,175,80,.1); color: #4CAF50; border: 1px solid rgba(76,175,80,.22); }
.hours-status.appt { background: rgba(201,162,39,.09); color: var(--gold); border: 1px solid rgba(201,162,39,.22); }

/* Adresse-Karte */
.address-card {
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: var(--r-lg); padding: 1.4rem 1.4rem;
  display: flex; align-items: flex-start; gap: 1rem; flex-wrap: wrap;
}
.address-info { flex: 1; display: flex; flex-direction: column; gap: .2rem; }
.address-info strong { font-size: .95rem; color: var(--gold); }
.address-info span { font-size: .87rem; color: var(--text-muted); }
.address-district { font-size: .75rem !important; }

.map-btn {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .55rem 1rem;
  background: rgba(201,162,39,.09); border: 1px solid rgba(201,162,39,.22);
  border-radius: var(--r); font-size: .8rem; color: var(--gold);
  transition: var(--t); white-space: nowrap; margin-top: .5rem;
}
.map-btn:hover { background: rgba(201,162,39,.16); }

/* OpenStreetMap */
.hours-map-section { display: flex; flex-direction: column; gap: 0; }
.map-container-wrap {
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--dark-border);
  background: #0C0C1A;
}
.map-osm-label {
  display: flex; align-items: center; gap: .5rem;
  padding: .7rem 1rem;
  background: var(--dark-card); border-bottom: 1px solid var(--dark-border);
  font-size: .8rem; color: var(--text-muted);
}
#osmMap.osm-map-frame { width: 100%; height: 320px; }
/* Override Leaflet default z-index to stay below nav */
.leaflet-pane { z-index: 2 !important; }
.leaflet-top, .leaflet-bottom { z-index: 3 !important; }

/* ══════════════════════════════════════════
   KONTAKT
══════════════════════════════════════════ */
.contact { padding: 7rem 0; background: var(--dark); position: relative; z-index: 1; }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 4rem; align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

.contact-channels { display: flex; flex-direction: column; gap: .9rem; }
.contact-channel {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.1rem 1.2rem;
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: var(--r); transition: var(--t); color: var(--text);
}
a.contact-channel:hover {
  border-color: rgba(201,162,39,.38); transform: translateX(4px);
  background: rgba(201,162,39,.03);
}
.contact-channel.static { cursor: default; }

.channel-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px; flex-shrink: 0;
}
.channel-icon.phone    { background: rgba(201,162,39,.1); color: var(--gold); }
.channel-icon.email    { background: rgba(74,159,224,.09); color: #4A9FE0; }
.channel-icon.location { background: rgba(255,100,100,.09); color: #FF6464; }

.channel-info { flex: 1; }
.channel-info strong { display: block; font-size: .88rem; font-weight: 600; margin-bottom: .1rem; }
.channel-info span   { display: block; font-size: .88rem; color: var(--gold); }
.channel-info small  { display: block; font-size: .74rem; color: var(--text-muted); margin-top: .1rem; }
.channel-arrow { flex-shrink: 0; opacity: .35; }

.contact-privacy-note {
  display: flex; align-items: flex-start; gap: .65rem;
  padding: 1rem 1.1rem;
  background: rgba(201,162,39,.04); border: 1px solid rgba(201,162,39,.12);
  border-radius: var(--r);
  font-size: .78rem; color: var(--text-muted); line-height: 1.6;
}
.contact-privacy-note svg { flex-shrink: 0; margin-top: 1px; }

/* ── Contact Form ── */
.contact-form {
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: var(--r-xl); padding: 2.2rem;
  position: relative;
}

/* Honeypot */
.hp-field {
  position: absolute; left: -9999px; top: -9999px;
  width: 1px; height: 1px; overflow: hidden; opacity: 0;
  pointer-events: none; tab-index: -1;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; gap: .38rem; margin-bottom: 1.1rem; }
.form-group label {
  font-size: .78rem; font-weight: 600; color: var(--text-muted);
  letter-spacing: .04em;
  display: flex; align-items: center; gap: .4rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09);
  border-radius: 8px; padding: .72rem 1rem;
  font-size: .9rem; color: var(--text);
  transition: var(--t); appearance: none; -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(230,230,242,.22); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none; border-color: rgba(201,162,39,.45);
  background: rgba(201,162,39,.03);
  box-shadow: 0 0 0 3px rgba(201,162,39,.1);
}
.form-group select option { background: #181830; color: var(--text); }
textarea { resize: vertical; min-height: 100px; }

/* Captcha */
.form-captcha label { color: var(--text-muted); font-size: .8rem; }
.captcha-hint { font-size: .72rem; color: var(--text-dim); margin-top: .2rem; }
.form-captcha input { max-width: 120px; }

/* Privacy Checkbox */
.form-privacy {
  display: flex; align-items: flex-start; gap: .7rem;
  margin-bottom: 1.4rem;
}
.form-privacy input[type="checkbox"] {
  width: 17px; height: 17px; flex-shrink: 0; margin-top: 3px;
  accent-color: var(--gold);
}
.form-privacy label { font-size: .8rem; color: var(--text-muted); line-height: 1.55; }

.form-submit {
  width: 100%; justify-content: center;
  font-size: .98rem; padding: 1rem;
}

.form-error {
  margin-top: .8rem; padding: .8rem 1rem;
  background: rgba(244,67,54,.08); border: 1px solid rgba(244,67,54,.25);
  border-radius: var(--r);
  font-size: .83rem; color: #f44336;
  display: none;
}
.form-error.show { display: block; }

.form-success {
  display: none; align-items: center; gap: .8rem;
  padding: 1rem 1.2rem;
  background: rgba(201,162,39,.07); border: 1px solid rgba(201,162,39,.28);
  border-radius: var(--r); margin-top: 1rem;
  font-size: .88rem; color: var(--gold);
}
.form-success.show { display: flex; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: var(--dark); border-top: 1px solid var(--dark-border);
  padding: 4rem 0 2rem; position: relative; z-index: 1;
}

.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem; margin-bottom: 3rem;
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .footer-logo {
  display: flex; align-items: center; gap: .65rem;
  font-family: var(--font-display); font-size: 1.15rem; margin-bottom: .9rem;
}
.footer-brand .footer-logo strong { color: var(--gold); }
.footer-brand p { font-size: .84rem; color: var(--text-muted); line-height: 1.7; max-width: 240px; }

.footer-links { display: flex; flex-direction: column; gap: .45rem; }
.footer-links strong {
  font-size: .72rem; text-transform: uppercase;
  letter-spacing: .12em; color: var(--gold); margin-bottom: .3rem;
}
.footer-links a, .footer-legal-btn {
  font-size: .84rem; color: var(--text-muted);
  transition: color .2s; background: none; border: none; padding: 0;
  text-align: left; font-family: inherit; cursor: pointer;
}
.footer-links a:hover, .footer-legal-btn:hover { color: var(--text); }

.footer-contact { display: flex; flex-direction: column; gap: .45rem; }
.footer-contact strong {
  font-size: .72rem; text-transform: uppercase;
  letter-spacing: .12em; color: var(--gold); margin-bottom: .3rem;
}
.footer-contact a, .footer-contact span { font-size: .84rem; color: var(--text-muted); }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 2rem; border-top: 1px solid var(--dark-border);
  font-size: .77rem; color: var(--text-dim); flex-wrap: wrap; gap: .5rem;
}

/* ══════════════════════════════════════════
   MODALS
══════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(6,6,16,.88); backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  padding: 2rem; opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }

.modal-box {
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: var(--r-xl); width: 100%; max-width: 720px;
  max-height: 88vh; display: flex; flex-direction: column;
  box-shadow: 0 40px 120px rgba(0,0,0,.6);
  transform: translateY(20px) scale(.97);
  transition: transform .3s ease, opacity .3s ease;
}
.modal-overlay.open .modal-box { transform: translateY(0) scale(1); }

.modal-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.4rem 1.8rem; border-bottom: 1px solid var(--dark-border);
  flex-shrink: 0;
}
.modal-header h2 {
  font-family: var(--font-display); font-size: 1.4rem;
  font-weight: 700; color: var(--gold);
}
.modal-close {
  width: 36px; height: 36px; font-size: 1.4rem; line-height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px; color: var(--text-muted);
  transition: var(--t);
}
.modal-close:hover { background: rgba(255,255,255,.08); color: var(--text); }

.modal-body {
  overflow-y: auto; padding: 1.8rem;
  font-size: .9rem; line-height: 1.78;
  color: var(--text-muted);
}
.modal-body h3 {
  font-family: var(--font-display); font-size: 1.05rem;
  font-weight: 700; color: var(--text);
  margin: 1.4rem 0 .5rem;
}
.modal-body h3:first-child { margin-top: 0; }
.modal-body p { margin-bottom: .75rem; }
.modal-body a { color: var(--gold); text-decoration: underline; }
.modal-body a:hover { color: var(--gold-light); }

/* ══════════════════════════════════════════
   RESPONSIVE – Mobile Nav
══════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links {
    position: fixed; top: 0; right: 0;
    width: 280px; height: 100vh;
    background: rgba(12,12,26,.98); backdrop-filter: blur(24px);
    flex-direction: column; padding: 5.5rem 1.8rem 2rem;
    gap: .2rem; transform: translateX(100%);
    transition: transform .35s ease;
    border-left: 1px solid var(--dark-border);
    z-index: 999;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link { padding: .75rem 1rem; font-size: .98rem; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
}

@media (max-width: 600px) {
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .hero-stats { flex-wrap: wrap; justify-content: center; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: rgba(201,162,39,.28); border-radius: 3px; }

/* ══════════════════════════════════════════
   LOGO (Navbar + Footer)
══════════════════════════════════════════ */
.nav-logo-img {
  width: 36px; height: 36px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 12%;
  border: 1.5px solid rgba(201,162,39,.45);
  flex-shrink: 0;
}
.footer-logo-img {
  width: 32px; height: 32px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 12%;
  border: 1px solid rgba(201,162,39,.35);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   HERO CHIP VISUAL
══════════════════════════════════════════ */
.chip-visual-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chip-svg {
  width: 360px;
  height: 360px;
  filter: drop-shadow(0 0 20px rgba(201,162,39,.28)) drop-shadow(0 0 50px rgba(201,162,39,.1));
  animation: chipGlow 3.5s ease-in-out infinite;
}

@keyframes chipGlow {
  0%,100% { filter: drop-shadow(0 0 18px rgba(201,162,39,.25)) drop-shadow(0 0 45px rgba(201,162,39,.08)); }
  50%      { filter: drop-shadow(0 0 35px rgba(201,162,39,.55)) drop-shadow(0 0 75px rgba(201,162,39,.22)); }
}

.badge-metals {
  top: 22px;
  left: -18px;
  animation: badgeFloat 7s ease-in-out infinite;
}

/* ══════════════════════════════════════════
   ADRESSE UNTER KARTE
══════════════════════════════════════════ */
.map-address-info {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: .85rem 1.1rem;
  background: var(--dark-card);
  border-top: 1px solid var(--dark-border);
  flex-wrap: wrap;
}
.map-address-info svg { flex-shrink: 0; }
.map-address-info address {
  flex: 1;
  font-style: normal;
  font-size: .83rem;
  color: var(--text-muted);
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: .1rem;
}
.map-address-info address strong {
  color: var(--gold);
  font-size: .88rem;
}
.map-addr-district {
  font-size: .76rem;
  color: var(--text-dim);
}
.map-addr-phone {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem .9rem;
  background: rgba(201,162,39,.08);
  border: 1px solid rgba(201,162,39,.22);
  border-radius: var(--r);
  font-size: .82rem;
  color: var(--gold);
  white-space: nowrap;
  transition: var(--t);
}
.map-addr-phone:hover {
  background: rgba(201,162,39,.16);
}

/* ══════════════════════════════════════════
   WHATSAPP / ANRUF AUSWAHL-OVERLAY
══════════════════════════════════════════ */
.phone-choice-overlay {
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(6,6,16,.82);
  backdrop-filter: blur(10px);
  display: none;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity .28s ease;
}
.phone-choice-overlay.open { opacity: 1; }

.phone-choice-box {
  background: var(--dark-card2);
  border: 1px solid var(--dark-border);
  border-radius: var(--r-xl);
  padding: 1.8rem 1.5rem;
  width: 100%;
  max-width: 380px;
  text-align: center;
  transform: translateY(40px);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
  box-shadow: 0 -8px 50px rgba(0,0,0,.5);
}
.phone-choice-overlay.open .phone-choice-box { transform: translateY(0); }

.phone-choice-title {
  font-size: .8rem; font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: .4rem;
}
.phone-choice-num {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.4rem;
}

.phone-choice-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
  margin-bottom: .9rem;
}

.phone-choice-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .85rem 1rem;
  border-radius: var(--r);
  font-size: .92rem;
  font-weight: 600;
  transition: var(--t);
}
.btn-call {
  background: rgba(201,162,39,.12);
  border: 1px solid rgba(201,162,39,.3);
  color: var(--gold);
}
.btn-call:hover {
  background: rgba(201,162,39,.22);
}
.btn-whatsapp {
  background: rgba(37,211,102,.12);
  border: 1px solid rgba(37,211,102,.3);
  color: #25D366;
}
.btn-whatsapp:hover {
  background: rgba(37,211,102,.22);
}

.phone-choice-cancel {
  width: 100%;
  padding: .65rem;
  font-size: .85rem;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  transition: color .2s;
}
.phone-choice-cancel:hover { color: var(--text); }
::-webkit-scrollbar-thumb:hover { background: rgba(201,162,39,.45); }
