/*
Theme Name: FDX Planungsbüro
Theme URI: https://fd-planungsbuero.de
Author: FDX-PLANUNGSBUERO UG
Description: Modernes, futuristisches WordPress-Theme für FDX-Planungsbüro – Generalunternehmer für Bauprojekte in Düsseldorf. Mega-Menü, Leistungs-Hub mit 9 SEO-Unterseiten, FAQ mit FAQPage-Schema, Bauablauf-Seite, animierte Hero-Slideshow (4 Bauphasen, Fotos später einfach nachrüstbar), Prozess-Timeline, Breadcrumbs und strukturierte Daten für Google.
Version: 3.3
Requires at least: 6.0
Requires PHP: 7.4
Tested up to: 6.6
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fdx-planungsbuero
*/

/* -----------------------------------------------------------
   1. Variablen
----------------------------------------------------------- */
:root {
  /* Markenfarben aus dem Original-Logo (fdx logo.pdf): #0051A8 / #0060CD / #333333 */
  --fdx-dark: #081a30;
  --fdx-dark-2: #0e2745;
  --fdx-dark-3: #143459;
  --fdx-accent: #0060cd;
  --fdx-accent-2: #2fd3e0;
  --fdx-accent-dark: #0051a8;
  --fdx-ink: #2b2b2f;
  --fdx-light: #f4f6fa;
  --fdx-text: #232733;
  --fdx-text-muted: #62697c;
  --fdx-border: #e2e6ee;
  --fdx-max-width: 1180px;
  --fdx-radius: 10px;
  --fdx-radius-sm: 6px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
  color: var(--fdx-text);
  background: #ffffff;
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--fdx-accent-dark); text-decoration: none; }
a:hover { color: var(--fdx-accent); text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: inherit;
  color: var(--fdx-dark);
  line-height: 1.2;
  margin: 0 0 0.6em;
  font-weight: 800;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1.2em; }
ul { margin: 0 0 1.2em; padding-left: 1.2em; }
li { margin-bottom: 0.4em; }

.fdx-container { max-width: var(--fdx-max-width); margin: 0 auto; padding: 0 24px; }

.fdx-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--fdx-accent);
  color: #fff;
  padding: 0.9em 1.9em;
  border-radius: var(--fdx-radius-sm);
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: background 0.15s ease, transform 0.15s ease;
  border: none;
  cursor: pointer;
}
.fdx-button:hover { background: var(--fdx-accent-dark); color: #fff; text-decoration: none; transform: translateY(-1px); }
.fdx-button--outline { background: transparent; border: 2px solid rgba(255,255,255,0.6); color: #fff; }
.fdx-button--outline:hover { background: #fff; color: var(--fdx-dark); border-color: #fff; }
.fdx-button--ghost { background: transparent; color: var(--fdx-accent-dark); border: 2px solid var(--fdx-border); padding: 0.75em 1.5em; }
.fdx-button--ghost:hover { border-color: var(--fdx-accent); background: transparent; }

.fdx-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--fdx-accent-dark);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 12px;
}
.fdx-eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--fdx-accent);
  display: inline-block;
}

/* -----------------------------------------------------------
   2. Blueprint-Musterhintergrund (futuristisches Architektur-Grid)
----------------------------------------------------------- */
.fdx-blueprint {
  position: relative;
  background-color: var(--fdx-dark);
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  overflow: hidden;
}
.fdx-blueprint::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 15% 20%, rgba(0,96,205,0.35), transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(47,211,224,0.16), transparent 45%);
  pointer-events: none;
  animation: fdx-drift 18s ease-in-out infinite alternate;
}
@keyframes fdx-drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-2%, 2%) scale(1.05); }
}
.fdx-blueprint > * { position: relative; z-index: 1; }

