/* ==========================================================================
   Zahnpflegehelden Theme – Main Stylesheet
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand — Farbwelt laut PDF */
  --teal: #058c95;
  --teal-deep: #034048;
  --teal-soft: #E5F2F3;
  --teal-mid: #4FA9AE;

  --cream: #F8F3E8;
  --mist: #EEF3F5;
  --gold: #D4A84B;
  --gold-soft: #F5E9C8;

  --ink: #0A1F2C;
  --ink-soft: #3D5260;
  --ink-mute: #6D8090;
  --line: #D9E2E6;
  --paper: #FDFCF9;

  /* Type */
  --ff-display: "Poppins", serif;
  --ff-body: "Poppins", system-ui, sans-serif;
  --ff-brand: "Poppins", sans-serif;

  /* Motion */
  --ease-out: cubic-bezier(.2,.7,.2,1);
}

/* ---------- Reset & Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

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

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-display);
  font-weight: 800;
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 0;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0 0 0.5em;
  color: var(--ink);
}
p { margin: 0 0 1em; }

.eyebrow {
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--teal);
  display: inline-block;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .3s var(--ease-out);
  white-space: nowrap;
}
.btn-primary { background: var(--teal); color: white; }
.btn-primary:hover {
  background: var(--teal-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -10px rgba(5, 140, 149, 0.5);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}
.btn svg { width: 16px; height: 16px; transition: transform .3s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }

/* ---------- Top Bar ---------- */
.topbar {
  background: var(--teal-deep);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 500;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}
.topbar a { transition: color .2s; }
.topbar a:hover { color: white; }
.topbar-left { display: flex; gap: 24px; }
.topbar-left span { display: inline-flex; align-items: center; gap: 8px; }
.topbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-weight: 600;
}
.topbar-cta div svg {
  width: 23px;
}
@media (max-width: 760px) {
  .topbar-left { display: none; }
  .topbar-inner { justify-content: center; }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 252, 249, 0.88);
  backdrop-filter: saturate(1.1) blur(14px);
  -webkit-backdrop-filter: saturate(1.1) blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 18px 0;
}
.site-logo img,
.site-logo svg { height: 46px; width: auto; display: block; }
.main-nav {
  display: flex;
  gap: 26px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  list-style: none;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
.main-nav a {
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.main-nav a:hover,
.main-nav .current-menu-item a { color: var(--teal); }
.main-nav a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--teal);
  transition: width .3s var(--ease-out);
}
.main-nav a:hover::after,
.main-nav .current-menu-item a::after { width: 100%; }
.header-cta { display: flex; align-items: center; gap: 14px; }

.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  color: var(--ink);
}
.mobile-nav-toggle svg { width: 22px; height: 22px; display: block; }

@media (max-width: 1100px) {
  .main-nav { display: none; }
  .mobile-nav-toggle { display: inline-flex; }
  .main-nav.is-open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: white;
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid var(--line);
    gap: 16px;
    box-shadow: 0 20px 40px -20px rgba(10,31,44,0.15);
  }
}
@media (max-width: 860px) {
  .header-cta .btn-ghost { display: none; }
}
@media (max-width: 580px) {
  .site-logo img { height: 38px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 800px 500px at 85% -10%, rgba(5,140,149,0.08), transparent 60%),
    radial-gradient(ellipse 600px 400px at 10% 110%, rgba(212,168,75,0.06), transparent 60%),
    var(--paper);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}
