/* -------------------------------------------------------
  CSS RESET & BASELINE NORMALIZATION                      
------------------------------------------------------- */
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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  min-height: 100vh;
  background: #F7F5E8;
  color: #225D3A;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #225D3A;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #6e8f52;
  outline: none;
}
ul, ol {
  margin: 0 0 16px 20px;
  padding: 0;
}
li {
  margin-bottom: 8px;
}
strong, b {
  font-weight: bold;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #225D3A;
  font-weight: 700;
  letter-spacing: 0.015em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 16px;
}
h4 {
  font-size: 1.125rem;
  margin-bottom: 12px;
}
p {
  margin-bottom: 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 2px 16px 0 rgba(34, 93, 58, 0.08);
  transition: box-shadow 0.3s;
}
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ---------------------------------------------------------
   NAVIGATION HEADER
--------------------------------------------------------- */
header {
  background: #FDFCF5;
  padding: 18px 0 12px 0;
  border-bottom: 1px solid #e2e0cb;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
header a img {
  height: 48px;
  width: auto;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #225D3A;
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.2s, color 0.2s;
}
header nav a:hover, header nav a:focus {
  color: #507c58;
  border-bottom: 2px solid #A9CB8F;
  outline: none;
}
header .button.primary {
  margin-left: 24px;
}

/* ---------------------------------------------------------
   MOBILE NAVIGATION
--------------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 1003;
  background: #225D3A;
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 48px;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 1px 4px rgba(34,93,58,0.13);
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #507c58;
}
.mobile-menu {
  position: fixed;
  display: flex;
  flex-direction: column;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: #F7F5E8;
  z-index: 1004;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.86,0,.07,1);
  box-shadow: -4px 0 16px 0 rgba(34,93,58,0.11);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: #A9CB8F;
  color: #225D3A;
  border: none;
  border-radius: 36px;
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 1005;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(34,93,58,0.11);
  transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #225D3A;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 100px;
  align-items: center;
}
.mobile-nav a {
  color: #225D3A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 500;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 18px;
  transition: background 0.2s, color 0.2s;
  width: 90vw;
  max-width: 320px;
  text-align: center;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #A9CB8F;
  color: #225D3A;
  outline: none;
}
@media (max-width: 1020px) {
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }
  header nav {
    gap: 20px;
  }
}
@media (max-width: 900px) {
  header nav, header .button.primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
/* Hide mobile menu by default on large */
@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
}
/* ---------------------------------------------------------
   BUTTONS & LINKS
--------------------------------------------------------- */
.button {
  background: #A9CB8F;
  color: #225D3A;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 32px;
  padding: 14px 34px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.18s;
  box-shadow: 0 2px 8px 0 rgba(34,93,58,0.03);
  margin-top: 12px;
  display: inline-block;
  letter-spacing: 0.01em;
}
.button.primary {
  background: #225D3A;
  color: #F7F5E8;
  box-shadow: 0 4px 16px 0 rgba(34,93,58,0.15);
}
.button.primary:hover,.button.primary:focus {
  background: #173c25;
  color: #fff;
  outline: none;
}
.button:hover,.button:focus {
  background: #A1C07B;
  color: #173c25;
  outline: none;
}

/* ---------------------------------------------------------
   HERO SECTION
--------------------------------------------------------- */
.hero {
  background: #A9CB8F;
  background-image: url('../assets/decor/leaf-bg.svg');
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 32px;
  margin-bottom: 60px;
  padding: 60px 16px 60px 16px;
  box-shadow: 0 2px 16px #a9cb8f1a;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero .container {
  justify-content: center;
  align-items: center;
  gap: 0;
}
.hero .content-wrapper {
  align-items: center;
  gap: 12px;
}
.hero h1 {
  color: #225D3A;
  font-size: 2.6rem;
  text-align: center;
  text-shadow: 0 2px 18px #f7f5e855;
  margin-bottom: 8px;
}
.hero .subheadline {
  font-size: 1.22rem;
  color: #225D3A;
  margin-bottom: 6px;
  text-align: center;
}
.hero .button.primary {
  margin-top: 24px;
  font-size: 1.125rem;
}

