/* === Farbpalette: Champagner-Beige · Dunkelblau · Glänzendes Gold === */
:root {
  --beige: #ffffff;           /* einheitlicher Beige-Ton */
  --beige-2: #ffffff;
  --beige-soft: #ffffff;
  --cream: #ffffff;
  --navy: #142a5e;
  --navy-2: #142a5e;
  --navy-deep: #142a5e;
  --gold: #8a6310;
  --gold-2: #b8881e;
  --gold-soft: #d29f2a;
  --gold-shine: #e8b833;
  --ink: #142a5e;             /* einheitlicher Blauton */
  --muted: #5a5240;            /* warmes, gedämpftes Braun */
  --line: rgba(20, 33, 61, 0.15);

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 4px 14px rgba(14, 31, 58, 0.08);
  --shadow-md: 0 12px 40px rgba(14, 31, 58, 0.14);
  --shadow-lg: 0 24px 80px rgba(14, 31, 58, 0.22);

  /* Sattgold mit hellem Glanzpunkt — wandert per shimmer durch den Text */
  --gold-gradient: linear-gradient(110deg,
    #6b4c0a 0%,
    #8a6310 20%,
    #b8881e 40%,
    #fbeaa6 50%,
    #b8881e 60%,
    #8a6310 80%,
    #6b4c0a 100%);
  /* Heller Glanz-Verlauf für dunkle Hintergründe (Hero) */
  --gold-gradient-bright: linear-gradient(110deg,
    #b8881e 0%,
    #d29f2a 25%,
    #ffffff 50%,
    #d29f2a 75%,
    #b8881e 100%);

  /* Apple-Sprache: Inter (Body) + Playfair Display Italic (Akzent) + JetBrains Mono (Code) */
  --font-display: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
  --font-display-alt: "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-serif: "Playfair Display", ui-serif, Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
  --font-script: "Playfair Display", ui-serif, Georgia, serif;
  --font-ui: "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-hero: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", monospace;

  /* iOS-Easing & Apple-Hairline */
  --ease-ios: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-ios-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 220ms;
  --duration-slow: 600ms;
  --hairline: rgba(20, 33, 61, 0.10);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--beige);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv01", "cv11", "kern", "liga";
  text-rendering: optimizeLegibility;
  letter-spacing: 0;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === Typografie — Apple-Sprache (Inter, fluid, tight letter-spacing) === */
h1 {
  font-family: var(--font-hero);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.04;
  letter-spacing: -0.045em;
  margin: 0 0 .55em;
  text-transform: none;
  font-size: clamp(2.5rem, 7.5vw + 0.5rem, 5.5rem);
  text-wrap: balance;
}
h2 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin: 0 0 .6em;
  text-transform: none;
  font-size: clamp(1.75rem, 4.2vw + 0.5rem, 3.5rem);
  text-wrap: balance;
}
h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.18;
  margin: 0 0 .55em;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
h3 { font-size: clamp(1.375rem, 1.4vw + 1rem, 1.875rem); }
h4 {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.018em;
}

/* Versalien-Headline im Stil eines klassischen Briefkopfs */
.title-caps {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .26em;
}

/* Signaturhafte Schreibschrift für Akzente */
.script {
  font-family: var(--font-script);
  font-weight: 400;
  font-style: normal;
  letter-spacing: .01em;
  background: var(--gold-gradient);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  animation: shimmer 4s linear infinite;
}
p { margin: 0 0 1em; }

/* Glänzendes, metallisches Gold (Schrift) — wie die Signatur im Briefkopf */
.gold,
.shine-gold {
  font-family: var(--font-script);
  background: var(--gold-gradient);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-style: normal;
  font-weight: 700;
  font-size: 1.2em;
  letter-spacing: .01em;
  line-height: .9;
  display: inline-block;
  padding: 0 .04em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
  0%   { background-position: 200% 50%; }
  100% { background-position: -100% 50%; }
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  background: var(--gold-gradient);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: 1.2rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  animation: shimmer 4s linear infinite;
}
/* Heller Glanz für dunkle Hintergründe (Hero, Navbar) */
.hero .eyebrow,
.navbar .eyebrow {
  background: var(--gold-gradient-bright);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
}
.eyebrow.gold { background: var(--gold-gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* === Buttons (Apple-Pill, no-caps) === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: none;
  cursor: pointer;
  transition: transform 220ms var(--ease-ios), box-shadow 220ms var(--ease-ios), background 220ms var(--ease-ios), color 220ms var(--ease-ios), filter 220ms var(--ease-ios);
  border: 1.5px solid transparent;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  will-change: transform;
}
.btn:active { transform: scale(0.96); transition-duration: 90ms; }
.btn-primary {
  background: var(--gold-gradient-bright);
  background-size: 300% 100%;
  color: var(--navy-deep);
  box-shadow: 0 10px 30px rgba(201, 161, 74, .4), inset 0 1px 0 rgba(255, 255, 255, .35);
  text-shadow: 0 1px 0 rgba(255, 255, 255, .25);
  animation: shimmer 4s linear infinite;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 44px rgba(201, 161, 74, .55), inset 0 1px 0 rgba(255, 255, 255, .4); }
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-secondary:hover { background: var(--navy); color: var(--beige-soft); }
.btn-ghost {
  background: var(--gold-gradient);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  border-color: transparent;
  padding: 10px 20px;
  box-shadow: none;
  filter: drop-shadow(0 0 6px rgba(201, 161, 74, .35));
  transition: filter .35s ease, transform .2s ease;
  animation: shimmer 4s linear infinite;
}
.btn-ghost {
  position: relative;
}
.btn-ghost::before {
  content: "";
  position: absolute;
  inset: -6px -14px;
  border-radius: 999px;
  background:
    radial-gradient(ellipse, rgba(255, 250, 220, .9) 0%, rgba(244, 215, 122, .5) 30%, rgba(201, 161, 74, .2) 55%, transparent 75%);
  opacity: 0;
  transform: scale(.7);
  transition: opacity .35s ease, transform .35s ease;
  pointer-events: none;
  z-index: -1;
}
.btn-ghost:hover {
  filter: drop-shadow(0 0 7px rgba(244, 215, 122, .55));
  transform: translateY(-1px);
  animation-play-state: paused;
}
.btn-ghost:hover::before {
  opacity: .45;
  transform: scale(1.04);
}
.btn-ghost:active { animation: textSparkPop .55s ease-out, shimmer 6s ease-in-out infinite; }
.btn-ghost:active::before { animation: sparkBurst .6s ease-out forwards; }

@keyframes textSparkPop {
  0%   { transform: scale(1); }
  30%  {
    transform: scale(1.03);
    filter:
      drop-shadow(0 0 6px #f4d77a)
      drop-shadow(0 0 14px rgba(201, 161, 74, .5));
  }
  100% { transform: scale(1); }
}

/* === Telefon & WhatsApp Icons in der Navbar === */
.nav-icon {
  position: relative;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: transparent;
  color: var(--gold-2);
  border: 0;
  filter: drop-shadow(0 0 4px rgba(201, 161, 74, .45));
  transition: filter .3s ease, transform .2s ease, color .3s ease;
  animation: goldGlow 5s ease-in-out infinite;
}
.nav-icon::after { display: none !important; }

/* Goldener Strahlenkranz, der beim Hover/Klick aufflackert */
.nav-icon::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 250, 220, .9) 0%, rgba(244, 215, 122, .55) 25%, rgba(201, 161, 74, .25) 50%, transparent 72%);
  opacity: 0;
  transform: scale(.55);
  transition: opacity .35s ease, transform .35s ease;
  pointer-events: none;
}
.nav-icon:hover {
  color: var(--gold-shine);
  filter: drop-shadow(0 0 7px rgba(244, 215, 122, .55));
  transform: translateY(-1px);
  animation: none;
}
.nav-icon:hover::before {
  opacity: .55;
  transform: scale(1.05);
}
.nav-icon:active { animation: sparkPop .5s ease-out; }
.nav-icon:active::before { animation: sparkBurst .55s ease-out forwards; }
.nav-icon svg { display: block; position: relative; z-index: 1; }

@keyframes goldGlow {
  0%, 100% { color: #c9a14a; filter: drop-shadow(0 0 3px rgba(201, 161, 74, .4)); }
  50%      { color: #f4d77a; filter: drop-shadow(0 0 8px rgba(244, 215, 122, .65)); }
}

@keyframes sparkPop {
  0%   { transform: scale(1); }
  30%  { transform: scale(1.1); filter: drop-shadow(0 0 5px #f4d77a) drop-shadow(0 0 12px rgba(201, 161, 74, .55)); color: var(--gold-shine); }
  100% { transform: scale(1); }
}
@keyframes sparkBurst {
  0%   { opacity: .7; transform: scale(.6); }
  100% { opacity: 0; transform: scale(1.6); }
}
.btn-lg { padding: 16px 34px; font-size: 1rem; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-ui);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--navy);
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 5px;
  transition: color .2s var(--ease-ios), gap .2s var(--ease-ios);
}
.link-arrow:hover { color: var(--gold); }

/* === Navbar === */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14, 31, 58, .92);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid rgba(201, 161, 74, .25);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  max-width: none;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: var(--navy-deep);
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .06em;
  color: var(--gold-2);
  border: 1.5px solid var(--gold);
  box-shadow: 0 4px 14px rgba(0,0,0,.25), inset 0 1px 0 rgba(201, 161, 74, .3);
  text-shadow: 0 0 10px rgba(244, 215, 122, .35);
}
.logo-text {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: 2rem;
  letter-spacing: .01em;
  text-transform: none;
  color: var(--beige-soft);
  line-height: 1;
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-family: var(--font-ui);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--beige-soft);
  position: relative;
  transition: color .2s var(--ease-ios);
}
.nav-links a:not(.btn):hover { color: var(--gold); }
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute; left: 0; bottom: -6px;
  height: 2px; width: 0;
  background: var(--gold);
  transition: width .25s ease;
}
.nav-links a:not(.btn):hover::after { width: 100%; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--beige-soft);
  border-radius: 2px;
}

/* === Mobiler Drawer (mobile-first, auf Desktop ausgeblendet) === */
.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(86vw, 380px);
  max-width: 100%;
  background: #ffffff;
  color: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 18px 18px 22px;
  z-index: 200;
  transform: translateX(110%);
  transition: transform .32s cubic-bezier(.22, .61, .36, 1);
  box-shadow: -16px 0 48px rgba(10, 18, 38, .22);
  overflow-y: auto;
  overscroll-behavior: contain;
  visibility: visible;
}
.nav-drawer.open { transform: translateX(0); }

.nav-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 4px 18px;
  margin-bottom: 6px;
}
.nav-drawer-logo { display: flex; align-items: center; gap: 10px; }
.nav-drawer-logo .logo-mark {
  width: 36px; height: 36px;
  background: var(--navy);
  color: var(--gold-shine);
  border-color: var(--gold);
  font-size: .85rem;
}
.nav-drawer-logo .logo-text {
  color: var(--navy);
  font-size: 1.4rem;
}
.nav-drawer-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(20, 42, 94, .25);
  background: #fff;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease;
}
.nav-drawer-close:hover {
  background: rgba(20, 42, 94, .06);
  border-color: var(--gold);
  color: var(--gold);
}

.nav-drawer-list { display: flex; flex-direction: column; gap: 4px; }
.nav-drawer-list a {
  display: block;
  padding: 14px 18px;
  border-radius: 12px;
  color: var(--navy);
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0;
  text-transform: none;
  transition: background .15s ease, color .15s ease;
}
.nav-drawer-list a:hover,
.nav-drawer-list a:focus-visible {
  background: rgba(201, 161, 74, .12);
  color: var(--navy);
}
.nav-drawer-list a.is-active {
  background: rgba(201, 161, 74, .18);
  color: var(--navy);
}

.nav-drawer-footer {
  margin-top: auto;
  padding-top: 22px;
}
.nav-drawer-contact {
  background: rgba(201, 161, 74, .1);
  border: 1px solid rgba(201, 161, 74, .25);
  border-radius: 18px;
  padding: 18px 18px 16px;
}
.nav-drawer-contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
}
.nav-drawer-contact-icon {
  color: var(--gold);
  display: inline-flex;
}
.nav-drawer-contact-phone {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy);
}
.nav-drawer-contact-hours {
  margin: 6px 0 14px 28px;
  font-family: var(--font-ui);
  font-size: .92rem;
  color: var(--muted);
}
.nav-drawer-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 20px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .02em;
  text-transform: none;
  transition: background .15s ease, transform .15s ease;
}
.nav-drawer-cta:hover {
  background: #1c3a7d;
  transform: translateY(-1px);
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 18, 38, .45);
  z-index: 190;
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}
.nav-backdrop.show { opacity: 1; pointer-events: auto; }
.nav-backdrop[hidden] { display: none; }
body.nav-open { overflow: hidden; }

/* Desktop: Drawer + Backdrop ausgeblendet, normale Nav-Links aktiv */
@media (min-width: 641px) {
  .nav-drawer,
  .nav-backdrop { display: none !important; }
}

/* === Hero === */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 10vw, 130px) 0 clamp(80px, 11vw, 140px);
  background: #ffffff;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 12% 50%, rgba(201, 161, 74, .12), transparent 45%),
    radial-gradient(ellipse at 85% 30%, rgba(201, 161, 74, .18), transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-text h1 { color: var(--navy); }
.hero-text .eyebrow { /* Gold bleibt erhalten */ }
.hero-text .lead {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 2.4rem;
  line-height: 1.6;
  letter-spacing: .015em;
}
.hero-text .btn-secondary {
  color: var(--navy);
  border-color: var(--gold);
}
.hero-text .btn-secondary:hover {
  background: var(--gold);
  color: #ffffff;
  border-color: var(--gold);
}
.hero-meta {
  border-top-color: rgba(20, 33, 61, .15);
}
.hero-meta span { color: var(--muted); }
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 3rem;
}
.hero-meta {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.hero-meta div { display: flex; flex-direction: column; }
.hero-meta strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2rem;
  background: var(--gold-gradient);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  line-height: 1;
  letter-spacing: .01em;
  animation: shimmer 4s linear infinite;
}
.hero-meta span {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  color: var(--muted);
  margin-top: 6px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

/* === Hero Visual === */
.hero-visual { position: relative; min-height: 480px; }
.card-stack { position: relative; width: 100%; height: 100%; min-height: 480px; }
.halo {
  position: absolute;
  inset: 10% -10% 10% 10%;
  background: radial-gradient(circle at 60% 40%, rgba(224, 184, 95, .55), transparent 60%);
  filter: blur(40px);
  z-index: 0;
}
.mock {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(201, 161, 74, .25);
  z-index: 1;
  font-family: var(--font-ui);
}

/* === Mock Browser: Physio Richter Website === */
.mock-browser {
  width: 88%;
  top: 0;
  right: 0;
  padding: 0;
  background: #fdf9ec;
  overflow: hidden;
}
.mock-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(20, 33, 61, .04);
  border-bottom: 1px solid rgba(20, 33, 61, .06);
}
.mock-bar > span { width: 10px; height: 10px; border-radius: 50%; background: #e6d8b8; }
.mock-bar > span:first-child { background: #e89c8a; }
.mock-bar > span:nth-child(2) { background: #f1d693; }
.mock-bar > span:nth-child(3) { background: #b8d4a8; }
.mock-url {
  margin-left: 8px;
  flex: 1;
  background: #fff;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 10px;
  color: var(--muted);
  border: 1px solid rgba(20, 33, 61, .08);
}
.mock-body { padding: 0; }
.mock-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(20, 33, 61, .06);
  background: #fff;
}
.mock-nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.mock-nav-logo img {
  width: 22px; height: 22px;
  border-radius: 50%;
  object-fit: cover;
}
.mock-nav-text {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--navy);
  text-transform: uppercase;
}
.mock-nav-text strong { font-weight: 700; }
.mock-nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.mock-nav-links span {
  width: 18px;
  height: 4px;
  background: rgba(20, 33, 61, .15);
  border-radius: 2px;
}
.mock-nav-cta {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--navy-deep);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  padding: 5px 10px;
  border-radius: 999px;
  margin-left: 6px;
}
.mock-hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 14px;
  padding: 18px 16px 22px;
  align-items: center;
}
.mock-hero-text { min-width: 0; }
.mock-eyebrow {
  font-family: var(--font-display);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.mock-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 10px;
}
.mock-title em {
  font-family: var(--font-script);
  font-style: normal;
  background: var(--gold-gradient);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: .01em;
}
.mock-hero .mock-line {
  height: 4px;
  background: rgba(20, 33, 61, .12);
  border-radius: 2px;
  margin-bottom: 5px;
  width: 100%;
}
.mock-hero .mock-line.short { width: 65%; margin-bottom: 12px; }
.mock-hero .mock-cta {
  display: inline-block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
}
.mock-hero-img {
  aspect-ratio: 1 / 1.1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(20, 33, 61, .15);
}
.mock-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === Mock Tool: Termin-Dashboard === */
.mock-tool {
  width: 64%;
  bottom: 0;
  left: 0;
  padding: 16px 16px 14px;
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--beige-soft);
  border-color: rgba(201, 161, 74, .35);
}
.mock-tool-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px 12px;
  border-bottom: 1px solid rgba(201, 161, 74, .18);
  margin-bottom: 6px;
}
.mock-tool-title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--beige-soft);
}
.mock-tool-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy-deep);
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  padding: 3px 8px;
  border-radius: 999px;
}
.mock-tool-tabs {
  display: flex;
  gap: 6px;
  padding: 4px 0 12px;
}
.mock-tab {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(236, 224, 194, .65);
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid rgba(201, 161, 74, .2);
  background: rgba(255, 255, 255, .03);
}
.mock-tab em {
  font-style: normal;
  font-size: 8px;
  font-weight: 700;
  color: rgba(236, 224, 194, .55);
  background: rgba(255, 255, 255, .08);
  padding: 1px 5px;
  border-radius: 999px;
}
.mock-tab.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  border-color: transparent;
  color: var(--navy-deep);
}
.mock-tab.active em {
  background: rgba(20, 33, 61, .18);
  color: var(--navy-deep);
}

.mock-inbox-card {
  background: #fdf9ec;
  border: 1px solid rgba(201, 161, 74, .35);
  border-radius: 10px;
  padding: 12px 13px;
  box-shadow: 0 4px 14px rgba(20, 33, 61, .25);
}
.mock-inbox-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.mock-inbox-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-deep);
  letter-spacing: -.005em;
  line-height: 1.2;
}
.mock-inbox-treat {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 4px;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  color: #0f766e;
}
.mock-inbox-treat svg { width: 11px; height: 11px; }
.mock-inbox-status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #c2410c;
  background: #fff7ed;
  padding: 3px 7px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}
.mock-inbox-status::before {
  content: '';
  width: 5px;
  height: 5px;
  background: #f97316;
  border-radius: 50%;
}
.mock-inbox-when {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 8px;
}
.mock-inbox-when-icon {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 7px;
  color: #14b8a6;
  flex-shrink: 0;
}
.mock-inbox-when-icon svg { width: 14px; height: 14px; }
.mock-inbox-time {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.1;
}
.mock-inbox-date {
  font-size: 9px;
  color: #64748b;
  margin-top: 2px;
}

