/* ========================
   CSS RESET & NORMALIZE
========================= */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  line-height: 1.6;
  font-family: 'Roboto', Arial, sans-serif;
  background-color: #F4F7FA;
  color: #29323C;
  min-height: 100vh;
  overflow-x: hidden;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #29323C;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #7DCFB6;
}
button {
  font-family: inherit;
  font-size: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
ul, ol {
  list-style-position: outside;
  margin-left: 1.2em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #29323C;
}
h1 {
  font-size: 2.667rem; /* 42px */
  margin-bottom: 20px;
  line-height: 1.1;
}
h2 {
  font-size: 2rem; /* 32px */
  margin-bottom: 18px;
  line-height: 1.15;
}
h3 {
  font-size: 1.5rem; /* 24px */
  margin-bottom: 14px;
}
h4 {
  font-size: 1.25rem;
}

/* === ORGANIC & NATURE-THEMED COLORS === */
:root {
  --earth-bg: #F4F7FA;
  --earth-clay: #D6CBBB;
  --earth-wood: #BBA77A;
  --earth-green: #7DCFB6;
  --earth-dark-green: #3F7350;
  --earth-leaf: #A6D5B3;
  --primary: #29323C;
  --secondary: #7DCFB6;
  --accent: #F4F7FA;
  --danger: #BB3C2B;
  --shadow: 0 4px 16px 0 rgba(70,72,40,0.09);
}

/* ====== CONTAINERS ====== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* === SECTIONS & SPACING === */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background-color: #F4F7FA;
  border-radius: 36px;
  box-shadow: var(--shadow);
  box-sizing: border-box;
  transition: box-shadow 0.3s;
}
section:not(.hero) {
  margin-bottom: 60px;
  padding: 40px 0;
}

@media (max-width: 768px) {
  .section, section:not(.hero) {
    padding: 28px 6px;
    margin-bottom: 36px;
  }
}

/* =========================
   HEADER & MAIN NAVIGATION
========================= */
header {
  background-color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 32px;
  box-shadow: 0 3px 18px 0 rgba(44,56,41,0.06);
  position: relative;
  z-index: 21;
}
.logo {
  display: flex;
  align-items: center;
  margin-right: 18px;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--primary);
  padding: 7px 14px;
  border-radius: 18px;
  transition: background-color 0.2s, color 0.2s;
  position: relative;
}
.main-nav a:hover,
.main-nav a:focus {
  background-color: var(--secondary);
  color: #fff;
}
.cta.primary {
  background-color: var(--earth-green);
  color: #fff;
  border: none;
  border-radius: 26px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  padding: 10px 26px;
  margin-left: 26px;
  box-shadow: 0 2px 10px 0 rgba(120,180,162,0.08);
  transition: background 0.23s, box-shadow 0.23s, transform 0.10s;
  cursor: pointer;
  outline: none;
  letter-spacing: 0.5px;
}
.cta.primary:hover,
.cta.primary:focus {
  background: var(--earth-dark-green);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 24px 0 rgba(39,132,95,0.11);
  color: #fff;
}
.cta {
  display: inline-block;
  background: var(--earth-leaf);
  color: var(--primary);
  border: none;
  border-radius: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 17px;
  font-weight: 600;
  padding: 9px 22px;
  margin-top: 16px;
  cursor: pointer;
  transition: background 0.22s, box-shadow 0.16s, color 0.16s;
  box-shadow: 0 1px 6px 0 rgba(141, 180, 143, 0.07);
}
.cta:hover,
.cta:focus {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 6px 14px 0 rgba(128,163,136,0.14);
}

/* Burger menu button */
.mobile-menu-toggle {
  display: none;
  background: var(--earth-green);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 1.8rem;
  align-items: center;
  justify-content: center;
  z-index: 31;
  transition: background 0.25s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--earth-dark-green);
  color: #fff;
}

@media (max-width: 980px) {
  header {
    flex-wrap: wrap;
    padding: 16px 7px;
  }
  .main-nav {
    display: none;
  }
  .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    margin-left: auto;
  }
}


