:root {
  --bg: #f5f5f5;
  --surface: #ffffff;
  --surface-soft: #f8f8f8;
  --surface-strong: #111111;
  --surface-dark: #0d0d0d;
  --text: #111111;
  --text-soft: #555555;
  --text-inverse: #ffffff;
  --line: rgba(0, 0, 0, 0.1);
  --line-strong: rgba(53, 104, 176, 0.28);
  --brand: #3568b0;
  --brand-strong: #1e3a5c;
  --brand-soft: #cddbe8;
  --accent: #3568b0;
  --success-bg: #e7f6ec;
  --success-text: #15603a;
  --danger: #3568b0;
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.13);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --site-width: 1180px;
  --content-width: 820px;
  --header-height: 72px;
  --transition: 180ms ease;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding-top: var(--header-height);
  font-family: 'Inter', 'Segoe UI', -apple-system, sans-serif;
  color: var(--text);
  background: #f5f5f5;
  line-height: 1.65;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: var(--brand);
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition), border-color var(--transition), background-color var(--transition), transform var(--transition);
}

a:hover {
  color: var(--brand-strong);
}

button,
input,
textarea {
  font: inherit;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 1rem;
  font-family: 'Merriweather', Georgia, 'Times New Roman', serif;
  letter-spacing: -0.01em;
  line-height: 1.14;
  color: var(--text);
}

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

h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}

h3 {
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
}

h4 {
  font-size: 1.05rem;
}

p,
li {
  margin: 0;
  font-size: 1rem;
  color: var(--text-soft);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  overflow: visible;
}

.header-inner {
  overflow: visible;
}

.site-header.is-scrolled {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.header-inner,
.footer-inner,
.hero-inner,
.section-shell {
  width: min(calc(100% - 32px), var(--site-width));
  margin: 0 auto;
}

.header-inner {
  min-height: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 10px 0;
}

.header-brand-area {
  display: flex;
  align-items: center;
  grid-column: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  color: var(--text);
}

.brand:hover {
  color: var(--text);
}

.header-logo-img {
  height: 84px;
  width: auto;
  display: block;
  margin: 0;
  position: relative;
  z-index: 1001;
  flex-shrink: 0;
}

/* Mittlere Breiten: Platz im Header wird knapp – Logo kompakter,
   Nav enger, CTA ausblenden, damit nichts gequetscht wird */
@media (min-width: 821px) and (max-width: 1180px) {
  .header-logo-img { height: 56px; }
  .header-inner { padding: 12px 0; }
  .site-nav { gap: 4px; }
  .site-nav a { padding: 8px 14px; font-size: 0.9rem; }
  .header-right .nav-cta { display: none; }
}

.footer-logo-img {
  height: 96px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-name {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--surface-strong);
}

.brand-subline {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-soft);
}

.brand-tagline {
  display: none;
}

.hero-logo-mobile {
  display: none;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--surface-strong);
  border-radius: 999px;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.menu-toggle.is-active span:nth-child(1) {
  transform: rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: rotate(-45deg);
}

.site-nav {
  grid-column: 2;
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-nav a {
  padding: 10px 24px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--surface-strong);
}

.site-nav a:hover,
.site-nav a.active {
  background: #cddbe8;
  color: #1e3a5c;
}

/* ── Header Right Group ── */
.header-right {
  grid-column: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
}

/* ── Header CTA ── */
.header-cta {
  min-height: 42px;
  padding: 0 20px;
  font-size: 0.9rem;
  border-radius: 6px;
  flex-shrink: 0;
}

/* ── Language Switcher ── */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  flex-shrink: 0;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background: transparent;
  color: var(--text);
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}

.lang-btn.is-active {
  background: #3568b0;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(53, 104, 176, 0.32);
}

.lang-btn:hover:not(.is-active) {
  background: #cddbe8;
  color: #1e3a5c;
}

/* ── Hero Mobile Banner ── */
.hero-mobile-banner {
  display: none;
}

.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(20px, 3vw, 40px) 0 0;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 19, 33, 0.91) 0%, rgba(9, 31, 55, 0.86) 55%, rgba(9, 31, 55, 0.80) 100%),
    url("../Hintergrund jpg.png") center center / cover no-repeat;
  z-index: -2;
}


.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 88%, rgba(245, 245, 245, 0.96) 100%);
  z-index: -1;
}

.hero-inner {
  min-height: clamp(400px, 44vw, 520px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: min(calc(100% - 32px), var(--site-width));
}

.hero-main-title {
  color: #ffffff;
  font-size: clamp(1.1rem, 1.8vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 10px;
  text-align: center;
  width: 100%;
}

.hero-panel-heading {
  color: var(--text-inverse);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 10px;
}

.hero-subline {
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem) !important;
  font-weight: 400 !important;
  line-height: 1.65 !important;
  max-width: 48ch;
  margin: 0 !important;
}

.hero-panel .hero-actions {
  margin-top: 20px;
}

.hero-banner-slogan {
  display: none;
}

.hero-banner-actions {
  display: none;
}

/* legacy: keep for fallback */
.hero-full-eyebrow {
  display: none;
}

.hero-panel {
  width: 100%;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: var(--shadow-lg);
  backdrop-filter: none;
}

/* .hero-split for sub-pages (old structure) – overridden by one-pager CSS at bottom */
.page-hero .hero-split {
  display: grid;
  grid-template-columns: minmax(180px, 280px) 1fr auto;
  align-items: center;
  gap: clamp(4px, 0.6vw, 10px);
  width: 100%;
}

.hero-banner-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: center;
  width: 121%;
  gap: 10px;
}

.page-hero .hero-split > .hero-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 0;
  align-items: stretch;
  min-width: 185px;
}

.hero-cta-center {
  justify-content: center;
  margin-top: 4px;
}

/* ──────────────── WELCOME SECTION ──────────────── */
.welcome-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(240px, 0.9fr);
  gap: 40px;
  align-items: center;
}

.welcome-content {
  display: grid;
  gap: 16px;
}

.welcome-content h2 {
  color: var(--text);
}

.welcome-content p {
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.75;
}

.welcome-img-placeholder {
  min-height: 320px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--brand-soft) 0%, rgba(53, 104, 176, 0.06) 100%);
  border: 2px dashed rgba(53, 104, 176, 0.22);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.welcome-img-placeholder .placeholder-emoji {
  font-size: 3.5rem;
  line-height: 1;
}

.welcome-img-placeholder .placeholder-label {
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ──────────────── REGIONS CTA ──────────────── */
.regions-section-cta {
  margin-top: 22px;
  text-align: center;
}

.hero-banner-frame {
  width: 100%;
}

.hero-banner-frame img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 48px rgba(10, 25, 42, 0.3));
}

/* ── Hero Content (unified all pages) ── */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 660px;
  width: 100%;
  padding: 44px 0 44px;
  text-align: center;
}

.hero-content h1 {
  color: #ffffff;
  font-family: 'Merriweather', Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0 0 18px;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}

.hero-content > p {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.97rem, 1.4vw, 1.1rem);
  line-height: 1.75;
  margin: 0 auto 0;
  max-width: 52ch;
}

.hero-content .hero-actions {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: clamp(28px, 4vw, 42px);
}

.hero-panel h1 {
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 0;
  background: none;
  border-radius: 24px;
  color: #5580aa;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: #5580aa;
  display: block;
  flex-shrink: 0;
}

.page-hero h1,
.page-hero p,
.page-hero li {
  color: var(--text-inverse);
}

