/* RESET & BASE STYLES ------------------------------------------------- */
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,
u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, 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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  box-sizing: border-box;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #22543D;
  background-color: #F5F6F1;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: #22543D;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #B7C990;
  outline-offset: 2px;
}
strong {
  font-weight: bold;
}

/* TYPE SCALE ---------------------------------------------------------- */
h1, .h1 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 2.5rem;
  line-height: 1.1;
  font-weight: 800;
  color: #22543D;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
h2, .h2 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #22543D;
  margin-bottom: 18px;
}
h3, .h3 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #22543D;
  margin-bottom: 12px;
}
h4, .h4 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #22543D;
}
p, ul, li, blockquote {
  font-size: 1rem;
  color: #22543D;
  margin-bottom: 14px;
}
blockquote {
  font-family: 'Montserrat', cursive, Arial, sans-serif;
  font-style: italic;
  font-size: 1.125rem;
  background: #fff;
  border-left: 7px solid #B7C990;
  padding: 24px 30px;
  border-radius: 16px;
  box-shadow: 0 3px 16px 0 rgba(34,84,61,0.07);
  margin-bottom: 0;
}

ul {
  margin-left: 24px;
  margin-bottom: 18px;
}
ul li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 9px;
}
ul li:before {
  content: '';
  width: 8px;
  height: 8px;
  background: #B7C990;
  border-radius: 100%;
  position: absolute;
  left: 0; top: 10px;
  display: inline-block;
}

/* CONTAINER & LAYOUT ------------------------------------------------ */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* FLEXBOX PATTERNS & SPACING ---------------------------------------- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {  
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  padding: 28px 22px;
  border-radius: 22px;
  box-shadow: 0 3px 19px 0 rgba(34,84,61,0.09);
  transition: transform 0.2s, box-shadow 0.23s;
}
.card:hover, .card:focus {
  transform: translateY(-4px) scale(1.02) rotate(-1deg);
  box-shadow: 0 8px 32px 0 rgba(183,201,144,0.19);
}
.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;
  background: #fff;
  box-shadow: 0 2px 14px 0 rgba(34,84,61,0.15);
  border-radius: 20px;
  margin-bottom: 24px;
  position: relative;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  padding: 22px 20px;
  border-radius: 20px;
  box-shadow: 0 2px 10px 0 rgba(34,84,61,0.08);
  min-width: 212px;
  max-width: 340px;
  flex: 1 1 220px;
  transition: transform 0.21s, box-shadow 0.19s;
}
.feature-item:hover {
  transform: translateY(-6px) scale(1.03) rotate(1deg);
  box-shadow: 0 8px 24px 0 rgba(183,201,144,0.15);
}

/* HERO SECTION ------------------------------------------------------ */
.hero {
  background: #B7C990;
  background-blend-mode: lighten;
  padding: 65px 0 50px;
  border-radius: 0 0 28px 28px;
  display: flex;
  align-items: center;
  margin-bottom: 42px;
  overflow: hidden;
  box-shadow: 0 6px 28px 0 rgba(34,84,61,0.02);
  position: relative;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  color: #22543D;
}
.hero p {
  font-size: 1.2rem;
  color: #22543D;
  max-width: 700px;
  margin-bottom: 18px;
}


/* NAVIGATION & HEADER ----------------------------------------------- */
header {
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(34,84,61,0.18);
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0;
  margin: 0 0 32px 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 20px;
  min-height: 68px;
}
header img {
  width: 52px;
  height: auto;
  flex-shrink: 0;
}
header nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}
header nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: #22543D;
  position: relative;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.17s, color 0.16s;
}
header nav a:hover, header nav a.active {
  background: #B7C990;
  color: #22543D;
}

.cta-btn {
  background: #22543D;
  color: #fff;
  padding: 12px 28px;
  border-radius: 20px 4px 20px 4px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border: none;
  box-shadow: 0 2px 12px 0 rgba(34,84,61,0.07);
  cursor: pointer;
  transition: background 0.23s, color 0.21s, box-shadow 0.18s, transform 0.13s;
  margin-left: 15px;
  margin-right: 12px;
  position: relative;
  z-index: 1;
}
.cta-btn:hover, .cta-btn:focus {
  background: #B7C990;
  color: #22543D;
  transform: scale(1.04) rotate(-2deg);
  box-shadow: 0 4px 20px 0 rgba(183,201,144,0.19);
}

