/* =====================================================
   metafrasis.css — Metafrasis Professional Language Services
   Design: Conservative · Modern · Professional
   Colors: Deep Navy, Gold Accent, Warm White
   
   Enthält:
   1.  Reset & Base
   2.  Layout & Sections
   3.  Buttons
   4.  Header & Navigation
   5.  Hero (Startseite)
   6.  Trust Bar
   7.  Intro Section
   8.  Services Grid
   9.  Clients Grid
   10. Why Grid
   11. CTA Section
   12. Footer
   13. Page Hero (Unterseiten + Compact-Variante)
   14. Service Detail
   15. Fach Grid
   16. About Page
   17. Values Grid
   18. Expertise Bars
   19. Legal Info Cards (about.html)
   20. Contact Page
   21. Contact Form
   22. Form Validation States
   23. Map
   24. FAQ Accordion
   25. Legal Pages (Impressum, Datenschutz, AGB)
   26. Responsive / Media Queries
   27. Utilities
   28. Datenschutzerklärung — spezifische Komponenten
   ===================================================== */


/* ─────────────────────────────────────────────────────
   1. RESET & BASE
   ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #1a2744;
  --navy-dark:  #111b33;
  --navy-mid:   #243258;
  --gold:       #b8973a;
  --gold-light: #d4af55;
  --gold-pale:  #f5edd8;
  --white:      #ffffff;
  --off-white:  #f8f7f4;
  --grey-light: #eef0f4;
  --grey:       #9aa3b2;
  --grey-dark:  #5a6070;
  --text:       #1e2535;
  --text-muted: #6b7280;
  --border:     #dde2ea;

  --font-sans: 'Inter', 'Segoe UI', system-ui, sans-serif;

  --radius:     6px;
  --radius-lg:  12px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow:     0 4px 16px rgba(26,39,68,.10);
  --shadow-lg:  0 12px 40px rgba(26,39,68,.18);

  --transition: .25s ease;
  --container:  1160px;
  --header-h:   80px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
address { font-style: normal; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  color: var(--navy);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 4vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 1rem; }
h3 { font-size: 1.3rem; margin-bottom: .5rem; }
h4 { font-size: 1.05rem; margin-bottom: .4rem; }

p { margin-bottom: 1rem; color: var(--text); }
p:last-child { margin-bottom: 0; }

ul { list-style: none; }
.lead { font-size: 1.15rem; color: var(--grey-dark); line-height: 1.8; }


/* ─────────────────────────────────────────────────────
   2. LAYOUT & SECTIONS
   ───────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section          { padding: 80px 0; }
.section.bg-light { background: var(--off-white); }
.section.bg-dark  { background: var(--navy-dark); }

.mt-large    { margin-top: 48px; }
.text-center { text-align: center; }

.text-light h2,
.text-light p              { color: var(--white); }
.text-light .section-label { color: var(--gold-light); }
.text-light h2             { color: var(--white); }

.section-header { margin-bottom: 52px; }
.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.label-light { color: var(--gold-light) !important; }

.section-intro-text {
  max-width: 680px;
  margin: 0 auto;
  color: var(--grey-dark);
  font-size: 1.05rem;
}
.section-divider { height: 1px; background: var(--border); margin: 0; }


/* ─────────────────────────────────────────────────────
   3. BUTTONS
   ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-secondary:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-lg   { padding: 15px 36px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }


/* ─────────────────────────────────────────────────────
   4. HEADER & NAVIGATION
   ───────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 32px;
}

.logo a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.2;
}
.logo-main {
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.01em;
}
.logo-sub {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}

.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: 4px; list-style: none; }
.main-nav a {
  display: block;
  padding: 8px 14px;
  font-size: .92rem;
  font-weight: 600;
  color: var(--navy);
  border-radius: var(--radius);
  transition: all var(--transition);
  text-decoration: none;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--gold);
  background: var(--gold-pale);
}

.header-cta { margin-left: 16px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  border: none;
  background: none;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: all var(--transition);
}


/* ─────────────────────────────────────────────────────
   5. HERO (Startseite)
   ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: calc(100svh);
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #2a4a8a 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(184,151,58,.12) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(17,27,51,.85) 0%, rgba(17,27,51,.4) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 80px 24px;
}
.hero-eyebrow {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-family: var(--font-sans);
  color: var(--white);
  margin-bottom: 1.25rem;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.15;
}
.hero-lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,.82);
  max-width: 580px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.hero .btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  color: var(--white);
}

.hero-badge {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  opacity: .6;
}
.lang-badge {
  font-family: var(--font-sans);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(184,151,58,.4);
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.lang-sep {
  color: var(--gold-light);
  font-size: 1.5rem;
}


/* ─────────────────────────────────────────────────────
   6. TRUST BAR
   ───────────────────────────────────────────────────── */