/* ---------------------------------------------------------
   ORGANIC SECTIONS, CARDS, FEATURES
--------------------------------------------------------- */
.section {
  background: #fff;
  border-radius: 32px;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 2px 16px 0 rgba(34,93,58,0.08);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: #FDFCF5;
  border-radius: 22px 28px 22px 36px;
  box-shadow: 0 4px 18px 0 rgba(34,93,58,0.07);
  padding: 28px 22px;
  flex: 1 1 270px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.24s, transform 0.18s;
  min-width: 240px;
}
.card:hover {
  box-shadow: 0 8px 26px 0 rgba(34,93,58,0.16);
  transform: translateY(-3px) scale(1.03) rotate(-0.3deg);
}
.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;
}

/* ------------------ Feature Grid ---------------------- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  list-style: none;
  padding-left: 0;
}
.feature-grid li {
  flex: 1 1 220px;
  background: #F7F5E8;
  border-radius: 21px 25px 20px 29px;
  box-shadow: 0 2px 10px 0 #6e8f5212;
  padding: 22px 16px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 180px;
  transition: box-shadow 0.24s, transform 0.17s;
}
.feature-grid li img {
  width: 40px;
  height: 40px;
  margin-bottom: 9px;
}
.feature-grid li:hover {
  box-shadow: 0 8px 30px 0 rgba(34,93,58,0.14);
  transform: scale(1.035) rotate(0.6deg);
}

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

/* ------------------ Services / Teasers --------------- */
.services-list, .services-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  justify-content: flex-start;
}
.service-teaser, .service-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 22px 18px 21px 28px;
  box-shadow: 0 2px 14px 0 rgba(34,93,58,0.09);
  padding: 24px 18px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.18s, transform 0.13s;
  border: 1px solid #e8eedb;
}
.service-teaser:hover, .service-card:hover {
  box-shadow: 0 6px 20px 0 rgba(34,93,58,0.13);
  transform: scale(1.03) rotate(-0.6deg);
}
.service-price {
  margin-top: 6px;
  color: #225D3A;
  font-weight: 700;
  font-size: 1.05rem;
}


/* ------------------ Case Studies, Inspiration, FAQ ---- */
.case-study-list, .inspiration-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.project-description {
  background: #FDFCF5;
  border-radius: 25px 23px 19px 32px;
  box-shadow: 0 2px 10px 0 #6e8f5214;
  padding: 23px 20px 18px;
  margin-bottom: 20px;
  flex: 1 1 290px;
  min-width: 210px;
  transition: box-shadow 0.2s;
}
.project-description:hover {
  box-shadow: 0 8px 26px 0 rgba(34,93,58,0.13);
}
.tipps-list, .topic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: disc inside;
  margin-bottom: 12px;
}
.tipps-list li {
  min-width: 130px;
  background: #E8EEDB;
  color: #225D3A;
  border-radius: 12px 20px 12px 20px;
  padding: 7px 16px;
  margin-bottom: 0;
  font-size: 0.98rem;
}
.tag {
  background: #A9CB8F;
  color: #225D3A;
  border-radius: 16px;
  padding: 6px 18px;
  font-size: 0.92rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-right: 6px;
  margin-bottom: 2px;
  letter-spacing: 0.01em;
}
.trend-highlights {
  background: #A9CB8F;
  border-radius: 18px 34px 16px 28px;
  padding: 14px 18px 13px;
  margin-top: 22px;
  color: #225D3A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  box-shadow: 0 2px 8px 0 rgba(34,93,58,0.07);
}

