/* CSS 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; }
*, *:before, *:after { box-sizing: inherit; }
body, html { height: 100%; }
body {
  min-height: 100vh;
  background: #f6f7fb url('../assets/bg-texture-organic.png') repeat;
  color: #1a3b1a;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  background-blend-mode: soft-light;
}
img { max-width: 100%; display: block; }
ul, ol { padding-left: 1.3em; }
b, strong { font-weight: 700; }
a { color: #25507A; text-decoration: underline; transition: color .2s; }
a:hover, a:focus { color: #27ae60; text-decoration: none; }

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #153124;
}
h1 { font-size: 2.5rem; font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 16px; }
h2 { font-size: 1.75rem; font-weight: 700; margin-bottom: 16px; }
h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 12px; }
h4 { font-size: 1.125rem; font-weight: 600; margin-bottom: 8px; }
p, li, dd { font-size: 1rem; margin-bottom: 10px; }
.section h2 { margin-bottom: 15px; }

/* CONTAINER & CONTENT WRAPPER */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ORGANIC SECTION SPACING & CARDS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 32px;
  background: #ffffffcc;
  box-shadow: 0 8px 32px rgba(39, 174,96, 0.08), 0 1.5px 4px rgba(37,80,122,0.06);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 28px 40px 32px 24px;
  box-shadow: 0 2px 12px 0 rgba(39, 174, 96, 0.09);
  padding: 28px 22px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s, transform .15s;
}
.card:hover {
  box-shadow: 0 8px 24px 0 rgba(39, 174, 96, 0.18);
  transform: translateY(-2px) scale(1.015);
}
.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;
}

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fafcf9;
  border-radius: 24px 36px 28px 32px;
  box-shadow: 0 2.5px 11px 0 rgba(39, 174,96, 0.11);
  margin-bottom: 20px;
  color: #12200e;
}
.testimonial-card img {
  width: 36px; height: 36px; flex-shrink: 0;
}
.testimonial-card p {
  font-size: 1.07rem;
  line-height: 1.65;
  margin: 0;
  color: #14361f;
}
.testimonial-card span {
  font-size: 0.96em;
  color: #3b6932;
  margin-left: auto;
  font-style: italic;
}

/* FEATURE ITEM */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #f5f8ed;
  border-radius: 24px;
  padding: 24px 20px;
  margin-bottom: 20px;
  box-shadow: 0 1.5px 6px rgba(39,174,96,0.06);
}

/* HERO SECTION */
.hero {
  background: #e9f5ea url('../assets/bg-leaf-organic.svg') bottom right/340px no-repeat;
  border-radius: 0 0 48px 48px;
  min-height: 240px;
  display: flex;
  align-items: center;
  margin-bottom: 56px;
}
.hero .container {
  align-items: flex-start;
  justify-content: center;
  min-height: 220px;
}
.hero .content-wrapper {
  max-width: 720px;
  background: none;
  box-shadow: none;
  margin: 0 auto;
}
.hero h1 {
  color: #25507A;
  font-weight: 900;
  text-shadow: 0 2px 6px rgba(39, 174, 96,0.11);
}

/* BUTTONS & CTA */
.cta-primary, .cta-secondary {
  display: inline-block;
  min-width: 134px;
  text-align: center;
  padding: 14px 30px;
  border-radius: 24px 36px 28px 32px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .22s, color .16s, box-shadow .17s, transform .15s;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(39, 174, 96, 0.09);
}
.cta-primary {
  background: #27AE60;
  color: #fff;
  border: none;
  letter-spacing: 0.06em;
}
.cta-primary:hover, .cta-primary:focus {
  background: #25507A;
  color: #e3fde6;
  transform: translateY(-2px) scale(1.025);
  box-shadow: 0 6px 18px rgba(37,80,122,0.13);
}
.cta-secondary {
  background: #25507A;
  color: #fff;
  margin-top: 10px;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #27AE60;
  color: #fff;
  box-shadow: 0 6px 18px rgba(39,174,96,0.13);
  transform: translateY(-2px) scale(1.025);
}
button {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}

/* HEADER & NAVIGATION */
header {
  background: #fff;
  border-radius: 0 0 36px 36px;
  box-shadow: 0 2.5px 18px 0 rgba(39,174,96,0.10);
  z-index: 80;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 22px;
}
header nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
header nav a {
  color: #25507a;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 16px;
  transition: background .18s, color .17s;
}
header nav a:hover, header nav a:focus {
  background: #e5f9e7;
  color: #27ae60;
}
header .cta-primary {
  margin-left: 18px;
}

