/* ==========================================================================
   Fixx – Landingpage
   style.css · Design-Tokens, Basis-Typografie, Layout und Komponenten

   Aufbau dieser Datei:
     1.  Design-Tokens (Custom Properties)
     2.  Reset und Basis
     3.  Layout-Hilfsklassen
     4.  Typografie
     5.  Buttons
     6.  Kopfzeile / Navigation
     7.  Hero
     8.  Karten-Raster (Funktionen, Vorteile)
     9.  Branchen
     10. Preise
     11. FAQ
     12. Call-to-Action
     13. Footer
     14. Inhaltsseiten (Impressum, Datenschutz, AGB)
     15. Kontaktformular

   Breakpoints stehen in responsive.css, Bewegung in animations.css.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design-Tokens
   Die Farben entsprechen der Fixx-App (Provider-Oberfläche und Auth-Screens),
   damit Website und Produkt als ein Auftritt wirken.
   -------------------------------------------------------------------------- */

:root {
  /* Marke */
  --brand: #0d9488;
  --brand-deep: #0b7c72;
  --brand-dark: #07564f;
  --brand-soft: #e6f7f5;
  --brand-accent: #12b5a5;
  --navy: #111c3f;

  /* Neutrale Töne */
  --ink: #111827;
  --ink-2: #374151;
  --muted: #6b7280;
  --faint: #9ca3af;
  --line: #eaeff2;
  --line-strong: #dbe3e8;

  /* Flächen */
  --bg: #ffffff;
  --bg-alt: #fafcfc;
  --bg-mint: #f2fbf9;

  /* Radien */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 999px;

  /* Schatten – bewusst weich und flach, kein harter Rand */
  --shadow-xs: 0 1px 2px rgba(17, 24, 39, 0.04);
  --shadow-sm: 0 2px 10px rgba(17, 24, 39, 0.05);
  --shadow-md: 0 10px 30px rgba(17, 24, 39, 0.07);
  --shadow-lg: 0 24px 60px rgba(17, 24, 39, 0.1);

  /* Typografie
     Systemschriften: kein externer Request, sofort verfügbar, modern.
     Wie du stattdessen die App-Schriften (Outfit / DM Sans) einbindest,
     steht in der README. */
  --font-sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", sans-serif;

  /* Rhythmus */
  --container: 1180px;
  --gutter: 24px;
  --section-y: 104px;

  /* Bewegung */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur: 220ms;

  /* Höhe der fixierten Kopfzeile – auch für scroll-margin genutzt */
  --header-h: 72px;
}

/* --------------------------------------------------------------------------
   2. Reset und Basis
   -------------------------------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Verhindert horizontales Scrollen durch dekorative Elemente */
body {
  overflow-x: hidden;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: var(--brand-deep);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

button {
  font: inherit;
  color: inherit;
}

/* Sichtbarer Fokus – nur bei Tastaturbedienung, nicht bei Mausklick */
:focus-visible {
  outline: 3px solid var(--brand-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Sprunglink für Screenreader und Tastatur */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  padding: 12px 20px;
  background: var(--brand);
  color: #fff;
  border-radius: 0 0 var(--r-md) 0;
  font-weight: 600;
}

.skip-link:focus {
  left: 0;
}

/* Nur für Screenreader */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   3. Layout
   -------------------------------------------------------------------------- */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--section-y);
  /* Anker nicht unter die fixierte Kopfzeile scrollen lassen */
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.section--alt {
  background: var(--bg-alt);
}

.section--mint {
  background: var(--bg-mint);
}

.section__head {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}

.grid {
  display: grid;
  gap: 24px;
}

.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

/* --------------------------------------------------------------------------
   4. Typografie
   -------------------------------------------------------------------------- */

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
}

h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
}

h3 {
  font-size: 1.18rem;
  letter-spacing: -0.01em;
  font-weight: 700;
}

p {
  margin: 0;
}

