:root {
  --navy: #102b3d;
  --navy-2: #163c52;
  --green: #63b82f;
  --green-dark: #41861d;
  --blue: #148fd1;
  --blue-dark: #0875ad;
  --ink: #162633;
  --muted: #5c6c77;
  --soft: #f1f6f4;
  --line: #dce6e2;
  --white: #ffffff;
  --shadow: 0 20px 55px rgba(15, 43, 61, 0.13);
  --radius: 22px;
  --radius-small: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
svg { display: block; }
section[id] { scroll-margin-top: 90px; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}
.narrow { max-width: 850px; text-align: center; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed;
  left: 16px; top: 12px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--navy);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.91);
  border-bottom: 1px solid rgba(16,43,61,.08);
  backdrop-filter: blur(14px);
}
.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 1.55rem;
  letter-spacing: -.04em;
  line-height: 1;
}
.brand strong { color: var(--green-dark); font-weight: 800; }
.brand em { color: var(--blue); font-style: normal; font-weight: 800; }
.brand-mark {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 13px;
  background: linear-gradient(145deg, rgba(99,184,47,.16), rgba(20,143,209,.14));
}
.brand-mark svg { width: 31px; height: 31px; }
.brand-mark path {
  fill: none;
  stroke: var(--green-dark);
  stroke-width: 2.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav a {
  text-decoration: none;
  color: #30434f;
  font-size: .95rem;
  font-weight: 650;
}
.main-nav a:hover { color: var(--blue-dark); }
.main-nav .nav-cta {
  padding: 11px 17px;
  border-radius: 999px;
  color: #fff;
  background: var(--navy);
}
.main-nav .nav-cta:hover { color: #fff; background: var(--blue-dark); }
.menu-button { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 30px;
  background:
    radial-gradient(circle at 12% 20%, rgba(99,184,47,.13), transparent 26%),
    linear-gradient(180deg, #f8fbfa 0%, #fff 100%);
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}
.hero-glow-one {
  width: 420px; height: 420px;
  right: -160px; top: 50px;
  background: rgba(20,143,209,.08);
}
.hero-glow-two {
  width: 260px; height: 260px;
  left: 34%; bottom: -150px;
  background: rgba(99,184,47,.10);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 68px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--green-dark);
  font-size: .79rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow-light { color: #9be66d; }
.hero h1, .section h2 {
  margin: 0;
  color: var(--navy);
  letter-spacing: -.045em;
  line-height: 1.08;
}
.hero h1 { font-size: clamp(2.7rem, 5.1vw, 5.15rem); }
.hero h1 span {
  background: linear-gradient(90deg, var(--green-dark), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead {
  max-width: 690px;
  margin: 26px 0 0;
  color: #435966;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 21px;
  border: 0;
  border-radius: 11px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  box-shadow: 0 13px 28px rgba(65,134,29,.25);
}
.button-primary:hover { box-shadow: 0 16px 34px rgba(65,134,29,.34); }
.button-secondary {
  color: var(--navy);
  background: #fff;
  border: 1px solid #cfdad6;
}
.button-secondary:hover { border-color: var(--blue); }
.button-full { width: 100%; }
.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 29px 0 0;
  padding: 0;
  list-style: none;
  color: #52636d;
  font-size: .9rem;
  font-weight: 650;
}
.trust-list li {
  position: relative;
  padding-left: 21px;
}
.trust-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-dark);
  font-weight: 900;
}
.hero-visual { min-width: 0; }
.logo-card {
  position: relative;
  padding: 11px;
  border: 1px solid rgba(16,43,61,.11);
  border-radius: 30px;
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow);
}
.logo-card picture {
  display: block;
  overflow: hidden;
  border-radius: 22px;
}
.logo-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.status-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 190px;
  padding: 12px 15px;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 14px;
  color: var(--navy);
  background: #ffffff;
  box-shadow: 0 14px 35px rgba(15,43,61,.18);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  z-index: 4;
}
.status-card strong, .status-card small { display: block; }
.status-card strong { font-size: .88rem; }
.status-card small { margin-top: 2px; color: var(--muted); font-size: .71rem; }
.status-card-top { top: 26px; right: -23px; }
.status-card-bottom { left: -28px; bottom: 30px; }
.status-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(99,184,47,.15);
}
.status-card svg {
  width: 24px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 2;
  stroke-linecap: round;
}
.facts-bar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 72px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 13px 35px rgba(15,43,61,.07);
}
.facts-bar div {
  padding: 21px 25px;
  border-right: 1px solid var(--line);
}
.facts-bar div:last-child { border-right: 0; }
.facts-bar strong, .facts-bar span { display: block; }
.facts-bar strong { color: var(--navy); font-size: 1.02rem; }
.facts-bar span { color: var(--muted); font-size: .84rem; }
.footnote {
  margin-top: 9px;
  color: #7a898f;
  font-size: .73rem;
}