/* MOBILE MENU (BURGER) */
.mobile-menu-toggle {
  display: none;
  font-size: 2.05rem;
  color: #25507a;
  background: #e9f5ea;
  border-radius: 50%;
  width: 47px;
  height: 47px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 7px rgba(39,174,96,0.09);
  border: 1.5px solid #e1f2ea;
  margin-left: auto;
  transition: background .16s, color .16s, box-shadow .16s;
  z-index:101;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #d3eed4;
  color: #17612e;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(38,62,51,0.95);
  z-index: 9999;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0;
  transform: translateX(100%);
  transition: transform .36s cubic-bezier(0.65, 0, 0.35, 1);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.15rem;
  background: #fff;
  color: #17612e;
  margin: 18px 20px 18px auto;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  box-shadow: 0 2px 8px rgba(27,60,41,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, color .16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #eaffef;
  color: #25507a;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 32px 0 0 0;
  width: 100%;
  align-items: flex-start;
  padding: 0 34px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.22rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  text-decoration: none;
  padding: 13px 0;
  display: block;
  width: 100%;
  transition: background .14s, color .14s;
  border-radius: 16px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #27ae60;
  background: #23341f;
}

/* FOOTER */
footer {
  background: #e9f5ea;
  border-radius: 32px 32px 0 0;
  color: #183600;
  font-size: 0.96rem;
  padding: 38px 0 18px 0;
}
footer .container {
  gap: 18px;
}
footer .content-wrapper {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
footer nav a {
  color: #25507a;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  text-decoration: underline;
}
footer nav a:hover {
  color: #27ae60;
  text-decoration: none;
}
footer .contact-short p {
  margin: 0;
  color: #205e3d;
  line-height: 1.5;
}
footer .contact-short img {
  vertical-align: middle;
  margin-right: 9px;
}
footer .legal {
  margin-top: 8px;
  font-size: 0.90rem;
  color: #6d8672;
}

/* TEXT SECTIONS & LISTS */
.text-section {
  background: #f5f9f5;
  border-radius: 24px;
  padding: 24px;
  margin: 12px 0;
  box-shadow: 0 2px 8px rgba(39,174,96,0.06);
  color: #2d3a20;
}
.text-section ul, .text-section ol, .text-section dl {
  margin: 12px 0 6px 0;
  padding-left: 1.25em;
}
.text-section li, .text-section dd, .text-section dt {
  margin-bottom: 8px;
}
.text-section h3 {
  margin-top: 18px;
  color: #153124;
}

/* FORMS (if any) */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 18px;
  border: 1.5px solid #b0d2c1;
  padding: 12px 16px;
  margin-bottom: 14px;
  transition: border .15s, box-shadow .15s;
  outline: none;
  background: #fff;
}
input:focus, textarea:focus, select:focus {
  border-color: #27AE60;
  box-shadow: 0 0 0 2px #d0f2de;
}
label {
  font-size: 1rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #153124;
  margin-bottom: 4px;
}

/* TABLES (if any) */
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  background: #f9fbf9;
  border-radius: 14px;
}
th, td {
  padding: 12px 8px;
  border-bottom: 1px solid #dfedd5;
  color: #14361f;
}
th {
  background: #e9f5ea;
  font-weight: 600;
}
tr:last-child td { border-bottom: none; }

