/* CSS RESET & BASELINE */
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;
  outline: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
  background-color: #F6FAF3;
  color: #2B3C13;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #1A2859;
  text-decoration: none;
  transition: color .2s;
}
a:hover,
a:focus {
  color: #39692F;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  outline: none;
  box-sizing: border-box;
}

/* NATURE ORGANIC PALETTE */
:root {
  --earth-bg: #F6FAF3;
  --earth-text: #2B3C13;
  --nature-dark: #283618;
  --nature-green: #70A35D;
  --nature-green-dark: #39692F;
  --earth-accent: #F5A623;
  --organic-brown: #8e735b;
  --organic-beige: #F9F7EE;
  --brand-primary: #1A2859;
  --brand-secondary: #F6F8FA;
  --btn-shadow: 0 2px 8px rgba(112, 163, 93, 0.14);
  --card-shadow: 0 2px 24px 0 rgba(26, 40, 89, 0.07);
  --input-border: #DDE6DE;
  --surface-shadow: 0 8px 24px rgba(170, 200, 140, 0.09);
}

/* CONTAINER & LAYOUT */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--organic-beige);
  border-radius: 32px;
  box-shadow: var(--surface-shadow);
  position: relative;
  overflow: hidden;
}
@media (max-width: 900px) {
  .section {
    margin-bottom: 40px;
    padding: 30px 8px;
    border-radius: 20px;
  }
}

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--nature-dark);
  margin-bottom: 12px;
  text-wrap: balance;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -1.2px;
}
h2 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.22;
}
h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 8px;
}
h4 {
  font-size: 1.1rem;
  font-weight: 500;
}
p, li, span, td, th {
  font-size: 1rem;
  color: var(--earth-text);
}
p {
  margin-bottom: 12px;
  line-height: 1.7;
}
strong {
  font-weight: 600;
  color: var(--nature-green-dark);
}

/* HERO, CALL TO ACTION, BUTTONS */
.cta-btn {
  background: var(--nature-green);
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 0.5px;
  padding: 14px 34px;
  border: 0;
  border-radius: 999px;
  font-size: 1.15rem;
  font-weight: 700;
  box-shadow: var(--btn-shadow);
  cursor: pointer;
  display: inline-block;
  transition: background .22s, box-shadow .22s, transform .18s;
  margin-top: 12px;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--nature-green-dark);
  color: #f9f7ee;
  box-shadow: 0 4px 24px rgba(85, 146, 56, 0.18);
  transform: translateY(-2px) scale(1.04);
}

button, .btn {
  background: var(--earth-accent);
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 10px 26px;
  border: 0;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s, box-shadow .2s, transform .16s;
  margin-right: 8px;
}
button:hover, button:focus, .btn:hover, .btn:focus {
  background: #E4991C;
  color: #fff;
  box-shadow: 0 0 0 2px #eadea4 inset;
  transform: scale(1.04);
}

/* MAIN NAVIGATION */
header {
  width: 100%;
  background: #fbfaf5;
  border-bottom: 1.5px solid #e4e5db;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  color: var(--brand-primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  padding: 6px 14px;
  border-radius: 20px;
  transition: color .18s, background .16s;
  font-weight: 500;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--nature-green);
  color: #fff;
}
.main-nav .cta-btn {
  margin-left: 16px;
  margin-right: 0;
  padding: 10px 22px;
  font-size: 1rem;
}
.main-nav .cta-btn:hover, .main-nav .cta-btn:focus {
  background: var(--earth-accent);
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: var(--nature-green-dark);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color .18s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--earth-accent);
}
@media (max-width: 990px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(255,255,255,0.98);
  z-index: 9999;
  transform: translateX(-100vw);
  transition: transform 0.4s cubic-bezier(.85,0,.28,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  margin: 24px 0 18px 22px;
  background: transparent;
  color: var(--brand-primary);
  border: none;
  font-size: 2.1rem;
  align-self: flex-start;
  cursor: pointer;
  transition: color .17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--nature-green);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 18px;
  padding-left: 34px;
  padding-right: 34px;
}
.mobile-nav a {
  display: block;
  padding: 14px 0 8px 0;
  font-size: 1.22rem;
  color: var(--brand-primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  transition: color .15s, background .12s;
  font-weight: 500;
  border-radius: 14px;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--nature-green);
  color: #fff;
  padding-left: 10px;
}