.hero-title {
  font-size: clamp(42px, 6vw, 82px);
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 1;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  color: var(--teal);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  white-space: nowrap;
}
.hero-title .accent-mark {
  display: inline-block;
  position: relative;
  white-space: nowrap;
}
.hero-title .accent-mark::after {
  content: "";
  position: absolute;
  left: -4%;
  bottom: 4%;
  width: 108%;
  height: 14%;
  background: var(--gold);
  opacity: 0.28;
  z-index: -1;
  border-radius: 4px;
}
.hero-sub {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0 0 36px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero-stat .num {
  font-family: var(--ff-display);
  font-size: 36px;
  font-weight: 500;
  color: var(--teal);
  font-variation-settings: "opsz" 144, "SOFT" 40, "WONK" 1;
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat .label {
  font-size: 13px;
  color: var(--ink-mute);
  line-height: 1.4;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  isolation: isolate;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(3, 64, 72, 0.25));
  pointer-events: none;
}
.floating-card {
  position: absolute;
  bottom: 6px;
  left: -24px;
  background: white;
  padding: 18px 22px;
  border-radius: 16px;
  box-shadow: 0 20px 50px -15px rgba(10, 31, 44, 0.2);
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 280px;
  border: 1px solid var(--line);
  z-index: 2;
}
.floating-card .badge {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--teal-soft);
  color: var(--teal);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.floating-card .badge svg { width: 22px; height: 22px; }
.floating-card .text strong { font-size: 14px; display: block; margin-bottom: 2px; }
.floating-card .text span { font-size: 12px; color: var(--ink-mute); line-height: 1.3; display: block; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero { padding: 50px 0 80px; }
  .floating-card { left: 16px; bottom: 16px; }
}
@media (max-width: 520px) {
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .hero-stat .num { font-size: 28px; }
}

/* ---------- Trust Band ---------- */
.trust-band {
  background: var(--cream);
  padding: 28px 0;
  border-top: 1px solid rgba(212, 168, 75, 0.25);
  border-bottom: 1px solid rgba(212, 168, 75, 0.25);
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  font-size: 14px;
  color: var(--ink-soft);
  flex-wrap: wrap;
  justify-content: center;
}
.trust-inner span { display: inline-flex; align-items: center; gap: 10px; }
.trust-inner svg { width: 18px; height: 18px; color: var(--teal); flex-shrink: 0; }

/* ---------- Sections ---------- */
section.block { padding: 110px 0; position: relative; }
.section-head {
  max-width: 740px;
  margin: 0 auto 70px;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  font-variation-settings: "opsz" 144, "SOFT" 40, "WONK" 1;
  margin-bottom: 20px;
}
.section-head h2 em { font-style: italic; color: var(--teal); }
.section-head p { font-size: 18px; color: var(--ink-soft); margin: 0; }

/* ---------- Mission ---------- */
.mission { background: var(--paper); }
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mission-card {
  background: white;
  padding: 40px 34px;
  border-radius: 22px;
  border: 1px solid var(--line);
  transition: all .4s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.mission-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--teal-soft), transparent 60%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.mission-card:hover {
  border-color: var(--teal);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(5, 140, 149, 0.25);
}
.mission-card:hover::before { opacity: 1; }
.mission-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--teal);
  color: white;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.mission-icon svg { width: 26px; height: 26px; }
.mission-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.mission-card p {
  color: var(--ink-soft);
  font-size: 15px;
  margin: 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 820px) {
  .mission-grid { grid-template-columns: 1fr; }
}

/* ---------- Split / Leistungen ---------- */
.split { background: var(--mist); }
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.split-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
}
.split-visual img { width: 100%; height: 100%; object-fit: cover; }
.split-text h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-variation-settings: "opsz" 144, "SOFT" 40, "WONK" 1;
  margin-bottom: 24px;
}
.split-text h2 em { font-style: italic; color: var(--teal); }
.split-text > p { font-size: 17px; color: var(--ink-soft); margin-bottom: 20px; }
.split-list { list-style: none; padding: 0; margin: 30px 0; }
.split-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
}
.split-list li:last-child { border-bottom: none; }
.split-list .check {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.split-list .check svg { width: 12px; height: 12px; }
@media (max-width: 900px) {
  .split-grid { grid-template-columns: 1fr; gap: 50px; }
}

/* ---------- Mobile Einheit (Flaggschiff) ---------- */
.mobile-unit {
  background: linear-gradient(180deg, var(--teal-deep) 0%, #022E34 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.mobile-unit::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(5, 140, 149, 0.35), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(212, 168, 75, 0.12), transparent 45%);
  pointer-events: none;
}
.mobile-unit .container { position: relative; z-index: 1; }
.mobile-unit .eyebrow { color: var(--gold); }
.mobile-unit .eyebrow::before { background: var(--gold); }
.mobile-unit .section-head h2 {
  color: white;
  font-size: clamp(34px, 5vw, 64px);
}
.mobile-unit .section-head h2 em { color: var(--gold); }
.mobile-unit .section-head p { color: rgba(255,255,255,0.75); }

.mu-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 20px;
}
.mu-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.08);
  display: grid;
  place-items: center;
  padding: 20px;
  overflow: hidden;
}
.mu-visual > svg,
.mu-visual > img {
  width: 92%;
  max-width: 92%;
  height: auto;
  max-height: 92%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
  position: relative;
  z-index: 2;
}
.mu-orbit {
  position: absolute;
  inset: 24px;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.08);
  animation: rotate 40s linear infinite;
}
.mu-orbit-2 {
  position: absolute;
  inset: 70px;
  border-radius: 50%;
  border: 1px dashed rgba(212,168,75,0.18);
  animation: rotate 60s linear infinite reverse;
}
@keyframes rotate { to { transform: rotate(360deg); } }

