:root {
  --navy: #0d2b4e;
  --navy-deep: #071a30;
  --teal: #2a8fa8;
  --gold: #c9902a;
  --gold-soft: #e2ba72;
  --button-gold-top: #efd29d;
  --button-gold-bottom: #d29a4a;
  --button-gold-hover-top: #f4ddb1;
  --button-gold-hover-bottom: #daa555;
  --button-soft-top: #f7f0e2;
  --button-soft-bottom: #ead4ab;
  --button-soft-hover-top: #fbf6ec;
  --button-soft-hover-bottom: #efdcba;
  --button-border: rgba(148, 104, 28, 0.24);
  --button-border-strong: rgba(148, 104, 28, 0.34);
  --button-shadow: rgba(139, 98, 30, 0.18);
  --button-shadow-strong: rgba(139, 98, 30, 0.24);
  --sand: #f5f0e8;
  --sand-strong: #ebe0cf;
  --white: #ffffff;
  --text: #132437;
  --muted: rgba(19, 36, 55, 0.76);
  --line: rgba(13, 43, 78, 0.12);
  --shadow-lg: 0 32px 80px rgba(7, 26, 48, 0.3);
  --shadow-md: 0 18px 44px rgba(7, 26, 48, 0.14);
  --shadow-sm: 0 10px 24px rgba(7, 26, 48, 0.08);
  --radius-xl: 2rem;
  --radius-lg: 1.4rem;
  --radius-md: 1rem;
  --radius-sm: 0.75rem;
  --container: 76rem;
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4.5rem;
  --space-8: 6rem;
  --font-body: "Avenir Next", Avenir, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--font-body);
  background:
    radial-gradient(circle at top right, rgba(42, 143, 168, 0.08), transparent 28%),
    linear-gradient(180deg, #fcfaf6 0%, var(--sand) 100%);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  margin: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--gold);
  color: var(--navy-deep);
  z-index: 10000;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.narrow {
  max-width: 52rem;
}

.section {
  padding: var(--space-7) 0;
}

.section-dark,
.page-hero,
.not-found {
  color: var(--white);
  background:
    radial-gradient(circle at top left, rgba(42, 143, 168, 0.18), transparent 26%),
    radial-gradient(circle at right center, rgba(201, 144, 42, 0.14), transparent 18%),
    linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.58) 100%);
}

.section-accent {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(201, 144, 42, 0.18), rgba(42, 143, 168, 0.12)),
    linear-gradient(180deg, #102947 0%, #123a5a 100%);
}

.page-hero {
  padding: calc(var(--space-8) + 1rem) 0 var(--space-6);
}

.not-found {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 var(--space-3);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.7rem);
}

p {
  margin: 0;
}

.page-lead,
.hero-lead,
.section-intro {
  font-size: 1.06rem;
  opacity: 0.92;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(16px);
  background: rgba(7, 26, 48, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    background-color 220ms ease,
    backdrop-filter 220ms ease,
    box-shadow 220ms ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 3.95rem;
  padding: 0.15rem 0;
  gap: 0.72rem;
  transition:
    min-height 220ms ease,
    padding 220ms ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  max-width: none;
  margin-block: 0;
}

.brand img {
  width: auto;
  height: 6.8rem;
  filter: brightness(0) saturate(100%) invert(74%) sepia(32%) saturate(873%) hue-rotate(355deg) brightness(91%) contrast(88%);
  transition: height 220ms ease;
}

.site-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 0.68rem;
}

.site-nav a:not(.button) {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.81rem;
  line-height: 1;
}

.site-header.is-scrolled {
  background: rgba(7, 26, 48, 0.72);
  box-shadow: 0 10px 26px rgba(7, 26, 48, 0.16);
}

.site-header.is-scrolled .header-inner {
  min-height: 3.4rem;
  padding: 0.05rem 0;
}

.site-header.is-scrolled .brand img {
  height: 5.5rem;
}

