:root {
  --navy: #052b4f;
  --blue: #0b6fb6;
  --sky: #e8f5ff;
  --green: #1f8f6e;
  --amber: #efbd4f;
  --ink: #142033;
  --muted: #617083;
  --line: #d9e4ee;
  --soft: #f4f8fb;
  --paper: #ffffff;
  --shadow: 0 18px 45px rgba(5, 43, 79, 0.12);
  --radius: 8px;
  --radius-lg: 10px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  min-width: 320px;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  background: linear-gradient(180deg, #f6fbff 0%, #ffffff 36%, #f5f8fb 100%);
}

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

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

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

.container {
  width: min(1160px, 92vw);
  margin-inline: auto;
}

.topbar {
  color: #dbeefe;
  background: #052b4f;
  font-size: 0.86rem;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 6px 0;
}

.topbar a {
  color: #ffffff;
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(217, 228, 238, 0.9);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 4px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 96px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  color: #344054;
  font-size: 0.92rem;
  font-weight: 800;
}

.nav-link {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.nav-link:hover,
.nav-link.active {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 9px 14px;
  color: #ffffff;
  background: var(--navy);
  box-shadow: 0 10px 24px rgba(5, 43, 79, 0.16);
  white-space: nowrap;
}

.menu-button {
  display: none;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 9px 12px;
  color: var(--navy);
  background: #ffffff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: var(--navy);
}

.menu-lines {
  position: relative;
}

.menu-lines::before,
.menu-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-lines::before {
  top: -6px;
}

.menu-lines::after {
  top: 6px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  border: 1px solid rgba(11, 111, 182, 0.12);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--blue);
  background: rgba(11, 111, 182, 0.08);
  font-size: 0.8rem;
  font-weight: 900;
}

.eyebrow.light {
  border-color: rgba(255, 255, 255, 0.22);
  color: #dff2ff;
  background: rgba(255, 255, 255, 0.1);
}

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 20px;
  font-size: 4.35rem;
}

h2 {
  margin-bottom: 14px;
  font-size: 2.8rem;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

p {
  color: var(--muted);
}

ul {
  color: var(--muted);
}

section {
  padding: 78px 0;
}

.hero-home,
.subhero,
.dark-section,
.final-cta {
  color: #ffffff;
  background:
    linear-gradient(120deg, rgba(239, 189, 79, 0.16), transparent 34%),
    linear-gradient(305deg, rgba(31, 143, 110, 0.16), transparent 42%),
    linear-gradient(135deg, #041f38 0%, #074e82 56%, #0b6fb6 100%);
}

.hero-home {
  position: relative;
  overflow: hidden;
  padding: 86px 0 70px;
}

.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, #000 16%, #000 78%, transparent);
}

.hero-home::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 44%;
  height: 72%;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1) 34%, rgba(239, 189, 79, 0.16));
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-home-grid,
.subhero-grid,
.split-grid,
.final-cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.03fr 0.8fr;
  gap: 42px;
  align-items: center;
}

.hero-copy p,
.subhero p,
.dark-section p,
.final-cta p {
  max-width: 720px;
  color: #e6f4ff;
  font-size: 1.1rem;
}

.hero-home h1,
.subhero h1,
.dark-section h2,
.final-cta h2 {
  color: #ffffff;
}

.home-page .hero-home h1 {
  max-width: 820px;
  font-size: 4.05rem;
}

.home-page .hero-copy p {
  max-width: 610px;
}

.hero-microproof {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  max-width: 520px;
}

.hero-microproof span {
  position: relative;
  display: block;
  padding-left: 18px;
  color: #e6f4ff;
  font-size: 0.94rem;
  font-weight: 850;
}

.hero-microproof span::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffe39a;
}

.industry-pulse {
  margin-top: 16px;
  color: #cae7fb;
  font-size: 0.95rem;
  font-weight: 850;
}

.industry-pulse strong {
  color: #ffe39a;
  white-space: nowrap;
}

/* Mobile Hero Relaunch: mobil-only Headline/Subline sind auf Desktop unsichtbar.
   Die echte (SEO-)H1 bleibt im DOM und wird auf Mobile nur visuell ersetzt. */
.hero-headline-mobile,
.hero-sub-mobile {
  display: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-weight: 950;
  line-height: 1.2;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background 0.18s var(--ease);
}

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

.btn-primary {
  color: var(--navy);
  background: linear-gradient(135deg, #efbd4f, #ffe39a);
  box-shadow: 0 12px 28px rgba(239, 189, 79, 0.24);
}

.btn-secondary {
  border-color: var(--line);
  color: var(--navy);
  background: #ffffff;
}

.btn-light {
  color: var(--navy);
  background: #ffffff;
}

.hero-home .btn-secondary,
.subhero .btn-secondary,
.dark-section .btn-secondary {
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.hero-card,
.comparison div,
.demo-list div,
.addon-grid div,
.contact-mini {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
}

.hero-showcase {
  position: relative;
  min-height: 470px;
  display: flex;
  align-items: center;
}

.mock-layer {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.13);
}

.mock-layer-back {
  inset: 44px 16px 48px -18px;
  transform: rotate(-4deg);
}

.browser-window {
  position: relative;
  z-index: 2;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-lg);
  padding: 12px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
}

.website-preview {
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
}

.browser-top {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.browser-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
}

.browser-top em {
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 800;
}

.mock-site {
  min-height: 370px;
  border-radius: var(--radius);
  padding: 24px;
  background:
    linear-gradient(180deg, #ffffff, #f7fbff);
}

.premium-mock {
  display: grid;
  gap: 16px;
  overflow: hidden;
  min-height: 392px;
}

.mock-bar,
.mock-headline,
.mock-line,
.mock-button,
.mock-cards i,
.mock-photo {
  border-radius: var(--radius);
}

.mock-bar {
  height: 22px;
  margin-bottom: 34px;
  background: linear-gradient(90deg, var(--navy), var(--blue), var(--green));
}

.mock-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: var(--radius);
  padding: 11px 12px;
  color: var(--navy);
  background: #eef7ff;
  font-size: 0.86rem;
}

