/* -------------------
   CSS RESET & BASE
------------------- */
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #f4f5ef;
  color: #24301b;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #f5f7fa;
}
img {
  max-width: 100%;
  display: block;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #22613a;
  text-decoration: underline;
  transition: color 0.2s;
  cursor: pointer;
}
a:hover, a:focus {
  color: #12325A;
  text-decoration: none;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 1em;
  padding-left: 0;
}
li {
  margin-bottom: 0.5em;
}

/* ----------------------------------------
   FONT IMPORTS: Montserrat & Open Sans
---------------------------------------- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

/* ----------------------
   COLOR VARIABLES: main brand + organic
---------------------- */
:root {
  --primary: #12325A;   /* deep earth primary */
  --secondary: #17A398; /* organic green/teal accent */
  --accent: #F5F7FA;    /* very light, for cards/bg */
  --earth1: #7B6951;    /* earthy brown for subtle backgrounds */
  --earth2: #D3C8BC;    /* soft earthy bg */
  --leaf: #4A7842;      /* deep organic green */
  --wood: #a18767;      /* warm brown for elements */
  --nature-bg: #eef3e7; /* very light greenish earthy bg */
  --text: #24301b;      /* dark olive for main text */
  --heading: #12325a;
  --white: #fff;
  --shadow: rgba(57, 73, 35, 0.10);
}

/* --------------
    TYPOGRAPHY
-------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: var(--heading);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
h1 {font-size: 2.4rem; margin-bottom: 20px;}
h2 {font-size: 2rem; margin-bottom: 18px;}
h3 {font-size: 1.3rem; font-weight: 600; margin-bottom: 10px;}
h4 {font-size: 1.1rem; font-weight: 600;}

@media (min-width: 600px) {
  h1 {font-size: 3rem;}
  h2 {font-size: 2.2rem;}
  h3 {font-size: 1.5rem;}
}

p, li, ul, ol, label {
  font-size: 1rem;
  color: var(--text);
}
strong {
  font-weight: 700;
  color: var(--primary);
}

/* ------------------------------
   CONTAINER + SPACING PATTERNS
------------------------------ */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  border-radius: 34px 15px 18px 48px / 40px 18px 34px 20px;
}
@media (min-width: 800px) {
  .section {margin-bottom: 80px; padding: 64px 32px;}
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

/* ------------------------------
      HEADER & NAVIGATION
------------------------------ */
header {
  background: var(--earth2);
  box-shadow: 0 4px 16px var(--shadow);
  border-radius: 0 0 28px 28px / 0 0 50px 38px;
  padding: 12px 0 0px 0;
  position: relative;
  z-index: 99;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 0 18px 0 18px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}
header nav a {
  font-family: inherit;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--primary);
  text-decoration: none;
  padding: 7px 10px;
  border-radius: 12px 15px 8px 18px;
  transition: background 0.2s, color 0.2s;
}
header nav a:hover, header nav a:focus {
  background: var(--secondary);
  color: var(--white);
}
header a img {
  max-height: 48px;
  margin-right: 0.7em;
}
.btn-primary {
  background: var(--secondary);
  color: var(--white)!important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 12px 28px;
  border-radius: 32px 16px 30px 18px;
  box-shadow: 0 4px 16px var(--shadow);
  border: none;
  outline: none;
  cursor: pointer;
  margin-left: 14px;
  text-decoration: none;
  transition: background 0.19s, box-shadow 0.2s, transform 0.1s;
  letter-spacing: 0.02em;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--leaf);
  color: #fff;
  transform: translateY(-2px) scale(1.025);
  box-shadow: 0 6px 24px rgba(74,120,66,0.14);
}
.btn-secondary {
  background: transparent;
  color: var(--secondary)!important;
  border: 2px solid var(--secondary);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  border-radius: 30px 16px 13px 22px;
  padding: 10px 20px;
  margin-top: 12px;
  margin-bottom: 12px;
  box-shadow: 0 2px 10px var(--shadow);
  text-decoration: none;
  transition: color 0.2s, background 0.2s, border 0.2s, box-shadow 0.2s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--secondary);
  color: var(--white)!important;
  border-color: var(--leaf);
  box-shadow: 0 6px 16px var(--shadow);
}