.page-hero p {
  max-width: 58ch;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

/* ── Sub-page Hero ── */
.page-hero--subpage .hero-inner {
  min-height: clamp(360px, 38vw, 460px);
}

.page-hero--subpage .hero-content h1 {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
}

/* ── Light Hero Variant (rechtliche Seiten) ── */
.page-hero--light::before {
  background: linear-gradient(135deg, #edf2fa 0%, #dce7f5 55%, #e8eef8 100%);
}
.page-hero--light::after {
  background: linear-gradient(180deg, rgba(237, 242, 250, 0) 85%, #f5f7fa 100%);
}
.page-hero--light .hero-inner {
  min-height: clamp(220px, 28vw, 320px);
}
.page-hero--light .hero-content {
  padding: clamp(32px, 5vw, 52px) 0;
}
.page-hero--light .hero-content h1 {
  color: #1a3552;
}
.page-hero--light .hero-content > p {
  color: rgba(26, 53, 82, 0.68);
}
.page-hero--light .hero-eyebrow {
  color: #3568b0;
}
.page-hero--light .hero-eyebrow::before {
  background: #3568b0;
}

/* ── Hero Logo Mark ── */
.hero-mark {
  display: flex;
  justify-content: center;
  margin-bottom: 26px;
}

.hero-mark img {
  height: 72px;
  width: auto;
  opacity: 0.95;
}

/* ──────────────── BUTTONS ──────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 28px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 700;
  font-family: inherit;
  letter-spacing: -0.01em;
  cursor: pointer;
}

.btn-primary {
  background: #3568b0;
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 16px rgba(53, 104, 176, 0.3);
}

.btn-primary:hover {
  background: #245494;
  color: #ffffff;
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

.btn-secondary:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.08);
}

.btn-light {
  background: #fff;
  color: #111;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.btn-light:hover {
  color: #111;
  border-color: var(--line-strong);
}

.btn-sm {
  min-height: 36px;
  padding: 0 14px;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 6px;
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.btn-text::after {
  content: "->";
}

.page-main {
  padding-bottom: 20px;
}

.page-main > .section:first-child {
  padding-top: 0;
}

.section {
  padding: clamp(40px, 5vw, 64px) 0;
}

.section + .section {
  padding-top: 0;
}

.section-soft .section-card,
.section-card,
.content-card,
.metric-card,
.feature-card,
.service-card,
.team-card,
.value-card,
.faq-card,
.blog-card,
.contact-card,
.legal-card,
.region-card,
.insight-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.section-card {
  padding: clamp(28px, 4vw, 40px);
}

.section-soft .section-card,
.section-soft .metric-card,
.section-soft .feature-card,
.section-soft .service-card,
.section-soft .blog-card,
.section-soft .contact-card,
.section-soft .faq-card,
.section-soft .legal-card,
.section-soft .value-card {
  background: #ffffff;
}

.section-header {
  max-width: 760px;
  margin-bottom: 30px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: #3568b0;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: #3568b0;
}

.section-header p,
.lead {
  max-width: 62ch;
  font-size: 1.08rem;
}

.grid-2,
.grid-3,
.grid-4,
.stats-grid,
.features-grid,
.service-grid,
.team-grid,
.values-grid,
.faq-grid,
.blog-grid,
.contact-grid,
.footer-grid,
.regions-grid,
.insights-grid {
  display: grid;
  gap: 22px;
}

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

.grid-3,
.features-grid,
.service-grid,
.blog-grid,
.insights-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

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

.metric-card,
.feature-card,
.service-card,
.team-card,
.value-card,
.faq-card,
.blog-card,
.contact-card,
.region-card,
.insight-card {
  padding: 26px;
}

.metric-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.intro-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 12px;
}

.intro-block {
  display: grid;
  gap: 12px;
}

.intro-block h3 {
  margin-bottom: 0;
}

.banner-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 28px;
  align-items: stretch;
}

.banner-preview {
  min-height: 320px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #c2d3e4 0%, #deeaf7 100%);
  box-shadow: var(--shadow-lg);
}

.coverage-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: 28px;
  align-items: center;
}

.coverage-map {
  width: 100%;
  min-height: 360px;
  padding: 24px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(53, 104, 176, 0.04), rgba(53, 104, 176, 0.1));
  border: 1px solid rgba(53, 104, 176, 0.12);
}

.coverage-map svg {
  width: 100%;
  height: auto;
  display: block;
}

.coverage-note {
  margin-top: 16px;
  color: var(--text);
  font-weight: 600;
}

.state-highlight {
  fill: rgba(53, 104, 176, 0.15);
  stroke: #3568b0;
  stroke-width: 2;
}

.company-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 28px;
}

.metric-value {
  color: #3568b0;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.metric-label {
  color: var(--text);
  font-weight: 700;
}

.feature-card,
.service-card,
.team-card,
.value-card,
.faq-card,
.blog-card,
.insight-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-icon,
.insight-icon,
.blog-badge {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #cddbe8;
  color: #3568b0;
  border: 1px solid rgba(53, 104, 176, 0.15);
  font-size: 1.2rem;
  font-weight: 800;
}

.feature-card ul,
.service-card ul,
.legal-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.feature-card li,
.service-card li,
.legal-card li {
  position: relative;
  padding-left: 18px;
}

.feature-card li::before,
.service-card li::before,
.legal-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3568b0;
}

.service-card {
  gap: 16px;
}

.service-index {
  color: #3568b0;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.split-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: start;
}

.list-panel,
.contact-panel,
.legal-card,
.cta-card {
  padding: clamp(28px, 4vw, 36px);
}

.list-panel {
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: #ffffff;
}

.check-list,
.inline-list {
  list-style: none;
  display: grid;
  gap: 14px;
}

.check-list li,
.inline-list li {
  position: relative;
  padding-left: 26px;
}

.check-list li::before,
.inline-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: #3568b0;
  font-weight: 800;
}

.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #c2d3e4, #d8eaf5);
  color: #1a3552;
  font-size: 1.25rem;
  font-weight: 800;
}

.team-role,
.blog-date,
.faq-label,
.contact-label {
  color: #3568b0;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.regions-grid .region-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.region-code {
  color: #3568b0;
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

/* ──────────────── CTA CARD ──────────────── */
.cta-card {
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #c2d3e4 0%, #deeaf7 100%);
  border: 1px solid rgba(53, 104, 176, 0.2);
  box-shadow: var(--shadow-sm);
}

.cta-card h2 {
  color: #1a3552;
}

.cta-card p {
  max-width: 58ch;
  color: rgba(26, 53, 82, 0.7);
}

.cta-card .eyebrow {
  color: #3568b0;
}

.cta-card .eyebrow::before {
  background: #3568b0;
}

.cta-card .btn-secondary {
  background: rgba(53, 104, 176, 0.1);
  border-color: rgba(53, 104, 176, 0.3);
  color: #1a3552;
}

.cta-card .btn-secondary:hover {
  background: rgba(53, 104, 176, 0.18);
  color: #1a3552;
}

.contact-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-card a,
.contact-card strong {
  color: #111111;
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 16px;
}

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

.form-group {
  display: grid;
  gap: 8px;
}

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

label {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(53, 104, 176, 0.44);
  box-shadow: 0 0 0 4px rgba(53, 104, 176, 0.1);
}

textarea {
  min-height: 160px;
  resize: vertical;
}

.form-submit {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.form-error {
  min-height: 18px;
  color: var(--danger);
  font-size: 0.85rem;
}

.form-success {
  display: none;
  gap: 14px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #e7f6ec, #d4f2e0);
  color: var(--success-text);
  border: 1px solid rgba(21, 96, 58, 0.2);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5;
  align-items: center;
}

.form-success.show {
  display: flex;
}

.form-success::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 50%;
  background: var(--success-text);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* ── DSGVO Checkbox ── */
.form-group--checkbox {
  display: grid;
  gap: 6px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin: 2px 0 0;
  accent-color: var(--brand);
  cursor: pointer;
  border-radius: 4px;
}

.checkbox-label span {
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--text-soft);
}

.checkbox-label span a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.checkbox-label span a:hover {
  color: var(--brand-strong);
}

/* ── Form Disclaimer ── */
.form-disclaimer {
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-top: 4px;
}

.form-disclaimer a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.input-error {
  border-color: rgba(53, 104, 176, 0.4);
}

.faq-card h3,
.legal-card h2 {
  margin-bottom: 10px;
}

.blog-card {
  min-height: 100%;
}

.blog-badge {
  font-size: 1rem;
}

.blog-card p {
  flex: 1;
}

.legal-layout {
  max-width: var(--content-width);
  margin: 0 auto;
}

.legal-card {
  display: grid;
  gap: 22px;
}

.legal-card section {
  padding: 0;
}

.legal-card h2 {
  margin-bottom: 0;
}

.legal-card h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.legal-note {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
}

.content-flow {
  display: grid;
  gap: 22px;
  max-width: var(--content-width);
}

/* ──────────────── FOOTER ──────────────── */
.site-footer {
  background: #c2d3e4;
  padding: 24px 0 20px;
}

.footer-shell {
  width: min(calc(100% - 32px), var(--site-width));
  margin: 0 auto;
  padding: 32px clamp(24px, 4vw, 36px);
  background: transparent;
  border-radius: 24px;
  box-shadow: none;
  color: rgba(26, 53, 82, 0.65);
}

.footer-grid {
  margin-bottom: 28px;
}

.footer-column {
  display: grid;
  gap: 12px;
}

/* Marken-Spalte (Logo + Beschreibung) vertikal mittig zu den Link-Spalten;
   etwas mehr Abstand zwischen prominentem Logo und Beschreibungstext;
   Logo + Text zusätzlich horizontal zentriert */
.footer-brand {
  align-content: center;
  gap: 18px;
  text-align: center;
}
.footer-brand .brand {
  justify-content: center;
}

.footer-column h4 {
  margin-bottom: 0;
  color: #ffffff;
}

.footer-column a,
.footer-column p {
  color: rgba(255, 255, 255, 0.65);
}

.footer-brand .brand-name,
.footer-brand .brand-subline {
  color: #ffffff;
}

.footer-brand .brand-subline {
  opacity: 0.72;
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ──────────────── INTRO PARTNER SECTION ──────────────── */
.intro-partner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 52px;
  align-items: center;
}

.intro-partner-text {
  display: grid;
  gap: 18px;
}

.intro-partner-text h2 {
  margin-bottom: 0;
}

.intro-partner-text p {
  font-size: 1.05rem;
  line-height: 1.7;
}

.intro-partner-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}

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

/* ──────────────── WHY GRID ──────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 8px;
}

.why-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 26px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #cddbe8;
  color: #3568b0;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  border: 1px solid rgba(53, 104, 176, 0.15);
  flex-shrink: 0;
}

.why-card h3 {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  margin-bottom: 0;
}

/* ──────────────── REGION TILES ──────────────── */
.regions-section {
  text-align: center;
}

.regions-section .section-header {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 600px;
}

.regions-section .eyebrow {
  justify-content: center;
}

.regions-section .eyebrow::before {
  display: none;
}

.regions-section .coverage-note {
  text-align: center;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.region-tiles {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin: 28px 0 24px;
}

.region-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 28px 52px;
  border-radius: var(--radius-md);
  background: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0.1);
  min-width: 200px;
}

.region-tile-code {
  color: #3568b0;
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.region-tile-name {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
}

/* ──────────────── PHILOSOPHY SECTION ──────────────── */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 8px;
}

.philosophy-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.philosophy-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #cddbe8;
  color: #3568b0;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  border: 1px solid rgba(53, 104, 176, 0.15);
  flex-shrink: 0;
}