/* BURGER MENU ------------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  font-size: 1.9rem;
  background: none;
  border: none;
  color: #22543D;
  font-weight: bold;
  cursor: pointer;
  padding: 8px 15px;
  transition: background 0.18s;
  border-radius: 100%;
  z-index: 1299;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #B7C990;
  color: #22543D;
}
.mobile-menu {
  position: fixed;
  top: 0; right: 0; left: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #22543D;
  color: #fff;
  z-index: 1300;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.44s cubic-bezier(0.55,0,0.1,1), opacity 0.35s cubic-bezier(0.55,0,0.1,1);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  margin: 26px 30px 6px 0;
  font-size: 2.2rem;
  font-weight: 900;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: color 0.19s;
}
.mobile-menu-close:focus {
  color: #B7C990;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 26px;
  padding: 38px 30px 20px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.21rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  padding: 15px;
  margin-left: 0;
  margin-bottom: 5px;
  border-radius: 10px;
  transition: background 0.24s, color 0.16s;
  position: relative;
}
.mobile-nav a:hover, .mobile-nav a.active, .mobile-nav a:focus {
  background: #B7C990;
  color: #22543D;
}

@media (max-width: 1000px) {
  header nav { display: none; }
  .cta-btn { margin-left: 0; }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 1000px) {
  header .container {
    flex-wrap: wrap;
    gap: 14px;
  }
}

/* SECTIONS & FLEX GRIDS --------------------------------------------- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
}
.service-teasers, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.service-item {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 1px 9px 0 rgba(183,201,144,0.13);
  padding: 24px 20px 18px;
  min-width: 210px;
  max-width: 330px;
  flex: 1 1 200px;
  margin-bottom: 20px;
  transition: box-shadow 0.16s, transform 0.16s;
}
.service-item:hover {
  transform: scale(1.025) rotate(-1.5deg);
  box-shadow: 0 8px 26px 0 rgba(183,201,144,0.23);
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* TESTIMONIALS ------------------------------------------------------ */
.testimonials {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.testimonial-card {
  background: #fff;
  color: #22543D;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 2px 11px 0 rgba(34,84,61,0.08);
  margin-bottom: 24px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
.testimonial-card strong {
  color: #B7C990;
  font-weight: bold;
}

/* FOOTER ------------------------------------------------------------ */
footer {
  background: #fff;
  border-top: 2px solid #B7C990;
  margin-top: 24px;
  padding: 26px 0 12px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
footer nav, .footer-info {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
footer nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #22543D;
  padding: 7px 10px;
  border-radius: 5px;
  transition: background 0.14s, color 0.11s;
}
footer nav a:hover, footer nav a:focus {
  background: #B7C990;
  color: #22543D;
}
.footer-info span {
  font-size: 0.92rem;
  color: #B7C990;
  letter-spacing: 1px;
}

/* LEGAL/THANK YOU/GENERAL CARDS ------------------------------------- */
.legal, .thankyou {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 1px 15px 0 rgba(34,84,61,0.07);
}
.legal .text-section,
.thankyou .text-section {
  gap: 19px;
}

/* COOKIE CONSENT BANNER --------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: #fff;
  border-top: 3px solid #22543D;
  box-shadow: 0 -2px 18px 0 rgba(34,84,61,0.09);
  z-index: 1999;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  padding: 24px 20px 22px 20px;
  justify-content: space-between;
  animation: cookie-slide-in 0.55s cubic-bezier(0.3,0.7,0.2,1);
}
@keyframes cookie-slide-in {
  from { transform: translateY(100%); opacity:0; }
  to   { transform: translateY(0); opacity:1; }
}
.cookie-banner p {
  color: #22543D;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 0;
}
.cookie-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-btn {
  background: #B7C990;
  color: #22543D;
  border: none;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  padding: 10px 22px;
  box-shadow: 0 2px 8px 0 rgba(183,201,144,0.13);
  transition: background 0.18s, color 0.16s, box-shadow 0.12s, transform 0.12s;
  cursor: pointer;
}
.cookie-btn.accept {
  background: #22543D;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #B7C990;
  color: #22543D;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus, .cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #22543D;
  color: #fff;
}

/* COOKIE MODAL ------------------------------------------------------ */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(34,84,61,0.23);
  z-index: 2000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.32s cubic-bezier(0.27,0.65,0.67,1);
}
.cookie-modal-overlay.open {
  pointer-events: auto;
  opacity: 1;
  animation: modal-slide-in 0.45s cubic-bezier(0.46,0.83,0,1);
}
@keyframes modal-slide-in {
  from { transform: translateY(82vh); }
  to { transform: translateY(0); }
}
.cookie-modal {
  min-width: 330px;
  max-width: 95vw;
  margin: 0 0 34px 0;
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px 24px 32px;
  box-shadow: 0 12px 44px 0 rgba(34,84,61,0.18);
  display: flex;
  flex-direction: column;
  gap: 26px;
  position: relative;
}
.cookie-modal h3 {
  margin-bottom: 10px;
}
.cookie-cats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-switch {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-switch input[type='checkbox'] {
  accent-color: #B7C990;
  width: 22px;
  height: 22px;
  border-radius: 6px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}
.cookie-modal .modal-close {
  position: absolute;
  right: 16px; top: 12px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #22543D;
  cursor: pointer;
  font-weight: 900;
  transition: color 0.14s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  color: #B7C990;
}

/* ANIMATIONS & MICROINTERACTIONS ------------------------------------ */
.card, .feature-item, .service-item, .testimonial-card, .about-brief, .usp-value, .legal, .thankyou {
  transition: box-shadow 0.18s, transform 0.21s;
}
a, button {
  transition: color 0.17s, background 0.17s, box-shadow 0.21s, transform 0.12s;
}
.cta-btn, .cookie-btn, .service-item, .feature-item, .mobile-nav a {
  will-change: transform;
}
.cta-btn:active, .cookie-btn:active {
  transform: scale(0.98) rotate(-1deg);
}

/* FUN VISUALS FOR PLAYFUL_DYNAMIC ----------------------------------- */
.feature-item img, .service-item img {
  max-width: 55px;
  min-width: 35px;
  margin-bottom: 8px;
  filter: drop-shadow(0 3px 8px #B7C99088);
  animation: playful-bounce 1.8s infinite linear alternate;
}
@keyframes playful-bounce {
    0%   { transform: translateY(-4px) rotate(-4deg) scale(1.08); }
    50%  { transform: translateY(6px) rotate(5deg) scale(0.99); }
    100% { transform: translateY(-2px) rotate(-2deg) scale(1.02); }
}

.card, .feature-item, .service-item, .testimonial-card {
  border: 2px dashed #B7C99033;
}

.cta-btn:after {
  content: '🌱';
  margin-left: 7px;
  font-size: 1rem;
  position: relative;
  top: 1px;
  transition: transform 0.23s;
}
.cta-btn:hover:after {
  transform: scale(1.18) rotate(-18deg);
}

h2 {
  position: relative;
  display: inline-block;
}
h2:after {
  content: '';
  display: block;
  height: 5px;
  width: 38px;
  background: #B7C990;
  border-radius: 3px;
  margin: 8px 0 0 0;
  position: absolute;
  left: 2px; bottom: -16px;
  z-index: 2;
}

/* RESPONSIVE DESIGN ------------------------------------------------- */
@media (max-width: 1050px) {
  .feature-grid {
    gap: 18px;
    justify-content: center;
  }
}
@media (max-width: 900px) {
  .service-teasers, .service-list,
  .feature-grid, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .card-container { flex-direction: column; gap: 24px; }
}
@media (max-width: 768px) {
  .container {
    padding: 0 12px;
  }
  .section, .hero, .testimonials, .legal, .thankyou {
    padding: 32px 8px;
    margin-bottom: 32px;
  }
  .feature-grid, .service-teasers, .service-list {
    gap: 18px;
  }
  .hero {
    border-radius: 0 0 12px 12px;
    padding: 40px 0 21px;
  }
  .hero .content-wrapper {
    gap: 15px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  header .container {
    min-height: 50px;
    flex-direction: row;
    gap: 10px;
    padding: 8px 12px;
  }
}
@media (max-width: 550px) {
  h1, .h1 { font-size: 1.6rem; margin-bottom: 12px; }
  h2, .h2 { font-size: 1.22rem; margin-bottom: 10px; }
  footer .container {
    gap: 7px;
  }
  .cta-btn, .cookie-btn {
    font-size: 0.91rem;
    padding: 9px 15px;
    border-radius: 8px 3px 8px 3px;
  }
  footer nav, .footer-info {
    gap: 12px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 6px 18px 10px;
    gap: 10px;
  }
  .cookie-modal {
    min-width: 94vw;
    padding: 18px 10px 8px 10px;
  }
}

/* EXTRA: Hide mobile menu on desktop, show elements correctly */
@media (min-width: 1001px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/* UTILITY CLASSES --------------------------------------------------- */
.hide { display: none!important; }
.mt-2 { margin-top: 16px; }
.mb-2 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 32px; }

/* END --------------------------------------------------------------- */