.lead {
  margin-top: 18px;
  font-size: 1.12rem;
  line-height: 1.7;
  color: var(--muted);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 14px;
  border-radius: var(--r-full);
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-muted {
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: var(--r-full);
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
    background-color var(--dur) var(--ease), border-color var(--dur) var(--ease),
    color var(--dur) var(--ease);
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 8px 20px rgba(13, 148, 136, 0.25);
}

.btn--primary:hover {
  background: var(--brand-deep);
  box-shadow: 0 12px 28px rgba(13, 148, 136, 0.32);
}

.btn--ghost {
  background: #fff;
  border-color: var(--line-strong);
  color: var(--ink);
  box-shadow: var(--shadow-xs);
}

.btn--ghost:hover {
  border-color: var(--brand);
  color: var(--brand-deep);
}

.btn--light {
  background: #fff;
  color: var(--brand-dark);
}

.btn--light:hover {
  background: var(--brand-soft);
}

.btn--sm {
  min-height: 44px;
  padding: 0 20px;
  font-size: 0.94rem;
}

.btn--block {
  width: 100%;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.btn-row--center {
  justify-content: center;
}

/* --------------------------------------------------------------------------
   6. Kopfzeile / Navigation
   -------------------------------------------------------------------------- */

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(1.6) blur(12px);
  -webkit-backdrop-filter: saturate(1.6) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

/* Wird per JS gesetzt, sobald die Seite gescrollt ist */
.header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

/* Wortmarke – Platzhalter, bis das Logo als SVG/PNG vorliegt.
   Siehe README, Abschnitt „Logo ersetzen“. */
.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
  font-size: 1.42rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--navy);
}

.logo:hover {
  text-decoration: none;
}

.logo__accent {
  color: var(--brand-accent);
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav__link {
  padding: 8px 14px;
  border-radius: var(--r-full);
  color: var(--ink-2);
  font-size: 0.97rem;
  font-weight: 600;
  transition: color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}

.nav__link:hover {
  background: var(--bg-alt);
  color: var(--brand-deep);
  text-decoration: none;
}

/* Aktiver Abschnitt – per Scrollspy in script.js gesetzt */
.nav__link.is-active {
  color: var(--brand-deep);
  background: var(--brand-soft);
}

.header__cta {
  margin-left: 8px;
}

/* Hamburger – drei Linien, die sich zum X drehen */
.burger {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: #fff;
  cursor: pointer;
}

.burger__bar {
  position: absolute;
  left: 12px;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

.burger__bar:nth-child(1) {
  top: 15px;
}
.burger__bar:nth-child(2) {
  top: 21px;
}
.burger__bar:nth-child(3) {
  top: 27px;
}

.burger[aria-expanded="true"] .burger__bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.burger[aria-expanded="true"] .burger__bar:nth-child(2) {
  opacity: 0;
}

.burger[aria-expanded="true"] .burger__bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobiles Panel – Sichtbarkeit steuert responsive.css */
.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  z-index: 99;
  display: none;
  padding: 18px var(--gutter) 28px;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.mobile-nav__list {
  list-style: none;
  display: grid;
  gap: 4px;
}

.mobile-nav__link {
  display: block;
  padding: 14px 12px;
  border-radius: var(--r-md);
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 600;
}

.mobile-nav__link:hover {
  background: var(--bg-alt);
  text-decoration: none;
}

.mobile-nav .btn {
  margin-top: 14px;
}

/* Sperrt das Scrollen, solange das Menü offen ist */
body.is-menu-open {
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  padding-top: calc(var(--header-h) + 84px);
  padding-bottom: 96px;
  overflow: hidden;
}

/* Zwei weiche Mint-Flächen als Hintergrund – rein dekorativ */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero::before {
  width: 620px;
  height: 620px;
  top: -220px;
  right: -180px;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(18, 181, 165, 0.16),
    rgba(18, 181, 165, 0) 70%
  );
}

.hero::after {
  width: 480px;
  height: 480px;
  bottom: -220px;
  left: -200px;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(13, 148, 136, 0.1),
    rgba(13, 148, 136, 0) 70%
  );
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 64px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  list-style: none;
}

.hero__trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
}

.hero__trust svg {
  flex: none;
  color: var(--brand);
}

/* ---- Telefon-Mockup ------------------------------------------------------
   Platzhalter für einen echten App-Screenshot: vollständig in HTML/CSS
   gezeichnet, damit kein Bild geladen werden muss. Wie du ihn durch einen
   Screenshot ersetzt, steht in der README.
   ------------------------------------------------------------------------ */

.mockup {
  position: relative;
  justify-self: center;
  width: 300px;
  max-width: 100%;
  padding: 12px;
  border-radius: 44px;
  background: linear-gradient(160deg, #101a33, #1f2c4d);
  box-shadow: var(--shadow-lg);
}

.mockup__screen {
  position: relative;
  border-radius: 34px;
  background: var(--bg-alt);
  overflow: hidden;
}

/* Notch */
.mockup__notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 116px;
  height: 22px;
  border-radius: 0 0 14px 14px;
  background: #101a33;
  z-index: 2;
}

.mockup__body {
  padding: 40px 16px 22px;
}

.mockup__title {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--navy);
}