.mu-text h3 {
  color: white;
  font-size: 32px;
  margin-bottom: 20px;
  font-variation-settings: "opsz" 144, "SOFT" 40, "WONK" 1;
}
.mu-text > p {
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  margin-bottom: 36px;
}
.mu-features { display: grid; gap: 18px; }
.mu-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  transition: all .3s var(--ease-out);
}
.mu-feature:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(212,168,75,0.3);
  transform: translateX(4px);
}
.mu-feature-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(212, 168, 75, 0.15);
  color: var(--gold);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.mu-feature-icon svg { width: 20px; height: 20px; }
.mu-feature strong { display: block; font-size: 15px; color: white; margin-bottom: 4px; }
.mu-feature span { font-size: 14px; color: rgba(255,255,255,0.65); }

.mu-process {
  margin-top: 100px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.mu-process::before {
  content: "";
  position: absolute;
  top: 30px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,168,75,0.4), transparent);
}
.mu-step { text-align: center; position: relative; }
.mu-step-num {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--teal-deep);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--ff-display);
  font-size: 22px;
  font-variation-settings: "opsz" 144;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
}
.mu-step h4 { color: white; font-size: 18px; margin-bottom: 8px; }
.mu-step p { color: rgba(255,255,255,0.65); font-size: 14px; margin: 0; }

@media (max-width: 900px) {
  .mu-showcase { grid-template-columns: 1fr; gap: 50px; }
  .mu-process { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .mu-process::before { display: none; }
}

/* ---------- Vorteile ---------- */
.benefits { background: var(--cream); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.benefit {
  background: white;
  padding: 36px 28px;
  border-radius: 20px;
  text-align: left;
  transition: all .3s var(--ease-out);
  border: 1px solid transparent;
}
.benefit:hover {
  border-color: var(--teal);
  transform: translateY(-6px);
  box-shadow: 0 18px 40px -15px rgba(5, 140, 149, 0.2);
}
.benefit-num {
  font-family: var(--ff-display);
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 16px;
  display: block;
}
.benefit-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--teal-soft);
  color: var(--teal);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
}
.benefit-icon svg { width: 24px; height: 24px; }
.benefit h3 { font-size: 19px; margin-bottom: 8px; }
.benefit p { font-size: 14px; color: var(--ink-soft); margin: 0; }
@media (max-width: 900px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .benefits-grid { grid-template-columns: 1fr; } }