/* -----------------------------------------------------------
   3. Header + Mega-Menü
----------------------------------------------------------- */
.fdx-header {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--fdx-border);
  position: sticky;
  top: 0;
  z-index: 200;
}
.fdx-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--fdx-max-width);
  margin: 0 auto;
  gap: 24px;
}
.fdx-logo { font-size: 1.32rem; font-weight: 800; color: var(--fdx-ink); white-space: nowrap; }
.fdx-logo__text { color: var(--fdx-ink); }
.fdx-logo__text > span { color: var(--fdx-accent); }
.fdx-logo a { color: inherit; text-decoration: none; display: flex; align-items: center; gap: 12px; }
.fdx-logo small {
  display: block; font-size: 0.55rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--fdx-text-muted); margin-top: 2px;
}
.fdx-logo__mark { height: 36px; width: auto; display: block; flex: 0 0 auto; }
.fdx-footer .fdx-logo__mark { height: 30px; }
.fdx-footer__brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.fdx-footer__brand strong { color: #fff; font-size: 1.05rem; }

.fdx-nav { display: flex; align-items: center; }
.fdx-nav ul { display: flex; list-style: none; gap: 30px; margin: 0; padding: 0; }
.fdx-nav > ul > li { position: relative; }
.fdx-nav a { color: var(--fdx-dark); font-weight: 700; font-size: 0.96rem; }
.fdx-nav > ul > li > a:hover { color: var(--fdx-accent-dark); text-decoration: none; }

.fdx-nav .fdx-has-mega > a::after {
  content: "▾"; font-size: 0.7em; margin-left: 5px; color: var(--fdx-text-muted);
}

.fdx-mega {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%);
  width: 640px;
  background: #fff;
  border: 1px solid var(--fdx-border);
  border-radius: var(--fdx-radius);
  box-shadow: 0 20px 50px rgba(15,22,38,0.18);
  padding: 22px;
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}
.fdx-has-mega:hover .fdx-mega,
.fdx-has-mega:focus-within .fdx-mega { display: grid; }
.fdx-mega a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--fdx-radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--fdx-text);
}
.fdx-mega a:hover { background: var(--fdx-light); text-decoration: none; color: var(--fdx-accent-dark); }
.fdx-mega .fdx-mega-icon {
  width: 34px; height: 34px; flex: 0 0 34px;
  border-radius: 8px;
  background: var(--fdx-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--fdx-accent-dark);
}
.fdx-mega .fdx-mega-icon svg { width: 18px; height: 18px; }

.fdx-header__cta { display: flex; align-items: center; gap: 18px; }
.fdx-header__phone { font-weight: 700; color: var(--fdx-dark); font-size: 0.95rem; white-space: nowrap; }
.fdx-menu-toggle { display: none; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--fdx-dark); }

@media (max-width: 900px) {
  .fdx-nav { display: none; width: 100%; }
  .fdx-nav.is-open { display: block; }
  .fdx-nav ul { flex-direction: column; gap: 2px; padding: 14px 0; }
  .fdx-header__inner { flex-wrap: wrap; }
  .fdx-menu-toggle { display: block; }
  .fdx-header__cta { margin-left: auto; }
  .fdx-mega { position: static; transform: none; width: auto; box-shadow: none; border: none; display: none; grid-template-columns: 1fr; margin: 4px 0 8px 12px; padding: 6px 0; }
  .fdx-has-mega:hover .fdx-mega, .fdx-has-mega:focus-within .fdx-mega { display: none; }
  .fdx-has-mega.is-open .fdx-mega { display: grid; }
}