.philosophy-card h3 {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  margin-bottom: 0;
}

/* ──────────────── PROBLEM / SOLUTION BLOCK ──────────────── */
.problem-solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
}

.problem-block,
.solution-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: clamp(32px, 5vw, 56px);
}

.problem-block {
  background: #f8f8f8;
  border-right: 1px solid var(--line);
}

.solution-block {
  background: #ffffff;
}

.problem-block h2,
.solution-block h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 0;
}

.solution-block .btn {
  align-self: flex-start;
  margin-top: 8px;
}

/* ──────────────── PERSON CARDS (Geschäftsführung) ──────────────── */
.person-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin-top: 8px;
}

.person-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.person-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #e8f5f4 0%, #b2e8e4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}

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

.person-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px;
  flex: 1;
}

.person-card h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  margin-bottom: 0;
}

.person-position {
  color: var(--brand) !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.person-card p {
  font-size: 1rem;
  line-height: 1.7;
}

/* ──────────────── TEAM AVATAR ──────────────── */
.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #cddbe8, #b4c4d8);
  border: 1px solid rgba(53, 104, 176, 0.14);
  font-size: 2.2rem;
}

/* ──────────────── STATS BAR ──────────────── */
.section-stats {
  padding: 0;
  margin-top: -2px;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: linear-gradient(135deg, #c2d3e4 0%, #deeaf7 100%);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 0;
}

.stats-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid rgba(26, 53, 82, 0.12);
  gap: 8px;
}

.stats-bar-item:last-child {
  border-right: none;
}

.stats-bar-value {
  color: #3568b0;
  font-family: 'Merriweather', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 1;
}

.stats-bar-label {
  color: rgba(26, 53, 82, 0.65);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
}

/* ──────────────── PACKAGE CARDS ──────────────── */
.packages-stack {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 32px;
}

.pkg-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pkg-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.pkg-card li {
  position: relative;
  padding-left: 18px;
  color: var(--text-soft);
  font-size: 1rem;
}

.pkg-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
}

.pkg-featured {
  border-top: 3px solid var(--brand);
}

/* ──────────────── PACKAGE LEVELS ──────────────── */
.pkg-level {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.7fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}