/* ------------------ FAQ Accordion --------------------- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: #FDFCF5;
  border-radius: 20px 22px 17px 24px;
  border: 1px solid #e3eed6;
  padding: 17px 22px 11px;
  margin-bottom: 8px;
  transition: box-shadow 0.17s;
}
.faq-item h2 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

/* ------------------ Testimonials ---------------------- */
.testimonial-card {
  background: #FDFCF5;
  color: #1d3524;
  border-radius: 28px 20px 28px 24px;
  box-shadow: 0 2px 10px 0 rgba(34,93,58,0.08);
  padding: 20px 28px 20px 28px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 230px;
  max-width: 650px;
  font-size: 1.09rem;
  font-family: 'Roboto', Arial, sans-serif;
  transition: box-shadow 0.18s;
}
.testimonial-card p {
  font-size: 1.13rem;
  color: #225D3A;
  margin-bottom: 5px;
}
.testimonial-details {
  color: #6e8f52;
  font-size: 1.02rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-card:hover {
  box-shadow: 0 8px 22px 0 rgba(34,93,58,0.14);
}

/* ------------------ Process Steps --------------------- */
.process-steps {
  margin: 0 0 22px 18px;
  padding: 0;
  list-style: decimal inside;
  color: #225D3A;
  font-size: 1.05rem;
  font-family: 'Roboto', Arial, sans-serif;
}

/* ------------- Contact List --------------------------- */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding-left: 0;
  font-size: 1rem;
  margin-bottom: 12px;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #225D3A;
  font-family: 'Roboto', Arial, sans-serif;
}
.contact-list img {
  width: 22px;
  height: 22px;
}

/* ------------------ Cookie Consent Banner ------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #FFF9E1;
  color: #225D3A;
  box-shadow: 0 -1px 22px 0 rgba(34,93,58,0.11);
  border-radius: 32px 32px 0 0;
  padding: 22px 18px 24px 18px;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 16px;
  animation: banner-slide-up 0.55s cubic-bezier(.7,.13,.22,1);
}
@keyframes banner-slide-up {
  0% { transform: translateY(160px); opacity:0; }
  100% { transform: translateY(0); opacity:1; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.cookie-banner button, .cookie-banner .button {
  padding: 11px 28px;
  border-radius: 25px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.cookie-banner .button.accept {
  background: #225D3A;
  color: #fcfceb;
}
.cookie-banner .button.reject {
  background: #e7ece0;
  color: #225D3A;
}
.cookie-banner .button.settings {
  background: #A9CB8F;
  color: #225D3A;
}
.cookie-banner .button.accept:hover, .cookie-banner .button.accept:focus {
  background: #173c25;
  color: #fff;
}
.cookie-banner .button.reject:hover, .cookie-banner .button.reject:focus {
  background: #D9D5BC;
}
.cookie-banner .button.settings:hover, .cookie-banner .button.settings:focus {
  background: #7fab5a;
  color: #fff;
}

/* ------------ COOKIE MODAL POPUP ------------------- */
.cookie-modal-overlay {
  position: fixed;
  left:0;
  top:0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,93,58, 0.38);
  z-index: 1120;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal {
  background: #fff;
  color: #225D3A;
  border-radius: 36px 28px 28px 36px;
  box-shadow: 0 6px 48px 0 rgba(34,93,58,0.16);
  padding: 38px 34px 36px 34px;
  max-width: 420px;
  width: 94vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: modal-pop 0.34s cubic-bezier(.79,-0.02,.29,1.23);
}
@keyframes modal-pop {
  0% { transform: scale(0.88) translateY(60px); opacity:0; }
  100% { transform: scale(1) translateY(0); opacity:1; }
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 16px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0 13px;
  border-bottom: 1px solid #e9ebdb;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-category label {
  font-size: 1rem;
  color: #225D3A;
}
.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 0;
}
.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #A9CB8F;
  border-radius: 15px;
  transition: background 0.2s;
}
.switch input:checked + .slider {
  background: #225D3A;
}
.slider:before {
  position: absolute;
  content: '';
  height: 18px; width: 18px;
  left: 4px; top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.18s;
  box-shadow: 0 1px 4px rgba(34,93,58,0.18);
}
.switch input:checked + .slider:before {
  transform: translateX(18px);
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 8px;
}
.cookie-modal .button {
  min-width: 108px;
}
/* Essential cookies description styling */
.cookie-category .info {
  color: #6e8f52;
  font-size: 0.96rem;
  margin-left: 8px;
}