/* === Section base === */
.section {
  padding: clamp(70px, 8vw, 110px) 0;
  background: #ffffff;
}
.section-alt {
  background: #ffffff;
}
.section-dark {
  background:
    radial-gradient(ellipse at top right, rgba(201, 161, 74, .18), transparent 50%),
    var(--navy-deep);
  color: var(--beige);
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--beige-soft); }
.section-dark p { color: rgba(244, 236, 220, .8); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.section-head p {
  color: #1f3a7a;
  font-size: 1.2rem;
  font-weight: 300;
  font-family: var(--font-serif);
}
.section-head.light p { color: rgba(236, 224, 194, .8); }

/* === Grids === */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); gap: 60px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

/* === Testimonials === */
.testimonials { gap: 26px; }
.testimonials-single {
  max-width: 720px;
  margin: 0 auto;
}
.testimonial {
  background: var(--beige-soft);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid rgba(201, 161, 74, .35);
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.testimonial::before {
  content: "“";
  position: absolute;
  top: 6px;
  right: 22px;
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 1;
  color: rgba(201, 161, 74, .25);
  pointer-events: none;
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testimonial-stars {
  background: var(--gold-gradient);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: 1.05rem;
  letter-spacing: .15em;
  animation: shimmer 4s linear infinite;
}
.testimonial blockquote {
  margin: 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.18rem;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 400;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(20, 33, 61, .12);
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--gold-2);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .04em;
  border: 1.5px solid var(--gold);
  flex-shrink: 0;
}
.testimonial-meta { min-width: 0; }
.testimonial-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy);
  letter-spacing: .02em;
}
.testimonial-role {
  font-family: var(--font-serif);
  font-size: .95rem;
  color: var(--muted);
  margin-top: 2px;
}
.testimonial-cta {
  text-align: center;
  margin-top: 40px;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: #1f3a7a;
}
.testimonial-cta a {
  color: var(--navy);
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 2px;
  font-weight: 500;
  transition: color .2s;
}
.testimonial-cta a:hover { color: var(--gold); }

/* === Feature Cards === */
.feature-card {
  background: var(--beige-soft);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201, 161, 74, .35);
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
  color: var(--ink);
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  position: relative;
  width: 78px; height: 78px;
  border-radius: 18px;
  display: grid; place-items: center;
  background:
    radial-gradient(circle at 30% 25%, rgba(232, 184, 51, .25) 0%, transparent 55%),
    linear-gradient(155deg, var(--navy) 0%, #1a3470 60%, var(--navy) 100%);
  color: var(--gold-soft);
  margin-bottom: 28px;
  border: 1.5px solid var(--gold);
  box-shadow:
    0 0 0 4px rgba(184, 136, 30, .12),
    0 12px 28px rgba(10, 22, 46, .35),
    inset 0 1px 0 rgba(255, 230, 160, .25),
    inset 0 -10px 18px rgba(0, 0, 0, .25);
  overflow: hidden;
  transition: transform .4s cubic-bezier(.4,1.4,.5,1), box-shadow .35s ease;
}
.feature-icon::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(245, 207, 82, .35) 30deg,
    transparent 70deg,
    transparent 360deg);
  animation: feature-icon-sweep 6s linear infinite;
  pointer-events: none;
}
.feature-icon::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 14px;
  background: inherit;
  pointer-events: none;
}
.feature-icon svg {
  width: 34px; height: 34px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .5));
  transition: transform .4s cubic-bezier(.4,1.4,.5,1), color .3s ease;
}
.feature-card:hover .feature-icon { color: var(--gold-shine); }
.feature-card:hover .feature-icon {
  transform: translateY(-3px) rotate(-3deg);
  box-shadow:
    0 0 0 5px rgba(184, 136, 30, .22),
    0 18px 40px rgba(10, 22, 46, .45),
    inset 0 1px 0 rgba(255, 230, 160, .35),
    inset 0 -10px 18px rgba(0, 0, 0, .25);
}
.feature-card:hover .feature-icon svg {
  transform: scale(1.08) rotate(3deg);
}
@keyframes feature-icon-sweep {
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .feature-icon::before { animation: none; }
}
.feature-card h3 { color: var(--navy); font-size: 2rem; }
.feature-card p { color: #1f3a7a; font-family: var(--font-serif); font-size: 1.45rem; font-weight: 400; line-height: 1.6; }

.check-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 30px;
}
.check-list li {
  position: relative;
  padding-left: 38px;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 1.4rem;
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: .015em;
  line-height: 1.55;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 16px; height: 9px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}

/* === Steps === */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.steps li {
  background: var(--beige-soft);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid rgba(201, 161, 74, .35);
  position: relative;
  color: var(--ink);
}
.step-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  background: var(--gold-gradient);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  line-height: 1;
  display: block;
  margin-bottom: 14px;
  letter-spacing: .04em;
  animation: shimmer 4s linear infinite;
}
.steps h4 { color: var(--navy); margin-bottom: 12px; font-size: 1.55rem; }
.steps p { color: #1f3a7a; font-size: 1.2rem; font-weight: 500; font-family: var(--font-serif); margin: 0; line-height: 1.5; }

/* === About === */
.about { align-items: center; }
.about--single { max-width: 760px; margin-inline: auto; text-align: center; }
.about--single .about-text { display: flex; flex-direction: column; align-items: center; }
.about-text p {
  color: #1f3a7a;
  font-size: 1.4rem;
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.65;
}
.about-card {
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--beige);
  padding: 44px 38px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.about-card::before {
  content: "";
  position: absolute;
  top: -40%; right: -30%;
  width: 70%; height: 140%;
  background: radial-gradient(circle, rgba(201, 161, 74, .35) 0%, transparent 60%);
}
.about-card blockquote {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 30px;
  padding-left: 26px;
  border-left: 3px solid var(--gold);
  position: relative;
  z-index: 1;
  color: var(--beige-soft);
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(244, 236, 220, .15);
  padding-top: 24px;
}
.about-stats div { display: flex; flex-direction: column; }
.about-stats strong {
  font-family: var(--font-display);
  background: var(--gold-gradient);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  animation: shimmer 4s linear infinite;
}
.about-stats span {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  color: rgba(244, 236, 220, .75);
  margin-top: 6px;
}

/* === Contact form === */
.contact-form {
  max-width: 720px;
  margin: 0 auto;
  background: rgba(244, 236, 220, .04);
  padding: 44px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201, 161, 74, .25);
  backdrop-filter: blur(8px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label {
  display: block;
  margin-bottom: 18px;
}
.contact-form span {
  display: block;
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 600;
  background: var(--gold-gradient);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  animation: shimmer 4s linear infinite;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(244, 236, 220, .06);
  border: 1px solid rgba(201, 161, 74, .25);
  border-radius: 10px;
  color: var(--beige-soft);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  transition: border-color .2s, background .2s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(244, 236, 220, .4);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(244, 236, 220, .1);
}
.contact-form select { color: var(--beige-soft); }
.contact-form select option { background: var(--navy-deep); color: var(--beige-soft); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .btn { width: 100%; margin-top: 8px; }
.form-note {
  font-size: .8rem;
  color: rgba(244, 236, 220, .5);
  margin: 16px 0 0;
  text-align: center;
}
.form-status {
  margin: 14px 0 0;
  font-size: .95rem;
  text-align: center;
  color: var(--gold-2);
  min-height: 1.4em;
}

/* === Footer === */
.footer {
  background: var(--navy-deep);
  color: rgba(244, 236, 220, .7);
  padding: 50px 0 30px;
  border-top: 1px solid rgba(201, 161, 74, .2);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
  align-items: start;
}
.footer .logo-text { color: var(--beige-soft); }
.footer .logo-mark { background: transparent; }
.footer-tag { margin-top: 10px; font-size: 1.05rem; font-family: var(--font-serif); font-weight: 500; }
.footer-contact { margin-top: 12px; font-size: 1.05rem; font-family: var(--font-serif); font-weight: 500; line-height: 1.7; opacity: .9; }
.footer-contact a { color: inherit; text-decoration: none; }
.footer-contact a:hover { color: var(--gold); }
.contact-direct { margin-top: 14px; font-size: 1rem; }
.contact-direct a { color: var(--gold); text-decoration: none; font-weight: 500; }
.contact-direct a:hover { text-decoration: underline; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  justify-content: flex-end;
}
.footer-links a {
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  transition: color .2s;
}
.footer-links a:hover { color: var(--gold); }
.copyright {
  grid-column: 1 / -1;
  text-align: center;
  font-size: .82rem;
  color: rgba(244, 236, 220, .4);
  margin: 30px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(244, 236, 220, .08);
}

/* === Responsive === */
@media (max-width: 900px) {
  .hero {
    background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-2) 100%);
  }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { min-height: 360px; order: -1; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .about-stats { grid-template-columns: 1fr; gap: 12px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 640px) {
  /* Globale Skalierung — alles eine Spur kompakter */
  body { font-size: 17px; }
  .container { padding: 0 18px; }
  .section { padding: 56px 0; }
  .section-head { margin-bottom: 40px; }
  .section-head p { font-size: 1.05rem; }

  /* Navigation */
  .navbar { padding: 0; }
  .nav-inner { padding: 14px 18px; }
  .logo-mark { width: 36px; height: 36px; font-size: .9rem; }
  .logo-text { font-size: 1.55rem; }

  /* === Mobile Drawer (Drawer-Styling steht außerhalb des @media-Blocks) === */
  .nav-toggle { display: flex; }
  .nav-links { display: none; }

  /* Hero */
  .hero { padding: 56px 0 64px; }
  .hero-inner { gap: 32px; }
  .hero-text h1 { font-size: clamp(2rem, 8.5vw, 2.6rem); }
  .hero-text .lead {
    font-size: 1.05rem;
    line-height: 1.55;
    margin-bottom: 1.6rem;
  }
  .hero-cta {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 2rem;
  }
  .hero-cta .btn { width: 100%; }
  .hero-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding-top: 18px;
  }
  .hero-meta strong { font-size: 1.5rem; }
  .hero-meta span { font-size: .62rem; letter-spacing: .16em; margin-top: 4px; }
  .hero-visual { min-height: 280px; }
  .card-stack { min-height: 280px; }
  .mock-browser { width: 92%; }
  .mock-tool { width: 70%; }
  .mock-title { font-size: 15px; }
  .mock-title em { font-size: 18px; }

  /* Buttons im Inhalt */
  .btn { padding: 13px 24px; font-size: .78rem; letter-spacing: .18em; }
  .btn-lg { padding: 15px 26px; }

  /* Feature-Cards (Leistungen) */
  .feature-card { padding: 30px 22px; }
  .feature-card h3 { font-size: 1.55rem; }
  .feature-card p { font-size: 1.1rem; line-height: 1.5; }
  .feature-icon { width: 62px; height: 62px; margin-bottom: 20px; }
  .feature-icon svg { width: 28px; height: 28px; }
  .check-list { margin: 18px 0 24px; }
  .check-list li {
    font-size: 1.05rem;
    line-height: 1.45;
    padding-left: 30px;
    margin-bottom: 16px;
  }
  .check-list li::before { top: 6px; width: 13px; height: 7px; }
  .check-list-clickable li { padding-right: 30px; }

  /* Paket-Button in Feature-Card */
  .feature-package { padding: 14px 16px; margin: 6px 0 18px; }
  .feature-package-label { font-size: 1rem; }
  .feature-package-price { font-size: 1rem; }

  /* Empfehlung-Karten */
  .empfehlung-grid { gap: 14px; margin-top: 28px; }

  /* Steps */
  .steps { grid-template-columns: 1fr; gap: 22px; }
  .steps li { padding: 24px 22px; }
  .steps h4 { font-size: 1.35rem; margin-bottom: 8px; }
  .steps p { font-size: 1rem; }
  .step-num { font-size: 2.1rem; margin-bottom: 10px; }

  /* Über mich */
  .about { gap: 32px; }
  .about-text p { font-size: 1.1rem; line-height: 1.55; }
  .about-card { padding: 30px 24px; }
  .about-card blockquote {
    font-size: 1.2rem;
    line-height: 1.45;
    padding-left: 18px;
    margin-bottom: 22px;
  }
  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding-top: 18px;
  }
  .about-stats strong { font-size: .8rem; letter-spacing: .14em; }
  .about-stats span { font-size: .82rem; margin-top: 3px; }

  /* Kontakt-Form (alt) */
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 30px 22px; }

  /* Testimonials */
  .testimonial { padding: 28px 22px; }
  .testimonial blockquote { font-size: 1.05rem; }
  .testimonial::before { font-size: 4rem; top: 0; right: 14px; }

  /* Footer */
  .footer { padding: 40px 0 24px; }
  .footer-inner { gap: 22px; }
  .footer-tag, .footer-contact { font-size: .98rem; }
  .footer-links { gap: 12px 20px; }
  .footer-links a { font-size: .76rem; letter-spacing: .16em; }
}

/* Sehr kleine Handys */
@media (max-width: 420px) {
  .container { padding: 0 14px; }
  .section { padding: 48px 0; }
  .hero { padding: 44px 0 52px; }
  .hero-text h1 { font-size: clamp(1.8rem, 9vw, 2.2rem); }
  .hero-meta { gap: 8px; }
  .hero-meta strong { font-size: 1.3rem; }
  .hero-meta span { font-size: .58rem; letter-spacing: .12em; }
  .hero-visual { min-height: 240px; }
  .card-stack { min-height: 240px; }
  .feature-card { padding: 26px 18px; }
  .feature-card h3 { font-size: 1.4rem; }
  .check-list li { font-size: 1rem; padding-left: 26px; }
  .about-card { padding: 26px 20px; }
  .about-stats { grid-template-columns: 1fr; gap: 8px; }
  .empfehlung-card { padding: 24px 18px 20px; }
  .empfehlung-title { font-size: 1.1rem; }
  .empfehlung-price strong { font-size: 1.7rem; }
  .testimonial { padding: 24px 18px; }
  .nav-icon { width: 36px; height: 36px; }
}

/* === Termin-Buchung (wiederverwendbares Modul) === */
.termin-section {
  background:
    radial-gradient(ellipse at top right, rgba(201, 161, 74, .14), transparent 55%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--beige);
  position: relative;
  overflow: hidden;
}
.termin-section::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 720px; height: 720px;
  background: radial-gradient(circle, rgba(201, 161, 74, .12), transparent 60%);
  pointer-events: none;
}
.termin-section h2 { color: var(--beige-soft); }
.termin-section .eyebrow { color: var(--gold); }
.termin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.termin-info p {
  color: rgba(244, 236, 220, .9);
  margin-bottom: 36px;
  font-size: 1.2rem;
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.6;
}
.termin-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 22px;
}
.termin-steps li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.termin-step-num {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(201, 161, 74, .15);
  border: 1px solid rgba(201, 161, 74, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--gold);
  font-size: .95rem;
  letter-spacing: .04em;
}
.termin-steps strong {
  color: var(--beige-soft);
  font-family: var(--font-display);
  font-size: 1.05rem;
  display: block;
  margin-bottom: 4px;
  font-weight: 600;
}
.termin-steps p {
  color: rgba(244, 236, 220, .8);
  font-size: 1.1rem;
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}

.termin-form {
  background: var(--beige);
  color: var(--ink, #14213d);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(201, 161, 74, .25);
}
.termin-form-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  padding: 0 0 20px;
  border-bottom: 1px solid rgba(20, 33, 61, .12);
}
.termin-form-logo .logo-mark {
  width: 46px; height: 46px;
  font-size: 1.05rem;
}
.termin-form-logo .logo-text {
  color: var(--navy-deep);
  font-size: 1.15rem;
}
.termin-form h3 {
  font-family: var(--font-display);
  margin: 0 0 26px;
  font-size: 1.4rem;
  color: var(--navy-deep);
  font-weight: 600;
}
.termin-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.termin-group { margin-bottom: 18px; }
.termin-group label {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: #6b4c0a;
  margin-bottom: 8px;
  letter-spacing: .04em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .3);
}
.termin-group input,
.termin-group select,
.termin-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid rgba(20, 33, 61, .12);
  border-radius: 10px;
  background: #fff;
  font-family: inherit;
  font-size: .95rem;
  color: var(--navy-deep);
  transition: all .18s ease;
  box-sizing: border-box;
}
.termin-group input:focus,
.termin-group select:focus,
.termin-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 161, 74, .15);
}
.termin-group textarea { resize: vertical; min-height: 90px; }

.termin-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .85rem;
  color: var(--muted, #5a6675);
  margin: 8px 0 22px;
  cursor: pointer;
}
.termin-checkbox input { margin-top: 3px; accent-color: var(--gold); }
.termin-checkbox a { color: var(--navy); text-decoration: underline; }

.termin-form .btn { width: 100%; }

.termin-success {
  text-align: center;
  padding: 24px 0 8px;
  color: #0f766e;
  animation: terminFadeUp .5s ease;
}
.termin-success svg { color: #0f766e; margin: 0 auto 14px; display: block; }
.termin-success h4 {
  color: var(--navy-deep);
  margin-bottom: 6px;
  font-size: 1.2rem;
  font-family: var(--font-display);
  font-weight: 600;
}
.termin-success p { color: var(--muted, #5a6675); font-size: .92rem; }
@keyframes terminFadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .termin-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  .termin-grid { gap: 32px; }
  .termin-info p { font-size: 1.05rem; margin-bottom: 24px; }
  .termin-steps { gap: 16px; }
  .termin-steps strong { font-size: 1rem; }
  .termin-steps p { font-size: 1rem; }
  .termin-step-num { width: 40px; height: 40px; font-size: .85rem; border-radius: 12px; }
  .termin-form { padding: 26px 20px; }
  .termin-form h3 { font-size: 1.25rem; margin-bottom: 20px; }
  .termin-form-logo { margin-bottom: 18px; padding-bottom: 16px; }
  .termin-row { grid-template-columns: 1fr; gap: 0; }
  .termin-group { margin-bottom: 14px; }
  .termin-group input,
  .termin-group select,
  .termin-group textarea { padding: 11px 12px; font-size: 1rem; }
  .termin-checkbox { font-size: .8rem; }
}

/* === Termin-Box-FAB (nur sichtbar wenn lokaler Termin-Server läuft) === */
.termin-box-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 22px 10px 10px;
  background: linear-gradient(155deg, var(--navy) 0%, #1a3470 100%);
  color: var(--gold-soft);
  border: 1.5px solid var(--gold);
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  box-shadow:
    0 0 0 4px rgba(184, 136, 30, .12),
    0 14px 32px rgba(10, 22, 46, .35),
    inset 0 1px 0 rgba(245, 207, 82, .25);
  transition: transform .3s cubic-bezier(.4,1.4,.5,1), box-shadow .3s ease, color .25s ease;
}
.termin-box-fab:hover {
  transform: translateY(-3px);
  color: var(--gold-shine);
  box-shadow:
    0 0 0 5px rgba(184, 136, 30, .22),
    0 20px 44px rgba(10, 22, 46, .45),
    inset 0 1px 0 rgba(245, 207, 82, .35);
}
.termin-box-fab[hidden] { display: none !important; }
.termin-box-fab-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: var(--navy-deep);
  color: var(--gold-2);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .04em;
  border: 1px solid var(--gold);
  box-shadow: inset 0 1px 0 rgba(245, 207, 82, .3);
}
.termin-box-fab-label { white-space: nowrap; }
@media (max-width: 640px) {
  .termin-box-fab { bottom: 16px; right: 16px; padding: 8px 16px 8px 8px; font-size: .72rem; }
  .termin-box-fab-icon { width: 30px; height: 30px; font-size: .75rem; }
}

/* === Klickbare Checklist-Punkte (Preisliste) === */
.section-hint {
  margin-top: 14px;
  font-family: var(--font-ui);
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hint-dot {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-ui);
  font-style: italic;
  font-weight: 600;
  font-size: .72rem;
  background: rgba(232, 184, 51, .08);
}
.check-list-clickable li {
  cursor: pointer;
  user-select: none;
  padding-right: 36px;
  border-radius: 10px;
  transition: background .18s ease, transform .18s ease;
  outline: none;
}
.check-list-clickable li:hover,
.check-list-clickable li:focus-visible {
  background: rgba(20, 33, 61, .045);
  transform: translateX(2px);
}
.check-list-clickable li:focus-visible {
  box-shadow: 0 0 0 2px rgba(232, 184, 51, .55);
}
.check-info {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(201, 161, 74, .55);
  color: var(--gold);
  font-family: var(--font-ui);
  font-style: italic;
  font-weight: 600;
  font-size: .72rem;
  opacity: .55;
  transition: opacity .2s ease, transform .2s ease, background .2s ease;
  background: transparent;
}
.check-list-clickable li:hover .check-info,
.check-list-clickable li:focus-visible .check-info {
  opacity: 1;
  background: rgba(232, 184, 51, .12);
  transform: translateY(-50%) scale(1.05);
}

/* === Empfehlungs-Karten (Tool-Paket / Bundle) === */
.empfehlung-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}
.empfehlung-card {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3470 100%);
  border: 1px solid rgba(201, 161, 74, .35);
  border-radius: var(--radius);
  padding: 34px 38px 30px;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 14px 36px rgba(14, 31, 58, .22);
  outline: none;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .25s ease, border-color .2s ease;
}
.empfehlung-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  border-radius: var(--radius) var(--radius) 0 0;
}
.empfehlung-card:hover,
.empfehlung-card:focus-visible {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 22px 52px rgba(14, 31, 58, .32);
}
.empfehlung-eyebrow {
  display: block;
  font-family: var(--font-ui);
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 12px;
  font-weight: 600;
}
.empfehlung-title {
  font-family: var(--font-ui);
  font-size: 1.4rem;
  color: #fff;
  margin: 0 0 18px;
  font-weight: 600;
  letter-spacing: .005em;
  line-height: 1.25;
  text-transform: none;
}
.empfehlung-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 10px;
}
.empfehlung-price strong {
  font-family: var(--font-ui);
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .002em;
  line-height: 1.05;
}
.empfehlung-price-suffix {
  font-family: var(--font-ui);
  font-size: 1rem;
  color: rgba(255, 255, 255, .7);
  font-weight: 400;
  letter-spacing: .01em;
}
.empfehlung-meta {
  font-family: var(--font-ui);
  font-size: .92rem;
  color: var(--gold-soft);
  margin: 0;
  line-height: 1.5;
  font-weight: 500;
}
.empfehlung-meta-sep {
  opacity: .55;
  margin: 0 6px;
}
@media (max-width: 600px) {
  .empfehlung-card { padding: 28px 24px 24px; }
  .empfehlung-title { font-size: 1.2rem; }
  .empfehlung-price strong { font-size: 2rem; }
  .empfehlung-eyebrow { font-size: .7rem; letter-spacing: .18em; }
}