.site-nav a:not(.button):hover,
.site-nav a:not(.button):focus-visible,
.site-nav a:not(.button).is-current {
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin: 0.22rem auto;
  background: var(--white);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 3.3rem;
  padding: 0.9rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  box-shadow:
    0 14px 30px rgba(7, 26, 48, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 18px 38px rgba(7, 26, 48, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.button-primary {
  color: var(--navy-deep);
  border-color: var(--button-border);
  background: linear-gradient(180deg, var(--button-gold-top) 0%, var(--button-gold-bottom) 100%);
  box-shadow:
    0 18px 38px var(--button-shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  border-color: var(--button-border-strong);
  background: linear-gradient(180deg, var(--button-gold-hover-top) 0%, var(--button-gold-hover-bottom) 100%);
  box-shadow:
    0 22px 42px var(--button-shadow-strong),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.button-secondary,
.button-secondary-dark,
.button-ghost,
.button-call {
  color: var(--navy-deep);
  border-color: var(--button-border);
  background: linear-gradient(180deg, var(--button-soft-top) 0%, var(--button-soft-bottom) 100%);
  box-shadow:
    0 16px 34px rgba(139, 98, 30, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.button-secondary:hover,
.button-secondary:focus-visible,
.button-secondary-dark:hover,
.button-secondary-dark:focus-visible,
.button-ghost:hover,
.button-ghost:focus-visible,
.button-call:hover,
.button-call:focus-visible {
  color: var(--navy-deep);
  border-color: var(--button-border-strong);
  background: linear-gradient(180deg, var(--button-soft-hover-top) 0%, var(--button-soft-hover-bottom) 100%);
  box-shadow:
    0 20px 40px rgba(139, 98, 30, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.button-nav {
  min-height: 2rem;
  padding: 0.5rem 0.92rem;
  font-size: 0.8rem;
  box-shadow:
    0 10px 22px rgba(7, 26, 48, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.button-nav:hover,
.button-nav:focus-visible {
  box-shadow:
    0 14px 26px rgba(7, 26, 48, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.section-head[id] {
  scroll-margin-top: 5rem;
}

.section-head.compact[id] {
  scroll-margin-top: 5rem;
}

.site-nav a:focus-visible,
.button:focus-visible,
.nav-toggle:focus-visible,
.faq-item summary:focus-visible,
.form-card input:focus,
.form-card textarea:focus {
  outline: 2px solid var(--gold-soft);
  outline-offset: 3px;
}

.hero-section {
  padding: calc(var(--space-8) + 1rem) 0 var(--space-7);
}

.hero-grid,
.split-section,
.quick-grid,
.closing-box,
.contact-grid,
.about-hero-grid,
.page-hero-grid {
  display: grid;
  gap: var(--space-5);
}

.hero-copy {
  display: grid;
  gap: var(--space-4);
  max-width: 43rem;
}

.hero-statement {
  max-width: 18ch;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1.15;
  color: var(--gold-soft);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-points,
.check-list,
.quick-list,
.quick-scenarios,
.footer-list,
.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-points {
  display: grid;
  gap: 0.7rem;
}

.hero-points li,
.check-list li,
.quick-list li,
.quick-scenarios li {
  position: relative;
  padding-left: 1.2rem;
}

.hero-points li::before,
.check-list li::before,
.quick-list li::before,
.quick-scenarios li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--gold-soft);
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.hero-portrait-card,
.about-photo-card,
.large-card,
.info-card,
.offer-card,
.testimonial-card,
.plain-card,
.dark-card,
.legal-card,
.note-card,
.form-card,
.quick-box,
.fact-panel {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.hero-portrait-card {
  width: min(100%, 31rem);
  padding: var(--space-4);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-lg);
}

.hero-portrait-wrap {
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: end center;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) + 0.2rem);
  background:
    radial-gradient(circle at top right, rgba(42, 143, 168, 0.24), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06)),
    linear-gradient(180deg, rgba(13, 43, 78, 0.7), rgba(13, 43, 78, 0.85));
}

.hero-portrait-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transform: scale(1.08);
  transform-origin: center center;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: var(--space-4);
}

.hero-badges img,
.text-badge {
  height: 5.2rem;
  width: 100%;
  object-fit: contain;
  padding: 0.75rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.text-badge {
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 700;
  text-align: center;
}

/* ─── Credentials section (Über mich) ─── */
.credentials-section {
  position: relative;
  overflow: hidden;
}

.credentials-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top center, rgba(226, 186, 114, 0.12), transparent 24%),
    radial-gradient(circle at bottom left, rgba(42, 143, 168, 0.12), transparent 24%);
  pointer-events: none;
}

.credentials-head {
  max-width: 48rem;
  position: relative;
  z-index: 1;
  margin-bottom: var(--space-6);
}

.credentials-head .section-intro {
  color: rgba(255, 255, 255, 0.74);
}

.credentials-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr;
  max-width: 58rem;
  margin-inline: auto;
}

.credential-card {
  display: grid;
  gap: var(--space-4);
  padding: clamp(1.45rem, 2vw, 1.8rem);
  border-radius: calc(var(--radius-lg) + 0.1rem);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    linear-gradient(180deg, rgba(12, 37, 64, 0.95), rgba(7, 26, 48, 0.98));
  box-shadow: 0 26px 54px rgba(4, 16, 30, 0.22);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.credential-card:hover {
  transform: translateY(-4px);
  border-color: rgba(226, 186, 114, 0.26);
  box-shadow: 0 32px 60px rgba(4, 16, 30, 0.28);
}

.credential-badge {
  min-height: 6.6rem;
  display: grid;
  place-items: center;
  padding: 1rem 1.1rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.02);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.credential-badge img {
  display: block;
  width: 100%;
  height: 4.4rem;
  object-fit: contain;
}

.credential-title {
  margin: 0;
  font-size: clamp(1.55rem, 2.2vw, 1.9rem);
  color: var(--white);
}

.credential-text {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.98rem;
  line-height: 1.65;
}

.hero-quote {
  margin-top: var(--space-4);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-quote strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--gold-soft);
}

.trust-strip {
  margin-top: -1.5rem;
  padding-bottom: var(--space-5);
}

.trust-grid,
.card-grid,
.footer-grid {
  display: grid;
  gap: var(--space-4);
}

.trust-item,
.plain-card,
.large-card,
.info-card,
.offer-card,
.testimonial-card,
.note-card,
.legal-card,
.form-card,
.fact-panel {
  padding: var(--space-5);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
}

.trust-kicker,
.offer-label,
.placeholder-tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-kicker {
  color: var(--teal);
  background: rgba(42, 143, 168, 0.1);
}

.offer-label {
  color: var(--navy);
  background: rgba(13, 43, 78, 0.08);
}

.placeholder-tag {
  color: var(--gold);
  background: rgba(201, 144, 42, 0.12);
}

.real-tag {
  color: #2e7d54;
  background: rgba(46, 125, 84, 0.12);
}

.trust-item h3,
.plain-card h3,
.info-card h3,
.dark-card h3,
.offer-card h3,
.large-card h2,
.legal-card h2,
.fact-panel .fact-number {
  margin-bottom: 0.75rem;
}

.trust-item p,
.plain-card p,
.info-card p,
.large-card p,
.offer-card p,
.note-card p,
.legal-card p,
.legal-article p,
.footer-text,
.footer-list,
.contact-list,
.form-note {
  color: var(--muted);
}

/* ── Kontaktformular: Datenschutz-Checkbox ── */
.form-consent {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--muted);
  cursor: pointer;
  line-height: 1.5;
}

.consent-label input[type="checkbox"] {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  margin-top: 0.2rem;
  accent-color: var(--teal);
  cursor: pointer;
}

.consent-label a {
  color: var(--teal);
  text-decoration: underline;
}

.form-note {
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

.offer-card-featured,
.dark-card {
  color: var(--white);
  background: linear-gradient(180deg, rgba(13, 43, 78, 0.98), rgba(10, 34, 60, 0.98));
  border-color: rgba(201, 144, 42, 0.22);
}

.offer-card-featured p,
.dark-card p {
  color: rgba(255, 255, 255, 0.82);
}

.offer-card-featured .offer-label {
  color: var(--gold-soft);
  background: rgba(201, 144, 42, 0.16);
}

.offer-showcase {
  display: grid;
  gap: 1.5rem;
}

.offer-format-note {
  margin-top: 1.5rem;
  text-align: center;
}

.offer-format-note p {
  max-width: 42rem;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.92rem;
}

.offer-format-note a {
  color: var(--teal);
  font-weight: 700;
}

.offer-process-overview {
  position: relative;
  overflow: hidden;
}

.offer-process-overview::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top center, rgba(232, 200, 122, 0.12), transparent 24%),
    radial-gradient(circle at bottom left, rgba(42, 143, 168, 0.08), transparent 26%);
  pointer-events: none;
}

.offer-process-head {
  max-width: 44rem;
  position: relative;
  z-index: 1;
}

.offer-process-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.25rem;
}

.offer-process-card {
  display: grid;
  gap: 0.95rem;
  align-content: start;
  min-height: 100%;
  padding: clamp(1.3rem, 2.1vw, 1.75rem);
  border-radius: calc(var(--radius-lg) + 0.05rem);
  border: 1px solid rgba(13, 43, 78, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 243, 234, 0.94));
  box-shadow:
    0 18px 38px rgba(7, 26, 48, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.offer-process-card:hover,
.offer-process-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(201, 144, 42, 0.24);
  box-shadow:
    0 24px 44px rgba(7, 26, 48, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.offer-process-badge {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(247, 232, 198, 0.96), rgba(232, 200, 122, 0.9));
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow:
    0 10px 22px rgba(139, 98, 30, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.offer-process-card h3 {
  font-size: clamp(1.35rem, 2vw, 1.6rem);
  color: var(--navy);
}

.offer-process-card p {
  color: var(--muted);
  line-height: 1.72;
}

.offer-process-note {
  position: relative;
  z-index: 1;
  margin-top: 1.4rem;
  padding: 1.15rem 1.35rem;
  border-radius: calc(var(--radius-md) + 0.15rem);
  border: 1px solid rgba(13, 43, 78, 0.1);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-sm);
}

.offer-process-note p {
  color: rgba(19, 36, 55, 0.76);
}

.offer-process-note strong {
  color: var(--navy);
}

body[data-page="angebot"] .card-grid.two > .large-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

body[data-page="angebot"] .card-grid.two > .large-card .offer-price-line {
  margin-top: auto;
  padding-top: var(--space-3);
}

.offer-card-detailed {
  position: relative;
  display: grid;
  gap: 1rem;
  min-height: 100%;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
}

.offer-card-detailed:hover,
.offer-card-detailed:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 22px 42px rgba(7, 26, 48, 0.16);
}

.offer-card-detailed .check-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.offer-card-detailed .check-list li {
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(13, 43, 78, 0.09);
}

.offer-card-featured .check-list li,
.offer-card-priority .check-list li {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.offer-button {
  width: 100%;
  margin-top: auto;
}

.offer-card-priority {
  position: relative;
  border: 2px solid rgba(201, 144, 42, 0.95);
  box-shadow: 0 16px 34px rgba(201, 144, 42, 0.12);
}

.offer-card-priority h3 {
  max-width: 8ch;
}

.offer-flag {
  position: absolute;
  top: -1.1rem;
  right: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.2rem;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #d8a23c 0%, var(--gold) 100%);
  color: var(--navy-deep);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-footnote {
  margin-top: 1.75rem;
  text-align: center;
}

.offer-footnote p {
  color: rgba(19, 36, 55, 0.58);
  font-style: italic;
}

.accent-card {
  background: linear-gradient(180deg, rgba(13, 43, 78, 0.98), rgba(10, 34, 60, 0.98));
  color: var(--white);
  border-color: rgba(201, 144, 42, 0.22);
}

.accent-card p,
.accent-card li {
  color: rgba(255, 255, 255, 0.82);
}

.accent-card .offer-label {
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.quick-box {
  padding: var(--space-5);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.quick-box h3 {
  margin-bottom: 1rem;
  color: var(--gold-soft);
}

.quote {
  margin: 0 0 1rem;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(19, 36, 55, 0.72);
  font-style: italic;
}

.testimonial-card .quote {
  position: relative;
  margin: 0;
  padding-left: 0;
  text-align: left;
  text-wrap: pretty;
  hyphens: auto;
}

.testimonial-grid {
  display: grid;
  gap: 1.5rem;
}

/* ─── Stack Cards (fehlende Basisregel) ─── */
.stack-cards {
  display: grid;
  gap: var(--space-4);
  align-content: start;
}

.testimonial-card {
  position: relative;
  display: grid;
  gap: 1.4rem;
  min-height: 100%;
  padding: 3rem 3rem 2.25rem;
  border-radius: 1.45rem;
  border: 1px solid rgba(13, 43, 78, 0.12);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 24px rgba(7, 26, 48, 0.06);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
  animation: testimonial-rise 520ms ease both;
}

.testimonial-card:hover,
.testimonial-card:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 22px 42px rgba(7, 26, 48, 0.12);
  border-color: rgba(201, 144, 42, 0.34);
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  padding-top: 0.2rem;
}

.testimonial-avatar {
  width: 3.5rem;
  height: 3.5rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(180deg, #123866 0%, var(--navy) 100%);
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 0.18rem;
  line-height: 1;
}

.testimonial-name {
  font-weight: 700;
  color: var(--navy);
  font-size: 1.2rem;
}

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

.testimonial-card.large .quote {
  font-size: 1.08rem;
}

.testimonial-grid .testimonial-card:nth-child(2) {
  animation-delay: 80ms;
}

.testimonial-grid .testimonial-card:nth-child(3) {
  animation-delay: 140ms;
}

.testimonial-grid .testimonial-card:nth-child(4) {
  animation-delay: 200ms;
}

@keyframes testimonial-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-photo-card {
  position: relative;
  overflow: hidden;
}

.about-photo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-photo-card.tall {
  min-height: 32rem;
}

.page-hero-grid {
  align-items: center;
}

.contact-entry-hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(2.5rem, 4vw, 4rem);
}

.contact-entry-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top center, rgba(232, 200, 122, 0.16), transparent 24%),
    radial-gradient(circle at bottom left, rgba(42, 143, 168, 0.1), transparent 30%);
  pointer-events: none;
}

.contact-entry-shell {
  position: relative;
  z-index: 1;
  padding: clamp(1.4rem, 2.5vw, 2.2rem);
  border-radius: calc(var(--radius-lg) + 0.35rem);
  border: 1px solid rgba(13, 43, 78, 0.14);
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(232, 200, 122, 0.1), transparent 22%),
    linear-gradient(135deg, rgba(10, 32, 57, 0.98), rgba(14, 46, 82, 0.98));
  box-shadow:
    0 28px 56px rgba(7, 26, 48, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.contact-hero-grid {
  display: grid;
  gap: clamp(1.75rem, 3vw, 3.2rem);
  align-items: start;
}

.contact-hero-merged {
  display: grid;
  gap: clamp(1.6rem, 3vw, 2.4rem);
}

.contact-hero-copy {
  display: grid;
  gap: 1.3rem;
  max-width: 54rem;
}

.contact-hero-copy h1 {
  max-width: none;
  font-size: clamp(2.15rem, 4.1vw, 3.45rem);
  line-height: 1.01;
  color: var(--white);
}

.contact-hero-copy h1 .line {
  display: block;
  white-space: nowrap;
}

.contact-hero-copy .page-lead {
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.72);
}

.contact-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  max-width: 42rem;
}

.contact-meta-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.3rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(232, 200, 122, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.84rem;
  line-height: 1.2;
}

.contact-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 36rem;
}

.contact-process-card,
.contact-form-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-process-card {
  max-width: 58rem;
}

.contact-process-card .contact-card-stack {
  margin-top: 0;
}

.contact-entry-card {
  border-radius: calc(var(--radius-lg) + 0.15rem);
  padding: clamp(1.4rem, 2.2vw, 2rem);
  border: 1px solid rgba(201, 144, 42, 0.2);
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.99), rgba(245, 238, 226, 0.97)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.92));
  box-shadow:
    0 24px 46px rgba(4, 16, 30, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.contact-entry-card[id] {
  scroll-margin-top: 6.5rem;
}

.contact-entry-card .offer-label {
  margin-bottom: 1rem;
  color: rgba(13, 43, 78, 0.82);
  background: rgba(13, 43, 78, 0.08);
}

.contact-entry-card h2 {
  margin-bottom: 0.65rem;
  color: var(--navy);
  font-size: clamp(1.8rem, 2.5vw, 2.2rem);
  line-height: 1.06;
}

.contact-entry-intro {
  margin-bottom: 1.15rem;
  color: rgba(19, 36, 55, 0.72);
  max-width: 31rem;
}

.contact-form-card-single {
  position: relative;
  overflow: hidden;
  max-width: 58rem;
  margin-inline: auto;
  padding: clamp(1.65rem, 2.8vw, 2.6rem);
  border-color: rgba(201, 144, 42, 0.22);
  background:
    radial-gradient(circle at top left, rgba(232, 200, 122, 0.14), transparent 20%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.995), rgba(244, 236, 221, 0.98));
  box-shadow:
    0 30px 58px rgba(7, 26, 48, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.contact-form-card-head {
  display: grid;
  gap: 0.9rem;
  max-width: 44rem;
  padding-bottom: 1.4rem;
  margin-bottom: 1.4rem;
  border-bottom: 1px solid rgba(13, 43, 78, 0.08);
}

.contact-form-card-head h2 {
  max-width: 15ch;
  line-height: 1;
  text-wrap: balance;
}

.contact-form-card-head h2 .line {
  display: block;
}

.contact-form-card-head .contact-entry-intro {
  max-width: 34rem;
  margin-bottom: 0;
}

.contact-form-embedded {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  gap: 0;
}

.contact-form-embedded label {
  color: var(--navy);
}

.contact-form-grid {
  display: grid;
  gap: 1rem;
}

.form-field {
  display: grid;
  gap: 0.45rem;
}

.contact-form-span-full {
  grid-column: 1 / -1;
}

.contact-mode-fieldset {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-mode-fieldset legend {
  padding: 0;
  font-weight: 700;
  color: var(--navy);
}

.contact-mode-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.contact-mode-option {
  position: relative;
  flex: 1 1 13rem;
  cursor: pointer;
}

.contact-mode-option input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.contact-mode-option span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(13, 43, 78, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 243, 236, 0.96));
  color: var(--navy);
  font-weight: 700;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.contact-mode-option:hover span {
  transform: translateY(-1px);
  border-color: rgba(201, 144, 42, 0.28);
  box-shadow: 0 12px 26px rgba(7, 26, 48, 0.08);
}

.contact-mode-option input:checked + span {
  border-color: rgba(201, 144, 42, 0.42);
  background: linear-gradient(180deg, rgba(248, 230, 186, 0.92), rgba(232, 200, 122, 0.92));
  color: var(--navy-deep);
  box-shadow:
    0 14px 28px rgba(139, 98, 30, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.contact-mode-option input:focus-visible + span {
  outline: 2px solid var(--gold-soft);
  outline-offset: 3px;
}

.contact-mode-note {
  margin: 0;
  color: rgba(19, 36, 55, 0.62);
  font-size: 0.88rem;
  line-height: 1.55;
}

.contact-form-embedded input,
.contact-form-embedded textarea {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 243, 236, 0.96));
  border-color: rgba(13, 43, 78, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.contact-form-embedded textarea {
  min-height: 11rem;
}

.contact-form-embedded .consent-label {
  color: rgba(19, 36, 55, 0.76);
}

.contact-form-embedded .consent-label a {
  color: var(--navy);
  text-decoration-color: rgba(13, 43, 78, 0.48);
  text-underline-offset: 0.14em;
}

.contact-form-embedded .consent-label a:hover,
.contact-form-embedded .consent-label a:focus-visible {
  color: var(--gold);
  text-decoration-color: rgba(201, 144, 42, 0.66);
}

.contact-form-embedded .form-note {
  color: rgba(19, 36, 55, 0.62);
}

.contact-form-actions {
  display: grid;
  gap: 0.75rem;
  justify-items: start;
}

.contact-form-actions .button {
  min-width: 16rem;
  justify-content: center;
}

.contact-process-list {
  display: grid;
  gap: 1.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-process-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding-top: 1.05rem;
  border-top: 1px solid rgba(13, 43, 78, 0.1);
}

.contact-process-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.contact-step-index {
  display: inline-grid;
  place-items: center;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(232, 200, 122, 0.26), rgba(201, 144, 42, 0.18));
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.contact-process-copy {
  display: grid;
  gap: 0.3rem;
}

.contact-process-copy strong {
  color: var(--navy);
  font-size: 1.08rem;
}

.contact-process-copy span {
  color: rgba(19, 36, 55, 0.72);
}

.contact-process-note {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(13, 43, 78, 0.1);
  color: rgba(19, 36, 55, 0.62);
  font-size: 0.92rem;
}

.page-hero-media {
  position: relative;
  min-height: 20rem;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) + 0.2rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at top right, rgba(42, 143, 168, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05)),
    linear-gradient(180deg, rgba(13, 43, 78, 0.76), rgba(13, 43, 78, 0.9));
  box-shadow: var(--shadow-lg);
}

.page-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body[data-page="angebot"] .offer-hero-title .keep-together {
  white-space: nowrap;
}

body[data-page="angebot"] .offer-hero-media img {
  object-position: 58% center;
}

.decision-hero-grid {
  gap: clamp(1.75rem, 3.2vw, 3.5rem);
}

.decision-hero-copy {
  max-width: 36rem;
}

.decision-hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(2.4rem, 4.6vw, 3.95rem);
  line-height: 1;
  text-wrap: balance;
}

.decision-hero-copy .page-lead {
  max-width: 34rem;
}

.decision-hero-copy .hero-stat-bar {
  max-width: 36rem;
}

.decision-hero-media {
  min-height: clamp(20rem, 30vw, 26rem);
  align-self: center;
}

.decision-hero-media img {
  object-position: center 18%;
}

.image-panel {
  width: 100%;
  min-height: 20rem;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.image-panel img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-space {
  margin-top: var(--space-5);
}

.image-panel-dark {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.section-head.centered {
  text-align: center;
  margin-inline: auto;
}

.section-process {
  overflow: hidden;
}

.process-steps {
  position: relative;
  display: grid;
  gap: 2rem;
}

.process-line {
  display: none;
}

.process-step {
  position: relative;
  text-align: center;
  padding-inline: 0.5rem;
}

.process-number {
  display: grid;
  place-items: center;
  width: 4.8rem;
  height: 4.8rem;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-size: 1.9rem;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

.process-step h3 {
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
  font-size: 1.25rem;
}

.process-step p {
  max-width: 18rem;
  margin: 0 auto;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  display: block;
  padding: 1.25rem 4rem 1.25rem 1.25rem;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--teal);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  padding: 0 1.25rem 1.25rem;
  color: var(--muted);
}

.closing-cta {
  padding-top: 0;
}

.closing-box {
  padding: var(--space-6);
  border-radius: calc(var(--radius-xl) + 0.2rem);
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(42, 143, 168, 0.16), transparent 24%),
    linear-gradient(135deg, rgba(7, 26, 48, 0.97), rgba(13, 43, 78, 0.96));
  box-shadow: var(--shadow-lg);
}

.closing-title-stacked {
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.closing-title-stacked .line {
  display: block;
}

.closing-actions {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.contact-grid {
  grid-template-columns: 1fr;
  align-items: stretch;
}

.contact-list li + li {
  margin-top: 1rem;
}

.contact-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-card-intro {
  max-width: 28rem;
  margin: 0;
  color: rgba(19, 36, 55, 0.72);
}

.contact-card-stack {
  margin-top: 0.3rem;
}

.contact-card-badges {
  margin-top: auto;
  padding-top: 1.5rem;
}

.contact-card-actions {
  display: grid;
  gap: 0.85rem;
  margin-top: auto;
  padding-top: 1.25rem;
}

.contact-card-actions .button {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.form-card {
  display: grid;
  gap: 0.85rem;
}

.form-card label {
  font-weight: 700;
}

.form-card input,
.form-card textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(13, 43, 78, 0.16);
  font: inherit;
  color: var(--text);
  background: rgba(255, 255, 255, 0.96);
}

.form-card textarea {
  resize: vertical;
}

.text-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--teal);
  font-weight: 700;
}

.fact-panel {
  text-align: left;
}

.fact-number {
  display: block;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.legal-layout {
  display: grid;
  gap: 1rem;
}

.legal-card.wide {
  grid-column: 1 / -1;
}

.legal-article {
  display: grid;
  gap: 1rem;
  padding: var(--space-5);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.legal-article h2 {
  font-size: 1.5rem;
  margin-top: 0.5rem;
}

.site-footer {
  padding: var(--space-6) 0;
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.84);
}

.footer-brand-block {
  display: grid;
  grid-template-columns: 5.9rem minmax(0, 1fr);
  grid-template-areas:
    "logo brand"
    "logo slogan"
    "logo text";
  column-gap: 1.1rem;
  row-gap: 0.35rem;
  align-items: center;
  padding-left: 0;
}

.footer-logo {
  grid-area: logo;
  width: 3.75rem;
  height: 5.25rem;
  margin-left: 0;
  object-fit: contain;
  clip-path: none;
  transform: translateY(0.05rem) scale(2.35);
  transform-origin: left center;
  filter: brightness(0) saturate(100%) invert(74%) sepia(32%) saturate(873%) hue-rotate(355deg) brightness(91%) contrast(88%);
}

.site-footer-brand {
  overflow: visible;
}

.site-footer-logo {
  height: 1.75rem;
  width: auto;
  display: block;
  flex-shrink: 0;
  transform: translateY(0.03rem) scale(1.04);
  transform-origin: left center;
  will-change: transform;
}

@media (min-width: 640px) {
  .site-footer-logo {
    height: 1.95rem;
    transform: translateY(0.04rem) scale(1.05);
  }
}

.footer-brand-block .footer-brand {
  grid-area: brand;
  margin: 0;
}

.footer-brand-block .footer-slogan {
  grid-area: slogan;
  margin: 0;
  font-family: var(--font-display, Georgia, serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold-soft, #E8C87A);
  letter-spacing: 0.005em;
}

.footer-brand-block .footer-text {
  grid-area: text;
  margin: 0;
}

.footer-brand,
.footer-heading {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.footer-list {
  display: grid;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.72);
}

.footer-text {
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.72);
}

.section-head {
  max-width: 52rem;
  margin-bottom: var(--space-5);
}

.section-head.compact {
  margin-bottom: 0;
}

.card-grid.two {
  grid-template-columns: 1fr;
}

.testimonial-grid {
  grid-template-columns: 1fr;
}

.card-grid.three,
.card-grid.four {
  grid-template-columns: 1fr;
}

@media (min-width: 42rem) {
  .hero-grid,
  .split-section,
  .quick-grid,
  .closing-box,
  .about-hero-grid,
  .page-hero-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }

  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .contact-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1rem;
  }

  .closing-title-stacked .line:last-child {
    white-space: nowrap;
  }

  .trust-grid,
  .card-grid.two,
  .testimonial-grid,
  .footer-grid,
  .legal-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

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

@media (min-width: 64rem) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.14fr) minmax(23rem, 0.86fr);
  }

  .contact-hero-merged {
    grid-template-columns: minmax(0, 0.92fr) minmax(24rem, 1.08fr);
    align-items: start;
  }

  .decision-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(24rem, 1fr);
    align-items: center;
  }

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

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

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

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr;
  }

  .offer-showcase {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }

  .process-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .process-line {
    display: block;
    position: absolute;
    left: 9%;
    right: 9%;
    top: 2.35rem;
    height: 2px;
    background: linear-gradient(90deg, rgba(42, 143, 168, 0.75), rgba(201, 144, 42, 0.75));
  }
}

