:root {
  --qm-primary: #7FA82F;
  --qm-secondary: #9AC43C;
  --qm-bg: #F4F8EC;
  --qm-text: #1A1A1A;
  --qm-muted: #6E6E6E;
  --qm-white: #ffffff;
  --qm-border: #dce8c6;
  --qm-soft: #eef5e3;
  --qm-soft-2: #f8fbf2;
  --qm-hover: #e4f0d3;
  --qm-shadow: 0 12px 30px rgba(26, 26, 26, 0.08);
  --qm-radius: 18px;
  --qm-radius-sm: 12px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: Arial, Verdana, Helvetica, sans-serif;
  line-height: 1.6;
  color: var(--qm-text);
  background: var(--qm-bg);
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--qm-text);
  text-decoration: none;
  font-weight: 700;
}

a:hover,
a:focus {
  text-decoration: underline;
}

#wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 14px 32px;
}

/* Header */
.site-header {
  background: var(--qm-white);
  border-radius: 0 0 var(--qm-radius) var(--qm-radius);
  box-shadow: var(--qm-shadow);
  overflow: hidden;
}

.header-topnav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  background: var(--qm-soft);
}

.header-topnav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0.95rem 1rem;
  color: #2c2c2c;
}

.header-topnav a:hover,
.header-topnav a:focus {
  background: var(--qm-hover);
  text-decoration: none;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1rem;
  text-align: center;
  flex-wrap: wrap;
}

.logo img {
  max-height: 100px;
  width: auto;
}

.header-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.site-title {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700;
  line-height: 1.25;
}

.site-claim {
  margin: 0;
  color: var(--qm-muted);
  font-size: clamp(0.95rem, 1.7vw, 1.05rem);
}

/* Shared boxes */
.breadcrumb,
.hero-box,
.overview-box,
.quick-action-box,
.content-box,
.seo-text,
.notice-box {
  background: var(--qm-white);
  border: 1px solid var(--qm-border);
  border-radius: var(--qm-radius);
  box-shadow: var(--qm-shadow);
  margin-top: 22px;
  padding: 1.2rem;
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  color: var(--qm-muted);
  font-size: 0.95rem;
}

.breadcrumb li:not(:last-child)::after {
  content: "›";
  margin-left: 0.45rem;
  color: var(--qm-muted);
}

/* Hero */
.hero-box {
  display: grid;
  grid-template-columns: 1.7fr 0.7fr;
  gap: 1rem;
  align-items: center;
}

.hero-copy h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  line-height: 1.2;
}

.hero-text {
  margin: 0;
  max-width: 820px;
  color: #2f2f2f;
  font-size: 1.03rem;
}

.hero-stats {
  display: flex;
  justify-content: center;
}

.stat-card {
  width: 100%;
  background: linear-gradient(135deg, var(--qm-primary), var(--qm-secondary));
  color: var(--qm-white);
  border-radius: var(--qm-radius);
  padding: 1.4rem 1rem;
  text-align: center;
  box-shadow: 0 12px 28px rgba(127, 168, 47, 0.25);
}

.stat-number {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-label {
  display: block;
  font-size: 0.98rem;
}

/* Overview cards */
.overview-box h2,
.quick-action-box h2,
.content-box h2,
.seo-text h2,
.notice-box h2 {
  margin-top: 0;
}

.option-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.option-card,
.info-card,
.notice-item {
  background: var(--qm-soft-2);
  border: 1px solid var(--qm-border);
  border-radius: var(--qm-radius-sm);
  padding: 1rem;
}

.option-number,
.section-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: var(--qm-primary);
  color: var(--qm-white);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.option-card h3,
.info-card h3,
.notice-item h3,
.steps-box h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.card-button,
.cta-button,
.quick-action-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.82rem 1.2rem;
  border: 0;
  border-radius: 12px;
  background: var(--qm-primary);
  color: var(--qm-white);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
  text-decoration: none;
}

.card-button:hover,
.cta-button:hover,
.quick-action-link:hover,
.card-button:focus,
.cta-button:focus,
.quick-action-link:focus {
  opacity: 0.93;
  transform: translateY(-1px);
  text-decoration: none;
}