/* === Komplett-Paket Karte am Ende der Feature-Card === */
.feature-package {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 6px 18px;
  width: 100%;
  margin: 8px 0 22px;
  padding: 18px 22px;
  background: linear-gradient(135deg, rgba(20, 33, 61, .04) 0%, rgba(232, 184, 51, .07) 100%);
  border: 1px solid rgba(201, 161, 74, .4);
  border-radius: 14px;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: var(--ink);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.feature-package:hover,
.feature-package:focus-visible {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: 0 8px 22px rgba(14, 31, 58, .12);
  background: linear-gradient(135deg, rgba(20, 33, 61, .06) 0%, rgba(232, 184, 51, .12) 100%);
  outline: none;
}
.feature-package-label {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  grid-column: 1;
  grid-row: 1;
}
.feature-package-label em {
  font-style: normal;
  font-weight: 400;
  color: var(--muted);
  font-size: .92em;
}
.feature-package-price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: .01em;
  grid-column: 1;
  grid-row: 2;
}
.feature-package-sep {
  opacity: .55;
  margin: 0 4px;
}
.feature-package-arrow {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  font-family: var(--font-ui);
  font-size: 1.3rem;
  color: var(--gold);
  transition: transform .25s ease;
}
.feature-package:hover .feature-package-arrow,
.feature-package:focus-visible .feature-package-arrow {
  transform: translateX(4px);
}

/* === Preis-Dialog (shadcn-Stil) === */
.price-dialog[hidden] { display: none; }
.price-dialog {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  place-items: center;
  padding: 24px;
  animation: priceDialogFade .22s ease;
}
.price-dialog-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 31, 58, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.price-dialog-content {
  position: relative;
  z-index: 1;
  background: var(--beige-soft);
  border: 1px solid rgba(201, 161, 74, .45);
  border-radius: var(--radius);
  padding: 28px 30px 24px;
  max-width: 540px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  animation: priceDialogPop .28s cubic-bezier(.16, 1, .3, 1);
  text-align: left;
}
.price-dialog-content::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
@keyframes priceDialogFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes priceDialogPop {
  from { transform: scale(.96) translateY(8px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.price-dialog-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .15s, border-color .15s, color .15s;
  padding: 0;
}
.price-dialog-close svg { width: 14px; height: 14px; }
.price-dialog-close:hover {
  background: rgba(20, 33, 61, .07);
  border-color: var(--gold);
  color: var(--gold);
}
.price-dialog-eyebrow {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: .65rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.price-dialog h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin: 0 0 10px;
  color: var(--navy);
  line-height: 1.25;
  font-weight: 600;
}
.price-dialog-desc {
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: .98rem;
  margin: 0 0 16px;
  line-height: 1.5;
  font-weight: 400;
}
.price-dialog-prices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 0 0 12px;
}
.price-pill {
  border: 1px solid rgba(201, 161, 74, .4);
  border-radius: 10px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, .15);
}
.price-label {
  font-family: var(--font-ui);
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
}
.price-value {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy);
  display: block;
  margin-top: 2px;
  font-weight: 600;
  line-height: 1.15;
}
.price-dialog-note {
  font-family: var(--font-ui);
  font-size: .72rem;
  color: var(--muted);
  margin: 0 0 14px;
  line-height: 1.4;
}
.price-dialog-cta {
  display: inline-flex;
  justify-content: center;
}
@media (max-width: 520px) {
  .price-dialog-content { padding: 24px 20px 18px; }
  .price-dialog h3 { font-size: 1.15rem; }
  .price-dialog-desc { font-size: .92rem; }
  .price-value { font-size: 1.05rem; }
}
@media (prefers-reduced-motion: reduce) {
  .price-dialog,
  .price-dialog-content { animation: none; }
}

/* === Ausgewählte Markierung auf Listenpunkten & Karten === */
.check-list-clickable li.is-selected {
  background: rgba(232, 184, 51, .14);
  box-shadow: inset 3px 0 0 var(--gold);
}
.check-list-clickable li.is-selected .check-info {
  opacity: 1;
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.check-list-clickable li.is-selected .check-info::before {
  content: "✓";
  font-style: normal;
}
.check-list-clickable li.is-selected .check-info {
  font-size: 0;
}
.check-list-clickable li.is-selected .check-info::before {
  font-size: .85rem;
}

.feature-package.is-selected {
  background: linear-gradient(135deg, rgba(232, 184, 51, .18) 0%, rgba(20, 33, 61, .08) 100%);
  border-color: var(--gold);
}
.feature-package.is-selected .feature-package-arrow::before {
  content: "✓ ";
  color: var(--gold);
}

.empfehlung-card.is-selected {
  border-color: var(--gold);
  box-shadow: 0 22px 52px rgba(14, 31, 58, .32), inset 0 0 0 1px var(--gold);
}
.empfehlung-card.is-selected::after {
  content: "✓ Ausgewählt";
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: var(--font-ui);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
}

/* === Preis-Dialog: Aktions-Buttons === */
.price-dialog-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.price-dialog-actions .btn {
  padding: 10px 14px;
  font-size: .68rem;
  letter-spacing: .14em;
  width: 100%;
  min-width: 0;
}
.price-dialog-add {
  position: relative;
}
.price-dialog-add,
.price-dialog-add:hover,
.price-dialog-add:active,
.price-dialog-add:focus,
.price-dialog-add:focus-visible {
  transform: none !important;
}
.price-dialog-add .price-dialog-add-active { display: none; }
.price-dialog-add .price-dialog-add-default { display: inline; }
.price-dialog-add.is-selected {
  background: var(--navy);
  color: var(--gold-soft);
  animation: none;
  text-shadow: none;
  box-shadow: 0 6px 18px rgba(14, 31, 58, .25);
}
.price-dialog-add.is-selected .price-dialog-add-default { display: none; }
.price-dialog-add.is-selected .price-dialog-add-active { display: inline; }
.price-dialog-cta {
  white-space: nowrap;
}

/* === Termin-Formular: Auswahl-Box über dem Nachrichten-Feld === */
.termin-selection[hidden] { display: none; }
.termin-selection {
  margin: 10px 0 14px;
  padding: 14px 16px 12px;
  background: linear-gradient(135deg, rgba(20, 33, 61, .04) 0%, rgba(232, 184, 51, .08) 100%);
  border: 1px solid rgba(201, 161, 74, .4);
  border-radius: 12px;
}
.termin-selection-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.termin-selection-title {
  font-family: var(--font-ui);
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
}
.termin-selection-title em {
  font-style: normal;
  color: var(--gold);
  font-weight: 700;
  margin-left: 4px;
}
.termin-selection-clear {
  background: transparent;
  border: none;
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 4px 6px;
  transition: color .15s;
}
.termin-selection-clear:hover { color: var(--gold); }
.termin-selection-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.termin-selection-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 6px 0;
  color: var(--ink);
  line-height: 1.4;
}
.termin-selection-list li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
  font-family: var(--font-ui);
}
.termin-selection-item-title {
  flex: 1;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.35;
}
.termin-selection-list .termin-selection-remove {
  margin-left: auto;
  background: transparent;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 1.05rem;
  padding: 0 4px;
  font-family: var(--font-ui);
  line-height: 1;
  flex-shrink: 0;
}
.termin-selection-list .termin-selection-remove:hover { color: var(--gold); }
.termin-selection-note {
  margin: 10px 0 0;
  font-family: var(--font-ui);
  font-size: .75rem;
  color: var(--muted);
  line-height: 1.4;
}

/* === LUCIDE ICONS === */
.lucide-icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke-width: 1.8;
}
.lucide-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Navbar-Telefon-Icon */
.nav-icon .lucide-icon,
.nav-icon-svg { width: 20px; height: 20px; }

/* Feature-Icons in den Cards */
.feature-icon .lucide-icon,
.feature-icon [data-lucide],
.feature-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.6;
}

/* Form-Success-Icon (groß, grün) */
.termin-success-icon {
  width: 44px !important;
  height: 44px !important;
  stroke-width: 2.5;
}

/* Dialog Close-Button */
.dialog-close-icon { width: 18px; height: 18px; stroke-width: 2; }

/* Fallback bei deaktiviertem JS */
.no-js [data-aos] {
  opacity: 1 !important;
  transform: none !important;
}

/* ============================================================
   APPLE-SPRACHE — Override-Layer (Design: Scuric, ohne Farbänderung)
   ============================================================ */

/* Lead-Text (Subline unter Hero) */
.lead {
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: clamp(1.0625rem, 0.4vw + 1rem, 1.25rem);
  line-height: 1.55;
  letter-spacing: -0.005em;
  text-wrap: pretty;
}

/* Display-Klassen (für Hero & große Headlines) */
.display {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.5rem, 7.5vw + 0.5rem, 5.5rem);
  line-height: 1.04;
  letter-spacing: -0.052em;
  text-wrap: balance;
}
.display-edit {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.25rem, 6.5vw + 0.5rem, 5rem);
  line-height: 1.08;
  letter-spacing: -0.032em;
  text-wrap: balance;
  font-style: italic;
}
.display-2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.75rem, 4.2vw + 0.5rem, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.038em;
  text-wrap: balance;
}
.display-3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.375rem, 1.4vw + 1rem, 1.875rem);
  line-height: 1.18;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.caption {
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  line-height: 1.125rem;
  letter-spacing: 0.02em;
}

/* Section-Atem (Apple-generös) */
.section-py    { padding-block: clamp(3.75rem, 8vw + 0.5rem, 10rem); }
.section-py-sm { padding-block: clamp(2.75rem, 5vw + 0.5rem, 6rem); }

/* Hairlines statt harter Borders */
.hairline-t { border-top: 1px solid var(--hairline); }
.hairline-b { border-bottom: 1px solid var(--hairline); }

/* Safe-Area-Padding */
.pb-safe { padding-bottom: max(env(safe-area-inset-bottom), 0px); }
.pt-safe { padding-top: max(env(safe-area-inset-top), 0px); }
.mb-safe { margin-bottom: max(env(safe-area-inset-bottom), 0px); }

/* iOS-Mikro-Interaktionen */
.tap-press {
  transition: transform 220ms var(--ease-ios);
  -webkit-tap-highlight-color: transparent;
  will-change: transform;
}
.tap-press:active { transform: scale(0.96); transition-duration: 90ms; }

.tap-press-soft {
  transition: transform 280ms var(--ease-ios);
  -webkit-tap-highlight-color: transparent;
  will-change: transform;
}
.tap-press-soft:active { transform: scale(0.985); transition-duration: 110ms; }

.hover-lift {
  transition: transform 320ms var(--ease-ios), box-shadow 320ms var(--ease-ios);
}
@media (hover: hover) {
  .hover-lift:hover { transform: translateY(-2px); }
}

/* Gold-Glow für Akzent-Elemente */
.glow-accent {
  transition: filter 360ms var(--ease-ios), box-shadow 360ms var(--ease-ios), transform 360ms var(--ease-ios);
}
@media (hover: hover) {
  .glow-accent:hover {
    filter: drop-shadow(0 0 14px rgba(184, 136, 30, .45));
  }
  .glow-accent-btn:hover {
    box-shadow: 0 6px 18px rgba(184, 136, 30, .28),
                0 0 24px rgba(184, 136, 30, .32);
  }
}

/* Reveal-Up Animation */
.reveal-up { animation: reveal-up 600ms var(--ease-ios) both; }
@keyframes reveal-up {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Selection in Gold */
::selection {
  background-color: var(--gold);
  color: #ffffff;
}

/* Reduced-Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  html { scroll-behavior: auto; }
  .tap-press:active,
  .tap-press-soft:active,
  .hover-lift:hover,
  .btn:active { transform: none; }
}

/* Buttons: zusätzliche Apple-Hover-Lift */
@media (hover: hover) {
  .btn-primary:hover {
    box-shadow:
      0 6px 18px rgba(184, 136, 30, .35),
      0 0 24px rgba(184, 136, 30, .28),
      inset 0 1px 0 rgba(255, 255, 255, .4);
  }
}

/* ============================================================
   Apple Premium Upgrades — 2026-05-19
   Inspiration: apple.com, linear.app, anthropic.com
   Konsequente Apple-Mechanik: Hairlines, Pill-Buttons,
   subtile Tiefenstaffelung, generous Whitespace.
   ============================================================ */

/* --- 1. Scroll-Progress-Bar (gold, hairline) --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 9999;
  pointer-events: none;
  background: rgba(20, 33, 61, 0.06);
}
.scroll-progress::after {
  content: "";
  display: block;
  height: 100%;
  width: var(--scroll-progress, 0%);
  background: var(--gold-gradient);
  background-size: 200% 100%;
  animation: shimmer 4s linear infinite;
  box-shadow: 0 0 8px rgba(232, 184, 51, .55);
  transition: width 80ms linear;
}

/* --- 2. Pill-Buttons (Apple-Form, kompakter) --- */
.btn {
  border-radius: 980px;
  letter-spacing: -0.01em;
  font-weight: 500;
  transition:
    transform 220ms var(--ease-ios),
    background 220ms var(--ease-ios),
    box-shadow 320ms var(--ease-ios),
    color 220ms var(--ease-ios);
}
.btn-primary {
  padding: 14px 28px;
}
.btn-lg {
  padding: 18px 38px;
  font-size: 1.0625rem;
}

/* --- 3. Premium Apple-Shadow-Stack (Cards, Mocks) --- */
.feature-card,
.about-card,
.termin-form,
.testimonial,
.mock,
.empfehlung-card,
.price-dialog-content {
  box-shadow:
    0 1px 2px rgba(14, 31, 58, 0.04),
    0 4px 12px rgba(14, 31, 58, 0.06),
    0 16px 40px rgba(14, 31, 58, 0.08);
  transition:
    transform 420ms var(--ease-ios),
    box-shadow 420ms var(--ease-ios);
  will-change: transform;
}

@media (hover: hover) {
  .feature-card:hover,
  .about-card:hover,
  .testimonial:hover,
  .empfehlung-card:hover {
    transform: translateY(-6px);
    box-shadow:
      0 4px 8px rgba(14, 31, 58, 0.04),
      0 16px 32px rgba(14, 31, 58, 0.09),
      0 32px 64px rgba(14, 31, 58, 0.14);
  }
}

/* --- 4. Hero: subtle animated aurora & noise --- */
.hero {
  isolation: isolate;
}
.hero::after {
  content: "";
  position: absolute;
  inset: -10%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(40% 35% at 22% 28%, rgba(232, 184, 51, .22), transparent 60%),
    radial-gradient(35% 32% at 78% 72%, rgba(201, 161, 74, .18), transparent 65%),
    radial-gradient(45% 40% at 50% 100%, rgba(20, 33, 61, .35), transparent 70%);
  filter: blur(20px);
  animation: hero-aurora 22s ease-in-out infinite alternate;
  opacity: .9;
}
@keyframes hero-aurora {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(2%, -1.5%, 0) scale(1.06); }
}
/* Premium-Noise (sehr subtil, Film-Look) — auf Body als Overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: .025;
  mix-blend-mode: overlay;
  z-index: 9998;
}

/* --- 5. Section-Headlines: Word-Reveal beim Scroll --- */
.section-head h2 .word,
h2 .word {
  display: inline-block;
  opacity: .15;
  transform: translateY(14px);
  transition:
    opacity 600ms var(--ease-ios),
    transform 600ms var(--ease-ios);
  will-change: transform, opacity;
}
.section-head h2 .word.is-revealed,
h2 .word.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --- 6. Magnetischer Primary-Button (transformiert vom Script) --- */
.btn-primary {
  transform-origin: center;
}

/* --- 7. Section-Spacing: Apple-Generous Whitespace --- */
.section {
  padding-block: clamp(80px, 9vw, 140px);
}

/* --- 8. Feature-Cards: weicher Border, mehr Innenraum --- */
.feature-card {
  border-radius: 28px;
  border: 1px solid rgba(20, 33, 61, 0.06);
  background: #ffffff;
}
.empfehlung-card,
.about-card,
.testimonial {
  border-radius: 24px;
}

/* --- 9. Hairline-Section-Divider (Apple-typisch) --- */
.section + .section {
  position: relative;
}
.section + .section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(960px, 86%);
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(20, 33, 61, 0.08) 30%,
    rgba(184, 136, 30, 0.18) 50%,
    rgba(20, 33, 61, 0.08) 70%,
    transparent 100%);
}
.section.section-alt + .section::before,
.section + .section.section-alt::before { display: none; }

/* --- 10. Smooth-Scroll-Apple-Easing --- */
html {
  scroll-behavior: smooth;
}
@supports (scroll-behavior: smooth) {
  :root { scroll-behavior: smooth; }
}