.trust-bar {
  background: var(--navy);
  padding: 20px 0;
  border-top: 3px solid var(--gold);
}
.trust-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.85);
  font-size: .88rem;
  font-weight: 600;
  padding: 8px 24px;
  border-right: 1px solid rgba(255,255,255,.12);
}
.trust-item:last-child { border-right: none; }
.trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--gold-light);
  flex-shrink: 0;
}


/* ─────────────────────────────────────────────────────
   7. INTRO SECTION (Startseite)
   ───────────────────────────────────────────────────── */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.intro-text { padding-right: 16px; }
.intro-text h2 { margin-bottom: 1.25rem; }
.intro-text p  { color: var(--grey-dark); margin-bottom: 1rem; }
.intro-text .btn { margin-top: .5rem; }

.intro-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.intro-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: box-shadow var(--transition);
}
.intro-card:hover { box-shadow: var(--shadow); }
.intro-card-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 12px;
}
.intro-card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: .4rem; }
.intro-card p  { font-size: .92rem; color: var(--grey-dark); margin: 0; }


/* ─────────────────────────────────────────────────────
   8. SERVICES GRID (Startseite)
   ───────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.service-card:hover         { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3  { color: var(--navy); margin-bottom: .5rem; font-size: 1.1rem; }
.service-card p   { font-size: .92rem; color: var(--grey-dark); margin-bottom: 1rem; }

.card-link {
  font-size: .88rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}
.card-link:hover { color: var(--gold-light); }


/* ─────────────────────────────────────────────────────
   9. CLIENTS GRID
   ───────────────────────────────────────────────────── */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.client-item {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  font-size: .92rem;
  font-weight: 600;
  color: var(--navy);
  transition: all var(--transition);
}
.client-item:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
  transform: translateY(-2px);
}
.client-icon { font-size: 2rem; margin-bottom: 10px; }


/* ─────────────────────────────────────────────────────
   10. WHY GRID (Startseite – dunkler Hintergrund)
   ───────────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.why-item {
  padding: 32px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.04);
}
.why-number {
  font-family: var(--font-sans);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: .5;
  margin-bottom: 12px;
  line-height: 1;
}
.why-item h3 { color: var(--white); font-size: 1.1rem; margin-bottom: .5rem; }
.why-item p  { color: rgba(255,255,255,.65); font-size: .92rem; }


/* ─────────────────────────────────────────────────────
   11. CTA SECTION
   ───────────────────────────────────────────────────── */
.section-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
}
.section-cta h2 {
  color: var(--white);
  text-align: center;
  margin-bottom: 1rem;
}
.cta-text {
  color: rgba(255,255,255,.75);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.section-cta .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,.45);
}
.section-cta .btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  color: var(--white);
}


/* ─────────────────────────────────────────────────────
   12. FOOTER
   ───────────────────────────────────────────────────── */
.site-footer { background: var(--navy-dark); padding-top: 64px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.footer-logo .logo-main { color: var(--white); font-size: 1.5rem; }
.footer-logo .logo-sub  { color: var(--gold); }
.footer-brand p { color: rgba(255,255,255,.5); font-size: .88rem; }

.footer-nav h4,
.footer-services h4,
.footer-contact h4 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-nav ul,
.footer-services ul { list-style: none; }
.footer-nav li,
.footer-services li { margin-bottom: 8px; }
.footer-nav a,
.footer-services a {
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  transition: color var(--transition);
  text-decoration: none;
}
.footer-nav a:hover,
.footer-services a:hover { color: var(--gold-light); }

.footer-contact p { color: rgba(255,255,255,.6); font-size: .9rem; margin-bottom: 8px; }
.footer-contact a { color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-contact a:hover { color: var(--gold-light); }

.footer-bottom { padding: 20px 0; background: rgba(0,0,0,.2); }
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,.4); font-size: .8rem; margin: 0; }