/* ============================
   MOBILE MENU OVERLAY & NAV
============================= */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(41, 50, 60, 0.86);
  z-index: 40;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.79,0,0.14,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  visibility: hidden;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
  visibility: visible;
}
.mobile-menu-close {
  margin: 32px 28px 10px 0;
  background: var(--earth-clay);
  color: var(--primary);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.45rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--danger);
  color: #fff;
}
.mobile-menu nav.mobile-nav {
  width: 88vw;
  max-width: 350px;
  background: var(--earth-bg);
  color: var(--primary);
  border-radius: 32px 0 0 32px;
  box-shadow: 0 0 32px 0 rgba(44,56,41,0.12);
  padding: 36px 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
  margin-right: 0;
  min-height: 86vh;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  border-radius: 18px;
  padding: 11px 32px;
  margin: 0 0 3px 18px;
  display: inline-block;
  width: 90%;
  transition: background 0.19s, color 0.17s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--earth-leaf);
  color: var(--earth-dark-green);
}

/* =====================
      HERO SECTION
===================== */
.hero {
  background: linear-gradient(110deg, var(--earth-leaf) 55%, var(--earth-bg) 100%);
  border-radius: 0 0 38px 38px;
  box-shadow: 0 6px 32px 0 rgba(145,169,126,0.11);
  padding: 54px 0 56px 0;
  margin-bottom: 40px;
  position: relative;
}
.hero .container {
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 690px;
  margin: 0 auto;
}
.hero h1 {
  font-size: 2.33rem;
  color: #29323C;
}
.hero .subheadline {
  font-size: 1.25rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #48615A;
  margin-bottom: 16px;
}
.hero .cta,
.hero .cta.primary {
  margin-top: 18px;
}

@media (max-width: 600px) {
  .hero {
    padding: 30px 0 33px 0;
    border-radius: 0 0 28px 28px;
  }
  .hero .content-wrapper {
    gap: 16px;
  }
  .hero h1 {font-size: 1.65rem;}
}

/* =====================================
  FLEXBOX LAYOUTS, CARDS & SPACING
===================================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 2px 20px 0 rgba(61,83,63,0.10);
  padding: 26px 22px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.24s, transform 0.14s;
  min-width: 250px;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 32px 0 rgba(82,133,101,0.17);
  transform: translateY(-4px) scale(1.025);
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 13px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 26px;
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 6px 18px 0 rgba(120,156,125,0.09);
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.12s;
  position: relative;
  font-family: 'Roboto', Arial, sans-serif;
  color: #29323C;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 8px 26px 0 rgba(67,100,80,0.12);
  transform: translateY(-2px) scale(1.017);
}
.testimonial-card p {
  font-size: 1.05rem;
  color: #29323C;
  margin-bottom: 4px;
}
.testimonial-card span {
  font-size: 1rem;
  color: #3F7350;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =============== ICON-BENEFITS =============== */
.icon-benefits {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  margin: 18px 0 10px 0;
}
.icon-benefits span {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--earth-bg);
  padding: 7px 18px 7px 9px;
  border-radius: 19px;
  font-size: 1.02rem;
  color: var(--earth-dark-green);
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  box-shadow: 0 1px 6px 0 rgba(153,179,126,0.07);
}
.icon-benefits img {
  width: 20px;
  height: 20px;
}

/* ========== LISTS ========= */
ul, ol {
  margin-bottom: 18px;
}
ul.feature-list, ul.product-grid, ul.benefits, ul.usp-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin-left: 0;
  list-style-type: none;
}
ul.product-grid li, ul.feature-list li, ul.benefits li, ul.usp-list li {
  background: #fff;
  padding: 15px 18px;
  border-radius: 18px;
  margin-bottom: 8px;
  color: #29323C;
  font-size: 1rem;
  box-shadow: 0 1.5px 7px 0 rgba(153,179,126,0.06);
}
ul.product-grid li em, ul.feature-list li em, ul.benefits li em, ul.usp-list li em {
  color: var(--earth-dark-green);
  font-style: normal;
  font-weight: 700;
}
ul.contact-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  list-style: none;
  padding-left: 0;
  margin-bottom: 16px;
}