/* --- 11. Link-Underline-Reveal (Apple Marketing-Stil) --- */
.link-arrow {
  position: relative;
  font-weight: 500;
}
.link-arrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 1px;
  width: 100%;
  background: currentColor;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 400ms var(--ease-ios);
}
.link-arrow:hover::after {
  transform: scaleX(1);
}

/* --- 12. Mocks im Hero: subtilere Erhebung --- */
.mock {
  box-shadow:
    0 2px 4px rgba(14, 31, 58, 0.06),
    0 8px 24px rgba(14, 31, 58, 0.10),
    0 32px 64px rgba(14, 31, 58, 0.18);
}

/* --- 13. Form: Apple-Feeling auf Eingabefeldern --- */
.termin-form input,
.termin-form select,
.termin-form textarea {
  border-radius: 12px;
  transition:
    border-color 220ms var(--ease-ios),
    box-shadow 220ms var(--ease-ios),
    background 220ms var(--ease-ios);
}
.termin-form input:focus,
.termin-form select:focus,
.termin-form textarea:focus {
  border-color: var(--gold-2);
  box-shadow: 0 0 0 4px rgba(184, 136, 30, 0.14);
  outline: none;
}

/* --- 14. Reduced-Motion: Premium-Upgrades respektieren --- */
@media (prefers-reduced-motion: reduce) {
  .hero::after { animation: none; }
  .scroll-progress::after { animation: none; }
  .feature-card:hover,
  .about-card:hover,
  .testimonial:hover,
  .empfehlung-card:hover { transform: none; }
}

/* ============================================================
   Colorway 2026-05-19: "Warm Editorial"
   Inspiration: Anthropic + Stripe + Apple
   Cream / Charcoal / Terracotta / Sage
   → menschlich, premium, modern, lokal-vertrauenswürdig
   ============================================================ */
:root {
  /* Warme Cream-Töne ersetzen die reinen Weißtöne */
  --beige: #ffffff;
  --beige-2: #ffffff;
  --beige-soft: #ffffff;
  --cream: #ffffff;

  /* Charcoal ersetzt Navy — Apple-Anthrazit, nie reines Schwarz */
  --navy: #1a1a1f;
  --navy-2: #15151a;
  --navy-deep: #0f0f12;
  --ink: #1a1a1f;

  /* Terracotta ersetzt Gold — warm, charaktervoll */
  --gold: #C8674B;
  --gold-2: #E07856;
  --gold-soft: #ECA286;
  --gold-shine: #F4C7B1;

  /* Sekundär: Sage Green */
  --sage: #87A878;
  --sage-soft: #B5CCAA;

  --muted: #6b6b6b;
  --line: rgba(26, 26, 31, 0.10);
  --hairline: rgba(26, 26, 31, 0.08);

  /* Schatten neu kalibriert auf Charcoal-Basis */
  --shadow-sm: 0 4px 14px rgba(26, 26, 31, 0.06);
  --shadow-md: 0 12px 40px rgba(26, 26, 31, 0.10);
  --shadow-lg: 0 24px 80px rgba(26, 26, 31, 0.18);

  /* Terracotta-Gradient mit hellem Glanzpunkt */
  --gold-gradient: linear-gradient(110deg,
    #A85537 0%,
    #C8674B 22%,
    #E07856 42%,
    #F4D5C2 50%,
    #E07856 58%,
    #C8674B 78%,
    #A85537 100%);
  --gold-gradient-bright: linear-gradient(110deg,
    #E07856 0%,
    #ECA286 25%,
    #FAEFE5 50%,
    #ECA286 75%,
    #E07856 100%);
}

/* Hero-Hintergrund: weiß */
.hero {
  background: #ffffff !important;
}
.hero::before {
  background:
    radial-gradient(ellipse at 15% 45%, rgba(224, 120, 86, .10), transparent 50%) !important,
    radial-gradient(ellipse at 85% 70%, rgba(135, 168, 120, .08), transparent 55%) !important;
}
.hero::after {
  background: none !important;
}

/* Hero-Text: dunkel auf weiß */
.hero-text h1 { color: #1a1a1f !important; }
.hero-text .lead { color: #4a4a50 !important; }
.hero-meta span { color: #6b6b70 !important; }

/* Body-Background: weiß */
body { background: #ffffff; }
.section { background: #ffffff; }
.section.section-alt { background: #ffffff; }

/* Feature-Card: zarter Hairline-Border statt harter Linie */
.feature-card,
.about-card,
.testimonial,
.empfehlung-card,
.termin-form {
  background: #FFFFFF;
  border: 1px solid var(--hairline);
}

/* Navbar: glasig auf weiß */
.navbar {
  background: rgba(255, 255, 255, 0.78) !important;
  border-bottom: 1px solid var(--hairline);
}

/* Primary-Button: Terracotta mit warmem Glow */
.btn-primary {
  background: linear-gradient(135deg, #E07856 0%, #C8674B 100%) !important;
  color: #FFFFFF !important;
  box-shadow:
    0 1px 2px rgba(168, 85, 55, .25),
    0 8px 24px rgba(200, 103, 75, .28),
    inset 0 1px 0 rgba(255, 255, 255, .25);
}
@media (hover: hover) {
  .btn-primary:hover {
    box-shadow:
      0 4px 12px rgba(168, 85, 55, .30),
      0 12px 32px rgba(200, 103, 75, .35),
      inset 0 1px 0 rgba(255, 255, 255, .30) !important;
  }
}

/* Sage-Akzent für sekundäre Vertrauens-Elemente */
.testimonial-stars {
  color: var(--gold) !important;  /* Terracotta-Sterne — wärmer als Gold */
}
.check-list li::before,
.check-list-clickable li::before {
  color: var(--sage) !important;  /* grüne Häkchen = "alles ok, alles drin" */
}

/* Selection in Terracotta */
::selection {
  background-color: var(--gold);
  color: #FFFFFF;
}

/* Mock-Browser: Cream-Variante */
.mock-browser { background: #FAF9F5 !important; }
.mock-bar { background: rgba(26, 26, 31, .04) !important; }

/* Focus-Ring: Terracotta */
.termin-form input:focus,
.termin-form select:focus,
.termin-form textarea:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 4px rgba(200, 103, 75, 0.14) !important;
}

/* Hairline-Section-Divider: Terracotta-Gradient-Glow */
.section + .section::before {
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(26, 26, 31, 0.06) 30%,
    rgba(200, 103, 75, 0.22) 50%,
    rgba(26, 26, 31, 0.06) 70%,
    transparent 100%) !important;
}

/* ============================================================
   Readability-Fix 2026-05-19
   Gradient-Texte mit hellem Glanzpunkt sind auf Cream-BG unlesbar.
   Fix: Auf hellen BGs solid Terracotta. Auf dunklen BGs Gradient.
   Außerdem: Navbar zurück auf Charcoal-Glass (Apple-Vision-Pro-Stil).
   ============================================================ */

/* --- Navbar: einheitlich Charcoal wie Footer --- */
.navbar {
  background: #1a1a1f !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
}

/* --- Eyebrow auf Cream-Sections: solid dunkler Terracotta --- */
.section .eyebrow,
.about-text .eyebrow,
.termin-info .eyebrow {
  background: none !important;
  background-image: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: #A85537 !important;
  color: #A85537 !important;
  animation: none !important;
  font-weight: 600;
}

/* --- .gold / .script / .shine-gold in normalen Sections: solid Terracotta --- */
.section .gold,
.section .shine-gold,
.section .script,
.about .gold,
.termin-info .gold {
  background: none !important;
  background-image: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: #A85537 !important;
  color: #A85537 !important;
  animation: none !important;
  font-weight: 700;
  text-shadow: 0 1px 0 rgba(168, 85, 55, 0.05);
}

/* Hero/Navbar/Footer (dunkle BGs): Gradient & Shimmer bleiben */
.hero .gold,
.hero .shine-gold,
.hero .script,
.hero .eyebrow,
.navbar .eyebrow,
.footer .gold {
  background: var(--gold-gradient-bright) !important;
  background-size: 300% 100% !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  animation: shimmer 4s linear infinite !important;
}

/* --- Feature-Package-Price & Empfehlung-Price: solid Terracotta auf hellen Cards --- */
.feature-package-price,
.empfehlung-price strong,
.empfehlung-price,
.empfehlung-eyebrow {
  background: none !important;
  background-image: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: #A85537 !important;
  color: #A85537 !important;
  animation: none !important;
}

/* --- Body-Text: Charcoal als Hauptfarbe, dunkler Muted --- */
body {
  color: #1a1a1f;
}
p, li, label, span {
  /* Lass spezifische Farben weiter wirken, aber Default ist dunkel */
}
.feature-card p,
.about-text p,
.testimonial blockquote,
.termin-info p,
.steps p,
.section-head p {
  color: #3a3a40;  /* dunkler Charcoal-Grau, sehr gut lesbar (~11:1 auf Cream) */
}

/* --- Muted-Text dunkler machen, damit lesbar --- */
:root {
  --muted: #4a4a50;  /* statt #6b6b6b */
}

/* --- Section-Hint, Selection-Note u.ä. --- */
.section-hint,
.termin-selection-note,
.empfehlung-price-suffix {
  color: #5a5a60 !important;
}

/* --- Link-Arrow: Charcoal-Text, Terracotta-Hover --- */
.link-arrow {
  color: #1a1a1f !important;
  border-bottom-color: #C8674B !important;
}
.link-arrow:hover {
  color: #A85537 !important;
}

/* --- Hero-Lead Kontrast verbessern --- */
.hero-text .lead {
  color: rgba(250, 249, 245, 0.92) !important;
}
.hero-meta strong {
  /* Auf dunklem Hero: heller Gradient bleibt — passt */
}

/* --- Buttons: Lesbarkeit final --- */
.btn-secondary {
  color: #1a1a1f !important;
  border-color: #1a1a1f !important;
}
.btn-secondary:hover {
  background: #1a1a1f !important;
  color: #FAF9F5 !important;
}
.hero-text .btn-secondary {
  color: #FAF9F5 !important;
  border-color: rgba(250, 249, 245, 0.5) !important;
}
.hero-text .btn-secondary:hover {
  background: #FAF9F5 !important;
  color: #1a1a1f !important;
  border-color: #FAF9F5 !important;
}

/* --- btn-ghost (Termin-Button in Navbar): Pulsierender Orange-Glow --- */
.navbar .btn-ghost {
  background: none !important;
  background-image: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: #FAEFE5 !important;
  color: #FAEFE5 !important;
  filter: none;
  border: 1.5px solid #E07856 !important;
  padding: 10px 22px !important;
  box-shadow:
    0 0 0 0 rgba(224, 120, 86, 0.0),
    0 0 14px rgba(224, 120, 86, 0.35) !important;
  animation: navGhostGlow 2.4s ease-in-out infinite !important;
}
.navbar .btn-ghost:hover {
  background: rgba(224, 120, 86, 0.18) !important;
  color: #FFFFFF !important;
  border-color: #FF8A66 !important;
  box-shadow:
    0 0 0 4px rgba(224, 120, 86, 0.18),
    0 0 22px rgba(255, 138, 102, 0.65) !important;
  animation: none !important;
}
.navbar .btn-ghost::before { display: none; }
@keyframes navGhostGlow {
  0%, 100% {
    box-shadow:
      0 0 0 0 rgba(224, 120, 86, 0.0),
      0 0 10px rgba(224, 120, 86, 0.25);
    border-color: rgba(224, 120, 86, 0.55);
  }
  50% {
    box-shadow:
      0 0 0 3px rgba(224, 120, 86, 0.18),
      0 0 24px rgba(255, 138, 102, 0.7);
    border-color: #FF8A66;
  }
}

/* --- Form-Labels: dunkel und klar --- */
.termin-form label,
.termin-form-logo .logo-text {
  color: #1a1a1f !important;
}
.termin-form input,
.termin-form select,
.termin-form textarea {
  color: #1a1a1f !important;
  background: #FFFFFF !important;
  border: 1px solid rgba(26, 26, 31, 0.14) !important;
}
.termin-form input::placeholder,
.termin-form textarea::placeholder {
  color: #8a8a90 !important;
}

/* --- Termin-Steps Text --- */
.termin-step-num,
.step-num {
  color: #C8674B !important;
}
.termin-info strong,
.steps h4 {
  color: #1a1a1f !important;
}

/* --- Testimonial Stars: solid Terracotta --- */
.testimonial-stars {
  color: #C8674B !important;
}

/* --- Mock-Browser: Cream + Charcoal-Text --- */
.mock-nav-text { color: #1a1a1f !important; }
.mock-eyebrow { color: #A85537 !important; }
.mock-title { color: #1a1a1f !important; }

/* --- Footer bleibt dunkel — Texte schon hell genug --- */
.footer-tag,
.footer-contact,
.footer-links a {
  color: rgba(244, 241, 233, 0.85) !important;
}
.footer-contact a:hover,
.footer-links a:hover {
  color: #E07856 !important;
}

/* --- Nav-Drawer (mobile): Cream-BG bekommt Charcoal-Texte --- */
.nav-drawer { background: #FFFFFF !important; }
.nav-drawer-list a,
.nav-drawer-contact-row,
.nav-drawer-contact-phone {
  color: #1a1a1f !important;
}
.nav-drawer-list a:hover,
.nav-drawer-list a:focus-visible {
  background: rgba(200, 103, 75, 0.10) !important;
  color: #A85537 !important;
}
.nav-drawer-cta {
  background: linear-gradient(135deg, #E07856 0%, #C8674B 100%) !important;
  color: #FFFFFF !important;
}

/* --- nav-icon (Phone/WhatsApp): Terracotta mit pulsierendem Glow --- */
.nav-icon {
  color: #E07856 !important;
  filter: drop-shadow(0 0 4px rgba(224, 120, 86, 0.55)) !important;
  animation: navIconPulse 2.4s ease-in-out infinite !important;
}
.nav-icon:hover {
  color: #FF8A66 !important;
  filter: drop-shadow(0 0 12px rgba(255, 138, 102, 0.85)) !important;
  animation: none !important;
}
@keyframes navIconPulse {
  0%, 100% {
    filter: drop-shadow(0 0 4px rgba(224, 120, 86, 0.45));
  }
  50% {
    filter: drop-shadow(0 0 12px rgba(255, 138, 102, 0.9))
            drop-shadow(0 0 22px rgba(224, 120, 86, 0.5));
  }
}

/* --- Empfehlung-Card: weißer BG mit klarem Text --- */
.empfehlung-card .empfehlung-title {
  color: #1a1a1f !important;
}
.empfehlung-card .empfehlung-desc {
  color: #3a3a40 !important;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.55;
  margin: 0 0 18px;
}
.empfehlung-card .empfehlung-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 600;
  color: #A85537 !important;
  letter-spacing: -0.01em;
  transition: gap 200ms var(--ease-ios), color 200ms var(--ease-ios);
}
.empfehlung-card:hover .empfehlung-cta {
  color: #C8674B !important;
  gap: 10px;
}

/* --- Mobile Hero: weiß --- */
@media (max-width: 900px) {
  .hero:not(.hero-apple) {
    background: #ffffff !important;
  }
}

/* ============================================================
   APPLE EDITION 2026-05-19
   Was würde ein Apple-Designer tun?
   → 1 Idee pro Section · zentriert · riesige Headlines ·
     viel Whitespace · helles Cream-System · Pill-Buttons ·
     subtile Animationen · Hairlines statt Borders
   ============================================================ */

/* ---------- Hero: hell, zentriert, riesig ---------- */
.hero-apple {
  background: #ffffff !important;
  padding: clamp(80px, 9vw, 130px) 0 clamp(48px, 6vw, 90px) !important;
  text-align: center;
  isolation: isolate;
  overflow: hidden;
  position: relative;
}
/* Aurora-Mesh: weiche Farb-Blobs für warmen, lebendigen Hintergrund */
.hero-apple::before {
  content: "";
  position: absolute;
  inset: -10% -5%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(38% 32% at 18% 15%, rgba(255, 170, 130, 0.45) 0%, transparent 65%),
    radial-gradient(34% 30% at 82% 22%, rgba(255, 215, 170, 0.40) 0%, transparent 65%),
    radial-gradient(40% 35% at 50% 8%, rgba(255, 200, 160, 0.35) 0%, transparent 60%),
    radial-gradient(36% 32% at 88% 78%, rgba(200, 220, 200, 0.28) 0%, transparent 70%),
    radial-gradient(32% 28% at 8% 78%, rgba(255, 190, 150, 0.28) 0%, transparent 70%) !important;
  filter: blur(30px);
}
/* Dezentes Punkt-Grid für Tiefe (sehr subtil) */
.hero-apple::after {
  content: "" !important;
  display: block !important;
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(26, 26, 31, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  background-position: 0 0;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 80%);
  opacity: 0.7;
}
.hero-apple-text {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 22px;
  text-align: center;
}
.hero-apple .eyebrow {
  display: inline-block;
  margin-bottom: 28px;
  font-size: 0.875rem;
  letter-spacing: 0.22em;
  font-weight: 600;
}
.hero-apple-title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7vw, 6rem) !important;
  font-weight: 600 !important;
  line-height: 1.04 !important;
  letter-spacing: -0.028em !important;
  color: #1a1a1f !important;
  margin: 0 0 28px !important;
  text-wrap: balance;
}
.hero-apple-title .gold {
  font-family: var(--font-display) !important;
  font-style: italic;
  font-weight: 600 !important;
  font-size: 1em !important;
  letter-spacing: -0.028em !important;
  color: #C8674B !important;
  -webkit-text-fill-color: #C8674B !important;
  background: none !important;
  background-image: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  animation: none !important;
  display: inline !important;
  padding: 0 !important;
}
.hero-apple-lead {
  font-family: var(--font-display) !important;
  font-size: clamp(1.125rem, 1.8vw, 1.5rem) !important;
  line-height: 1.4 !important;
  color: #4a4a50 !important;
  max-width: 680px;
  margin: 0 auto 40px !important;
  font-weight: 400 !important;
  letter-spacing: -0.012em !important;
}
.hero-apple-cta {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 64px;
}
.hero-apple-cta .link-arrow {
  border-bottom: 0 !important;
  padding-bottom: 0;
  color: #C8674B !important;
  font-size: 1.0625rem;
  font-weight: 500;
}
.hero-apple-cta .link-arrow:hover {
  color: #A85537 !important;
}
.hero-apple-meta {
  display: inline-flex;
  gap: clamp(28px, 5vw, 64px);
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 32px;
  border-top: 1px solid rgba(26, 26, 31, 0.08);
  max-width: 720px;
  margin: 0 auto;
}
.hero-apple-meta div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.hero-apple-meta strong {
  font-family: var(--font-display) !important;
  font-size: clamp(1.75rem, 3vw, 2.25rem) !important;
  font-weight: 600 !important;
  color: #1a1a1f !important;
  letter-spacing: -0.02em !important;
  line-height: 1 !important;
  background: none !important;
  background-image: none !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: #1a1a1f !important;
  animation: none !important;
}
.hero-apple-meta span {
  font-size: 0.75rem !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: #6b6b70 !important;
  font-weight: 500 !important;
  margin: 0 !important;
}

/* ---------- Hero-Visual: groß, zentriert, Apple-Card ---------- */
.hero-apple-visual {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 60px auto 0;
  padding: 0 22px;
}
.hero-apple-visual .card-stack {
  min-height: clamp(420px, 50vw, 600px) !important;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
.hero-apple-visual .mock-browser {
  width: 78% !important;
  top: 0 !important;
  left: 0 !important;
  right: auto !important;
  box-shadow:
    0 1px 2px rgba(26, 26, 31, 0.06),
    0 8px 24px rgba(26, 26, 31, 0.10),
    0 32px 64px rgba(26, 26, 31, 0.16) !important;
}
.hero-apple-visual .mock-tool {
  width: 36% !important;
  top: auto !important;
  bottom: 0 !important;
  right: 0 !important;
  left: auto !important;
}
.hero-apple-visual .halo {
  inset: 20% 5% 5% 5% !important;
  background: radial-gradient(circle at 50% 50%, rgba(224, 120, 86, 0.18), transparent 60%) !important;
}

/* ---------- Sections: konsequent zentriert mit großen Headlines ---------- */
.section {
  padding-block: clamp(90px, 11vw, 160px) !important;
}
.section .container {
  max-width: 1100px;
}
.section .section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 72px;
}
.section .section-head h2 {
  font-size: clamp(2rem, 4.5vw, 4rem) !important;
  font-weight: 600 !important;
  letter-spacing: -0.022em !important;
  line-height: 1.06 !important;
  color: #1a1a1f !important;
  margin: 0 0 24px !important;
  text-wrap: balance;
}
.section .section-head .eyebrow {
  margin-bottom: 20px;
  font-size: 0.8125rem;
  letter-spacing: 0.22em;
}
.section .section-head p {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  color: #4a4a50 !important;
  line-height: 1.5;
  max-width: 640px;
  margin: 0 auto;
}

/* ---------- Section-Alt: weiß ---------- */
.section.section-alt {
  background: #ffffff !important;
}

/* ---------- Feature-Cards: 2x1 Apple-Style ---------- */
.grid.grid-2 {
  gap: 24px !important;
}
@media (max-width: 900px) {
  .grid.grid-2 { gap: 36px !important; }
}
.feature-card {
  border-radius: 28px !important;
  padding: clamp(40px, 4.4vw, 56px) clamp(28px, 3.6vw, 44px) !important;
  background: #FFFFFF !important;
  border: 1px solid rgba(26, 26, 31, 0.06) !important;
  box-shadow:
    0 1px 2px rgba(26, 26, 31, 0.04),
    0 8px 24px rgba(26, 26, 31, 0.06) !important;
  transition:
    transform 520ms var(--ease-ios),
    box-shadow 520ms var(--ease-ios),
    border-color 320ms var(--ease-ios) !important;
}
.feature-card::before { display: none !important; }

@media (hover: hover) {
  .feature-card:hover {
    transform: translateY(-3px) !important;
    border-color: rgba(26, 26, 31, 0.10) !important;
    box-shadow:
      0 2px 6px rgba(26, 26, 31, 0.05),
      0 18px 44px rgba(26, 26, 31, 0.10) !important;
  }
}

.feature-card h3 {
  font-family: var(--font-display) !important;
  font-size: clamp(1.5rem, 2.2vw, 2rem) !important;
  font-weight: 600 !important;
  letter-spacing: -0.022em !important;
  color: #1a1a1f !important;
  margin: 0 0 14px !important;
  line-height: 1.2 !important;
}
.feature-card > p {
  font-family: var(--font-body) !important;
  font-size: 1.0625rem !important;
  line-height: 1.55 !important;
  color: #515158 !important;
  letter-spacing: -0.005em !important;
  margin: 0 0 28px !important;
  font-weight: 400 !important;
}

/* App-Icon-Squircle: Schwarz mit orangem Icon */
.feature-card .feature-icon {
  position: relative;
  width: 60px !important;
  height: 60px !important;
  border-radius: 17px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px !important;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 200, 150, 0.10) 0%, transparent 60%),
    linear-gradient(155deg, #1a1a1f 0%, #0f0f12 60%, #000000 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.10) !important;
  color: #FFA552 !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 -8px 16px rgba(0, 0, 0, 0.30) inset,
    0 8px 20px rgba(0, 0, 0, 0.22),
    0 1px 2px rgba(0, 0, 0, 0.18) !important;
  overflow: hidden;
  transition: box-shadow 420ms var(--ease-ios), transform 420ms var(--ease-ios) !important;
}
.feature-card .feature-icon::before,
.feature-card .feature-icon::after { display: none !important; }
.feature-card .feature-icon i,
.feature-card .feature-icon svg,
.feature-card .feature-icon .lucide-icon,
.feature-card .feature-icon [data-lucide] {
  width: 26px !important;
  height: 26px !important;
  color: #FFA552 !important;
  stroke: #FFA552 !important;
  stroke-width: 1.75 !important;
  filter: none !important;
  transition: transform 420ms var(--ease-ios) !important;
}
@media (hover: hover) {
  .feature-card:hover .feature-icon {
    transform: none !important;
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.22) inset,
      0 -8px 16px rgba(0, 0, 0, 0.30) inset,
      0 12px 26px rgba(0, 0, 0, 0.28),
      0 1px 2px rgba(0, 0, 0, 0.18) !important;
  }
  .feature-card:hover .feature-icon svg {
    transform: scale(1.04) !important;
  }
}

/* Listen: einheitlich Inter, ruhige Häkchen, kein Border-bottom */
.feature-card .check-list,
.feature-card .check-list-clickable {
  margin: 0 0 30px !important;
  padding: 0 !important;
  list-style: none !important;
}
.feature-card .check-list li,
.feature-card .check-list-clickable li {
  position: relative;
  padding: 11px 44px 11px 32px !important;
  margin: 0 !important;
  color: #1a1a1f !important;
  font-family: var(--font-body) !important;
  font-size: 1.0625rem !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  letter-spacing: -0.005em !important;
  border-bottom: 0 !important;
  border-radius: 12px !important;
}
/* schlanke V-Häkchen in Terracotta — kein Kreis-Hintergrund */
.feature-card .check-list li::before,
.feature-card .check-list-clickable li::before {
  content: "" !important;
  position: absolute;
  left: 4px !important;
  top: 16px !important;
  width: 15px !important;
  height: 15px !important;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  background-color: #C8674B !important;
  transform: none !important;
  display: block !important;
  color: transparent !important;
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
.feature-card .check-list li::after,
.feature-card .check-list-clickable li::after { display: none !important; }

/* Hover: nur sehr subtile Plate, kein Versatz */
.feature-card .check-list-clickable li:hover,
.feature-card .check-list-clickable li:focus-visible {
  background: rgba(26, 26, 31, 0.035) !important;
  transform: none !important;
}
.feature-card .check-list-clickable li:focus-visible {
  outline: none !important;
  box-shadow: 0 0 0 2px rgba(200, 103, 75, 0.35) !important;
}

/* Info-Kreis: dünner Apple-Hairline, sehr ruhig */
.feature-card .check-info {
  position: absolute;
  right: 10px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 20px !important;
  height: 20px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(26, 26, 31, 0.18) !important;
  background: transparent !important;
  color: #86868b !important;
  font-family: var(--font-ui) !important;
  font-style: italic !important;
  font-weight: 500 !important;
  font-size: 0.72rem !important;
  display: inline-grid;
  place-items: center;
  opacity: 0.75 !important;
  transition:
    opacity 220ms var(--ease-ios),
    border-color 220ms var(--ease-ios),
    background 220ms var(--ease-ios),
    color 220ms var(--ease-ios) !important;
}
.feature-card .check-list-clickable li:hover .check-info,
.feature-card .check-list-clickable li:focus-visible .check-info {
  opacity: 1 !important;
  border-color: rgba(200, 103, 75, 0.55) !important;
  color: #C8674B !important;
  background: rgba(200, 103, 75, 0.06) !important;
  transform: translateY(-50%) !important;
}

/* Selected-State: dezente Cream-Plate, gefüllter Terracotta-Tick im Info-Slot */
.feature-card .check-list-clickable li.is-selected {
  background: #FBF5EE !important;
  box-shadow: none !important;
}
.feature-card .check-list-clickable li.is-selected .check-info {
  opacity: 1 !important;
  background: #C8674B !important;
  border-color: #C8674B !important;
  color: #FFFFFF !important;
  font-size: 0 !important;
}
.feature-card .check-list-clickable li.is-selected .check-info::before {
  content: "✓" !important;
  font-style: normal !important;
  font-weight: 600 !important;
  font-size: 0.78rem !important;
  line-height: 1 !important;
}

.feature-card .link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-ui) !important;
  font-size: 0.9375rem !important;
  font-weight: 500 !important;
  color: #C8674B !important;
  letter-spacing: -0.005em !important;
  border-bottom: 0 !important;
  padding-bottom: 0;
  transition: gap 220ms var(--ease-ios), color 220ms var(--ease-ios) !important;
}
.feature-card .link-arrow::after { display: none !important; }
.feature-card .link-arrow:hover {
  color: #A85537 !important;
  gap: 10px !important;
}

/* Mobile Feinschliff */
@media (max-width: 900px) {
  .feature-card {
    padding: 32px 24px !important;
    border-radius: 24px !important;
  }
  .feature-card .feature-icon {
    width: 54px !important;
    height: 54px !important;
    border-radius: 15px !important;
    margin-bottom: 22px !important;
  }
  .feature-card .feature-icon svg,
  .feature-card .feature-icon i,
  .feature-card .feature-icon .lucide-icon,
  .feature-card .feature-icon [data-lucide] {
    width: 24px !important;
    height: 24px !important;
  }
  .feature-card h3 { font-size: 1.4rem !important; }
  .feature-card > p { font-size: 1rem !important; }
  .feature-card .check-list li,
  .feature-card .check-list-clickable li {
    font-size: 1rem !important;
    padding: 9px 38px 9px 28px !important;
  }
  .feature-card .check-list li::before,
  .feature-card .check-list-clickable li::before {
    left: 2px !important;
    top: 13px !important;
    width: 13px !important;
    height: 13px !important;
  }
}

/* ---------- Section-Hint: ruhig & subtil ---------- */
.section-hint {
  margin-top: 16px !important;
  font-size: 0.875rem !important;
  color: #6b6b70 !important;
}
.hint-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(26, 26, 31, 0.06);
  color: #6b6b70;
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  margin-right: 6px;
}

/* ---------- Steps: 4-Spalter klar ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.steps li {
  text-align: left;
  padding: 0;
  background: transparent;
  box-shadow: none;
  border: 0;
}
.step-num {
  display: inline-block;
  font-family: var(--font-display) !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  color: #C8674B !important;
  margin-bottom: 16px;
}
.steps h4 {
  font-size: 1.25rem !important;
  font-weight: 600 !important;
  letter-spacing: -0.015em !important;
  color: #1a1a1f !important;
  margin: 0 0 10px !important;
}
.steps p {
  font-size: 0.9375rem !important;
  line-height: 1.55 !important;
  color: #4a4a50 !important;
  margin: 0 !important;
}
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
}

/* ============================================================
   Process-Cards (4 Schritte, Apple/Scuric-Stil)
   – Icon im Kreis, Titel, Text, "Mehr erfahren →"-Link
   ============================================================ */
/* ============================================================
   Process-Cards · Apple-Accordion-Stack
   Immer 1 Spalte · klick auf "Mehr erfahren" expandiert den Text
   ============================================================ */
.process-cards {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1180px;
  align-items: start;
}
.process-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(26, 26, 31, 0.06);
  border-radius: 20px;
  padding: 24px 22px;
  box-shadow:
    0 1px 2px rgba(26, 26, 31, 0.03),
    0 6px 18px rgba(26, 26, 31, 0.04);
  transition:
    box-shadow 320ms var(--ease-ios),
    transform 320ms var(--ease-ios);
}
@media (hover: hover) {
  .process-card:hover {
    transform: translateY(-2px);
    box-shadow:
      0 2px 4px rgba(26, 26, 31, 0.04),
      0 12px 28px rgba(26, 26, 31, 0.06);
  }
}

/* Head: Icon oben, Titel darunter, Toggle als Full-Width-Pill unten */
.process-card-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.process-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 107, 53, 0.08);
  color: #FF6B35;
  flex-shrink: 0;
}
.process-icon svg,
.process-icon .lucide-icon {
  width: 20px;
  height: 20px;
  stroke-width: 1.75;
}
.process-card h4 {
  flex: 1 1 auto;
  font-family: var(--font-display) !important;
  font-size: 1.1875rem !important;
  font-weight: 600 !important;
  letter-spacing: -0.018em !important;
  color: #1a1a1f !important;
  margin: 0 !important;
  line-height: 1.25;
  width: 100%;
}

/* Toggle-Button: Apple-typisch — Text + Chevron */
.process-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(26, 26, 31, 0.12);
  border-radius: 999px;
  background: transparent;
  color: #1a1a1f;
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  flex-shrink: 0;
  transition:
    background 220ms var(--ease-ios),
    border-color 220ms var(--ease-ios),
    color 220ms var(--ease-ios);
}
.process-toggle-icon {
  display: inline-flex;
  transition: transform 320ms var(--ease-ios);
}
.process-toggle[aria-expanded="true"] .process-toggle-icon {
  transform: rotate(180deg);
}
.process-toggle:hover {
  background: rgba(255, 107, 53, 0.06);
  border-color: rgba(255, 107, 53, 0.4);
  color: #FF6B35;
}
.process-toggle:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.25);
}

