/* ── SHARED STYLES – ImpressumService ── */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400&display=swap');

:root {
  --ink:        #151515;
  --dark:       #1e1e1e;
  --card-dark:  #252525;
  --gold:       #c9a84c;
  --gold-light: #e0c070;
  --gold-dim:   rgba(201,168,76,0.15);
  --cream:      #faf8f4;
  --parchment:  #f2ede3;
  --muted:      #777;
  --border:     #e0d9ce;
  --border-dark:rgba(201,168,76,0.18);
  --white:      #ffffff;
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.07);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.18);
}

*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
body {
  font-family:'Roboto', sans-serif;
  background:var(--cream);
  color:var(--ink);
  line-height:1.6;
  overflow-x:hidden;
}

/* ── NAV ── */
nav {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  background:rgba(21,21,21,0.97);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--border-dark);
  height:62px;
  display:flex; align-items:center;
  padding:0 2rem;
  justify-content:space-between;
}
.nav-logo {
  font-family:'Roboto', sans-serif;
  font-weight:700; font-size:1.05rem;
  color:var(--gold); letter-spacing:0.04em;
  text-decoration:none;
}
.nav-logo span { color:rgba(255,255,255,0.8); font-weight:300; }
.nav-links { display:flex; align-items:center; gap:0; list-style:none; }
.nav-links a {
  color:rgba(255,255,255,0.65);
  text-decoration:none; font-size:0.78rem;
  letter-spacing:0.09em; text-transform:uppercase;
  padding:0.45rem 0.9rem; font-weight:500;
  transition:color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color:var(--gold); }
.nav-links a.nav-login {
  background:var(--gold); color:var(--ink) !important;
  font-weight:700; margin-left:0.5rem; padding:0.4rem 1rem;
}
.nav-links a.nav-login:hover { background:var(--gold-light); }
.nav-mobile-btn {
  display:none; background:none; border:none;
  color:var(--white); font-size:1.5rem; cursor:pointer;
}

/* ── PAGE WRAPPER ── */
.page-wrap { padding-top:62px; min-height:100vh; }

