@font-face {
  font-family: "DM Sans";
  src: url(../fonts/DMSans-VariableFont_opsz\,wght.ttf);
  font-display: swap;
}

:root {
  --primary: #2E7D32;           /* Waldgrün für Akzente */
  --primary-dark: #1B5E20;      /* Dunkelgrün für Hover und starke Elemente */
  --accent: #E67E22;            /* Warmes Orange für besondere Highlights */
  --accent-hover: #D35400;
  --text-dark: #2C3E2F;
  --text-light: #5D6E5E;
  --bg-light: #F9F6EF;          /* Warmes, natürliches Hellbeige */
  --border-color: #D4CFC0;
  --shadow: 0 12px 28px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.02);
  --radius: 16px;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Outfit', 'DM Sans', -apple-system, sans-serif;
  --green-bg: rgba(46, 125, 50, 0.08);
  --green-solid: #E8F5E9;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.6;
  background: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

main { flex: 1 0 auto; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--primary-dark);
  color: #fff;
  box-shadow: 0 8px 18px rgba(46, 125, 50, 0.25);
}

.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(230, 126, 34, 0.3);
}

.btn-large { padding: 18px 44px; font-size: 1.15rem; }
.btn-block { width: 100%; }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
  color: #2E4A2E;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.section-subtitle {
  text-align: center;
  font-size: 1.25rem;
  margin-bottom: 28px;
  color: var(--text-light);
}