.mockup__sub {
  margin-top: 2px;
  font-size: 0.74rem;
  color: var(--muted);
}

.mockup__days {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin: 16px 0 14px;
}

.mockup__day {
  padding: 8px 0;
  border-radius: var(--r-sm);
  background: #fff;
  border: 1px solid var(--line);
  text-align: center;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--muted);
  line-height: 1.5;
}

.mockup__day span {
  display: block;
  font-size: 0.82rem;
  color: var(--ink);
}

.mockup__day.is-active {
  background: var(--brand);
  border-color: var(--brand);
  color: rgba(255, 255, 255, 0.85);
}

.mockup__day.is-active span {
  color: #fff;
}

.mockup__card {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  padding: 11px 12px;
  border-radius: var(--r-md);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
}

.mockup__avatar {
  flex: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 0.7rem;
  font-weight: 800;
}

.mockup__avatar--b {
  background: #fdeee2;
  color: #b45309;
}

.mockup__avatar--c {
  background: #e9edfb;
  color: #3b4f9e;
}

.mockup__line {
  flex: 1;
  min-width: 0;
}

.mockup__line strong {
  display: block;
  font-size: 0.78rem;
  color: var(--ink);
}

.mockup__line small {
  font-size: 0.68rem;
  color: var(--muted);
}

.mockup__time {
  flex: none;
  padding: 4px 9px;
  border-radius: var(--r-full);
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 0.66rem;
  font-weight: 800;
}

/* Schwebendes Badge am Mockup */
.mockup__badge {
  position: absolute;
  right: -18px;
  bottom: 68px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 15px;
  border-radius: var(--r-md);
  background: #fff;
  box-shadow: var(--shadow-md);
}

.mockup__badge svg {
  color: var(--brand);
}

.mockup__badge strong {
  display: block;
  font-size: 0.8rem;
  color: var(--ink);
  line-height: 1.3;
}

.mockup__badge small {
  font-size: 0.7rem;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   8. Karten (Funktionen, Vorteile)
   -------------------------------------------------------------------------- */

.card {
  padding: 30px 26px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
  box-shadow: var(--shadow-xs);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(13, 148, 136, 0.35);
  box-shadow: var(--shadow-md);
}

.card__icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  border-radius: var(--r-md);
  background: var(--brand-soft);
  color: var(--brand-deep);
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.65;
}

/* Vorteile – Zeilenlayout mit Icon links */
.benefit {
  display: flex;
  gap: 18px;
  padding: 24px;
  border-radius: var(--r-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.benefit:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.benefit__icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: var(--r-md);
  background: var(--brand);
  color: #fff;
}

.benefit h3 {
  margin-bottom: 6px;
}

.benefit p {
  color: var(--muted);
  font-size: 0.96rem;
}

/* --------------------------------------------------------------------------
   9. Branchen
   -------------------------------------------------------------------------- */

.industries {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  list-style: none;
}

.industry {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 22px;
  border: 1px solid var(--line);
  border-radius: var(--r-full);
  background: #fff;
  box-shadow: var(--shadow-xs);
  font-weight: 650;
  font-size: 1rem;
  color: var(--ink);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}

.industry:hover {
  transform: translateY(-3px);
  border-color: var(--brand);
  box-shadow: var(--shadow-sm);
}

.industry svg {
  flex: none;
  color: var(--brand);
}

.industry--more {
  background: var(--brand-soft);
  border-color: transparent;
  color: var(--brand-dark);
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   10. Preise
   -------------------------------------------------------------------------- */

.pricing {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 860px;
  margin-inline: auto;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 36px 32px;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.plan--featured {
  border-color: var(--brand);
  box-shadow: var(--shadow-md);
}

.plan__tag {
  position: absolute;
  top: -13px;
  left: 32px;
  padding: 5px 14px;
  border-radius: var(--r-full);
  background: var(--brand);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.plan h3 {
  font-size: 1.3rem;
}

.plan__price {
  margin: 18px 0 4px;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.plan__note {
  color: var(--muted);
  font-size: 0.95rem;
}

.plan__list {
  list-style: none;
  margin: 26px 0 32px;
  display: grid;
  gap: 12px;
}

.plan__list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--ink-2);
  font-size: 0.98rem;
}

.plan__list svg {
  flex: none;
  margin-top: 4px;
  color: var(--brand);
}

.plan .btn {
  margin-top: auto;
}

.pricing__footnote {
  max-width: 620px;
  margin: 34px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.93rem;
}

/* --------------------------------------------------------------------------
   11. FAQ
   -------------------------------------------------------------------------- */

.faq {
  max-width: 820px;
  margin-inline: auto;
  display: grid;
  gap: 14px;
}

.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
  box-shadow: var(--shadow-xs);
  overflow: hidden;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.faq__item.is-open {
  border-color: rgba(13, 148, 136, 0.4);
  box-shadow: var(--shadow-sm);
}

.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 24px 26px;
  border: 0;
  background: transparent;
  text-align: left;
  font-size: 1.06rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
}

.faq__icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand-deep);
  transition: transform var(--dur) var(--ease), background-color var(--dur) var(--ease);
}