/* ── HERO DARK ── */
.hero-dark {
  background:var(--ink);
  position:relative; overflow:hidden;
  padding:5rem 2rem 4.5rem;
}
.hero-dark::before {
  content:'';
  position:absolute; inset:0;
  background:
    radial-gradient(ellipse 60% 50% at 10% 60%, rgba(201,168,76,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 85% 20%, rgba(201,168,76,0.05) 0%, transparent 50%);
}
.hero-dark-inner { max-width:1080px; margin:0 auto; position:relative; z-index:1; }
.eyebrow {
  font-size:0.7rem; font-weight:700; letter-spacing:0.3em; text-transform:uppercase;
  color:var(--gold); margin-bottom:1.2rem;
  display:inline-flex; align-items:center; gap:0.8rem;
}
.eyebrow::before { content:''; display:block; width:28px; height:1px; background:var(--gold); }
h1.hero-title {
  font-family:'Roboto', sans-serif;
  font-weight:900; font-size:clamp(2.2rem,4.5vw,3.5rem);
  color:var(--white); line-height:1.1; margin-bottom:1rem;
}
h1.hero-title em { color:var(--gold); font-style:normal; }
.hero-sub { color:rgba(255,255,255,0.5); font-size:1rem; font-weight:300; max-width:560px; line-height:1.8; }

/* ── SECTION ── */
.section { padding:5rem 2rem; }
.section-inner { max-width:1080px; margin:0 auto; }
.section-dark { background:var(--dark); }
.section-parchment { background:var(--parchment); }

.label {
  font-size:0.68rem; font-weight:700; letter-spacing:0.28em; text-transform:uppercase;
  color:var(--gold); margin-bottom:0.9rem;
  display:flex; align-items:center; gap:0.75rem;
}
.label::after { content:''; flex:0 0 50px; height:1px; background:var(--border); }
.label-light::after { background:var(--border-dark); }

h2.section-title {
  font-weight:900; font-size:clamp(1.8rem,3vw,2.6rem);
  line-height:1.15; margin-bottom:0.75rem;
}
h2.section-title em { color:var(--gold); font-style:normal; }
.section-dark h2.section-title { color:var(--white); }
p.section-lead { color:var(--muted); font-size:0.95rem; line-height:1.8; max-width:580px; font-weight:300; }

/* ── BUTTONS ── */
.btn {
  display:inline-block; text-decoration:none;
  font-family:'Roboto', sans-serif; font-weight:700;
  font-size:0.78rem; letter-spacing:0.1em; text-transform:uppercase;
  padding:0.85rem 2rem; border:none; cursor:pointer;
  transition:all 0.22s; border-radius:0;
}
.btn-gold { background:var(--gold); color:var(--ink); }
.btn-gold:hover { background:var(--gold-light); transform:translateY(-1px); }
.btn-dark { background:var(--ink); color:var(--white); }
.btn-dark:hover { background:#333; }
.btn-outline-dark {
  background:transparent; color:var(--ink);
  border:1.5px solid var(--ink);
}
.btn-outline-dark:hover { background:var(--ink); color:var(--white); }
.btn-outline-light {
  background:transparent; color:var(--white);
  border:1.5px solid rgba(255,255,255,0.3);
}
.btn-outline-light:hover { border-color:var(--gold); color:var(--gold); }

/* ── CARDS ── */
.card {
  background:var(--white); border:1px solid var(--border);
  padding:2rem; transition:all 0.28s;
}
.card:hover { box-shadow:var(--shadow-md); transform:translateY(-2px); }
.card-dark {
  background:var(--card-dark); border:1px solid var(--border-dark);
  padding:2rem;
}

/* ── FORMS ── */
.form-group { margin-bottom:1.2rem; }
.form-label {
  display:block; font-size:0.72rem; font-weight:700;
  letter-spacing:0.12em; text-transform:uppercase;
  color:var(--muted); margin-bottom:0.45rem;
}
.form-input, .form-select, .form-textarea {
  width:100%; padding:0.75rem 1rem;
  border:1.5px solid var(--border); background:var(--white);
  font-family:'Roboto', sans-serif; font-size:0.93rem;
  outline:none; transition:border-color 0.2s; border-radius:0;
  color:var(--ink);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color:var(--gold);
}
.form-textarea { min-height:130px; resize:vertical; }

/* ── FOOTER ── */
footer {
  background:var(--ink);
  border-top:1px solid var(--border-dark);
  padding:3.5rem 2rem 1.5rem;
}
.footer-grid {
  max-width:1080px; margin:0 auto;
  display:grid; grid-template-columns:2fr 1fr 1fr 1fr;
  gap:3rem; padding-bottom:2.5rem;
  border-bottom:1px solid rgba(255,255,255,0.06);
}
.footer-brand-name {
  font-weight:700; font-size:0.95rem;
  color:var(--gold); margin-bottom:0.6rem;
}
.footer-brand-text { color:rgba(255,255,255,0.3); font-size:0.82rem; line-height:1.8; font-weight:300; }
.footer-col-title {
  font-size:0.66rem; font-weight:700; letter-spacing:0.2em;
  text-transform:uppercase; color:rgba(255,255,255,0.3);
  margin-bottom:1rem;
}
.footer-links { list-style:none; }
.footer-links li { margin-bottom:0.45rem; }
.footer-links a {
  color:rgba(255,255,255,0.45); font-size:0.84rem;
  text-decoration:none; font-weight:300;
  transition:color 0.2s;
}
.footer-links a:hover { color:var(--gold); }
.footer-bottom {
  max-width:1080px; margin:1.5rem auto 0;
  display:flex; justify-content:space-between; align-items:center;
  flex-wrap:wrap; gap:1rem;
}
.footer-copy { color:rgba(255,255,255,0.2); font-size:0.76rem; }
.footer-legal { display:flex; gap:1.5rem; }
.footer-legal a {
  color:rgba(255,255,255,0.25); font-size:0.76rem;
  text-decoration:none; transition:color 0.2s;
}
.footer-legal a:hover { color:var(--gold); }

/* ── DIVIDER ── */
.divider { height:1px; background:var(--border); margin:2.5rem 0; }
.divider-dark { height:1px; background:var(--border-dark); margin:2.5rem 0; }

/* ── BADGE ── */
.badge {
  display:inline-block; font-size:0.65rem; font-weight:700;
  letter-spacing:0.1em; text-transform:uppercase;
  padding:0.2rem 0.65rem;
}
.badge-gold { background:var(--gold); color:var(--ink); }
.badge-new { background:#c0392b; color:var(--white); }
.badge-read { background:#4a5e4e; color:var(--white); }

/* ── QUOTE BLOCK ── */
.quote-block {
  border-left:3px solid var(--gold);
  padding:1.5rem 1.5rem 1.5rem 2rem;
  background:var(--parchment);
  margin:2.5rem 0;
}
.quote-block p {
  font-size:1.05rem; font-style:italic; font-weight:300;
  color:var(--ink); line-height:1.8;
}
.quote-block cite {
  display:block; margin-top:0.75rem;
  font-size:0.75rem; font-weight:700; letter-spacing:0.12em;
  text-transform:uppercase; color:var(--gold); font-style:normal;
}

/* ── STEP ── */
.step-list { margin-top:2.5rem; }
.step-item {
  display:grid; grid-template-columns:56px 1fr;
  gap:1.5rem; padding:1.8rem 0;
  border-bottom:1px solid var(--border);
  align-items:start;
}
.step-item:last-child { border-bottom:none; }
.step-num {
  font-weight:900; font-size:2rem; color:var(--gold);
  line-height:1; padding-top:0.15rem;
}
.step-title { font-weight:700; font-size:1rem; margin-bottom:0.4rem; }
.step-desc { color:var(--muted); font-size:0.88rem; line-height:1.8; font-weight:300; }

/* ── STATS ROW ── */
.stats-row {
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:2rem; padding-top:3rem; margin-top:3rem;
  border-top:1px solid var(--border);
}
.stat-num {
  font-weight:900; font-size:2.5rem; color:var(--gold);
  line-height:1; margin-bottom:0.2rem;
}
.stat-label { font-size:0.78rem; color:var(--muted); font-weight:300; letter-spacing:0.04em; }

/* ── MOBILE NAV OVERLAY ── */
.nav-mobile-btn {
  display:none; background:none; border:none;
  color:var(--white); cursor:pointer; padding:0.25rem;
  flex-direction:column; justify-content:center;
  align-items:center; gap:5px; width:36px; height:36px;
}
.nav-mobile-btn span {
  display:block; width:22px; height:2px;
  background:var(--white); transition:all 0.3s;
  transform-origin:center;
}
.nav-mobile-btn.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.nav-mobile-btn.open span:nth-child(2) { opacity:0; transform:scaleX(0); }
.nav-mobile-btn.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

.nav-mobile-overlay {
  display:none;
  position:fixed; top:62px; left:0; right:0; bottom:0;
  background:rgba(21,21,21,0.98);
  backdrop-filter:blur(16px);
  z-index:999;
  flex-direction:column;
  padding:2rem 1.5rem;
  overflow-y:auto;
  animation:overlayIn 0.25s ease;
}
@keyframes overlayIn {
  from { opacity:0; transform:translateY(-8px); }
  to   { opacity:1; transform:translateY(0); }
}
.nav-mobile-overlay.open { display:flex; }
.nav-mobile-overlay ul {
  list-style:none; display:flex; flex-direction:column; gap:0;
  flex:1;
}
.nav-mobile-overlay ul li a {
  display:block; color:rgba(255,255,255,0.7);
  text-decoration:none; font-size:1.1rem; font-weight:500;
  letter-spacing:0.06em; padding:1rem 0;
  border-bottom:1px solid rgba(255,255,255,0.06);
  transition:color 0.2s;
}
.nav-mobile-overlay ul li a:hover,
.nav-mobile-overlay ul li a.active { color:var(--gold); }
.nav-mobile-overlay ul li:last-child a {
  background:var(--gold); color:var(--ink) !important;
  font-weight:700; padding:0.9rem 1.5rem;
  border-bottom:none; margin-top:1.5rem;
  text-align:center; letter-spacing:0.1em;
}
.nav-mobile-overlay ul li:last-child a:hover { background:var(--gold-light); }

/* ── RESPONSIVE ── */
@media(max-width:900px){
  .footer-grid { grid-template-columns:1fr 1fr; }
  .stats-row { grid-template-columns:1fr 1fr; }
  .nav-links { display:none !important; }
  .nav-mobile-btn { display:flex; }
}
@media(max-width:600px){
  .hero-dark { padding:3.5rem 1.25rem 3rem; }
  .section { padding:3.5rem 1.25rem; }
}