.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  color: rgba(255,255,255,.4);
  font-size: .8rem;
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--gold-light); }


/* ─────────────────────────────────────────────────────
   13. PAGE HERO (Unterseiten)
   ───────────────────────────────────────────────────── */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 60px) 0 60px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(184,151,58,.1) 0%, transparent 60%);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17,27,51,.5);
}
.page-hero-content {
  position: relative;
  z-index: 2;
}

/* Kompakter Hero für Rechtsseiten */
.page-hero--compact {
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 40px;
}
.page-hero--compact h1 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 8px;
}
.page-hero--compact p {
  font-size: .95rem;
  color: rgba(255,255,255,.65);
  max-width: 520px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: .85rem;
}
.breadcrumb a { color: rgba(255,255,255,.6); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,.4); }
.breadcrumb span:last-child { color: var(--gold-light); }

.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p  { color: rgba(255,255,255,.7); font-size: 1.1rem; max-width: 600px; }


/* ─────────────────────────────────────────────────────
   14. SERVICE DETAIL (services.html)
   ───────────────────────────────────────────────────── */
.content-intro { max-width: 800px; margin: 0 auto; }

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}
.service-detail-grid-reverse { grid-template-columns: 2fr 1fr; }

.service-detail-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
.service-detail-icon-large {
  width: 160px;
  height: 160px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.service-detail-icon-large svg { width: 80px; height: 80px; }

.service-detail-tag {
  background: var(--navy);
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
}

.service-detail-content h2 { margin-bottom: 1rem; }
.service-detail-content p  { color: var(--grey-dark); margin-bottom: 1rem; }

.service-list { margin-top: 1.5rem; }
.service-list h4 { color: var(--navy); margin-bottom: .75rem; }
.service-list ul { list-style: none; }
.service-list li {
  padding: 6px 0 6px 24px;
  position: relative;
  color: var(--grey-dark);
  font-size: .95rem;
  border-bottom: 1px solid var(--border);
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.4;
}


/* ─────────────────────────────────────────────────────
   15. FACH GRID (services.html)
   ───────────────────────────────────────────────────── */
.fach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.fach-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
}
.fach-card:hover { box-shadow: var(--shadow); border-color: var(--gold); }
.fach-icon { font-size: 2.2rem; margin-bottom: 16px; }
.fach-card h3 { color: var(--navy); font-size: 1.05rem; margin-bottom: .5rem; }
.fach-card p  { font-size: .9rem; color: var(--grey-dark); margin-bottom: .5rem; }
.fach-card p em { font-size: .82rem; color: var(--grey); }


/* ─────────────────────────────────────────────────────
   16. ABOUT PAGE
   ───────────────────────────────────────────────────── */
.about-intro-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 64px;
  align-items: start;
}
.about-intro-text h2 { margin-bottom: 1.25rem; }
.about-intro-text p  { color: var(--grey-dark); margin-bottom: 1rem; }

.about-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-stat {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-sans);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.stat-label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .08em;
}


/* ─────────────────────────────────────────────────────
   17. VALUES GRID (about.html)
   ───────────────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
}
.value-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.value-icon {
  width: 56px;
  height: 56px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
}
.value-icon svg { width: 28px; height: 28px; }
.value-card h3  { color: var(--navy); margin-bottom: .5rem; }
.value-card p   { font-size: .92rem; color: var(--grey-dark); }


/* ─────────────────────────────────────────────────────
   18. EXPERTISE BARS (about.html)
   ───────────────────────────────────────────────────── */
.expertise-list { max-width: 800px; margin: 0 auto; }
.expertise-item { margin-bottom: 20px; }
.expertise-bar {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: all var(--transition);
}
.expertise-bar:hover { background: var(--gold-pale); }
.expertise-label     { font-weight: 700; color: var(--navy); font-size: 1rem; }
.expertise-desc      { font-size: .88rem; color: var(--grey-dark); text-align: right; }


