:root {
  --ink: #1a1a1a;
  --ink-soft: #555;
  --muted: #f7f7f7;
  --line: #e8e8e8;
  --white: #fff;
  --bluegray: #2c3e50;
  --max: 1120px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  font-size: 18px;
  line-height: 1.7;
}
a { color: inherit; text-decoration: none; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(20px, 4vw, 56px);
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(232,232,232,.7);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  letter-spacing: .04em;
}
.logo {
  width: 150px;
  height: auto;
  display: block;
}
.nav { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); font-size: 15px; color: var(--ink-soft); }
.nav a:hover { color: var(--ink); }
.section { padding: clamp(72px, 11vw, 132px) 24px; }
.container { width: min(100%, var(--max)); margin: 0 auto; }
.narrow { width: min(100%, 760px); }
.center { text-align: center; }
.hero { min-height: calc(90vh - 74px); display: grid; place-items: center; }
.hero-logo {
  width: min(320px, 70vw);
  height: auto;
  display: block;
  margin: 0 auto 34px;
}
.shield, .phone { font-size: 46px; margin-bottom: 34px; color: var(--ink); }
h1, h2, h3, p { margin-top: 0; }
h1 { font-weight: 300; letter-spacing: -.045em; line-height: 1.06; font-size: clamp(42px, 8vw, 76px); margin-bottom: 28px; }
h1 span { color: #a0a0a0; }
h2 { font-weight: 300; letter-spacing: -.03em; line-height: 1.15; font-size: clamp(32px, 5vw, 48px); margin-bottom: 22px; }
h3 { font-weight: 300; font-size: 24px; line-height: 1.25; margin-bottom: 14px; }
.lead { color: var(--ink-soft); font-size: clamp(18px, 2.3vw, 22px); font-weight: 300; max-width: 680px; margin: 0 auto 42px; }
.actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.actions .button {
  min-width: 200px;
  text-align: center;
}
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 28px; border: 1px solid var(--line); font-size: 16px; letter-spacing: .02em; transition: .2s ease; }
.button.primary { background: var(--ink); color: var(--white); border-color: var(--ink); }
.button.primary:hover { background: var(--bluegray); border-color: var(--bluegray); }
.button.secondary:hover { background: var(--muted); }
.button.light { background: var(--white); color: var(--ink); border-color: var(--white); }
.button.light:hover { background: #f0f0f0; }
.button.full { width: 100%; }
.trust-line { margin-top: 86px; display: flex; justify-content: center; align-items: center; gap: 28px; color: #aaa; }
.trust-line span { display: block; width: 72px; height: 1px; background: var(--line); }
.trust-line small, .eyebrow { font-size: 12px; letter-spacing: .28em; text-transform: uppercase; color: #999; }
.dark { background: linear-gradient(135deg, var(--ink), var(--bluegray)); color: var(--white); }
.dark p, .dark small { color: #d0d0d0; }
.dark .phone { color: var(--white); }
.muted { background: rgba(247,247,247,.72); }
.section-head { margin-bottom: 64px; }
.section-head p { max-width: 720px; margin: 0 auto; color: var(--ink-soft); font-weight: 300; }
.cards.three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.card { background: var(--white); border: 1px solid var(--line); padding: 38px 30px; }
.feature { text-align: center; background: transparent; border-color: transparent; }
.icon { width: 64px; height: 64px; display: grid; place-items: center; margin: 0 auto 22px; border: 1px solid var(--line); border-radius: 999px; font-size: 24px; }
.feature p, .price-card li, .note, .footnote { color: var(--ink-soft); font-weight: 300; }
.pricing-grid { width: min(100%, 860px); margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.price-card { border: 1px solid var(--line); padding: clamp(30px, 5vw, 48px); }
.price-card.soft { background: var(--muted); border-color: #eee; }
.price { margin: 8px 0 26px; color: #999; }
.price strong { color: var(--ink); font-size: 48px; font-weight: 300; }
ul { padding-left: 20px; }
.price-card ul { margin: 0 0 34px; padding-left: 0; list-style: none; }
.price-card li { position: relative; padding-left: 25px; margin: 12px 0; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--ink); }
.note { font-size: 13px; text-align: center; margin: 18px 0 0; }
.footnote { margin-top: 38px; font-size: 13px; color: #999; }
.faq-list { display: grid; gap: 14px; }
details { background: var(--white); border: 1px solid var(--line); padding: 0 24px; }
summary { cursor: pointer; padding: 22px 0; font-weight: 300; }
details p { color: var(--ink-soft); margin-bottom: 24px; }
.contact-box { margin-top: 30px; display: grid; gap: 12px; justify-content: center; }
.contact-box a { font-size: 20px; border-bottom: 1px solid var(--line); padding-bottom: 2px; }
.footer { border-top: 1px solid var(--line); padding: 28px 24px; color: #777; font-size: 15px; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; }
.footer p { margin: 0; }
.footer nav { display: flex; gap: 20px; }
.legal-page h1 { font-size: clamp(36px, 5vw, 52px); }
.legal-page h2 { font-size: 22px; margin-bottom: 10px; }
.legal-page section { margin: 34px 0; color: var(--ink-soft); font-size: 17px; line-height: 1.7}
.notice { border: 1px solid var(--line); background: var(--muted); padding: 18px 20px; }
@media (max-width: 760px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  .nav { width: 100%; overflow-x: auto; padding-bottom: 4px; }
  .cards.three, .pricing-grid { grid-template-columns: 1fr; }
  .trust-line { gap: 12px; }
  .trust-line span { width: 38px; }
}
@media (max-width: 760px) {
  .brand img {
    display: none;
  }
}
@media (max-width: 760px) {
  .button.primary {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.3;
  }
@media (max-width: 760px) {
  .pricing-cta .button {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.3;
  }

  .cta-sub {
    display: block;
    margin-top: 4px;
    font-size: 13px;
  }
}
  .cta-sub {
    display: block;
    margin-top: 4px;
    font-size: 13px;
  }
}
.hero-logo {
  width: 320px;
  max-width: 70vw;
  height: auto;
  display: block;
  margin: 0 auto 34px;
}
.hero img {
  max-height: none;
}
.secondary-action {
  margin-top: 16px;
  text-align: center;
}
.secondary-action {
  margin-top: 24px;
  text-align: center;
}
.secondary-action a {
  color: var(--ink-soft);
  font-size: 15px;
  border-bottom: 1px solid transparent;
  transition: 0.2s;
}
.secondary-action a:hover {
  color: var(--ink);
  border-color: var(--ink);
}
.cta-sub {
  display: inline;
}
.cta-sub {
  margin-left: 4px;
}
.modal-content {
  position: relative;
  width: min(100%, 420px);
  background: #ffffff; /* WICHTIG */
  color: #1a1a1a;       /* WICHTIG */
  padding: 36px 30px;
  text-align: center;
  border-radius: 6px;   /* optional */
  box-shadow: 0 20px 60px rgba(0,0,0,0.2); /* sichtbar machen */
}

.modal.is-open {
  display: grid;
}

.emergency-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--ink);
  stroke-width: 1.5;
}
.pricing-cta {
  margin-top: 40px;
  text-align: center;
}
.cta-sub {
  display: inline;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-company {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #777;
}

.footer-company img {
  height: 16px;
  width: auto;
  opacity: 0.8;
}
.footer-inner {
  flex-wrap: wrap;
}
.footer {
  border-top: 1px solid var(--line);
  padding: 40px 24px 28px;
  color: #777;
  font-size: 14px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer nav a {
  position: relative;
  color: #777;
  transition: 0.2s;
}

.footer nav a:hover {
  color: var(--ink);
}

.footer nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: var(--ink);
  transition: 0.2s;
}

.footer nav a:hover::after {
  width: 100%;
}
.footer-company {
  font-size: 12px;
  letter-spacing: 0.02em;
}
.contact-future {
  margin-top: 60px;
  font-size: 13px;
  color: #999;
  text-align: center;
}
.contact-alt {
  margin-top: 24px;
  font-size: 14px;
  color: #777;
}

.contact-alt a {
  color: var(--ink-soft);
  border-bottom: 1px solid transparent;
  transition: 0.2s;
}

.contact-alt a:hover {
  color: var(--ink);
  border-color: var(--ink);
}
.modal {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9999;
}

.modal.is-open {
  display: grid;
}

.modal-content {
  position: relative;
  width: min(100%, 420px);
  background: #ffffff;
  color: #1a1a1a;
  padding: 36px 30px;
  text-align: center;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: 0;
  background: transparent;
  color: #1a1a1a;
  font-size: 28px;
  cursor: pointer;
}

.modal-phone {
  margin: 22px 0 10px;
  font-size: 24px;
  font-weight: 400;
}

@media (max-width: 760px) {
  .pricing-cta .button,
  .contact-box .button {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 760px) {
  .emergency-actions {
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
  }

  .emergency-actions .button {
    width: auto;
  }

  .emergency-actions small {
    display: block;
    width: 100%;
    max-width: 320px;
    margin-left: 0 !important;
    text-align: center;
  }
}