/* RESET & BASE TYPOGRAPHY */
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: #F8F6F2;
  color: #22321C;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
  border: none;
}
ul, ol {
  margin-left: 1.3em;
  margin-bottom: 1.25em;
}
li {
  margin-bottom: 0.5em;
}
a {
  color: #234E20;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #987fd4;
  outline: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Segoe UI', Helvetica, Arial, sans-serif;
  color: #234E20;
  font-weight: 700;
  line-height: 1.15;
}
h1 { font-size: 2.3rem; margin-bottom: 18px;}
h2 { font-size: 1.7rem; margin-bottom: 14px;}
h3 { font-size: 1.3rem; margin-bottom: 10px;}

/* CONTAINER SYSTEM */
.container {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* HEADER */
header {
  background: linear-gradient(90deg, #F5E6FF40 0%, #E3F9EC40 100%);
  box-shadow: 0 2px 12px 0 rgba(194,181,219,0.08);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  margin-bottom: 40px;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
  position: relative;
}
.site-logo img {
  height: 44px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  padding: 8px 10px;
  border-radius: 8px;
  color: #234E20;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #e0daf8;
  color: #7464be;
}
.button.primary {
  background: #234E20;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.06rem;
  padding: 12px 30px;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  outline: none;
  font-weight: 600;
  box-shadow: 0 2px 12px 0 #d5d6ff22;
  margin-left: 12px;
  transition: background 0.18s, box-shadow 0.22s, transform 0.16s;
  letter-spacing: 0.02em;
}
.button.primary:hover, .button.primary:focus {
  background: #38713b;
  box-shadow: 0 4px 18px 0 #a5aed766;
  transform: translateY(-2px) scale(1.016);
}
.button.secondary {
  background: #E5B646;
  color: #234E20;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  padding: 10px 24px;
  border-radius: 18px;
  border: none;
  font-weight: 600;
  margin-top: 8px;
  transition: background 0.18s, color 0.22s, box-shadow 0.18s;
  box-shadow: 0 1px 8px 0 #f6e6d022;
  cursor: pointer;
}
.button.secondary:hover, .button.secondary:focus {
  background: #f2db91;
  color: #22321C;
  box-shadow: 0 3px 14px 0 #fde2b477;
}

/* MOBILE HEADER */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: #234E20;
  cursor: pointer;
  padding: 6px 10px 6px 12px;
  border-radius: 12px;
  transition: background 0.13s;
  z-index: 1001;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #dde2fa;
}

/* MOBILE NAVIGATION OVERLAY */
.mobile-menu {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(245,235,247,0.98);
  z-index: 1040;
  box-shadow: 0 8px 24px 0 #c6afd088;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.84,.15,.11,1.09);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.2rem;
  background: none;
  border: none;
  color: #987fd4;
  align-self: flex-end;
  margin: 18px 24px 0 0;
  cursor: pointer;
  transition: color 0.14s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #234E20;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  margin-top: 28px;
  align-items: center;
}
.mobile-nav a {
  color: #234E20;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.27rem;
  font-weight: 600;
  padding: 14px 0;
  width: 100%;
  text-align: center;
  border-radius: 8px;
  background: transparent;
  transition: background 0.17s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #e0daf8;
  color: #5e71ca;
}

/* HERO SECTION */
.hero {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
  background: #F6F6FA;
}
.hero .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 24px;
}
.hero h1 {
  font-size: 2.35rem;
  color: #234E20;
  text-shadow: 0 2px 16px #eadaf722;
}
.hero p {
  color: #4b635c;
  font-size: 1.13rem;
  margin-bottom: 12px;
}