/* Description: ausklappend mit smooth Apple-Animation */
.process-desc {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 380ms var(--ease-ios), margin-top 380ms var(--ease-ios);
  margin-top: 0;
  overflow: hidden;
}
.process-desc[hidden] {
  display: none;
}
.process-desc.is-open {
  grid-template-rows: 1fr;
  margin-top: 16px;
}
.process-desc > * {
  min-height: 0;
}
.process-desc p {
  font-family: var(--font-body) !important;
  font-size: 0.9375rem !important;
  font-weight: 400 !important;
  line-height: 1.55 !important;
  color: #4a4a50 !important;
  margin: 0 !important;
  padding-left: 0;
  letter-spacing: -0.005em;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 320ms var(--ease-ios) 80ms, transform 320ms var(--ease-ios) 80ms;
}
.process-desc.is-open p {
  opacity: 1;
  transform: translateY(0);
}

/* Handy & alle kleineren Tablets: 1 Spalte untereinander */
@media (max-width: 900px) {
  .process-cards {
    grid-template-columns: 1fr !important;
    max-width: 560px;
    gap: 14px;
  }
  .process-card { padding: 20px 18px; border-radius: 18px; }
  .process-card-head { gap: 12px; }
  .process-icon { width: 40px; height: 40px; border-radius: 11px; }
  .process-icon svg,
  .process-icon .lucide-icon { width: 18px; height: 18px; }
  .process-card h4 { font-size: 1.0625rem !important; }
  .process-toggle {
    padding: 7px 12px;
    font-size: 0.75rem;
  }
  .process-desc p {
    font-size: 0.9375rem !important;
  }
}

/* ---------- Über mich: Apple-Marketing-Stil mit großem Quote ---------- */
.about {
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(48px, 6vw, 88px) !important;
  align-items: center;
}
.about-text h2 {
  font-size: clamp(2.25rem, 4vw, 3.5rem) !important;
  font-weight: 600 !important;
  letter-spacing: -0.022em !important;
  line-height: 1.06 !important;
  color: #1a1a1f !important;
  text-align: left !important;
}
.about-text p {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: #3a3a40 !important;
  max-width: 56ch;
}

/* Card: ruhig, mit dezentem Sunset-Akzent unten-rechts */
.about-card {
  position: relative;
  background: #FFFFFF !important;
  border-radius: 28px !important;
  padding: clamp(40px, 4.6vw, 60px) clamp(32px, 4vw, 52px) !important;
  border: 1px solid rgba(26, 26, 31, 0.06) !important;
  overflow: hidden;
  isolation: isolate;
}
/* Sunset-Aurora: dezent, organisch, hinten — nicht fleckig */
.about-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -30% auto;
  width: 70%;
  height: 80%;
  background:
    radial-gradient(ellipse at 70% 65%,
      rgba(232, 184, 89, 0.22) 0%,
      rgba(200, 103, 75, 0.10) 35%,
      transparent 70%);
  filter: blur(2px);
  pointer-events: none;
  z-index: 0;
}
/* Großes Quote-Symbol als grafischer Anker */
.about-card::after {
  content: "\201C";
  position: absolute;
  top: 12px;
  left: 28px;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 9rem;
  line-height: 1;
  color: #C8674B;
  opacity: 0.14;
  pointer-events: none;
  z-index: 0;
}

/* Quote selbst: kein hartes Border-Left, ruhig, elegant */
.about-card blockquote {
  position: relative;
  z-index: 1;
  font-family: var(--font-serif) !important;
  font-style: italic;
  font-weight: 400 !important;
  font-size: clamp(1.375rem, 1.9vw + 0.4rem, 1.875rem) !important;
  line-height: 1.42 !important;
  color: #1a1a1f !important;
  margin: 0 0 36px !important;
  padding: 0 !important;
  border: 0 !important;
  letter-spacing: -0.014em !important;
  text-wrap: balance;
}

/* Trenner: weiche Hairline mit Terracotta-Glow zur Mitte */
.about-card blockquote::after {
  content: "";
  display: block;
  margin-top: 36px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(200, 103, 75, 0.25) 40%,
    rgba(200, 103, 75, 0.25) 60%,
    transparent 100%);
}

/* Stats: 3 saubere Spalten, vertikale Hairlines, gestapeltes Label/Wert */
.about-stats {
  position: relative;
  z-index: 1;
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 0 !important;
  padding-top: 0 !important;
  border-top: 0 !important;
}
.about-stats div {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 6px !important;
  padding: 0 18px !important;
  position: relative;
}
.about-stats div:first-child { padding-left: 0 !important; }
.about-stats div:last-child  { padding-right: 0 !important; }
.about-stats div + div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: rgba(26, 26, 31, 0.10);
}

.about-stats strong {
  font-family: var(--font-ui) !important;
  font-size: 0.6875rem !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: #C8674B !important;
  font-weight: 600 !important;
  background: none !important;
  background-image: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: #C8674B !important;
  animation: none !important;
}
.about-stats span {
  font-family: var(--font-body) !important;
  font-size: 0.9375rem !important;
  line-height: 1.4 !important;
  color: #3a3a40 !important;
  margin-top: 0 !important;
  letter-spacing: -0.005em;
}