/* ---------- Ansprechpartner ---------- */
.contact-person { background: var(--paper); }
.cp-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  background: white;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px -30px rgba(10, 31, 44, 0.15);
}
.cp-photo {
  background: linear-gradient(160deg, var(--teal-soft) 0%, var(--mist) 60%, var(--cream) 100%);
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: end center;
}
.cp-photo img { width: 100%; height: 100%; object-fit: cover; }
.cp-photo-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: end center;
  position: relative;
}
.cp-photo-placeholder::before {
  /* Soft radial light */
  content: "";
  position: absolute;
  top: 15%; left: 50%;
  width: 70%;
  height: 55%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.7), transparent 70%);
  pointer-events: none;
}
.cp-photo-placeholder svg {
  width: 75%;
  max-width: 320px;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 8px 20px rgba(5, 140, 149, 0.15));
}
.cp-photo-label {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  color: var(--teal-deep);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(6px);
  padding: 8px 14px;
  border-radius: 999px;
  z-index: 2;
  white-space: nowrap;
}
.cp-content { padding: 60px 56px; display: flex; flex-direction: column; justify-content: center; }
.cp-content .eyebrow { margin-bottom: 18px; }
.cp-content h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  margin-bottom: 12px;
  font-variation-settings: "opsz" 144, "SOFT" 40, "WONK" 1;
}
.cp-role {
  font-size: 15px;
  color: var(--ink-mute);
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.cp-quote {
  font-family: var(--ff-display);
  font-size: 20px;
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 36px;
  padding-left: 20px;
  border-left: 3px solid var(--gold);
}
.cp-details {
  display: grid;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.cp-detail {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
}
.cp-detail-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--teal-soft);
  color: var(--teal);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.cp-detail-icon svg { width: 18px; height: 18px; }
.cp-detail .meta { font-size: 12px; color: var(--ink-mute); margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.08em; display: block; }
.cp-detail a { color: var(--ink); font-weight: 500; transition: color .2s; }
.cp-detail a:hover { color: var(--teal); }
@media (max-width: 900px) {
  .cp-card { grid-template-columns: 1fr; }
  .cp-photo { aspect-ratio: 16/10; }
  .cp-content { padding: 40px 32px; }
}

/* ---------- Software Band ---------- */
.software { background: var(--mist); padding: 80px 0; }
.software-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 40px;
  align-items: center;
  background: linear-gradient(135deg, white 0%, var(--paper) 100%);
  padding: 36px 44px;
  border-radius: 22px;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.software-inner::before {
  content: "";
  position: absolute;
  top: -60%; right: -10%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(5,140,149,0.08), transparent 70%);
  pointer-events: none;
}
.software-logo {
  font-family: var(--ff-display);
  font-size: 48px;
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--teal);
  letter-spacing: -0.03em;
  line-height: 1;
  padding-right: 36px;
  border-right: 1px solid var(--line);
  position: relative;
  z-index: 1;
}
.software-logo-sub {
  display: block;
  font-family: var(--ff-body);
  font-style: normal;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  margin-top: 6px;
}
.software-text { position: relative; z-index: 1; }
.software-text h3 { font-size: 22px; margin-bottom: 4px; }
.software-text p { margin: 0; color: var(--ink-soft); font-size: 15px; }

/* Kleines UI-Mockup rechts */
.software-mockup {
  width: 180px;
  height: 120px;
  background: white;
  border-radius: 10px;
  border: 1px solid var(--line);
  padding: 10px;
  display: grid;
  gap: 6px;
  grid-template-rows: auto 1fr auto;
  box-shadow: 0 10px 30px -15px rgba(10, 31, 44, 0.15);
  position: relative;
  z-index: 1;
}
.software-mockup-bar {
  height: 6px;
  border-radius: 3px;
  background: var(--teal-soft);
  position: relative;
}
.software-mockup-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 60%;
  background: var(--teal);
  border-radius: 3px;
}
.software-mockup-body {
  display: grid;
  gap: 4px;
  grid-template-columns: repeat(3, 1fr);
}
.software-mockup-body span {
  background: var(--mist);
  border-radius: 4px;
}
.software-mockup-body span:nth-child(2) { background: var(--teal); opacity: 0.8; }
.software-mockup-body span:nth-child(5) { background: var(--gold); opacity: 0.6; }
.software-mockup-foot {
  height: 8px;
  background: var(--paper);
  border-radius: 4px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 0 4px;
}
.software-mockup-foot::after {
  content: "";
  width: 20px; height: 4px;
  background: var(--teal);
  border-radius: 2px;
}