/* ACCESSIBLE FOCUS STATES */
a:focus, button:focus, .cta-primary:focus, .cta-secondary:focus {
  outline: 2.5px solid #27ae60;
  outline-offset: 2px;
  background: #e5f9e7;
}
/* ORGANIC DECORATIVE SHAPES (optional - for backgrounds) */
.section {
  position: relative;
}
.section::before {
  content: '';
  display: block;
  position: absolute;
  left: -32px; top: -32px;
  width: 84px; height: 54px;
  background: url('../assets/deco-leaf1.svg') no-repeat;
  opacity: 0.16;
  z-index: 0;
}
.section:nth-child(even)::before {
  left: auto; right: -32px; top: -32px;
  background: url('../assets/deco-leaf2.svg') no-repeat;
}
.section > * { position: relative; z-index: 2; }

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0; width: 100vw;
  background: #224c31ee;
  color: #fff;
  z-index: 99999;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 26px 20px;
  box-shadow: 0 -2px 18px 0 rgba(37,80,122,0.11);
  font-size: 1rem;
  gap: 28px;
  animation: slideUp .38s cubic-bezier(.36,.05,.55,1.08);
}
@keyframes slideUp {
  0% { transform: translateY(110%); }
  100% { transform: translateY(0); }
}
.cookie-banner .cookie-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.cookie-banner button, .cookie-banner .cookie-settings-btn {
  background: #27ae60;
  color: #fff;
  border: none;
  border-radius: 24px;
  font-size: 1rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  padding: 10px 20px;
  margin: 0 2px;
  cursor: pointer;
  transition: background .17s, color .11s;
  box-shadow: 0 1.5px 8px rgba(39,174,96,0.09);
}
.cookie-banner .cookie-reject {
  background: #fff;
  color: #27ae60;
  border: 1.5px solid #27ae60;
}
.cookie-banner button:hover, .cookie-banner .cookie-settings-btn:hover {
  background: #25507A;
  color: #e3fde6;
}
.cookie-banner .cookie-reject:hover {
  background: #eaffef;
  color: #25507A;
}
.cookie-settings-modal {
  display: none;
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(22,42,16,0.72);
  z-index: 100000;
  align-items: center;
  justify-content: center;
}
.cookie-settings-modal.open {
  display: flex;
  animation: fadeIn .24s cubic-bezier(.41,.17,.71,1.05);
}
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal-content {
  background: #fcfff8;
  color: #153124;
  border-radius: 28px;
  min-width: 320px; max-width: 96vw;
  padding: 34px 26px 22px 26px;
  box-shadow: 0 3px 24px rgba(39, 174,96, 0.17);
  position: relative;
  animation: scaleIn .25s cubic-bezier(.32,.7,.43,1.16);
}
@keyframes scaleIn {
  0% { transform: scale(0.82) translateY(60px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-content h3 { font-size: 1.3rem; margin: 0 0 10px 0; }
.cookie-modal-content .category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 12px;
}
.cookie-modal-content label {
  cursor: pointer;
  font-weight: 500;
  color: #1a3b1a;
}
.cookie-toggle {
  appearance: none;
  width: 36px;
  height: 21px;
  background: #e3f0e3;
  border-radius: 18px;
  position: relative;
  outline: none;
  transition: background .10s;
}
.cookie-toggle:checked {
  background: #27ae60;
}
.cookie-toggle:after {
  content: '';
  position: absolute;
  left: 3.5px;
  top: 3.5px;
  width: 14px; height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: left .16s, background .16s;
  box-shadow: 0 1px 3px rgba(60,110,64,0.09);
}
.cookie-toggle:checked:after {
  left: 19px; background: #f6f7fb;
}
.cookie-modal-close {
  position: absolute;
  top: 10px; right: 16px;
  background: none;
  border: none;
  color: #153124;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 3px;
  border-radius: 50%;
  transition: background .15s;
}
.cookie-modal-close:hover {
  background: #eaffef;
  color: #205e3d;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 20px;
  justify-content: flex-end;
}

/* FAQ */
dt {
  font-weight: 600;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  margin-top: 14px;
  color: #25507A;
}
dd {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #1a3b1a;
  margin-left: 0;
}

/* ORGANIC ICONS/LISTS */
.text-section ul li > img, .text-image-section ul li > img, .feature-item > img {
  vertical-align: middle;
  margin-right: 10px;
  width: 26px;
  height: 26px;
  display: inline-block;
}

/* RESPONSIVENESS */
@media (max-width: 1020px) {
  .container { max-width: 98vw; }
  .hero .content-wrapper { max-width: 94vw; }
  footer .content-wrapper { gap: 24px; flex-wrap: wrap; }
}
@media (max-width: 900px) {
  header .container { flex-direction: row; gap: 12px; }
  footer .content-wrapper { flex-direction: column; align-items: flex-start; gap: 10px; }
}
@media (max-width: 768px) {
  .hero { min-height: 108px; border-radius: 0 0 28px 28px; margin-bottom: 38px; }
  .hero .container { min-height: 80px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.22rem; }
  h3 { font-size: 1.07rem; }
  .container { padding: 0 6px; }
  .content-wrapper, .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .testimonial-card { flex-direction: column; gap: 11px; }
  .section {
    padding: 22px 8px;
    margin-bottom: 32px;
  }
  .card {
    border-radius: 16px 24px 20px 12px;
    padding: 16px 10px;
  }
  .feature-item { padding: 14px 10px; }
  .text-section { padding: 12px; }
  footer .content-wrapper { gap: 12px; flex-direction: column; }
  .mobile-menu-toggle { display: flex; }
  header nav, header .cta-primary { display: none; }
  .mobile-menu { display: none; }
  .mobile-menu.open { display: flex; }
}
@media (max-width:540px) {
  h1 { font-size: 1.37rem; }
  h2 { font-size: 1.01rem; }
  .container { padding: 0 2px; }
  .cta-primary, .cta-secondary { padding: 11px 16px; font-size: .98rem; }
  .footer .contact-short p { font-size: .95rem; }
}

/* HIDE SCROLL when MODALS overlay/menus open */
body.menu-open, body.modal-open { overflow: hidden; }

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