/* -------------------------------
   MOBILE MENU (Burger Drawer)
------------------------------- */
.mobile-menu-toggle {
  display: flex;
  position: fixed;
  right: 18px;
  top: 22px;
  z-index: 120;
  background: var(--secondary);
  color: #fff;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 17px 17px 33px 19px;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  box-shadow: 0 2px 12px var(--shadow);
  transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
  cursor: pointer;
  outline: none;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--leaf);
  transform: scale(1.08);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: rgba(36,48,27,0.85);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.53,.21,.29,.94);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0%);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  background: #fff;
  color: var(--primary);
  border: none;
  margin: 20px 26px 22px 0;
  font-size: 2.3rem;
  padding: 0 12px;
  border-radius: 8px 28px 12px 18px;
  box-shadow: 0 2px 8px var(--shadow);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.1s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--secondary);
  color: #fff;
  transform: scale(1.08);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  align-items: center;
}
.mobile-nav a {
  font-size: 1.3rem;
  color: #fff;
  padding: 16px 24px;
  border-radius: 22px 16px 11px 18px;
  width: 80%;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 5px;
  background: rgba(34, 99, 58, 0.11);
  transition: background 0.2s, color 0.2s, box-shadow 0.15s;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 2px 18px 0px var(--shadow);
}