/* FAQ styles (contact, personalisierung, etc.) */
dl {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
dl dt {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #3F7350;
  font-weight: 600;
  font-size: 1.11rem;
  margin-top: 7px;
  margin-bottom: 2px;
}
dl dd {
  font-size: 1rem;
  color: #29323C;
  margin-left: 0;
  margin-bottom: 10px;
}

/* ============= BRANDING Info ============= */
.brand-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.brand-info img {
  height: 40px;
  width: auto;
  margin-bottom: 7px;
}

/* ============ FOOTER ============ */
footer {
  background: var(--earth-clay);
  color: #29323C;
  padding: 48px 0 28px 0;
  margin-top: 36px;
}
footer .container {
  align-items: stretch;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
}
.footer-nav, .footer-menu{
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 128px;
}
.footer-nav a, .footer-menu a {
  color: #29323C;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 5px 0;
  transition: color 0.2s;
}
.footer-nav a:hover, .footer-menu a:hover {
  color: var(--earth-dark-green);
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.99rem;
}
.social-media-links {
  margin-top: 10px;
  display: flex;
  gap: 12px;
}
@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* =========== TEXT & BLOCKS ============ */
.text-section, .text-image-section {
  font-family: 'Roboto', Arial, sans-serif;
  color: #222;
  font-size: 1.09rem;
  line-height: 1.75;
  padding-right: 0;
  margin-bottom: 7px;
}
.text-section p, .text-section h3 {
  margin-bottom: 13px;
}
blockquote {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  color: var(--earth-dark-green);
  border-left: 6px solid var(--earth-green);
  padding-left: 18px;
  margin-bottom: 17px;
  font-style: italic;
}

/* ========== ORDERED LISTS ============= */
ol {
  padding-left: 19px;
  margin-bottom: 18px;
}
ol li {
  padding: 7px 0;
}

/* ========== BUTTON GENERICS ========== */
button, .cta, input[type="submit"] {
  transition: background 0.18s, color 0.19s, box-shadow 0.18s, transform 0.1s;
}

/* ==================
   RESPONSIVENESS
=================== */
@media (max-width: 810px) {
  .container {
    padding: 0 7px;
  }
  .content-wrapper {
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .content-grid, .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .hero .content-wrapper {
    align-items: stretch;
  }
  .footer-nav, .footer-menu {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 18px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
}

/* =====================
   Cookie Consent Banner
====================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  z-index: 199;
  background: #fff;
  box-shadow: 0 -4px 16px 0 rgba(61,83,63,0.093);
  padding: 21px 18px 18px 18px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}
.cookie-banner__text {
  font-size: 1.02rem;
  color: #29323C;
  flex: 1;
  max-width: 730px;
}
.cookie-banner__actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-banner__button,
.cookie-banner__button--accept{
  background: var(--earth-green);
  color: #fff;
  border: none;
  border-radius: 22px;
  padding: 8px 20px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 0.8px 6px 0 rgba(68,128,100,0.07);
}
.cookie-banner__button--accept:focus,
.cookie-banner__button--accept:hover {
  background: var(--earth-dark-green);
}
.cookie-banner__button--reject {
  background: #fff0f0;
  color: var(--danger);
  border: 1px solid var(--danger);
  font-weight: 600;
  border-radius: 22px;
  padding: 8px 18px;
}
.cookie-banner__button--reject:hover,
.cookie-banner__button--reject:focus {
  background: var(--danger);
  color: #fff;
  border: 1px solid var(--danger);
}
.cookie-banner__button--settings {
  background: var(--earth-leaf);
  color: var(--primary);
  border-radius: 22px;
  padding: 8px 18px;
  font-weight: 600;
  border: none;
}
.cookie-banner__button--settings:hover,
.cookie-banner__button--settings:focus {
  background: var(--secondary);
  color: #fff;
}
@media (max-width: 600px) {
 .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 16px 4px 13px 7px;
 }
 .cookie-banner__actions {
    gap: 8px;
 }
}

/* ================
   Cookie Modal
================= */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(37,52,36,0.51);
  z-index: 210;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  visibility: visible;
  opacity: 1;
  transition: opacity 0.19s;
}
.cookie-modal {
  background: #fff;
  border-radius: 34px;
  max-width: 500px;
  width: 92vw;
  padding: 36px 28px 28px 28px;
  box-shadow: 0 8px 44px 0 rgba(85,110,73,0.13);
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: relative;
}
.cookie-modal__close {
  position: absolute;
  top: 15px; right: 19px;
  background: var(--earth-clay);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  color: var(--primary);
  font-size: 1.1rem;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, color 0.15s;
  z-index: 21;
}
.cookie-modal__close:hover,
.cookie-modal__close:focus {
  background: var(--danger);
  color: #fff;
}
.cookie-modal__title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.5rem;
  color: var(--primary);
}
.cookie-modal__section {
  background: var(--earth-bg);
  border-radius: 22px;
  padding: 14px 17px;
  margin-bottom: 9px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cookie-modal__section label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #29323C;
}
.cookie-modal__switch {
  display: inline-flex;
  align-items: center;
  height: 26px;
}
.cookie-toggle {
  width: 44px;
  height: 26px;
  border-radius: 14px;
  background: var(--earth-leaf);
  position: relative;
  transition: background 0.25s;
}
.cookie-toggle input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 3px; left: 3px;
  width: 20px;
  height: 20px;
  background: var(--earth-green);
  border-radius: 50%;
  transition: left 0.22s, background 0.18s;
}
.cookie-toggle input[type="checkbox"]:checked + .cookie-toggle-slider {
  left: 21px;
  background: var(--earth-dark-green);
}
.cookie-toggle input[type="checkbox"]:disabled + .cookie-toggle-slider {
  background: #bbb;
  cursor: default;
}

