/*----------------------------------------
  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 {
  line-height: 1.5;
  background: #F2EBDC;
  color: #21503E;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
}

img, picture {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #21503E;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #2d755b;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}
strong {
  font-weight: bold;
}
ul, ol {
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #21503E;
  margin-bottom: 16px;
  line-height: 1.2;
}
h1 { font-size: 2.6rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.4rem; margin-bottom: 10px; }
@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.36rem; }
  h3 { font-size: 1.14rem; }
}

/*----------------------------------------
  GENERAL UTILITY
-----------------------------------------*/
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 40px;
    padding: 24px 5px;
  }
}

/*----------------------------------------
  GRADIENT MODERN BACKGROUNDS
-----------------------------------------*/
section {
  background: linear-gradient(135deg, #ADC5B2 0%, #F2EBDC 100%);
  border-radius: 24px;
  margin-bottom: 60px;
  box-shadow: 0 4px 32px 0 rgba(33,80,62,0.05), 0 1.5px 3px 0 rgba(33,80,62,0.04);
}
section:nth-of-type(odd) {
  background: linear-gradient(120deg, #F2EBDC 0%, #FFFFFF 80%);
}

/*----------------------------------------
  HEADER & NAVIGATION
-----------------------------------------*/
header {
  width: 100%;
  padding: 0;
  background: #21503E;
  box-shadow: 0 4px 24px 0 rgba(33,80,62,0.07);
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  min-height: 72px;
  gap: 0;
}
nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
nav a {
  color: #F2EBDC;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  padding: 8px 0;
  font-size: 1rem;
  letter-spacing: 0.015em;
  transition: color 0.2s;
}
nav a.cta-button {
  background: linear-gradient(90deg, #ADC5B2 60%, #F2EBDC 100%);
  color: #21503E !important;
  padding: 10px 24px;
  border-radius: 32px;
  font-weight: 700;
  margin-left: 16px;
  box-shadow: 0 0 0 0 rgba(33,80,62,0);
  transition: background 0.25s, box-shadow 0.25s, color 0.25s;
}
nav a.cta-button:hover, nav a.cta-button:focus {
  background: linear-gradient(90deg, #F2EBDC 60%, #ADC5B2 100%);
  color: #21503E;
  box-shadow: 0 2px 10px 0 rgba(173,197,178,0.18);
}

nav img {
  height: 40px;
  width: auto;
  margin-right: 18px;
}
.mobile-menu-toggle {
  display: none;
}
@media (max-width: 992px) {
  nav {
    gap: 14px;
  }
  nav a.cta-button {
    padding: 9px 16px;
    font-size: 1rem;
    margin-left: 7px;
  }
  nav img {
    height: 34px;
    margin-right: 8px;
  }
}
@media (max-width: 768px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    background: none;
    border: none;
    color: #F2EBDC;
    font-size: 2.2rem;
    align-items: center;
    justify-content: center;
    padding: 11px;
    margin-left: auto;
    transition: color 0.2s;
    cursor: pointer;
    z-index: 120;
  }
}

/*----------------------------------------
  MOBILE MENU OVERLAY
-----------------------------------------*/
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(120deg,#ADC5B2 0%, #21503E 100%);
  z-index: 1200;
  padding: 40px 24px 24px 24px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.69,0,.32,1);
  box-shadow: -4px 0 32px 0 rgba(33,80,62,0.12);
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #21503E;
  font-size: 2.2rem;
  margin-bottom: 18px;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #2d755b;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  margin-top: 18px;
}
.mobile-nav a {
  font-size: 1.15rem;
  color: #fff;
  padding: 12px 0;
  line-height: 1.3;
  border-radius: 8px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  min-width: 190px;
  box-sizing: border-box;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:active {
  background: #f2ebdc44;
  color: #21503E;
}
@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
}

/*----------------------------------------
  MAIN STRUCTURE / FLEXBOX LAYOUTS
-----------------------------------------*/
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(33,80,62,0.07);
  padding: 24px 20px;
  min-width: 220px;
  min-height: 220px;
  flex: 1 1 250px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-item img {
  width: 48px; height: 48px; margin-bottom: 4px;
}
.feature-item h3 {
  font-size: 1.18rem;
  margin: 0;
}
.feature-item:hover {
  box-shadow: 0 7px 32px 0 rgba(33,80,62,0.14);
  transform: translateY(-2px) scale(1.025);
}
.service-price {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #21503E;
  margin-top: 8px;
  letter-spacing: 0.03em;
}
@media (max-width: 768px) {
  .features-grid {
    flex-direction: column;
    gap: 15px;
  }
  .feature-item {
    width: 100%;
    min-width: unset;
    min-height: 120px;
    align-items: flex-start;
    padding: 18px 14px;
  }
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(33,80,62,0.07);
  position: relative;
  transition: box-shadow 0.22s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 6px 32px 0 rgba(33,80,62,0.19);
  transform: translateY(-1px) scale(1.01);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/*----------------------------------------
  BUTTONS & CTA
-----------------------------------------*/
.cta-button {
  background: linear-gradient(90deg, #ADC5B2 60%, #F2EBDC 100%);
  color: #21503E !important;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.11rem;
  padding: 12px 36px;
  border: none;
  border-radius: 36px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.04em;
  box-shadow: 0 1.5px 5px 0 rgba(33,80,62,0.07);
  transition: background 0.22s, color 0.22s, box-shadow 0.18s, transform 0.1s;
  margin-top: 6px;
  margin-bottom: 6px;
  display: inline-block;
}
.cta-button:hover, .cta-button:active, .cta-button:focus {
  background: linear-gradient(90deg, #F2EBDC 40%, #ADC5B2 100%);
  color: #21503E;
  box-shadow: 0 5px 18px 0 rgba(33,80,62,0.11);
  transform: scale(1.035);
  text-decoration: none;
}

/*----------------------------------------
  LISTS & FEATURES
-----------------------------------------*/
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 0 0 0.3em;
  margin: 15px 0;
}
.feature-list li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  background: #fff;
  color: #21503E;
  font-size: 1.03rem;
  padding: 12px 15px;
  border-radius: 14px;
  margin-bottom: 8px;
  box-shadow: 0 1.5px 8px 0 rgba(33,80,62,0.04);
}
.feature-list li img {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

/*----------------------------------------
  TESTIMONIALS
-----------------------------------------*/
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  color: #21503E;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 2px 10px 0 rgba(33,80,62,0.09);
  flex: 1 1 300px;
  min-width: 290px;
  max-width: 420px;
  gap: 13px;
  align-items: flex-start;
  margin-bottom: 20px;
  transition: box-shadow .17s, transform .17s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px 0 rgba(33,80,62,0.11);
  transform: translateY(-2px) scale(1.02);
}
.testimonial-card p {
  font-size: 1.1rem;
  color: #21503E;
  margin-bottom: 8px;
  line-height: 1.6;
}
.testimonial-author {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.01rem;
  font-weight: 500;
  color: #4B7461;
}
@media (max-width: 768px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 17px;
  }
  .testimonial-card {
    min-width: unset;
    max-width: 100%;
    width: 100%;
  }
}

/*----------------------------------------
  FAQ ACCORDION
-----------------------------------------*/
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 18px 0 24px 0;
}
.faq-accordion dt {
  background: #ADC5B2;
  color: #21503E;
  border-radius: 14px 14px 0 0;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.12rem;
  padding: 14px 18px;
  cursor: pointer;
  margin-bottom: 0;
  box-shadow: 0 1.5px 8px 0 rgba(33,80,62,0.07);
  transition: background 0.14s;
}
.faq-accordion dt:hover {
  background: #b9d0be;
}
.faq-accordion dd {
  background: #fff;
  color: #21503E;
  border-radius: 0 0 14px 14px;
  font-size: 1rem;
  padding: 14px 18px 14px 26px;
  display: none;
}
.faq-accordion dt.active + dd {
  display: block;
}

/*----------------------------------------
  PRICING TABLE
-----------------------------------------*/
.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 16px 0 24px 0;
}
.pricing-list li {
  background: #fff;
  color: #21503E;
  border-radius: 12px;
  font-size: 1.09rem;
  padding: 14px 20px;
  box-shadow: 0 1.5px 8px 0 rgba(33,80,62,0.06);
}

