/* 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, 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;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  line-height: 1.45;
  background: #191C1D;
  color: #F0F2F1;
  min-height: 100vh;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  padding-left: 1.5em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
  color: #F7F8F6;
}
h1 { font-size: 2.5rem; margin-bottom: 18px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; color: #93C01F; }
h4, h5, h6 { font-size: 1.1rem; }
p, ul, ol, li {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #E2E5E2;
  font-size: 1rem;
  margin-bottom: 1em;
}
strong {
  font-weight: bold;
  color: #BDF070;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0px;
}
/* HEADER & NAVIGATION ----------------------------------------------------------*/
header {
  background: linear-gradient(90deg, #191C1D 75%, #2A4D36 95%);
  box-shadow: 0 2px 16px 0 rgba(21, 44, 17, 0.11);
  position: relative;
  z-index: 30;
  padding-top: 8px;
  padding-bottom: 8px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  padding: 0;
  background: none;
}
.main-nav img {
  height: 38px;
  margin-right: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  padding: 8px 10px;
  border-radius: 4px;
  color: #D0CFC6;
  transition: color 0.18s, background 0.18s;
  position: relative;
}
.main-nav a:hover:not(.primary) {
  color: #93C01F;
  background: #293C27;
}
.cta.primary {
  background: #93C01F;
  color: #19211A;
  font-weight: bold;
  border-radius: 5px;
  padding: 9px 20px;
  margin-left: 18px;
  box-shadow: 0 0 10px 0 #bafd2e7a;
  transition: background 0.2s, color 0.2s, transform 0.14s;
  letter-spacing: 0.01em;
  border: none;
  outline: none;
}
.cta.primary:hover, .cta.primary:focus {
  background: #BDF070;
  color: #111;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 2px 18px 0 #bafd2eb6;
}
/* MOBILE MENU BUTTON ----------------------------------------------------------*/
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  color: #BDF070;
  border: none;
  margin-left: auto;
  padding: 8px 12px;
  z-index: 60;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.18s;
}
.mobile-menu-toggle:hover {
  background: #232C24;
}
/* MOBILE MENU (SLIDE-IN) ------------------------------------------------------*/
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0;
  bottom: 0;
  width: 100vw; height: 100vh;
  background: #181f1c;
  box-shadow: 0 2px 28px 0 #122714a4;
  transform: translateX(-105%);
  transition: transform 0.36s cubic-bezier(.45,.12,.55,1.15);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 2rem;
  background: none;
  color: #93C01F;
  border: none;
  padding: 18px 16px 8px 16px;
  align-self: flex-end;
  cursor: pointer;
  outline: none;
  transition: color 0.16s, background 0.13s;
}
.mobile-menu-close:hover {
  background: #222927;
  color: #BDF070;
  border-radius: 6px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 24px 0 0 36px;
}
.mobile-nav a {
  font-size: 1.3rem;
  color: #E8FBE6;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  padding: 8px 0 8px 12px;
  border-left: 4px solid transparent;
  border-radius: 0 6px 6px 0;
  transition: background 0.20s, color 0.21s, border-color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #221f16;
  color: #93C01F;
  border-left: 4px solid #93C01F;
}
@media (max-width: 1024px) {
  .main-nav {
    gap: 13px;
  }
  .main-nav img {
    margin-right: 16px;
    height: 34px;
  }
  .cta.primary { margin-left: 0; }
}
@media (max-width: 900px) {
  .main-nav a:not(:first-child) {
    font-size: 0.98rem;
    padding: 7px 5px;
  }
}
@media (max-width: 820px) {
  .main-nav a { font-size: 0.96rem; }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
}