@media (max-width: 63.99rem) {
  .nav-toggle {
    display: inline-grid;
    place-content: center;
    width: 2.4rem;
    height: 2.4rem;
  }

  .site-nav {
    position: fixed;
    inset: 2.15rem 1rem auto 1rem;
    padding: 1.2rem;
    border-radius: var(--radius-lg);
    background: rgba(7, 26, 48, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-lg);
    display: grid;
    gap: 0.9rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.8rem);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .button-nav {
    width: 100%;
  }
}

/* ─── Scroll-Reveal-Animationen ─── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 680ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 90ms; }
.reveal-delay-2 { transition-delay: 180ms; }
.reveal-delay-3 { transition-delay: 270ms; }
.reveal-delay-4 { transition-delay: 360ms; }

/* ─── Verstärkter Dark-Card-Akzent (linker Balken, Teal) ─── */
.dark-card {
  position: relative;
  padding-left: calc(var(--space-5) + 3px);
}

.dark-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.25rem;
  bottom: 1.25rem;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--teal), rgba(42, 143, 168, 0.4));
}

/* ─── Trust Strip: stärkerer Akzent-Card ─── */
.trust-item-accent {
  background: linear-gradient(135deg, rgba(13, 43, 78, 0.94), rgba(10, 34, 60, 0.97));
  color: var(--white);
  border-color: rgba(201, 144, 42, 0.28);
}