.mock-navigation strong,
.mock-navigation em {
  display: block;
}

.mock-navigation em {
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--navy);
  background: #ffe39a;
  font-style: normal;
  font-weight: 950;
  white-space: nowrap;
}

.mock-headline {
  width: 100%;
  height: 58px;
  margin-bottom: 16px;
  background: var(--navy);
}

.mock-hero-row {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 18px;
  align-items: start;
}

.mock-copy-block {
  display: grid;
  align-content: center;
  min-height: 184px;
}

.mock-copy-block span,
.mock-copy-block strong,
.mock-copy-block p,
.mock-copy-block i {
  display: block;
}

.mock-copy-block span {
  width: max-content;
  border-radius: 999px;
  padding: 5px 8px;
  color: var(--blue);
  background: #e7f4ff;
  font-size: 0.76rem;
  font-weight: 950;
}

.mock-copy-block strong {
  max-width: 260px;
  margin-top: 10px;
  color: var(--navy);
  font-size: 1.48rem;
  line-height: 1.08;
}

.mock-copy-block p {
  max-width: 250px;
  margin-top: 9px;
  color: #526173;
  font-size: 0.86rem;
  line-height: 1.45;
}

.mock-copy-block i {
  width: max-content;
  margin-top: 14px;
  border-radius: var(--radius);
  padding: 9px 12px;
  color: var(--navy);
  background: var(--amber);
  font-style: normal;
  font-weight: 950;
}

.mock-photo {
  min-height: 166px;
  background:
    linear-gradient(135deg, rgba(5, 43, 79, 0.12), rgba(11, 111, 182, 0.18)),
    radial-gradient(circle at 68% 32%, rgba(239, 189, 79, 0.72), transparent 20%),
    linear-gradient(135deg, #dfeefa, #ffffff);
  position: relative;
  overflow: hidden;
}

.local-business-visual {
  display: grid;
  min-height: 184px;
  align-content: end;
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(5, 43, 79, 0.1)),
    linear-gradient(135deg, #b9d6ea, #ffffff 48%, #d6ebdf);
}

.local-business-visual::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 50px;
  height: 58px;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(5, 43, 79, 0.72) 0 28%, transparent 28% 36%, rgba(31, 143, 110, 0.76) 36% 65%, transparent 65% 73%, rgba(11, 111, 182, 0.72) 73% 100%);
}

.local-business-visual span {
  position: relative;
  z-index: 1;
  width: max-content;
  border-radius: 999px;
  padding: 7px 9px;
  color: #ffffff;
  background: rgba(5, 43, 79, 0.78);
  font-size: 0.78rem;
  font-weight: 950;
}

.mock-photo::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px 18px;
  height: 46px;
  border-radius: var(--radius);
  background: rgba(5, 43, 79, 0.78);
}

.local-business-visual::after {
  inset: 18px 18px auto auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(239, 189, 79, 0.78);
}

.mock-line {
  width: 88%;
  height: 14px;
  margin-bottom: 10px;
  background: #dce8f1;
}

.mock-line.short {
  width: 62%;
}

.mock-button {
  width: 142px;
  height: 36px;
  margin: 24px 0 28px;
  background: var(--amber);
}

.mock-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mock-cards i {
  display: grid;
  min-height: 82px;
  align-items: end;
  padding: 12px;
  background: linear-gradient(180deg, #edf7ff, #cfe2ef);
  font-style: normal;
}

.mock-service-row i span {
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 950;
}

.mock-rating-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid #dce8f1;
  border-radius: var(--radius);
  padding: 12px;
  background: #fbfdff;
}

.mock-rating-row strong {
  color: var(--green);
  white-space: nowrap;
}

.mock-rating-row span {
  color: #526173;
  font-size: 0.84rem;
  font-weight: 800;
}

.showcase-badge {
  position: absolute;
  right: 16px;
  bottom: -16px;
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--navy);
  background: #ffe39a;
  box-shadow: var(--shadow);
  font-weight: 950;
}

.hero-float-card {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  padding: 10px 13px;
  color: #ffffff;
  background: rgba(4, 31, 56, 0.74);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
  font-size: 0.88rem;
  font-weight: 950;
  backdrop-filter: blur(12px);
  animation: heroFloat 6s ease-in-out infinite;
}

.float-a {
  top: 54px;
  left: -14px;
}

.float-b {
  right: 0;
  top: 104px;
  animation-delay: 0.7s;
}

.float-c {
  right: 58px;
  bottom: 24px;
  animation-delay: 1.2s;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  background: #ffffff;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.trust-grid span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 12px;
  color: var(--navy);
  background: var(--soft);
  text-align: center;
  font-weight: 900;
}

.subhero {
  padding: 66px 0;
}

.hero-card {
  padding: 24px;
  backdrop-filter: blur(14px);
}

.hero-card strong,
.hero-card span {
  display: block;
}

.hero-card strong {
  margin-bottom: 8px;
  color: #ffe39a;
}

.hero-card span,
.hero-card a {
  color: #dff2ff;
}