/* ---------------------------------------------------------
   FOOTER
--------------------------------------------------------- */
footer {
  background: #A9CB8F;
  color: #225D3A;
  padding: 32px 0 18px 0;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -2px 12px 0 rgba(34,93,58,0.05);
  margin-top: 50px;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
}
footer nav a {
  color: #225D3A;
  text-decoration: underline;
  margin: 0 7px 0 2px;
  transition: color 0.18s;
}
footer nav a:hover, footer nav a:focus {
  color: #507c58;
  outline:none;
}
footer .contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
footer .contact-info span {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #F7F5E8;
  border-radius: 12px 18px 14px 16px;
  padding: 7px 18px;
  font-size: 1rem;
}
footer .contact-info img {
  width: 18px;
  height: 18px;
}
footer .copyright {
  text-align: center;
  color: #557d53;
  font-size: 0.98rem;
  margin-top: 10px;
}

/* ---------------------------------------------------------
   UTILITY: SPACING & LAYOUT RESPONSIVENESS
--------------------------------------------------------- */
@media (max-width: 990px) {
  .container {
    max-width: 100vw;
    padding: 0 8px;
  }
  .hero {
    padding: 38px 0 44px 0;
  }
  .feature-grid, .services-list, .card-container, .case-study-list, .inspiration-topics, .services-overview {
    gap: 16px;
  }
  .testimonial-card, .project-description, .faq-item, .service-teaser, .feature-grid li, .service-card {
    padding-left: 11px;
    padding-right: 11px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 4px;
  }
  .section {
    padding: 26px 3vw;
    margin-bottom: 38px;
  }
  .content-grid, .case-study-list, .feature-grid, .services-list, .services-overview, .inspiration-topics, .card-container {
    flex-direction: column;
    gap: 14px;
  }
  .feature-grid li, .service-teaser, .project-description, .service-card {
    min-width: 0;
    width: 100%;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 11px 15px 11px;
    width: 100%;
    max-width: 99vw;
    font-size: 1.05rem;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .tag, .tipps-list li, .trend-highlights, .faq-item {
    font-size: 0.97rem;
  }
  .process-steps {
    font-size: 0.97rem;
  }
  h1 {
    font-size: 1.7rem;
  }
  h2 {
    font-size: 1.21rem;
  }
}

/* Utility: Hide on mobile and show for desktop (and inverse) */
.hide-mobile {
  display: block;
}
@media (max-width: 900px) {
  .hide-mobile {
    display: none !important;
  }
}
.show-mobile {
  display: none;
}
@media (max-width: 900px) {
  .show-mobile {
    display: block !important;
  }
}

/* ---------------------------------------------------------
   MISCELLANEOUS: Selection, Scrollbar, focus
--------------------------------------------------------- */
::selection {
  background: #A9CB8F;
  color: #fff;
}
::-webkit-scrollbar {
  width: 10px;
  background: #E8EEDB;
}
::-webkit-scrollbar-thumb {
  background: #A9CB8F;
  border-radius: 8px;
}
a:focus, button:focus, .button:focus {
  outline: 2px solid #A9CB8F !important;
  outline-offset: 1px;
}

/* ---------------------------------------------------------
   ANIMATIONS & MICRO-INTERACTIONS
--------------------------------------------------------- */
.button, .service-teaser, .service-card, .feature-grid li, .testimonial-card, .project-description, .faq-item, .card {
  transition: box-shadow 0.18s, background 0.17s, color 0.16s, transform 0.16s;
}
.button:active, .button.primary:active {
  transform: scale(0.98);
}

/* ---------------------------------------------------------
   ACCESSIBILITY: CONTRAST CHECKS
--------------------------------------------------------- */
.testimonial-card, .testimonial-card p, .testimonial-details {
  color: #1d3524 !important;
  background: #FDFCF5 !important;
}

/* ---------------------------------------------------------
   END OF CSS                                         
--------------------------------------------------------- */