.faq__item.is-open .faq__icon {
  transform: rotate(45deg);
  background: var(--brand);
  color: #fff;
}

/* Höhe wird per JS gesetzt, damit der Übergang animierbar bleibt */
.faq__a {
  height: 0;
  overflow: hidden;
  transition: height var(--dur) var(--ease);
}

.faq__a > div {
  padding: 0 26px 26px;
  color: var(--muted);
  font-size: 1rem;
}

/* --------------------------------------------------------------------------
   12. Call-to-Action
   -------------------------------------------------------------------------- */

.cta {
  position: relative;
  padding-block: 92px;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand) 55%, var(--brand-accent));
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  top: -260px;
  right: -160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.cta__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.cta h2 {
  color: #fff;
}

.cta p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

/* --------------------------------------------------------------------------
   13. Footer
   -------------------------------------------------------------------------- */

.footer {
  padding-block: 68px 32px;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.96rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.72);
}

.footer a:hover {
  color: #fff;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer .logo {
  color: #fff;
}

.footer__about {
  margin-top: 16px;
  max-width: 320px;
  line-height: 1.7;
}

.footer h4 {
  margin-bottom: 18px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer__list {
  list-style: none;
  display: grid;
  gap: 11px;
}

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.footer__social a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: background-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.footer__social a:hover {
  background: var(--brand);
  transform: translateY(-2px);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer__bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

/* --------------------------------------------------------------------------
   14. Inhaltsseiten (Impressum, Datenschutz, AGB, Kontakt)
   -------------------------------------------------------------------------- */

.page-hero {
  padding-top: calc(var(--header-h) + 68px);
  padding-bottom: 52px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
}

.page-hero .lead {
  max-width: 620px;
}

.prose {
  max-width: 780px;
  margin-inline: auto;
  padding-block: 72px;
}

.prose h2 {
  margin-top: 52px;
  margin-bottom: 14px;
  font-size: 1.5rem;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin-top: 30px;
  margin-bottom: 8px;
}

.prose p,
.prose ul,
.prose ol {
  margin-bottom: 16px;
  color: var(--ink-2);
}

.prose ul,
.prose ol {
  padding-left: 22px;
}

.prose li {
  margin-bottom: 8px;
}

.prose address {
  font-style: normal;
  line-height: 1.9;
}

/* Auffälliger Hinweis auf zu ersetzende Platzhalter */
.notice {
  display: flex;
  gap: 14px;
  margin-bottom: 40px;
  padding: 20px 22px;
  border: 1px solid #f5d5a8;
  border-left: 4px solid #e9973f;
  border-radius: var(--r-md);
  background: #fffaf2;
  color: #7c4a12;
  font-size: 0.95rem;
  line-height: 1.6;
}

.notice svg {
  flex: none;
  margin-top: 2px;
  color: #e9973f;
}

.notice strong {
  display: block;
  margin-bottom: 4px;
  color: #7c4a12;
}

/* Platzhalter im Fließtext sichtbar markieren */
.ph {
  padding: 1px 7px;
  border-radius: 5px;
  background: #fff2dc;
  color: #8a5312;
  font-weight: 600;
  font-size: 0.94em;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   15. Kontakt
   -------------------------------------------------------------------------- */

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: start;
}

.contact-card {
  padding: 30px 28px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
  box-shadow: var(--shadow-xs);
}

.contact-card + .contact-card {
  margin-top: 20px;
}

.contact-card h3 {
  margin-bottom: 8px;
}

.contact-card p {
  color: var(--muted);
  font-size: 0.97rem;
}

.form {
  padding: 34px 32px;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
}

.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-md);
  background: #fff;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.12);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field__error {
  display: none;
  margin-top: 7px;
  color: #c22a2f;
  font-size: 0.87rem;
  font-weight: 600;
}

.field.has-error input,
.field.has-error textarea {
  border-color: #d9534f;
}

.field.has-error .field__error {
  display: block;
}

.form__hint {
  margin-top: 18px;
  color: var(--faint);
  font-size: 0.86rem;
  line-height: 1.6;
}