/* HERO SECTIONS ---------------------------------------------------------------*/
.hero {
  padding: 56px 0 40px 0;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  background: linear-gradient(100deg, #213224 30%, #232C24 100%);
  border-radius: 18px;
  box-shadow: 0 2px 34px 0 #0005;
  margin-bottom: 42px;
}
.hero h1 {
  font-size: 2.5rem;
  color: #BDF070;
  text-shadow: 0 4px 24px #213224c0;
  letter-spacing: 0.01em;
}
.hero p {
  max-width: 660px;
  color: #fff;
  font-size: 1.15rem;
  margin: 0 auto 20px auto;
  font-weight: 400;
}
.hero .cta { margin-top: 16px; }

/* FEATURE / CARD GRID STYLE --------------------------------------------------*/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin: 34px 0 20px 0;
}
.feature-grid > div {
  background: #232C24;
  border-radius: 16px;
  box-shadow: 0 2px 24px 0 #0a2c1e45;
  padding: 28px 22px 24px 22px;
  flex: 1 1 220px;
  min-width: 210px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 20px;
  border: 1.5px solid #2A4D36;
  position: relative;
  z-index: 2;
  transition: box-shadow 0.2s, border 0.22s, transform 0.16s;
}
.feature-grid > div:hover {
  border: 1.5px solid #93C01F;
  box-shadow: 0 2px 36px 0 #93C01F33, 0 1.5px 0 #93C01F inset;
  transform: translateY(-4px) scale(1.02);
}
.feature-grid img {
  height: 46px;
  width: 46px;
  margin-bottom: 7px;
  filter: drop-shadow(0 3px 16px #93C01F45);
}
.feature-grid h3 {
  color: #93C01F;
  font-size: 1.12rem;
  margin-bottom: 8px;
}
.feature-grid p {
  color: #D0CFC6;
  font-size: 0.97rem;
  margin-bottom: 6px;
}

/* CONTENT WRAPPER & SECTION LAYOUTS ------------------------------------------*/
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.text-section {
  background: #232C24;
  border-radius: 16px;
  box-shadow: 0 1.5px 18px #18382044;
  padding: 36px 28px 34px 28px;
  margin-bottom: 24px;
  position: relative;
}
.text-section h2,
.text-section h3 {
  color: #93C01F;
}
.text-section ul, .content-wrapper ul {
  margin-top: 12px;
  margin-bottom: 6px;
  color: #D0CFC6;
}
.text-section li, .content-wrapper li {
  margin-bottom: 11px;
  padding-left: 0.4em;
}
.text-section li img {
  vertical-align: middle;
  height: 1.15em;
  width: auto;
  margin-right: 9px;
  margin-top: -2px;
  display: inline-block;
}

/* TESTIMONIALS ---------------------------------------------------------------*/
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #F3F4ED;
  color: #222E26;
  border-radius: 14px;
  box-shadow: 0 2px 24px #18382017, 0 0.5px 12px #bdf0703f;
  padding: 20px 34px 18px 34px;
  gap: 20px;
  margin-bottom: 20px;
  margin-top: 10px;
  position: relative;
}
.testimonial-card q {
  color: #2A4D36;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.07rem;
  margin-bottom: 6px;
  quotes: '“' '”' '‘' '’';
}
.testimonial-card q:before {
  content: open-quote;
  color: #93C01F;
  font-size: 1.7em;
  vertical-align: top;
  line-height: 0.5em;
}
.testimonial-card q:after {
  content: close-quote;
  color: #93C01F;
  font-size: 1.7em;
  vertical-align: bottom;
  line-height: 0.5em;
}
.testimonial-card p {
  margin: 0 0 0 5px;
  color: #2A4D36;
  font-size: 0.97rem;
  font-weight: 500;
}
.testimonial-card strong {
  color: #2A4D36;
}

/* FEATURE-ITEM LAYOUT ---------------------------------------------------------*/
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* CARD CONTAINER & CARD ------------------------------------------------------*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #232C24;
  border-radius: 16px;
  box-shadow: 0 2.5px 18px 0 #2A4D3622;
  padding: 24px 20px;
  transition: box-shadow 0.22s, border 0.18s, transform 0.16s;
  border: 1.5px solid #2A4D36;
}
.card:hover {
  border: 1.5px solid #93C01F;
  box-shadow: 0 1.5px 28px 0 #93C01F42;
  transform: translateY(-3px) scale(1.02);
}

