/* ════════════════════════════════════════════════════════════════════
   UHU-CMS Verteilzentrum — Schaufenster
   Stilrichtung wie das eARA-Werbeposter: tiefes Marineblau als Bühne,
   große Serif-Headlines mit goldenem Schlüsselwort, kreisförmige
   gold-umrandete Icons, kräftige Goldakzente.
   ════════════════════════════════════════════════════════════════════ */

:root {
  --blue-dark: #0d1f3c;
  --blue:      #14213d;
  --blue-soft: #1a2e5a;
  --gold:      #e8b84b;
  --gold-h:    #f5c768;
  --gold-dark: #b88e2a;
  --text-dim:  rgba(255,255,255,.78);
  --hairline:  rgba(232,184,75,.25);
  --shadow:    0 4px 12px rgba(0,0,0,.25), 0 24px 48px rgba(0,0,0,.35);
  --radius:    14px;
}

*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font: 16px/1.65 "Inter", ui-sans-serif, system-ui, "Segoe UI", sans-serif;
  color: #ffffff;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(232,184,75,.08), transparent 70%),
    radial-gradient(900px 500px at -10% 110%, rgba(232,184,75,.06), transparent 70%),
    var(--blue-dark);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--gold); text-decoration: none; transition: color .15s; }
a:hover { color: var(--gold-h); }

/* ─── Layout ───────────────────────────────────────────────────────── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }
.section   { padding: 5rem 0; }
.section + .section { border-top: 1px solid var(--hairline); }
.section-label {
  display: inline-block; color: var(--gold); font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em; font-size: .82rem;
  margin-bottom: .75rem;
}

h1, h2, h3 {
  line-height: 1.15; letter-spacing: -.015em;
  font-family: "Cormorant Garamond", "EB Garamond", "Playfair Display", "Georgia", serif;
  font-weight: 600; margin: 0 0 1rem; color: #ffffff;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h1 .gold { color: var(--gold); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.4rem; font-weight: 600; }
p  { margin: 0 0 1rem; color: var(--text-dim); font-size: 1rem; line-height: 1.7; }
.lead { font-size: 1.2rem; color: var(--text-dim); max-width: 720px; margin-bottom: 2rem; }
.lead em { color: var(--gold); font-style: normal; font-weight: 600; }

code { background: rgba(232,184,75,.12); color: var(--gold); padding: .1em .4em; border-radius: 4px; font-size: .92em; }

/* ─── Header ───────────────────────────────────────────────────────── */
.site-header {
  background: rgba(13,31,60,.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
  position: sticky; top: 0; z-index: 10;
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1.1rem; padding-bottom: 1.1rem;
}
.brand { display: flex; align-items: center; gap: 1rem; color: #fff; }
.brand img {
  height: 56px; width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.4));
}
.brand-text { line-height: 1.05; }
.brand-name {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700; color: var(--gold);
  font-size: 1.7rem; letter-spacing: .02em;
}
.brand-sub {
  display: block; margin-top: .15rem;
  font-size: .72rem; color: rgba(255,255,255,.7);
  font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
}
.main-nav { display: flex; gap: 2rem; }
.main-nav a {
  color: rgba(255,255,255,.85); font-weight: 500;
  padding: .25rem 0;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.main-nav a:hover { color: var(--gold); }
.main-nav a.active { color: var(--gold); border-bottom-color: var(--gold); }

/* ─── Goldene Trennlinie — wie im Poster zwischen Logo und Headline ─ */
.gold-rule {
  height: 1px; background: var(--gold);
  opacity: .55; max-width: 1140px;
  margin: 0 auto;
}

/* ─── Hero ─────────────────────────────────────────────────────────── */
.hero {
  padding: 6rem 0 4rem;
  position: relative;
}
.hero h1 { max-width: 900px; }
.hero .lead { margin-top: 1.5rem; }
.hero-cta { margin-top: 2.5rem; display: flex; gap: 1rem; flex-wrap: wrap; }

/* ─── Buttons (eARA-Pillen) ────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .95rem 1.8rem;
  border-radius: 999px;
  font-weight: 700; font-size: .95rem;
  text-decoration: none;
  border: 2px solid transparent;
  letter-spacing: .02em;
  transition: transform .12s, background .15s, border-color .15s, color .15s;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--gold); color: var(--blue-dark);
}
.btn-primary:hover { background: var(--gold-h); color: var(--blue-dark); }
.btn-outline {
  background: transparent; color: #fff;
  border-color: rgba(255,255,255,.4);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ─── Feature-Liste mit kreisförmigen Gold-Icons (eARA-Stil) ───────── */
.features {
  display: grid; gap: 1.25rem 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  margin-top: 3rem;
}
.feature {
  display: flex; gap: 1.1rem; align-items: flex-start;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
}
.feature-icon {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  background: rgba(232,184,75,.08);
}
.feature h3 {
  color: var(--gold); font-size: 1.15rem; margin-bottom: .35rem;
  font-family: "Inter", sans-serif; font-weight: 700; letter-spacing: -.005em;
}
.feature p { margin: 0; font-size: .93rem; color: var(--text-dim); }

/* ─── Schritt-Karten ───────────────────────────────────────────────── */
.steps {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 2.5rem;
}
.step {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem;
  position: relative;
}
.step-num {
  position: absolute; top: -.85rem; left: 1.5rem;
  background: var(--gold); color: var(--blue-dark);
  width: 1.8rem; height: 1.8rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .95rem;
}
.step h3 {
  margin-top: .35rem; font-family: "Inter", sans-serif;
  font-weight: 700; font-size: 1.1rem; color: var(--gold);
}
.step p { margin: 0; font-size: .92rem; }

/* ─── Pakete ───────────────────────────────────────────────────────── */
.paket {
  max-width: 540px; margin: 2.5rem auto 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(232,184,75,.08), transparent 60%),
    rgba(255,255,255,.04);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 2.5rem 2.25rem;
  box-shadow: var(--shadow);
  position: relative;
}
.paket::before {
  content: '✦ einziges Paket';
  position: absolute; top: -.85rem; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--blue-dark);
  padding: .25rem .9rem; border-radius: 999px;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  white-space: nowrap;
}
.paket-name {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700; font-size: 1.8rem; color: var(--gold);
  text-align: center; letter-spacing: .01em;
}
.paket-preis {
  text-align: center; margin: .5rem 0 1.5rem;
}
.paket-preis .num {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700; font-size: 3.5rem; color: #fff; line-height: 1;
}
.paket-preis .unit { color: var(--text-dim); font-size: 1rem; display: block; margin-top: .35rem; }
.paket ul {
  list-style: none; padding: 0; margin: 1.5rem 0 2rem;
}
.paket li {
  padding: .55rem 0 .55rem 2rem;
  position: relative;
  color: var(--text-dim);
  border-bottom: 1px solid var(--hairline);
}
.paket li::before {
  content: '✓'; position: absolute; left: 0; top: .55rem;
  width: 1.4rem; height: 1.4rem; border-radius: 50%;
  border: 2px solid var(--gold); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 800;
}
.paket li:last-child { border-bottom: 0; }
.paket .btn { width: 100%; justify-content: center; }

