/* === CSS RESET & BASE STYLES === */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #26382E;
  background: #FAF9F6;
  line-height: 1.65;
  font-size: 1rem;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}
a {
  color: #357960;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #4F3059;
  outline-offset: 2px;
}
a:hover {
  color: #4F3059;
}
ul, ol {
  margin: 0 0 1em 1.6em;
  padding: 0;
}
ul li, ol li {
  margin-bottom: 8px;
}
section, main, article, aside {
  display: block;
}
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 16px 0;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }
p { margin: 0 0 16px 0; }
strong { font-weight: 700; }

/* === BRAND COLOR PALETTE === */
:root {
  --primary: #357960;
  --primary-light: #5ba083;
  --primary-dark: #245646;
  --secondary: #4F3059;
  --accent: #E7F5E6;
  --bg: #FAF9F6;
  --card-bg: #FFF;
  --shadow: 0 4px 24px 0 rgba(53, 121, 96, 0.07);
  --border-radius: 18px;
  --radius-sm: 10px;
  --text-dark: #26382E;
  --text-light: #fff;
  --error: #ba2f2f;
  --success: #3ca877;
}

/* === LAYOUT & CONTAINERS === */
.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 24px;
  flex: 1 1 290px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.15s;
}
.card:hover {
  box-shadow: 0 8px 36px 0 rgba(53,121,96,0.12);
  transform: translateY(-4px);
}

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

/* --- Feature Item --- */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--accent);
  border-radius: var(--border-radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

/* --- Hero Section --- */
.hero {
  padding: 52px 0 40px 0;
  background: linear-gradient(90deg, #E7F5E6 55%, #fff 100%);
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 20px;
}
.hero h1 {
  font-size: 2.6rem;
  color: var(--primary);
}
.hero p {
  font-size: 1.3rem;
  color: var(--secondary);
  margin-bottom: 16px;
}

/* === NAVIGATION === */
header {
  background: #fff;
  box-shadow: 0 2px 14px 0 rgba(79, 48, 89, 0.04);
  position: relative;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
}
.logo img {
  height: 44px;
  width: auto;
  transition: filter 0.15s;
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  color: var(--primary-dark);
  border-radius: var(--radius-sm);
  padding: 7px 14px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--accent);
  color: var(--secondary);
}
.cta-btn {
  background: var(--primary);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  padding: 12px 32px;
  font-size: 1.12rem;
  cursor: pointer;
  transition: background 0.18s, transform 0.13s, box-shadow 0.16s;
  box-shadow: 0 3px 11px 0 rgba(53,121,96,0.08);
  display: inline-block;
  margin-left: 12px;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--primary-dark);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 28px 0 rgba(53,121,96,0.14);
}

/* --- Hamburger Mobile Menu --- */
.mobile-menu-toggle {
  background: var(--primary);
  color: #fff;
  font-size: 2.1rem;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
  cursor: pointer;
  transition: background 0.16s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--secondary);
  color: #fff;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(115deg, #E7F5E6 70%, #fff 95%);
  z-index: 200;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(0.83,0.09,0.49,1.02);
  box-shadow: 0 2px 36px 0 rgba(53,121,96,0.08);
  padding: 35px 30px 20px 30px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--secondary);
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  cursor: pointer;
}
.mobile-nav {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
}
.mobile-nav a {
  font-size: 1.18rem;
  color: var(--primary-dark);
  padding: 12px 6px;
  border-radius: var(--radius-sm);
  width: 100%;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--primary);
  color: #fff;
}