/* Quick actions */
.quick-action-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Content sections */
.section-head {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 0.5rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.steps-box {
  background: var(--qm-soft);
  border: 1px solid var(--qm-border);
  border-radius: var(--qm-radius-sm);
  padding: 1rem;
  margin-top: 1rem;
}

.steps-list {
  margin: 0 0 1rem 1.2rem;
  padding: 0;
}

.steps-list li {
  margin-bottom: 0.4rem;
}

.cta-row {
  margin-top: 1rem;
}

/* Text sections */
.seo-text p,
.notice-item p,
.content-box p,
.option-card p,
.info-card p {
  color: #2f2f2f;
}

.notice-item + .notice-item {
  margin-top: 1rem;
}

/* Responsive */
@media (max-width: 980px) {
  .hero-box,
  .option-cards,
  .info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  #wrap {
    padding: 0 10px 24px;
  }

  .header-main {
    gap: 0.65rem;
    padding: 0.9rem;
  }

  .logo img {
    max-height: 72px;
  }

  .site-title {
    font-size: 1.05rem;
  }

  .site-claim {
    font-size: 0.9rem;
  }

  .quick-action-links,
  .section-head {
    flex-direction: column;
    align-items: stretch;
  }

  .card-button,
  .cta-button,
  .quick-action-link {
    width: 100%;
  }

  .hero-copy h1 {
    font-size: 1.45rem;
  }
}
.faq-box {
  background: var(--qm-white);
  border: 1px solid var(--qm-border);
  border-radius: var(--qm-radius);
  box-shadow: var(--qm-shadow);
  margin-top: 22px;
  padding: 1.2rem;
}

.faq-item {
  padding: 1rem;
  background: var(--qm-soft-2);
  border: 1px solid var(--qm-border);
  border-radius: var(--qm-radius-sm);
  margin-top: 1rem;
}

.faq-item h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.faq-item p {
  margin: 0;
  color: #2f2f2f;
}
.site-footer {
  margin-top: 40px;
  background: #f4f8ec;
  border-top: 1px solid #dce8c6;
  padding: 2rem 1rem;
  font-size: 0.95rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-title {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.footer-brand {
  text-align: center;
  margin-bottom: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.footer-col h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 0.4rem;
}

.footer-col a {
  text-decoration: none;
  font-weight: 600;
}

.footer-col a:hover {
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 2rem;
  text-align: center;
  color: #555;
  font-size: 0.85rem;
}

/* Mobile */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.header-topnav a[aria-current="page"] {
  background: var(--qm-primary);
  color: var(--qm-white);
  text-decoration: none;
}
/* Preisliste */
.table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 1rem;
}

.price-table {
  width: 100%;
  min-width: 760px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid var(--qm-border);
  border-radius: var(--qm-radius-sm);
  background: var(--qm-white);
}

.price-table th {
  background: var(--qm-soft);
  color: var(--qm-text);
  text-align: left;
  padding: 1rem;
  border-bottom: 1px solid var(--qm-border);
}

.price-table td {
  padding: 1rem;
  vertical-align: top;
  border-bottom: 1px solid var(--qm-border);
}

.price-table tr:last-child td {
  border-bottom: 0;
}

.price-table tr:nth-child(even) td {
  background: var(--qm-soft-2);
}

.price {
  font-size: 1.15rem;
  font-weight: 700;
  white-space: nowrap;
}

.price small {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--qm-muted);
}

.price-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.price-actions a {
  display: inline-flex;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: var(--qm-soft);
  border: 1px solid var(--qm-border);
  font-size: 0.92rem;
}

.price-actions a:hover,
.price-actions a:focus {
  background: var(--qm-hover);
  text-decoration: none;
}

.price-note {
  background: var(--qm-soft-2);
  border: 1px solid var(--qm-border);
  border-radius: var(--qm-radius-sm);
  padding: 1rem;
  margin-top: 1rem;
}

.price-note p:last-child {
  margin-bottom: 0;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.feature-list li {
  background: var(--qm-soft-2);
  border: 1px solid var(--qm-border);
  border-radius: var(--qm-radius-sm);
  padding: 0.9rem;
}

.back-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 22px;
}

@media (max-width: 980px) {
  .feature-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .back-links {
    flex-direction: column;
  }

  .back-links .cta-button {
    width: 100%;
  }
}