/* RESET & BASE TYPOGRAPHY */
html {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  background: #fff;
  color: #232124;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}
img, svg {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #3B5D27;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.4,0,.2,1);
}
a:hover,.footer-nav a:hover {
  color: #F6BE3A;
}
ul, ol {
  margin: 0 0 20px 20px;
  padding: 0;
}
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  color: #232124;
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-wrap: pretty;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
  color: #3B5D27;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
  color: #F6BE3A;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
strong {
  font-weight: bold;
}

/* CONTAINER & LAYOUT WRAPPERS */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* FLEXBOX PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 28px rgba(59, 93, 39, 0.10);
  margin-bottom: 20px;
  padding: 28px 24px;
  position: relative;
  min-width: 240px;
  transition: box-shadow 0.15s cubic-bezier(.4,0,.2,1), transform 0.15s;
}
.card:hover {
  box-shadow: 0 8px 38px rgba(246,190,58,0.23);
  transform: translateY(-2px) scale(1.025);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.testimonial-card {
  background: #fffbe7;
  border-radius: 16px;
  box-shadow: 0 2px 18px rgba(59, 93, 39, 0.08);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  min-width: 260px;
  flex: 1 1 300px;
  border-left: 6px solid #F6BE3A;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 10px 30px rgba(246,190,58,0.12);
  border-left-color: #3B5D27;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* HEADER AND NAVIGATION */
header {
  width: 100%;
  background: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  box-shadow: 0 3px 15px rgba(246,190,58,0.10);
  position: relative;
  z-index: 100;
}
header a img {
  height: 40px;
  width: auto;
}
header nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 6px 10px;
  color: #3B5D27;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
header nav a:hover,
header nav a:focus {
  background: #F6BE3A;
  color: #232124;
}
.btn-primary {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  background: #F6BE3A;
  border: none;
  border-radius: 22px;
  padding: 12px 32px;
  margin-left: 24px;
  box-shadow: 0 2px 18px rgba(246,190,58,0.12);
  letter-spacing: 0.02em;
  transition: background 0.17s cubic-bezier(.4,0,.2,1), box-shadow 0.18s cubic-bezier(.4,0,.2,1), transform 0.13s cubic-bezier(.4,0,.2,1);
  cursor: pointer;
  text-shadow: 0 1px 2px rgba(59,93,39,0.09);
}
.btn-primary:hover, .btn-primary:focus {
  background: #3B5D27;
  color: #fffbe7;
  transform: scale(1.04);
  box-shadow: 0 4px 32px rgba(59,93,39,0.11);
}

/* BURGER MENU */
.mobile-menu-toggle {
  display: none;
  background: #F6BE3A;
  color: #232124;
  font-size: 2.1rem;
  padding: 4px 14px;
  border: none;
  border-radius: 12px;
  margin-left: 22px;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 120;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #3B5D27;
  color: #fff;
}

/* MOBILE MENU STYLES */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(59, 93, 39, 0.96);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  z-index: 9999;
  transform: translateX(-103%);
  transition: transform 0.33s cubic-bezier(.78,.13,.15,.86);
  padding-top: 32px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: #fff;
  font-size: 2.2rem;
  border: none;
  padding: 15px 24px 8px 24px;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #F6BE3A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin-top: 20px;
  padding-left: 32px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 14px 0;
  transition: color 0.16s, background 0.16s;
  border-radius: 7px;
  margin-right: 22px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #F6BE3A;
  background: rgba(246,190,58,0.13);
}

/* HERO SECTION & CTAs */
.hero {
  background: linear-gradient(90deg, #F6BE3A 57%, #fffbe7 100%);
  box-shadow: 0 8px 32px rgba(246,190,58,0.15);
  padding: 66px 0 46px 0;
  margin-bottom: 44px;
}
.hero .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.hero .content-wrapper {
  align-items: flex-start;
}
.cta {
  background: #3B5D27;
  color: #fffbe7;
  border-radius: 30px;
  padding: 40px 0;
  box-shadow: 0 4px 28px rgba(59, 93, 39, 0.09);
  margin-bottom: 32px;
}
.cta h2 {
  color: #fffbe7;
}
.cta p {
  color: #fffbe7;
  margin-bottom: 26px;
  font-size: 1.1rem;
}

/* FEATURE GRID & LIST */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  width: 100%;
  justify-content: flex-start;
  margin-bottom: 28px;
}
.feature-grid > div {
  flex: 1 1 210px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1.5px 13px rgba(246,190,58,0.10);
  padding: 30px 18px 20px 18px;
  min-width: 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow 0.13s, border 0.14s, transform 0.14s;
  border-bottom: 4px solid #F6BE3A;
}
.feature-grid > div:hover {
  box-shadow: 0 5px 24px #F6BE3A30;
  transform: translateY(-2px) scale(1.02);
  border-bottom: 4px solid #3B5D27;
}
.feature-grid img {
  width: 37px;
  height: 37px;
  margin-bottom: 7px;
}
.feature-list, .benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.feature-list li,
.benefits-list li {
  font-size: 1.08rem;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #3B5D27;
  background: #fffbe7;
  border-radius: 8px;
  padding: 11px 18px;
}
.feature-list li img, .benefits-list li img {
  width: 24px;
  height: 24px;
}

/* PRICING TABLE */
.pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 22px;
  justify-content: flex-start;
}
.pricing-table > div {
  flex: 1 1 210px;
  background: #f5fff7;
  border: 2.5px solid #F6BE3A;
  border-radius: 18px;
  padding: 30px 20px 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 2.5px 14px rgba(59, 93, 39, 0.08);
  gap: 6px;
  transition: box-shadow 0.18s, border-color 0.18s, transform 0.13s;
}
.pricing-table > div:hover {
  box-shadow: 0 6px 26px rgba(246,190,58,0.145);
  border-color: #3B5D27;
  transform: scale(1.03);
}
.pricing-table h3 {
  color: #3B5D27;
  font-size: 1.22rem;
}
.pricing-table strong {
  font-size: 1.38rem;
  color: #F6BE3A;
  margin-top: 10px;
}