/*----------------------------------------
  TEXT SECTIONS
-----------------------------------------*/
.text-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 12px;
}
.text-section a {
  color: #21503E;
  border-bottom: 1.5px solid #ADC5B2;
  transition: color 0.13s, border-color 0.13s;
}
.text-section a:hover {
  color: #294637;
  border-bottom: 1.5px solid #294637;
}

/*----------------------------------------
  FOOTER
-----------------------------------------*/
footer {
  background: #21503E;
  color: #F2EBDC;
  padding: 40px 0 0 0;
  width: 100%;
  margin-top: 40px;
}
footer .container {
  flex-direction: row;
  gap: 32px;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  min-width: 190px;
}
.footer-brand img {
  width: 48px;
  height: 48px;
  margin-bottom: 4px;
}
.footer-brand div {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-nav a {
  color: #ADC5B2;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 4px 0;
  transition: color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F2EBDC;
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 1rem;
}
.footer-contact div {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact a {
  color: #F2EBDC;
  text-decoration: underline;
  transition: color 0.14s;
}
.footer-contact a:hover {
  color: #ADC5B2;
}
.footer-contact img {
  width: 20px; height: 20px;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
    text-align: left;
  }
  .footer-brand, .footer-nav, .footer-contact {
    min-width: unset;
  }
}

/*----------------------------------------
  COOKIE CONSENT BANNER & MODAL
-----------------------------------------*/
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: linear-gradient(90deg, #ADC5B2 60%, #F2EBDC 100%);
  color: #21503E;
  font-size: 1rem;
  box-shadow: 0 -2px 18px 0 rgba(33,80,62,0.12);
  z-index: 1700;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 22px 10px 22px 10px;
  gap: 24px;
  animation: cookieBannerFadeIn 0.44s;
}
@keyframes cookieBannerFadeIn {
  0% { opacity: 0; transform: translateY(25px); }
  100% { opacity: 1; transform: none; }
}
.cookie-banner-text {
  flex: 1 1 340px;
  max-width: 750px;
  font-size: 1.09rem;
  margin-right: 8px;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-btn, .cookie-btn-primary {
  padding: 8px 20px;
  font-size: 1.01rem;
  border: none;
  border-radius: 28px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s, color 0.17s, box-shadow .13s;
  box-shadow: 0 1.5px 6px 0 rgba(33,80,62,0.09);
}
.cookie-btn-primary {
  background: #21503E;
  color: #F2EBDC;
}
.cookie-btn-primary:hover,.cookie-btn-primary:focus {
  background: #294637;
  color: #F2EBDC;
}
.cookie-btn {
  background: #fff;
  color: #21503E;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #ADC5B2;
  color: #21503E;
}
.cookie-btn-settings {
  background: none;
  color: #21503E;
  border: 2px solid #21503E;
  padding: 8px 16px;
  font-weight: 500;
  border-radius: 24px;
  transition: background 0.16s, color 0.15s, border 0.13s;
}
.cookie-btn-settings:hover {
  background: #21503E;
  color: #F2EBDC;
  border: 2px solid #21503E;
}
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 22px 6px 70px 6px;
  }
  .cookie-banner-text {
    text-align: center;
    margin-right: 0;
  }
}
/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(33, 80, 62, 0.74);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: cookieModalFadeIn 0.24s;
}
@keyframes cookieModalFadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  color: #21503E;
  padding: 38px 30px 32px 30px;
  border-radius: 24px;
  box-shadow: 0 8px 34px 0 rgba(33,80,62,0.17);
  min-width: 340px; max-width: 450px;
  width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-modal-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.cookie-modal-header h3 {
  font-size: 1.21rem;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: #21503E;
  font-size: 1.75rem;
  cursor: pointer;
  padding: 0 2px;
  margin-left: 18px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 12px 0 8px 4px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  background: #F2EBDC;
  border-radius: 12px;
  padding: 8px 12px;
}
.cookie-category .category-label {
  flex: 1 1 110px;
  font-size: 1.06rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
}
.toggle {
  width: 44px; height: 24px;
  border-radius: 19px;
  background: #ADC5B2;
  position: relative;
  display: flex; align-items: center;
  cursor: pointer;
  transition: background 0.22s;
}
.toggle[data-checked="true"] {
  background: #21503E;
}
.toggle-circle {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #FFFFFF;
  position: absolute;
  top: 1px;
  left: 1px;
  transition: left 0.18s;
  box-shadow: 0 1.5px 2.5px 0 rgba(33,80,62,0.09);
}
.toggle[data-checked="true"] .toggle-circle {
  left: 21px;
}
.cookie-category .category-desc {
  font-size: 0.98rem;
  color: #4B7461;
  padding-left: 8px;
}
.cookie-modal-footer {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 14px;
}
@media (max-width: 480px) {
  .cookie-modal-content, .cookie-modal-content * {
    min-width: unset;
    max-width: unset;
  }
}