.trust-item-accent .trust-kicker {
  color: var(--gold-soft);
  background: rgba(201, 144, 42, 0.16);
}

.trust-item-accent h3 {
  color: var(--white);
}

.trust-item-accent p {
  color: rgba(255, 255, 255, 0.78);
}

/* ─── Process-Number: Gold-Ring-Verfeinerung ─── */
.process-number {
  border: 2px solid rgba(201, 144, 42, 0.28);
  box-shadow:
    0 0 0 6px rgba(201, 144, 42, 0.06),
    var(--shadow-sm);
}

/* ─── Eyebrow: reduzierte Premium-Typografie ─── */
.section-head .eyebrow::before,
.hero-copy .eyebrow::before {
  content: none;
}

.section-dark .eyebrow,
.page-hero .eyebrow,
.section-accent .eyebrow {
  color: var(--gold-soft);
}

/* ─── Closing-Box: Decorative accent ─── */
.closing-box {
  position: relative;
  overflow: hidden;
}

.closing-box::after {
  content: "";
  position: absolute;
  bottom: -3rem;
  right: -3rem;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42, 143, 168, 0.1), transparent 70%);
  pointer-events: none;
}

/* ─── Offer-Card-Priority: stärkerer Gold-Glow ─── */
.offer-card-priority {
  box-shadow:
    0 0 0 1px rgba(201, 144, 42, 0.25),
    0 24px 48px rgba(201, 144, 42, 0.14);
}