@media (max-width: 900px) {
  .about {
    grid-template-columns: 1fr;
    gap: 40px !important;
  }
  .about-card { padding: 36px 26px !important; }
  .about-card::after {
    font-size: 6rem;
    top: 4px;
    left: 18px;
  }
  .about-card blockquote {
    margin: 0 0 28px !important;
  }
  .about-card blockquote::after {
    margin-top: 28px;
  }
  .about-stats div { padding: 0 12px !important; }
}
@media (max-width: 560px) {
  .about-stats {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .about-stats div {
    padding: 14px 0 0 !important;
    border-top: 1px solid rgba(26, 26, 31, 0.08);
  }
  .about-stats div:first-child { border-top: 0; padding-top: 0 !important; }
  .about-stats div + div::before { display: none; }
}

/* ---------- Termin: ruhig, schlicht ---------- */
.termin-section {
  background: #ffffff !important;
}
.termin-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  max-width: 720px;
  margin: 0 auto;
  align-items: start;
}
.termin-grid .termin-info {
  text-align: center;
}
.termin-grid .termin-info .eyebrow {
  display: inline-block;
}
.termin-grid .termin-info p {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.termin-grid .termin-steps {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.termin-info h2 {
  font-size: clamp(2rem, 3.6vw, 3rem) !important;
  font-weight: 600 !important;
  letter-spacing: -0.022em !important;
  line-height: 1.08 !important;
  color: #1a1a1f !important;
}
.termin-info p {
  font-size: 1rem;
  line-height: 1.55;
  color: #3a3a40 !important;
}
.termin-steps {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
}
.termin-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(26, 26, 31, 0.08);
}
.termin-steps li:last-child { border-bottom: 0; }
.termin-step-num {
  font-family: var(--font-display);
  font-size: 0.8125rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.14em !important;
  color: #C8674B !important;
}
.termin-steps strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1f !important;
  margin-bottom: 4px;
}
.termin-steps p {
  margin: 0;
  font-size: 0.9375rem;
}
/* Formular: kein Kasten, kein Schatten — schlank, professionell */
.termin-form {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  max-width: 520px;
  margin: 0 auto;
}
.termin-form h3 {
  display: none !important;
}
.termin-form-logo {
  display: none !important;
}
.termin-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.termin-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}
.termin-form label {
  font-family: var(--font-display) !important;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  color: #6b6b70 !important;
  margin-bottom: 6px !important;
  letter-spacing: 0.02em !important;
  text-transform: none !important;
}
.termin-form input,
.termin-form select,
.termin-form textarea {
  padding: 11px 14px !important;
  font-size: 0.9375rem !important;
  border: 1px solid rgba(26, 26, 31, 0.14) !important;
  border-radius: 10px !important;
  background: #ffffff !important;
  font-family: var(--font-body) !important;
  color: #1a1a1f !important;
  box-shadow: none !important;
  transition: border-color 180ms var(--ease-ios), box-shadow 180ms var(--ease-ios) !important;
}
.termin-form input:focus,
.termin-form select:focus,
.termin-form textarea:focus {
  outline: none !important;
  border-color: #1a1a1f !important;
  box-shadow: 0 0 0 3px rgba(26, 26, 31, 0.08) !important;
}
.termin-checkbox {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  font-size: 0.8125rem;
  color: #6b6b70;
  margin: 4px 0 18px;
}
.termin-checkbox a {
  color: #C8674B !important;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.termin-form .btn-primary {
  width: 100%;
  padding: 14px 24px !important;
  font-size: 0.9375rem !important;
  border-radius: 999px !important;
}
@media (max-width: 900px) {
  .termin-grid { grid-template-columns: 1fr; gap: 40px; }
  .termin-row { grid-template-columns: 1fr; }
}

/* ---------- Testimonial: groß zentriert ---------- */
.testimonials-single {
  max-width: 820px;
  margin: 0 auto;
}
.testimonial {
  background: #FFFFFF !important;
  border-radius: 28px !important;
  padding: 56px 48px !important;
  text-align: center;
  border: 1px solid rgba(26, 26, 31, 0.06) !important;
}
.testimonial-stars {
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  color: #C8674B !important;
}
.testimonial blockquote {
  font-family: var(--font-serif) !important;
  font-style: italic;
  font-size: clamp(1.125rem, 1.8vw, 1.5rem) !important;
  line-height: 1.5 !important;
  color: #1a1a1f !important;
  letter-spacing: -0.01em;
  margin: 0 0 32px !important;
}
.testimonial-author {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border: 0;
  padding: 0;
  margin: 0;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E07856, #C8674B);
  color: #FFFFFF !important;
  font-weight: 600;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.04em;
}
.testimonial-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1a1a1f !important;
}
.testimonial-role {
  font-size: 0.8125rem;
  color: #6b6b70 !important;
}
.testimonial-cta {
  text-align: center;
  margin-top: 32px;
  font-size: 0.9375rem;
  color: #6b6b70;
}
.testimonial-cta a {
  color: #C8674B !important;
  font-weight: 500;
}

/* ---------- Buttons: Apple-Pill final ---------- */
.btn {
  border-radius: 980px !important;
  padding: 14px 26px !important;
  font-size: 1rem !important;
  font-weight: 500 !important;
  letter-spacing: -0.01em !important;
  text-transform: none !important;
  border: 0 !important;
  transition: transform 200ms var(--ease-ios), background 200ms var(--ease-ios), box-shadow 320ms var(--ease-ios), color 200ms var(--ease-ios) !important;
}
.btn-lg {
  padding: 17px 34px !important;
  font-size: 1.0625rem !important;
}
.btn-primary {
  background: #1a1a1f !important;
  color: #FFFFFF !important;
  box-shadow:
    0 1px 2px rgba(26, 26, 31, 0.16),
    0 8px 20px rgba(26, 26, 31, 0.18) !important;
}
@media (hover: hover) {
  .btn-primary:hover {
    background: #2a2a2f !important;
    box-shadow:
      0 2px 6px rgba(26, 26, 31, 0.20),
      0 12px 28px rgba(26, 26, 31, 0.24) !important;
  }
}

/* ---------- Footer: schlicht zentriert ---------- */
.footer {
  background: #1a1a1f !important;
  padding: 64px 0 32px !important;
  border-top: 0 !important;
}
.footer-inner {
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  max-width: 1100px;
}
.footer .logo-text {
  font-size: 1.25rem !important;
  font-family: var(--font-display) !important;
  font-weight: 600 !important;
  letter-spacing: -0.012em !important;
  color: #FAF9F5 !important;
}
.footer-tag {
  font-family: var(--font-display) !important;
  font-size: 0.9375rem !important;
  font-style: normal !important;
  font-weight: 400 !important;
  color: rgba(244, 241, 233, 0.7) !important;
  margin-top: 12px !important;
}
.footer-contact {
  font-family: var(--font-display) !important;
  font-style: normal !important;
  font-size: 0.9375rem !important;
  margin-top: 16px !important;
  line-height: 1.7;
}
.footer-links {
  justify-content: flex-end;
}
.footer-links a {
  font-family: var(--font-display) !important;
  font-size: 0.8125rem !important;
  text-transform: none !important;
  letter-spacing: -0.01em !important;
  font-weight: 400 !important;
  color: rgba(244, 241, 233, 0.7) !important;
}
.copyright {
  font-size: 0.75rem !important;
  color: rgba(244, 241, 233, 0.4) !important;
  border-top: 1px solid rgba(244, 241, 233, 0.08) !important;
}
@media (max-width: 700px) {
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-links { justify-content: flex-start; }
}

/* ---------- Navbar: cleaner ---------- */
.navbar .logo-text {
  font-family: var(--font-display) !important;
  font-size: 1.0625rem !important;
  font-weight: 600 !important;
  letter-spacing: -0.012em !important;
  color: #FAF9F5 !important;
}
.navbar .logo-mark {
  width: 32px;
  height: 32px;
  font-size: 0.75rem !important;
  border-radius: 8px;
  background: rgba(224, 120, 86, 0.18) !important;
  border: 1px solid rgba(244, 199, 177, 0.35) !important;
  color: #F4C7B1 !important;
  text-shadow: none !important;
  box-shadow: none !important;
}
.nav-links {
  gap: 28px !important;
}
.nav-links a:not(.btn):not(.nav-icon) {
  font-family: var(--font-display) !important;
  font-size: 0.9375rem !important;
  font-weight: 400 !important;
  letter-spacing: -0.005em !important;
  color: rgba(250, 249, 245, 0.85) !important;
  text-transform: none !important;
}
.nav-links a:not(.btn):not(.nav-icon):hover {
  color: #FFFFFF !important;
}

/* ---------- Mobile-Hero: Anpassungen ---------- */
@media (max-width: 900px) {
  .hero-apple {
    padding: clamp(72px, 14vw, 110px) 0 60px !important;
  }
  .hero-apple-cta { gap: 18px; }
  .hero-apple-meta { gap: 24px; padding-top: 24px; }
  .hero-apple-visual .card-stack { min-height: 380px !important; }
  .hero-apple-visual .mock-browser { width: 90% !important; }
  .hero-apple-visual .mock-tool { width: 50% !important; }
}

/* ---------- Reveal-Animation für h1 (zentriert) ---------- */
.hero-apple-title .word {
  opacity: 0;
  transform: translateY(20px);
  display: inline-block;
  animation: hero-word-in 0.7s var(--ease-ios) forwards;
}
@keyframes hero-word-in {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   PRICE-DIALOG · APPLE EDITION
   iOS-Glassmorphismus, Spring-Pop, Hairlines statt Borders,
   großzügiger Whitespace, Pill-Buttons, klare Hierarchie.
   ============================================================ */

/* Backdrop: dunkler, mit kräftigem Blur (wie iOS-Sheets) */
.price-dialog-backdrop {
  background: rgba(15, 15, 18, 0.42) !important;
  backdrop-filter: saturate(140%) blur(20px) !important;
  -webkit-backdrop-filter: saturate(140%) blur(20px) !important;
}

/* Card: glasiges Weiß, große Radien, mehrschichtige Apple-Shadows */
.price-dialog-content {
  background: rgba(255, 255, 255, 0.96) !important;
  backdrop-filter: saturate(180%) blur(30px) !important;
  -webkit-backdrop-filter: saturate(180%) blur(30px) !important;
  border: 1px solid rgba(26, 26, 31, 0.06) !important;
  border-radius: 32px !important;
  padding: 56px 52px 44px !important;
  max-width: 560px !important;
  box-shadow:
    0 0 0 0.5px rgba(26, 26, 31, 0.04),
    0 2px 8px rgba(26, 26, 31, 0.04),
    0 24px 48px rgba(26, 26, 31, 0.12),
    0 48px 96px rgba(26, 26, 31, 0.18) !important;
  animation: priceDialogSpring 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  text-align: left;
}

/* Top-Stripe weg — Apple macht das nicht */
.price-dialog-content::before { display: none !important; }

@keyframes priceDialogSpring {
  0%   { transform: scale(0.92) translateY(20px); opacity: 0; }
  60%  { transform: scale(1.01) translateY(-2px); opacity: 1; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

/* Schließen-Button: kreisrund, weiches Hairline-Grau, Apple-iOS-Stil */
.price-dialog-close {
  top: 18px !important;
  right: 18px !important;
  width: 34px !important;
  height: 34px !important;
  border-radius: 50% !important;
  border: none !important;
  background: rgba(26, 26, 31, 0.06) !important;
  color: #6b6b70 !important;
  transition: background 200ms var(--ease-ios), color 200ms var(--ease-ios), transform 200ms var(--ease-ios) !important;
}
.price-dialog-close:hover {
  background: rgba(26, 26, 31, 0.12) !important;
  color: #1a1a1f !important;
  border: none !important;
  transform: scale(1.05);
}
.price-dialog-close svg {
  width: 16px !important;
  height: 16px !important;
  stroke-width: 2.25 !important;
}

/* Eyebrow: kleiner, mehr Spacing, subtileres Terracotta */
.price-dialog-eyebrow {
  font-family: var(--font-display) !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase;
  color: #C8674B !important;
  margin-bottom: 14px !important;
  display: inline-block;
}

/* Title: Inter, große Apple-Headline, tight letter-spacing */
.price-dialog h3 {
  font-family: var(--font-display) !important;
  font-size: clamp(1.5rem, 2.2vw, 1.875rem) !important;
  font-weight: 600 !important;
  letter-spacing: -0.022em !important;
  line-height: 1.15 !important;
  color: #1a1a1f !important;
  margin: 0 0 14px !important;
  text-wrap: balance;
}

/* Description: Inter (statt Serif), generöser Line-Height */
.price-dialog-desc {
  font-family: var(--font-display) !important;
  font-size: 1.0625rem !important;
  font-weight: 400 !important;
  line-height: 1.55 !important;
  color: #4a4a50 !important;
  margin: 0 0 36px !important;
  letter-spacing: -0.011em !important;
  max-width: 460px;
}

/* Actions: rechtsbündig, generöser Gap */
.price-dialog-actions {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 20px !important;
  grid-template-columns: none !important;
}

/* Primary-Pill: schwarz, Apple-iOS, weiß-bold-Text */
.price-dialog-actions .price-dialog-add {
  flex: 0 0 auto;
  padding: 14px 28px !important;
  font-family: var(--font-display) !important;
  font-size: 0.9375rem !important;
  font-weight: 600 !important;
  letter-spacing: -0.005em !important;
  text-transform: none !important;
  border-radius: 999px !important;
  border: none !important;
  background: #1a1a1f !important;
  color: #ffffff !important;
  width: auto !important;
  min-width: 0 !important;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.10),
    0 8px 20px rgba(0, 0, 0, 0.18) !important;
  transition: background 220ms var(--ease-ios), box-shadow 220ms var(--ease-ios), transform 220ms var(--ease-ios) !important;
}
.price-dialog-actions .price-dialog-add:hover {
  background: #000000 !important;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.12),
    0 14px 32px rgba(0, 0, 0, 0.24) !important;
}
.price-dialog-actions .price-dialog-add:active {
  transform: scale(0.97) !important;
}
.price-dialog-actions .price-dialog-add.is-selected {
  background: #C8674B !important;
  color: #ffffff !important;
  box-shadow:
    0 1px 2px rgba(168, 85, 55, 0.20),
    0 8px 20px rgba(200, 103, 75, 0.32) !important;
}

/* Secondary-Link: schlichter Apple-Link mit Pfeil, kein Button */
.price-dialog-actions .price-dialog-cta {
  flex: 0 0 auto;
  padding: 14px 8px !important;
  background: none !important;
  border: none !important;
  color: #FF9F40 !important;
  font-family: var(--font-display) !important;
  font-size: 0.9375rem !important;
  font-weight: 600 !important;
  letter-spacing: -0.005em !important;
  text-transform: none !important;
  width: auto !important;
  min-width: 0 !important;
  box-shadow: none !important;
  transition: color 200ms var(--ease-ios), gap 200ms var(--ease-ios) !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.price-dialog-actions .price-dialog-cta:hover {
  color: #FFB266 !important;
  background: none !important;
  gap: 10px;
}

/* Mobile-Fallback */
@media (max-width: 520px) {
  .price-dialog-content {
    padding: 40px 28px 32px !important;
    border-radius: 28px !important;
  }
  .price-dialog h3 { font-size: 1.375rem !important; }
  .price-dialog-desc { font-size: 1rem !important; margin-bottom: 28px !important; }
  .price-dialog-actions { gap: 12px !important; }
  .price-dialog-actions .price-dialog-add { padding: 12px 22px !important; }
}

/* ============================================================
   Hero-Hintergrund · Thema: "Digitale Werkstatt aus Dorsten"
   Layer 1: Warmes Sunset-Aurora-Mesh (Cream · Terracotta · Gold)
   Layer 2: Feines Dot-Grid-Raster (steht für Code/Design-Canvas)
   Layer 3: Schwebende Code-Glyphen als dezente Theme-Akzente
   ============================================================ */

.hero.hero-apple {
  background: #ffffff !important;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

/* Layer 1: Aurora-Mesh — mehrere weiche, sich überlagernde Sunset-Spots */
.hero.hero-apple::before {
  content: "" !important;
  position: absolute !important;
  inset: -10% !important;
  z-index: 0 !important;
  pointer-events: none !important;
  background:
    radial-gradient(38% 32% at 16% 14%, rgba(232, 184, 89, 0.32) 0%, transparent 65%),
    radial-gradient(34% 30% at 84% 18%, rgba(224, 120, 86, 0.22) 0%, transparent 70%),
    radial-gradient(30% 28% at 78% 82%, rgba(232, 184, 89, 0.24) 0%, transparent 70%),
    radial-gradient(30% 26% at 14% 78%, rgba(224, 120, 86, 0.16) 0%, transparent 70%),
    radial-gradient(45% 35% at 50% 52%, rgba(255, 245, 228, 0.55) 0%, transparent 75%) !important;
  filter: blur(36px) !important;
  opacity: 1 !important;
}

/* Layer 2: Dot-Grid — feines Punkteraster mit weichem Vignette-Mask */
.hero.hero-apple::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  pointer-events: none !important;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(20, 33, 61, 0.16) 1px, transparent 1.5px) !important;
  background-size: 28px 28px !important;
  background-position: center center !important;
  -webkit-mask-image:
    radial-gradient(ellipse 85% 70% at 50% 50%, #000 25%, transparent 78%) !important;
          mask-image:
    radial-gradient(ellipse 85% 70% at 50% 50%, #000 25%, transparent 78%) !important;
  opacity: 0.55 !important;
}

/* Layer 3: Floating Code-Glyphen — sehr dezent, nur Theme-Hauch */
.hero.hero-apple .hero-apple-text {
  position: relative;
  z-index: 2;
}
.hero.hero-apple .hero-apple-text::before,
.hero.hero-apple .hero-apple-text::after {
  position: absolute;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: clamp(3rem, 9vw, 8rem);
  line-height: 1;
  color: #14213d;
  opacity: 0.045;
  pointer-events: none;
  z-index: -1;
  letter-spacing: -0.04em;
  user-select: none;
}
.hero.hero-apple .hero-apple-text::before {
  content: "</>";
  top: -2vw;
  left: -4vw;
  transform: rotate(-8deg);
}
.hero.hero-apple .hero-apple-text::after {
  content: "{ }";
  bottom: -2vw;
  right: -4vw;
  transform: rotate(6deg);
}

/* Inhalt bleibt klar — Aurora liegt darunter */
.hero.hero-apple .container,
.hero.hero-apple .hero-apple-text,
.hero.hero-apple .hero-apple-visual {
  position: relative;
  z-index: 1;
}

/* Sehr sanfte Auflösung zum nächsten Section: weiß bleibt weiß */
.hero.hero-apple {
  background-image: none !important;
  background-color: #ffffff !important;
}

/* Subtile Mesh-Animation: Aurora wandert sanft */
@media (prefers-reduced-motion: no-preference) {
  .hero.hero-apple::before {
    animation: hero-aurora-drift 22s ease-in-out infinite alternate;
  }
}
@keyframes hero-aurora-drift {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(-1.5%, 1%, 0) scale(1.04); }
  100% { transform: translate3d(1.5%, -1%, 0) scale(1.02); }
}

/* Mobile: Glyphen ausblenden — zu eng, zu busy */
@media (max-width: 720px) {
  .hero.hero-apple .hero-apple-text::before,
  .hero.hero-apple .hero-apple-text::after { display: none; }
  .hero.hero-apple::after {
    background-size: 22px 22px !important;
    opacity: 0.4 !important;
  }
}

/* ============================================================
   Logo-Mark · Squircle wie das Termin-Box-FAB
   Charcoal-Hintergrund · kräftiger Terracotta-Outline ·
   Inset-Highlight · ND in sattem Apricot
   ============================================================ */

.logo-mark,
.navbar .logo-mark,
.nav-drawer-logo .logo-mark,
.termin-form-logo .logo-mark,
.footer .logo-mark {
  background: #1a1a1f !important;
  background-image: none !important;
  border: 1.5px solid #E07856 !important;
  border-radius: 10px !important;
  color: #F4C7B1 !important;
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  text-shadow: 0 0 8px rgba(224, 120, 86, 0.35) !important;
  box-shadow:
    0 0 0 3px rgba(224, 120, 86, 0.10),
    0 4px 12px rgba(26, 26, 31, 0.30),
    inset 0 1px 0 rgba(244, 199, 177, 0.30) !important;
  display: grid !important;
  place-items: center !important;
}

/* Größen pro Kontext */
.navbar .logo-mark {
  width: 36px !important;
  height: 36px !important;
  font-size: 0.8rem !important;
  border-radius: 9px !important;
}
.nav-drawer-logo .logo-mark,
.termin-form-logo .logo-mark {
  width: 40px !important;
  height: 40px !important;
  font-size: 0.875rem !important;
  border-radius: 10px !important;
}
.footer .logo-mark {
  width: 38px !important;
  height: 38px !important;
  font-size: 0.85rem !important;
  border-radius: 10px !important;
}

/* FAB-Icon: gleiche Sprache, einheitlich */
.termin-box-fab-icon {
  background: #1a1a1f !important;
  color: #F4C7B1 !important;
  border: 1.5px solid #E07856 !important;
  border-radius: 9px !important;
  text-shadow: 0 0 8px rgba(224, 120, 86, 0.35) !important;
  box-shadow:
    inset 0 1px 0 rgba(244, 199, 177, 0.30) !important;
}

/* === Bewertungs-Button (Plus-Kasten) + Modal === */
.testimonial-add {
  width: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 48px 28px;
  background: transparent;
  border: 2px dashed rgba(20, 33, 61, .22);
  border-radius: var(--radius-lg);
  cursor: pointer;
  color: var(--navy);
  font-family: var(--font-ui);
  transition: border-color .25s ease, background .25s ease, transform .25s ease, box-shadow .25s ease;
}
.testimonial-add:hover,
.testimonial-add:focus-visible {
  border-color: var(--gold);
  background: rgba(201, 161, 74, .06);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  outline: none;
}
.testimonial-add-plus {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--navy);
  color: var(--gold-2);
  border: 1.5px solid var(--gold);
  box-shadow: 0 8px 22px rgba(20, 33, 61, .18), inset 0 1px 0 rgba(244, 215, 122, .25);
  transition: transform .25s ease;
}
.testimonial-add-plus svg { width: 30px; height: 30px; }
.testimonial-add:hover .testimonial-add-plus { transform: rotate(90deg); }
.testimonial-add-label {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.testimonial-add-hint {
  font-family: var(--font-serif);
  font-size: .95rem;
  color: var(--muted);
  font-style: italic;
}

.review-dialog {
  border: none;
  border-radius: var(--radius-lg);
  padding: 0;
  max-width: 540px;
  width: calc(100% - 32px);
  background: #fff;
  box-shadow: 0 30px 80px rgba(20, 33, 61, .35);
  color: var(--ink);
}
.review-dialog::backdrop {
  background: rgba(20, 33, 61, .55);
  backdrop-filter: blur(4px);
}
.review-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 32px 32px 28px;
  position: relative;
}
.review-form h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.review-intro {
  margin: 0 0 6px;
  font-family: var(--font-serif);
  color: var(--muted);
  font-size: .98rem;
}
.review-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(20, 33, 61, .06);
  color: var(--navy);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease;
}
.review-close:hover { background: rgba(20, 33, 61, .12); }
.review-label {
  font-family: var(--font-ui);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--navy);
  margin-top: 6px;
}
.review-optional { color: var(--muted); font-weight: 400; }
.review-form input,
.review-form textarea {
  font-family: var(--font-ui);
  font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid rgba(20, 33, 61, .18);
  border-radius: 10px;
  background: #fafaf8;
  color: var(--ink);
  transition: border-color .2s ease, background .2s ease;
}
.review-form input:focus,
.review-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}
.review-form textarea { resize: vertical; min-height: 110px; }
.review-stars {
  display: flex;
  gap: 4px;
}
.review-star {
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  color: rgba(20, 33, 61, .25);
  cursor: pointer;
  padding: 2px 4px;
  transition: color .15s ease, transform .15s ease;
}
.review-star.is-on { color: var(--gold); }
.review-star:hover { transform: scale(1.1); }
.review-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 14px;
}
.review-status {
  margin: 8px 0 0;
  font-size: .92rem;
  min-height: 1.2em;
  color: var(--muted);
}
.review-status.is-error { color: #b3261e; }
.review-status.is-ok { color: #2e6b3c; }

@media (max-width: 560px) {
  .review-form { padding: 26px 20px 22px; }
  .review-dialog { width: calc(100% - 20px); }
  .testimonial-add { min-height: 240px; padding: 36px 22px; }
}

/* ============================================================
   Hero · Apple-Designer Refresh v2 (Editorial Calm)
   – Hintergrund komplett aufgeräumt: nur 1 Spotlight-Cone
   – Code-Glyphen & Dot-Grid raus
   – Pill-Eyebrow mit Bullet-Dot
   – Italic-Akzente subtiler
   – Live-Status mit Pulsing-Dot
   – Stats als Floating-Hairline-Card mit vertikalen Separatoren
   ============================================================ */

/* ----- Hintergrund: ruhiger Spotlight-Cone von oben ----- */
.hero.hero-apple {
  background: #ffffff !important;
  background-image: none !important;
  padding: clamp(120px, 16vw, 200px) 0 clamp(80px, 10vw, 140px) !important;
}

/* Alles Bestehende plattmachen */
.hero.hero-apple::before,
.hero.hero-apple::after {
  animation: none !important;
}
.hero.hero-apple::before {
  content: "" !important;
  position: absolute !important;
  inset: -10% 0 auto 0 !important;
  height: 80% !important;
  z-index: 0 !important;
  pointer-events: none !important;
  background:
    radial-gradient(60% 50% at 50% 0%,
      rgba(232, 184, 89, 0.22) 0%,
      rgba(224, 120, 86, 0.10) 35%,
      transparent 75%),
    radial-gradient(40% 35% at 50% 30%,
      rgba(255, 245, 228, 0.6) 0%,
      transparent 70%) !important;
  filter: blur(28px) !important;
  opacity: 1 !important;
}
.hero.hero-apple::after {
  display: none !important;
  content: none !important;
}

/* Floating Code-Glyphen aus Layer 3 abschalten */
.hero.hero-apple .hero-apple-text::before,
.hero.hero-apple .hero-apple-text::after {
  display: none !important;
  content: none !important;
}

/* ----- Pill-Eyebrow mit Bullet-Dot (Apple-typisch) ----- */
.hero-apple .hero-eyebrow-pill {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 14px !important;
  border-radius: 999px !important;
  background: rgba(200, 103, 75, 0.06) !important;
  border: 1px solid rgba(200, 103, 75, 0.18) !important;
  color: #A85537 !important;
  -webkit-text-fill-color: #A85537 !important;
  font-family: var(--font-ui) !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  margin: 0 0 36px !important;
  animation: none !important;
  background-image: none !important;
}
.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #C8674B;
  box-shadow: 0 0 0 3px rgba(200, 103, 75, 0.18);
  flex-shrink: 0;
}

/* ----- Headline: kompakter, ruhiger ----- */
.hero-apple-title {
  font-size: clamp(2.5rem, 6vw, 5.25rem) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.03em !important;
  margin: 0 0 32px !important;
  max-width: 16ch;
  margin-left: auto !important;
  margin-right: auto !important;
}
.hero-apple-title .gold {
  font-style: italic;
  color: #C8674B !important;
  -webkit-text-fill-color: #C8674B !important;
  position: relative;
  font-weight: 600 !important;
}

/* ----- Lead: klarer ----- */
.hero-apple-lead {
  font-size: clamp(1.0625rem, 1.5vw + 0.3rem, 1.375rem) !important;
  line-height: 1.5 !important;
  color: #4a4a50 !important;
  max-width: 56ch !important;
  margin: 0 auto 32px !important;
}

/* ----- CTA-Strip ----- */
.hero-apple-cta {
  margin-bottom: 22px !important;
}

/* ----- Live-Status: pulsierender Punkt ----- */
.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(26, 26, 31, 0.04);
  border: 1px solid rgba(26, 26, 31, 0.06);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.hero-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #4caf50;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.18);
  position: relative;
  flex-shrink: 0;
}
.hero-status-dot::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 999px;
  background: #4caf50;
  opacity: 0.5;
  animation: hero-pulse 2.2s ease-out infinite;
  z-index: -1;
}
.hero-status-text {
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  font-weight: 500;
  color: #3a3a40;
  letter-spacing: -0.005em;
}
@keyframes hero-pulse {
  0%   { transform: scale(1);   opacity: 0.5; }
  70%  { transform: scale(2.6); opacity: 0; }
  100% { transform: scale(2.6); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-status-dot::after { animation: none; }
}

/* ----- Stats: schlicht, ohne Kasten, mit vertikalen Hairlines ----- */
.hero-apple-meta {
  display: inline-grid !important;
  grid-template-columns: repeat(3, auto);
  gap: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  max-width: 760px;
  margin: 0 auto !important;
  position: relative;
  z-index: 1;
}
.hero-apple-meta div {
  align-items: center;
  gap: 4px !important;
  padding: 0 clamp(18px, 3vw, 36px) !important;
  position: relative;
}
.hero-apple-meta div + div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: rgba(26, 26, 31, 0.10);
}
.hero-apple-meta strong {
  font-size: clamp(1.625rem, 2.6vw, 2.125rem) !important;
}
.hero-apple-meta span {
  font-size: 0.6875rem !important;
  letter-spacing: 0.18em !important;
}