.section-card.pkg-level {
  padding: clamp(32px, 5vw, 56px);
  background: linear-gradient(to right, var(--surface) 0%, #e4edf6 100%);
}

.pkg-level--featured {
  border-top: 3px solid var(--brand);
}

/* ── Visual column (left) ── */
.pkg-visual-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pkg-slogan {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid var(--brand);
  color: var(--brand);
  border-radius: 100px;
  padding: 5px 14px;
}

.pkg-visual {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  position: relative;
}

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

.pkg-visual--01 { background: linear-gradient(160deg, #cddbe8 0%, #3568b0 100%); }
.pkg-visual--02 { background: linear-gradient(160deg, #3568b0 0%, #c2d3e4 100%); }
.pkg-visual--03 { background: linear-gradient(160deg, #d0dcea 0%, #3568b0 80%); }

.pkg-visual::after {
  content: attr(data-label);
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

/* ── Content column (right) ── */
.pkg-content-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pkg-content-col h3 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  margin-bottom: 0;
}

.pkg-content-col > p {
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.78;
  margin: 0;
}

/* ── Package items (task + benefit) ── */
.pkg-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.pkg-item {
  padding: 15px 16px 15px 20px;
  border-radius: var(--radius-sm);
  background: var(--surface-soft);
  border-left: 3px solid var(--brand);
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: background var(--transition);
}

.pkg-item:hover {
  background: var(--brand-soft);
}

.pkg-item-task {
  font-weight: 700;
  color: var(--text);
  font-size: 0.97rem;
  line-height: 1.3;
}

.pkg-item-benefit {
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.58;
}

@media (max-width: 820px) {
  .pkg-level {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-card.pkg-level {
    padding: clamp(22px, 4vw, 32px);
  }

  .pkg-visual {
    aspect-ratio: 16 / 9;
  }
}

/* ──────────────── ADDON / ZUSATZLEISTUNGEN ──────────────── */
.addon-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(36px, 5vw, 56px);
}

.addon-header h2 {
  margin-bottom: 12px;
}

.addon-header p {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.72;
  margin: 0;
}

.addon-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.addon-item {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: clamp(24px, 4vw, 40px);
  display: grid;
  grid-template-columns: 1fr minmax(200px, 300px);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.addon-item--reverse .addon-visual {
  order: -1;
}

.addon-visual {
  border-radius: var(--radius-md);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

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

.addon-visual--01 { background: linear-gradient(135deg, #cddbe8 0%, #3568b0 100%); }
.addon-visual--02 { background: linear-gradient(135deg, #3568b0 0%, #c2d3e4 100%); }
.addon-visual--03 { background: linear-gradient(135deg, #d0dcea 0%, #3568b0 80%); }
.addon-visual--04 { background: linear-gradient(135deg, #c2d3e4 0%, #3568b0 100%); }

.addon-visual::after {
  content: attr(data-label);
  position: absolute;
  bottom: 14px;
  left: 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.addon-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.addon-content h3 {
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  margin-bottom: 0;
}

.addon-content p {
  color: var(--text-soft);
  font-size: 0.97rem;
  line-height: 1.72;
  margin: 0;
}

@media (max-width: 680px) {
  .addon-item {
    grid-template-columns: 1fr;
  }

  .addon-item--reverse .addon-visual {
    order: 0;
  }
}

/* ──────────────── ACCORDION ──────────────── */
.accord {
  margin-top: 6px;
  border-top: 1px solid var(--line);
}

.accord-item {
  border-bottom: 1px solid var(--line);
}

.accord-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  gap: 12px;
  transition: color var(--transition);
}

.accord-btn:hover {
  color: var(--brand);
}

.accord-label {
  flex: 1;
}

.accord-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid rgba(53, 104, 176, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--brand);
  font-size: 1rem;
  line-height: 1;
  font-weight: 400;
  transition: transform 240ms ease, background-color 180ms ease;
}

.accord-icon::after {
  content: "+";
}

.accord-btn[aria-expanded="true"] .accord-icon {
  background: var(--brand-soft);
  transform: rotate(45deg);
}

.accord-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 280ms ease;
}

.accord-panel.is-open {
  max-height: 400px;
}

.accord-panel > p {
  padding-bottom: 16px;
  color: var(--text-soft);
  font-size: 0.97rem;
  line-height: 1.72;
  max-width: 72ch;
}

/* ──────────────── REVEAL ANIMATION ──────────────── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 420ms ease, transform 420ms ease;
}

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

/* ──────────────── RESPONSIVE ──────────────── */
@media (max-width: 1080px) {
  .grid-4,
  .stats-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3,
  .features-grid,
  .service-grid,
  .blog-grid,
  .insights-grid,
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-card,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .banner-feature,
  .coverage-card,
  .company-grid {
    grid-template-columns: 1fr;
  }

  .page-hero .hero-split > .hero-actions {
    order: 1;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    min-width: unset;
  }

  .hero-panel {
    order: 2;
    text-align: center;
  }

  .hero-banner-frame {
    justify-self: start;
    max-width: 100%;
  }

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

  .problem-solution-grid {
    grid-template-columns: 1fr;
  }

  .problem-block {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

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

  .intro-partner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 820px) {
  /* ── Overflow verhindern ── */
  body, .page-main, .site-footer {
    max-width: 100vw;
    overflow-x: hidden;
  }

  /* ══ HEADER: Mobil – weiße Navigationsleiste ══ */
  .site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: #ffffff !important;
    border-bottom: 1px solid rgba(0,0,0,0.08) !important;
    box-shadow: 0 1px 6px rgba(0,0,0,0.07) !important;
    backdrop-filter: none !important;
    transition: background 0.25s ease;
    z-index: 1000;
  }
  .site-header.is-scrolled {
    background: #ffffff !important;
    border-bottom: 1px solid rgba(0,0,0,0.08) !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08) !important;
    backdrop-filter: none !important;
  }
  .header-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 54px;
    padding: 0;
    grid-template-columns: none;
    overflow: visible;
  }
  .header-brand-area {
    display: none;
  }

  /* Steuerleiste: Hamburger | CTA | DE/EN (Grid für perfekte Zentrierung) */
  .header-right {
    grid-column: auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
    padding: 0;
  }

  /* Hamburger = goldener Kreis, links */
  .menu-toggle {
    display: inline-flex !important;
    grid-column: 1;
    justify-self: start;
    width: 44px;
    height: 44px;
    border-radius: 50% !important;
    background: var(--gold) !important;
    border: none !important;
    flex-shrink: 0;
  }
  .menu-toggle span { background: #fff; }

  /* CTA: exakt mittig */
  .nav-cta {
    display: inline-flex !important;
    grid-column: 2;
    justify-self: center;
    font-size: 0.74rem;
    padding: 8px 14px;
    white-space: nowrap;
  }
  .header-cta { display: none !important; }

  /* Sprachumschalter: rechts */
  .lang-switcher {
    display: flex !important;
    grid-column: 3;
    justify-self: end;
    order: 0;
  }

  .hero-logo-mobile { display: none !important; }

  /* Nav Dropdown */
  .site-nav {
    position: fixed;
    top: 54px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 8px 16px 16px;
    background: rgba(14, 30, 52, 0.98);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    z-index: 999;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a {
    padding: 14px 16px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff !important;
    border-radius: var(--radius-sm);
    text-align: center;
  }
  .site-nav a:hover {
    background: rgba(255,255,255,0.08);
    color: var(--gold) !important;
  }

  /* ── Hero ── */
  .page-hero {
    padding: 16px 0 0;
  }

  .page-hero:not(.page-hero--light)::before {
    background:
      linear-gradient(180deg, rgba(7, 19, 33, 0.94) 0%, rgba(9, 31, 55, 0.88) 55%, rgba(9, 31, 55, 0.78) 100%),
      url("../Hintergrund jpg.png") center top / cover no-repeat;
  }

  .hero-inner {
    width: min(calc(100% - 24px), var(--site-width));
    min-height: clamp(340px, 60vw, 460px);
    align-items: center;
  }

  .page-hero--subpage .hero-inner {
    min-height: clamp(300px, 52vw, 400px);
  }

  .hero-content {
    width: 100%;
    padding: 32px 0 36px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: clamp(1.6rem, 6vw, 2.3rem);
  }

  .hero-content > p {
    font-size: 0.96rem;
  }

  .hero-content .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-top: 28px;
  }

  .hero-mark img {
    height: 50px;
  }

  .hero-eyebrow {
    justify-content: center;
  }

  /* ── Sections ── */
  .section {
    padding: clamp(28px, 4vw, 48px) 0;
  }

  .section-card {
    padding: clamp(20px, 4vw, 32px);
  }

  .section-header {
    text-align: center;
    margin-bottom: 22px;
  }

  .section-header .eyebrow {
    justify-content: center;
  }

  .section-header .eyebrow::before {
    display: none;
  }

  /* ── Grids → single column ── */
  .grid-2,
  .grid-3,
  .grid-4,
  .stats-grid,
  .features-grid,
  .service-grid,
  .team-grid,
  .values-grid,
  .faq-grid,
  .blog-grid,
  .contact-grid,
  .footer-grid,
  .regions-grid,
  .insights-grid,
  .form-grid,
  .why-grid,
  .philosophy-grid,
  .person-grid,
  .problem-solution-grid,
  .welcome-grid,
  .company-grid {
    grid-template-columns: 1fr;
  }

  .welcome-img-placeholder {
    min-height: 180px;
  }

  /* ── Challenge ── */
  .challenge-point {
    padding: 18px;
    gap: 14px;
  }

  /* ── Why cards ── */
  .why-card {
    display: grid;
    grid-template-columns: 42px 1fr;
    grid-template-rows: auto auto;
    column-gap: 14px;
    row-gap: 4px;
    align-items: start;
    padding: 18px;
  }

  .why-card .why-icon {
    grid-column: 1;
    grid-row: 1 / 3;
    align-self: start;
  }

  .why-card h3 {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 0;
    font-size: clamp(0.95rem, 3.5vw, 1.1rem);
  }

  .why-card > p {
    grid-column: 2;
    grid-row: 2;
    font-size: 0.92rem;
  }

  /* ── Region tiles ── */
  .region-tiles {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .region-tile {
    width: 100%;
    max-width: 320px;
    min-width: unset;
    padding: 22px 32px;
  }

  /* ── CTA card ── */
  .cta-card {
    padding: clamp(24px, 5vw, 36px);
    text-align: center;
  }

  .cta-card .eyebrow {
    justify-content: center;
  }

  .cta-card .eyebrow::before {
    display: none;
  }

  /* ── Buttons ── */
  .btn {
    width: 100%;
    justify-content: center;
  }

  .form-submit,
  .hero-actions,
  .button-row {
    flex-direction: column;
    align-items: stretch;
  }

  /* ── Stats bar ── */
  .stats-bar {
    grid-template-columns: 1fr;
  }

  .stats-bar-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .stats-bar-item:last-child {
    border-bottom: none;
  }

  /* ── Problem/Solution ── */
  .problem-block {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  /* ── Footer ── */
  .footer-shell {
    padding: 28px 20px;
    border-radius: 16px;
  }

  .footer-grid {
    gap: 28px;
  }

  .footer-column {
    gap: 10px;
  }
}

@media (max-width: 480px) {
  /* ── Header ── */
  .header-logo-img {
    height: 40px;
    margin: 0 !important;
  }

  /* ── Hero ── */
  .hero-content {
    padding: 20px 0 28px;
  }

  .hero-content h1 {
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

  /* ── Cards & spacing ── */
  .section-card,
  .metric-card,
  .feature-card,
  .service-card,
  .value-card,
  .faq-card,
  .blog-card,
  .contact-card,
  .list-panel,
  .cta-card,
  .legal-card,
  .insight-card {
    padding: 18px;
    border-radius: var(--radius-md);
  }

  .challenge-point {
    padding: 14px;
    gap: 12px;
    grid-template-columns: 40px 1fr;
  }

  .challenge-num {
    width: 36px;
    height: 36px;
    font-size: 0.78rem;
  }

  .why-card {
    padding: 16px;
  }

  .region-tile {
    padding: 18px 24px;
  }

  .intro-columns {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  h2 {
    font-size: clamp(1.55rem, 6vw, 2rem);
  }

  h3 {
    font-size: clamp(1.05rem, 4vw, 1.3rem);
  }

  .section {
    padding: 24px 0;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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

/* ──────────────── SECTION DIVIDER ──────────────── */
.section-divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 0 auto;
  width: min(calc(100% - 32px), var(--site-width));
}

/* ──────────────── CHALLENGE SECTION ──────────────── */
.challenge-points {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 8px;
}

.challenge-point {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px;
  border-radius: var(--radius-sm);
  background: #f8f9fb;
  border: 1px solid var(--line);
}

.challenge-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--brand-soft);
  color: var(--brand-strong);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.challenge-point h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--text);
}

.challenge-point p {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.65;
}

.challenge-bridge {
  margin-top: 28px;
  padding: 18px 24px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #c2d3e4 0%, #deeaf7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.challenge-bridge span {
  color: #1a3552;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: 'Merriweather', Georgia, serif;
  letter-spacing: -0.01em;
}

/* ──────────────── CHALLENGE ITEM (Problem + Antwort) ──────────────── */
.challenge-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px;
}

.challenge-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.challenge-problem {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
  padding: 28px 24px;
  background: var(--surface);
  border-right: 1px solid var(--line);
}

.challenge-problem-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.challenge-problem h3 {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  margin-bottom: 0;
  color: var(--text);
}

.challenge-problem p {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.65;
}

.challenge-solution {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 24px;
  background: var(--brand-soft);
}

.situation-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-soft);
}

.solution-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-strong);
}

.challenge-solution p {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.65;
  color: var(--text);
}

@media (max-width: 820px) {
  .challenge-item {
    grid-template-columns: 1fr;
  }

  .challenge-problem {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
}

/* ──────────────── MARKET SIGNALS ──────────────── */
.market-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 4px 0 28px;
}

.signal-tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 15px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-strong);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1px solid rgba(53, 104, 176, 0.2);
}

/* ──────────────── MARKET BRIDGE ──────────────── */
.market-bridge {
  margin: 0 0 28px;
  padding: 18px 24px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #c2d3e4 0%, #deeaf7 100%);
}

.market-bridge p {
  color: #1a3552;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: 'Merriweather', Georgia, serif;
  letter-spacing: -0.01em;
  margin: 0;
  max-width: none;
}

/* ──────────────── MARKET GRID ──────────────── */
.market-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.market-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 26px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--brand);
  box-shadow: var(--shadow-sm);
}

.market-card h3 {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  margin-bottom: 0;
}

.market-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #cddbe8;
  color: #3568b0;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  border: 1px solid rgba(53, 104, 176, 0.15);
  flex-shrink: 0;
}

@media (max-width: 820px) {
  .market-grid {
    grid-template-columns: 1fr;
  }

  .market-card {
    display: grid;
    grid-template-columns: 42px 1fr;
    grid-template-rows: auto auto;
    column-gap: 14px;
    row-gap: 4px;
    align-items: start;
    padding: 18px;
  }

  .market-card .market-icon {
    grid-column: 1;
    grid-row: 1 / 3;
    align-self: start;
  }

  .market-card h3 {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 0;
    font-size: clamp(0.95rem, 3.5vw, 1.1rem);
  }

  .market-card > p {
    grid-column: 2;
    grid-row: 2;
    font-size: 0.92rem;
  }
}

@media (max-width: 480px) {
  .market-card {
    padding: 16px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   ONE-PAGER REDESIGN — immerce.de-inspiriertes Design
════════════════════════════════════════════════════════════════ */

:root {
  --dark:           #c2d3e4;
  --dark-2:         #3568b0;
  --dark-card:      #d8eaf5;
  --gold:           #b8893a;
  --gold-light:     #c99848;
  --gold-soft:      #fdf6e8;
  --on-dark:        #1a3552;
  --on-dark-muted:  rgba(26, 53, 82, 0.65);
  --border-dark:    rgba(26, 53, 82, 0.15);
  --shadow-dark:    0 8px 40px rgba(0, 0, 0, 0.12);
}

/* ── Nav CTA ── */
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: var(--gold);
  color: #fff !important;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--transition);
}
.nav-cta:hover { background: var(--gold-light); color: #fff !important; }

/* ══════════════ HERO SPLIT ══════════════ */
.hero-split {
  display: block;
  position: relative;
  overflow: hidden;
  max-width: 2560px; /* hero-banner-wide-2560.jpg ist nativ 2560px – volle Breite ohne Hochskalieren */
  margin: 0 auto;
  background: url("../hero-banner-wide-2560.jpg") center top / 100% auto no-repeat;
  min-height: calc(min(100vw, 2560px) * 680 / 2200);
}
.hero-split::before {
  display: none;
}
.hero-split-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 5%;
}
.hero-text-col {
  margin: 0;
  max-width: min(620px, 35%);
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.2vw, 20px);
  position: relative;
  z-index: 2;
}

/* ── Hero Founders Photo (nur Mobile sichtbar) ── */
.hero-founders {
  display: none;
}
.hero-founders img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: clamp(0.55rem, 0.7vw, 0.85rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid #3568b0;
  color: #3568b0;
  border-radius: 999px;
  padding: clamp(4px, 0.4vw, 7px) clamp(10px, 1vw, 18px);
}
.hero-split-h1 {
  font-family: 'Merriweather', Georgia, serif;
  font-size: clamp(1.1rem, 2vw, 2.8rem);
  font-weight: 700;
  font-style: italic;
  color: #1a3552;
  line-height: 1.22;
  margin: 0;
}
.hero-split-h1 strong { font-style: normal; color: var(--gold); }
.hero-lead {
  color: #3a5070;
  font-size: clamp(0.75rem, 0.8vw, 1.05rem);
  line-height: 1.55;
  margin: 0;
}
.hero-checks {
  display: flex;
  flex-direction: column;
  gap: clamp(4px, 0.5vw, 10px);
  list-style: none;
  padding: 0;
  margin: 0;
}
.hero-checks li {
  display: flex;
  align-items: flex-start;
  gap: clamp(6px, 0.6vw, 12px);
  font-size: clamp(0.7rem, 0.75vw, 0.97rem);
  color: #3a5070;
  line-height: 1.45;
}
.hero-checks li::before {
  content: "\2713";
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.hero-split-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}
.btn-dark-primary {
  display: inline-flex;
  align-items: center;
  padding: clamp(8px, 0.8vw, 14px) clamp(16px, 1.5vw, 28px);
  background: var(--gold);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: clamp(0.75rem, 0.78vw, 0.97rem);
  text-decoration: none;
  transition: background var(--transition);
}
.btn-dark-primary:hover { background: var(--gold-light); color: #fff; }
.btn-dark-secondary {
  display: inline-flex;
  align-items: center;
  padding: clamp(8px, 0.8vw, 14px) clamp(16px, 1.5vw, 28px);
  background: transparent;
  color: #1a3552;
  border: 1.5px solid rgba(26, 53, 82, 0.35);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: clamp(0.75rem, 0.78vw, 0.97rem);
  text-decoration: none;
  transition: border-color var(--transition), color var(--transition);
}
.btn-dark-secondary:hover { border-color: var(--gold); color: var(--gold); }
.hero-img-col {
  position: relative;
  align-self: stretch;
  overflow: hidden;
}
.hero-photo-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-photo-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  -webkit-mask-image:
    linear-gradient(to right,  transparent 0%,   black 35%),
    linear-gradient(to left,   transparent 0%,   black 6%),
    linear-gradient(to top,    transparent 0%,   black 10%),
    linear-gradient(to bottom, transparent 0%,   black 6%);
  mask-image:
    linear-gradient(to right,  transparent 0%,   black 35%),
    linear-gradient(to left,   transparent 0%,   black 6%),
    linear-gradient(to top,    transparent 0%,   black 10%),
    linear-gradient(to bottom, transparent 0%,   black 6%);
  -webkit-mask-composite: destination-in, destination-in, destination-in;
  mask-composite: intersect, intersect, intersect;
}

/* ══════════════ SECTION UTILS ══════════════ */
.op-section { padding: clamp(64px, 8vw, 96px) 0; }
.op-section-soft { background: #f5f7fa; }
.op-section-dark { background: var(--dark); }
.op-inner {
  width: min(calc(100% - 40px), var(--site-width));
  margin: 0 auto;
}
.op-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(40px, 5vw, 56px);
}
.op-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.op-heading h2 { font-size: clamp(1.9rem, 3vw, 2.8rem); margin-bottom: 14px; }
.op-heading p  { font-size: 1.02rem; line-height: 1.72; color: var(--text-soft); margin: 0; }
.op-heading-dark h2 { color: var(--on-dark); }
.op-heading-dark p  { color: var(--on-dark-muted); }

/* ══════════════ SCROLL-MARGIN (sticky / fixed Header) ══════════════ */
section[id],
#kontaktformular { scroll-margin-top: 80px; }
@media (max-width: 820px) {
  section[id],
  #kontaktformular { scroll-margin-top: 62px; }
}

/* Tatsächliche Header-Höhe: Logo 84px + Padding (Desktop) bzw. 56px + Padding (mittlere Breiten) */
@media (min-width: 1181px) {
  body { padding-top: 105px; }
  section[id],
  #kontaktformular { scroll-margin-top: 118px; }
}
@media (min-width: 821px) and (max-width: 1180px) {
  body { padding-top: 81px; }
  section[id],
  #kontaktformular { scroll-margin-top: 94px; }
}

/* ══════════════ PAIN CARDS ══════════════ */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.pain-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--gold);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pain-num {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  font-family: 'Merriweather', Georgia, serif;
}
.pain-card h3 { font-size: 1.05rem; margin: 0; color: var(--text); }
.pain-card p  { font-size: 0.92rem; line-height: 1.68; color: var(--text-soft); }

/* ══════════════ SOLUTION DARK ══════════════ */
.solution-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.solution-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: sticky;
  top: calc(var(--header-height) + 24px);
}
.solution-h2 {
  font-family: 'Merriweather', Georgia, serif;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-style: italic;
  color: var(--on-dark);
  line-height: 1.28;
  margin: 0;
}
.solution-h2 strong { font-style: normal; color: var(--gold); }
.solution-p { color: var(--on-dark-muted); font-size: 1rem; line-height: 1.72; margin: 0; }
.solution-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  margin-top: 4px;
}
.solution-link::after { content: "\2192"; transition: transform var(--transition); }
.solution-link:hover { color: var(--gold-light); }
.solution-link:hover::after { transform: translateX(4px); }
.sol-features { display: flex; flex-direction: column; }
.sol-feat {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-dark);
}
.sol-feat:first-child { border-top: 1px solid var(--border-dark); }
.sol-num {
  font-size: 0.75rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.04em;
  padding-top: 3px;
}
.sol-content h3 { font-size: 1rem; color: var(--on-dark); margin-bottom: 4px; font-family: 'Inter', sans-serif; }
.sol-content p  { font-size: 0.88rem; color: var(--on-dark-muted); line-height: 1.58; margin: 0; }
.sol-bonus {
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: rgba(200, 151, 58, 0.1);
  border: 1px solid rgba(200, 151, 58, 0.22);
}
.sol-bonus-label { font-size: 0.78rem; font-weight: 800; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 6px; }
.sol-bonus p { font-size: 0.9rem; color: var(--on-dark-muted); margin: 0; }

/* ══════════════ SERVICE OVERVIEW ══════════════ */
.svc-overview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-card-op {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 3px solid var(--gold);
  transition: box-shadow var(--transition), transform var(--transition);
}
.svc-card-op:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.svc-idx { font-size: 0.7rem; font-weight: 800; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; }
.svc-card-op h3 { font-size: 1.05rem; margin: 0; color: var(--text); }
.svc-card-op p  { font-size: 0.92rem; line-height: 1.68; color: var(--text-soft); flex: 1; }
.svc-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
}
.svc-card-link::after { content: "\2192"; transition: transform var(--transition); }
.svc-card-link:hover { color: var(--gold-light); }
.svc-card-link:hover::after { transform: translateX(4px); }

/* ══════════════ WHY BECKHAUSEN ══════════════ */
.why-op-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-op-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.why-op-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold);
  font-family: 'Merriweather', Georgia, serif;
  line-height: 1;
}
.why-op-card h3 { font-size: 1.05rem; margin: 0; }
.why-op-card p  { font-size: 0.9rem; line-height: 1.64; color: var(--text-soft); }