.cookie-modal__footer {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
 .cookie-modal {
   padding: 16px 7px 13px 11px;
   border-radius: 16px;
 }
}

/* ======================
   Typography Utilities
====================== */
.subtitle, .subheadline {
  font-size: 1.125rem;
  color: #48615A;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
}
strong {
  font-weight: 700;
}
em {
  font-style: italic;
}

/* ============= UTILS ============ */
.align-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.rounded {
  border-radius: 22px;
}
.shadow {
  box-shadow: var(--shadow);
}

/* Microinteractions (hover/focus) */
a, .cta, button, .mobile-menu-toggle, .mobile-menu-close, .cookie-modal__close {
  outline: none;
  transition: box-shadow 0.15s, background 0.18s, color 0.15s, border 0.19s, transform 0.1s;
}
:focus-visible {
  outline: 2px solid var(--earth-green);
  outline-offset: 2px;
}

/* =========================
  Hide mobile menu desktop
========================= */
.mobile-menu { display: none; }
.mobile-menu.open { display: flex; }

@media (max-width: 980px) {
  .mobile-menu {
    display: flex;
    pointer-events: none;
    visibility: hidden;
  }
  .mobile-menu.open {
    display: flex;
    pointer-events: all;
    visibility: visible;
  }
}

/* Hide cookie modal overlay by default */
.cookie-modal-overlay {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-overlay.open {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}

/* =========== PRINT =========== */
@media print {
  header, footer, .cookie-banner, .mobile-menu, .cookie-modal-overlay { display: none !important; }
  body { background: #fff; color: #222; }
}

/* ============= CUSTOM ORGANIC SHAPE: Example for hero ============== */
.hero::before {
  content: '';
  position: absolute;
  right: -40px;
  top: 60px;
  width: 180px;
  height: 180px;
  background: var(--earth-green);
  opacity: 0.13;
  border-radius: 56% 34% 46% 61%/49% 43% 59% 55%;
  z-index: 0;
  pointer-events: none;
}
.hero .content-wrapper {
  position: relative;
  z-index: 1;
}

/* ===============================
   END NATURE ORGANIC CSS STYLES
=============================== */