/* ─── Offer-Price: bessere Lesbarkeit ─── */
.offer-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.02em;
}

/* ─── FAQ: sanfterer Open-Zustand ─── */
.faq-item[open] {
  border-color: rgba(42, 143, 168, 0.22);
}

.faq-item[open] summary {
  color: var(--navy);
}

/* ─── Info-Card: subtiler Hover-Akzent ─── */
.info-card {
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(7, 26, 48, 0.1);
  border-color: rgba(42, 143, 168, 0.2);
}

/* ─── Kontakt-Liste: besserer Stil ─── */
.contact-list a {
  color: var(--teal);
  font-weight: 700;
}

.contact-list a:hover {
  color: var(--navy);
}

.contact-topic-list strong {
  display: inline-block;
  margin-bottom: 0.2rem;
  color: var(--text);
}

.contact-topic-list span {
  color: var(--muted);
}

.linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.linkedin-link::before {
  content: "in";
  display: inline-grid;
  place-items: center;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 0.2rem;
  background: #0a66c2;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  box-shadow: 0 8px 18px rgba(10, 102, 194, 0.22);
}

/* ─── Trust-Badges (Kontakt-Seite) ─── */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.trust-badge {
  display: inline-block;
  background: rgba(42, 143, 168, 0.08);
  border: 1px solid rgba(42, 143, 168, 0.22);
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  white-space: nowrap;
}

/* ─── Button Ghost ─── */
.button-ghost {
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
}
.button-ghost:hover {
  color: var(--navy-deep);
}

/* ─── Hero-stat-bar (Trust-Zahlen im Hero) ─── */
.hero-stat-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin: var(--space-1) 0;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.hero-stat strong {
  font-size: 1.45rem;
  font-family: var(--font-display);
  color: var(--gold-soft);
  line-height: 1;
  font-weight: 700;
}

.hero-stat span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.55);
}

/* ─── Fact-Panel: Verfeinerung ─── */
.fact-panel {
  border-left: 3px solid transparent;
  transition: border-color 220ms ease, transform 220ms ease;
}

.fact-panel:hover {
  border-left-color: var(--teal);
  transform: translateY(-3px);
}

.fact-number {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}