/* ══════════════ REGIONS DARK ══════════════ */
.region-tiles-op {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}
.region-tile-op {
  background: var(--dark-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  min-width: 260px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: border-color var(--transition), background var(--transition);
}
.region-tile-op:hover { background: #3568b0; border-color: var(--gold); }
.region-tile-op:hover .region-tile-label,
.region-tile-op:hover .region-tile-name,
.region-tile-op:hover .region-tile-desc { color: #ffffff; }
.region-abbr {
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.04em;
  line-height: 1;
  font-family: 'Merriweather', Georgia, serif;
}
.region-tile-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
}
.region-tile-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--on-dark);
}
.region-tile-desc {
  font-size: 0.92rem;
  color: var(--on-dark-muted);
  margin: 4px 0 0;
  line-height: 1.5;
}
.region-cta {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

/* ── Region Split (Karte + Text nebeneinander) ── */
.region-split {
  display: flex;
  gap: 64px;
  align-items: center;
  margin-top: 48px;
  width: 100%;
}
.cork-map-frame {
  flex-shrink: 0;
  width: 400px;
  background: transparent;
  border-radius: 0;
  overflow: visible;
}
.de-map {
  width: 100%;
  height: auto;
  display: block;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 12px 32px rgba(26,53,82,0.22));
}
.de-state { transition: opacity 0.18s; }
.de-state--active { filter: drop-shadow(0 2px 6px rgba(0,0,0,0.18)); }