.guarantee-note {
  background: #fffbe7;
  color: #3B5D27;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 24px;
  font-size: 1.05rem;
  margin-top: 18px;
  box-shadow: 0 2px 13px #F6BE3A17;
}
.guarantee-note img {
  width: 26px;
  height: 26px;
}

/* FAQ / ACCORDION */
.faq-list {
  font-size: 1.06rem;
  width: 100%;
  margin: 0 0 20px 0;
}
.faq-list dt {
  margin: 0 0 8px 0;
  font-weight: 700;
  color: #3B5D27;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border-left: 4px solid #F6BE3A;
  padding-left: 12px;
  margin-top: 12px;
  line-height: 1.35;
}
.faq-list dd {
  margin: 0 0 12px 20px;
  padding-left: 3px;
  color: #232124;
}

/* STEP TIMELINE (ablauf.html) */
.step-timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  margin-bottom: 16px;
}
.step-timeline > div {
  flex: 1 1 200px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 14px #F6BE3A15;
  padding: 28px 16px 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  border-bottom: 4px solid #3B5D27;
  min-width: 195px;
  transition: box-shadow 0.11s, border 0.14s, transform 0.12s;
}
.step-timeline > div:hover {
  box-shadow: 0 5px 24px #3B5D2744;
  border-bottom: 4px solid #F6BE3A;
  transform: scale(1.04);
}
.step-timeline img {
  width: 36px;
  height: 36px;
  margin-bottom: 7px;
}

/* TESTIMONIALS */
.testimonial-slider {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.testimonial-card blockquote {
  font-style: italic;
  font-size: 1.1rem;
  color: #292f34;
  margin-bottom: 8px;
}
.testimonial-meta {
  color: #3B5D27;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.trust-signals {
  margin: 28px 0 0 0;
  width: 100%;
}
.trust-signals ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-weight: 600;
  color: #3B5D27;
  font-size: 1.05rem;
}
.trust-signals li {
  background: #f5fff7;
  border-radius: 12px;
  padding: 10px 18px;
  box-shadow: 0 1px 7px #3B5D2709;
}