/* ─────────────────────────────────────────────────────
   19. LEGAL INFO CARDS (about.html)
   ───────────────────────────────────────────────────── */
.legal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}
.legal-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.legal-card h3 { color: var(--navy); margin-bottom: 16px; }

.legal-table { width: 100%; border-collapse: collapse; }
.legal-table td {
  padding: 8px 12px;
  border-bottom: 1px solid var(--border);
  font-size: .9rem;
  color: var(--text);
}
.legal-table td:first-child {
  color: var(--grey-dark);
  font-weight: 600;
  width: 55%;
}
.legal-table tr:last-child td { border-bottom: none; }

.status-active {
  display: inline-block;
  background: #e8f5e9;
  color: #2e7d32;
  font-size: .78rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 100px;
}


/* ─────────────────────────────────────────────────────
   20. CONTACT PAGE
   ───────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p  { color: var(--grey-dark); }

.contact-details { margin: 32px 0; }
.contact-detail-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.contact-detail-item:last-child { border-bottom: none; }

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 20px; height: 20px; }

.contact-detail-text strong {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--grey);
  margin-bottom: 3px;
}
.contact-detail-text span { font-size: .95rem; color: var(--navy); }
.contact-detail-text a    { color: var(--navy); text-decoration: none; }
.contact-detail-text a:hover { color: var(--gold); }

.contact-note {
  display: flex;
  gap: 12px;
  background: var(--gold-pale);
  border: 1px solid rgba(184,151,58,.25);
  border-radius: var(--radius);
  padding: 16px;
  align-items: flex-start;
}
.contact-note svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact-note p   { font-size: .88rem; color: var(--grey-dark); margin: 0; }

/* Contact Warning Box */
.contact-note.contact-warning {
  background: #fff8e1;
  border-color: #ffe082;
  align-items: flex-start;
  margin-top: 5px;
}
.contact-note.contact-warning svg { color: #f57f17; }
.warning-content { flex: 1; }
.warning-content p { font-size: .88rem; color: var(--grey-dark); margin: 0 0 8px; }
.warning-content p:last-child { margin-bottom: 0; }
.warning-title {
  font-size: 1rem !important;
  font-weight: 700;
  color: var(--navy) !important;
  margin-bottom: 10px !important;
}


/* ─────────────────────────────────────────────────────
   21. CONTACT FORM
   ───────────────────────────────────────────────────── */
.contact-form-wrapper {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form-wrapper h3 { color: var(--navy); margin-bottom: .5rem; }
.form-intro { font-size: .92rem; color: var(--grey-dark); margin-bottom: 28px; }

.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.req { color: var(--gold); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,151,58,.12);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%236b7280'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  padding-right: 40px;
  cursor: pointer;
}
.form-group textarea { resize: vertical; min-height: 130px; }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.form-check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  position: relative;
  transition: background var(--transition), border-color var(--transition);
}
.form-check input[type="checkbox"]:checked {
  background: var(--gold);
  border-color: var(--gold);
}
.form-check input[type="checkbox"]:checked::after {
  content: '\2716';
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
}
.form-check label {
  font-size: .88rem;
  color: var(--grey-dark);
  font-weight: 400;
  cursor: pointer;
  margin: 0;
}
.form-check label a { color: var(--gold); text-decoration: underline; }
.checkbox-warning {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.82rem;
  color: #c0392b;
  font-weight: 500;
}
.form-note { font-size: .8rem; color: var(--grey); margin-top: 12px; text-align: center; }
.btn-blocked {
  background: #e5e5e5 !important;
  color: #999999 !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
  pointer-events: auto !important;
}


/* ─────────────────────────────────────────────────────
   22. FORM VALIDATION STATES
   ───────────────────────────────────────────────────── */
.input-error {
  border-color: #c62828 !important;
  box-shadow: 0 0 0 3px rgba(198,40,40,.1) !important;
}
.field-error {
  display: block;
  font-size: .8rem;
  color: #c62828;
  margin-top: 4px;
  font-weight: 500;
}
.form-success {
  text-align: center;
  padding: 48px 24px;
}
.form-success svg { color: var(--gold); margin: 0 auto 20px; }
.form-success h3  { color: var(--navy); margin-bottom: 12px; }
.form-success p   { color: var(--grey-dark); font-size: .95rem; }
.form-success a   { color: var(--gold); text-decoration: underline; }