.site-header {
  background: #eff5ef;
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 0;
  border-bottom: 1px solid rgba(46, 125, 50, 0.15);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo-area .logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-text { display: flex; flex-direction: column; font-weight: 700; line-height: 1.2; }
.logo-line1 { font-size: 1.5rem; color: #2C5E2C; font-family: var(--font-heading); }
.logo-line2 { font-size: 0.9rem; color: var(--text-light); letter-spacing: 2px; text-transform: uppercase; }

.main-nav .nav-list { display: flex; gap: 36px; list-style: none; }
.main-nav a { font-weight: 500; color: var(--text-dark); transition: color 0.2s; font-size: 1rem; }
.main-nav a:hover { color: var(--primary); }

.header-actions { display: flex; align-items: center; gap: 20px; }
.header-notice {
  font-size: 0.8rem;
  color: var(--text-light);
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(4px);
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 500;
}
.mobile-menu-toggle { display: none; background: none; border: none; font-size: 2rem; color: #2C5E2C; cursor: pointer; }

.hero-centered {
  position: relative;
  padding: 0;
  background: none;
  min-height: 680px;
  display: flex;
  align-items: center;
  text-align: center;
}

.hero-background {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 100%);
  z-index: 1;
}

.hero-content-centered {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 0 auto;
  padding: 80px 32px;
  color: #fff;
}

.hero-badge-light {
  display: inline-block;
  background: rgba(46, 125, 50, 0.85);
  backdrop-filter: blur(8px);
  color: #fff;
  font-weight: 600;
  padding: 8px 24px;
  border-radius: 40px;
  font-size: 1.05rem;
  margin-bottom: 28px;
  border: 1px solid rgba(255,255,255,0.2);
}

.hero-centered .hero-title {
  color: #fff;
  text-shadow: 0 4px 14px rgba(0,0,0,0.3);
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 8vw, 3.6rem);
}

.hero-subtitle-light {
  font-size: 1.4rem;
  color: rgba(255,255,255,0.92);
  margin-bottom: 36px;
}

.hero-features-light {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
  color: #fff;
  flex-wrap: wrap;
}

.hero-features-light li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.hero-features-light i { color: #F9A825; font-size: 1.2rem; }

.intro-text { padding: 80px 0 30px; text-align: center; }
.intro-description { max-width: 780px; margin: 0 auto; font-size: 1.2rem; color: var(--text-light); }

.features { padding: 80px 0; }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 36px; }
.feature-card {
  text-align: center;
  padding: 36px 24px;
  background: linear-gradient(135deg, #E8F5E9 0%, #fff 100%);
  border-radius: var(--radius);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid transparent;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(46, 125, 50, 0.2);
}
.feature-icon { font-size: 2.8rem; color: var(--primary); margin-bottom: 24px; }
.feature-card h3 { font-family: var(--font-heading); font-size: 1.4rem; margin-bottom: 12px; color: #2E4A2E; }

.trusted-by { padding: 80px 0; background: linear-gradient(135deg, #E8F5E9 0%, #fff 100%); }
.logo-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; margin-bottom: 48px; }
.logo-strip img { width: 180px; aspect-ratio: 1/1; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.testimonial-highlight { max-width: 780px; margin: 0 auto; }
.testimonial-card { background: #fff; padding: 32px; border-radius: var(--radius); box-shadow: var(--shadow); }
.testimonial-header { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-bottom: 18px; }
.testimonial-name { font-weight: 700; font-size: 1.25rem; }
.verified-badge { color: var(--primary); font-size: 0.9rem; font-weight: 600; }
.stars { color: #F9A825; margin-left: auto; font-size: 1.2rem; }

.how-it-works { padding: 80px 0; background: #fff; }
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 36px; }
.step { text-align: center; }
.step img { width: 100%; max-width: 120px; margin: 0 auto 24px; border-radius: 50%; box-shadow: 0 8px 20px rgba(0,0,0,0.06); padding: 16px; background: #fff; }
.step h3 { font-size: 1.6rem; margin-bottom: 10px; font-family: var(--font-heading); }

.testimonials { padding: 80px 0; background: linear-gradient(135deg, #E8F5E9 0%, #fff 100%); }
.testimonials-slider { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 8px 4px 24px; scrollbar-width: none; }
.testimonials-slider::-webkit-scrollbar { display: none; }
.testimonial-slide { flex: 0 0 calc(50% - 12px); min-width: 250px; background: #fff; border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); scroll-snap-align: start; }
.testimonial-quote { font-size: 1.15rem; font-style: italic; margin-bottom: 24px; color: var(--text-light); line-height: 1.5; }
.testimonial-author { font-weight: 600; }
.slider-controls { display: flex; justify-content: center; gap: 24px; margin-top: 32px; }
.slider-controls button { background: #fff; border: 1px solid var(--border-color); width: 48px; height: 48px; border-radius: 50%; font-size: 1.3rem; cursor: pointer; transition: all 0.2s; }
.slider-controls button:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

.comparison { padding: 80px 0; }
.comparison-subtitle { text-align: center; margin-bottom: 36px; font-size: 1.15rem; }
.comparison-table { max-width: 820px; margin: 0 auto; border: 1px solid var(--border-color); border-radius: var(--radius); overflow: hidden; }
.comparison-header, .comparison-row { display: grid; grid-template-columns: 1fr 1fr 1fr; padding: 18px 24px; }
.comparison-header { background: var(--primary-dark); color: #fff; font-weight: 700; }
.comparison-row { border-top: 1px solid var(--border-color); }
.comparison-row span i { color: var(--primary); margin-right: 8px; }
.comparison-cta { text-align: center; margin-top: 44px; }

.durability { padding: 80px 0; background: linear-gradient(135deg, #E8F5E9 0%, #fff 100%); }
.durability-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.durability-testimonial { margin-top: 28px; padding: 24px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); }
.durability-image img { border-radius: var(--radius); box-shadow: var(--shadow); }

.gallery { padding: 80px 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.gallery-grid img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.faq { padding: 80px 0; background: #fff; }
.faq-list { max-width: 900px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-color); padding: 24px 0; }
.faq-item summary { font-weight: 600; font-size: 1.25rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--primary); }
.faq-item[open] summary::after { content: '\f077'; }
.faq-content { padding: 18px 0 0; color: var(--text-light); }

.contact { padding: 80px 0; background: linear-gradient(135deg, #E8F5E9 0%, #fff 100%); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.offer-badge { display: inline-block; background: var(--primary-dark); color: #fff; font-weight: 700; padding: 10px 24px; border-radius: 40px; margin-bottom: 24px; font-size: 1.1rem; }
.price-wrapper { display: flex; flex-wrap: wrap; align-items: baseline; gap: 18px; margin-bottom: 28px; }
.price-current { font-size: 3rem; font-weight: 700; color: var(--primary-dark); }
.price-old { font-size: 1.5rem; text-decoration: line-through; color: #888; }
.offer-features { list-style: none; margin-top: 28px; }
.offer-features li { margin-bottom: 12px; font-size: 1.1rem; }
.offer-features i { color: var(--primary); margin-right: 10px; }
.contact-form { background: #fff; padding: 40px; border-radius: var(--radius); box-shadow: var(--shadow); }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 0.95rem; }
.form-group input:not([type="checkbox"]) { width: 100%; padding: 16px 20px; border: 1px solid var(--border-color); border-radius: 40px; font-size: 1rem; transition: border-color 0.2s; }
.form-group input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.15); }
.checkbox { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; }
.checkbox input { width: 20px; height: 20px; accent-color: var(--primary); }

.site-footer {
  background: var(--green-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #1e1e1e;
  padding: 56px 0 28px;
  margin-top: auto;
  border-top: 1px solid rgba(46, 125, 50, 0.15);
}

.footer-container { max-width: 1280px; margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: repeat(4,1fr); gap: 36px; }
.footer-logo { display: flex; align-items: center; gap: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 14px; }
.footer-links a { color: #1e1e1e; transition: color 0.2s; font-weight: 500; }
.footer-links a:hover { color: var(--primary); }
.footer-contact p { margin-bottom: 10px; font-size: 0.95rem; color: #333; }
.footer-disclaimer {
  grid-column: span 4;
  font-size: 0.85rem;
  color: #444;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 28px;
  margin-top: 20px;
  text-align: center;
}
.footer-copyright { grid-column: span 4; text-align: center; font-size: 0.9rem; color: #555; }

@media (max-width: 992px) {
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .footer-container { grid-template-columns: repeat(2,1fr); }
  .footer-disclaimer, .footer-copyright { grid-column: span 2; }
  .testimonial-slide { flex: 0 0 80%; }
}

@media (max-width: 768px) {
  .main-nav { display: none !important; }
  .contact-grid, .durability-grid { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; }
  .footer-disclaimer, .footer-copyright { grid-column: span 1; }
  .logo-strip img { width: 140px; height: 100px; }
  .steps-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .comparison-header, .comparison-row { grid-template-columns: 1fr 1fr 1fr; font-size: 0.9rem; padding: 12px 8px; }
  .hero-centered { min-height: 550px; }
  .hero-features-light { flex-direction: column; gap: 16px; }
}

@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
}

.thanks-main {
  word-break: break-word;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  word-break: break-word;
}

.legal-content h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 0.5rem;
}

.legal-content h2 {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--primary);
  margin: 1.8rem 0 1rem;
}

.legal-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 1.2rem 0 0.8rem;
}

.legal-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.legal-content ul, .legal-content ol {
  margin: 1rem 0 1rem 1.8rem;
  padding-left: 0.5rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.legal-content a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content a:hover {
  color: var(--accent);
}

.legal-content strong {
  color: var(--primary-dark);
  font-weight: 600;
}

@media (max-width: 768px) {
  .legal-content {
    padding: 30px 16px;
  }
  .legal-content h1 {
    font-size: 1.8rem;
  }
  .legal-content h2 {
    font-size: 1.4rem;
  }
  .legal-content h3 {
    font-size: 1.2rem;
  }
}