.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;
}

/* FOOTER ---------------------------------------------------------------------*/
footer {
  background: #17231A;
  box-shadow: 0 -2px 16px 0 #0a2c1e1c;
  color: #C7CABE;
  padding: 38px 0 22px 0;
  margin-top: 40px;
  font-size: 0.98rem;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-left: 36px;
}
.footer-nav a {
  color: #BDF070;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 0.96rem;
  border-radius: 3px;
  padding: 4px 7px;
  transition: color 0.16s, background 0.17s;
}
.footer-nav a:hover {
  background: #293C27;
  color: #93C01F;
}
footer a img {
  width: 42px;
  height: 42px;
}
footer div > p, footer div > a {
  color: #C7CABE;
}
footer p a {
  color: #BDF070;
  border-bottom: 1px solid #93C01F22;
  transition: border-color 0.14s, color 0.18s;
}
footer p a:hover {
  color: #93C01F;
  border-bottom: 1px solid #93C01F;
}

/* BUTTONS & INTERACTIONS -----------------------------------------------------*/
button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  cursor: pointer;
  background: #232C24;
  color: #BDF070;
  border: none;
  border-radius: 5px;
  padding: 9px 22px;
  box-shadow: 0 2px 10px #93C01F18;
  transition: background 0.18s, color 0.16s, box-shadow 0.19s, transform 0.14s;
}
button:hover, button:focus {
  background: #93C01F;
  color: #222;
  transform: translateY(-1.5px) scale(1.04);
  box-shadow: 0 2px 16px #93C01F44;
}