/* ─────────────────────────────────────────────────────
   23. MAP (contact.html)
   ───────────────────────────────────────────────────── */
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  border: 1px solid var(--border);
}
.map-address   { margin-top: 12px; }
.map-address p { font-size: .95rem; color: var(--grey-dark); }
.map-address a { color: var(--gold); }


/* ─────────────────────────────────────────────────────
   24. FAQ ACCORDION (contact.html)
   ───────────────────────────────────────────────────── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  transition: background var(--transition);
}
.faq-question:hover    { background: var(--off-white); }
.faq-question.open     { background: var(--gold-pale); }
.faq-question svg      { flex-shrink: 0; color: var(--gold); transition: transform var(--transition); }
.faq-question.open svg { transform: rotate(180deg); }

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.faq-answer.open { display: block; }
.faq-answer p    { font-size: .95rem; color: var(--grey-dark); padding-top: 16px; margin: 0; }


/* ─────────────────────────────────────────────────────
   25. LEGAL PAGES — impressum.html / datenschutz.html / agb.html
   ───────────────────────────────────────────────────── */
.section--legal { padding: 64px 0 80px; }

.legal-page-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  align-items: start;
}

/* Sidebar TOC */
.legal-toc { position: sticky; top: calc(var(--header-h) + 24px); }
.legal-toc__inner {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
}
.legal-toc__title {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.legal-toc__list {
  list-style: none;
  counter-reset: toc-counter;
  padding: 0;
  margin: 0;
}
.legal-toc__list li { margin-bottom: 4px; }
.legal-toc__list a {
  display: block;
  font-size: .84rem;
  color: var(--grey-dark);
  text-decoration: none;
  padding: 5px 8px;
  border-radius: var(--radius);
  transition: all var(--transition);
  line-height: 1.4;
}
.legal-toc__list a:hover {
  color: var(--navy);
  background: var(--gold-pale);
}

/* Hauptinhalt */
.legal-content { min-width: 0; }

/* Abschnitte */
.legal-section {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  scroll-margin-top: calc(var(--header-h) + 24px);
}
.legal-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}

.legal-section__heading {
  font-family: var(--font-sans);
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--gold-pale);
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  line-height: 1.3;
}
.legal-section__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
  line-height: 1;
}
.legal-section__basis {
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 400;
  color: var(--grey);
  letter-spacing: 0;
  display: block;
  width: 100%;
  margin-left: 40px;
  margin-top: -8px;
}

/* Block (weißer Kasten) */
.legal-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.legal-intro-text {
  font-size: .95rem;
  color: var(--grey-dark);
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  line-height: 1.7;
}

/* Definition List */
.legal-dl { width: 100%; }
.legal-dl__row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 16px 24px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}
.legal-dl__row:last-child  { border-bottom: none; padding-bottom: 0; }
.legal-dl__row:first-child { padding-top: 0; }

.legal-dl dt {
  font-size: .88rem;
  font-weight: 700;
  color: var(--grey-dark);
  line-height: 1.5;
}
.legal-dl dd {
  font-size: .95rem;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}

/* Hilfsklassen */
.legal-note {
  display: block;
  font-size: .82rem;
  color: var(--grey);
  margin-top: 3px;
  font-weight: 400;
}
.legal-address { font-style: normal; line-height: 1.7; }

.legal-link {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), color var(--transition);
}
.legal-link:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold-light);
}
.legal-link--prominent {
  font-weight: 600;
  font-size: 1rem;
  display: inline-block;
  margin: 6px 0;
}