/* Textpanel rechts */
.region-text-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.region-entry {
  display: flex;
  gap: 16px;
  align-items: center;
}
.region-entry-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(180,140,60,0.2);
}
.region-entry strong {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--on-dark);
  letter-spacing: 0.01em;
}
.region-entry p {
  font-size: 0.88rem;
  color: var(--on-dark-muted);
  line-height: 1.7;
  margin: 0;
}
.region-note {
  font-size: 0.85rem;
  color: var(--on-dark-muted);
  line-height: 1.68;
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid var(--border-dark);
}
.region-text-panel .btn-dark-primary {
  align-self: flex-start;
}
.region-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.region-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 16px;
  border-left: 2px solid var(--gold);
}
.region-stat-head {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--on-dark);
  line-height: 1.25;
}
.region-stat-sub {
  font-size: 0.84rem;
  color: var(--on-dark-muted);
  line-height: 1.5;
}
.region-checks {
  list-style: none;
  padding: 26px 0 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-top: 1px solid var(--border-dark);
}
.region-checks li {
  position: relative;
  padding-left: 28px;
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--on-dark-muted);
}
.region-checks li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 900;
  font-size: 1.05rem;
}
.region-checks strong {
  color: var(--on-dark);
  font-weight: 700;
}
@media (max-width: 560px) {
  .region-stats { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .region-split {
    flex-direction: column;
    gap: 36px;
    align-items: center;
  }
  .cork-map-frame {
    width: 100%;
    max-width: 380px;
  }
  .region-text-panel { width: 100%; }
  .region-note { text-align: center; }
  .region-text-panel .btn-dark-primary { align-self: center; }
}

/* ══════════════ ABOUT SPLIT ══════════════ */
.about-op-split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: start;
}
.about-op-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.about-op-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: var(--radius-lg);
}
.about-op-placeholder {
  min-height: 400px;
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #dce7f0, #bccede);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.about-op-content { display: flex; flex-direction: column; gap: 16px; padding-top: 8px; }
.about-op-content h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); margin: 0; }
.about-op-content p  { font-size: 0.97rem; line-height: 1.72; color: var(--text-soft); }
.about-checklist { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.about-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.97rem;
  color: var(--text-soft);
}
.about-checklist li::before { content: "\2713"; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ══════════════ PROCESS STEPS ══════════════ */
.process-op {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
}
.process-op::before {
  content: "";
  position: absolute;
  top: 27px; left: 12%; right: 12%;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-light), var(--gold));
  opacity: 0.25;
  pointer-events: none;
}
.proc-step { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px; }
.proc-num {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-weight: 900;
  font-size: 1.05rem;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1; flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(200,151,58,0.4);
}
.proc-step h3 { font-size: 1rem; margin: 0; }
.proc-step p  { font-size: 0.9rem; line-height: 1.62; color: var(--text-soft); }
.op-section-dark .proc-step h3 { color: var(--on-dark); }
.op-section-dark .proc-step p  { color: var(--on-dark-muted); }

