/* 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,font,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,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,main,menu,nav,output,ruby,section,summary,time,mark,audio,video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  background: #fff;
}
*,*:before,*:after {
  box-sizing: inherit;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #101010;
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}
a {
  color: #222;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #2C5E43;
  text-decoration: underline;
  outline: none;
}
ul,ol {
  list-style: none;
  margin-left: 0;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
strong {
  font-weight: 700;
}

/* BRAND MONOCHROME PALETTE */
:root {
  --color-black: #101010;
  --color-white: #fff;
  --color-gray-light: #ededed;
  --color-gray-medium: #bcbcbc;
  --color-gray-dark: #252525;
  --color-primary: #2C5E43;
  --color-primary-dark: #0E241A;
  --color-accent: #393939;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #101010;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
  line-height: 1.18;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 28px;
}
h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.24rem;
  margin-bottom: 10px;
  font-weight: 600;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 8px;
}
p {
  margin-bottom: 20px;
}

/* CONTAINER & LAYOUTS */
.container {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

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

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 3px 14px rgba(16,16,16,0.08);
  padding: 30px 24px;
  transition: box-shadow 0.22s;
}
.card:hover {
  box-shadow: 0 7px 28px rgba(44,94,67,0.16), 0 2px 6px rgba(16,16,16,0.10);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 24px 28px;
  margin-bottom: 20px;
  background: #f8f8f8;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(44,94,67,0.08);
  color: #151515;
}
.testimonial-card p {
  font-size: 1.08rem;
  color: #151515;
  margin-bottom: 10px;
}
.testimonial-card strong {
  font-size: 0.97rem;
  color: #393939;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 24px;
}

/* HEADER / NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(16,16,16,0.08);
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 10px;
}
header img {
  height: 38px;
}
nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #101010;
  font-weight: 500;
  padding: 6px 0;
  transition: color 0.2s, border-bottom 0.18s;
  position: relative;
  border-bottom: 2px solid transparent;
}
nav a:focus, nav a:hover {
  color: #2C5E43;
  border-bottom: 2px solid #2C5E43;
  background: none;
}

/* CTA BUTTON */
.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #101010;
  color: #fff;
  padding: 9px 26px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: bold;
  border: none;
  box-shadow: 0 2px 10px rgba(16,16,16,0.10);
  margin-left: 18px;
  cursor: pointer;
  display: inline-block;
  letter-spacing: 0.02em;
  transition: background 0.20s, transform 0.14s;
}
.cta-btn:hover, .cta-btn:focus {
  background: #2C5E43;
  color: #fff;
  transform: translateY(-1px) scale(1.03);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #222;
  cursor: pointer;
  margin-left: 14px;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: rgba(22,22,22,0.93);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 24px 0 24px;
  pointer-events: none;
  opacity: 0;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.61,.01,.34,1), opacity 0.28s;
}
.mobile-menu.open {
  pointer-events: all;
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  align-self: flex-end;
  margin-bottom: 36px;
  cursor: pointer;
  z-index: 1001;
  transition: color 0.19s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #2C5E43;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.22rem;
  color: #fcfcfc;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 10px 0;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #bcbcbc;
  background: none;
}

