:root {
  --green: #2f963d;
  --green-dark: #22732d;
  --ink: #20272b;
  --ink-soft: #374151;
  --muted: #667085;
  --line: #d9e1df;
  --bg: #f7faf8;
  --white: #ffffff;
  --danger: #8a3400;
  --shadow: 0 24px 70px rgba(32, 39, 43, 0.12);
  --radius: 22px;
  --max: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; }

a { color: inherit; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 4px solid rgba(47, 150, 61, 0.35);
  outline-offset: 4px;
  border-radius: 10px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 999;
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 999px;
}

.skip-link:focus { top: 1rem; }

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(217, 225, 223, 0.85);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand small {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.nav { display: flex; align-items: center; gap: 1.4rem; }

.nav a,
.site-footer a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 650;
}

.nav a:hover,
.site-footer a:hover { color: var(--green); }

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  font-weight: 750;
}

.header-cta:hover { background: var(--green); }

.hero {
  padding: clamp(4.5rem, 8vw, 8rem) 0;
  background:
    radial-gradient(circle at 78% 20%, rgba(47, 150, 61, 0.20), transparent 32rem),
    linear-gradient(135deg, #ffffff 0%, #eef6f0 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--green-dark);
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

h1, h2, h3, p { overflow-wrap: break-word; }

h1 {
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  max-width: 980px;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

h3 {
  margin: 0 0 0.65rem;
  font-size: 1.2rem;
  line-height: 1.25;
}

.hero-text {
  margin: 1.55rem 0 0;
  max-width: 710px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.hero-actions,
.contact-actions,
.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.18rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 850;
  border: 2px solid transparent;
  cursor: pointer;
  font: inherit;
}

.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-dark); }

.btn-secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
}

.btn-secondary:hover {
  border-color: var(--green);
  color: var(--green-dark);
}

.btn-secondary.light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  list-style: none;
  padding: 0;
  margin: 1.7rem 0 0;
}

.trust-list li,
.tag-list span {
  border: 1px solid rgba(47, 150, 61, 0.18);
  background: rgba(255,255,255,0.7);
  border-radius: 999px;
  padding: 0.55rem 0.75rem;
  color: var(--ink-soft);
  font-weight: 700;
}

.hero-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 10px);
  padding: clamp(1.5rem, 4vw, 2.4rem);
  box-shadow: var(--shadow);
}

.hero-card img {
  display: block;
  width: min(100%, 390px);
  margin: 0 auto;
  object-fit: contain;
}

.hero-card-text {
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
  margin-top: 1.25rem;
}

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

.hero-card-text strong { font-size: 1.25rem; }

.hero-card-text span { color: var(--muted); }

.section { padding: clamp(4rem, 8vw, 7rem) 0; }

.section-head {
  max-width: 780px;
  margin-bottom: 2.5rem;
}

.section-head p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  margin-top: 1rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 14px 35px rgba(32, 39, 43, 0.06);
}

.card p,
.benefit p,
.steps span,
.contact p,
.fineprint { color: var(--muted); }

.icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: rgba(47, 150, 61, 0.12);
  color: var(--green-dark);
  font-weight: 900;
  margin-bottom: 1rem;
}

.section-dark {
  background:
    radial-gradient(circle at 10% 20%, rgba(47, 150, 61, 0.28), transparent 24rem),
    linear-gradient(135deg, #20272b, #111719);
  color: var(--white);
}

.section-dark .eyebrow,
.section-dark h2 { color: var(--white); }

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 6vw, 5rem);
}

.benefits { display: grid; gap: 1rem; }

.benefit {
  padding: 1.3rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
}

.benefit p {
  color: rgba(255,255,255,0.78);
  margin: 0;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.steps li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
}

.steps strong,
.steps span { display: block; }

.steps strong { margin-bottom: 0.7rem; }

.examples { background: var(--white); }

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tag-list span { background: var(--bg); }

