:root {
  --green: #6da520;
  --green-dark: #4c7f14;
  --green-soft: #edf6e2;
  --ink: #172033;
  --muted: #5d687a;
  --line: #dfe6dd;
  --bg: #ffffff;
  --soft: #f7faf5;
  --shadow: 0 22px 70px rgba(20, 35, 50, .10);
  --radius: 24px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}
a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
.brand { display: inline-flex; align-items: center; text-decoration: none; flex: 0 0 auto; }
.brand picture { display: block; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 52px);
}
.brand img { height: 78px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 650;
  padding: 10px 13px;
  border-radius: 999px;
}
.main-nav a:hover, .main-nav a.active { color: var(--green-dark); background: var(--green-soft); }
.nav-toggle { display: none; }
main { overflow: hidden; }
.hero, .section, .page-hero, .site-footer { padding-inline: clamp(18px, 4vw, 52px); }
.hero {
  max-width: calc(var(--max) + 104px);
  margin: 0 auto;
  padding-top: clamp(46px, 8vw, 90px);
  padding-bottom: clamp(44px, 7vw, 78px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, .98fr);
  align-items: center;
  gap: clamp(30px, 5vw, 66px);
}
.hero h1, .page-hero h1, .section h2 {
  letter-spacing: -.035em;
  line-height: 1.08;
  margin: 0 0 18px;
}
.hero h1 { font-size: clamp(2.2rem, 5.4vw, 4.8rem); }
.page-hero h1 { font-size: clamp(2rem, 4.6vw, 4.2rem); }
.section h2 { font-size: clamp(1.8rem, 3vw, 3rem); }
.lead { font-size: clamp(1.08rem, 1.5vw, 1.3rem); color: var(--muted); max-width: 760px; }
.eyebrow {
  color: var(--green-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: .82rem;
  margin: 0 0 12px;
}
.hero-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 13px 20px;
  min-height: 48px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn.primary { background: var(--green); color: #fff; box-shadow: 0 12px 26px rgba(109,165,32,.28); }
.btn.primary:hover { background: var(--green-dark); }
.btn.secondary { background: var(--green-soft); color: var(--green-dark); }
.btn.full { width: 100%; }
.card-image, .mini-card, .price-card, .panel-card, .content-card, .contact-form, .feature-row {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card-image { padding: 10px; overflow: hidden; }
.card-image img { border-radius: calc(var(--radius) - 10px); width: 100%; }
.section { max-width: calc(var(--max) + 104px); margin: 0 auto; padding-top: clamp(42px, 7vw, 82px); padding-bottom: clamp(42px, 7vw, 82px); }
.section.soft { background: var(--soft); max-width: none; }
.section.soft > * { max-width: var(--max); margin-left: auto; margin-right: auto; }
.section-head { max-width: 850px; margin-bottom: 32px; }
.section-head p { color: var(--muted); }
.feature-grid { display: grid; gap: 18px; }
.feature-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.mini-card { padding: 22px; box-shadow: none; }
.mini-card h3 { margin-top: 0; margin-bottom: 8px; }
.mini-card p { margin: 0; color: var(--muted); }
.mini-card.highlight { border-color: #b9d995; background: linear-gradient(180deg, #fff, var(--green-soft)); }
.split, .split-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.cta-band { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; }
.cta-band > * { margin: 0; }
.check-list { list-style: none; padding: 0; margin: 18px 0; display: grid; gap: 10px; }
.check-list li { position: relative; padding-left: 30px; }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 900;
  font-size: .86rem;
}
.check-list.compact { gap: 7px; font-size: .96rem; }
.text-link { color: var(--green-dark); font-weight: 800; }
.page-hero { max-width: calc(var(--max) + 104px); margin: 0 auto; padding-top: 64px; padding-bottom: 34px; }
.page-hero.narrow { max-width: 980px; }
.feature-list { display: grid; gap: 26px; }
.feature-row { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; align-items: center; padding: clamp(18px, 3vw, 30px); }
.feature-row.reverse { grid-template-columns: 1.1fr .9fr; }
.feature-row.reverse div { order: 2; }
.feature-row.reverse img { order: 1; }
.feature-row img { border-radius: 18px; border: 1px solid var(--line); }
.note { background: var(--green-soft); border-left: 4px solid var(--green); padding: 12px 14px; border-radius: 14px; color: #31520f; }
.price-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 18px; align-items: stretch; }
.price-card { padding: 22px; display: flex; flex-direction: column; gap: 10px; box-shadow: none; }
.price-card.featured { border: 2px solid var(--green); box-shadow: var(--shadow); transform: translateY(-6px); }
.badge { align-self: flex-start; background: var(--green-soft); color: var(--green-dark); border-radius: 999px; padding: 5px 10px; font-size: .8rem; font-weight: 900; }
.price-card h2 { font-size: 1.35rem; margin: 0; letter-spacing: -.02em; }
.price-card p { color: var(--muted); margin: 0; }
.price { margin: 8px 0; }
.price strong { font-size: 2rem; display: block; letter-spacing: -.04em; }
.price span { color: var(--muted); font-size: .92rem; }
.small { font-size: .92rem; }
.buy-form { margin-top: auto; display: grid; gap: 10px; }
.buy-form label, .contact-form label { display: grid; gap: 6px; color: var(--muted); font-weight: 700; }
input, select, textarea {
  font: inherit;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  width: 100%;
}
.panel-card, .content-card, .contact-form { padding: clamp(20px, 3vw, 32px); }
.plain-list { padding-left: 19px; color: var(--muted); }
.step-list { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; counter-reset: steps; }
.step-list li { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 20px; counter-increment: steps; }
.step-list li::before { content: counter(steps); width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: var(--green); color: #fff; font-weight: 900; margin-bottom: 12px; }
.step-list span { display: block; color: var(--muted); margin-top: 6px; }
.faq-list { max-width: 900px; }
details { border: 1px solid var(--line); border-radius: 18px; padding: 16px 18px; margin-bottom: 12px; background: #fff; }
summary { cursor: pointer; font-weight: 800; }
details p { color: var(--muted); }
.download-box .version { font-size: 1.25rem; color: var(--ink); }
.legal-placeholder { border-style: dashed; }
.code-note { white-space: pre-wrap; background: #172033; color: #e8f0e3; padding: 18px; border-radius: 16px; overflow: auto; }
.site-footer { border-top: 1px solid var(--line); background: #111827; color: #e5e7eb; padding-top: 40px; padding-bottom: 22px; }
.footer-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 24px; }
.site-footer a { display: block; color: #cbd5e1; text-decoration: none; margin-top: 8px; }
.site-footer a:hover { color: #fff; }
.copyright { max-width: var(--max); margin: 30px auto 0; color: #9ca3af; font-size: .92rem; }
@media (max-width: 1120px) {
  .price-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-grid.four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 860px) {
  .brand { display: inline-flex; align-items: center; text-decoration: none; flex: 0 0 auto; }
.brand picture { display: block; }
.site-header { align-items: flex-start; }
  .brand img { height: 62px; width: auto; }
  .nav-toggle { display: inline-flex; border: 1px solid var(--line); background: #fff; border-radius: 999px; padding: 9px 13px; font-weight: 800; }
  .main-nav { display: none; position: absolute; right: 18px; top: 70px; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); padding: 10px; flex-direction: column; align-items: stretch; min-width: 210px; }
  .main-nav.open { display: flex; }
  .hero, .split, .split-panel, .cta-band, .feature-row, .feature-row.reverse { grid-template-columns: 1fr; }
  .feature-row.reverse div, .feature-row.reverse img { order: initial; }
  .step-list, .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .price-grid, .feature-grid.four { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .hero-actions, .cta-actions { flex-direction: column; }
  .btn { width: 100%; }
}

/* Startseite V2 - klare Landingpage-Richtung */
.home-hero {
  position: relative;
  max-width: calc(var(--max) + 180px);
  margin: 0 auto;
  padding: clamp(34px, 5vw, 72px) clamp(18px, 4vw, 52px) clamp(30px, 4vw, 54px);
  display: grid;
  grid-template-columns: minmax(340px, .9fr) minmax(460px, 1.1fr);
  align-items: center;
  gap: clamp(28px, 4vw, 58px);
  overflow: visible;
}
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 90% 35%, rgba(109,165,32,.18), transparent 34%),
    linear-gradient(120deg, #fff 0%, #fff 38%, #f6f9f3 100%);
}
.home-hero::after {
  content: "";
  position: absolute;
  right: -5%;
  bottom: 8%;
  width: 48%;
  height: 52%;
  border-radius: 55% 45% 0 0;
  background: rgba(109,165,32,.08);
  z-index: -1;
  transform: skewX(-10deg);
}
.home-hero__content h1 {
  margin: 0 0 18px;
  font-size: clamp(2.35rem, 4.7vw, 4.7rem);
  line-height: 1.03;
  letter-spacing: -.045em;
}
.home-hero__content h1 span { color: var(--green-dark); display: block; }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 22px;
  color: #344054;
  font-weight: 650;
}
.trust-row span {
  position: relative;
  padding-left: 28px;
}
.trust-row span::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 900;
  font-size: .82rem;
}
.home-hero__visual {
  position: relative;
  min-width: 0;
  padding: 16px 0 34px;
}
.laptop-mockup {
  position: relative;
  border: 12px solid #151515;
  border-bottom-width: 20px;
  border-radius: 24px 24px 16px 16px;
  background: #151515;
  box-shadow: 0 34px 85px rgba(18, 32, 24, .24);
  overflow: hidden;
}
.laptop-mockup::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: -20px;
  height: 8px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, #333, #111, #333);
}
.laptop-bar {
  height: 26px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  background: linear-gradient(180deg, #2a2a2a, #161616);
}
.laptop-bar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5f6b5e;
}
.laptop-mockup picture,
.laptop-mockup img {
  width: 100%;
}
.laptop-mockup img {
  aspect-ratio: 16 / 9.2;
  object-fit: cover;
  object-position: center top;
  border-top: 1px solid rgba(255,255,255,.1);
}
.floating-card {
  position: absolute;
  left: -28px;
  bottom: 0;
  width: min(260px, 48%);
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.94);
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px rgba(20, 35, 50, .16);
  backdrop-filter: blur(10px);
}
.floating-card strong { display: block; margin-bottom: 5px; }
.floating-card span { display: block; color: var(--muted); font-size: .92rem; line-height: 1.35; }
.feature-strip {
  border-block: 1px solid var(--line);
  background: rgba(255,255,255,.96);
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  max-width: calc(var(--max) + 180px);
  margin: 0 auto;
  padding-inline: clamp(18px, 4vw, 52px);
}
.feature-strip article {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  align-items: start;
  padding: 22px 18px;
  border-right: 1px solid var(--line);
}
.feature-strip article:last-child { border-right: 0; }
.feature-strip h2 {
  grid-column: 2;
  font-size: 1.05rem;
  line-height: 1.2;
  letter-spacing: -.01em;
  margin: 1px 0 4px;
}
.feature-strip p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.35;
}
.icon-box {
  grid-row: span 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 900;
  font-size: 1.15rem;
}
.centered { text-align: center; margin-inline: auto; }
.price-teaser { padding-top: clamp(34px, 5vw, 62px); }
.teaser-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr 1.05fr;
  gap: 18px;
  align-items: stretch;
}
.teaser-card {
  background: #fff;
  border: 1px solid #bcd7a2;
  border-radius: 18px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 10px 32px rgba(30, 60, 20, .06);
}
.teaser-card span {
  display: block;
  color: var(--green-dark);
  font-weight: 850;
  margin-bottom: 4px;
}
.teaser-card strong {
  display: inline-block;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1;
  color: var(--green-dark);
  letter-spacing: -.04em;
}
.teaser-card small {
  color: var(--green-dark);
  font-weight: 800;
  margin-left: 4px;
}
.teaser-card p { color: var(--muted); margin: 14px 0 0; font-size: .96rem; }
.primary-card { background: linear-gradient(180deg, #fff, #fbfdf7); border-color: var(--green); }
.inquiry-card { background: #fffaf0; border-color: #e6c068; text-align: left; }
.inquiry-card strong { font-size: 1.35rem; color: var(--ink); letter-spacing: -.02em; }
.inquiry-card .btn { margin-top: 16px; }
@media (max-width: 1100px) {
  .home-hero { grid-template-columns: 1fr; }
  .home-hero__visual { max-width: 860px; margin: 0 auto; width: 100%; }
  .feature-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-strip article { border-right: 0; border-bottom: 1px solid var(--line); }
  .teaser-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .home-hero { padding-top: 30px; }
  .home-hero__content h1 { font-size: clamp(2.05rem, 13vw, 3rem); }
  .laptop-mockup { border-width: 7px; border-bottom-width: 13px; border-radius: 16px; }
  .laptop-bar { height: 20px; }
  .floating-card { position: static; width: auto; margin-top: 14px; }
  .feature-strip, .teaser-grid { grid-template-columns: 1fr; }
  .feature-strip article { padding-inline: 0; }
}

/* =========================================================
   Startseite V3 – Umsetzung nach freigegebenem Mockup
   ========================================================= */
:root {
  --site-max: 1672px;
  --green-hero: #2f6f12;
  --green-main: #367a16;
  --green-light: #eef7e6;
  --green-line: #dfead5;
  --text-main: #121827;
  --text-soft: #4b5568;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: block;
  padding: 0;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid #e5e8e0;
  backdrop-filter: blur(12px);
}
.header-inner {
  width: 100%;
  max-width: var(--site-max);
  margin: 0 auto;
  min-height: 108px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}
.brand img.brand-logo {
  display: block;
  width: 225px;
  height: auto;
  max-height: 126px;
  object-fit: contain;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 44px;
}
.main-nav a {
  position: relative;
  padding: 0 0 14px;
  border-radius: 0;
  background: transparent !important;
  color: #111827;
  font-size: 1.03rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--green-main);
}
.main-nav a.active::after,
.main-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  border-radius: 99px;
  background: var(--green-main);
}

main { overflow: visible; }
.landing-hero {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: var(--site-max);
  min-height: 485px;
  margin: 0 auto;
  padding: 36px 40px 8px;
  display: grid;
  grid-template-columns: minmax(420px, .93fr) minmax(640px, 1.12fr);
  gap: 34px;
  align-items: center;
}
.landing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse at 100% 34%, rgba(102,151,43,.16), transparent 31%),
    linear-gradient(102deg, #fff 0%, #fff 43%, #f8faf4 100%);
}
.landing-hero::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 40px;
  width: 610px;
  height: 270px;
  z-index: -1;
  background: rgba(105,151,50,.09);
  clip-path: ellipse(62% 55% at 52% 50%);
}
.hero-copy {
  align-self: center;
  max-width: 670px;
  padding-bottom: 12px;
}
.hero-copy h1 {
  margin: 0 0 24px;
  color: var(--text-main);
  font-size: clamp(3.2rem, 4.3vw, 5rem);
  line-height: 1.03;
  letter-spacing: -.055em;
  font-weight: 860;
}
.hero-copy h1 span {
  display: block;
  color: var(--green-hero);
}
.hero-copy .lead {
  max-width: 610px;
  margin: 0;
  color: #263143;
  font-size: 1.18rem;
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 30px 0 24px;
}
.btn svg {
  width: 24px;
  height: 24px;
  margin-right: 12px;
  fill: currentColor;
}
.btn.primary,
.btn.secondary {
  min-width: 232px;
  min-height: 58px;
  padding: 15px 28px;
  border-radius: 8px;
  font-size: 1.15rem;
  font-weight: 760;
}
.btn.primary {
  background: linear-gradient(180deg, #287607, #1f5c06);
  color: #fff;
  box-shadow: 0 13px 25px rgba(41,111,14,.20);
}
.btn.secondary {
  border: 1.8px solid var(--green-main);
  background: rgba(255,255,255,.88);
  color: var(--green-main);
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 38px;
  color: #1f2937;
  font-size: .98rem;
  font-weight: 680;
}
.trust-row span {
  position: relative;
  padding-left: 30px;
  white-space: nowrap;
}
.trust-row span::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e7f2dc;
  color: var(--green-main);
  font-weight: 900;
  font-size: .82rem;
}

.hero-device {
  width: 100%;
  min-width: 0;
  align-self: center;
  padding-top: 10px;
}
.laptop-shell {
  position: relative;
  width: min(100%, 820px);
  margin: 0 0 0 auto;
  padding-bottom: 38px;
}
.laptop-screen {
  position: relative;
  padding: 12px;
  border-radius: 14px 14px 8px 8px;
  background: linear-gradient(180deg, #171717, #050505);
  box-shadow: 0 25px 55px rgba(9,18,18,.24);
}
.laptop-screen::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  z-index: 2;
}
.laptop-screen picture,
.laptop-screen img {
  display: block;
  width: 100%;
}
.laptop-screen img {
  aspect-ratio: 1600 / 861;
  object-fit: contain;
  border-radius: 3px;
  background: #f1f1f1;
}
.laptop-base {
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: 12px;
  height: 34px;
  border-radius: 0 0 55% 55%;
  background: linear-gradient(180deg, #b6b8b6 0%, #7a7d7b 50%, #3e4140 100%);
  box-shadow: 0 14px 24px rgba(0,0,0,.22);
}
.laptop-base span {
  position: absolute;
  left: 42%;
  right: 42%;
  top: 2px;
  height: 8px;
  border-radius: 0 0 12px 12px;
  background: linear-gradient(180deg, #c7c9c8, #8c8f8e);
}

.feature-strip {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 clamp(28px, 4vw, 70px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #e2e7df;
  border-bottom: 1px solid #e2e7df;
  background: #fff;
}
.feature-strip article {
  min-width: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 28px clamp(18px, 1.8vw, 30px);
  border-right: 1px solid #e2e7df;
  border-bottom: 1px solid #e2e7df;
}
.feature-strip article:nth-child(3n) { border-right: 0; }
.feature-strip article:nth-last-child(-n+3) { border-bottom: 0; }
.feature-strip h2 {
  margin: 0 0 8px;
  color: #111827;
  font-size: clamp(.98rem, .95vw, 1.12rem);
  line-height: 1.16;
  font-weight: 830;
  letter-spacing: -.015em;
  white-space: normal;
  overflow-wrap: normal;
  hyphens: auto;
}
.feature-strip p {
  margin: 0;
  color: #303a4b;
  font-size: clamp(.86rem, .82vw, .95rem);
  line-height: 1.42;
  overflow-wrap: normal;
  hyphens: auto;
}
.icon-box {
  width: 50px;
  height: 50px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: #edf6e3;
  color: var(--green-main);
  flex: 0 0 auto;
}
.icon-box svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.price-teaser {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 14px clamp(28px, 4vw, 70px) 16px;
  text-align: center;
  background: linear-gradient(180deg, #fff, #fbfcf8);
}
.price-teaser h2 {
  margin: 0 0 12px;
  color: #1f2633;
  font-size: 1.42rem;
  line-height: 1.1;
  letter-spacing: -.02em;
  font-weight: 780;
}
.teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.08fr;
  gap: 28px;
  align-items: stretch;
  max-width: 1250px;
  margin: 0 auto;
}
.teaser-card {
  position: relative;
  min-height: 128px;
  padding: 15px 22px 16px;
  border: 1.5px solid #8bb66a;
  border-radius: 7px;
  background: rgba(255,255,255,.95);
  box-shadow: none;
  text-align: center;
}
.teaser-card > span {
  display: block;
  color: var(--green-main);
  font-size: 1.02rem;
  font-weight: 820;
  margin-bottom: 2px;
}
.price-line {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  padding-bottom: 11px;
  margin-bottom: 9px;
  border-bottom: 1px solid #8bb66a;
}
.price-line strong {
  color: var(--green-hero);
  font-size: 2.45rem;
  line-height: 1;
  letter-spacing: .01em;
  font-weight: 850;
}
.price-line small {
  color: var(--green-hero);
  font-size: .83rem;
  font-weight: 820;
}
.teaser-card p {
  margin: 0;
  color: #1f2937;
  font-size: .89rem;
  line-height: 1.38;
}
.inquiry-card {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 14px;
  align-items: center;
  text-align: left;
  border-color: #d8aa32;
  background: #fffaf0;
}
.inquiry-icon {
  color: #7dae1f;
}
.inquiry-icon svg {
  width: 56px;
  height: 56px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.inquiry-card > div > span {
  display: block;
  color: #1f2937;
  font-weight: 790;
  font-size: 1.12rem;
  line-height: 1.18;
  margin-bottom: 8px;
}
.contact-mini {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  min-width: 145px;
  height: 27px;
  border: 1.4px solid #74a246;
  border-radius: 4px;
  color: var(--green-main);
  font-size: .8rem;
  font-weight: 760;
  text-decoration: none;
  background: #fffdf4;
}

.trust-strip {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 12px clamp(28px, 4vw, 70px) 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  align-items: center;
  color: var(--green-main);
  font-weight: 760;
  background: #fff;
}
.trust-strip > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 44px;
  border-right: 1px solid #e2e7df;
  font-size: 1rem;
}
.trust-strip > div:last-child { border-right: 0; }
.trust-strip svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.flag-at {
  width: 32px;
  height: 22px;
  flex: 0 0 auto;
  display: block;
  background: linear-gradient(#ed2939 0 33.33%, #fff 33.33% 66.66%, #ed2939 66.66% 100%);
  box-shadow: 0 0 0 1px rgba(0,0,0,.05) inset;
}

@media (max-width: 1280px) {
  .header-inner { padding-inline: 28px; }
  .main-nav { gap: 28px; }
  .landing-hero { grid-template-columns: 1fr; padding-inline: 28px; }
  .hero-copy { max-width: 760px; }
  .laptop-shell { margin-inline: auto; width: min(100%, 900px); }
  .feature-strip { grid-template-columns: repeat(3, minmax(0,1fr)); padding-inline: 28px; }
  .feature-strip article { padding: 24px 18px; }
  .feature-strip article:nth-child(3n) { border-right: 0; }
  .feature-strip article:nth-last-child(-n+3) { border-bottom: 0; }
  .teaser-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 860px) {
  .header-inner { min-height: 88px; padding-inline: 18px; align-items: center; }
  .brand img.brand-logo { width: 200px; max-height: 84px; }
  .nav-toggle { display: inline-flex; border: 1px solid var(--line); background: #fff; border-radius: 999px; padding: 9px 13px; font-weight: 800; }
  .main-nav { display: none; position: absolute; right: 18px; top: 70px; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); padding: 10px; flex-direction: column; align-items: stretch; gap: 0; min-width: 210px; }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 14px; }
  .main-nav a.active::after, .main-nav a:hover::after { display: none; }
  .landing-hero { grid-template-columns: 1fr; padding: 34px 18px 20px; }
  .hero-copy h1 { font-size: clamp(2.7rem, 9vw, 4rem); }
  .hero-copy .lead { font-size: 1.05rem; }
  .feature-strip { grid-template-columns: repeat(2, minmax(0,1fr)); padding-inline: 18px; }
  .feature-strip article { grid-template-columns: 56px minmax(0,1fr); border-right: 1px solid #e2e7df; }
  .feature-strip article:nth-child(2n) { border-right: 0; }
  .feature-strip article:nth-last-child(-n+2) { border-bottom: 0; }
  .price-teaser { padding-inline: 18px; }
  .teaser-grid { grid-template-columns: 1fr; gap: 14px; }
  .trust-strip { grid-template-columns: 1fr; padding-inline: 18px; }
  .trust-strip > div { border-right: 0; border-bottom: 1px solid #e2e7df; justify-content: flex-start; }
  .trust-strip > div:last-child { border-bottom: 0; }
}

@media (max-width: 640px) {
  .feature-strip { grid-template-columns: 1fr; }
  .feature-strip article { border-right: 0; border-bottom: 1px solid #e2e7df; }
  .feature-strip article:last-child { border-bottom: 0; }
}
@media (max-width: 540px) {
  .brand img.brand-logo { width: 180px; }
  .btn.primary, .btn.secondary { width: 100%; min-width: 0; }
  .laptop-screen { padding: 7px; }
  .laptop-base { height: 22px; bottom: 20px; }
}

/* =========================================================
   Funktionen-Seite V2
   ========================================================= */
.functions-hero {
  width: 100%;
  max-width: var(--site-max);
  margin: 0 auto;
  padding: clamp(48px, 6vw, 86px) 40px clamp(34px, 5vw, 64px);
  display: grid;
  grid-template-columns: minmax(420px, .92fr) minmax(560px, 1.08fr);
  align-items: center;
  gap: clamp(32px, 5vw, 76px);
  background:
    radial-gradient(ellipse at 100% 20%, rgba(102,151,43,.14), transparent 35%),
    linear-gradient(105deg, #fff 0%, #fff 45%, #f7faf3 100%);
}
.functions-hero__copy h1 {
  margin: 0 0 22px;
  font-size: clamp(2.55rem, 4.2vw, 4.7rem);
  line-height: 1.04;
  letter-spacing: -.055em;
  color: var(--text-main);
}
.functions-hero__image {
  padding: 12px;
  border-radius: 24px;
  box-shadow: 0 26px 76px rgba(18,32,24,.16);
}
.functions-hero__image img {
  border-radius: 16px;
}
.function-jumpbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.function-jumpbar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--green-light);
  color: var(--green-main);
  text-decoration: none;
  font-weight: 800;
  border: 1px solid #d8e8cb;
}
.function-jumpbar a:hover {
  background: var(--green-main);
  color: #fff;
}
.functions-overview {
  width: 100%;
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid var(--green-line);
  background: rgba(255,255,255,.98);
}
.functions-overview article {
  min-width: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 16px;
  align-items: start;
  padding: 26px 22px;
  border-right: 1px solid var(--green-line);
  border-bottom: 1px solid var(--green-line);
}
.functions-overview article:nth-child(3n) { border-right: 0; }
.functions-overview article:nth-last-child(-n+3) { border-bottom: 0; }
.function-icon {
  grid-row: span 2;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--green-light);
  color: var(--green-main);
}
.function-icon svg { width: 32px; height: 32px; }
.functions-overview h2 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.18;
  letter-spacing: -.02em;
}
.functions-overview p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.42;
  font-size: .97rem;
}
.functions-detail {
  width: 100%;
  max-width: var(--site-max);
  margin: 0 auto;
  padding: clamp(44px, 6vw, 88px) 40px;
  display: grid;
  gap: 34px;
}
.function-detail {
  display: grid;
  grid-template-columns: minmax(380px, .86fr) minmax(520px, 1.14fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid #dde8d4;
  border-radius: 28px;
  background: linear-gradient(180deg, #fff 0%, #fbfdf8 100%);
  box-shadow: 0 18px 55px rgba(25,45,35,.08);
}
.function-detail--reverse {
  grid-template-columns: minmax(520px, 1.14fr) minmax(380px, .86fr);
}
.function-detail--reverse .function-detail__text { order: 2; }
.function-detail--reverse .function-detail__media { order: 1; }
.function-detail__text h2 {
  margin: 0 0 18px;
  color: var(--text-main);
  font-size: clamp(2rem, 3.25vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: -.05em;
}
.function-detail__text p {
  color: var(--text-soft);
  font-size: 1.05rem;
}
.function-detail__media {
  min-width: 0;
}
.function-detail__media img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid #dce4d6;
  box-shadow: 0 20px 50px rgba(19,31,25,.13);
}
.media-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.media-stack img {
  height: 100%;
  object-fit: cover;
}
.visual-panel {
  display: grid;
  place-items: center;
  min-height: 420px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 80% 20%, rgba(109,165,32,.18), transparent 32%),
    linear-gradient(140deg, #f5faf0 0%, #fff 100%);
  border: 1px solid #dfead5;
  box-shadow: 0 20px 50px rgba(19,31,25,.08);
  padding: 24px;
}
.bank-visual {
  width: min(100%, 560px);
  background: #fff;
  border: 1px solid #d8e8cb;
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(33,55,24,.12);
  overflow: hidden;
}
.bank-visual__top {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: #f0f8e8;
  border-bottom: 1px solid #d8e8cb;
  color: var(--green-main);
}
.bank-visual__top span svg { width: 32px; height: 32px; }
.bank-visual__top strong { font-size: 1.2rem; color: var(--text-main); }
.bank-visual__row {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid #edf2e8;
}
.bank-visual__row span { color: var(--text-soft); }
.bank-visual__row strong { color: var(--text-main); }
.bank-visual__row em {
  font-style: normal;
  color: var(--green-main);
  background: var(--green-light);
  border-radius: 999px;
  padding: 4px 9px;
  font-weight: 800;
  font-size: .86rem;
}
.bank-visual__footer {
  padding: 16px 20px;
  color: var(--green-main);
  font-weight: 900;
  text-align: center;
}
.functions-cta {
  width: calc(100% - 80px);
  max-width: calc(var(--site-max) - 80px);
  margin: 0 auto clamp(54px, 6vw, 90px);
  padding: clamp(26px, 4vw, 44px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  border-radius: 28px;
  background: linear-gradient(120deg, var(--green-main), #5b991c);
  color: #fff;
  box-shadow: 0 22px 60px rgba(55,122,22,.22);
}
.functions-cta h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: -.04em;
}
.functions-cta p { margin: 0; color: rgba(255,255,255,.86); }
.functions-cta .eyebrow { color: rgba(255,255,255,.75); }
.functions-cta .btn.primary {
  background: #fff;
  color: var(--green-main);
  box-shadow: none;
  white-space: nowrap;
}
@media (max-width: 1180px) {
  .functions-hero,
  .function-detail,
  .function-detail--reverse {
    grid-template-columns: 1fr;
  }
  .function-detail--reverse .function-detail__text,
  .function-detail--reverse .function-detail__media { order: initial; }
  .functions-overview { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .functions-overview article:nth-child(3n) { border-right: 0; }
  .functions-overview article:nth-last-child(-n+3) { border-bottom: 0; }
}
@media (max-width: 920px) {
  .functions-overview { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .functions-overview article { border-right: 1px solid var(--green-line); border-bottom: 1px solid var(--green-line); }
  .functions-overview article:nth-child(2n) { border-right: 0; }
  .functions-overview article:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 760px) {
  .functions-hero,
  .functions-detail { padding-inline: 20px; }
  .functions-overview { grid-template-columns: 1fr; padding-inline: 20px; }
  .functions-overview article { border-right: 0; border-bottom: 1px solid var(--green-line); padding-inline: 0; }
  .functions-overview article:last-child { border-bottom: 0; }
  .media-stack { grid-template-columns: 1fr; }
  .bank-visual__row { grid-template-columns: 1fr; gap: 4px; }
  .functions-cta { width: calc(100% - 40px); grid-template-columns: 1fr; }
}

/* Preise / Kaufen V2 */
.buy-hero {
  position: relative;
  max-width: calc(var(--max) + 180px);
  margin: 0 auto;
  padding: clamp(46px, 7vw, 92px) clamp(18px, 4vw, 52px) clamp(30px, 5vw, 64px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .55fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
}
.buy-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 86% 24%, rgba(109,165,32,.16), transparent 33%),
    linear-gradient(120deg, #fff 0%, #fff 46%, #f5f9f0 100%);
}
.buy-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.35rem, 5.2vw, 4.85rem);
  line-height: 1.04;
  letter-spacing: -.055em;
  max-width: 920px;
}
.buy-hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.buy-hero__facts span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(237,246,226,.92);
  color: var(--green-dark);
  font-weight: 800;
  font-size: .95rem;
}
.buy-hero__card {
  border: 1px solid rgba(109,165,32,.28);
  border-radius: 28px;
  padding: 28px;
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow);
}
.buy-label, .config-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  padding: 5px 11px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: .78rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-weight: 900;
}
.buy-hero__card strong {
  display: block;
  margin-top: 16px;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1;
  color: var(--green-dark);
  letter-spacing: -.05em;
}
.buy-hero__card small { display: block; margin-top: 8px; color: var(--muted); font-weight: 800; }
.buy-hero__card p { margin: 18px 0 0; color: var(--muted); }
.buy-section {
  max-width: calc(var(--max) + 180px);
  margin: 0 auto;
  padding: clamp(32px, 5vw, 62px) clamp(18px, 4vw, 52px) clamp(40px, 6vw, 78px);
}
.buy-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 390px);
  gap: clamp(22px, 4vw, 42px);
  align-items: start;
}
.license-config {
  display: grid;
  gap: 18px;
}
.config-card, .option-card, .quantity-card, .order-summary .summary-sticky, .checkout-preview, .checkout-total-card {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 60px rgba(20,35,50,.08);
}
.config-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(22px, 3vw, 34px);
}
.config-main {
  border-color: rgba(109,165,32,.38);
  background: linear-gradient(145deg, #fff 0%, #fbfdf8 100%);
}
.config-card h2, .quantity-card h3, .order-summary h2, .checkout-preview h2, .stb-card h2 {
  margin: 10px 0 8px;
  line-height: 1.12;
  letter-spacing: -.03em;
}
.config-card p, .quantity-card p, .stb-card p, .checkout-preview p { color: var(--muted); margin: 0; }
.config-price {
  min-width: 170px;
  padding: 18px 20px;
  border-radius: 20px;
  background: var(--green-soft);
  text-align: right;
}
.config-price strong {
  display: block;
  color: var(--green-dark);
  font-size: 2.25rem;
  line-height: 1;
  letter-spacing: -.04em;
}
.config-price span { display: block; margin-top: 8px; color: var(--muted); font-weight: 750; }
.config-grid.two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.option-card {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 22px;
  cursor: pointer;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.option-card:hover { transform: translateY(-2px); border-color: rgba(109,165,32,.5); }
.option-card input { position: absolute; opacity: 0; pointer-events: none; }
.option-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #b8c7b5;
  background: #fff;
  display: grid;
  place-items: center;
}
.option-check::after {
  content: "✓";
  color: #fff;
  font-weight: 900;
  transform: scale(.6);
  opacity: 0;
  transition: opacity .18s ease, transform .18s ease;
}
.option-card input:checked + .option-check {
  background: var(--green);
  border-color: var(--green);
}
.option-card input:checked + .option-check::after { opacity: 1; transform: scale(1); }
.option-card:has(input:checked) {
  border-color: var(--green);
  background: linear-gradient(145deg, #fff 0%, #f5faee 100%);
  box-shadow: 0 20px 60px rgba(109,165,32,.14);
}
.option-content strong {
  display: block;
  margin-top: 9px;
  font-size: 1.25rem;
  letter-spacing: -.02em;
}
.option-content small { display: block; margin-top: 6px; color: var(--muted); line-height: 1.42; }
.option-price {
  text-align: right;
  color: var(--green-dark);
  font-size: 1.55rem;
  font-weight: 900;
  white-space: nowrap;
}
.option-price small { display: block; font-size: .78rem; color: var(--muted); font-weight: 800; }
.quantity-card {
  display: grid;
  gap: 20px;
  padding: 24px;
}
.quantity-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px;
  gap: 14px;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.quantity-control span { color: var(--green-dark); font-weight: 850; }
.quantity-control input { text-align: center; font-size: 1.2rem; font-weight: 900; }
.order-summary .summary-sticky {
  position: sticky;
  top: 124px;
  padding: 26px;
}
.summary-sticky h2 { margin: 0 0 18px; }
.summary-lines {
  display: grid;
  gap: 10px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.summary-line, .summary-totals div, .checkout-lines div, .checkout-total-card div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: baseline;
}
.summary-line span, .summary-totals span, .checkout-lines span, .checkout-total-card span { color: var(--muted); }
.summary-line strong, .summary-totals strong, .checkout-lines strong, .checkout-total-card strong { white-space: nowrap; }
.summary-totals { display: grid; gap: 10px; margin: 18px 0; }
.summary-totals .grand, .checkout-total-card .grand {
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--ink);
}
.summary-totals .grand strong, .checkout-total-card .grand strong {
  color: var(--green-dark);
  font-size: 1.7rem;
}
.summary-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.42;
}
.buy-info-band {
  background: linear-gradient(180deg, #f8fbf4 0%, #fff 100%);
  padding: clamp(36px, 6vw, 74px) clamp(18px, 4vw, 52px);
}
.buy-info-grid {
  max-width: calc(var(--max) + 180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.buy-info-grid article {
  padding: 22px;
  border: 1px solid rgba(109,165,32,.18);
  border-radius: 22px;
  background: rgba(255,255,255,.72);
}
.buy-info-grid span {
  color: var(--green-dark);
  font-weight: 950;
  letter-spacing: .08em;
}
.buy-info-grid h3 { margin: 10px 0 7px; }
.buy-info-grid p { margin: 0; color: var(--muted); }
.stb-band {
  max-width: calc(var(--max) + 180px);
  margin: 0 auto;
  padding: clamp(34px, 6vw, 72px) clamp(18px, 4vw, 52px);
}
.stb-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid #e2b84e;
  border-radius: 30px;
  background: linear-gradient(135deg, #fffaf0 0%, #fff 78%);
}
.checkout-preview-section { padding-top: 30px; }
.checkout-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 390px);
  gap: 28px;
  padding: clamp(22px, 4vw, 36px);
}
.checkout-lines { display: grid; gap: 12px; margin-top: 22px; }
.checkout-total-card { padding: 24px; box-shadow: none; }
.checkout-total-card > div { margin-bottom: 10px; }
@media (max-width: 1050px) {
  .buy-hero, .buy-layout, .checkout-preview { grid-template-columns: 1fr; }
  .order-summary .summary-sticky { position: static; }
  .buy-info-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .config-grid.two, .config-card, .stb-card { grid-template-columns: 1fr; }
  .config-price { text-align: left; }
  .option-card { grid-template-columns: 34px minmax(0, 1fr); }
  .option-price { grid-column: 2; text-align: left; }
  .quantity-control { grid-template-columns: 1fr; }
  .buy-info-grid { grid-template-columns: 1fr; }
}

/* Maintenance / Wartungsvertrag additions */
.mini-breakdown {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(109,165,32,.24);
  color: var(--muted);
}
.mini-breakdown strong { color: var(--green-dark); }
.component-list {
  list-style: none;
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 16px 0 0;
  max-width: 520px;
}
.component-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(109,165,32,.06);
  color: var(--muted);
}
.component-list strong { color: var(--ink); white-space: nowrap; }
.maintenance-accept {
  margin-top: 20px;
  padding: 18px;
  border: 1px solid rgba(109,165,32,.26);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(109,165,32,.08), rgba(255,255,255,.88));
}
.maintenance-accept label {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: var(--ink);
  line-height: 1.45;
  font-weight: 650;
}
.maintenance-accept input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--green); }
.maintenance-total {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px dashed rgba(109,165,32,.34);
  color: var(--muted);
}
.maintenance-total strong { color: var(--green-dark); }
.maintenance-section {
  padding: clamp(34px, 6vw, 72px) clamp(18px, 4vw, 52px);
  background: linear-gradient(180deg, #fff 0%, #f8fbf4 100%);
}
.maintenance-card {
  max-width: calc(var(--max) + 180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  gap: 30px;
  align-items: stretch;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(109,165,32,.20);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.maintenance-card h2 { margin: 0 0 12px; max-width: 760px; }
.maintenance-card p { color: var(--muted); margin: 0; }
.maintenance-points {
  display: grid;
  gap: 14px;
}
.maintenance-points article {
  padding: 18px;
  border-radius: 20px;
  background: rgba(109,165,32,.07);
  border: 1px solid rgba(109,165,32,.13);
}
.maintenance-points strong { display: block; margin-bottom: 6px; color: var(--green-dark); }
.maintenance-points span { color: var(--muted); line-height: 1.45; }
.legal-placeholder ul { margin: 18px 0 0; color: var(--muted); }
@media (max-width: 980px) {
  .maintenance-card { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .component-list li, .mini-breakdown { flex-direction: column; }
  .component-list strong { white-space: normal; }
}


/* Funktionsumfang-Bürobild auf der Startseite */
.feature-office-image {
    padding: 0;
    overflow: hidden;
}
.feature-office-image picture,
.feature-office-image img {
    display: block;
    width: 100%;
    height: 100%;
}
.feature-office-image img {
    object-fit: cover;
    min-height: 310px;
}

/* Preise-Seite: Preisbox oben und Grundlizenz-Summe optimiert */
.buy-hero__card .price-display {
  text-align: left;
}
.buy-hero__card .price-display strong {
  display: inline-block;
  margin-top: 16px;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: .95;
  color: var(--green-dark);
  letter-spacing: -.05em;
}
.buy-hero__card .price-display small {
  display: inline-block;
  margin-left: 8px;
  color: var(--green-dark);
  font-size: 1.25rem;
  font-weight: 900;
}
.buy-hero__card .price-display b {
  display: block;
  margin-top: 8px;
  color: var(--dark);
  font-size: .92rem;
  font-weight: 900;
}
.buy-hero__card .price-display p {
  margin: 18px 0 0;
  color: var(--muted);
}
.price-display-renewal {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(109,165,32,.24);
}
.price-display-renewal p {
  font-weight: 800;
  color: var(--muted);
}
.config-main {
  align-items: stretch;
}
.config-main .config-price {
  align-self: end;
}


/* =========================================================
   Desktop-Fix: Funktionsleisten nicht umbrechen
   ========================================================= */
@media (min-width: 1181px) {
  .feature-strip {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    padding-inline: clamp(18px, 2.4vw, 46px) !important;
  }

  .feature-strip article,
  .feature-strip article:first-child,
  .feature-strip article:last-child {
    grid-template-columns: 42px minmax(0, 1fr) !important;
    gap: 12px !important;
    padding: 24px clamp(10px, 1.05vw, 20px) !important;
    border-bottom: 0 !important;
    border-right: 1px solid #e2e7df !important;
  }

  .feature-strip article:last-child {
    border-right: 0 !important;
  }

  .feature-strip h2 {
    font-size: clamp(.9rem, .78vw, 1rem) !important;
    line-height: 1.14 !important;
    margin-bottom: 7px !important;
  }

  .feature-strip p {
    font-size: clamp(.78rem, .72vw, .9rem) !important;
    line-height: 1.36 !important;
  }

  .feature-strip .icon-box {
    width: 40px !important;
    height: 40px !important;
    border-radius: 10px !important;
  }

  .feature-strip .icon-box svg {
    width: 25px !important;
    height: 25px !important;
  }

  .functions-overview {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    padding-inline: clamp(18px, 2.4vw, 46px) !important;
  }

  .functions-overview article {
    grid-template-columns: 42px minmax(0, 1fr) !important;
    gap: 10px 12px !important;
    padding: 24px clamp(10px, 1vw, 18px) !important;
    border-bottom: 0 !important;
    border-right: 1px solid var(--green-line) !important;
  }

  .functions-overview article:last-child {
    border-right: 0 !important;
  }

  .functions-overview .function-icon {
    width: 40px !important;
    height: 40px !important;
    border-radius: 12px !important;
  }

  .functions-overview .function-icon svg {
    width: 25px !important;
    height: 25px !important;
  }

  .functions-overview h2 {
    font-size: clamp(.9rem, .78vw, 1rem) !important;
    line-height: 1.14 !important;
  }

  .functions-overview p {
    font-size: clamp(.78rem, .72vw, .9rem) !important;
    line-height: 1.36 !important;
  }
}

@media (min-width: 761px) and (max-width: 1180px) {
  .feature-strip,
  .functions-overview {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  .feature-strip,
  .functions-overview {
    grid-template-columns: 1fr !important;
  }
}

/* Haftungsbewusste Hinweisboxen */
.fineprint-note {
  margin-top: 18px;
  padding: 12px 14px;
  border-left: 4px solid var(--green-main);
  background: #f5faef;
  color: var(--text-soft);
  font-size: .94rem;
  line-height: 1.5;
  border-radius: 10px;
}


/* Zielgruppen-/Trust-Strip Feinkorrektur */
.trust-strip > div {
  white-space: nowrap;
  gap: 10px;
  font-size: .95rem;
}
.trust-strip svg,
.trust-strip .flag-at {
  flex: 0 0 auto;
}
.feature-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 1200px) {
  .trust-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-inline: 18px;
  }
  .trust-strip > div {
    font-size: .9rem;
    gap: 8px;
  }
  .feature-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 1100px) {
  .feature-grid.four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}


/* Finale Korrektur Trust-Strip + Zielgruppenleiste */
@media (min-width: 861px) {
  .trust-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
  .trust-strip > div {
    white-space: nowrap;
    justify-content: center;
    font-size: .92rem;
    gap: 10px;
  }
  .feature-grid.four {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}
@media (min-width: 601px) and (max-width: 860px) {
  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .trust-strip > div {
    white-space: nowrap;
    justify-content: center;
  }
  .feature-grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 600px) {
  .trust-strip {
    grid-template-columns: 1fr !important;
  }
  .feature-grid.four {
    grid-template-columns: 1fr !important;
  }
}


/* Preise-Seite: vorsichtiger Nutzungshinweis */
.price-legal-note {
  max-width: var(--max);
  margin: 18px auto 0;
  padding: 14px 16px;
  border-left: 4px solid var(--green-main);
  background: #f5faef;
  color: var(--text-soft);
  border-radius: 12px;
  font-size: .95rem;
  line-height: 1.5;
}
.price-legal-note strong {
  color: var(--text-main);
}


/* Checkout Unternehmernachweis */
.form-field.full {
  grid-column: 1 / -1;
}
.form-field small {
  display: block;
  margin-top: 6px;
  color: var(--text-soft);
  font-size: .86rem;
  line-height: 1.45;
}
.form-field em {
  color: #b42318;
  font-style: normal;
}


/* Checkout Unternehmernachweis - saubere Darstellung */
.checkout-proof-field {
  display: block;
  width: 100%;
  margin: 14px 0 14px;
  padding: 18px 20px;
  border: 1px solid var(--green-border, #cfe3b7);
  border-radius: 18px;
  background: #fbfdf7;
}

.checkout-proof-field label {
  display: block;
  margin: 0 0 8px;
  font-weight: 800;
  color: var(--text-main, #111827);
}

.checkout-proof-field label span {
  color: #b42318;
}

.checkout-proof-field input {
  display: block;
  width: 100%;
  max-width: 520px;
  min-height: 44px;
  padding: 10px 13px;
  border: 1px solid #cfd8c3;
  border-radius: 10px;
  background: #fff;
  color: var(--text-main, #111827);
  font: inherit;
}

.checkout-proof-field input:focus {
  outline: 2px solid rgba(91, 141, 29, .25);
  border-color: var(--green-main, #5b8d1d);
}

.checkout-proof-field p {
  max-width: 760px;
  margin: 9px 0 0;
  color: var(--text-soft, #64748b);
  font-size: .92rem;
  line-height: 1.45;
}


/* Checkout Validierung direkt auf der Preisseite */
.checkout-validation-message {
  margin: 16px 0;
  padding: 14px 16px;
  border: 1px solid #d92d20;
  border-radius: 14px;
  background: #fff4f2;
  color: #7a271a;
  font-weight: 600;
  line-height: 1.45;
}

.checkout-validation-message[hidden] {
  display: none !important;
}

.checkout-validation-message ul {
  margin: 8px 0 0 18px;
  padding: 0;
}

.checkout-validation-message li {
  margin: 4px 0;
}

.checkout-field-error {
  border-color: #d92d20 !important;
  box-shadow: 0 0 0 3px rgba(217, 45, 32, .12);
}

.checkout-field-error input[type="text"] {
  border-color: #d92d20 !important;
}


/* Public preview / disabled sales state */
button[disabled].btn,
.btn[aria-disabled="true"] {
    opacity: 0.62;
    cursor: not-allowed;
    filter: grayscale(0.15);
}

.highlight-card {
    border-color: rgba(116, 143, 35, 0.28);
    background: linear-gradient(180deg, rgba(245, 249, 240, 0.95), #fff);
}


/* Logo Patch: weißer Logo-Hintergrund */
.brand img.brand-logo {
  width: 225px;
  height: auto;
  max-height: 126px;
  object-fit: contain;
  background: #fff;
}
@media (max-width: 860px) {
  .brand img.brand-logo {
    width: 200px;
    max-height: 84px;
  }
}
@media (max-width: 540px) {
  .brand img.brand-logo {
    width: 180px;
  }
}