/* ─── Form ─────────────────────────────────────────────────────────── */
form.kontakt {
  max-width: 600px;
  display: grid; gap: 1rem;
  margin-top: 2rem;
}
form.kontakt label {
  display: block; font-weight: 500; color: #fff;
  font-size: .9rem; margin-bottom: .35rem;
  letter-spacing: .02em;
}
form.kontakt input, form.kontakt textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  color: #fff; font: inherit;
}
form.kontakt input:focus, form.kontakt textarea:focus {
  outline: 2px solid var(--gold); outline-offset: 1px;
  border-color: var(--gold);
  background: rgba(255,255,255,.09);
}
form.kontakt input::placeholder, form.kontakt textarea::placeholder {
  color: rgba(255,255,255,.4);
}

/* ─── Hinweis-Boxen ────────────────────────────────────────────────── */
.note {
  background: rgba(232,184,75,.08);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.25rem;
  border-radius: 8px;
  color: #fff;
  margin: 1.5rem 0;
}
.note strong { color: var(--gold); }

/* ─── Stat-Bar im Footer (drei-Spalten wie im eARA-Poster) ─────────── */
.statbar {
  background: rgba(0,0,0,.25);
  border-top: 1px solid var(--hairline);
  padding: 2rem 0;
  margin-top: 4rem;
}
.statbar .container {
  display: grid; gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: center;
}
.stat {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 0 .5rem;
  border-left: 1px solid var(--hairline);
}
.stat:first-child { border-left: 0; }
.stat-icon {
  font-size: 1.6rem; color: var(--gold);
  flex: 0 0 auto;
}
.stat-text strong {
  display: block; color: var(--gold);
  text-transform: uppercase; letter-spacing: .12em;
  font-size: .8rem; margin-bottom: .15rem;
}
.stat-text span { color: var(--text-dim); font-size: .9rem; }

/* ─── Footer ───────────────────────────────────────────────────────── */
.site-footer {
  background: var(--blue-dark);
  border-top: 1px solid var(--hairline);
  padding: 2rem 0;
  font-size: .88rem; color: var(--text-dim);
}
.site-footer .container {
  display: flex; flex-wrap: wrap; gap: 2rem;
  align-items: center; justify-content: space-between;
}
.site-footer nav { display: flex; gap: 1.5rem; }
.site-footer a { color: var(--text-dim); }
.site-footer a:hover { color: var(--gold); }
.site-footer strong { color: var(--gold); font-weight: 600; }
.site-footer em { color: var(--gold); font-style: italic; opacity: .9; }

/* ─── Mobile ───────────────────────────────────────────────────────── */
@media (max-width: 720px) {
  .main-nav { display: none; }
  .hero { padding: 4rem 0 2.5rem; }
  .section { padding: 3.5rem 0; }
  .stat { border-left: 0; padding-left: 0; }
  .brand img { height: 44px; }
  .brand-name { font-size: 1.4rem; }
}