/* ─── Footer: dezente Trennlinie oben ─── */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ─── Quick-Scenarios: Stile wie check-list ─── */
.quick-scenarios li::before {
  background: var(--gold-soft);
}

/* ─── Testimonial: Quote-Anführungszeichen ─── */
.testimonial-card .quote::before {
  content: none;
  position: absolute;
  left: 0;
  top: 0.6rem;
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--teal);
  opacity: 0.25;
  line-height: 1;
}

/* ─── Section-Accent: besserer Link-Stil ─── */
.section-accent a {
  color: var(--gold-soft);
}

/* ─── About-Photo: Abrundung + Overflow-Fix ─── */
.about-photo-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* ─── Large-Card: Hover ─── */
.large-card {
  transition: box-shadow 220ms ease, transform 220ms ease;
}

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

.fit-card .eyebrow {
  color: var(--gold);
}

.fit-card h2 {
  max-width: 15ch;
  text-wrap: balance;
}

.fit-card-wide {
  width: 100%;
  display: grid;
  gap: 1.5rem;
  align-items: start;
  padding: clamp(2.1rem, 3vw, 3.1rem);
}

.fit-card-wide .fit-card-wide-copy {
  display: grid;
  gap: 0.65rem;
  max-width: 28rem;
}

.fit-card-wide h2 {
  max-width: 11.8ch;
  margin-bottom: 0;
  font-size: clamp(2.05rem, 3.35vw, 3.45rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.fit-card-wide .check-list {
  display: grid;
  gap: 1.35rem;
  margin-top: 0.2rem;
}

.fit-card-wide .check-list li {
  padding-left: 1.45rem;
  font-size: clamp(1.16rem, 1.18vw, 1.32rem);
  line-height: 1.55;
  max-width: none;
}

.fit-card-wide .check-list li::before {
  top: 0.72rem;
  width: 0.5rem;
  height: 0.5rem;
}

@media (min-width: 68rem) {
  .fit-card-wide {
    grid-template-columns: minmax(17rem, 0.6fr) minmax(44rem, 1.4fr);
    gap: clamp(3.25rem, 5vw, 6rem);
    align-items: center;
  }

  .fit-card-wide .fit-card-wide-copy {
    grid-column: 1;
    align-self: start;
    transform: translateY(-0.35rem);
  }

  .fit-card-wide .check-list {
    grid-column: 2;
    align-self: center;
    margin-top: 0;
    padding-left: clamp(3.2rem, 4.5vw, 4.6rem);
    border-left: 1px solid rgba(13, 43, 78, 0.08);
  }

  .fit-card-wide .check-list li {
    max-width: none;
  }
}

/* ─── Sektion-Übergänge: subtile Trennlinie ─── */
.section-light + .section-soft,
.section-soft + .section-light {
  position: relative;
}

/* ══════════════════════════════════════════════
   BLOG
══════════════════════════════════════════════ */

.blog-grid {
  display: grid;
  gap: 2rem;
}

.blog-card {
  display: grid;
  gap: 1rem;
  padding: var(--space-5);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: var(--text);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.blog-card:hover,
.blog-card:focus-visible {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(42, 143, 168, 0.22);
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.blog-tag {
  display: inline-flex;
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(42, 143, 168, 0.1);
}

.blog-date,
.blog-reading-time {
  font-size: 0.8rem;
  color: var(--muted);
}

.blog-card h2,
.blog-card h3 {
  color: var(--navy);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.25;
  margin: 0;
}

.blog-card p {
  color: var(--muted);
  line-height: 1.7;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--teal);
  margin-top: 0.5rem;
}

.blog-card-featured {
  border-left: 4px solid var(--teal);
}

.blog-card-coming {
  border-left: 4px solid rgba(201, 144, 42, 0.45);
  opacity: 0.82;
  cursor: default;
  pointer-events: none;
}

.blog-coming-badge {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  gap: 0.4rem;
}

.blog-coming-soon {
  padding: var(--space-6);
  text-align: center;
  border: 2px dashed rgba(13, 43, 78, 0.12);
  border-radius: var(--radius-lg);
}

.coming-topics-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0 0;
  display: grid;
  gap: 0.75rem;
}

.coming-topics-list li {
  padding: 0.85rem 1rem;
  border-left: 3px solid rgba(201, 144, 42, 0.55);
  background: rgba(42, 143, 168, 0.035);
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.coming-topics-list strong {
  display: block;
  color: var(--navy);
  font-family: var(--font-display, Georgia, serif);
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.blog-coming-soon p {
  color: var(--muted);
  font-style: italic;
}

/* Blog Article Page */
.blog-article-hero {
  padding: calc(var(--space-8) + 1rem) 0 var(--space-6);
}

.blog-article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: var(--space-4);
}

.blog-article-content {
  max-width: 70ch;
  margin: 0 auto;
}

.blog-article-content p {
  margin-bottom: 1.5rem;
  line-height: 1.85;
  font-size: 1.05rem;
  color: rgba(19, 36, 55, 0.88);
}

.blog-article-content h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--navy);
}

.blog-article-content h3 {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--navy);
}

.blog-article-content ul,
.blog-article-content ol {
  margin: 1.25rem 0 1.5rem;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.blog-article-content li {
  position: relative;
  padding-left: 1.4rem;
  line-height: 1.75;
  color: rgba(19, 36, 55, 0.88);
}

.blog-article-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--teal);
}

.blog-article-content blockquote {
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--gold);
  background: rgba(201, 144, 42, 0.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.blog-article-content blockquote p {
  color: var(--navy);
  font-style: italic;
  font-size: 1.1rem;
  margin: 0;
}

.blog-article-content strong {
  color: var(--navy);
  font-weight: 700;
}

.blog-article-divider {
  margin: 2.5rem 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.blog-article-cta {
  margin-top: var(--space-7);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(13, 43, 78, 0.96), rgba(10, 34, 60, 0.97));
  color: var(--white);
  border: 1px solid rgba(201, 144, 42, 0.2);
}

.blog-article-cta h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

.blog-article-cta p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1.5rem;
}

.blog-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: var(--space-5);
  text-decoration: none;
}

.blog-back-link:hover {
  color: var(--navy);
}

@media (min-width: 64rem) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-card-featured {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 0.6fr;
    gap: 2rem;
  }

  .blog-card-featured .blog-card-body {
    display: contents;
  }
}