/* FEATURE SECTIONS */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 20px;
  background: #FFFFFFB5;
  box-shadow: 0 2px 14px 0 #e2deeb11;
}
.features, .product-highlights .feature-grid, .services, .benefits, .card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
}
.features .content-wrapper, .benefits .content-wrapper, .products-overview .content-wrapper, .services .content-wrapper {
  gap: 20px;
}
.features ul, .benefits ul, .product-highlights .feature-grid, .products-overview ul, .success-cases ul,
.services ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.features li, .benefits li, .product-highlights .feature-grid > div, .services li, .products-overview li, .success-cases li {
  background: #f1f6f7;
  border-radius: 16px;
  padding: 20px 22px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 2px 8px 0 #f4f1fc22;
  font-size: 1.03rem;
  color: #234E20;
  transition: box-shadow 0.18s, background 0.18s;
}
.features li img, .benefits li img, .services li img, .products-overview li img, .success-cases li img {
  width: 28px;
  height: 28px;
  margin-right: 8px;
}
.features li:hover, .benefits li:hover, .product-highlights .feature-grid > div:hover, .services li:hover {
  background: #E6F4F1;
  box-shadow: 0 4px 16px 0 #dbe9dedd;
}
.product-highlights .feature-grid {
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.product-highlights .feature-grid > div {
  flex: 1 1 270px;
  max-width: 350px;
  background: #fbf6ff;
  border-radius: 14px;
  box-shadow: 0 1px 6px 0 #e6e6e611;
  padding: 28px 24px 24px 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.product-highlights .feature-grid h3 {
  color: #59488c;
  font-size: 1.18rem;
}

/* CARDS & CARD CONTAINER */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #f8f6f2;
  box-shadow: 0 2px 14px 0 #f4ecff12;
  border-radius: 16px;
  margin-bottom: 20px;
  position: relative;
  padding: 28px 22px;
  min-width: 220px;
  transition: box-shadow 0.15s, background 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 4px 22px 0 #d6cff433;
  background: #edeaff;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

/* CTA SECTION */
.cta, .call-to-action, .newsletter-cta {
  background: #e1f3ef;
  border-radius: 20px;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 2px 18px 0 #bde3d111;
}
.cta .content-wrapper, .call-to-action .content-wrapper, .newsletter-cta .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 22px;
}

/* TESTIMONIALS */
.testimonials, .references-testimonials {
  background: #f3edff;
  border-radius: 20px;
  padding: 40px 20px;
  margin-bottom: 60px;
  box-shadow: 0 2px 16px 0 #d8c6f011;
}
.testimonials .container, .references-testimonials .container {
  width: 100%;
}
.testimonials h2, .references-testimonials h2 {
  text-align: center;
  color: #584f66;
}
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 18px;
  justify-content: space-between;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 12px 0 #bba9ed13;
  padding: 20px 26px;
  flex: 1 1 280px;
  min-width: 230px;
  max-width: 380px;
  color: #24432f;
  font-size: 1.08rem;
  margin-bottom: 20px;
  transition: box-shadow 0.16s, background 0.15s;
}
.testimonial-card p {
  font-family: 'Roboto', sans-serif;
  color: #33353b;
  margin-bottom: 10px;
  font-size: 1.07rem;
}
.testimonial-card strong {
  color: #234E20;
  font-weight: 700;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  background: #F8F6F2;
  box-shadow: 0 4px 26px 0 #e6d7ff22;
}

/* SUCCESS CASES */
.success-cases ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.success-cases li {
  background: #f9f0ff;
  border-radius: 14px;
  margin-bottom: 20px;
  padding: 18px 22px;
  color: #234E20;
  font-size: 1.05rem;
  box-shadow: 0 1px 8px 0 #eee8fa19;
  display: flex;
  gap: 14px;
  align-items: center;
}

/* SHARED FLEX UTILITY CLASSES */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* FOOTER */
footer {
  background: #ede6fd;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  margin-top: 70px;
  padding: 30px 0 16px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-start;
}
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 200px;
}
.footer-info img {
  height: 38px;
  margin-bottom: 12px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 180px;
}
.footer-nav a {
  color: #234E20;
  font-family: 'Montserrat', sans-serif;
  padding: 3px 0;
  border-radius: 6px;
  font-size: 1.01rem;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #edeaff;
  color: #7f75be;
}
.footer-copy {
  display: block;
  width: 100%;
  margin-top: 20px;
  text-align: center;
  color: #877e9c;
  font-size: 0.97rem;
}