.contact {
  background:
    radial-gradient(circle at 85% 25%, rgba(47, 150, 61, 0.32), transparent 25rem),
    linear-gradient(135deg, #111719, #20272b);
  color: var(--white);
}

.contact-box {
  max-width: 860px;
  text-align: center;
}

.contact .eyebrow { color: rgba(255,255,255,0.82); }

.contact p {
  color: rgba(255,255,255,0.78);
  font-size: 1.08rem;
}

.contact-form {
  margin: 2rem auto 0;
  max-width: 680px;
  text-align: left;
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  padding: clamp(1rem, 4vw, 2rem);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-row label,
.form-check label { font-weight: 750; }

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

textarea { resize: vertical; }

.form-check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  margin: 1rem 0;
}

.form-check input {
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.25rem;
}

.form-check a { color: var(--green-dark); }

.fineprint {
  margin-top: 1.2rem;
  font-size: 0.92rem;
}

.site-footer {
  padding: 1.5rem 0;
  background: #0b0f10;
  color: rgba(255,255,255,0.7);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer p { margin: 0; }

.site-footer nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer a { color: rgba(255,255,255,0.72); }


.legal-page {
  padding: clamp(3rem, 7vw, 6rem) 0;
  background: linear-gradient(135deg, #ffffff 0%, #eef6f0 100%);
}

.legal-content {
  max-width: 900px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.3rem, 4vw, 3rem);
  box-shadow: var(--shadow);
}

.legal-content h1 {
  font-size: clamp(2.3rem, 5vw, 4rem);
  margin-bottom: 2rem;
}

.legal-content h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin: 2rem 0 0.75rem;
}

.legal-content p {
  color: var(--ink-soft);
}

.notice-box {
  margin-top: 2rem;
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid #fed7aa;
  background: #fff7ed;
  color: var(--danger);
}


@media (max-width: 920px) {
  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .header-cta {
    display: none;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 0.85rem 1rem;
    border-radius: 12px;
  }

  .nav a:hover {
    background: var(--bg);
  }

  .nav-cta-mobile {
    display: inline-flex;
    justify-content: center;
    margin-top: 0.35rem;
    background: var(--ink);
    color: var(--white) !important;
    font-weight: 800;
  }

  .nav-cta-mobile:hover {
    background: var(--green);
  }

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

  .hero-card {
    max-width: 560px;
  }

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

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

@media (max-width: 620px) {
  .brand img { width: 48px; height: 48px; }

  .brand strong { font-size: 0.95rem; }

  .brand small { font-size: 0.7rem; }

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

  .btn { width: 100%; }

  .hero { padding-top: 3.4rem; }

  .form-check { grid-template-columns: 1fr; }

  .consent-banner { inset: auto 0.5rem 0.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}


.about-hero {
  padding: clamp(4.5rem, 8vw, 8rem) 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(47, 150, 61, 0.18), transparent 30rem),
    linear-gradient(135deg, #ffffff 0%, #eef6f0 100%);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.text-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.2rem, 3vw, 2rem);
  box-shadow: 0 14px 35px rgba(32, 39, 43, 0.06);
}

.text-panel p {
  color: var(--ink-soft);
  margin-top: 0;
}

.text-panel p:last-child {
  margin-bottom: 0;
}

@media (max-width: 920px) {
  .about-hero-grid {
    grid-template-columns: 1fr;
  }
}


.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin: 1rem 0 0;
  font-weight: 750;
}

.form-status[data-state="success"] {
  color: var(--green-dark);
}

.form-status[data-state="error"] {
  color: var(--danger);
}

.form-status[data-state="pending"] {
  color: var(--muted);
}

button[disabled] {
  opacity: 0.65;
  cursor: wait;
}


.consent-banner {
  position: fixed !important;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 9999;
}

.consent-box {
  width: min(860px, 100%);
  margin: 0 auto;
  background: #ffffff;
  color: #20272b;
  border: 1px solid #d9e1df;
  border-radius: 22px;
  padding: 1.25rem;
  box-shadow: 0 24px 70px rgba(32, 39, 43, 0.22);
}

.consent-box h2 {
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
}

.consent-box p {
  margin: 0;
  color: #667085;
}

.consent-options {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.consent-options label {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  font-weight: 700;
}

.consent-options input {
  width: auto;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

@media (max-width: 620px) {
  .consent-banner {
    left: 0.5rem;
    right: 0.5rem;
    bottom: 0.5rem;
  }

  .consent-actions .btn {
    width: 100%;
  }
}




/* Navigation: Desktop + Mobile Hamburger */
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  cursor: pointer;
  padding: 0.65rem;
  flex-shrink: 0;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span + span {
  margin-top: 6px;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-cta-mobile {
  display: none;
}

.link-button {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  color: rgba(255,255,255,0.72);
  font: inherit;
  font-weight: 650;
  cursor: pointer;
}

.link-button:hover {
  color: var(--green);
}

/* Cookie Opt-in als Overlay */
body.consent-open {
  overflow: hidden;
}

.consent-banner {
  position: fixed !important;
  inset: 0 !important;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(11, 15, 16, 0.68);
  backdrop-filter: blur(8px);
}

.consent-banner[hidden] {
  display: none !important;
}

.consent-box {
  width: min(860px, 100%);
  margin: 0 auto;
  background: #ffffff;
  color: #20272b;
  border: 1px solid #d9e1df;
  border-radius: 22px;
  padding: clamp(1.1rem, 4vw, 1.6rem);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

@media (max-width: 920px) {
  .site-header {
    z-index: 100;
  }

  .header-inner {
    position: relative;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .header-cta {
    display: none;
  }

  .nav {
    position: absolute;
    top: calc(100% + 0.7rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 0.85rem 1rem;
    border-radius: 12px;
  }

  .nav a:hover {
    background: var(--bg);
  }

  .nav-cta-mobile {
    display: inline-flex;
    justify-content: center;
    margin-top: 0.35rem;
    background: var(--ink);
    color: var(--white) !important;
    font-weight: 800;
  }

  .nav-cta-mobile:hover {
    background: var(--green);
  }
}

@media (max-width: 620px) {
  .consent-banner {
    inset: 0 !important;
    padding: 0.75rem;
    place-items: end center;
  }

  .consent-box {
    max-height: calc(100vh - 1.5rem);
    overflow: auto;
  }
}