/* CONTACT DETAILS */
.contact-details {
  display: flex;
  flex-direction: row;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  align-items: flex-start;
}
.address-block, .phone-mail-info, .opening-hours {
  background: #f5fff7;
  border-radius: 12px;
  padding: 20px 26px;
  box-shadow: 0 1px 12px #3B5D2712;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.address-block img, 
.phone-mail-info img, 
.opening-hours img {
  width: 23px; height: 23px; margin-bottom: 2px;
}
.phone-mail-info a {
  color: #3B5D27;
  font-weight: bold;
}
.phone-mail-info a:hover {
  color: #F6BE3A;
}

/* FOOTER */
footer {
  background: #3B5D27;
  color: #fffbe7;
  padding: 38px 15px 26px 15px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 40px;
}
.footer-nav {
  display: flex;
  gap: 18px;
  margin-bottom: 6px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.footer-nav a {
  color: #fffbe7;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background 0.11s, color 0.11s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #F6BE3A;
  color: #3B5D27;
}
.footer-contact {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 26px;
}
.footer-contact img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
}
.footer-contact p {
  font-size: 1rem;
  color: #fffbe7;
  line-height: 1.6;
}
.footer-branding {
  text-align: left;
  font-size: 0.96rem;
  color: #fffbe7;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

/* GENERAL CARDS */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

/* TEXT SECTIONS */
.text-section {
  font-size: 1.07rem;
  color: #232124;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* MODAL & OVERLAYS */
.modal {
  position: fixed;
  z-index: 10010;
  left: 0; right: 0; top: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(40,50,46,0.77);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s;
}
.modal.open {
  opacity: 1;
  pointer-events: auto;
}
.modal-content {
  background: #fffbe7;
  border-radius: 25px;
  padding: 38px 24px 32px 24px;
  width: 95vw;
  max-width: 430px;
  box-shadow: 0 8px 38px rgba(59,93,39,0.19);
  color: #3B5D27;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.modal-content h3 {
  color: #3B5D27;
  font-size: 1.25rem;
}
.modal-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.08rem;
  background: #fff;
  border-radius: 7px;
  padding: 14px 18px;
}
.cookie-category label {
  font-weight: 700;
  color: #3B5D27;
}
.cookie-category input[type='checkbox'] {
  width: 22px;
  height: 22px;
  accent-color: #F6BE3A;
}
.cookie-category .category-required {
  font-size: 0.97rem;
  color: #b1b1a5;
  font-weight: 600;
  margin-left: 8px;
}
.modal-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: flex-end;
  margin-top: 14px;
}
.modal-actions button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: bold;
  border: none;
  outline: none;
  border-radius: 18px;
  padding: 10px 26px;
  font-size: 1.09rem;
  margin: 0;
  background: #3B5D27;
  color: #fffbe7;
  transition: background 0.14s, color 0.14s;
  cursor: pointer;
}
.modal-actions button.secondary {
  background: #fff;
  color: #3B5D27;
  border: 1.5px solid #3B5D27;
}
.modal-actions button.secondary:hover {
  background: #F6BE3A;
  color: #232124;
  border-color: #F6BE3A;
}
.modal-actions button.accept {
  background: #F6BE3A;
  color: #3B5D27;
}
.modal-actions button.accept:hover {
  background: #3B5D27;
  color: #fff;
}
.modal-close {
  background: transparent;
  color: #3B5D27;
  border: none;
  font-size: 2.0rem;
  position: absolute;
  top: 19px; right: 25px;
  cursor: pointer;
  z-index: 2;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  background: #fffbe7;
  color: #3B5D27;
  z-index: 9000;
  box-shadow: 0 -2px 20px #F6BE3A24;
  padding: 26px 18px 26px 18px;
  width: 100vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  opacity: 1;
  transition: bottom 0.32s, opacity 0.21s;
}
.cookie-banner .cookie-text {
  flex: 3 3 300px;
  font-size: 1.05rem;
  color: #3B5D27;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 13px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: bold;
  border: none;
  padding: 10px 22px;
  border-radius: 16px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.13s, color 0.13s;
}
.cookie-banner .accept {
  background: #F6BE3A;
  color: #3B5D27;
}
.cookie-banner .accept:hover,
.cookie-banner .accept:focus {
  background: #3B5D27;
  color: #fffbe7;
}
.cookie-banner .reject {
  background: #fff;
  color: #3B5D27;
  border: 1.5px solid #3B5D27;
}
.cookie-banner .reject:hover,
.cookie-banner .reject:focus {
  background: #F6BE3A;
  color: #232124;
  border-color: #F6BE3A;
}
.cookie-banner .settings {
  background: #fff;
  color: #F6BE3A;
  border: 1.5px solid #F6BE3A;
}
.cookie-banner .settings:hover,
.cookie-banner .settings:focus {
  background: #F6BE3A;
  color: #232124;
}