.section { padding: 104px 0; }
.intro-section { padding-bottom: 82px; }
.section-soft { background: var(--soft); }
.section h2 { font-size: clamp(2rem, 3.6vw, 3.45rem); }
.section-lead {
  margin: 24px 0 0;
  color: #435966;
  font-size: clamp(1.05rem, 1.7vw, 1.23rem);
}
.section-heading {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 48px;
}
.section-heading p {
  margin: 0 0 5px;
  color: var(--muted);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  padding: 28px;
  border: 1px solid #dbe5e1;
  border-radius: var(--radius);
  background: rgba(255,255,255,.88);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(20,143,209,.35);
  box-shadow: 0 18px 38px rgba(15,43,61,.09);
}
.icon-wrap {
  width: 49px; height: 49px;
  display: grid;
  place-items: center;
  margin-bottom: 23px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(99,184,47,.15), rgba(20,143,209,.12));
}
.icon-wrap svg {
  width: 25px;
  fill: none;
  stroke: var(--navy-2);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card h3, .check-panel h3, .security-box h3, .fit-card h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.25;
}
.service-card h3 { font-size: 1.17rem; }
.service-card p { margin: 11px 0 0; color: var(--muted); font-size: .95rem; }

.split-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 74px;
  align-items: center;
}
.split-grid > div > p:not(.section-lead) { color: var(--muted); }
.security-box {
  margin-top: 31px;
  padding: 23px 25px;
  border-left: 5px solid var(--green);
  border-radius: 0 15px 15px 0;
  background: #f2f8ef;
}
.security-box h3 { font-size: 1.03rem; }
.security-box p { margin: 8px 0 0; color: #52636d; }
.check-panel {
  padding: 35px;
  border-radius: 26px;
  color: #fff;
  background:
    radial-gradient(circle at 95% 10%, rgba(20,143,209,.45), transparent 36%),
    linear-gradient(145deg, var(--navy), #173f55);
  box-shadow: var(--shadow);
}
.check-panel h3 { color: #fff; font-size: 1.4rem; }
.check-list {
  margin: 22px 0 24px;
  padding: 0;
  list-style: none;
}
.check-list li {
  position: relative;
  padding: 11px 0 11px 28px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  color: #d9e6ec;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 11px;
  color: #a0eb70;
  font-weight: 900;
}
.text-link {
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}
.text-link span { color: #9be66d; }

.section-dark {
  color: #fff;
  background:
    radial-gradient(circle at 5% 15%, rgba(99,184,47,.16), transparent 25%),
    linear-gradient(135deg, #0e2637, #12384d);
}
.section-dark h2 { color: #fff; }
.security-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 80px;
}
.security-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.security-points article {
  display: flex;
  gap: 17px;
  padding: 10px 25px 29px;
}
.security-points article:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.12); }
.security-points article:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.12); }
.security-points article:nth-child(n+3) { padding-top: 29px; }
.security-points strong { color: #9be66d; font-size: .78rem; letter-spacing: .12em; }
.security-points h3 { margin: 0; color: #fff; font-size: 1.05rem; }
.security-points p { margin: 7px 0 0; color: #bfd0d8; font-size: .9rem; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}
.process-grid li {
  position: relative;
  min-height: 240px;
  padding: 27px 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}
.process-grid li::after {
  content: "";
  position: absolute;
  top: 48px; right: -15px;
  width: 15px;
  height: 1px;
  background: #bdcac6;
}
.process-grid li:last-child::after { display: none; }
.process-grid li > span {
  display: grid;
  place-items: center;
  width: 41px; height: 41px;
  margin-bottom: 25px;
  border-radius: 12px;
  color: #fff;
  background: var(--navy);
  font-weight: 900;
}
.process-grid h3 { margin: 0; color: var(--navy); font-size: 1.02rem; }
.process-grid p { margin: 9px 0 0; color: var(--muted); font-size: .89rem; }

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 70px;
  align-items: center;
}
.about-copy > p:not(.section-lead) { color: var(--muted); }
.quote {
  margin-top: 29px;
  padding: 22px 24px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 35px rgba(15,43,61,.07);
}
.quote p { margin: 0; color: var(--navy); font-weight: 750; font-size: 1.05rem; }
.fit-card {
  padding: 36px;
  border-radius: 25px;
  background: #fff;
  box-shadow: var(--shadow);
}
.fit-card h3 { font-size: 1.35rem; }
.fit-card ul {
  margin: 21px 0 0;
  padding: 0;
  list-style: none;
}
.fit-card li {
  position: relative;
  padding: 10px 0 10px 27px;
  border-bottom: 1px solid var(--line);
  color: #52636d;
}
.fit-card li:last-child { border-bottom: 0; }
.fit-card li::before {
  content: "";
  position: absolute;
  left: 1px; top: 17px;
  width: 10px; height: 10px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--green), var(--blue));
}

.faq-grid {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 75px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  position: relative;
  padding: 20px 44px 20px 0;
  color: var(--navy);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 5px; top: 15px;
  color: var(--blue);
  font-size: 1.65rem;
  font-weight: 400;
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list p {
  margin: -5px 44px 21px 0;
  color: var(--muted);
}

.contact-section {
  color: #fff;
  background:
    radial-gradient(circle at 10% 10%, rgba(99,184,47,.19), transparent 28%),
    radial-gradient(circle at 95% 90%, rgba(20,143,209,.22), transparent 30%),
    var(--navy);
}
.contact-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 70px;
  align-items: start;
}
.contact-section h2 { color: #fff; }
.contact-copy > p { color: #c9d8df; }
.contact-help {
  margin: 24px 0;
  padding: 0;
  list-style: none;
}
.contact-help li {
  position: relative;
  padding: 7px 0 7px 26px;
  color: #e4edf1;
}
.contact-help li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #9be66d;
  font-weight: 900;
}
.contact-note { font-size: .82rem; }
.contact-form {
  padding: 34px;
  border-radius: 24px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 25px 60px rgba(0,0,0,.22);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.contact-form label {
  display: block;
  margin-bottom: 15px;
  color: #344b58;
  font-size: .86rem;
  font-weight: 750;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  border: 1px solid #cdd9d5;
  border-radius: 10px;
  color: var(--ink);
  background: #fbfdfc;
  outline: 0;
  transition: border-color .2s, box-shadow .2s;
}
.contact-form textarea { resize: vertical; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(20,143,209,.11);
}
.privacy-check {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500 !important;
}
.privacy-check input {
  width: 18px;
  flex: 0 0 18px;
  margin-top: 4px;
}
.privacy-check a { color: var(--blue-dark); }
.form-status { min-height: 24px; margin: 10px 0 0; color: var(--muted); font-size: .83rem; }

.site-footer {
  padding: 62px 0 22px;
  color: #b6c6ce;
  background: #0a1c28;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr .7fr .7fr 1fr;
  gap: 45px;
}
.footer-brand { margin-bottom: 17px; }
.footer-grid p { max-width: 350px; margin: 0; font-size: .9rem; }
.footer-grid h2 {
  margin: 4px 0 16px;
  color: #fff;
  font-size: .87rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-grid > div > a:not(.brand),
.footer-grid > div > span {
  display: block;
  margin: 8px 0;
  color: #b6c6ce;
  text-decoration: none;
  font-size: .9rem;
}
.footer-grid > div > a:not(.brand):hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  padding-top: 19px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .78rem;
}

.legal-page { min-height: 100vh; background: var(--soft); }
.legal-header {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.legal-main {
  width: min(calc(100% - 40px), 860px);
  margin: 60px auto 90px;
  padding: 45px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 15px 45px rgba(15,43,61,.08);
}
.legal-main h1, .legal-main h2 { color: var(--navy); line-height: 1.2; }
.legal-main h1 { margin-top: 0; font-size: clamp(2rem, 4vw, 3.1rem); }
.legal-main h2 { margin-top: 34px; font-size: 1.25rem; }
.legal-main p, .legal-main li { color: #52636d; }
.placeholder-note {
  padding: 17px 19px;
  border: 1px solid #e3c365;
  border-radius: 12px;
  color: #604c0c !important;
  background: #fff8dd;
}
.placeholder {
  display: inline-block;
  padding: 1px 5px;
  border-radius: 4px;
  color: #713f00;
  background: #ffebaa;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  .main-nav { gap: 16px; }
  .main-nav a { font-size: .88rem; }
  .hero-grid { gap: 38px; }
  .status-card-top { right: -8px; }
  .status-card-bottom { left: -8px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid li::after { display: none; }
  .security-grid { grid-template-columns: 1fr; gap: 45px; }
}

@media (max-width: 820px) {
  .menu-button {
    display: flex;
    width: 45px; height: 42px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 9px;
    border: 0;
    border-radius: 10px;
    background: var(--soft);
  }
  .menu-button span:not(.sr-only) {
    width: 100%; height: 2px;
    background: var(--navy);
    transition: transform .2s, opacity .2s;
  }
  .menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav {
    position: absolute;
    left: 20px; right: 20px; top: 68px;
    display: none;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: #fff;
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 11px 12px; font-size: .96rem; }
  .main-nav .nav-cta { margin-top: 6px; text-align: center; }
  .hero { padding-top: 68px; }
  .hero-grid, .split-grid, .about-grid, .faq-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual { max-width: 650px; margin-inline: auto; }
  .facts-bar { grid-template-columns: 1fr 1fr; margin-top: 48px; }
  .facts-bar div:nth-child(2) { border-right: 0; }
  .facts-bar div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section { padding: 78px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .split-grid, .about-grid, .faq-grid, .contact-grid { gap: 42px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 580px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .nav-wrap { min-height: 68px; }
  .brand { font-size: 1.35rem; }
  .brand-mark { width: 38px; height: 38px; }
  .hero h1 { font-size: clamp(2.45rem, 13vw, 3.6rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .status-card { display: none; }
  .facts-bar { grid-template-columns: 1fr; }
  .facts-bar div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .facts-bar div:last-child { border-bottom: 0; }
  .service-grid, .process-grid, .security-points, .field-row {
    grid-template-columns: 1fr;
  }
  .security-points article,
  .security-points article:nth-child(odd),
  .security-points article:nth-child(-n+2),
  .security-points article:nth-child(n+3) {
    padding: 21px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }
  .security-points article:last-child { border-bottom: 0; }
  .check-panel, .fit-card, .contact-form { padding: 25px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .legal-main { margin-top: 30px; padding: 26px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}


/* Echtes Bildlogo plus Schriftzug */
.brand-picture {
  width: 70px;
  height: 46px;
  flex: 0 0 70px;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(16,43,61,.12);
  border-radius: 11px;
  background: #e9f1e9;
  box-shadow: 0 5px 14px rgba(15,43,61,.10);
}
.brand-picture picture,
.brand-picture img {
  display: block;
  width: 100%;
  height: 100%;
}
.brand-picture img {
  object-fit: cover;
  object-position: center;
}
.brand-wordmark {
  display: inline-flex;
  align-items: baseline;
}

/* Hero-Logo: Bild und Schrift getrennt, damit nichts verschwimmt */
.logo-card {
  overflow: visible;
  transform: none;
}
.logo-card .hero-logo-picture {
  display: block;
  overflow: hidden;
  border-radius: 22px 22px 0 0;
}
.logo-card .hero-logo-picture img {
  width: 100%;
  aspect-ratio: 2.13 / 1;
  object-fit: cover;
  object-position: center;
}
.hero-logo-lockup {
  padding: 17px 20px 20px;
  border-radius: 0 0 22px 22px;
  text-align: center;
  background: linear-gradient(90deg, #f7fbf4, #f4fafd);
}
.hero-logo-wordmark {
  display: flex;
  justify-content: center;
  align-items: baseline;
  line-height: .95;
  font-size: clamp(2.2rem, 5vw, 4.25rem);
  font-weight: 900;
  letter-spacing: -.075em;
  text-shadow: none;
}
.hero-logo-wordmark strong {
  color: var(--green-dark);
}
.hero-logo-wordmark em {
  color: var(--blue);
  font-style: normal;
}
.hero-logo-tagline {
  margin-top: 9px;
  color: #394c57;
  font-size: clamp(.74rem, 1.2vw, .98rem);
  font-weight: 750;
  letter-spacing: .035em;
}
.status-card {
  opacity: 1;
  filter: none;
  transform: translateZ(0);
}
.status-card strong,
.status-card small {
  opacity: 1;
  filter: none;
  text-shadow: none;
}
.status-card strong {
  color: #102b3d;
  font-weight: 850;
}
.status-card small {
  color: #52636d;
  font-weight: 600;
}
.footer-grid > div > a:not(.brand) {
  overflow-wrap: anywhere;
}

@media (max-width: 580px) {
  .brand-picture {
    width: 57px;
    height: 38px;
    flex-basis: 57px;
  }
  .brand-wordmark {
    font-size: 1.18rem;
  }
  .hero-logo-lockup {
    padding: 14px 12px 17px;
  }
}


/* Feinkorrektur: Betriebsdaten-Karte etwas tiefer, damit Glühbirne und Name sichtbar bleiben */
.status-card-bottom {
  left: 18px;
  bottom: 112px;
  min-width: 174px;
  padding: 10px 12px;
}
.status-card-bottom strong {
  font-size: .82rem;
}
.status-card-bottom small {
  font-size: .69rem;
}
.status-card-bottom svg {
  width: 21px;
}

@media (max-width: 1020px) {
  .status-card-bottom {
    left: 14px;
    bottom: 104px;
    min-width: 168px;
  }
}

@media (max-width: 820px) {
  .status-card-bottom {
    left: 12px;
    bottom: 98px;
    min-width: 160px;
  }
}



/* Direktversand des Kontaktformulars */
.form-trap {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.contact-form button:disabled {
  cursor: wait;
  opacity: .72;
  transform: none;
}
.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  font-size: .86rem;
  font-weight: 700;
}
.form-status.is-success {
  color: #2f7714;
}
.form-status.is-error {
  color: #a32929;
}
.form-noscript {
  margin: 14px 0 0;
  padding: 12px 14px;
  border-radius: 9px;
  color: #6b4c00;
  background: #fff4cc;
  font-size: .83rem;
}
.form-noscript a {
  color: var(--blue-dark);
}

.privacy-inline{margin:2px 0 17px;color:var(--muted);font-size:.84rem}
.privacy-inline a{color:var(--blue-dark)}
.legal-highlight{margin:22px 0;padding:19px 21px;border-left:4px solid var(--green);border-radius:0 12px 12px 0;background:#f1f8ee}
.legal-highlight h3{margin:0 0 8px;color:var(--navy);font-size:1rem}
.legal-highlight p{margin:0}


/* E-Mail-Adressen werden erst im Browser erzeugt */
.protected-email {
  overflow-wrap: anywhere;
}