/* === MAIN CONTENT: FEATURES, CARDS, GRIDS === */
.feature-grid, .category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 18px 0 0 0;
}
.feature-grid > div, .category-grid > div {
  background: var(--accent);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 24px;
  flex: 1 1 220px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.17s, transform 0.13s;
}
.feature-grid > div:hover, .category-grid > div:hover {
  box-shadow: 0 8px 36px 0 rgba(53,121,96,0.11);
  transform: translateY(-3px);
}
.feature-grid h3, .category-grid span {
  margin: 10px 0 8px 0;
  color: var(--primary-dark);
}
.category-grid img {
  width: 38px; height: 38px;
  margin-bottom: 8px;
}
.nutrition-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}
.nutrition-badges span {
  background: var(--primary);
  color: #fff;
  border-radius: 14px;
  padding: 7px 18px;
  font-size: 0.97rem;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 7px;
}

/* --- Text Sections and Lists --- */
.text-section {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 32px 24px;
  margin-bottom: 20px;
}
.text-section ul li,
.text-section ol li {
  padding-left: 4px;
}

/* --- FAQ --- */
.faq {
  margin-top: 20px;
  background: #FAF9F6;
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  box-shadow: 0 2px 8px 0 rgba(53,121,96,0.04);
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.faq h3 {
  color: var(--primary);
  font-size: 1.17rem;
  margin-bottom: 12px;
}
.faq div {
  color: #26382E;
  font-size: 1.03rem;
}

/* --- Pricing Table --- */
.pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 18px;
}
.pricing-table > div {
  background: var(--accent);
  border-radius: var(--radius-sm);
  padding: 16px 22px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--primary);
  box-shadow: var(--shadow);
  font-size: 1.07rem;
}

/* --- Testimonial Card --- */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin: 18px 0 20px 0;
  font-size: 1.1rem;
  color: #26382E;
  min-width: 0;
  transition: box-shadow 0.17s;
}
.testimonial-card p {
  color: #357960;
  margin: 0 0 2px 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}
.testimonial-card > div {
  color: var(--secondary);
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 500;
}
.testimonial-card:hover {
  box-shadow: 0 8px 40px 0 rgba(53,121,96,0.14);
}

.success-short {
  background: var(--accent);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  color: var(--primary-dark);
  margin: 10px 0 0 0;
  box-shadow: var(--shadow);
}

/* === CONTACT/INFO === */
.contact-details {
  font-size: 1.07rem;
  margin-bottom: 1em;
  color: var(--primary-dark);
}
.map-box {
  display: flex;
  align-items: center;
  margin-bottom: 1em;
}

/* === FOOTER === */
footer {
  background: #E7F5E6;
  border-top: 2px solid #35796022;
  margin-top: 60px;
  padding: 28px 0 12px 0;
  font-size: 0.98rem;
  color: var(--primary-dark);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 12px;
}
.footer-nav a {
  color: var(--secondary);
  font-family: 'Montserrat', sans-serif;
  padding: 7px 12px;
  border-radius: 8px;
  transition: background 0.12s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--primary);
  color: #fff;
}
.brand-info {
  display: flex;
  align-items: center;
  gap: 15px;
  opacity: 0.90;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.brand-info img {
  height: 32px; width: auto;
  margin-right: 6px;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1200px) {
  .container { max-width: 96vw; }
  .hero { padding-left: 8px; padding-right: 8px; }
}
@media (max-width: 950px) {
  .feature-grid > div, .category-grid > div { flex: 1 1 320px; }
  .pricing-table > div { flex: 1 1 220px; }
  .footer-nav { gap: 14px; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .container { padding: 0 7vw;}
  .hero h1 { font-size: 2.05rem; }
  .hero { padding: 30px 0 28px 0; }
  .feature-grid, .category-grid, .pricing-table, .card-container, .footer-nav {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 13px;
    font-size: 1rem;
  }
  .content-grid, .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .content-wrapper {
    gap: 13px;
  }
  .text-section {
    padding: 18px 8px;
  }
  footer {
    padding: 18px 0 8px 0;
  }
  .brand-info { font-size: 0.92rem; }
}
@media (max-width: 520px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.13rem; }
  .cta-btn {
    font-size: 0.99rem;
    padding: 9px 18px;
  }
  .logo img { height: 32px; }
  .mobile-menu {
    padding: 20px 8px 20px 8px;
  }
  .mobile-menu-close {
    top: 10px;
    right: 10px;
  }
}

/* === BUTTONS & INTERACTIONS === */
button {
  font-family: inherit;
  font-size: 1rem;
  border: none;
  outline: none;
  cursor: pointer;
  background: none;
  transition: background 0.18s, color 0.18s;
}
button:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fff;
  border-top: 3px solid var(--primary);
  box-shadow: 0 -3px 32px 0 rgba(53, 121, 96, 0.11);
  padding: 28px 24px 26px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 19px;
  z-index: 5000;
  animation: cookieBannerSlideIn 0.5s cubic-bezier(.7,.65,.36,1.45);
}
@keyframes cookieBannerSlideIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-message {
  font-size: 1.07rem;
  color: #26382E;
  margin-right: 16px;
}
.cookie-banner-buttons {
  display: flex;
  gap: 13px;
}
.cookie-accept, .cookie-reject, .cookie-settings {
  border-radius: 30px;
  padding: 7px 22px;
  font-family: 'Montserrat',sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.15s, color 0.15s, transform 0.13s;
}
.cookie-accept {
  background: var(--primary);
  color: #fff;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-1px) scale(1.01);
}
.cookie-reject {
  background: #eee;
  color: var(--primary);
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #ece0e6;
  color: var(--secondary);
  transform: translateY(-1px) scale(1.01);
}
.cookie-settings {
  background: var(--accent);
  color: var(--primary-dark);
}
.cookie-settings:hover, .cookie-settings:focus {
  background: var(--primary-light);
  color: #fff;
  transform: translateY(-1px) scale(1.01);
}