@media (min-width: 920px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
  header nav {gap: 32px;}
}
@media (max-width: 919px) {
  header nav,
  header .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* -------------------
    HERO SECTION
------------------- */
.hero {
  background: linear-gradient(130deg, var(--nature-bg) 85%, var(--secondary) 110%);
  border-radius: 44px 18px 38px 48px / 54px 34px 44px 24px;
  box-shadow: 0 8px 36px -6px var(--shadow);
  margin-bottom: 0;
  padding: 40px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.hero .content-wrapper {
  align-items: center;
  gap: 24px;
  text-align: center;
}
.hero h1 {
  color: var(--leaf);
  font-weight: 800;
}
.hero p {
  font-size: 1.3rem;
  color: var(--primary);
  max-width: 700px;
  margin: 0 auto 10px auto;
}
.hero .btn-primary {
  margin: 16px 0 0 0;
}

/* ---------------
   FLEX PATTERNS
--------------- */
.feature-grid, .usp-grid, .process-steps, .service-cards, .testimonial-slider,
.results-grid, .benefit-icons, .featured-posts-grid,
.partner-logos, .contact-short, .contact-details, .trust-icons, .solution-list,
.technology-benefits, .technology-stack-list, .integration-options,
.certifications-list, .case-study, .quick-facts, .map-embed, .next-steps-info {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.content-grid {display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between;}
.card-container {display: flex; flex-wrap: wrap; gap: 24px;}
.card {margin-bottom: 20px; position: relative;}
.text-image-section {display: flex; align-items: center; gap: 30px; flex-wrap: wrap;}
.testimonial-card {display: flex; align-items: center; gap: 20px; padding: 20px;}
.feature-item {display: flex; flex-direction: column; align-items: flex-start; gap: 15px;}

@media (max-width: 768px) {
  .text-image-section, .content-grid, .feature-grid, .usp-grid, .process-steps, .service-cards, .testimonial-slider,
  .results-grid, .benefit-icons, .featured-posts-grid, .partner-logos, .case-study, .certifications-list {
    flex-direction: column;
    gap: 22px;
    align-items: stretch;
  }
}

/* -------------
  CARD STYLES
------------- */
.feature-item,
.service-card,
.blog-post,
.case-study,
.results-grid > div,
.technology-benefits,
.implementation-steps {
  background: var(--accent);
  box-shadow: 0 3px 16px var(--shadow);
  padding: 32px 22px;
  border-radius: 26px 11px 19px 33px;
  min-width: 200px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.22s, transform 0.14s;
}
.feature-item:hover,
.service-card:hover,
.blog-post:hover + .btn-secondary,
.case-study:hover,
.results-grid > div:hover,
.technology-benefits:hover,
.implementation-steps:hover {
  transform: translateY(-4px) scale(1.018);
  box-shadow: 0 8px 32px rgba(26, 70, 15, 0.16);
  z-index: 2;
}

.service-cards {display: flex; flex-wrap: wrap; gap: 24px;}
.service-card {flex: 1 1 250px; min-width: 190px; margin-bottom: 20px;}

.blog-post {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.featured-posts-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.partners-logos {
  display: flex; gap: 24px; align-items: center;
}
.partner-logos img {
  background: var(--white);
  border-radius: 12px;
  padding: 12px;
  display: block;
  height: 60px; width: auto;
  box-shadow: 0 2px 12px var(--shadow);
}

/* --------------
  TESTIMONIALS
-------------- */
.testimonial-slider, .testimonial-card {
  width: 100%;
}
.testimonial-slider {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.testimonial-card {
  flex-direction: column;
  align-items: flex-start;
  background: var(--nature-bg);
  border-radius: 24px 18px 28px 16px;
  box-shadow: 0 4px 18px var(--shadow);
  padding: 26px 22px 22px 42px;
  min-width: 240px;
  margin-bottom: 20px;
  position: relative;
  color: var(--text);
}
.testimonial-card p {
  font-style: italic;
  font-size: 1.08rem;
  color: #273c21;
  margin-bottom: 8px;
}
.testimonial-card strong {
  font-weight: 600;
  color: var(--leaf);
  font-size: 1rem;
}

/* --------------
    FOOTER
-------------- */
footer {
  background: var(--primary);
  color: #f6fcf9;
  border-radius: 36px 36px 0 0 / 22px 38px 0 0;
  margin-top: 70px;
  padding: 38px 0 0 0;
  box-shadow: 0 -6px 28px var(--shadow);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 0;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
footer nav a {
  color: #f6fcf9;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 16px;
  padding: 6px 12px;
  transition: background 0.18s, color 0.18s;
}
footer nav a:hover {
  background: var(--secondary);
  color: #fff;
}
footer img {
  max-height: 38px;
  margin-bottom: 9px;
}
.footer-bottom {
  border-top: 1.5px solid var(--secondary);
  padding: 16px 0 0 0;
  margin-top: 8px;
  font-size: 0.98rem;
  color: #eaf4e8;
  text-align: center;
  letter-spacing: 0.01em;
}

/* ----------------------------
   COOKIES CONSENT BANNER
---------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  box-shadow: 0 -4px 28px var(--shadow);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  padding: 28px 16px 16px 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
  z-index: 5000;
  transition: transform 0.36s cubic-bezier(.53,.21,.29,.94), opacity 0.24s;
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
  font-size: 1.05rem;
}
.cookie-banner.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 14px;
}
.cookie-banner button {
  outline: none;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  cursor: pointer;
  border-radius: 18px 8px 12px 18px;
  padding: 11px 22px;
  font-size: 1rem;
  transition: background 0.19s, color 0.19s, border 0.19s, transform 0.1s;
  margin-left: 4px;
}
.cookie-banner .accept-all {
  background: var(--secondary);
  color: #fff;
}
.cookie-banner .accept-all:hover,
.cookie-banner .accept-all:focus {
  background: var(--leaf);
}
.cookie-banner .reject-all {
  background: var(--accent);
  color: var(--primary);
  border: 2px solid var(--primary);
}
.cookie-banner .reject-all:hover,
.cookie-banner .reject-all:focus {
  background: var(--wood);
  color: #fff;
}
.cookie-banner .cookie-settings-btn {
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
}
.cookie-banner .cookie-settings-btn:hover,
.cookie-banner .cookie-settings-btn:focus {
  background: var(--secondary);
  color: #fff;
}

/* ----------------------
 COOKIES PREFERENCE MODAL
----------------------- */
.cookie-modal-overlay {
  position: fixed;
  z-index: 5001;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(36, 48, 27, 0.55);
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.26s;
}
.cookie-modal-overlay.active {
  pointer-events: all;
  opacity: 1;
}
.cookie-modal {
  background: var(--accent);
  border-radius: 28px 48px 22px 19px;
  box-shadow: 0 8px 38px var(--shadow);
  padding: 38px 32px 26px 32px;
  width: 95vw;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal h3 {
  font-size: 1.24rem;
  margin-bottom: 8px;
}
.cookie-modal .close {
  background: transparent;
  border: none;
  color: var(--primary);
  font-size: 2.1rem;
  position: absolute;
  top: 16px; right: 18px;
  cursor: pointer;
  transition: color 0.19s;
}
.cookie-modal .close:hover,
.cookie-modal .close:focus {
  color: var(--secondary);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--nature-bg);
  border-radius: 12px 19px 11px 17px;
  padding: 10px 14px 10px 12px;
  box-shadow: 0 2px 8px var(--shadow);
}
.cookie-category label {
  font-weight: 600;
  font-size: 1rem;
}
.cookie-category input[type=checkbox],
.cookie-category input[type=radio] {
  accent-color: var(--secondary);
  width: 16px; height: 16px;
  cursor: pointer;
}
.cookie-category .essential {
  font-style: italic;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  justify-content: flex-end;
}
.cookie-modal .modal-actions button {
  background: var(--secondary);
  color: #fff;
  border: none;
  font-weight: 600;
  border-radius: 15px 7px 13px 17px;
  padding: 8px 18px;
  font-size: 1rem;
  box-shadow: 0 2px 10px var(--shadow);
  cursor: pointer;
  transition: background 0.19s;
}
.cookie-modal .modal-actions button:hover,
.cookie-modal .modal-actions button:focus {
  background: var(--leaf);
}

/* -----------------------------
   FORMS, INPUTS, MISC ELEMENTS
----------------------------- */
input, textarea, select {
  padding: 10px 15px;
  font-size: 1rem;
  border-radius: 13px 17px 8px 12px;
  border: 1.5px solid var(--primary);
  box-shadow: 0 1px 6px var(--shadow);
  background: #fefefe;
  outline: none;
  transition: border 0.16s, box-shadow 0.16s;
  margin-bottom: 14px;
  font-family: 'Open Sans', Arial, sans-serif;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--secondary);
  box-shadow: 0 4px 10px rgba(23,163,152,0.14);
}
label {
  font-weight: 600;
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 0.3em;
}

/* --------------------------
    CONTACT DETAILS, MAP
-------------------------- */
.contact-details ul {
  list-style: none;
  padding: 0;
  margin-left: 0;
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--text);
}
.contact-details img {
  width: 24px; height: 24px;
}
.map-embed {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  background: var(--earth2);
  border-radius: 18px 14px 9px 18px;
  padding: 18px 24px;
  color: var(--primary);
  box-shadow: 0 1.5px 7px var(--shadow);
  margin-bottom: 18px;
}

.quick-facts ul,
.next-steps-info ul {
  list-style: disc inside;
  margin-left: 1.2em;
  margin-bottom: 12px;
}

/* --------------
      MISC
-------------- */
ul.service-list, .solution-list, .technology-stack-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  list-style: none;
}
ul.service-list li, .solution-list li, .technology-stack-list li {
  background: var(--accent);
  box-shadow: 0 2px 8px var(--shadow);
  border-radius: 16px 13px 23px 9px;
  padding: 18px 24px;
  margin-bottom: 12px;
}
.benefit-icons {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.benefit-icons > div {
  background: var(--nature-bg);
  border-radius: 18px 13px 16px 9px;
  box-shadow: 0 2px 12px var(--shadow);
  padding: 18px 22px 12px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 120px;
  font-size: 1.07rem;
}
.benefit-icons img {
  width: 40px; height: 40px;
}

.trust-icons {
  display: flex; gap: 25px; align-items: center; margin-bottom: 13px;
}
.trust-icons img {
  background: #fff;
  border-radius: 13px;
  padding: 11px;
  box-shadow: 0 2px 10px var(--shadow);
  height: 46px; width: auto;
}

.cta-inline {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 19px 0 0 0;
}

/* -----------
  RESPONSIVE
----------- */
@media (max-width: 599px) {
  .container {
    padding: 0 5px;
  }
  .footer-bottom,
  footer nav {
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .hero h1 {font-size: 2rem;}
  h2 {font-size: 1.2rem;}
  .section {padding: 22px 7px; margin-bottom: 36px;}
  .feature-item, .service-card, .blog-post, .case-study, .results-grid > div,
  .technology-benefits, .implementation-steps {
    padding: 15px 7px;
  }
}

/* -------------
   MICRO-ANIM
------------- */
.btn-primary,.btn-secondary,.cookie-banner button,
.cookie-modal .modal-actions button {
  transition: background 0.21s, color 0.2s, border 0.2s, box-shadow 0.19s, transform 0.1s;
}
.feature-item, .service-card, .blog-post, .case-study, .results-grid > div {
  transition: box-shadow 0.19s, transform 0.13s, background 0.13s;
}

/* -----------
   VISUAL ORGANIC SHAPES
------------ */
.feature-item, .service-card, .testimonial-card, .case-study, .blog-post,
.results-grid > div, .benefit-icons > div {
  border-radius: 33px 13px 20px 18px/27px 17px 33px 13px;
}

.section {
  background: #f4f5ef;
}
.hero, .card, .testimonial-card, .feature-item, .service-card {
  position: relative;
  /* Add a soft organic shape accent */
}

.section:before, .hero:before, .testimonial-card:before {
  content: '';
  display: block;
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0.055;
}
.section:before {
  width: 180px; height: 120px;
  left: -60px; top: 14px;
  background: var(--secondary);
  filter: blur(7px);
}
.hero:before {
  width: 280px; height: 210px;
  right: -60px; top: -55px;
  background: var(--wood);
  filter: blur(16px);
}
.testimonial-card:before {
  width: 88px; height: 88px;
  left: -30px; bottom: -24px;
  background: var(--leaf);
  filter: blur(10px);
}

/* Hide decorative shapes on mobile for less clutter */
@media (max-width: 600px) {
  .section:before, .hero:before, .testimonial-card:before {display: none;}
}


/* -------------
    PRINT
-------------- */
@media print {
  .mobile-menu,
  .mobile-menu-toggle,
  .cookie-banner,
  .cookie-modal-overlay {
    display: none !important;
  }
  header, footer {
    box-shadow: none;
    background: #fff !important;
    color: #000;
  }
  .btn-primary, .btn-secondary {box-shadow: none; border: none; background: #eee; color: #000;}
}

/*
  To activate cookie banner/modal, add .active class to .cookie-banner and .cookie-modal-overlay
  To activate mobile menu, add .open class to .mobile-menu
*/