/* ══════════════════════════════════════════════
   COOKIE CONSENT BANNER
══════════════════════════════════════════════ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  padding: 1.25rem 0;
  background: rgba(7, 26, 48, 0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 -8px 40px rgba(7, 26, 48, 0.3);
  transform: translateY(0);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), opacity 320ms ease;
}

.cookie-banner.is-hidden {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}

.cookie-banner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  justify-content: space-between;
}

.cookie-banner__text {
  flex: 1 1 28rem;
}

.cookie-banner__text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.86rem;
  line-height: 1.6;
  margin: 0;
}

.cookie-banner__text p strong {
  color: var(--white);
  font-weight: 700;
}

.cookie-banner__text a {
  color: var(--gold-soft);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  flex-shrink: 0;
}

.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.cookie-btn:hover {
  transform: translateY(-1px);
}

.cookie-btn--accept {
  background: linear-gradient(180deg, #dfb25a 0%, var(--gold) 100%);
  color: var(--navy-deep);
  box-shadow: 0 8px 20px rgba(201, 144, 42, 0.28);
}

.cookie-btn--necessary {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.cookie-btn--necessary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.cookie-btn--settings {
  background: none;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 0.75rem;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-btn--settings:hover {
  color: rgba(255, 255, 255, 0.88);
  transform: none;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9500;
  background: rgba(7, 26, 48, 0.72);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms ease;
}

.cookie-modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cookie-modal {
  width: min(100%, 40rem);
  max-height: 85vh;
  overflow-y: auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: 0 40px 100px rgba(7, 26, 48, 0.4);
  transform: translateY(12px);
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.cookie-modal-overlay.is-open .cookie-modal {
  transform: translateY(0);
}

.cookie-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-5);
  gap: 1rem;
}

.cookie-modal__header h2 {
  font-size: 1.4rem;
  color: var(--navy);
  margin: 0;
}

.cookie-modal__close {
  background: rgba(13, 43, 78, 0.06);
  border: none;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--navy);
  flex-shrink: 0;
  transition: background-color 160ms ease;
}

.cookie-modal__close:hover {
  background: rgba(13, 43, 78, 0.12);
}

.cookie-modal p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.cookie-category {
  padding: 1.1rem 0;
  border-top: 1px solid var(--line);
}

.cookie-category:last-of-type {
  border-bottom: 1px solid var(--line);
  margin-bottom: var(--space-5);
}

.cookie-category__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.cookie-category__title {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
}

.cookie-category p {
  font-size: 0.82rem;
  margin: 0;
}

/* Toggle Switch */
.cookie-toggle {
  position: relative;
  width: 3rem;
  height: 1.6rem;
  flex-shrink: 0;
}

.cookie-toggle input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle__track {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: rgba(13, 43, 78, 0.15);
  cursor: pointer;
  transition: background-color 200ms ease;
  position: relative;
}

.cookie-toggle__track::after {
  content: "";
  position: absolute;
  left: 0.22rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: left 200ms cubic-bezier(0.22, 1, 0.36, 1);
}

.cookie-toggle input:checked + .cookie-toggle__track {
  background: var(--teal);
}

.cookie-toggle input:checked + .cookie-toggle__track::after {
  left: calc(100% - 1.37rem);
}

.cookie-toggle input:disabled + .cookie-toggle__track {
  background: var(--teal);
  opacity: 0.7;
  cursor: not-allowed;
}

.cookie-toggle input:focus-visible + .cookie-toggle__track {
  outline: 2px solid var(--gold-soft);
  outline-offset: 2px;
}

.cookie-modal__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

.cookie-reopen-btn {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(7, 26, 48, 0.92);
  box-shadow: 0 18px 40px rgba(7, 26, 48, 0.28);
  backdrop-filter: blur(12px);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  text-decoration: none;
}

.cookie-reopen-btn:hover {
  background: rgba(13, 43, 78, 0.98);
  transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ══════════════════════════════════════════════
   PREMIUM ADDITIONS — April 2026
══════════════════════════════════════════════ */

/* ── Hero: markenclaim variante (emotional leitzeile) ── */
.hero-claim {
  max-width: 32ch;
  margin: 0 0 0.75rem 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  line-height: 1.25;
  color: var(--gold-soft, #E8C87A);
  font-weight: 500;
  letter-spacing: -0.005em;
}

body[data-page="start"] .hero-copy {
  max-width: 49rem;
}

body[data-page="start"] .hero-copy h1 {
  max-width: 13.5ch;
}

body[data-page="start"] .hero-claim {
  max-width: 30ch;
}

body[data-page="start"] .hero-lead,
body[data-page="start"] .hero-stat-bar,
body[data-page="start"] .hero-points {
  max-width: 44rem;
}

@media (min-width: 64rem) {
  body[data-page="start"] .hero-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(22rem, 0.8fr);
    align-items: start;
  }
}

/* ── Pricing transparency block ── */
.price-transparency {
  background:
    radial-gradient(circle at top right, rgba(201,144,42,0.1), transparent 40%),
    linear-gradient(180deg, rgba(7,26,48,0.97), rgba(13,43,78,0.95));
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.price-transparency h2 { margin-bottom: 0.5rem; }
.price-transparency .section-intro { color: rgba(255,255,255,0.65); margin-bottom: var(--space-5); }

.price-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media(min-width:42rem){ .price-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:64rem){ .price-grid { grid-template-columns: repeat(4,1fr); } }

.price-item {
  padding: var(--space-4) var(--space-4) var(--space-5);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: grid;
  gap: 0.5rem;
  transition: background 200ms ease, border-color 200ms ease;
}
.price-item:hover { background: rgba(255,255,255,0.09); border-color: rgba(201,144,42,0.3); }
.price-item-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.45);
}
.price-item-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  line-height: 1.1;
}
.price-item-amount {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--gold-soft);
  line-height: 1;
  letter-spacing: -0.02em;
}
.price-item-amount span {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0;
}
.price-item-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.5;
}
.price-item.featured {
  background: rgba(201,144,42,0.12);
  border-color: rgba(201,144,42,0.4);
}
.price-item.featured .price-item-name { color: var(--gold-soft); }
.price-note {
  margin-top: var(--space-4);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.42);
  text-align: center;
  font-style: italic;
}

/* ── Offer card price inline ── */
.offer-price-line {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: baseline;
  gap: 0.45rem 0.8rem;
  padding: 0.7rem 0;
  border-top: 1px solid rgba(13,43,78,0.1);
  border-bottom: 1px solid rgba(13,43,78,0.1);
  margin: 0.25rem 0 0.5rem;
}
.offer-card-featured .offer-price-line,
.offer-card-priority .offer-price-line,
.accent-card .offer-price-line {
  border-color: rgba(255,255,255,0.12);
}
.offer-price-line .amount {
  display: inline-block;
  flex: 0 0 auto;
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--gold);
  font-family: var(--font-display);
  line-height: 1;
  white-space: nowrap;
}
.offer-card-featured .offer-price-line .amount,
.accent-card .offer-price-line .amount { color: var(--gold-soft); }
.offer-price-line .unit {
  min-width: 0;
  font-size: 0.83rem;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.5;
}
.offer-card-featured .offer-price-line .unit,
.offer-card-priority .offer-price-line .unit,
.accent-card .offer-price-line .unit { color: rgba(255,255,255,0.76); }

/* ── Lead magnet section ── */
.lead-magnet {
  background:
    radial-gradient(circle at 80% 50%, rgba(42,143,168,0.18), transparent 45%),
    linear-gradient(135deg, #071a30 0%, var(--navy) 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  display: grid;
  gap: var(--space-5);
  color: var(--white);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.lead-magnet::before {
  content: '';
  position: absolute;
  top: -4rem; right: -4rem;
  width: 18rem; height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,144,42,0.08), transparent 70%);
  pointer-events: none;
}
@media(min-width:52rem){
  .lead-magnet { grid-template-columns: 1fr auto; align-items: center; }
}
.lead-magnet-copy { display: grid; gap: var(--space-3); }
.lead-magnet-copy .eyebrow { color: var(--gold-soft); }
.lead-magnet-copy h2 { font-size: clamp(1.5rem,3vw,2.2rem); }
.lead-magnet-copy p { color: rgba(255,255,255,0.72); max-width: 46ch; }

.lead-magnet-form {
  display: grid;
  gap: 0.75rem;
  min-width: min(100%, 26rem);
}

.lead-magnet-form .form-consent {
  margin-top: 0.15rem;
}

.lead-magnet-form .consent-label {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  line-height: 1.6;
}

