:root {
  --bg: #fff;
  --ink: #101010;
  --muted: #656a70;
  --line: #d9dcdf;
  --soft: #f5f6f7;
  --mint: #79d9bd;
  --mint-dark: #0f7d64;
  --mint-pale: #eaf9f4;
  --pink: #e7b2ba;
  --max: 1180px;
  --radius: 28px;

  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
}

a {
  color: inherit;
}

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

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 1.2rem;
  letter-spacing: 0.18em;
  font-weight: 500;
}

.brand img {
  border-radius: 12px;
}

nav {
  display: flex;
  gap: 24px;
  margin-left: auto;
}

nav a,
.footer-links a {
  color: #3d4247;
  text-decoration: none;
}

nav a:hover,
.footer-links a:hover {
  color: var(--mint-dark);
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

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

.button-small {
  min-height: 42px;
  padding-inline: 18px;
  background: var(--ink);
  color: #fff;
  font-size: 0.92rem;
}

.button-primary {
  background: var(--mint);
  color: #082e25;
  box-shadow: 0 10px 28px rgba(25, 138, 108, 0.16);
}

.button-large {
  min-height: 58px;
  padding-inline: 28px;
}

.hero {
  padding: 76px 0 68px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 76% 22%,
      #f1f8f6 0,
      rgba(241, 248, 246, 0) 34%
    ),
    #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.35fr;
  align-items: center;
  gap: 50px;
}

.eyebrow {
  color: var(--mint-dark);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 16px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 1.2;
  letter-spacing: -0.045em;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.045em;
  margin-bottom: 24px;
}

h3 {
  font-size: clamp(1.5rem, 2.6vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.lead {
  max-width: 650px;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: #3f4449;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin: 32px 0 16px;
}

.text-link {
  font-weight: 700;
  text-decoration: none;
}

.microcopy {
  max-width: 560px;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.08);
}

/* Desktop-Hero sichtbar, Mobile-Hero standardmäßig verborgen */
.hero-desktop {
  display: block;
}

.hero-mobile {
  display: none;
}

.section {
  padding: 110px 0;
}

.soft {
  background: var(--soft);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.prose-lg {
  font-size: clamp(1.18rem, 2vw, 1.5rem);
  color: #3e4348;
}

.prose-lg p + p {
  margin-top: 24px;
}

.section-head {
  max-width: 880px;
  margin-bottom: 54px;
}

.section-head.narrow {
  max-width: 760px;
}

.section-head > p {
  color: var(--muted);
  font-size: 1.15rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.step-card {
  position: relative;
  min-height: 355px;
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.step-no {
  position: absolute;
  right: 28px;
  top: 24px;
  color: #9da2a7;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
}

.step-icon {
  width: 82px;
  height: 82px;
  object-fit: contain;
  margin-bottom: 30px;
}

.step-card p {
  color: var(--muted);
  font-size: 1.03rem;
}

.feature-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 78px;
  align-items: center;
  padding: 62px 0;
  border-top: 1px solid var(--line);
}

.feature-row.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.feature-row.reverse > :first-child {
  order: 2;
}

.feature-row.reverse > :last-child {
  order: 1;
}

.feature-copy {
  max-width: 510px;
}

.feature-copy p {
  color: var(--muted);
  font-size: 1.12rem;
}

.feature-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--mint-dark);
  font-weight: 800;
}

.phone-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: end;
}

.phone-pair img,
.phone-single img {
  width: 100%;
  max-height: 690px;
  object-fit: contain;
  border-radius: 30px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  background: #fff;
}

.phone-single {
  display: flex;
  justify-content: center;
}

.phone-single img {
  width: min(410px, 100%);
}

.statement {
  background: #101010;
  color: #fff;
}

.statement .eyebrow {
  color: var(--mint);
}

.statement-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
}

.statement h2 {
  margin-bottom: 0;
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 50px;
  padding: 54px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: linear-gradient(135deg, #fff 0%, var(--mint-pale) 100%);
}

.contact-card h2 {
  margin-bottom: 12px;
}

.contact-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.contact-link {
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  font-weight: 800;
  text-decoration: none;
  color: var(--mint-dark);
}

.site-footer {
  padding: 44px 0 52px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 40px;
  align-items: center;
}

.footer-brand {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-brand img {
  border-radius: 12px;
}

.footer-brand strong {
  letter-spacing: 0.12em;
}

.footer-brand span,
.footer-meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 20px;
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  nav {
    display: none;
  }

  .nav-wrap .button-small {
    margin-left: auto;
  }

  .hero-grid,
  .split,
  .feature-row,
  .feature-row.reverse {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 48px;
  }

  /* Desktop-Position des Hero-Bildes ausblenden */
  .hero-desktop {
    display: none;
  }

  /* Mobile-Kopie direkt unter der gewünschten Headline einblenden */
  .hero-mobile {
    display: block;
    width: 100%;
    height: auto;
    margin: 28px 0 30px;
    border-radius: 24px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
  }

  .split,
  .feature-row {
    gap: 38px;
  }

  .feature-row.reverse > :first-child,
  .feature-row.reverse > :last-child {
    order: initial;
  }

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

  .step-card {
    min-height: auto;
  }

  .statement-inner,
  .contact-card {
    align-items: start;
    flex-direction: column;
    display: flex;
  }

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

@media (max-width: 600px) {
  .wrap {
    width: min(100% - 24px, var(--max));
  }
  .site-header .brand img {
    width: 96px;
    height: 96px;
  }
  .site-header .brand span {
    display: none;
  }

  .button-small {
    font-size: 0.82rem;
    padding-inline: 13px;
  }

  .section {
    padding: 76px 0;
  }

  .hero {
    padding-bottom: 48px;
  }

  .hero-grid {
    gap: 30px;
  }

  .hero-mobile {
    margin: 22px 0 26px;
    border-radius: 18px;
  }

  .phone-pair {
    gap: 10px;
  }

  .contact-card {
    padding: 32px 24px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}