/* TEXT BLOCKS */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.text-section ul, .text-section li {
  list-style-type: disc;
  background: none;
  box-shadow: none;
  padding: 0 0 0 0;
  margin-bottom: 8px;
  color: #234E20;
  font-size: 1rem;
}
.text-section a {
  color: #59488c;
}
.text-section a:hover {
  text-decoration: underline;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  border-top: 3px solid #e5b646;
  box-shadow: 0 -2px 24px 0 #d5cef177;
  z-index: 2022;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 18px 24px 18px;
  gap: 28px;
  transition: transform 0.27s cubic-bezier(.84,.15,.11,1.09), opacity 0.2s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner-text {
  max-width: 550px;
  color: #234E20;
  font-size: 1.06rem;
  margin-right: 12px;
}
.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.cookie-banner .button, .cookie-banner button {
  padding: 10px 28px;
  border-radius: 20px;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  margin-right: 8px;
  transition: background 0.17s, color 0.13s, box-shadow 0.18s;
}
.cookie-banner .accept {
  background: #234E20;
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus { background: #337a41; }
.cookie-banner .reject {
  background: #edeaff;
  color: #234E20;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus { background: #e5b646; color: #234E20; }
.cookie-banner .settings {
  background: #e5b646;
  color: #234E20;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #f2db91;
  color: #234E20;
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 130%);
  width: 95vw;
  max-width: 440px;
  background: #fff;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 4px 44px 0 #c6afd055;
  z-index: 2024;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(.84,.15,.11,1.09), opacity 0.25s;
  padding: 34px 28px 28px 28px;
  color: #234E20;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, 0);
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 22px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #b8a8d4;
  cursor: pointer;
  transition: color 0.13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #234E20;
}
.cookie-modal .modal-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: #234E20;
  letter-spacing: 0.01em;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  font-family: 'Roboto', sans-serif;
}
.cookie-modal .cookie-category label {
  font-size: 1rem;
  font-weight: 500;
}
.cookie-modal .cookie-category input[type="checkbox"] {
  accent-color: #987fd4;
  width: 20px;
  height: 20px;
}
.cookie-modal .essential {
  opacity: 0.7;
  font-style: italic;
}
.cookie-modal-action-bar {
  margin-top: 24px;
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-modal .button {
  padding: 10px 24px;
  border-radius: 18px;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
}

/* RESPONSIVE STYLES */
@media (max-width: 1140px) {
  .container { max-width: 98vw; }
}
@media (max-width: 950px) {
  footer .container, header .container {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .footer-info,
  .footer-nav { align-items: center; }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 768px) {
  body, html { font-size: 15px; }
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .content-wrapper,
  .hero .container,
  .product-highlights .feature-grid,
  .features,
  .testimonials .content-wrapper,
  .success-cases .content-wrapper {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .card-container, .feature-grid, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .testimonials .content-wrapper {
    gap: 16px;
  }
  .cta,
  .call-to-action, .newsletter-cta,
  .testimonials,
  .references-testimonials,
  .section, section {
    padding: 34px 5px;
    border-radius: 0;
  }
  .footer-info, .footer-nav {
    align-items: center;
    margin-bottom: 14px;
  }
  .footer-copy {
    margin-top: 16px;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 18px;
  }
}
@media (max-width: 580px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.17rem; }
  .button.primary, .button.secondary {
    padding-left: 14px;
    padding-right: 14px;
    font-size: 0.97rem;
  }
  header .container, footer .container {
    padding-left: 7px;
    padding-right: 7px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 6px 18px 8px;
  }
  .cookie-banner-text { margin: 0 0 8px 0; }
}

/* SCROLL & SELECTION COLOR */
::selection {
  background: #b7e9d0;
  color: #234E20;
}
::-webkit-scrollbar {
  width: 10px;
  background: #e7f2e8;
}
::-webkit-scrollbar-thumb {
  background: #e5b64670;
  border-radius: 6px;
}

/* MICRO-INTERACTIONS */
.button:active, .cookie-banner .button:active {
  transform: scale(0.97);
}
.testimonial-card:active {
  transform: scale(0.98);
}

/* UTILITIES */
.mt-24 { margin-top: 24px !important; }
.mt-16 { margin-top: 16px !important; }
.mb-12 { margin-bottom: 12px !important; }
.mb-18 { margin-bottom: 18px !important; }
.text-center { text-align: center !important; }

/* MODAL BACKDROP */
.cookie-modal-backdrop {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(190,158,247,0.13);
  z-index: 2023;
  opacity: 0;
  transition: opacity 0.18s;
}
.cookie-modal-backdrop.open {
  display: block;
  opacity: 1;
}

/* SOFT-PASTEL COLORS UTILITIES */
.bg-soft-lilac { background: #f3edff !important; }
.bg-soft-green { background: #e1f3ef !important; }
.bg-soft-blush { background: #fff8ea !important; }
.bg-brand-primary { background: #234E20 !important; color: #fff !important; }
.bg-brand-secondary { background: #e5b646 !important; color: #234E20 !important; }

/* FOCUS STATES */
a:focus, .button:focus, .main-nav a:focus, .footer-nav a:focus, .mobile-nav a:focus {
  outline: 2px solid #bfa8ea;
  outline-offset: 2px;
  background: #e0daf8 !important;
}

/* END CSS */