/* ----- Mobile-Anpassung ----- */
@media (max-width: 720px) {
  .hero.hero-apple {
    padding: clamp(90px, 18vw, 130px) 0 80px !important;
  }
  .hero-apple-title { max-width: none; }
  .hero-status {
    margin: 0 auto 48px;
    padding: 7px 14px;
  }
  .hero-status-text { font-size: 0.75rem; }
  .hero-apple-meta {
    padding: 22px 16px !important;
    border-radius: 18px !important;
  }
  .hero-apple-meta div { padding: 0 10px !important; }
}
@media (max-width: 500px) {
  .hero-apple-meta {
    grid-template-columns: 1fr;
    padding: 18px 22px !important;
  }
  .hero-apple-meta div {
    padding: 12px 0 !important;
    border-top: 1px solid rgba(26, 26, 31, 0.08);
  }
  .hero-apple-meta div:first-child {
    border-top: 0;
    padding-top: 0 !important;
  }
  .hero-apple-meta div + div::before { display: none; }
  .hero-status-text { font-size: 0.7rem; }
}

/* ============================================================
   Trust-Bar · 4 Zahlen unter dem Hero
   – Schlichte Hairlines, hairline-trennung, viel Whitespace
   ============================================================ */
.trust-bar {
  background: #ffffff;
  padding: clamp(32px, 4vw, 56px) 0;
  border-top: 1px solid rgba(26, 26, 31, 0.08);
  border-bottom: 1px solid rgba(26, 26, 31, 0.08);
}
.trust-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  text-align: center;
}
.trust-item {
  flex: 0 1 auto;
  min-width: 0;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 6px clamp(16px, 2.5vw, 36px);
  position: relative;
}
.trust-item + .trust-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: rgba(26, 26, 31, 0.10);
}
.trust-item strong {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.6vw, 2.5rem);
  font-weight: 600;
  color: #1a1a1f;
  letter-spacing: -0.02em;
  line-height: 1;
}
.trust-item span {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6b6b70;
  font-weight: 500;
}
@media (max-width: 820px) {
  .trust-bar-inner { gap: 24px 0; }
  .trust-item + .trust-item::before { display: none; }
  .trust-item:nth-child(2)::before,
  .trust-item:nth-child(4)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12%;
    bottom: 12%;
    width: 1px;
    background: rgba(26, 26, 31, 0.10);
  }
}
@media (max-width: 480px) {
  .trust-bar-inner { grid-template-columns: 1fr; gap: 20px 0; }
  .trust-item:nth-child(2)::before,
  .trust-item:nth-child(4)::before { display: none; }
}

/* ============================================================
   FARBSCHEMA · HELLES ORANGE + SCHWARZ (2026-05-19)
   Akzent  · #FF6B35 (helles Orange)
   Hover   · #E55A2C (dunkleres Orange)
   Light   · #FFB088 (warmes Apricot für dunkle BGs)
   Tint    · rgba(255,107,53,0.08) (sehr dezent)
   Dark    · #1d1d1f (Apple-Black für Buttons/Surfaces)
   ============================================================ */

/* === 1. Primary-Button: schwarz statt Terracotta === */
.btn-primary,
.btn-primary.btn-lg {
  background: #1d1d1f !important;
  background-image: none !important;
  color: #ffffff !important;
  border: 0 !important;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.18),
    0 8px 24px rgba(0, 0, 0, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.10) !important;
}
@media (hover: hover) {
  .btn-primary:hover {
    background: #2a2a2f !important;
    box-shadow:
      0 4px 12px rgba(0, 0, 0, 0.20),
      0 12px 32px rgba(0, 0, 0, 0.24),
      inset 0 1px 0 rgba(255, 255, 255, 0.14) !important;
  }
}

/* === 2. Akzentfarbe global · Terracotta → Helles Orange === */
.section .eyebrow,
.about-text .eyebrow,
.termin-info .eyebrow,
.empfehlung-card .empfehlung-eyebrow,
.empfehlung-card .empfehlung-cta,
.feature-package-price,
.empfehlung-price strong,
.empfehlung-price,
.section .gold,
.section .shine-gold,
.section .script,
.about .gold,
.termin-info .gold,
.hero .gold,
.hero-apple-title .gold,
.testimonial-stars,
.link-arrow,
.feature-card .link-arrow,
.about-stats strong,
.step-num,
.termin-step-num {
  color: #FF6B35 !important;
  -webkit-text-fill-color: #FF6B35 !important;
  background: none !important;
  background-image: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  animation: none !important;
}
.link-arrow,
.feature-card .link-arrow {
  border-bottom-color: #FF6B35 !important;
}
.link-arrow:hover,
.feature-card .link-arrow:hover,
.empfehlung-card:hover .empfehlung-cta {
  color: #E55A2C !important;
  -webkit-text-fill-color: #E55A2C !important;
}

/* === 3. Check-Liste · Häkchen in hellem Orange === */
.feature-card .check-list li::before,
.feature-card .check-list-clickable li::before {
  background-color: #FF6B35 !important;
}
.feature-card .check-list-clickable li:focus-visible {
  box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.35) !important;
}
.feature-card .check-list-clickable li:hover .check-info,
.feature-card .check-list-clickable li:focus-visible .check-info {
  border-color: rgba(255, 107, 53, 0.55) !important;
  color: #FF6B35 !important;
  background: rgba(255, 107, 53, 0.08) !important;
}
.feature-card .check-list-clickable li.is-selected {
  background: rgba(255, 107, 53, 0.06) !important;
}
.feature-card .check-list-clickable li.is-selected .check-info {
  background: #FF6B35 !important;
  border-color: #FF6B35 !important;
  color: #ffffff !important;
}

/* === 4. Logo-Mark + FAB · Orange-Outline === */
.logo-mark,
.navbar .logo-mark,
.nav-drawer-logo .logo-mark,
.termin-form-logo .logo-mark,
.footer .logo-mark,
.termin-box-fab-icon {
  background: #1d1d1f !important;
  border-color: #FF6B35 !important;
  color: #FFB088 !important;
  text-shadow: 0 0 8px rgba(255, 107, 53, 0.40) !important;
  box-shadow:
    0 0 0 3px rgba(255, 107, 53, 0.10),
    0 4px 12px rgba(0, 0, 0, 0.30),
    inset 0 1px 0 rgba(255, 176, 136, 0.30) !important;
}
.termin-box-fab {
  background: linear-gradient(155deg, #1d1d1f 0%, #2a2a2f 100%) !important;
  border-color: #FF6B35 !important;
  color: #FFB088 !important;
  box-shadow:
    0 0 0 4px rgba(255, 107, 53, 0.10),
    0 14px 32px rgba(0, 0, 0, 0.30),
    inset 0 1px 0 rgba(255, 176, 136, 0.25) !important;
}
.termin-box-fab:hover {
  color: #FFC8A0 !important;
  box-shadow:
    0 0 0 5px rgba(255, 107, 53, 0.18),
    0 20px 44px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 176, 136, 0.35) !important;
}

/* === 5. Feature-Icon · Schwarzer Squircle mit Orange-Glow === */
.feature-card .feature-icon {
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 176, 136, 0.20) 0%, transparent 60%),
    linear-gradient(155deg, #2a2a2f 0%, #1d1d1f 60%, #0f0f12 100%) !important;
  border-color: rgba(255, 255, 255, 0.10) !important;
  color: #FFA552 !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.20) inset,
    0 -8px 16px rgba(0, 0, 0, 0.30) inset,
    0 8px 20px rgba(0, 0, 0, 0.22),
    0 1px 2px rgba(0, 0, 0, 0.12) !important;
}
.feature-card .feature-icon i,
.feature-card .feature-icon svg,
.feature-card .feature-icon .lucide-icon,
.feature-card .feature-icon [data-lucide] {
  color: #FFA552 !important;
  stroke: #FFA552 !important;
}

/* === 6. Hero · Spotlight & Eyebrow-Pill in Orange === */
.hero.hero-apple::before {
  background:
    radial-gradient(60% 50% at 50% 0%,
      rgba(255, 107, 53, 0.18) 0%,
      rgba(255, 140, 80, 0.08) 35%,
      transparent 75%),
    radial-gradient(40% 35% at 50% 30%,
      rgba(255, 245, 235, 0.5) 0%,
      transparent 70%) !important;
}
.hero-apple .hero-eyebrow-pill {
  background: rgba(255, 107, 53, 0.06) !important;
  border-color: rgba(255, 107, 53, 0.22) !important;
  color: #E55A2C !important;
  -webkit-text-fill-color: #E55A2C !important;
}
.hero-eyebrow-dot {
  background: #FF6B35 !important;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.22) !important;
}

/* === 7. Über-mich-Card · Quote-Symbol & Aurora in Orange === */
.about-card::before {
  background:
    radial-gradient(ellipse at 70% 65%,
      rgba(255, 140, 80, 0.18) 0%,
      rgba(255, 107, 53, 0.08) 35%,
      transparent 70%) !important;
}
.about-card::after {
  color: #FF6B35 !important;
  opacity: 0.13 !important;
}
.about-card blockquote::after {
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 107, 53, 0.28) 40%,
    rgba(255, 107, 53, 0.28) 60%,
    transparent 100%) !important;
}

/* === 8. Termin-Form-Focus · Orange-Glow === */
.termin-form input:focus,
.termin-form select:focus,
.termin-form textarea:focus {
  border-color: #FF6B35 !important;
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.14) !important;
}

/* === 9. Selection · Orange === */
::selection {
  background-color: #FF6B35 !important;
  color: #ffffff !important;
}

/* === 10. Section-Divider · Orange-Glow === */
.section + .section::before {
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(26, 26, 31, 0.06) 30%,
    rgba(255, 107, 53, 0.25) 50%,
    rgba(26, 26, 31, 0.06) 70%,
    transparent 100%) !important;
}

/* === 11. Navbar · btn-ghost (Termin) mit Orange-Outline === */
.navbar .btn-ghost {
  color: #FFB088 !important;
  -webkit-text-fill-color: #FFB088 !important;
  border-color: rgba(255, 176, 136, 0.4) !important;
}
.navbar .btn-ghost:hover {
  background: rgba(255, 176, 136, 0.12) !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  border-color: rgba(255, 176, 136, 0.6) !important;
}