/* === COOKIE MODAL === */
.cookie-modal-backdrop {
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  background: rgba(53, 121, 96, 0.16);
  z-index: 5100;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal {
  background: #fff;
  border-radius: var(--border-radius);
  padding: 32px 26px 22px 26px;
  box-shadow: 0 8px 40px rgba(53,121,96,0.17);
  max-width: 410px;
  width: 98vw;
  z-index: 5200;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookieModalPop 0.33s cubic-bezier(.65,.2,.54,1.2);
}
@keyframes cookieModalPop {
  from { transform: scale(0.84); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal h3 {
  color: var(--primary-dark);
  font-size: 1.27rem;
  margin-bottom: 12px;
  margin-top: 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 10px;
}
.cookie-category label {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.04rem;
  color: var(--primary);
}
.cookie-toggle {
  position: relative;
  width: 42px;
  height: 24px;
  display: inline-block;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 24px;
  background: #eee;
  transition: background 0.18s;
}
.cookie-toggle input:checked + .slider {
  background: var(--primary);
}
.cookie-toggle .slider:before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px #3579601a;
  transition: transform 0.18s;
}
.cookie-toggle input:checked + .slider:before {
  transform: translateX(18px);
}
.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 10px;
}
.cookie-modal-actions button {
  min-width: 74px;
}

/* === ACCESSIBILITY === */
:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

/* === MISC === */
::-webkit-scrollbar {
  width: 10px;
  background: #E7F5E6;
}
::-webkit-scrollbar-thumb {
  background: #b5cdbc;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: #96b2a3;
}

/* === UTILITIES FOR WARM_FRIENDLY LOOK === */
.shadow-soft {
  box-shadow: 0 4px 24px 0 rgba(53,121,96,0.08) !important;
}
.bg-accent { background: var(--accent)!important; }
.rounded {
  border-radius: var(--border-radius)!important;
}
.text-center { text-align: center!important; }

/* === BREADCRUMBS === */
[aria-label="Breadcrumb"] {
  font-size: 0.98rem;
  color: #7D8E86;
  margin-bottom: 8px;
}

/* === PRINT OPTIMIZATION === */
@media print {
  header, nav, .main-nav, .cta-btn, .mobile-menu, .cookie-banner, .cookie-modal-backdrop, .footer-nav { display: none !important; }
  .container { padding: 0; }
}
