:root {
  --gunmetal: rgb(70, 75, 78);         /* #464B4E */
  --accent: rgb(214, 126, 47);         /* #D67E2F */

  --bg: #ffffff;
  --bg-soft: rgba(70, 75, 78, 0.035);

  --text: rgba(70, 75, 78, 0.92);
  --muted: rgba(70, 75, 78, 0.72);

  --border: rgba(70, 75, 78, 0.10);
  --radius: 16px;
  --shadow: 0 10px 26px rgba(0, 0, 0, 0.06);

  --container: 1120px;
  --reading: 760px;

  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4rem;
  --space-8: 6rem;
}

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

html { font-size: 16px; }

body {
  margin: 0;
  font-family: "Source Sans 3", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--border);
  padding: 0.6rem 0.9rem;
  border-radius: 10px;
  z-index: 999;
}
.skip-link:focus { left: 12px; }

/* Layout */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: var(--space-8) 0; }

.section + .section {
  border-top: 1px solid rgba(70, 75, 78, 0.06);
}

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

/* Typography (zentriert wie Screenshot) */
h1, h2, h3 {
  margin: 0 0 var(--space-3);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.25;
  text-align: center;
}

h1 { font-size: clamp(2.1rem, 3vw, 3.2rem); margin-bottom: var(--space-4); }
h2 { font-size: clamp(1.65rem, 2.2vw, 2.2rem); margin-bottom: var(--space-4); }
h3 { font-size: 1.05rem; margin-bottom: 0.35rem; }

p {
  margin: 0 auto var(--space-3);
  max-width: var(--reading);
  color: var(--muted);
  text-align: center;
}

.intro { font-size: 1.12rem; margin-bottom: var(--space-5); }

.justify {
  text-align: justify;
  text-justify: inter-word;
  max-width: 920px;
}

.text-block { margin-top: var(--space-5); }

/* Links */
a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(214, 126, 47, 0.45);
}
a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(70, 75, 78, 0.07);
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  gap: 1.5rem;
}

.logo img { display: block; height: 34px; width: auto; }

/* Nav */
.nav {
  list-style: none;
  display: flex;
  gap: 2rem;
  padding: 0;
  margin: 0;
}

.nav a {
  border-bottom: none;
  font-weight: 400;
  color: rgba(70, 75, 78, 0.82);
  padding: 0.3rem 0;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  height: 2px;
  width: 0;
  background: rgba(214, 126, 47, 0.9);
  transition: width 160ms ease;
  border-radius: 2px;
}

.nav a:hover { color: rgba(70, 75, 78, 0.95); }
.nav a:hover::after { width: 100%; }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--space-8) + 1rem);
}

.hero-inner { position: relative; z-index: 1; }

.hero-watermark {
  position: absolute;
  inset: 0;
  background-image: url("assets/logo.png");
  background-repeat: no-repeat;
  background-position: center 28%;
  background-size: 280px;
  opacity: 0.03; /* 3% */
  pointer-events: none;
  filter: grayscale(100%);
}

.hero-logo {
  width: 92px;
  height: 92px;
  margin: 0 auto var(--space-5);
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(70, 75, 78, 0.03);
  border: 1px solid rgba(70, 75, 78, 0.06);
}

.hero-logo img { width: 56px; height: auto; opacity: 0.9; }

/* Buttons */
.cta-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: var(--space-4);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.6rem;
  border-radius: 12px;
  font-weight: 600;
  border: 2px solid rgba(70, 75, 78, 0.45);
  background: #fff;
  color: rgba(70, 75, 78, 0.9);
  text-decoration: none;
  transition: transform 120ms ease, box-shadow 120ms ease, border-color 120ms ease;
  min-width: 220px;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
  border-color: rgba(70, 75, 78, 0.55);
}

.button-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.button-primary:hover { box-shadow: 0 12px 28px rgba(214, 126, 47, 0.18); }