.lead-magnet-form .consent-label input[type="checkbox"] {
  accent-color: var(--gold);
  margin-top: 0.24rem;
}

.lead-magnet-form .consent-label a {
  color: var(--gold-soft);
  text-decoration-color: rgba(232, 200, 122, 0.9);
  text-underline-offset: 0.14em;
}

.lead-magnet-form .consent-label a:hover,
.lead-magnet-form .consent-label a:focus-visible {
  color: var(--white);
  text-decoration-color: rgba(255, 255, 255, 0.92);
}

.lead-magnet-form input[type="email"] {
  width: 100%;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font: inherit;
  font-size: 0.96rem;
  transition: border-color 180ms ease, background 180ms ease;
}
.lead-magnet-form input[type="email"]::placeholder { color: rgba(255,255,255,0.38); }
.lead-magnet-form input[type="email"]:focus {
  outline: none;
  border-color: var(--gold-soft);
  background: rgba(255,255,255,0.12);
}
.lead-magnet-note {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.5;
}
.lead-magnet-pdf-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-soft);
  margin-bottom: 0.25rem;
}

/* ── Journey / Werdegang timeline ── */
.journey-section { padding: var(--space-7) 0; }
.journey-grid {
  display: grid;
  gap: var(--space-6);
}
@media(min-width:56rem){ .journey-grid { grid-template-columns: 1fr 1fr; } }

.journey-list {
  display: grid;
  gap: 0;
  position: relative;
  padding-left: 3rem;
}
.journey-list::before {
  content: '';
  position: absolute;
  left: 1.05rem;
  top: 0.6rem;
  bottom: 0.6rem;
  width: 2px;
  background: linear-gradient(180deg, var(--teal), rgba(201,144,42,0.4), transparent);
}
.journey-item {
  position: relative;
  padding: 0 0 var(--space-5);
}
.journey-item:last-child { padding-bottom: 0; }
.journey-item::before {
  content: '';
  position: absolute;
  left: -2.25rem;
  top: 0.45rem;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: var(--teal);
  border: 2px solid rgba(42,143,168,0.25);
  box-shadow: 0 0 0 4px rgba(42,143,168,0.1);
}
.journey-item.current::before {
  background: var(--gold);
  border-color: rgba(201,144,42,0.3);
  box-shadow: 0 0 0 4px rgba(201,144,42,0.12);
}
.journey-year {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.2rem;
}
.journey-item.current .journey-year { color: var(--gold); }
.journey-item h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
  line-height: 1.2;
}
.journey-item p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}
.journey-item .journey-tag {
  display: inline-block;
  margin-top: 0.4rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(42,143,168,0.1);
  color: var(--teal);
}
.journey-item.current .journey-tag {
  background: rgba(201,144,42,0.12);
  color: var(--gold);
}

.macher-box {
  background:
    radial-gradient(circle at top left, rgba(42,143,168,0.15), transparent 40%),
    linear-gradient(180deg, rgba(7,26,48,0.98), rgba(13,43,78,0.96));
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  color: var(--white);
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: var(--space-4);
}
.macher-box .eyebrow { color: var(--gold-soft); }
.macher-box blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem,2.5vw,1.9rem);
  line-height: 1.35;
  color: var(--white);
  border-left: 3px solid var(--gold);
  padding-left: var(--space-4);
  margin: 0;
}
.macher-traits {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}
@media(min-width:42rem){ .macher-traits { grid-template-columns: 1fr 1fr; } }
.macher-trait {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.macher-trait-icon {
  width: 2.2rem;
  height: 2.2rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(201,144,42,0.12);
  border: 1px solid rgba(201,144,42,0.35);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--gold-soft, #E8C87A);
}
.macher-trait-text h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold-soft);
  margin-bottom: 0.2rem;
}
.macher-trait-text p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.5;
}

/* ── Booking box (Entscheidungs-Sparring) ── */
.booking-box {
  background:
    radial-gradient(circle at bottom right, rgba(42,143,168,0.14), transparent 35%),
    linear-gradient(135deg, rgba(7,26,48,0.98), rgba(13,43,78,0.96));
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  color: var(--white);
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: var(--space-5);
}
@media(min-width:52rem){ .booking-box { grid-template-columns: 1fr auto; align-items: center; } }

.booking-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.booking-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.booking-meta-item .bm-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold-soft);
  line-height: 1;
}
.booking-meta-item .bm-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
}
.booking-actions {
  display: grid;
  gap: 0.75rem;
  min-width: min(100%, 18rem);
}

.booking-actions .button-primary,
.booking-actions .button-secondary,
.booking-actions .button-call,
.booking-actions .button-ghost {
  min-height: 3.45rem;
  font-weight: 800;
}

.button-book {
  color: var(--navy-deep);
  border: 1px solid var(--button-border);
  background: linear-gradient(180deg, var(--button-gold-top) 0%, var(--button-gold-bottom) 100%);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  box-shadow:
    0 18px 38px var(--button-shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.button-book:hover {
  border-color: var(--button-border-strong);
  background: linear-gradient(180deg, var(--button-gold-hover-top) 0%, var(--button-gold-hover-bottom) 100%);
  box-shadow:
    0 22px 42px var(--button-shadow-strong),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
  transform: translateY(-2px);
}

/* ── Scenario cards (Entscheidungs-Sparring) ── */
.scenario-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media(min-width:42rem){ .scenario-grid { grid-template-columns: 1fr 1fr; } }

.scenario-card {
  padding: var(--space-4);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  transition: background 200ms ease, border-color 200ms ease;
}
.scenario-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(201,144,42,0.28); }
.scenario-num {
  display: inline-grid;
  place-items: center;
  width: 2.9rem;
  aspect-ratio: 1;
  margin-top: 0.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.24);
  background: linear-gradient(180deg, var(--gold-soft) 0%, var(--gold) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.28),
    0 10px 24px rgba(7,26,48,0.2);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1;
  flex-shrink: 0;
}
.scenario-copy {
  display: grid;
  gap: 0.35rem;
}
.scenario-title {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--white);
}
.scenario-text {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.55;
}

/* ── Testimonial featured card ── */
.testimonial-card.featured {
  background: linear-gradient(135deg, rgba(13,43,78,0.97), rgba(10,34,60,0.98));
  color: var(--white);
  border-color: rgba(201,144,42,0.22);
}
.testimonial-card.featured .quote { color: rgba(255,255,255,0.85); }
.testimonial-card.featured .testimonial-name { color: var(--white); }
.testimonial-card.featured .testimonial-role { color: rgba(255,255,255,0.5); }
.testimonial-card.featured .testimonial-stars { color: var(--gold-soft); }

/* ── Inline story section (Über mich) ── */
.story-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.82) 0%, rgba(255,255,255,0.58) 100%);
}
.story-intro {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.75;
  max-width: 58ch;
  margin-bottom: var(--space-4);
}
.story-intro strong { color: var(--teal); }

/* ── Quick-info pill row (Über mich stats) ── */
.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--line);
}
.about-stat {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}
.about-stat .as-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.about-stat .as-label {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── Offer detail row ── */
.offer-detail-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.25rem;
}
.offer-card-featured .offer-detail-row,
.offer-card-priority .offer-detail-row,
.accent-card .offer-detail-row { color: rgba(255,255,255,0.64); }
.offer-detail-row span::before {
  content: '·';
  margin-right: 0.4rem;
  opacity: 0.5;
}
.offer-detail-row span:first-child::before { display: none; }