.hero-card a {
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.section-head {
  max-width: 850px;
  margin-bottom: 36px;
}

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

.compact-head {
  max-width: 760px;
}

.grid-3,
.grid-4,
.service-grid,
.industry-grid,
.demo-grid,
.process-grid,
.package-grid,
.addon-grid {
  display: grid;
  gap: 18px;
}

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

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

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

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

.feature-card,
.service-card,
.industry-grid article,
.demo-card,
.step,
.package-card,
.contact-panel,
.contact-form,
.legal {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(5, 43, 79, 0.07);
}

.feature-card,
.service-card,
.industry-grid article,
.demo-card,
.step {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.feature-card,
.service-card,
.industry-grid article,
.demo-card,
.step,
.package-card,
.visual-comparison,
.founder-photo-card {
  opacity: 0;
  transform: translateY(14px);
}

.feature-card.visible,
.service-card.visible,
.industry-grid article.visible,
.demo-card.visible,
.step.visible,
.package-card.visible,
.visual-comparison.visible,
.founder-photo-card.visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.42s var(--ease), transform 0.42s var(--ease), box-shadow 0.18s var(--ease);
}

.feature-card:hover,
.service-card:hover,
.industry-grid article:hover,
.demo-card:hover,
.step:hover,
.package-card:hover {
  box-shadow: var(--shadow);
}

.feature-card span,
.service-card span,
.industry-grid article span,
.step span {
  display: inline-grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: var(--radius);
  padding: 7px 10px;
  color: var(--blue);
  background: #eaf5ff;
  font-weight: 950;
}

.step span {
  width: 42px;
  height: 42px;
  padding: 0;
}

.feature-card a,
.industry-grid article a,
.demo-card a,
.image-card a {
  display: inline-flex;
  margin-top: auto;
  padding-top: 16px;
  color: var(--blue);
  font-weight: 950;
}

.service-card ul,
.feature-card p,
.industry-grid article p,
.demo-card p,
.step p {
  margin-bottom: 16px;
}

.split-section {
  background: linear-gradient(180deg, #f3f8fc, #ffffff);
}

.compact-list div {
  padding: 13px 15px;
}

.split-grid {
  grid-template-columns: 1fr 0.88fr;
}

.check-list {
  display: grid;
  gap: 12px;
}

.check-list div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: #344054;
  background: #ffffff;
  font-weight: 780;
}

.check-list.boxed {
  margin-top: 0;
}

.home-industries {
  background:
    linear-gradient(180deg, #f7fbff, #ffffff);
}

.visual-branch-card .visual-card {
  min-height: 150px;
  margin-bottom: 18px;
}

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

.visual-comparison {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 14px;
  min-height: 320px;
  align-items: stretch;
}

.visual-comparison > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.visual-comparison span,
.visual-comparison strong,
.visual-comparison em {
  display: block;
}

.visual-comparison span {
  font-weight: 950;
}

.visual-comparison strong {
  margin: 8px 0;
  font-size: 2rem;
  line-height: 1;
}

.visual-comparison em {
  color: inherit;
  font-style: normal;
}

.before-card {
  color: #526173;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(244, 248, 251, 0.95)),
    repeating-linear-gradient(0deg, transparent 0 18px, rgba(97, 112, 131, 0.12) 18px 20px);
  transform: translateY(18px);
}

.after-card {
  color: #ffffff;
  background:
    radial-gradient(circle at 76% 18%, rgba(239, 189, 79, 0.28), transparent 24%),
    linear-gradient(135deg, var(--navy), var(--blue) 58%, var(--green));
}

.image-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: var(--radius);
  padding: 30px;
  color: #ffffff;
  background:
    radial-gradient(circle at 82% 18%, rgba(239, 189, 79, 0.2), transparent 26%),
    linear-gradient(135deg, #083151, #0b6fb6 62%, #1f8f6e);
  box-shadow: var(--shadow);
}

.image-card h3 {
  color: #ffffff;
}

.image-card p {
  color: #e4f4ff;
}

.image-card a {
  color: #ffe39a;
}

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

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

.package-card .price {
  margin: 6px 0 12px;
  color: var(--blue);
  font-size: 1.52rem;
  font-weight: 950;
  line-height: 1.2;
}

.package-card ul {
  margin: 16px 0 22px;
  padding-left: 18px;
}

.package-card li {
  margin: 7px 0;
}

.package-card .btn {
  margin-top: auto;
}

.package-card.highlighted {
  border: 2px solid var(--blue);
  box-shadow: 0 16px 40px rgba(11, 111, 182, 0.14);
}

.package-card.premium {
  background: linear-gradient(180deg, #ffffff, #eef8f4);
}

.package-ladder {
  display: grid;
  gap: 12px;
}

.package-ladder div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 6px 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(5, 43, 79, 0.07);
}

.package-ladder span {
  grid-row: span 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: #ffe39a;
  font-weight: 950;
}

.package-ladder strong,
.package-ladder em {
  display: block;
}

.package-ladder em {
  color: var(--muted);
  font-style: normal;
}

.dark-section {
  background:
    radial-gradient(circle at 80% 18%, rgba(31, 143, 110, 0.22), transparent 24%),
    linear-gradient(135deg, #041f38, #063b66);
}

.comparison,
.demo-list {
  display: grid;
  gap: 12px;
}

.comparison div,
.demo-list div,
.addon-grid div,
.contact-mini {
  padding: 18px;
}

.comparison strong,
.comparison span,
.demo-list strong,
.demo-list span,
.addon-grid strong,
.addon-grid span {
  display: block;
}

.comparison strong,
.demo-list strong,
.addon-grid strong,
.contact-mini strong {
  color: #ffe39a;
}

.comparison span,
.demo-list span,
.addon-grid span {
  color: #dcefff;
}

.demo-preview {
  display: grid;
  min-height: 190px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: var(--radius);
  color: #ffffff;
  font-weight: 950;
  text-align: center;
}

.demo-preview.blue {
  background: linear-gradient(135deg, var(--navy), var(--blue));
}

.demo-preview.green {
  background: linear-gradient(135deg, #0c5b4d, var(--green));
}

.demo-preview.amber {
  color: var(--navy);
  background: linear-gradient(135deg, #efbd4f, #ffe39a);
}

.demo-preview.navy {
  background: linear-gradient(135deg, #031b31, #36516d);
}

.demo-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 16px 0 6px;
}

.demo-facts div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px;
  background: var(--soft);
}

.demo-facts span,
.demo-facts strong {
  display: block;
}

.demo-facts span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
}

.demo-facts strong {
  color: var(--navy);
  font-size: 0.92rem;
  line-height: 1.25;
}

.visual-card {
  position: relative;
  overflow: hidden;
  min-height: 170px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #edf7ff, #ffffff);
}

.visual-card::before,
.visual-card::after {
  content: "";
  position: absolute;
  border-radius: var(--radius);
}

.visual-card::before {
  inset: 22px 22px auto auto;
  width: 44%;
  height: 46%;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.visual-card::after {
  left: 18px;
  right: 18px;
  bottom: 18px;
  height: 42px;
  background: rgba(5, 43, 79, 0.78);
}

.visual-card.workshop {
  background:
    radial-gradient(circle at 80% 18%, rgba(239, 189, 79, 0.65), transparent 18%),
    linear-gradient(135deg, #123250, #0b6fb6);
}

.visual-card.craft {
  background:
    radial-gradient(circle at 18% 18%, rgba(239, 189, 79, 0.55), transparent 20%),
    linear-gradient(135deg, #0c5b4d, #1f8f6e);
}

.visual-card.garden {
  background:
    radial-gradient(circle at 80% 16%, rgba(255, 227, 154, 0.72), transparent 18%),
    linear-gradient(135deg, #24523f, #8fbf7a);
}

.visual-card.service {
  background:
    radial-gradient(circle at 22% 22%, rgba(255, 255, 255, 0.48), transparent 20%),
    linear-gradient(135deg, #384860, #0b6fb6);
}

.visual-card.large {
  min-height: 360px;
  margin-bottom: 0;
  box-shadow: var(--shadow);
}

.visual-feature-grid {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 34px;
  align-items: center;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.module-grid div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(5, 43, 79, 0.06);
}

.module-grid strong,
.module-grid span {
  display: block;
}

.module-grid span {
  color: var(--muted);
}

.founder-section {
  background:
    linear-gradient(90deg, rgba(239, 189, 79, 0.11), transparent 36%),
    linear-gradient(180deg, #ffffff, #f3f8fc);
}

.founder-photo-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(217, 228, 238, 0.9);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.founder-photo-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 45%;
}

.founder-photo-card figcaption {
  display: grid;
  gap: 4px;
  padding: 16px 18px 18px;
}

.founder-photo-card strong {
  color: var(--navy);
  font-size: 1.18rem;
  line-height: 1.2;
}

.founder-photo-card span {
  color: var(--muted);
}

.founder-home-grid {
  align-items: center;
}

.founder-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.founder-points span {
  border: 1px solid rgba(11, 111, 182, 0.14);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--navy);
  background: #eaf5ff;
  font-weight: 900;
}

.founder-photo-card.compact {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 12px;
  align-items: center;
  overflow: visible;
  margin-bottom: 20px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.founder-photo-card.compact img {
  width: 74px;
  height: 74px;
  aspect-ratio: 1;
  border-radius: 50%;
  object-position: center 34%;
  box-shadow: 0 10px 24px rgba(5, 43, 79, 0.14);
}

.founder-photo-card.compact figcaption {
  padding: 0;
}

.founder-photo-card.compact strong {
  font-size: 1rem;
}

.founder-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.founder-grid div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: #ffffff;
}

.founder-grid strong,
.founder-grid span {
  display: block;
}

.founder-grid span {
  color: var(--muted);
}

.faq-section {
  background: #ffffff;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  background: var(--soft);
}

.faq-list summary {
  color: var(--navy);
  font-weight: 950;
  cursor: pointer;
}

.faq-list p {
  margin-top: 12px;
}

.final-cta-grid {
  grid-template-columns: 1fr auto;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.contact-grid {
  align-items: start;
}

.contact-form-section {
  scroll-margin-top: 98px;
}

.contact-panel,
.contact-form,
.legal {
  box-shadow: var(--shadow);
}

.contact-rows {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.contact-rows a,
.contact-rows div {
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  background: var(--soft);
}

.contact-rows strong,
.contact-rows span {
  display: block;
}

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

.contact-note {
  margin-top: 18px;
  font-size: 0.94rem;
}

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

.contact-form h2 {
  font-size: 1.7rem;
}

.form-head p {
  margin-top: -4px;
}

.form-section {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: #fbfdff;
}

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

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

.contact-form label,
.contact-form legend {
  color: var(--navy);
  font-weight: 850;
}

.contact-form legend {
  padding: 0 4px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-height: 48px;
  margin-top: 6px;
  border: 1px solid #cddceb;
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfdff;
  font: inherit;
}

.package-select-field {
  border: 1px solid rgba(11, 111, 182, 0.22);
  border-radius: var(--radius);
  padding: 14px;
  background: #eff8ff;
}

.package-select-field select {
  border-color: rgba(11, 111, 182, 0.32);
  background: #ffffff;
  font-weight: 850;
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.full-field {
  grid-column: 1 / -1;
}

.checkbox-group,
.radio-group,
.addon-picker {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.checkbox-group label,
.radio-group label,
.addon-picker label {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 12px;
  color: #344054;
  background: #ffffff;
  font-weight: 740;
}

.checkbox-group input,
.radio-group input,
.addon-picker input {
  width: 16px;
  min-height: 16px;
  margin-top: 0;
  accent-color: var(--blue);
}

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

.option-label {
  grid-column: 1 / -1;
  color: var(--navy);
  font-weight: 850;
}

.form-note {
  font-size: 0.9rem;
}

.form-note a,
.legal a {
  color: var(--blue);
  font-weight: 900;
}

.legal h2 {
  margin-top: 24px;
  font-size: 1.45rem;
}

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

.contact-mini {
  display: grid;
  gap: 12px;
  color: #ffffff;
}

.contact-mini .btn {
  width: 100%;
}

.site-footer {
  padding: 42px 0 20px;
  color: #c8dff0;
  background: #031b31;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 30px;
}

.footer-brand img {
  width: 116px;
  margin-bottom: 12px;
}

.footer-brand p,
.footer-brand small {
  color: #bfd7e9;
}

.site-footer h4 {
  margin-bottom: 10px;
  color: #ffffff;
}

.site-footer a {
  display: block;
  margin: 7px 0;
  color: #c8dff0;
}

.site-footer a:hover {
  color: #ffe39a;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 15px;
  font-size: 0.9rem;
}

.floating-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  right: 18px;
  bottom: 118px;
  z-index: 80;
  border-radius: 999px;
  padding: 11px 15px;
  color: var(--navy);
  background: #ffe39a;
  box-shadow: 0 12px 28px rgba(5, 43, 79, 0.2);
  font-weight: 950;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  visibility: hidden;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s var(--ease);
}

.floating-contact.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.contact-page .floating-contact {
  display: none;
}

@media (max-width: 1120px) {
  h1 {
    font-size: 3.45rem;
  }

  .home-page .hero-home h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .menu-button {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    justify-content: stretch;
    justify-items: stretch;
    border: 1px solid var(--line);
    border-top: 0;
    padding: 12px 4vw 16px;
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: grid;
    gap: 4px;
  }

  .nav-link {
    border-bottom: 0;
    border-radius: var(--radius);
    padding: 10px 12px;
    width: 100%;
  }

  .nav-link:hover,
  .nav-link.active {
    background: var(--soft);
  }

  .nav-cta {
    margin-top: 6px;
    width: 100%;
  }

  .hero-home-grid,
  .subhero-grid,
  .split-grid,
  .final-cta-grid {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    width: min(760px, 100%);
  }

  .package-grid,
  .package-grid.compact,
  .grid-4,
  .visual-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .final-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  h1 {
    font-size: 2.55rem;
  }

  .home-page .hero-home h1 {
    margin-bottom: 14px;
    font-size: 2.24rem;
  }

  h2 {
    font-size: 2rem;
  }

  section {
    padding: 50px 0;
  }

  .hero-home,
  .subhero {
    padding: 34px 0 40px;
  }

  .topbar {
    display: none;
  }

  .brand img {
    width: 58px;
  }

  .nav-wrap {
    padding: 3px 0;
  }

  .hero-home-grid {
    gap: 22px;
  }

  .hero-copy p {
    font-size: 1rem;
    line-height: 1.5;
  }

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

  .hero-microproof,
  .industry-pulse {
    display: none;
  }

  /* Mobile Hero Relaunch: Desktop-Mockup auf Mobile komplett ausblenden.
     Der Hero (.hero-home) wird selbst zur Bildbühne - kein extra Bildkasten mehr. */
  .hero-showcase {
    display: none;
  }

  .trust-grid,
  .grid-3,
  .grid-4,
  .service-grid,
  .industry-grid,
  .demo-grid,
  .process-grid,
  .package-grid,
  .package-grid.compact,
  .addon-grid,
  .visual-comparison,
  .visual-feature-grid,
  .module-grid,
  .footer-grid,
  .form-grid,
  .form-grid.two,
  .checkbox-group,
  .radio-group,
  .addon-picker,
  .founder-grid {
    grid-template-columns: 1fr;
  }

  .visual-card,
  .visual-card.large {
    min-height: 220px;
  }

  .visual-comparison {
    min-height: 0;
  }

  .before-card {
    transform: none;
  }

  .feature-card,
  .service-card,
  .industry-grid article,
  .demo-card,
  .step,
  .package-card,
  .contact-panel,
  .contact-form,
  .legal {
    padding: 20px;
  }

  .hero-actions .btn,
  .final-cta-actions .btn,
  .contact-form .btn {
    width: 100%;
  }

  .founder-photo-card img {
    aspect-ratio: 4 / 3;
    object-position: center 42%;
  }

  .founder-section .founder-photo-card {
    max-width: 520px;
  }

  .package-preview-section .section-head p {
    display: none;
  }

  .final-cta {
    padding-bottom: 74px;
  }

  .footer-bottom {
    padding-bottom: 58px;
  }

  .floating-contact {
    right: 14px;
    left: auto;
    bottom: 14px;
    max-width: calc(100vw - 28px);
    padding: 10px 15px;
    text-align: center;
  }
}

@media (max-width: 420px) {
  body {
    font-size: 15.5px;
  }

  h1 {
    font-size: 2.18rem;
  }

  .home-page .hero-home h1 {
    font-size: 2.04rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .container {
    width: min(100% - 28px, 1160px);
  }

  .hero-copy p,
  .subhero p,
  .dark-section p,
  .final-cta p {
    font-size: 1rem;
  }

  .brand img {
    width: 54px;
  }

  .demo-facts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 380px) {
  .home-page .hero-home h1 {
    font-size: 1.94rem;
  }

  .hero-home,
  .subhero {
    padding-top: 30px;
  }

  .mock-copy-block strong {
    font-size: 0.92rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}


/* --- Taunus Digital: echte Bildwirkung und Mobile-Polish --- */
.visual-card.has-photo,
.demo-preview.has-photo,
.subhero-image-card,
.inline-photo-card {
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}
.visual-card.has-photo {
  min-height: 190px;
  background-color: #dceaf4;
}
.visual-card.has-photo::before {
  inset: 0;
  width: auto;
  height: auto;
  border: 0;
  background: linear-gradient(180deg, rgba(5,43,79,0.06), rgba(5,43,79,0.34));
}
.visual-card.has-photo::after {
  display: none;
}
.image-kfz { background-image: linear-gradient(180deg, rgba(5,43,79,.04), rgba(5,43,79,.34)), url('images/kfz-werkstatt.jpg') !important; }
.image-kfz-service { background-image: linear-gradient(180deg, rgba(5,43,79,.04), rgba(5,43,79,.34)), url('images/kfz-service.jpg') !important; }
.image-handwerker { background-image: linear-gradient(180deg, rgba(5,43,79,.04), rgba(5,43,79,.34)), url('images/handwerker.jpg') !important; }
.image-maler { background-image: linear-gradient(180deg, rgba(5,43,79,.04), rgba(5,43,79,.34)), url('images/maler.jpg') !important; }
.image-sanitaer { background-image: linear-gradient(180deg, rgba(5,43,79,.04), rgba(5,43,79,.34)), url('images/sanitaer.jpg') !important; }
.image-gartenbau { background-image: linear-gradient(180deg, rgba(5,43,79,.04), rgba(5,43,79,.34)), url('images/gartenbau.jpg') !important; }
.image-gartenpflege { background-image: linear-gradient(180deg, rgba(5,43,79,.04), rgba(5,43,79,.34)), url('images/gartenpflege.jpg') !important; }
.image-cleaning { background-image: linear-gradient(180deg, rgba(5,43,79,.04), rgba(5,43,79,.34)), url('images/gebaeudereinigung.jpg') !important; }
.image-cleaning-team { background-image: linear-gradient(180deg, rgba(5,43,79,.04), rgba(5,43,79,.34)), url('images/gebaeudereinigung-team.jpg') !important; }
.local-business-visual {
  background-image: linear-gradient(180deg, rgba(5,43,79,.10), rgba(5,43,79,.42)), url('images/kfz-service.jpg');
  background-size: cover;
  background-position: center;
}
.subhero-image-card {
  min-height: 260px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
}
.subhero-image-card.image-kfz,
.subhero-image-card.image-handwerker,
.subhero-image-card.image-gartenbau,
.subhero-image-card.image-cleaning,
.subhero-image-card.image-sanitaer {
  display: flex;
  align-items: flex-end;
  padding: 22px;
}
.subhero-image-card span {
  display: inline-flex;
  border-radius: 999px;
  padding: 8px 12px;
  color: #fff;
  background: rgba(5,43,79,.72);
  font-weight: 950;
}
.demo-preview.has-photo {
  min-height: 220px;
  justify-content: end;
  align-items: end;
  padding: 18px;
  background-size: cover;
  background-position: center;
}
.demo-preview.has-photo span {
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(5,43,79,.78);
  color: #fff;
}
.inline-photo-card {
  min-height: 340px;
  border-radius: var(--radius);
  background-position: center;
}
.inline-photo-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,43,79,0), rgba(5,43,79,.28));
}
.visual-branch-card .visual-card,
.industry-grid article .visual-card,
.demo-card .demo-preview {
  flex-shrink: 0;
}
@media (max-width: 820px) {
  .visual-card.has-photo {
    min-height: 185px;
  }
  .subhero-image-card {
    min-height: 210px;
  }
  .founder-home-grid .founder-photo-card {
    order: -1;
  }
  .founder-section .split-grid,
  .founder-home-grid {
    gap: 22px;
  }
  .founder-section p {
    font-size: .98rem;
  }
  .demo-preview.has-photo {
    min-height: 190px;
  }
  .final-cta-grid {
    gap: 22px;
  }
}
@media (max-width: 420px) {
  .home-page .hero-home h1 {
    font-size: clamp(1.85rem, 9.5vw, 2.25rem);
  }
  .hero-copy p {
    font-size: .96rem;
  }
  .hero-actions .btn {
    min-height: 46px;
  }
  .visual-card.has-photo,
  .subhero-image-card,
  .demo-preview.has-photo {
    min-height: 170px;
  }
  .feature-card,
  .service-card,
  .industry-grid article,
  .demo-card,
  .step,
  .package-card,
  .contact-panel,
  .contact-form,
  .legal {
    padding: 18px;
  }
  section {
    padding: 42px 0;
  }
}


/* --- Taunus Digital: Referenzbilder (Autohandel / Raumausstatter) --- */
.image-autohandel { background-image: linear-gradient(180deg, rgba(5,43,79,.06), rgba(5,43,79,.38)), url('images/autohandel.jpg') !important; }
.image-raumausstatter { background-image: linear-gradient(180deg, rgba(5,43,79,.04), rgba(5,43,79,.34)), url('images/raumausstatter-beratung.jpg') !important; }


/* =========================================================================
   Mobile Hero Relaunch
   Eine einzige, kontrollierte Stelle fuer den mobilen Hero (<= 820px).
   - .hero-home wird selbst zum Cover-Hero (Foto: assets/dominic-richard.jpg)
   - dunkel-blauer Verlauf darueber fuer Lesbarkeit
   - dezentes weisses Logo-Watermark (taunus-digital-logo.png)
   - kurze mobile Headline ersetzt die lange Desktop-H1 nur visuell
   - sehr langsamer Ken-Burns + dezenter Fade-Up beim Laden
   - Animationen werden bei prefers-reduced-motion global deaktiviert
   ========================================================================= */

@keyframes heroKenBurns {
  from { transform: scale(1.04); }
  to   { transform: scale(1.13); }
}
@keyframes heroWatermarkDrift {
  from { transform: translateY(0) scale(1); opacity: .16; }
  to   { transform: translateY(5px) scale(1.03); opacity: .22; }
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 820px) {
  /* Hero-Container wird zur Bildbuehne */
  .home-page .hero-home {
    position: relative;
    display: flex;
    align-items: stretch;
    min-height: calc(100vh - 60px);
    min-height: calc(100svh - 60px);
    padding: 0;
    overflow: hidden;
    background: #04162a;
  }

  /* Foto + Lesbarkeits-Verlauf in einer Ebene, mit sehr langsamem Ken-Burns */
  .home-page .hero-home::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    width: auto;
    height: auto;
    background-image:
      linear-gradient(180deg, rgba(4,20,40,.28) 0%, rgba(4,20,40,.40) 40%, rgba(3,16,31,.80) 74%, rgba(3,13,26,.94) 100%),
      url('dominic-richard.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 20%;
    opacity: 1;
    mask-image: none;
    transform: scale(1.05);
    transform-origin: center 28%;
    animation: heroKenBurns 28s ease-in-out infinite alternate;
  }

  /* Dezentes, aber praesentes Logo-Watermark im oberen Bereich */
  .home-page .hero-home::after {
    content: "";
    position: absolute;
    top: clamp(44px, 11vw, 84px);
    left: 0;
    right: 0;
    bottom: auto;
    z-index: 1;
    width: auto;
    height: 118px;
    background-image: url('taunus-digital-logo.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 118px;
    opacity: .18;
    filter: brightness(0) invert(1) drop-shadow(0 6px 18px rgba(0,0,0,.35));
    clip-path: none;
    animation: heroWatermarkDrift 9s ease-in-out infinite alternate;
  }

  /* Copy-Block nach unten ueber dem Foto positionieren */
  .home-page .hero-home-grid {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0;
    padding: 96px 0 34px;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
  }

  .hero-copy .eyebrow {
    margin-bottom: 14px;
    padding: 6px 11px;
    font-size: .75rem;
    color: #eaf5ff;
    background: rgba(255,255,255,.14);
    border-color: rgba(255,255,255,.26);
  }

  /* Echte H1 bleibt im DOM (SEO + Screenreader), wird nur visuell ausgeblendet */
  .home-page .hero-home h1 {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  /* Sichtbare, kurze und starke mobile Headline */
  .hero-headline-mobile {
    display: block;
    max-width: 14ch;
    margin-bottom: 12px;
    color: #ffffff;
    font-size: clamp(2.15rem, 9vw, 2.9rem);
    font-weight: 950;
    line-height: 1.04;
    letter-spacing: -.02em;
    text-shadow: 0 2px 20px rgba(2,12,24,.5);
    animation: heroFadeUp .7s var(--ease) both;
  }

  /* Lange Desktop-Subline aus, kurze mobile Subline an */
  .hero-sub-desktop {
    display: none;
  }

  .hero-sub-mobile {
    display: block;
    max-width: 32ch;
    margin: 0;
    color: #e6f1fb;
    font-size: 1rem;
    line-height: 1.45;
    text-shadow: 0 1px 12px rgba(2,12,24,.45);
    animation: heroFadeUp .7s var(--ease) .1s both;
  }

  .hero-actions {
    margin-top: 22px;
    animation: heroFadeUp .7s var(--ease) .2s both;
  }

  .hero-actions .btn {
    min-height: 50px;
    border-radius: 14px;
  }

  .founder-home-grid .founder-photo-card {
    box-shadow: 0 16px 32px rgba(5,43,79,.14);
  }
}

@media (max-width: 420px) {
  .home-page .hero-home {
    min-height: calc(100vh - 56px);
    min-height: calc(100svh - 56px);
  }
  .home-page .hero-home::after {
    top: clamp(38px, 12vw, 72px);
    height: 96px;
    background-size: auto 96px;
  }
  .home-page .hero-home-grid {
    padding: 84px 0 28px;
  }
  .hero-headline-mobile {
    max-width: 13ch;
    margin-bottom: 10px;
    font-size: clamp(1.95rem, 9.6vw, 2.4rem);
  }
  .hero-sub-mobile {
    max-width: 30ch;
    font-size: .96rem;
  }
  .hero-actions {
    gap: 10px;
    margin-top: 20px;
  }
}


/* =========================================================================
   Final launch polish
   Mobile-Header als edleres Glas, das mit dem Hero verschmilzt, plus
   feine Abstands-/Konsistenz-Korrekturen. Desktop-Header bleibt unberuehrt.
   ========================================================================= */
@media (max-width: 820px) {
  .site-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    box-shadow: 0 8px 26px rgba(5, 43, 79, 0.08);
  }

  .menu-button {
    border-color: rgba(5, 43, 79, 0.14);
    border-radius: 12px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 4px 14px rgba(5, 43, 79, 0.08);
  }

  /* Hero startet direkt unter dem Glas-Header, ohne harte Kante */
  .home-page .site-header {
    border-bottom-color: rgba(255, 255, 255, 0.3);
  }
}


/* =========================================================================
   Pain section redesign
   "Gute Arbeit verdient einen besseren ersten Eindruck."
   Editorial Layout: links Headline/Text, rechts drei Premium Problem-Cards
   (Nummer, Icon, Problem -> Wirkung). Mobile: saubere vertikale Timeline.
   ========================================================================= */
.pain-section {
  background:
    radial-gradient(120% 80% at 100% 0, rgba(11, 111, 182, 0.06), transparent 58%),
    linear-gradient(180deg, #f7fafd 0%, #ffffff 72%);
}

.pain-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 48px;
  align-items: center;
}

.pain-intro {
  max-width: 440px;
}

.pain-intro h2 {
  margin-bottom: 14px;
}

.pain-intro p {
  margin: 0;
  font-size: 1.05rem;
}

.pain-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pain-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 24px;
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  box-shadow: 0 10px 30px rgba(5, 43, 79, 0.06);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

/* Akzent-Leiste links (Navy -> Gold), waechst beim Hover */
.pain-item::before {
  content: "";
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: 0;
  width: 4px;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(180deg, var(--blue), var(--amber));
  opacity: 0.8;
  transition: top 0.25s var(--ease), bottom 0.25s var(--ease), opacity 0.25s var(--ease);
}

.pain-item:hover {
  transform: translateY(-4px);
  border-color: rgba(11, 111, 182, 0.26);
  box-shadow: var(--shadow);
}

.pain-item:hover::before {
  top: 8px;
  bottom: 8px;
  opacity: 1;
}

.pain-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  color: var(--blue);
  background: radial-gradient(circle at 30% 25%, rgba(11, 111, 182, 0.16), rgba(11, 111, 182, 0.05));
  border: 1px solid rgba(11, 111, 182, 0.16);
}

.pain-icon svg {
  width: 25px;
  height: 25px;
}

.pain-index {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  color: var(--navy);
  background: linear-gradient(135deg, #ffe39a, #efbd4f);
  box-shadow: 0 6px 16px rgba(239, 189, 79, 0.28);
  font-size: 0.82rem;
  font-weight: 950;
}

.pain-body {
  padding-right: 34px;
}

.pain-body h3 {
  margin-bottom: 2px;
  font-size: 1.16rem;
}

.pain-effect {
  margin: 0 0 6px;
  color: var(--blue);
  font-size: 0.98rem;
  font-weight: 900;
}

.pain-note {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.5;
}

@media (max-width: 820px) {
  .pain-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .pain-intro {
    max-width: 100%;
  }
  .pain-intro p {
    font-size: 1rem;
  }
  .pain-item {
    gap: 14px;
    padding: 18px 20px;
  }
  .pain-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }
}


/* =========================================================================
   Desktop hero refinement (nur ab 821px, Mobile-Hero bleibt unangetastet)
   Mehr Tiefe durch weiche Radial-Glows, hochwertigeres Mockup, edlere
   schwebende Karten und feinere Button-Hover.
   ========================================================================= */
@media (min-width: 821px) {
  /* Weicher, atmosphaerischer Hero-Hintergrund mit Tiefe statt nur Grid */
  .hero-impact {
    background:
      radial-gradient(58% 52% at 14% 16%, rgba(11, 111, 182, 0.5), transparent 62%),
      radial-gradient(46% 58% at 90% 92%, rgba(239, 189, 79, 0.16), transparent 60%),
      radial-gradient(42% 42% at 80% 6%, rgba(31, 143, 110, 0.22), transparent 58%),
      linear-gradient(135deg, #041d35 0%, #074e82 55%, #0b6fb6 100%);
  }

  /* Grid dezenter und weicher ausgeblendet */
  .hero-impact::before {
    opacity: 0.09;
    background-size: 58px 58px;
    mask-image: radial-gradient(120% 90% at 70% 30%, #000 30%, transparent 78%);
  }

  /* Mockup mit mehr Tiefe und Perspektive */
  .website-preview {
    transform: perspective(1200px) rotateY(-6deg) rotateX(3deg);
    box-shadow:
      0 44px 90px rgba(2, 14, 30, 0.5),
      0 14px 34px rgba(2, 14, 30, 0.32);
  }

  .browser-window {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.17);
    backdrop-filter: blur(6px);
  }

  .mock-layer-back {
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  }

  /* Mock-Foto: ruhigerer, hochwertigerer Look */
  .local-business-visual::after {
    width: 44px;
    height: 44px;
    opacity: 0.85;
  }

  /* Schwebende Karten edler */
  .hero-float-card {
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(4, 28, 51, 0.82);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.32);
  }

  /* Edlere Button-Hover */
  .btn-primary:hover {
    box-shadow: 0 18px 40px rgba(239, 189, 79, 0.36);
    filter: brightness(1.02);
  }

  .hero-home .btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.16);
  }
}


/* Web3Forms integration + Danke-Seite */
.hidden {
  display: none !important;
}
.form-status {
  min-height: 1.4em;
  margin: 10px 0 16px;
  color: var(--muted);
  font-weight: 800;
}
.form-status.error {
  color: #b42318;
}
.form-status.success {
  color: var(--green);
}
.contact-form button[disabled] {
  cursor: wait;
  opacity: 0.76;
  transform: none;
}
.thanks-hero {
  position: relative;
  overflow: hidden;
  min-height: 72vh;
  display: grid;
  place-items: center;
  padding: 96px 0;
  background:
    radial-gradient(circle at 25% 20%, rgba(239, 189, 79, 0.22), transparent 30%),
    radial-gradient(circle at 78% 28%, rgba(31, 143, 110, 0.18), transparent 34%),
    linear-gradient(135deg, #041f38 0%, #074e82 58%, #0b6fb6 100%);
}
.thanks-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 72px 72px;
}
.thanks-card {
  position: relative;
  z-index: 1;
  max-width: 760px;
  text-align: center;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 28px;
  padding: clamp(34px, 6vw, 62px);
  background: rgba(255,255,255,.94);
  box-shadow: 0 30px 80px rgba(0,0,0,.18);
}
.thanks-card h1 {
  margin-inline: auto;
  color: var(--navy);
}
.thanks-card p {
  max-width: 560px;
  margin: 0 auto 14px;
  font-size: 1.08rem;
}
.thanks-note a {
  color: var(--navy);
  font-weight: 900;
}
.checkmark-wrap {
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: rgba(31,143,110,.12);
  animation: checkPop .52s cubic-bezier(.2,.8,.2,1) both;
}
.checkmark {
  width: 82px;
  height: 82px;
}
.checkmark circle {
  fill: #1f8f6e;
  stroke: #1f8f6e;
  stroke-width: 3;
}
.checkmark path {
  fill: none;
  stroke: #fff;
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 62;
  stroke-dashoffset: 62;
  animation: checkDraw .72s .28s ease-out forwards;
}
@keyframes checkPop {
  from { opacity: 0; transform: scale(.72); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes checkDraw {
  to { stroke-dashoffset: 0; }
}
@media (max-width: 820px) {
  .thanks-hero {
    min-height: 68vh;
    padding: 58px 0;
  }
  .thanks-card {
    border-radius: 22px;
  }
  .checkmark-wrap {
    width: 92px;
    height: 92px;
  }
  .checkmark {
    width: 70px;
    height: 70px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .checkmark-wrap,
  .checkmark path {
    animation: none !important;
    stroke-dashoffset: 0;
  }
}


/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1000;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  width: min(720px, calc(100vw - 36px));
  border: 1px solid rgba(217, 228, 238, 0.94);
  border-radius: 18px;
  padding: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 70px rgba(5, 43, 79, 0.2);
  backdrop-filter: blur(18px);
}
.cookie-banner__content strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 1rem;
}
.cookie-banner__content p {
  margin: 0;
  max-width: 470px;
  font-size: 0.92rem;
  line-height: 1.45;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}
.cookie-banner__button {
  min-height: 40px;
  padding: 9px 13px;
  white-space: nowrap;
}
.cookie-banner__link {
  grid-column: 1 / -1;
  width: fit-content;
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-cookie-button {
  display: block;
  width: fit-content;
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.footer-cookie-button:hover,
.footer-cookie-button:focus-visible {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 820px) {
  .cookie-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
    border-radius: 16px;
  }
  .cookie-banner__actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .cookie-banner__button {
    width: 100%;
  }
}