@media (max-width: 900px) {
  .software-inner {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    text-align: left;
  }
  .software-text { grid-column: 1 / -1; }
  .software-mockup { justify-self: center; }
}
@media (max-width: 780px) {
  .software-inner { grid-template-columns: 1fr; text-align: center; padding: 32px; }
  .software-text h3 { margin-top: 10px; }
  .software-logo { border-right: none; border-bottom: 1px solid var(--line); padding: 0 0 20px; padding-right: 0; }
  .software-mockup { margin: 0 auto; }
  .software-text { grid-column: auto; }
}

/* ---------- CTA / Kontakt ---------- */
.cta {
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.cta-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}
.cta-text h2 {
  font-size: clamp(34px, 4.5vw, 56px);
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 1;
  margin-bottom: 20px;
}
.cta-text h2 em { font-style: italic; color: var(--teal); }
.cta-text > p { font-size: 18px; color: var(--ink-soft); margin-bottom: 36px; }
.cta-meta { display: grid; gap: 18px; margin-top: 40px; padding-top: 36px; border-top: 1px solid var(--line); }
.cta-meta-item { display: flex; align-items: center; gap: 14px; font-size: 15px; }
.cta-meta-item svg { width: 18px; height: 18px; color: var(--teal); flex-shrink: 0; }

.form-card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px -40px rgba(10, 31, 44, 0.15);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  background: var(--paper);
  transition: all .2s;
  color: var(--ink);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--teal);
  background: white;
  box-shadow: 0 0 0 4px rgba(5, 140, 149, 0.1);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; justify-content: center; margin-top: 10px; }
.form-consent { font-size: 12px; color: var(--ink-mute); margin-top: 16px; line-height: 1.5; margin-bottom: 0; }
.form-consent a { color: var(--teal); text-decoration: underline; }

/* Honeypot */
.zph-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

/* Form feedback */
.form-message {
  padding: 14px 18px;
  border-radius: 12px;
  margin-bottom: 20px;
  font-size: 14px;
}
.form-message.is-success { background: rgba(5, 140, 149, 0.1); color: var(--teal-deep); border: 1px solid var(--teal); }
.form-message.is-error { background: rgba(220, 53, 69, 0.08); color: #9b2030; border: 1px solid rgba(220, 53, 69, 0.3); }

@media (max-width: 900px) {
  .cta-wrap { grid-template-columns: 1fr; gap: 50px; }
  .form-card { padding: 30px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--teal-deep);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 30px;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}
.footer-brand img { height: 50px; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 14px; line-height: 1.6; max-width: 300px; }
.site-footer h4 {
  color: white;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.site-footer ul a { font-size: 14px; transition: color .2s; }
.site-footer ul a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 20px;
}
.footer-bottom-links { display: flex; gap: 24px; }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 580px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Page Template ---------- */
.page-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 100px 28px;
}
.page-content h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 1;
  margin-bottom: 40px;
}
.page-content h2 { font-size: 32px; margin-top: 50px; }
.page-content h3 { font-size: 22px; margin-top: 40px; }
.page-content p { font-size: 17px; color: var(--ink-soft); }
.page-content a { color: var(--teal); text-decoration: underline; }
.page-content ul, .page-content ol { padding-left: 22px; color: var(--ink-soft); }

/* 404 */
.error-404 {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px 28px;
}
.error-404 h1 {
  font-size: clamp(60px, 10vw, 120px);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--teal);
  margin-bottom: 10px;
  font-style: italic;
}
.error-404 p { font-size: 18px; color: var(--ink-soft); margin-bottom: 32px; }

/* ---------- Reveal Animation ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(20px); transition: all .8s var(--ease-out); }
  .reveal.in { opacity: 1; transform: translateY(0); }
  .hero-grid > * { animation: fadeUp 1s var(--ease-out) both; }
  .hero-grid > *:nth-child(2) { animation-delay: .15s; }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

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




@media (max-width: 600px) {
	.mobile-nav-toggle {
  display: none !important;
}
	.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 8px;
  border-radius: 999px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .3s var(--ease-out);
  white-space: nowrap;
}
	.btn.btn-primary {
  margin-right: 10px;
}
	.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 18px 0;
  flex-direction: column;
}
	.custom-logo {
  max-width: 50vw;
  margin-bottom: -40px;
  margin-top: -30px;
}
}