/* ══════════════ CONTACT CTA DARK ══════════════ */
.contact-cta-op { background: var(--dark); text-align: center; }
.contact-cta-op-inner {
  width: min(calc(100% - 40px), var(--content-width));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 110px) 0;
  display: flex; flex-direction: column;
  align-items: center; gap: 22px;
}
.contact-cta-op h2 { color: var(--on-dark); font-size: clamp(1.9rem, 3.5vw, 2.8rem); line-height: 1.2; margin: 0; }
.contact-cta-op-inner > p { color: var(--on-dark-muted); font-size: 1.05rem; max-width: 520px; text-align: center; margin: 0; }
.contact-cta-btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 8px; }

/* ══════════════ DARK FOOTER ══════════════ */
.footer-dark { background: #c2d3e4; }
.footer-dark .footer-shell { background: transparent; box-shadow: none; border: none; }
.footer-dark .footer-column h4 { color: #1a3552; }
.footer-dark .footer-column a,
.footer-dark .footer-column p  { color: rgba(26, 53, 82, 0.65); }
.footer-dark .footer-column a:hover { color: var(--gold); }
.footer-dark .brand-name    { color: #1a3552; }
.footer-dark .brand-subline { color: rgba(26, 53, 82, 0.5); }
.footer-dark .footer-bottom {
  border-top-color: rgba(26, 53, 82, 0.12);
  color: rgba(26, 53, 82, 0.45);
}
.footer-dark p[data-i18n="footer.desc"] { color: rgba(26, 53, 82, 0.65); }

/* ══════════════ RESPONSIVE – TABLET / MOBILE ONE-PAGER ══════════════ */
@media (max-width: 960px) {

  /* Hero-Buttons untereinander (Mobile ≤820) */
  .hero-split-btns {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-dark-primary, .btn-dark-secondary {
    justify-content: center;
    text-align: center;
  }

  /* Sonstige Sektionen */
  .solution-split   { grid-template-columns: 1fr; }
  .solution-text    { position: static; }
  .svc-overview     { grid-template-columns: 1fr; }
  .why-op-grid      { grid-template-columns: repeat(2, 1fr); }
  .process-op       { grid-template-columns: repeat(2, 1fr); }
  .process-op::before { display: none; }
  .about-op-split   { grid-template-columns: 1fr; }
  .about-op-img     { display: block !important; max-height: 320px; }
  .mmv-grid         { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════ RESPONSIVE – KLEINES MOBILE ══════════════ */
@media (max-width: 480px) {
  .hero-img-col        { height: 110vw; max-height: 420px; }
  .hero-split-h1       { font-size: clamp(1.5rem, 5vw, 1.9rem); }
  .hero-badge          { font-size: 0.72rem; padding: 6px 14px; }
  .pain-grid           { grid-template-columns: 1fr; }
  .why-op-grid         { grid-template-columns: 1fr; }
  .process-op          { grid-template-columns: 1fr; }
  .mmv-grid            { grid-template-columns: 1fr; }
  .pkg-cards--two      { grid-template-columns: 1fr; }
  .region-tiles-op     { flex-direction: column; }
  .about-pillars-grid  { grid-template-columns: 1fr; }
  .cork-region-cards   { grid-template-columns: 1fr; }
}

/* ══════════════ HERO TEXT VERTICAL PADDING ══════════════ */
.hero-text-col { padding-bottom: 0; }

/* ══════════════ HERO RESPONSIVE – Foto-Layout für Tablet & Mobile ══════════════ */
@media (max-width: 1199px) {
  .hero-split {
    background: #ffffff !important;
    background-image: none !important;
    min-height: 0;
  }
  .hero-split-inner {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
  }
  .hero-founders {
    display: block !important;
    position: static;
    width: 100%;
    overflow: hidden;
    order: -1;
    margin: 0;
  }
  .hero-founders img {
    width: 100%;
    height: auto;
    max-height: clamp(280px, 45vw, 500px);
    object-fit: cover;
    object-position: center top;
    display: block;
  }
  .hero-text-col {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    padding: 32px 24px 48px;
    gap: 18px;
    text-align: left;
    background: linear-gradient(175deg, #edf2fa 0%, #dce7f5 45%, #e8eef8 100%);
  }
  .hero-split-btns {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
  .btn-dark-primary, .btn-dark-secondary {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-split-btns {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ══════════════ MEHRMARKENVERTRIEB GRID ══════════════ */
/* Blauen Bereich (Ausgelagerte Vertriebsbetreuung) kompakter */
#mehrmarkenvertrieb {
  padding-top: clamp(40px, 5vw, 60px);
  padding-bottom: clamp(40px, 5vw, 60px);
}
#mehrmarkenvertrieb .op-heading {
  margin-bottom: clamp(28px, 3.5vw, 38px);
}

.mmv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 32px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.mmv-item {
  padding: 34px 30px;
  border-right: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background var(--transition);
}
.mmv-item:hover { background: rgba(255,255,255,0.04); }
.mmv-num {
  font-size: 0.78rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.mmv-item h3 {
  font-size: 1.2rem;
  color: var(--on-dark);
  margin: 0;
  font-weight: 700;
}
.mmv-item p {
  font-size: 1rem;
  color: var(--on-dark-muted);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 960px) {
  .mmv-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .mmv-grid { grid-template-columns: 1fr; }
}

/* ══════════════ PACKAGE CARDS – BULLET STYLE ══════════════ */
.pkg-cards {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 20px;
  align-items: start;
}
.pkg-cards--two {
  grid-template-columns: 1fr 1fr;
  max-width: 860px;
  margin: 0 auto;
}
.pkg-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px 26px 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.pkg-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.pkg-card--main {
  border-top: 3px solid var(--gold);
  box-shadow: 0 6px 32px rgba(0,0,0,0.1);
}
.pkg-card--sub  { background: #f7f9fc; border-top: 3px solid var(--gold); box-shadow: 0 6px 32px rgba(0,0,0,0.1); }
.pkg-card--add  { background: #f7f9fc; border-top: 3px solid var(--gold); box-shadow: 0 6px 32px rgba(0,0,0,0.1); }
.pkg-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #fff;
  background: var(--gold);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 4px;
}
.pkg-card h3 { font-size: 1.05rem; margin: 0; color: var(--text); line-height: 1.25; }
.pkg-card > p { font-size: 0.9rem; color: var(--text-soft); line-height: 1.65; margin: 0; }
.pkg-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.pkg-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.45;
}
.pkg-features li::before {
  content: "\2713";
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.82rem;
  margin-top: 2px;
}
.pkg-cta-row {
  margin-top: auto;
  padding-top: 12px;
}
@media (max-width: 860px) {
  .pkg-cards,
  .pkg-cards--two { grid-template-columns: 1fr; }
}

/* ══════════════ LEISTUNGEN – ADDON BLOCK ══════════════ */
.leist-addon-block {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}
.pkg-features--addon {
  list-style: none;
  padding: 0;
  border-top: none;
  counter-reset: addon;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  margin: 2.5rem auto 0;
  text-align: left;
}
.pkg-features--addon li {
  flex: 1 1 280px;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 28px 26px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.pkg-features--addon li:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.pkg-features--addon li::before {
  counter-increment: addon;
  content: counter(addon, decimal-leading-zero);
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.pkg-features--addon li strong {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand-strong);
  line-height: 1.32;
}
.pkg-features--addon li span {
  font-size: 0.96rem;
  color: var(--text-soft);
  line-height: 1.55;
}
.leist-addon-cta {
  text-align: center;
  margin-top: 40px;
}

/* ══════════════ REGIONS – GROSSRAUM (overrides removed, see above) ══════════════ */

/* ══════════════ CONTACT SECTION (on index) ══════════════ */
.contact-op {
  background: var(--surface);
}
.contact-op-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-self: center;
}
.contact-info-col h3 {
  font-size: 1.15rem;
  margin: 0 0 4px;
}
.contact-info-col p {
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.65;
  margin: 0;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.contact-detail-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-detail-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-detail-row a,
.contact-detail-row p {
  font-size: 0.95rem;
  color: var(--text-soft);
  margin: 0;
}
.contact-detail-row a:hover { color: var(--gold); }
.contact-persons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-person {
  background: #f5f7fa;
  border-radius: var(--radius-md);
  padding: 14px 16px;
}
.contact-person strong { font-size: 0.97rem; color: var(--text); display: block; margin-bottom: 2px; }
.contact-person span { font-size: 0.82rem; color: var(--text-soft); }
.contact-form-col .section-card {
  padding: clamp(24px, 4vw, 40px);
  background: #f7f9fc;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.contact-form-col .form-grid { gap: 14px; }
@media (max-width: 820px) {
  .contact-op-grid { grid-template-columns: 1fr; }
}

/* ══════════════ GENERAL WHITESPACE IMPROVEMENTS ══════════════ */
.op-section { padding: clamp(72px, 9vw, 108px) 0; }
.op-section-soft { background: #f5f7fa; }

/* Softer gold on nav active */
.site-nav a:hover,
.site-nav a.active {
  background: rgba(184,137,58,0.1);
  color: #8a6220;
}

/* Matte gold buttons */
.nav-cta { background: var(--gold); letter-spacing: 0.02em; }
.nav-cta:hover { background: var(--gold-light); }
.btn-dark-primary  { background: var(--gold); }
.btn-dark-primary:hover { background: var(--gold-light); }

/* Lang-switcher active gold */
.lang-btn.is-active {
  background: var(--gold);
  box-shadow: 0 2px 8px rgba(184,137,58,0.28);
}

/* ══════════════ ABOUT REDESIGN (index) ══════════════ */
.about-top-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-template-rows: auto auto;
  gap: clamp(24px, 4vw, 44px);
  align-items: start;
  margin-bottom: clamp(40px, 6vw, 64px);
}
.about-intro-col {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-intro-h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
  line-height: 1.22;
  margin: 0;
  color: var(--text);
}
.about-intro-h2 strong { font-weight: 900; }
.about-intro-col > p {
  font-size: 0.95rem;
  line-height: 1.72;
  color: var(--text-soft);
  margin: 0;
}
.about-center-photo {
  grid-column: 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.about-center-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.about-creds-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-creds-h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}
.about-creds-intro {
  font-size: 0.9rem;
  color: var(--text-soft);
  margin: 0;
}
.about-creds-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.about-creds-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.5;
}
.about-creds-list li::before {
  content: "●";
  color: var(--gold);
  font-size: 0.5rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 5px;
}
.about-pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(20px, 3vw, 36px);
  border-top: 1px solid var(--line);
  padding-top: clamp(32px, 5vw, 48px);
}
.about-pillar--creds .about-creds-h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}
.about-pillar {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-pillar h4 {
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  color: var(--text);
}
.about-pillar h4 strong { font-weight: 900; }
.about-pillar > p {
  font-size: 0.88rem;
  line-height: 1.68;
  color: var(--text-soft);
  margin: 0;
}
.about-pillar-italic {
  font-size: 0.84rem !important;
  color: var(--text-soft);
  font-style: italic;
  margin-top: 4px !important;
}
.about-link-row {
  margin-top: 32px;
  text-align: center;
}

@media (max-width: 860px) {
  .about-top-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 28px;
    margin-bottom: 32px;
  }
  .about-intro-col    { grid-column: 1; grid-row: auto; }
  .about-center-photo { grid-column: 1; grid-row: auto; aspect-ratio: 4 / 3; max-height: 360px; }
  .about-pillars-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding-top: 32px;
  }
}
@media (max-width: 480px) {
  .about-pillars-grid { grid-template-columns: 1fr; }
}

/* Hero: gleiches Banner auf allen Bildschirmgrößen (kein Layout-Wechsel) */

/* ══════════════════ COOKIE-CONSENT (Banner + Dialog) ══════════════════ */
.cc-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9998;
  display: none;
  padding: 14px;
}
.cc-banner.is-open { display: block; }
.cc-banner-inner {
  width: min(calc(100% - 8px), 1060px);
  margin: 0 auto;
  background: var(--surface, #fff);
  border: 1px solid var(--line, rgba(0,0,0,0.1));
  border-radius: var(--radius-lg, 16px);
  box-shadow: 0 12px 44px rgba(0, 0, 0, 0.18);
  padding: 20px clamp(18px, 3vw, 28px);
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.cc-banner-text {
  flex: 1 1 340px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-soft, #555);
}
.cc-banner-text a { color: var(--gold, #b8893a); text-decoration: underline; }
.cc-banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.cc-btn {
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 11px 20px;
  border-radius: var(--radius-sm, 8px);
  border: 1px solid transparent;
  cursor: pointer;
  line-height: 1.1;
  white-space: nowrap;
  transition: filter 0.15s ease, background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.cc-btn-primary   { background: var(--gold, #b8893a); color: #fff; }
.cc-btn-primary:hover   { filter: brightness(0.94); }
.cc-btn-secondary { background: var(--brand-strong, #1e3a5c); color: #fff; }
.cc-btn-secondary:hover { filter: brightness(1.12); }
.cc-btn-ghost     { background: transparent; color: var(--text, #111); border-color: var(--line, rgba(0,0,0,0.18)); }
.cc-btn-ghost:hover     { background: rgba(0, 0, 0, 0.04); }
.cc-btn:focus-visible { outline: 2px solid var(--brand, #3568b0); outline-offset: 2px; }

/* Dialog */
.cc-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.cc-modal.is-open { display: flex; }
.cc-modal-overlay { position: fixed; inset: 0; background: rgba(17, 27, 41, 0.55); }
.cc-modal-dialog {
  position: relative;
  width: min(100%, 540px);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: var(--surface, #fff);
  border-radius: var(--radius-lg, 16px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  padding: clamp(22px, 4vw, 32px);
}
.cc-modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.cc-modal-title { margin: 0; font-size: 1.25rem; color: var(--text, #111); }
.cc-modal-close {
  background: none;
  border: 0;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text-soft, #555);
  padding: 0 2px;
}
.cc-modal-intro { margin: 8px 0 4px; font-size: 0.9rem; line-height: 1.55; color: var(--text-soft, #555); }
.cc-option { padding: 16px 0; border-top: 1px solid var(--line, rgba(0,0,0,0.1)); }
.cc-option-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}
.cc-option-title { font-size: 0.98rem; color: var(--text, #111); }
.cc-option-desc { margin: 0; font-size: 0.85rem; line-height: 1.55; color: var(--text-soft, #555); }
.cc-badge {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold, #b8893a);
  white-space: nowrap;
}
.cc-modal-foot { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.cc-modal-foot .cc-btn { flex: 1 1 auto; text-align: center; }

/* Toggle-Switch */
.cc-switch { position: relative; display: inline-block; width: 46px; height: 26px; flex-shrink: 0; }
.cc-switch input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.cc-slider { position: absolute; inset: 0; background: #c7ced6; border-radius: 999px; transition: background-color 0.2s ease; pointer-events: none; }
.cc-slider::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease;
}
.cc-switch input:checked + .cc-slider { background: var(--gold, #b8893a); }
.cc-switch input:checked + .cc-slider::before { transform: translateX(20px); }
.cc-switch input:focus-visible + .cc-slider { outline: 2px solid var(--brand, #3568b0); outline-offset: 2px; }

body.cc-noscroll { overflow: hidden; }

@media (max-width: 640px) {
  .cc-banner-inner { flex-direction: column; align-items: stretch; gap: 14px; }
  .cc-banner-actions { flex-direction: column; }
  .cc-banner-actions .cc-btn { width: 100%; text-align: center; }
}