@media (max-width: 1024px) {
  nav {
    gap: 12px;
  }
  .cta-btn {
    margin-left: 8px;
    padding: 8px 22px;
  }
}
@media (max-width: 900px) {
  header .container {
    padding-top: 6px;
    padding-bottom: 6px;
  }
}
@media (max-width: 820px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .cta-btn {
    margin-left: 8px;
    padding: 8px 18px;
    font-size: 1rem;
  }
}
@media (max-width: 600px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* HERO SECTION */
.hero {
  background: linear-gradient(130deg, #fff 70%, #ededed 100%);
  padding: 44px 0 51px 0;
  margin-bottom: 60px;
}
.hero .content-wrapper {
  align-items: flex-start;
}
.hero h1 {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 2.7rem;
  letter-spacing: -0.6px;
  font-weight: 800;
  color: #101010;
  margin-bottom: 23px;
}
.hero p {
  font-size: 1.23rem;
  color: #282828;
  margin-bottom: 26px;
}

/* FEATURES & SERVICES */
.features-list, .services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 24px;
}
.features-list > div, .services-list > div {
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(44,94,67,0.07);
  padding: 18px 24px 19px 24px;
  flex: 1 1 230px;
  min-width: 230px;
  transition: box-shadow 0.23s, border 0.19s;
}
.features-list > div:hover, .services-list > div:hover {
  box-shadow: 0 5px 28px rgba(44,94,67,0.18);
  border: 1px solid #bcbcbc;
}
.features-list img, .services-list img {
  height: 40px;
  margin-bottom: 9px;
}
.features-list h3, .services-list h3, .services-list h2 {
  font-size: 1.18rem;
  color: #101010;
  margin-bottom: 9px;
  letter-spacing: -0.02em;
}
.features-list p, .services-list p {
  color: #222;
  font-size: 1rem;
}
.services-list strong {
  color: #2C5E43;
  font-weight: 700;
  margin-top: 13px;
  display: inline-block;
  letter-spacing: 0.02em;
  font-size: 1.09rem;
}

.services-list ul,
.features-list ul {
  margin: 10px 0 0 0;
  padding: 0 0 0 18px;
  list-style: disc inside;
  color: #393939;
  font-size: 0.98rem;
}
.services-list ul li, .features-list ul li {
  margin-bottom: 5px;
}

/* FOOTER */
footer {
  background: #101010;
  color: #ededed;
  padding: 38px 0 20px 0;
  margin-top: 80px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
  justify-content: space-between;
}
footer img {
  height: 38px;
  margin-bottom: 16px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer nav a {
  color: #ededed;
  font-size: 0.97rem;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
footer nav a:hover, footer nav a:focus {
  color: #2C5E43;
}
footer .contact-info {
  font-size: 0.98rem;
  color: #ededed;
  line-height: 1.7;
}
footer .contact-info img {
  display: inline-block;
  height: 1em;
  vertical-align: middle;
  margin-right: 3px;
}

/* CARDS & GENERAL CONTENT */
.text-section {
  margin-bottom: 18px;
}
.text-section ul {
  list-style: disc inside;
  margin-bottom: 18px;
  color: #1f1f1f;
  font-size: 1rem;
}
.text-section h2 {
  margin-top: 24px;
}

.section:last-child {
  margin-bottom: 0;
}

/* ZEBRA BACKGROUNDS, ACCENTS */
.section:nth-child(even) {
  background: #f4f4f4;
}

/* BUTTONS GENERAL */
button, .cta-btn {
  outline: none;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: background 0.18s, color 0.18s, box-shadow 0.14s;
}

/* SPECIAL - COOKIE BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 8vw 18px 8vw;
  background: #101010;
  color: #ededed;
  box-shadow: 0 -2px 16px rgba(44,94,67,0.13);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1100;
  font-size: 1rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(60px);
  transition: opacity 0.32s, transform 0.28s;
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.cookie-banner .cookie-btn-group {
  display: flex;
  gap: 18px;
  margin-top: 14px;
}
.cookie-banner button {
  background: #ededed;
  color: #101010;
  border-radius: 22px;
  padding: 7px 19px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 0;
  border: 1px solid #e0e0e0;
  box-shadow: 0 1px 8px rgba(16,16,16,0.06);
  transition: background 0.18s, color 0.15s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #222;
  color: #fff;
}
.cookie-banner .cookie-settings-btn {
  background: #fff;
  color: #222;
  border: 1.5px solid #222;
  padding: 7px 12px;
}
.cookie-banner .cookie-settings-btn:hover, .cookie-banner .cookie-settings-btn:focus {
  background: #101010;
  color: #fff;
}

/* Cookie consent modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.73);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1200;
  transition: opacity 0.24s;
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  color: #222;
  border-radius: 13px;
  width: 98vw;
  max-width: 395px;
  padding: 34px 24px 20px 24px;
  box-shadow: 0 9px 60px rgba(16,16,16,0.25);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  color: #101010;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1rem;
  margin-bottom: 10px;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #2C5E43;
  width: 19px;
  height: 19px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 19px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 15px;
  background: none;
  font-size: 1.35em;
  color: #101010;
  border: none;
  cursor: pointer;
  transition: color 0.17s;
}
.cookie-modal .cookie-modal-close:hover {
  color: #2C5E43;
}
.cookie-modal .essential {
  color: #9e9e9e;
  font-style: italic;
  font-size: 0.93rem;
}

/* Misc classes matching HTML structures */
.features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.services-list {
  gap: 28px;
}

@media (max-width: 990px) {
  .card-container, .content-grid, .features-list, .services-list, .footer .container {
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 30px 0 38px 0;
    margin-bottom: 36px;
  }
  .section {
    padding: 24px 5px;
    margin-bottom: 40px;
  }
  .content-wrapper {
    gap: 18px;
  }
  h1 {
    font-size: 2.0rem;
    margin-bottom: 18px;
  }
  h2 {
    font-size: 1.37rem;
  }
  .features-list, .services-list {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card {
    padding: 18px 11px;
  }
  .footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
@media (max-width: 630px) {
  .hero {
    padding: 17px 0 21px 0;
  }
  .section {
    padding: 16px 3px;
    margin-bottom: 30px;
  }
  .card {
    padding: 16px 7px;
  }
  .features-list > div, .services-list > div {
    min-width: unset;
    padding: 14px 10px;
  }
  .testimonial-card {
    padding: 12px 5px;
    margin-bottom: 13px;
  }
}

/* Animations / Transitions */
.section, .card, .features-list > div, .services-list > div {
  transition: box-shadow 0.23s, border 0.22s;
}
.cta-btn, .mobile-menu-toggle, .mobile-menu-close, .cookie-banner button {
  transition: background 0.22s, color 0.12s, transform 0.11s;
}

/* Remove outline on non-keyboard mouse events, keep for keyboard users */
:focus:not(:focus-visible) {
  outline: none;
}
:focus-visible {
  outline: 2.5px solid #2C5E43;
  outline-offset: 2px;
}

/* Hide visually but leave accessible */
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
  white-space: nowrap;
}

/* Custom accent lines on cards/sections for drama */
.card:before, .features-list > div:before, .services-list > div:before {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: #2C5E43;
  border-radius: 3px;
  margin-bottom: 14px;
}

/* Remove accent line for cards without heading (testimonials etc) */
.testimonial-card:before {
  display: none;
}

/* Utility spacing */
.mb-20 { margin-bottom: 20px !important; }
.mb-28 { margin-bottom: 28px !important; }
.mt-24 { margin-top: 24px !important; }
.gap-20 { gap: 20px !important; }

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