/* === 12. Empfehlungs-Card-Border-Top === */
.empfehlung-card::before {
  background: linear-gradient(90deg, #FF6B35, #FFB088) !important;
}

/* === 13. Nav-Drawer · Aktive/Hover-States + CTA in hellem Orange === */
.nav-drawer-list a:hover,
.nav-drawer-list a:focus-visible,
.nav-drawer-list a.is-active {
  background: rgba(255, 107, 53, 0.10) !important;
  color: #FF6B35 !important;
}
.nav-drawer-cta {
  background: #FF6B35 !important;
  background-image: none !important;
  color: #ffffff !important;
  box-shadow:
    0 1px 2px rgba(255, 107, 53, 0.22),
    0 8px 22px rgba(255, 107, 53, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;
}
.nav-drawer-cta:hover {
  background: #E55A2C !important;
  box-shadow:
    0 4px 12px rgba(255, 107, 53, 0.28),
    0 12px 28px rgba(255, 107, 53, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.22) !important;
}
.nav-drawer-contact {
  background: rgba(255, 107, 53, 0.06) !important;
  border-color: rgba(255, 107, 53, 0.20) !important;
}
.nav-drawer-contact-icon {
  color: #FF6B35 !important;
}

/* === 14. Nav-Icon (Phone): Outline-Pill mit pulsierendem Orange-Glow
       — identische Wirkung wie der "Termin vereinbaren"-Button. === */
.nav-icon {
  color: #FAEFE5 !important;
  background: transparent !important;
  border: 1.5px solid #E07856 !important;
  border-radius: 999px !important;
  filter: none !important;
  box-shadow:
    0 0 0 0 rgba(224, 120, 86, 0.0),
    0 0 14px rgba(224, 120, 86, 0.35) !important;
  animation: navGhostGlow 2.4s ease-in-out infinite !important;
  transition:
    background 220ms var(--ease-ios),
    border-color 220ms var(--ease-ios),
    color 220ms var(--ease-ios) !important;
}
.nav-icon::before { display: none !important; }
.nav-icon:hover {
  background: rgba(224, 120, 86, 0.18) !important;
  border-color: #FF8A66 !important;
  color: #ffffff !important;
  filter: none !important;
  transform: none !important;
  box-shadow:
    0 0 0 4px rgba(224, 120, 86, 0.18),
    0 0 22px rgba(255, 138, 102, 0.65) !important;
  animation: none !important;
}

/* === 15. Nav-Toggle (Hamburger): Apricot-Outline wie Phone-Icon === */
.nav-toggle {
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(255, 176, 136, 0.4) !important;
  border-radius: 999px !important;
  background: transparent !important;
  gap: 4px !important;
  padding: 0 !important;
  transition:
    background 220ms var(--ease-ios),
    border-color 220ms var(--ease-ios) !important;
}
.nav-toggle span {
  background: #FFB088 !important;
  width: 18px !important;
  height: 1.5px !important;
}
@media (hover: hover) {
  .nav-toggle:hover {
    background: rgba(255, 176, 136, 0.12) !important;
    border-color: rgba(255, 176, 136, 0.6) !important;
  }
  .nav-toggle:hover span {
    background: #ffffff !important;
  }
}

/* === 16. Drawer-Close (X): Orange-Outline wie Logo === */
.nav-drawer-close {
  border: 1.5px solid #FF6B35 !important;
  background: #ffffff !important;
  color: #FF6B35 !important;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.10) !important;
  transition:
    background 220ms var(--ease-ios),
    border-color 220ms var(--ease-ios),
    color 220ms var(--ease-ios),
    box-shadow 220ms var(--ease-ios) !important;
}
.nav-drawer-close:hover {
  background: rgba(255, 107, 53, 0.08) !important;
  border-color: #E55A2C !important;
  color: #E55A2C !important;
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.16) !important;
}

/* === Apple-Animations-Layer === */
.hero-apple-text {
  will-change: transform, opacity;
  transition: transform 80ms linear, opacity 80ms linear;
}
.feature-card {
  transition: transform 320ms cubic-bezier(.16, 1, .3, 1), box-shadow 320ms cubic-bezier(.16, 1, .3, 1);
}
.testimonial-add.is-pre-reveal {
  opacity: 0;
  transform: translateY(28px) scale(.96);
  transition: opacity .9s cubic-bezier(.16, 1, .3, 1), transform .9s cubic-bezier(.16, 1, .3, 1);
}
.testimonial-add.is-pre-reveal.is-revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.hero-apple-meta strong {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .testimonial-add.is-pre-reveal { opacity: 1; transform: none; }
}

/* ============================================================
   So läuft es · Mobile Apple-Storytelling-Stack
   – Vertikal gestapelt (1 Spalte)
   – Verbindende Hairline mit Orange-Fade zwischen den Schritten
   – Step-Number als Squircle-Plakette (wie Logo-Mark)
   – Inter überall (kein Playfair für Body)
   ============================================================ */
@media (max-width: 900px) {
  .steps {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    position: relative;
    max-width: 540px;
    margin: 0 auto !important;
    padding: 0 4px !important;
  }
  .steps li {
    position: relative;
    padding: 0 0 36px 60px !important;
    margin: 0 !important;
    text-align: left;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
  .steps li:last-child {
    padding-bottom: 0 !important;
  }
  /* Verbindende vertikale Linie zwischen den Steps */
  .steps li:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 19px;
    top: 44px;
    bottom: 4px;
    width: 1.5px;
    background: linear-gradient(180deg,
      rgba(255, 107, 53, 0.5) 0%,
      rgba(255, 107, 53, 0.10) 100%);
    border-radius: 2px;
  }
  /* Step-Number als Squircle wie Logo-Mark */
  .steps .step-num {
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 11px !important;
    background: #1d1d1f !important;
    background-image: none !important;
    border: 1.5px solid #FF6B35 !important;
    color: #FFB088 !important;
    -webkit-text-fill-color: #FFB088 !important;
    display: grid !important;
    place-items: center !important;
    font-family: var(--font-display) !important;
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.04em !important;
    margin: 0 !important;
    line-height: 1 !important;
    box-shadow:
      0 0 0 3px rgba(255, 107, 53, 0.10),
      0 4px 12px rgba(0, 0, 0, 0.18),
      inset 0 1px 0 rgba(255, 176, 136, 0.30) !important;
    text-shadow: 0 0 8px rgba(255, 107, 53, 0.40) !important;
    animation: none !important;
  }
  .steps h4 {
    font-family: var(--font-display) !important;
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    letter-spacing: -0.015em !important;
    color: #1a1a1f !important;
    margin: 4px 0 10px !important;
    line-height: 1.2 !important;
  }
  .steps p {
    font-family: var(--font-body) !important;
    font-size: 0.9375rem !important;
    line-height: 1.55 !important;
    color: #4a4a50 !important;
    font-weight: 400 !important;
    margin: 0 !important;
    letter-spacing: -0.005em !important;
  }
}
@media (max-width: 480px) {
  .steps li {
    padding: 0 0 32px 52px !important;
  }
  .steps li:not(:last-child)::after {
    left: 17px;
    top: 42px;
  }
  .steps .step-num {
    width: 36px !important;
    height: 36px !important;
    border-radius: 10px !important;
    font-size: 0.72rem !important;
  }
  .steps h4 { font-size: 1.15rem !important; }
}

/* ============================================================
   Über mich · Mobile Apple-Designer-Refresh
   – Body-Text einheitlich Inter (statt Playfair)
   – Stats stapeln vertikal früher (≤ 720px) — kein 3-Spalter-Druck
   – Saubere horizontale Hairlines statt enger vertikaler Linien
   – Quote-Symbol & Padding feinjustiert für Mobile
   ============================================================ */
@media (max-width: 900px) {
  .about-text p {
    font-family: var(--font-body) !important;
    font-weight: 400 !important;
    font-size: 1.0625rem !important;
    line-height: 1.6 !important;
    color: #3a3a40 !important;
    letter-spacing: -0.005em !important;
    max-width: none !important;
  }
}
@media (max-width: 720px) {
  .about-card {
    padding: 32px 24px !important;
    border-radius: 24px !important;
  }
  .about-card::after {
    font-size: 5rem !important;
    top: 8px !important;
    left: 16px !important;
    opacity: 0.12 !important;
  }
  .about-card blockquote {
    font-size: clamp(1.1875rem, 4.4vw, 1.4375rem) !important;
    line-height: 1.4 !important;
    padding-top: 24px !important;
    margin: 0 0 24px !important;
  }
  .about-card blockquote::after {
    margin-top: 24px !important;
  }

  /* Stats: vertikal stapeln mit horizontalen Hairlines */
  .about-stats {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
  .about-stats div {
    flex-direction: row !important;
    align-items: baseline !important;
    gap: 14px !important;
    padding: 14px 0 !important;
    border-top: 1px solid rgba(26, 26, 31, 0.08) !important;
  }
  .about-stats div:first-child {
    border-top: 0 !important;
    padding-top: 4px !important;
  }
  .about-stats div + div::before { display: none !important; }
  .about-stats strong {
    flex-shrink: 0;
    min-width: 100px;
    margin: 0 !important;
  }
  .about-stats span {
    font-size: 0.9375rem !important;
    line-height: 1.4 !important;
    color: #3a3a40 !important;
  }

  /* CTA-Button etwas größer für Mobile-Tap */
  .about-text .btn-primary {
    margin-bottom: 8px;
  }
}
@media (max-width: 480px) {
  .about-card { padding: 28px 20px !important; }
  .about-card::after {
    font-size: 4.5rem !important;
    top: 6px !important;
    left: 14px !important;
  }
  .about-card blockquote {
    font-size: 1.1875rem !important;
    padding-top: 22px !important;
  }
  .about-stats strong { min-width: 88px; }
  .about-stats span { font-size: 0.875rem !important; }
}

/* ============================================================
   Apple-Style Animation Suite (2026-05-19)
   Professionelle, dezente Animationen die Tiefe geben,
   ohne Aufmerksamkeit zu stehlen.
   ============================================================ */

/* === Page-Load: sanftes Fade-In des gesamten Inhalts === */
body.is-loading {
  opacity: 0;
}
body.is-loaded {
  opacity: 1;
  transition: opacity 480ms var(--ease-ios);
}

/* === Hero: Italic-Wörter "verkaufen / arbeiten" pulsieren leicht === */
.hero-apple-title .gold {
  position: relative;
  display: inline-block;
}
.hero-apple-title .gold::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center,
    rgba(255, 107, 53, 0.18) 0%,
    transparent 65%);
  filter: blur(18px);
  z-index: -1;
  opacity: 0;
  animation: italic-glow 5s ease-in-out infinite;
}
.hero-apple-title .gold:nth-of-type(2)::after {
  animation-delay: 2.5s;
}
@keyframes italic-glow {
  0%, 100% { opacity: 0; transform: scale(0.85); }
  50%      { opacity: 0.85; transform: scale(1.05); }
}

/* === Primary-Button: fixiert, keine Pulse-Animation === */
.btn-primary {
  position: relative;
  isolation: isolate;
}
.btn-primary::after { display: none !important; }

/* === Hero-Status-Pill: schwebt sanft === */
.hero-status {
  animation: gentle-float 6s ease-in-out infinite;
}
@keyframes gentle-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-3px); }
}

/* === Scroll-Indicator unten im Hero === */
.hero-apple::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 36px;
  border: 1.5px solid rgba(26, 26, 31, 0.18);
  border-radius: 999px;
  z-index: 2;
  background:
    radial-gradient(circle at 50% 20%,
      #FF6B35 0%, #FF6B35 26%, transparent 28%) no-repeat;
  background-size: 4px 4px;
  background-position: 50% 8px;
  animation: scroll-dot 1.8s ease-in-out infinite;
  opacity: 0.7;
}
@keyframes scroll-dot {
  0%, 100% { background-position: 50% 8px;  opacity: 0.7; }
  50%      { background-position: 50% 22px; opacity: 0.2; }
}
@media (max-width: 720px) {
  .hero-apple::after { bottom: 20px; }
}

/* === Feature-Card: Mouse-Spotlight (folgt Cursor) === */
.feature-card {
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(255, 107, 53, 0.06),
    transparent 40%);
  opacity: 0;
  transition: opacity 320ms var(--ease-ios);
  z-index: 0;
}
.feature-card:hover::after { opacity: 1; }
.feature-card > * { position: relative; z-index: 1; }

/* === Logo-Hover: subtiler Lift mit Glow === */
.navbar .logo {
  transition: transform 320ms var(--ease-ios);
}
.navbar .logo:hover {
  transform: translateY(-1px);
}
.navbar .logo:hover .logo-mark {
  box-shadow:
    0 0 0 4px rgba(255, 107, 53, 0.18),
    0 6px 18px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 176, 136, 0.45) !important;
}

/* === Nav-Links: animated underline === */
.navbar .nav-links a:not(.btn):not(.nav-icon):not(.logo) {
  position: relative;
}
.navbar .nav-links a:not(.btn):not(.nav-icon):not(.logo)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1.5px;
  background: #FF6B35;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms var(--ease-ios);
}
.navbar .nav-links a:not(.btn):not(.nav-icon):not(.logo):hover::after {
  transform: scaleX(1);
}

/* === Section-Reveal: smooth Fade + Lift beim Scroll === */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 720ms var(--ease-ios),
    transform 720ms var(--ease-ios);
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal][data-reveal-delay="100"].is-revealed { transition-delay: 100ms; }
[data-reveal][data-reveal-delay="200"].is-revealed { transition-delay: 200ms; }
[data-reveal][data-reveal-delay="300"].is-revealed { transition-delay: 300ms; }

/* === Process-Card-Toggle: smooth icon-rotation === */
.process-card {
  transition: background 320ms var(--ease-ios);
}
.process-card:hover {
  background: rgba(255, 107, 53, 0.02);
}

/* === Termin-Form: Field-Focus mit Lift === */
.termin-form .termin-group {
  transition: transform 220ms var(--ease-ios);
}
.termin-form input:focus + .termin-group,
.termin-form .termin-group:focus-within {
  transform: translateY(-1px);
}

/* ============================================================
   Bewertungen · Liste + Auto-Marquee bei vielen Reviews
   ============================================================ */
.testimonials-wrap {
  position: relative;
  margin: 0 auto 36px;
  max-width: 1180px;
  overflow: hidden;
  padding: 8px 0;
}
.testimonials-wrap[hidden] { display: none; }

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  align-items: stretch;
}

/* Karussell-Modus: ab vielen Reviews horizontal scrollend */
.testimonials-wrap.is-marquee {
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
}
.testimonials-wrap.is-marquee .testimonials-track {
  display: flex;
  grid-template-columns: none;
  width: max-content;
  gap: 20px;
  animation: testimonials-scroll var(--marquee-duration, 40s) linear infinite;
}
.testimonials-wrap.is-marquee:hover .testimonials-track {
  animation-play-state: paused;
}
.testimonials-wrap.is-marquee .review-card {
  width: 360px;
  flex-shrink: 0;
}
@keyframes testimonials-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 10px)); }
}

/* Einzelne Review-Card */
.review-card {
  background: #ffffff;
  border: 1px solid rgba(26, 26, 31, 0.06);
  border-radius: 20px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow:
    0 1px 2px rgba(26, 26, 31, 0.04),
    0 8px 24px rgba(26, 26, 31, 0.05);
  position: relative;
  isolation: isolate;
}
.review-card::before {
  content: "\201C";
  position: absolute;
  top: 4px;
  right: 18px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 5rem;
  line-height: 1;
  color: #FF6B35;
  opacity: 0.12;
  pointer-events: none;
}
.review-stars {
  display: inline-flex;
  gap: 2px;
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: #FF6B35;
  line-height: 1;
}
.review-text {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #1a1a1f;
  letter-spacing: -0.005em;
  margin: 0;
  flex: 1;
}
.review-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(26, 26, 31, 0.06);
}
.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, #FF6B35 0%, #FFB088 100%);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.review-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.review-name {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1a1a1f;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.review-org {
  font-size: 0.8125rem;
  color: #6b6b70;
  line-height: 1.2;
}

/* CTA-Reihe: "Bewertung hinzufügen" mittig unter der Liste */
.testimonials-cta {
  display: flex;
  justify-content: center;
}
.testimonials-cta .testimonial-add {
  max-width: 460px;
  width: 100%;
}

/* Frische Bewertung: kurzes Highlight */
.review-card.is-fresh {
  animation: review-pop 700ms cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow:
    0 0 0 2px rgba(255, 107, 53, 0.25),
    0 1px 2px rgba(26, 26, 31, 0.04),
    0 12px 32px rgba(255, 107, 53, 0.15);
}
@keyframes review-pop {
  0%   { opacity: 0; transform: translateY(12px) scale(0.96); }
  60%  { opacity: 1; transform: translateY(-2px) scale(1.02); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 560px) {
  .review-card { padding: 22px 20px; }
  .testimonials-wrap.is-marquee .review-card { width: 300px; }
}
@media (prefers-reduced-motion: reduce) {
  .testimonials-wrap.is-marquee .testimonials-track { animation: none; }
}

/* === Reduced-Motion: alle Apple-Animationen ausschalten === */
@media (prefers-reduced-motion: reduce) {
  .hero-apple-title .gold::after,
  .btn-primary::after,
  .hero-status,
  .hero-apple::after {
    animation: none !important;
  }
  body.is-loading { opacity: 1; }
  body.is-loaded { transition: none; }
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ============================================================
   FINAL · Hero-Aurora-Hintergrund (überschreibt alle vorherigen
   ::before-Definitionen). Das ::after bleibt für den Scroll-
   Indicator reserviert; das Dot-Grid kommt als Background-Image
   direkt auf .hero-apple.
   ============================================================ */
.hero.hero-apple,
.hero-apple {
  padding: clamp(80px, 9vw, 130px) 0 clamp(48px, 6vw, 90px) !important;
  background-color: #ffffff !important;
  background-image:
    radial-gradient(rgba(26, 26, 31, 0.05) 1px, transparent 1px) !important;
  background-size: 28px 28px !important;
  background-position: 0 0 !important;
}
.hero.hero-apple::before,
.hero-apple::before {
  content: "" !important;
  position: absolute !important;
  inset: -8% -4% auto -4% !important;
  height: 110% !important;
  z-index: 0 !important;
  pointer-events: none !important;
  filter: blur(38px) !important;
  opacity: 0.85 !important;
  background:
    radial-gradient(38% 34% at 18% 18%, rgba(255, 160, 110, 0.55) 0%, transparent 70%),
    radial-gradient(34% 30% at 82% 22%, rgba(255, 200, 150, 0.48) 0%, transparent 70%),
    radial-gradient(46% 38% at 50% 8%,  rgba(255, 180, 130, 0.42) 0%, transparent 65%),
    radial-gradient(36% 32% at 88% 75%, rgba(180, 215, 180, 0.32) 0%, transparent 75%),
    radial-gradient(34% 30% at 8% 78%,  rgba(255, 175, 130, 0.36) 0%, transparent 75%),
    radial-gradient(28% 22% at 60% 55%, rgba(255, 230, 200, 0.50) 0%, transparent 70%) !important;
}

/* Info-i-Kästchen rechts an den Listen-Items ausblenden */
.check-info {
  display: none !important;
}
.check-list-clickable li,
.feature-card .check-list-clickable li {
  padding-right: 0 !important;
}

/* Feature-Cards (Websites / Tools): Kasten-Look entfernen, transparent */
.feature-card {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
}
.feature-card::before,
.feature-card::after {
  display: none !important;
  content: none !important;
}
.feature-card:hover,
.feature-card:focus-within {
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  transform: none !important;
}

/* Desktop (>=900px): Inhalt der Feature-Cards zentrieren — Mobile bleibt links */
@media (min-width: 900px) {
  .feature-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }
  .feature-card .feature-icon { margin-inline: auto !important; }
  .feature-card h3,
  .feature-card > p { text-align: center !important; }
  .feature-card .check-list,
  .feature-card .check-list-clickable {
    align-self: center !important;
    display: inline-block !important;
    text-align: left !important;
    margin-inline: auto !important;
  }
  .feature-card .link-arrow { align-self: center !important; }

  /* Section-Abstände auf Desktop kompakter — Mobile bleibt unverändert */
  .section {
    padding-block: clamp(56px, 5.5vw, 90px) !important;
  }
  .section-head {
    margin-bottom: 40px !important;
  }
  .trust-bar {
    padding-block: clamp(28px, 3vw, 44px) !important;
  }
}