@media (min-width: 991px) {
  .mobile-menu { display: none; }
  .mobile-menu-toggle { display: none !important; }
}

/* MAIN LAYOUT SECTIONS */
main > section {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  main > section {
    margin-bottom: 40px;
  }
}

/* FLEXBOX LAYOUTS: Card containers, grids */
.feature-grid, .outcomes-grid, .faq-list, .statistics-grid, .pricing-table, .comparison-grid, .features-comparison {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 8px;
  justify-content: flex-start;
  align-items: stretch;
}
.feature-grid li, .outcomes-grid li, .faq-list li, .pricing-table > div, .statistics-grid > div, .comparison-grid > div, .features-comparison table {
  background: #fff;
  border-radius: 32px;
  box-shadow: var(--card-shadow);
  padding: 30px 26px;
  min-width: 260px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  position: relative;
}
.pricing-table > div {
  align-self: stretch;
}
.pricing-table > div:hover, .comparison-grid > div:hover {
  box-shadow: 0 6px 28px rgba(61,105,47,0.10);
  transform: scale(1.025);
  transition: box-shadow 0.22s, transform 0.18s;
}

.statistics-grid > div {
  text-align: left;
  align-items: flex-start;
  background: var(--organic-beige);
  color: var(--nature-dark);
  font-size: 1.25rem;
  min-width: 210px;
  gap: 10px;
}
@media (max-width: 800px) {
  .feature-grid, .outcomes-grid, .faq-list, .statistics-grid, .pricing-table, .comparison-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid li, .outcomes-grid li, .faq-list li, .pricing-table > div, .statistics-grid > div, .comparison-grid > div {
    min-width: unset;
    width: 100%;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 24px;
  box-shadow: var(--surface-shadow);
  background: #fff;
  padding: 30px;
  flex: 1 1 300px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  transition: box-shadow .17s, transform .16s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(52, 108, 61, 0.10);
  transform: 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;
}
@media (max-width:768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #F6FAF3;
  border-left: 4px solid var(--nature-green);
  border-radius: 16px;
  box-shadow: var(--surface-shadow);
  padding: 20px;
  margin-bottom: 20px;
}
.testimonial-card p {
  font-size: 1.08rem;
  color: #283618;
  font-style: italic;
}
.testimonial-card span {
  color: var(--nature-green-dark);
  font-size: 1rem;
  font-weight: 600;
  margin-left: 10px;
  margin-right: 10px;
}
.testimonial-card img {
  height: 24px;
  width: 24px;
  margin-left: auto;
}
@media (max-width: 650px) {
  .testimonial-card {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    text-align: left;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* TABLE & BADGES */
.features-comparison table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px;
  margin: 16px 0 0 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}
.features-comparison th {
  background: var(--earth-bg);
  font-family: 'Montserrat';
  color: var(--nature-dark);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 12px 6px;
}
.features-comparison td {
  background: #fff;
  text-align: center;
  font-size: 1rem;
  padding: 10px 6px;
}
.features-comparison tr td:first-child {
  text-align: left;
  background: #F6FAF3;
  color: var(--organic-brown);
}
.features-comparison tr {
  border-radius: 10px;
  margin-bottom: 5px;
}

.badges {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 16px 0 0 0;
}

/* ORGANIC SHAPES FOR DECORATIVE EFFECTS (example) */
.section::before {
  content: '';
  display: block;
  position: absolute;
  top: -23px; left: -56px;
  width: 110px; height: 110px;
  background: rgba(112, 163, 93, 0.10);
  border-radius: 68% 62% 80% 62% / 54% 79% 55% 68%;
  z-index: 0;
  pointer-events: none;
}
.section::after {
  content: '';
  display: block;
  position: absolute;
  right: -40px; bottom: -22px;
  width: 80px; height: 80px;
  background: rgba(245, 166, 35, 0.07);
  border-radius: 50% 60% 70% 80% / 79% 50% 68% 60%;
  z-index: 0;
  pointer-events: none;
}
.section > .container, .section > .container > .content-wrapper {
  position: relative;
  z-index: 1;
}

/* FAQ LIST */
.faq-list li {
  padding: 18px 22px;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--card-shadow);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-list strong {
  color: var(--nature-dark);
  font-size: 1rem;
}

/* FOOTER */
footer {
  padding: 0;
  background: #ece6da;
  margin-top: 40px;
  border-top: 1.5px solid #dedbc9;
  font-size: 1rem;
  width: 100vw;
}
footer .container {
  flex-direction: row;
  justify-content: center;
  padding: 20px 10px;
  gap: 16px;
  align-items: stretch;
}
@media (max-width: 1000px) {
  footer .container {
    flex-direction: column;
    align-items: center;
    gap: 11px;
  }
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}
.footer-logo img {
  height: 48px;
}
.footer-links, .footer-newsletter, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  color: var(--brand-primary);
  font-family: 'Montserrat';
  font-size: 1rem;
  transition: color .19s;
}
.footer-links a:hover, .footer-links a:focus {
  color: var(--nature-green-dark);
  text-decoration: underline;
}
.footer-contact img {
  width: 17px;
  height: 17px;
  margin-right: 7px;
  vertical-align: middle;
}
.footer-contact a {
  color: var(--nature-green);
}
.footer-contact a:hover, .footer-contact a:focus {
  color: var(--earth-accent);
}
footer .content-wrapper > p {
  font-size: 0.95rem;
  color: #79643e;
  margin-top: 22px;
}

/* NEWSLETTER */
.footer-newsletter p {
  color: #5e5239;
  font-size: 1rem;
  font-weight: 500;
}

/* SOCIAL MEDIA LINKS ON THANK YOU PAGE */
.social-media-links {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 15px;
  font-size: 1rem;
}
.social-media-links img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f3efe1;
  box-shadow: 0 0 4px 0 rgba(112,163,93,.11);
  transition: box-shadow .15s, filter .12s;
}
.social-media-links a:hover img {
  box-shadow: 0 4px 24px rgba(61,105,47,0.11);
  filter: brightness(0.9);
}