/* COOKIE CONSENT BANNER ------------------------------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #232C24;
  box-shadow: 0 -2px 24px #010e0524;
  color: #EAF7ED;
  z-index: 99999;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px 22px 22px;
  gap: 24px;
  font-size: 1rem;
  border-top: 2px solid #93C01F;
  animation: bannerFadeIn 0.79s cubic-bezier(.43,.16,.77,1.05) 1;
}
@keyframes bannerFadeIn {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner button {
  font-size: 1rem;
  margin-left: 10px;
  border-radius: 6px;
  min-width: 120px;
}
.cookie-btn-accept {
  background: #93C01F;
  color: #222F1B;
  font-weight: 600;
  box-shadow: 0 2px 10px #97d13b54;
}
.cookie-btn-accept:hover { background: #BDF070; color: #111; }
.cookie-btn-reject {
  background: #233327;
  color: #BDF070;
  border: 1.5px solid #93C01F;
}
.cookie-btn-reject:hover {
  background: #eee;
  color: #2A4D36;
}
.cookie-btn-settings {
  background: none;
  color: #93C01F;
  border: 1.3px solid #93C01F;
}
.cookie-btn-settings:hover {
  background: #232C24;
  color: #BDF070;
  box-shadow: 0 2px 10px #bdf07033;
}

/* COOKIE MODAL POPUP ---------------------------------------------------------*/
.cookie-modal-backdrop {
  display: none;
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(31,40,30,0.63);
  z-index: 100000;
}
.cookie-modal-backdrop.active {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal {
  min-width: 340px;
  max-width: 95vw;
  background: #222E26;
  color: #EAF7ED;
  border-radius: 18px;
  box-shadow: 0 4px 36px #2a4d36cc;
  padding: 32px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookieModalFadeIn .34s cubic-bezier(.4,.7,.1,1);
}
@keyframes cookieModalFadeIn {
  from { transform: translateY(60px) scale(0.95); opacity: 0.1; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.26rem;
  color: #93C01F;
  margin-bottom: 11px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 0;
  background: none;
  font-size: 1rem;
}
.cookie-category label {
  font-size: 1rem;
  color: #BDF070;
  font-weight: bold;
}
.cookie-category input[type="checkbox"] {
  accent-color: #93C01F;
  width: 20px;
  height: 20px;
  border-radius: 4px;
}
.cookie-category input:disabled {
  filter: grayscale(0.7);
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 12px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn-settings[aria-pressed="true"] {
  background: #2A4D36;
  color: #93C01F;
}

/* GENERAL RESPONSIVE ---------------------------------------------------------*/
@media (max-width: 1100px) {
  .feature-grid > div { max-width: 47%; }
  .container { max-width: 94vw; }
}
@media (max-width: 900px) {
  .feature-grid { gap: 18px; }
  .feature-grid > div { min-width: 155px; max-width: 46%; }
  .card-container { gap: 18px; }
  .content-grid { gap: 13px; }
}
@media (max-width: 768px) {
  .hero { padding-left: 2vw; padding-right: 2vw; }
  .feature-grid {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .feature-grid > div {
    max-width: 99%;
    width: 100%;
    align-items: flex-start;
  }
  .section { padding: 32px 8px; margin-bottom: 30px; }
  .text-section { padding: 26px 12px; }
  .testimonial-card {
    padding: 18px 12px 16px 14px;
  }
  .container { padding: 0 6px; }
  .footer-nav { margin-left: 6px; gap: 8px; flex-wrap: wrap; }
  .content-wrapper, .card-container, .content-grid { gap: 12px; }
}
@media (max-width: 600px) {
  .hero h1 { font-size: 1.46rem; }
  .hero p { font-size: 0.99rem; }
  h2 { font-size: 1.36rem; }
  h3 { font-size: 1.06rem; }
  body { font-size: 15px; }
  .testimonial-card { padding: 13px 7px; font-size: 0.90rem; }
  .container { padding: 0 2px; }
  footer .container { gap: 14px; }
}
@media (max-width: 490px) {
  .hero { padding: 18vw 0 5vw 0; }
  .feature-grid > div { padding: 15px 6px; }
  .testimonial-card { padding: 11px 2px; }
}

/* MICRO-ANIMATIONS -----------------------------------------------------------*/
.cta.primary:active, button:active {
  transform: scale(0.97) translateY(0.5px);
}
.card:active, .feature-grid > div:active {
  transform: scale(0.97) translateY(2px);
}

/* UTILITIES & OVERRIDES ------------------------------------------------------*/
::-webkit-scrollbar {
  width: 8px;
  background: #232C24;
}
::-webkit-scrollbar-thumb {
  background: #2A4D36;
  border-radius: 10px;
}
::-webkit-selection {
  background: #BDF07099;
  color: #181F11;
}
::selection {
  background: #BDF07099;
  color: #181F11;
}

/* TYPOGRAPHY SCALE -----------------------------------------------------------*/
@media (min-width: 1280px) {
  body { font-size: 17px; }
  h1 { font-size: 2.7rem; }
  h2 { font-size: 2.14rem; }
  h3 { font-size: 1.23rem; }
}

/* Z-INDEX MANAGEMENT ---------------------------------------------------------*/
header { z-index: 30; }
.mobile-menu { z-index: 9999; }
.cookie-banner { z-index: 99999; }

/* ACCESSIBILITY --------------------------------------------------------------*/
:focus-visible {
  outline: 2px solid #93C01F;
  outline-offset: 2px;
}

/* EXTRA SPACING ON CARDS & WRAPPERS --------------------------------------------*/
.card-container > * { margin-bottom: 20px; }
.content-wrapper > * { margin-bottom: 16px; }
.section:last-child, .content-wrapper:last-child, .card-container:last-child { margin-bottom: 0; }

/* Hide cookie modal by default */
.cookie-modal-backdrop { display: none; }
.cookie-modal-backdrop.active { display: flex; }

/* END */