.button-secondary { background: #fff; }

/* Feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
  max-width: var(--container);
  margin: var(--space-7) auto 0;
}

.feature { text-align: center; }

.feature .icon {
  width: 80px;
  height: 80px;
  border-radius: 999px;
  margin: 0 auto 1rem;
  background: rgba(214, 126, 47, 0.10);
  display: grid;
  place-items: center;
}

.feature .icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.feature p {
  max-width: 360px;
  margin: 0 auto;
  text-align: center;
}

/* Benefit card + SVG check circle as bullet */
.benefit-card {
  max-width: 980px;
  margin: var(--space-6) auto 0;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(70, 75, 78, 0.10);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 1.5rem 1.75rem;
}

.benefit-list {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
  max-width: none;
}

.benefit-list li {
  display: flex;
  gap: 0.9rem;
  padding: 0.85rem 0;
  color: rgba(70, 75, 78, 0.78);
  border-bottom: 1px solid rgba(70, 75, 78, 0.06);
}

.benefit-list li:last-child { border-bottom: none; }

.benefit-list li::before {
  content: "";
  width: 28px;
  height: 28px;
  border-radius: 999px;
  flex: 0 0 28px;
  margin-top: 0.05rem;
  background-image: url("assets/icons/checkmarkcircle.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.98;
}

.note-center {
  text-align: center !important;
  color: rgba(70, 75, 78, 0.62);
  margin-top: 1.5rem;
  max-width: 510px;
}

/* =========================
   NEW: Preis-Hinweisbox (ohne Seitenstrich)
   ========================= */
.price-note {
  max-width: 510px;
  margin: var(--space-6) auto 0;
  padding: 1.35rem 1.5rem;
  text-align: center;
  font-weight: 600;
  color: rgba(70, 75, 78, 0.84);

  background: rgba(214, 126, 47, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(214, 126, 47, 0.08);
}
/* Mobile: etwas weniger Padding */
@media (max-width: 780px) {
  .price-note { padding: 1.05rem 1.1rem; }
}

/* Cards (Leistungen) */
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin: var(--space-6) auto var(--space-5);
  max-width: var(--container);
}

.card {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  background: rgba(70, 75, 78, 0.03);
  border: 1px solid rgba(70, 75, 78, 0.06);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  text-align: left;
}

.card h3 { text-align: left; margin-bottom: 0.25rem; }
.card p { text-align: left; margin: 0; max-width: none; }

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(214, 126, 47, 0.10);
  display: grid;
  place-items: center;
  flex: 0 0 56px;
}

.card-icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

/* Callout + CTA */
.callout {
  max-width: 920px;
  margin: var(--space-6) auto 0;
  background: rgba(214, 126, 47, 0.06);
  border-radius: var(--radius);
  border-left: 6px solid rgba(214, 126, 47, 0.9);
  padding: 1.35rem 1.5rem;
  text-align: center;
  color: rgba(70, 75, 78, 0.82);
}

.center-cta {
  display: flex;
  justify-content: center;
  margin-top: var(--space-6);
}

/* FAQ */
.faq-wrap { margin-top: var(--space-6); }

.faq-item {
  max-width: 920px;
  margin: 0 auto 1rem;
  border: 1px solid rgba(70, 75, 78, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.75);
  padding: 1.05rem 1.25rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 400;
  color: rgba(70, 75, 78, 0.86);
  list-style: none;
  text-align: left;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "▾";
  float: right;
  color: rgba(70, 75, 78, 0.55);
}

.faq-item p {
  text-align: left;
  margin: 0.9rem 0 0;
  max-width: none;
}

/* Kontakt */
.contact-form {
  max-width: 980px;
  margin: var(--space-6) auto 0;
  background: rgba(70, 75, 78, 0.02);
  border: 1px solid rgba(70, 75, 78, 0.07);
  border-radius: 18px;
  padding: 2rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

label {
  font-weight: 600;
  color: rgba(70, 75, 78, 0.84);
}

input,
textarea {
  font: inherit;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(70, 75, 78, 0.18);
  background: #fff;
  color: rgba(70, 75, 78, 0.92);
  outline: none;
}

input:focus,
textarea:focus {
  border-color: rgba(214, 126, 47, 0.65);
  box-shadow: 0 0 0 5px rgba(214, 126, 47, 0.12);
}

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

.contact-form button.button-primary {
  width: 100%;
  min-width: 0;
  border-radius: 12px;
  padding: 1.05rem 1.2rem;
  margin-top: 0.75rem;
}

.form-note {
  margin: 0.9rem auto 0;
  max-width: 980px;
  font-size: 0.92rem;
  color: rgba(70, 75, 78, 0.62);
  text-align: center;
}

/* Footer */
.site-footer {
  background: var(--gunmetal);
  color: rgba(255,255,255,0.82);
}

.footer-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 3.5rem 2rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.site-footer h4 {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  text-align: left;
}

.site-footer p {
  margin: 0 0 0.8rem;
  color: rgba(255,255,255,0.72);
  text-align: left;
  max-width: none;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li { margin: 0 0 0.85rem; }

.footer-links a,
.site-footer a {
  color: rgba(255,255,255,0.82);
  border-bottom: none;
}

.footer-links a:hover,
.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(214, 126, 47, 0.9);
  text-underline-offset: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.14);
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  text-align: center;
  color: rgba(255,255,255,0.62);
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .nav { gap: 1.25rem; }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 780px) {
  .container { padding: 0 1.25rem; }

  .header-inner {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.25rem;
  }

  .section { padding: var(--space-7) 0; }

  /* Blocksatz am Handy vermeiden */
  .justify { text-align: left; }

  .feature-grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }

  .button { min-width: 0; width: 100%; }
  .cta-row { width: 100%; }

  .contact-form { padding: 1.5rem; }
  textarea { min-height: 180px; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-container { padding: 3rem 1.25rem 2rem; }

  .hero-watermark { background-size: 220px; }
}

/* =========================
   Legal Pages (Impressum/Datenschutz)
   ========================= */

.legal-card {
  max-width: 980px;
  margin: var(--space-6) auto 0;
  background: rgba(70, 75, 78, 0.02);
  border: 1px solid rgba(70, 75, 78, 0.07);
  border-radius: 18px;
  padding: 2rem;
}

.legal-card h2 {
  text-align: left;
  margin-top: 1.5rem;
}

.legal-card h2:first-of-type { margin-top: 0; }

.legal-text {
  text-align: left;
  max-width: none;
}

/* Button im Footer (Cookie-Einstellungen) */
.footer-link-button {
  background: transparent;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  color: rgba(255,255,255,0.82);
  text-align: left;
}
.footer-link-button:hover {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(214, 126, 47, 0.9);
  text-underline-offset: 3px;
}

/* =========================
   Cookie Banner
   ========================= */

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  padding: 1rem;
  background: rgba(70, 75, 78, 0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.15);
}

.cookie-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-text h4 {
  margin: 0 0 0.35rem;
  color: rgba(255,255,255,0.95);
  font-size: 1.05rem;
}

.cookie-text p {
  margin: 0;
  max-width: 720px;
  text-align: left;
  color: rgba(255,255,255,0.75);
}

.cookie-text a {
  color: rgba(255,255,255,0.9);
  border-bottom: 1px solid rgba(214,126,47,0.7);
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-btn {
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.25);
  background: transparent;
  color: rgba(255,255,255,0.9);
  cursor: pointer;
}

.cookie-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.cookie-secondary:hover,
.cookie-btn:hover {
  border-color: rgba(255,255,255,0.38);
}

@media (max-width: 780px) {
  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-actions {
    width: 100%;
  }
  .cookie-btn {
    width: 100%;
  }
}