/* BONUS BLOCKS, HIGHLIGHTS */
.bonus-info p {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: #fffce5;
  border-left: 6px solid var(--earth-accent);
  border-radius: 13px;
  padding: 16px 22px;
  margin: 14px 0 0 0;
  font-size: 1.04rem;
  color: #af7e12;
  box-shadow: 0 2px 10px rgba(255,214,98,0.11);
}

/* TABLES */
table {
  width: 100%;
  font-size: 1rem;
  background: #fbfaf5;
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0 8px;
  box-shadow: var(--card-shadow);
}
th, td {
  padding: 12px;
  text-align: center;
}
th {
  background: #f4fbe7;
  color: var(--nature-green-dark);
  font-family: 'Montserrat';
  font-size:1.07rem;
}
td {
  background: #fff;
}

/* FAQ / ACCORDION micro-interaction (for direct open/close in JS) */
.faq-list li[aria-expanded="true"] {
  background: #f3fcf2;
  box-shadow: 0 4px 24px rgba(120,160,90,0.10);
}

/* MISC */
::-webkit-input-placeholder { color: #96ad7d; opacity: 1; }
::-moz-placeholder { color: #96ad7d; opacity: 1; }
:-ms-input-placeholder { color: #96ad7d; opacity: 1; }
::placeholder { color: #96ad7d; opacity: 1; }

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background: #e7f4dc;
  color: #39502d;
  z-index: 20000;
  border-top: 2.5px solid var(--nature-green-dark);
  box-shadow: 0 -2px 18px #d5d6be7c;
  padding: 24px 18px 22px 18px;
  font-size: 1rem;
  min-width: 0;
  animation: fadeInCookie 0.9s cubic-bezier(.77,.23,.48,1) 0.2s backwards;
}
.cookie-banner p {
  font-size: 1.05rem;
  margin-bottom: 0;
}
.cookie-btns {
  display: flex;
  gap: 12px;
  margin-top: 7px;
}
.cookie-btns button {
  border-radius: 999px;
  padding: 10px 24px;
  font-weight: 600;
  font-size: 1rem;
}
.cookie-btns .accept {
  background: var(--nature-green);
  color: #fff;
}
.cookie-btns .accept:hover,
.cookie-btns .accept:focus {
  background: var(--nature-green-dark);
  color: #fff;
}
.cookie-btns .reject {
  background: #fff;
  color: var(--nature-green-dark);
  border: 1.5px solid var(--nature-green);
}
.cookie-btns .reject:hover, .cookie-btns .reject:focus {
  background: #ffe2ba;
  color: #956b34;
}
.cookie-btns .settings {
  background: var(--earth-accent);
  color: #fff;
}
.cookie-btns .settings:hover, .cookie-btns .settings:focus {
  background: #e9b422;
  color: #fff;
}
@media (max-width: 550px) {
  .cookie-banner .cookie-btns { flex-direction: column; align-items: flex-start; }
}
@keyframes fadeInCookie {
  from { opacity:0; transform:translateY(60px); }
  to { opacity:1; transform:translateY(0); }
}

/* Cookie Modal */
.cookie-settings-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 22000;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 6px 42px 0 rgba(112,163,93,0.12);
  transform: translate(-50%,-55%) scale(1.04);
  width: 99vw;
  max-width: 400px;
  min-height: 140px;
  padding: 36px 24px 26px 24px;
  animation: cookieslidein .45s cubic-bezier(.55,1.2,.25,1) backwards;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@keyframes cookieslidein {
  from { opacity:0; transform:translate(-50%,-150px) scale(0.95); }
  to   { opacity:1; transform:translate(-50%,-55%) scale(1.04); }
}
.cookie-settings-modal h3 {
  color: var(--nature-green-dark);
  font-size: 1.23rem;
  font-family: 'Montserrat';
}
.cookie-settings-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-settings-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #f3f0ed;
  font-size: 1rem;
}
.cookie-settings-option label {
  font-weight: 500;
  color: var(--nature-green);
}
.cookie-settings-option input[type=checkbox]:disabled + label {
  color: #6f8972;
  font-style: italic;
}
.cookie-settings-close {
  position: absolute;
  right: 18px;
  top: 14px;
  font-size:1.87rem;
  border: none;
  background: none;
  color: var(--brand-primary);
  cursor: pointer;
  transition: color .16s;
}
.cookie-settings-close:hover { color: var(--nature-green-dark); }

@media (max-width: 700px) {
  .cookie-settings-modal { padding: 28px 4vw 20px 4vw; min-width: 0; }
}

/* ACCESSIBLE FOCUS STATES & MICRO-INTERACTIONS */
a:focus, button:focus, .cta-btn:focus, input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--nature-green);
  outline-offset: 2px;
}

/* RESPONSIVE TYPOGRAPHY & LAYOUT */
@media (max-width: 700px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.12rem; }
  .feature-grid li, .outcomes-grid li, .card {
    padding: 17px 7px;
    font-size: 1rem;
  }
  .content-wrapper { gap: 13px; }
  .section { padding: 18px 3vw; margin-bottom: 36px; }
  .testimonial-card { padding: 12px; }
}

/* ORGANIC BUTTON SHAPES (for .cta-btn, .btn) */
.cta-btn, button.btn, .cookie-btns button {
  border-radius: 80px 120px 95px 105px/100px 95px 110px 100px;
}

/* Hide section backgrounds for minimal pages if needed */
main > section:not(.section) {
  background: none;
  box-shadow: none;
}

/* Z-Index for menus */
header { z-index: 1600; position: relative; }

/* Hide ornamental ::before/::after on mobile to not clutter */
@media (max-width: 600px) {
  .section::before, .section::after { display: none !important; }
  .feature-grid li, .card, .testimonial-card {
    box-shadow: 0 1.5px 8px rgba(61,105,47,0.08);
  }
}