/* Status Badge */
.status-badge {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 100px;
  letter-spacing: .04em;
}
.status-badge--active {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

/* Info Boxes */
.legal-info-box {
  display: flex;
  gap: 16px;
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 16px;
  align-items: flex-start;
}
.legal-info-box:last-child { margin-bottom: 0; }

.legal-info-box--neutral {
  background: var(--gold-pale);
  border: 1px solid rgba(184,151,58,.25);
}
.legal-info-box--notice {
  background: #fff8e1;
  border: 1px solid #ffe082;
}
.legal-info-box__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}
.legal-info-box--neutral .legal-info-box__icon { color: var(--gold); }
.legal-info-box--notice  .legal-info-box__icon { color: #f57f17; }

.legal-info-box p {
  font-size: .92rem;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.65;
}
.legal-info-box p:last-child { margin-bottom: 0; }

/* Unterüberschriften */
.legal-subheading {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 24px 0 8px;
}
.legal-subheading:first-child { margin-top: 0; }

.legal-block p {
  font-size: .93rem;
  color: var(--grey-dark);
  line-height: 1.75;
  margin-bottom: 12px;
}
.legal-block p:last-child { margin-bottom: 0; }

/* Stand / Datum */
.legal-footer-note {
  margin-top: 40px;
  padding: 16px 24px;
  background: var(--grey-light);
  border-radius: var(--radius);
  border-left: 3px solid var(--grey);
}
.legal-footer-note p {
  font-size: .85rem;
  color: var(--grey-dark);
  margin: 0;
}


/* ─────────────────────────────────────────────────────
   26. RESPONSIVE — Media Queries
   ───────────────────────────────────────────────────── */

/* 1024px — Tablet Landscape */
@media (max-width: 1024px) {
  .services-grid       { grid-template-columns: repeat(2, 1fr); }
  .why-grid            { grid-template-columns: repeat(2, 1fr); }
  .footer-grid         { grid-template-columns: 1fr 1fr; gap: 32px; }
  .intro-grid          { gap: 40px; }
  .service-detail-grid { grid-template-columns: 1fr 2fr; gap: 40px; }
}

/* 900px — Legal Pages TOC */
@media (max-width: 900px) {
  .legal-page-layout { grid-template-columns: 1fr; gap: 32px; }
  .legal-toc         { position: static; }
  .legal-toc__inner  { padding: 18px 16px; }
  .legal-toc__list {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
  }
  .legal-toc__list a {
    font-size: .8rem;
    padding: 4px 10px;
    background: var(--white);
    border: 1px solid var(--border);
    white-space: nowrap;
  }
}

/* 768px — Tablet Portrait / Mobile */
@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .section { padding: 56px 0; }

  /* Navigation */
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }

  .main-nav.open {
    display: block;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    z-index: 999;
    box-shadow: var(--shadow-lg);
  }
  .main-nav.open ul { flex-direction: column; gap: 0; }
  .main-nav.open a  { padding: 14px 24px; border-radius: 0; font-size: 1rem; }
  .main-nav.open + .header-cta { display: none; }

  /* Hero */
  .hero-badge   { display: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; }

  /* Trust Bar */
  .trust-inner { flex-direction: column; align-items: flex-start; padding: 0 16px; }
  .trust-item  {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.1);
    width: 100%;
    padding: 12px 0;
  }
  .trust-item:last-child { border-bottom: none; }

  /* Grids */
  .intro-grid                  { grid-template-columns: 1fr; gap: 32px; }
  .services-grid               { grid-template-columns: 1fr; }
  .clients-grid                { grid-template-columns: repeat(2, 1fr); }
  .why-grid                    { grid-template-columns: 1fr; }
  .fach-grid                   { grid-template-columns: 1fr; }
  .values-grid                 { grid-template-columns: 1fr; }
  .about-intro-grid            { grid-template-columns: 1fr; }
  .about-stat-grid             { grid-template-columns: repeat(2, 1fr); }
  .legal-grid                  { grid-template-columns: 1fr; }
  .contact-grid                { grid-template-columns: 1fr; gap: 40px; }
  .form-row                    { grid-template-columns: 1fr; }
  .service-detail-grid,
  .service-detail-grid-reverse { grid-template-columns: 1fr; }
  .service-detail-visual       { position: static; }

  /* Footer */
  .footer-grid         { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  /* Misc */
  .expertise-bar  { flex-direction: column; align-items: flex-start; }
  .expertise-desc { text-align: left; }
  .cta-actions    { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* DSE */
  .dse-intro-box     { flex-direction: column; gap: 16px; padding: 20px; }
  .dse-basis-grid    { grid-template-columns: 1fr; }
  .dse-rights-grid   { grid-template-columns: 1fr; }
  .dse-security-grid { grid-template-columns: 1fr; }
  .dse-right-item--highlight { grid-column: 1; }
}

/* 640px — Legal Pages Definition List */
@media (max-width: 640px) {
  .legal-dl__row          { grid-template-columns: 1fr; gap: 4px; }
  .legal-dl dt {
    font-size: .75rem;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: .06em;
  }
  .legal-block            { padding: 20px 16px; }
  .legal-section__heading { font-size: 1.15rem; }
  .legal-section__basis   { margin-left: 0; }
}

/* 480px — Small Mobile */
@media (max-width: 480px) {
  .clients-grid         { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 24px 20px; }
  .dse-cookie-table th,
  .dse-cookie-table td  { padding: 10px 12px; font-size: .82rem; }
}


/* ─────────────────────────────────────────────────────
   27. UTILITIES
   ───────────────────────────────────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}


/* ─────────────────────────────────────────────────────
   28. DATENSCHUTZERKLÄRUNG — spezifische Komponenten
   ───────────────────────────────────────────────────── */

/* Einleitende Infobox */
.dse-intro-box {
  display: flex;
  gap: 20px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 48px;
  align-items: flex-start;
}
.dse-intro-box__icon {
  width: 36px;
  height: 36px;
  color: var(--gold-light);
  flex-shrink: 0;
  margin-top: 2px;
}
.dse-intro-box p {
  color: rgba(255,255,255,.82);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 8px;
}
.dse-intro-box p:last-child { margin-bottom: 0; }
.dse-intro-box strong { color: var(--white); }

/* Rechtsgrundlagen-Grid */
.dse-basis-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 20px 0;
}
.dse-basis-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
}
.dse-basis-icon {
  width: 36px;
  height: 36px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.dse-basis-icon svg { width: 18px; height: 18px; }
.dse-basis-item strong {
  display: block;
  font-size: .9rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 2px;
}
.dse-basis-item span {
  display: block;
  font-size: .78rem;
  color: var(--grey);
}

.dse-note-text {
  font-size: .9rem;
  color: var(--grey-dark);
  background: var(--gold-pale);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 14px 18px;
  margin-top: 8px;
  line-height: 1.65;
}

/* Betroffenenrechte-Grid */
.dse-rights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.dse-right-item {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.dse-right-item--highlight {
  background: var(--gold-pale);
  border-color: rgba(184,151,58,.35);
  grid-column: 1 / -1;
}
.dse-right-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.dse-right-basis {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  background: rgba(184,151,58,.12);
  padding: 2px 8px;
  border-radius: 100px;
}
.dse-right-item p {
  font-size: .88rem;
  color: var(--grey-dark);
  line-height: 1.6;
  margin-bottom: 6px;
}
.dse-right-item p:last-child { margin-bottom: 0; }

/* Cookie-Tabelle */
.dse-cookie-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin: 16px 0;
}
.dse-cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}
.dse-cookie-table th {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 12px 16px;
  text-align: left;
  white-space: nowrap;
}
.dse-cookie-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: top;
  line-height: 1.5;
}
.dse-cookie-table tr:last-child td { border-bottom: none; }
.dse-cookie-table tr:nth-child(even) td { background: var(--off-white); }

/* Browser-Liste */
.dse-browser-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.dse-browser-list li::before { content: none; }
.dse-browser-list a {
  display: inline-block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gold);
  background: var(--gold-pale);
  border: 1px solid rgba(184,151,58,.3);
  border-radius: 100px;
  padding: 5px 14px;
  text-decoration: none;
  transition: all var(--transition);
}
.dse-browser-list a:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

/* Aufzählungsliste DSE */
.dse-list {
  list-style: none;
  margin: 16px 0;
}
.dse-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--grey-dark);
  font-size: .93rem;
  border-bottom: 1px solid var(--border);
  line-height: 1.6;
}
.dse-list li:last-child { border-bottom: none; }
.dse-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.4;
}
.dse-list li strong { color: var(--navy); }

/* Sicherheits-Grid */
.dse-security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 20px 0;
}
.dse-security-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: .88rem;
  color: var(--grey-dark);
  font-weight: 600;
}
.dse-security-item svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
  flex-shrink: 0;
}