/* CONFIRMATION/PAGE FEEDBACK */
.confirmation-message {
  background: #f5fff7;
  color: #3B5D27;
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 0 1px 9px #3B5D2722;
  font-size: 1.08rem;
  margin-bottom: 20px;
}
.next-steps-info ul {
  list-style: none;
  padding-left: 0;
  color: #3B5D27;
  font-size: 1.04rem;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 18px;
}
.next-steps-info li {
  background: #fffbe7;
  border-radius: 8px;
  padding: 8px 18px;
  box-shadow: 0 1px 7px #F6BE3A18;
}

/* ACCESSIBILITY FOCUS STATES */
a:focus, button:focus {
  outline: 4px solid #F6BE3A;
  outline-offset: 2px;
}
.btn-primary:focus {
  outline: 2.5px solid #3B5D27;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 900px) {
  .container {
    max-width: 95vw;
  }
  .feature-grid, .step-timeline, .testimonial-slider, .pricing-table, .contact-details {
    gap: 20px;
  }
  header nav {
    gap: 8px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  header {
    flex-direction: row;
    padding: 10px 12px;
  }
  header nav {
    display: none;
  }
  .btn-primary {
    margin-left: 7px;
    padding: 11px 20px;
  }
  .mobile-menu-toggle {
    display: block;
    margin-left: 13px;
  }
  .footer-contact {
    flex-direction: column;
    gap: 10px;
  }
  .feature-grid,
  .pricing-table,
  .testimonial-slider,
  .step-timeline,
  .contact-details {
    flex-direction: column;
    gap: 14px;
  }
  .pricing-table > div,
  .feature-grid > div,
  .step-timeline > div,
  .address-block, .phone-mail-info, .opening-hours {
    min-width: 0;
    width: 100%;
  }
  .testimonial-card {
    min-width: 0;
    flex: 1 1 90vw;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    padding: 18px 8px 18px 8px;
  }
}
@media (max-width: 520px) {
  html {
    font-size: 14px;
  }
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.13rem; }
  .btn-primary {
    padding: 10px 16px;
    font-size: 1rem;
    margin-left: 0;
  }
  .section {
    margin-bottom: 29px;
    padding: 20px 6px;
  }
  .content-wrapper {
    gap: 16px;
  }
}

/* SMOOTH ANIMATIONS FOR BUTTONS, CARDS */
.btn-primary, .mobile-menu-toggle, .cookie-banner button, .modal-actions button {
  transition: background 0.16s cubic-bezier(.4,0,.2,1), color 0.16s, transform 0.13s cubic-bezier(.4,0,.2,1), box-shadow 0.15s;
}
.card:hover, .testimonial-card:hover, .feature-grid > div:hover {
  transition: box-shadow 0.16s, transform 0.13s cubic-bezier(.4,0,.2,1);
  transform: scale(1.025);
  box-shadow: 0 8px 36px #F6BE3A1f;
}

/* Z-INDEX HANDLING */
header, .mobile-menu, .cookie-banner, .modal {
  z-index: 1000;
}
/* Prevent content under modals/cookie-banner */
body.menu-open, body.modal-open {
  overflow: hidden !important;
}

/* COLOR ADJUSTS FOR TESTIMONIALS/CONTRAST */
.testimonial-card, .testimonial-card blockquote, .testimonial-meta {
  color: #232124;
  background: #fffbe7;
}

/* Utility classes */
.mt-2 { margin-top: 16px; }
.mb-2 { margin-bottom: 16px; }
.gap-18 { gap: 18px; }
.rounded { border-radius: 12px; }

/* END CSS */