/* -----------------------------------------------------------
   4. Hero (Startseite)
----------------------------------------------------------- */
.fdx-hero { color: #fff; padding: 110px 24px 90px; }
.fdx-hero__inner { max-width: var(--fdx-max-width); margin: 0 auto; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.fdx-hero__content { max-width: 640px; }
.fdx-hero h1 { color: #fff; }
.fdx-hero p.fdx-lead { font-size: 1.18rem; color: #c8cee0; max-width: 560px; }
.fdx-hero__actions { display: flex; gap: 16px; margin-top: 30px; flex-wrap: wrap; }
.fdx-hero__eyebrow { color: var(--fdx-accent-2); }
.fdx-hero__eyebrow::before { background: var(--fdx-accent-2); }

.fdx-hero__badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.fdx-hero__badges span {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.03em;
  padding: 7px 14px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  color: #dfe4ef;
  background: rgba(255,255,255,0.05);
}

.fdx-hero__visual { position: relative; height: 360px; }

@media (max-width: 900px) {
  .fdx-hero__inner { grid-template-columns: 1fr; }
  .fdx-hero__visual { height: 260px; order: -1; }
}

/* -----------------------------------------------------------
   5. USP-Leiste
----------------------------------------------------------- */
.fdx-usp {
  background: var(--fdx-dark-2);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.fdx-usp__row {
  max-width: var(--fdx-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
}
.fdx-usp__item {
  background: var(--fdx-dark-2);
  padding: 22px 16px;
  text-align: center;
  color: #d7dbe4;
}
.fdx-usp__item svg { width: 26px; height: 26px; margin: 0 auto 10px; color: var(--fdx-accent-2); }
.fdx-usp__item span { display: block; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.02em; }
@media (max-width: 900px) { .fdx-usp__row { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .fdx-usp__row { grid-template-columns: repeat(2, 1fr); } }

/* -----------------------------------------------------------
   6. Sektionen / Service-Karten
----------------------------------------------------------- */
.fdx-section { padding: 80px 24px; }
.fdx-section--muted { background: var(--fdx-light); }
.fdx-section__head { max-width: 680px; margin: 0 auto 44px; text-align: center; }
.fdx-section__head .fdx-eyebrow { justify-content: center; }

.fdx-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: var(--fdx-max-width);
  margin: 0 auto;
}
@media (max-width: 1000px) { .fdx-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .fdx-grid { grid-template-columns: 1fr; } }

.fdx-card {
  background: #fff;
  border: 1px solid var(--fdx-border);
  border-radius: var(--fdx-radius);
  padding: 30px 26px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.fdx-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(15,22,38,0.10); border-color: transparent; }
.fdx-card h3 { margin-bottom: 0.45em; font-size: 1.1rem; }
.fdx-card p { margin-bottom: 0; color: var(--fdx-text-muted); font-size: 0.96rem; }
.fdx-card p:last-child { margin-bottom: 0; }
.fdx-card a.fdx-card__more { display: inline-block; margin-top: 12px; font-weight: 700; font-size: 0.88rem; }
.fdx-card__icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, var(--fdx-accent), var(--fdx-accent-dark));
  color: #fff; display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.fdx-card__icon svg { width: 24px; height: 24px; }

/* Ganze Karte als Link (Leistungen-Übersicht) */
a.fdx-card { display: block; color: inherit; }
a.fdx-card:hover { text-decoration: none; color: inherit; }

/* -----------------------------------------------------------
   7. Prozess-Timeline ("Von Grundstück bis Schlüsselübergabe")
----------------------------------------------------------- */
.fdx-timeline {
  max-width: var(--fdx-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.fdx-timeline::before {
  content: "";
  position: absolute;
  top: 26px; left: 8%; right: 8%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--fdx-border) 0 10px, transparent 10px 18px);
  z-index: 0;
}
.fdx-timeline__step { position: relative; z-index: 1; padding: 0 18px; text-align: center; }
.fdx-timeline__num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--fdx-dark); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; margin: 0 auto 18px;
  border: 4px solid #fff;
  box-shadow: 0 0 0 1px var(--fdx-border);
}
.fdx-timeline__step h3 { font-size: 1.02rem; margin-bottom: 0.4em; }
.fdx-timeline__step p { font-size: 0.92rem; color: var(--fdx-text-muted); margin: 0; }
@media (max-width: 900px) {
  .fdx-timeline { grid-template-columns: 1fr; gap: 34px; }
  .fdx-timeline::before { display: none; }
}

/* -----------------------------------------------------------
   8. CTA-Band
----------------------------------------------------------- */
.fdx-cta { color: #fff; text-align: center; padding: 70px 24px; }
.fdx-cta h2 { color: #fff; }
.fdx-cta p { color: #c8cee0; max-width: 560px; margin: 0 auto 26px; }

/* -----------------------------------------------------------
   9. Breadcrumb + Leistungsseiten (Detail)
----------------------------------------------------------- */
.fdx-breadcrumb {
  max-width: var(--fdx-max-width);
  margin: 0 auto;
  padding: 16px 24px 0;
  font-size: 0.85rem;
  color: var(--fdx-text-muted);
}
.fdx-breadcrumb a { color: var(--fdx-text-muted); font-weight: 600; }
.fdx-breadcrumb a:hover { color: var(--fdx-accent-dark); }
.fdx-breadcrumb .sep { margin: 0 6px; opacity: 0.6; }

.fdx-page-header {
  padding: 56px 24px 64px;
  text-align: center;
  color: #fff;
}
.fdx-page-header h1 { color: #fff; margin: 0 0 10px; }
.fdx-page-header p { color: #c8cee0; max-width: 640px; margin: 0 auto; }

.fdx-entry-content { max-width: 780px; margin: 0 auto; padding: 60px 24px; }
.fdx-entry-content h2 { margin-top: 1.5em; }
.fdx-entry-content h2:first-child { margin-top: 0; }
.fdx-entry-content ul { padding-left: 1.4em; }

/* -----------------------------------------------------------
   9d. Kontaktformular
----------------------------------------------------------- */
.fdx-form { max-width: 640px; margin: 1.6em 0; }
.fdx-form__honeypot { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.fdx-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .fdx-form__row { grid-template-columns: 1fr; } }
.fdx-form__field { margin-bottom: 18px; }
.fdx-form__field label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--fdx-dark);
}
.fdx-form__field input[type="text"],
.fdx-form__field input[type="email"],
.fdx-form__field input[type="tel"],
.fdx-form__field select,
.fdx-form__field textarea {
  width: 100%;
  padding: 0.75em 0.9em;
  border: 1px solid var(--fdx-border);
  border-radius: var(--fdx-radius-sm);
  font: inherit;
  color: var(--fdx-text);
  background: #fff;
}
.fdx-form__field input:focus,
.fdx-form__field select:focus,
.fdx-form__field textarea:focus {
  outline: none;
  border-color: var(--fdx-accent);
  box-shadow: 0 0 0 3px rgba(0,96,205,0.15);
}
.fdx-form__field textarea { resize: vertical; min-height: 130px; }
.fdx-form__field--checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--fdx-text-muted);
}
.fdx-form__field--checkbox input { margin-top: 4px; flex: 0 0 auto; }
.fdx-form button[type="submit"] { border: none; }
.fdx-form__notice {
  padding: 14px 18px;
  border-radius: var(--fdx-radius-sm);
  font-weight: 600;
  font-size: 0.94rem;
  margin-bottom: 20px;
}
.fdx-form__notice--success { background: #e6f6ea; color: #1e6b34; border: 1px solid #b8e4c4; }
.fdx-form__notice--error { background: #fdecec; color: #a3242a; border: 1px solid #f3bcbe; }

.fdx-contact-box {
  background: var(--fdx-light);
  border: 1px solid var(--fdx-border);
  border-radius: var(--fdx-radius);
  padding: 26px 28px;
  margin: 1.6em 0;
}
.fdx-contact-box p { margin: 0 0 0.4em; }

.fdx-related {
  max-width: 780px;
  margin: 0 auto 70px;
  padding: 0 24px;
}
.fdx-related h2 { font-size: 1.2rem; }
.fdx-related__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.fdx-related__list a {
  display: block;
  padding: 14px 16px;
  border: 1px solid var(--fdx-border);
  border-radius: var(--fdx-radius-sm);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--fdx-text);
}
.fdx-related__list a:hover { border-color: var(--fdx-accent); color: var(--fdx-accent-dark); text-decoration: none; }
@media (max-width: 600px) { .fdx-related__list { grid-template-columns: 1fr; } }

/* -----------------------------------------------------------
   9b. Referenzen / Projekte
----------------------------------------------------------- */
.fdx-ref-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: var(--fdx-max-width);
  margin: 0 auto;
}
@media (max-width: 900px) { .fdx-ref-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .fdx-ref-grid { grid-template-columns: 1fr; } }

.fdx-ref-card {
  display: block;
  border-radius: var(--fdx-radius);
  overflow: hidden;
  border: 1px solid var(--fdx-border);
  background: #fff;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.fdx-ref-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(15,22,38,0.12); }
.fdx-ref-card__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--fdx-light); }
.fdx-ref-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fdx-ref-card__body { padding: 16px 18px 18px; }
.fdx-ref-card__body h3 { font-size: 1rem; margin-bottom: 4px; }
.fdx-ref-card__body p { font-size: 0.88rem; color: var(--fdx-text-muted); margin: 0; }
.fdx-ref-card__body span.fdx-ref-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--fdx-accent-dark); margin-bottom: 6px;
}

/* -----------------------------------------------------------
   9c. Hero-Slideshow (Startseite, im Blueprint-Sichtfeld)
----------------------------------------------------------- */
.fdx-heroslide {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--fdx-radius);
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.14);
}
.fdx-heroslide__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s ease;
  z-index: 0;
}
.fdx-heroslide__slide.is-active { opacity: 1; visibility: visible; z-index: 1; }
.fdx-heroslide__slide svg { width: 100%; height: 100%; }
.fdx-heroslide__slide.has-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,26,48,0.05) 0%, rgba(8,26,48,0.6) 100%);
}
.fdx-heroslide__caption { position: absolute; left: 18px; bottom: 16px; z-index: 2; }
.fdx-heroslide__label {
  display: none;
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.04em;
  color: #dfe4ef;
  background: rgba(8,26,48,0.55);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 6px 13px;
  border-radius: 999px;
  white-space: nowrap;
}
.fdx-heroslide__label.is-active { display: inline-block; }
.fdx-heroslide__dots {
  position: absolute;
  right: 18px; bottom: 18px;
  z-index: 2;
  display: flex; gap: 6px;
}
.fdx-heroslide__dot {
  width: 8px; height: 8px;
  border-radius: 5px;
  background: rgba(255,255,255,0.35);
  border: none; padding: 0; cursor: pointer;
  transition: background 0.2s ease, width 0.2s ease;
}
.fdx-heroslide__dot.is-active { background: var(--fdx-accent-2); width: 20px; }

/* -----------------------------------------------------------
   10. Footer (Sitemap)
----------------------------------------------------------- */
.fdx-footer { background: var(--fdx-dark); color: #b9c0cf; padding: 60px 24px 24px; }
.fdx-footer__grid {
  max-width: var(--fdx-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 32px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 900px) { .fdx-footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .fdx-footer__grid { grid-template-columns: 1fr; } }

.fdx-footer h4 { color: #fff; font-size: 0.92rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.fdx-footer a { color: #b9c0cf; }
.fdx-footer a:hover { color: #fff; }
.fdx-footer ul { list-style: none; padding: 0; margin: 0; }
.fdx-footer li { margin-bottom: 9px; font-size: 0.92rem; }
.fdx-footer__claim { font-size: 0.92rem; max-width: 280px; color: #98a0b5; }

.fdx-footer__bottom {
  max-width: var(--fdx-max-width);
  margin: 0 auto;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
  color: #8a91a3;
}

/* -----------------------------------------------------------
   11. 404
----------------------------------------------------------- */
.fdx-404 { text-align: center; padding: 130px 24px; }

/* -----------------------------------------------------------
   12. Sichtbarkeits-Helfer
----------------------------------------------------------- */
.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
}