/*----------------------------------------
  RESPONSIVE ADJUSTMENTS
-----------------------------------------*/
@media (max-width: 600px) {
  .container {
    padding: 0 6px;
  }
  section {
    padding: 18px 4px;
    margin-bottom: 28px;
    border-radius: 13px;
  }
  .content-wrapper {
    gap: 13px;
  }
  .footer-nav, .footer-contact {
    font-size: 0.98rem;
  }
  .footer-brand div {
    font-size: 0.97rem;
  }
}

/*----------------------------------------
  ANIMATIONS & MICRO-INTERACTIONS
-----------------------------------------*/
.cta-button, .feature-item, .testimonial-card, .card {
  transition: box-shadow 0.21s, transform 0.14s, background 0.16s, color 0.17s;
}
nav a, .footer-nav a {
  transition: color 0.14s, border-color 0.14s;
}

/*----------------------------------------
  ACCESSIBILITY
-----------------------------------------*/
:focus {
  outline: 2px solid #ADC5B2;
  outline-offset: 2px;
}
.cta-button:focus, .cookie-btn:focus, .mobile-menu-close:focus {
  outline: 3px solid #21503E;
  outline-offset: 2px;
}

/*----------------------------------------
  MISC
-----------------------------------------*/
body::-webkit-scrollbar {
  width: 10px;
  background: #FFF;
}
body::-webkit-scrollbar-thumb {
  background: #ADC5B2;
  border-radius: 8px;
}
@media (max-width: 398px) {
  .cookie-banner-text {
    font-size: 0.91rem;
  }
  .content-wrapper, .text-section, .feature-list {
    font-size: 0.97rem;
  }
}
