/* Cleara Amp Nature_Organic Style – Modern, organic, flexbox-based CSS for all pages */

/**************************************/
/* CSS RESET & BASE – Normalize & box sizing */
/**************************************/
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}
body {
  font-family: 'Lato', Arial, sans-serif;
  background: #f7f6f1;
  color: #233148;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #32643e;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #7EC386;
  outline-offset: 2px;
}
ul, ol {
  padding-left: 1.25em;
  margin-bottom: 1.5em;
}

/******************************/
/* NATURE-ORGANIC BRAND COLORS */
/******************************/
:root {
  --primary: #233148;
  --secondary: #F3F8FC;
  --accent: #F29C50;
  --nature-green: #3b7841;
  --earth-brown: #be8d61;
  --moss-green: #7EC386;
  --sand: #ede6dc;
  --off-white: #fcfbf7;
  --clay: #d2b48c;
  --dark-text: #233148;
  --light-text: #f7f6f1;
}

/******************************/
/* TYPOGRAPHY */
/******************************/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Lato:wght@400;700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.35rem; margin-bottom: 10px; }
h4 { font-size: 1.19rem; margin-bottom: 8px; }
p, ul li, ol li { font-size: 1rem; margin-bottom: 12px; }
p:last-child, li:last-child { margin-bottom: 0; }

/******************************/
/* LAYOUT CONTAINERS */
/******************************/
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--off-white);
  border-radius: 32px;
  box-shadow: 0 4px 20px 0 rgba(35,49,72,0.06);
  /* Organic shape effect */
  position: relative;
  z-index: 1;
}

main > section:not(.hero):not(.legal):not(.confirmation) {
  margin-bottom: 60px;
}

/******************************/
/* ORGANIC SHAPE DECORATIONS  */
/******************************/
.section::before, .card::before, .testimonial-card::before {
  content: '';
  display: block;
  position: absolute;
  z-index: 0;
  border-radius: 40% 60% 60% 40%/60% 60% 40% 40%;
  opacity: 0.08;
  background: var(--nature-green);
}
.section::before {
  width: 190px; height: 110px;
  right: -40px; top: -32px;
}
.card::before {
  width: 90px; height: 90px;
  left: -28px; bottom: -20px;
}
.testimonial-card::before {
  width: 30px; height: 30px;
  right: -15px; top: -15px;
}

/*************************/
/* FLEX CONTAINERS – spacing & gap */
/*************************/
.card-container,
.card-grid,
.content-grid,
.team-list,
.feature-grid,
.icon-grid,
.service-list,
.tips-list,
.faq-accordion,
.exercise-list,
.featured-projects,
.features > ul,
.values > ul,
.contact-info,
.footer-brand,
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card-container { gap: 24px; }
.card { margin-bottom: 20px; position: relative; background: var(--sand); border-radius: 20px; box-shadow: 0 1px 6px 0 rgba(90,110,95,0.07); }
.content-grid { gap: 20px; justify-content: space-between; }
.text-image-section { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  background: var(--sand);
  border-radius: 24px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 4px 16px 0 rgba(50,100,62,0.05);
  z-index: 1;
}
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/******************************/
/* HERO SECTION  */
/******************************/
.hero {
  background: linear-gradient(112deg, var(--off-white) 88%, var(--moss-green) 100%);
  padding: 46px 0 36px 0;
  margin-bottom: 42px;
  border-radius: 0 0 32px 32px;
}
.hero h1, .hero h2, .hero p {
  color: var(--primary);
}
.hero .cta {
  margin-top: 18px;
}

/******************************/
/* NAVIGATION STYLES */
/******************************/
header {
  width: 100%;
  background: var(--secondary);
  border-bottom: 3px solid var(--moss-green);
  box-shadow: 0 2px 12px 0 rgba(35, 49, 72, 0.03);
  z-index: 1000;
  position: sticky;
  top: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 32px;
}
.logo img { height: 44px; }
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: var(--primary);
  padding: 8px 12px;
  border-radius: 18px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--moss-green);
  color: var(--light-text);
}
.cta.primary {
  background: var(--nature-green);
  color: var(--light-text);
  border: none;
  border-radius: 18px;
  padding: 10px 28px;
  font-size: 1.13rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  box-shadow: 0 1px 7px 0 rgba(90,110,95,0.11);
  transition: background 0.2s, transform 0.12s;
  cursor: pointer;
  margin-left: 12px;
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-2px) scale(1.01);
}
.cta.secondary {
  background: var(--accent);
  color: #fff;
  border-radius: 18px;
  padding: 10px 28px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  box-shadow: 0 1px 7px 0 rgba(90,110,95,0.11);
  transition: background 0.2s, transform 0.12s;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--nature-green);
  color: var(--light-text);
  transform: translateY(-2px) scale(1.01);
}
.cta.tertiary {
  background: none;
  color: var(--nature-green);
  border: 2px solid var(--nature-green);
  border-radius: 18px;
  padding: 10px 24px;
  font-size: 1rem;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: background 0.2s, color 0.2s, border 0.2s, transform 0.12s;
}
.cta.tertiary:hover, .cta.tertiary:focus {
  background: var(--moss-green);
  color: var(--light-text);
  border: 2px solid var(--moss-green);
  transform: translateY(-1px) scale(1.005);
}

/******************************/
/* MOBILE MENU */
/******************************/
.mobile-menu-toggle {
  display: none;
  background: var(--moss-green);
  border: none;
  color: var(--light-text);
  font-size: 2rem;
  border-radius: 10px;
  width: 48px; height: 48px;
  align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.18s;
  margin-left: 12px;
  z-index: 1201;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--accent);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(247, 246, 241, 0.95);
  transform: translateX(-105%);
  transition: transform 0.4s cubic-bezier(0.75,0,0.25,1);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  padding: 30px 0 0 0;
  box-shadow: 0 8px 40px 0 rgba(35,49,72,0.18);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--nature-green);
  font-size: 2rem;
  position: absolute;
  right: 28px; top: 18px;
  padding: 8px;
  cursor: pointer;
  z-index: 1;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin: 60px 0 0 28px;
}
.mobile-nav a {
  font-size: 1.25rem;
  color: var(--primary);
  padding: 10px 0 10px 6px;
  border-radius: 10px;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--moss-green);
  color: var(--light-text);
}

@media (max-width: 1024px) {
  .main-nav { display: none; }
  .cta.primary { display: none; }
  .mobile-menu-toggle { display: flex; }
}
@media (min-width: 1025px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/******************************/
/* FLEXIBLE GRIDS & CARDS */
/******************************/
.feature-grid, .icon-grid, .service-list, .team-list {
  flex-wrap: wrap;
  gap: 24px;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0 0 8px 0;
}
.feature-grid li,
.icon-grid > div,
.service-list > li,
.team-list > li {
  background: var(--sand);
  border-radius: 22px;
  padding: 22px 20px 14px 20px;
  box-shadow: 0 1px 7px 0 rgba(90,110,95,0.11);
  flex: 1 1 260px;
  min-width: 230px;
  max-width: 325px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  position: relative;
}
.feature-grid img, .icon-grid img, .service-list img {
  max-width: 42px;
  margin-bottom: 9px;
}

/******************************/
/* GENERAL CARDS */
/******************************/
.card {
  background: var(--sand);
  border-radius: 20px;
  box-shadow: 0 2px 12px 0 rgba(165,142,117,0.08);
  padding: 24px;
  position: relative;
}

/******************************/
/* TESTIMONIALS */
/******************************/
.testimonials {
  background: var(--off-white);
  border-radius: 32px;
  box-shadow: 0 4px 20px 0 rgba(35,49,72,0.04);
}
.testimonial-carousel {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.testimonial-card {
  background: var(--sand);
  color: var(--primary);
  border-radius: 24px;
  min-width: 250px;
  max-width: 410px;
  flex: 1 1 250px;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px 0 rgba(50,100,62,0.06);
  z-index: 1;
  font-size: 1.05rem;
}
.testimonial-card p {
  color: var(--primary);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 10px;
}
.testimonial-name {
  color: var(--nature-green);
  font-weight: 600;
  font-size: 1.06rem;
  letter-spacing: 0.01em;
  align-self: flex-end;
}

/********************************/
/* FORMS & FAQ, ACCORDION */
/********************************/
.faq-accordion {
  flex-direction: column;
  gap: 20px !important;
}
.faq-item {
  background: var(--off-white);
  padding: 22px 18px;
  border-radius: 15px;
  box-shadow: 0 2px 8px 0 rgba(85,97,62,0.07);
  transition: box-shadow 0.2s;
  cursor: pointer;
}
.faq-item:hover, .faq-item:focus-within {
  box-shadow: 0 3px 16px 0 rgba(50,100,62,0.15);
}
.faq-item h3 {
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--nature-green);
  margin-bottom: 7px;
}
.faq-item p { color: var(--dark-text); margin-bottom: 4px; }

/*********************************/
/* PRICES TABLE, TABLE STYLE */
/*********************************/
.prices-table {
  overflow-x: auto;
  margin: 18px 0 0 0;
  background: var(--off-white);
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(100,95,85,0.07);
  padding: 10px;
}
.prices-table table {
  border-collapse: collapse;
  min-width: 520px;
  width: 100%;
}
.prices-table th, .prices-table td {
  padding: 13px 12px;
  text-align: left;
  border-bottom: 1px solid var(--sand);
  font-size: 0.97rem;
}
.prices-table th {
  background: var(--nature-green);
  color: var(--light-text);
  border-radius: 6px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.prices-table tr:last-child td {
  border-bottom: none;
}

/*********************************/
/* ABOUT, TEAM, VALUES */
/*********************************/
.text-section {
  margin-bottom: 12px;
  font-size: 1.06rem;
}
.team-list {
  gap: 24px;
}
.team-list li {
  background: var(--off-white);
  border-radius: 22px;
  padding: 19px 20px 18px 18px;
  min-width: 210px;
  flex: 1 1 200px;
  box-shadow: 0 1px 7px 0 rgba(90,110,95,0.08);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  position: relative;
}
.team-list h3 {
  margin-bottom: 5px;
  color: var(--nature-green);
}
.team-list span {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 600;
}

/*********************************/
/* NEWSLETTER SIGNUP & FOOTER */
/*********************************/
.newsletter-signup {
  max-width: 380px;
  background: var(--off-white);
  padding: 22px 14px 12px 15px;
  border-radius: 19px;
  box-shadow: 0 2px 9px 0 rgba(60,57,48,0.06);
  font-size: 1rem;
}
footer {
  background: var(--primary);
  color: var(--light-text);
  border-radius: 30px 30px 0 0;
  padding: 44px 0 22px 0;
  margin-top: 60px;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  min-width: 180px;
}
.footer-brand img { width: 44px; }
.footer-brand span { color: var(--light-text); font-weight: 500; font-size: 1rem; }
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 180px;
}
.footer-menu a {
  color: var(--moss-green);
  font-weight: 500;
  font-size: 1rem;
  padding: 5px 2px;
  border-radius: 7px;
  transition: color 0.16s, background 0.14s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: var(--accent);
  background: var(--nature-green);
  outline: none;
}
.contact-info {
  color: var(--light-text);
  font-size: 1rem;
  margin-bottom: 0; /* always 0, as footer .container provides gap */
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 220px;
}
.contact-info img { width: 18px; display: inline; vertical-align: middle; margin-right: 5px; }
.contact-info a { color: var(--moss-green); word-break: break-all; }

/********************************/
/* COOKIE CONSENT BANNER & MODAL */
/********************************/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--sand);
  color: var(--primary);
  border-top: 2px solid var(--nature-green);
  padding: 24px 20px 21px 26px;
  box-shadow: 0 -4px 30px 0 rgba(35,49,72,0.09);
  z-index: 1050;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  animation: banner-slide-up 0.45s cubic-bezier(0.78,0.01,0.3,1);
}
@keyframes banner-slide-up {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner button {
  border-radius: 17px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 9px 22px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.14s, color 0.14s, border 0.13s;
  background: var(--nature-green);
  color: var(--light-text);
}
.cookie-banner button.reject {
  background: var(--accent);
  color: var(--light-text);
}
.cookie-banner button.settings {
  background: none;
  color: var(--nature-green);
  border: 2px solid var(--nature-green);
}
.cookie-banner button.settings:hover,
.cookie-banner button.settings:focus {
  background: var(--nature-green);
  color: var(--light-text);
}
.cookie-banner a {
  color: var(--moss-green);
  text-decoration: underline;
  font-size: 1rem;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1501;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(35,49,72,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modal-fadein 0.20s;
}
@keyframes modal-fadein {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: var(--off-white);
  border-radius: 24px;
  box-shadow: 0 4px 28px 0 rgba(35,49,72,0.15);
  padding: 34px 28px 30px 28px;
  max-width: 430px;
  min-width: 296px;
  width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.35rem;
  color: var(--nature-green);
}
.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.cookie-category label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: var(--primary);
  font-size: 1rem;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--nature-green);
  width: 20px;
  height: 20px;
}
.cookie-modal .modal-btns {
  display: flex;
  gap: 14px;
  margin-top: 6px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 12px; right: 10px;
  background: none;
  border: none;
  color: var(--accent);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 8px;
  border-radius: 9px;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: var(--sand);
  outline: none;
}

/********************************/
/* CTABANNER & SPECIAL SECTIONS */
/********************************/
.cta-banner {
  background: var(--nature-green);
  color: var(--off-white);
  border-radius: 26px;
  margin-bottom: 60px;
  box-shadow: 0 2px 14px 0 rgba(34,49,72,0.04);
  padding: 32px 0;
}
.cta-banner .content-wrapper {
  gap: 12px;
}
.cta-banner h3 {
  color: var(--light-text);
  font-size: 1.5rem;
  margin-bottom: 9px;
}
.cta-banner .cta.primary {
  background: var(--accent);
  color: var(--light-text);
}
.cta-banner .cta.primary:hover {
  background: var(--off-white);
  color: var(--nature-green);
}

/**************************************/
/* RESPONSIVE DESIGN (MOBILE FIRST)   */
/**************************************/
@media (max-width: 768px) {
  html { font-size: 15px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  .container {
    padding: 0 7px;
    max-width: 98vw;
  }
  header .container, footer .container {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .main-nav { display: none !important; }
  .cta.primary { display: none !important; }
  .section, .hero {
    padding: 26px 5px 27px 8px;
    margin-bottom: 32px;
    border-radius: 20px;
  }
  .content-wrapper { gap: 18px; }
  .feature-grid, .icon-grid, .service-list, .team-list, .testimonial-carousel {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid li,
  .icon-grid > div,
  .service-list > li,
  .team-list > li,
  .testimonial-card {
    min-width: 94vw;
    max-width: 98vw;
    margin-left: 0;
    margin-right: 0;
    border-radius: 16px;
    padding: 14px 12px 12px 14px;
  }
  .content-grid, .text-image-section, .contact-info, footer .container {
    flex-direction: column;
    gap: 16px;
  }
  .newsletter-signup {
    max-width: 99vw;
    border-radius: 13px;
    padding: 16px 7px 12px 10px;
  }
  .cta-banner {
    padding: 18px 0;
    border-radius: 14px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    font-size: 0.98em;
    padding: 17px 8px 13px 14px;
  }
}
@media (max-width: 480px) {
  html { font-size: 14px; }
  .footer-menu, .contact-info, .newsletter-signup { min-width: 160px; }
}

/*********************************/
/* ANIMATIONS & HOVER EFFECTS    */
/*********************************/
.card, .testimonial-card, .feature-grid li, .icon-grid > div, .service-list > li, .team-list > li {
  transition: box-shadow 0.16s, transform 0.11s;
}
.card:hover, .testimonial-card:hover, .feature-grid li:hover, .icon-grid > div:hover, .service-list > li:hover, .team-list > li:hover {
  box-shadow: 0 7px 32px 0 rgba(110,168,128,0.13);
  transform: translateY(-2.5px) scale(1.017);
  z-index: 2;
}
footer, .cta-banner, .hero, .section {
  transition: box-shadow 0.17s, background 0.16s;
}

/*********************************/
/* UTILITY/MISC */
/*********************************/
.price {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--accent);
  font-size: 1.12rem;
  font-weight: bold;
  margin-top: 10px;
}
strong { color: var(--nature-green); }
::-webkit-scrollbar {
  width: 7px; background: #eae7e2;
}
::-webkit-scrollbar-thumb {
  background: var(--moss-green);
  border-radius: 10px;
}

/*********************************/
/* CONFIRMATION PAGE             */
/*********************************/
.confirmation {
  background: var(--sand);
  border-radius: 30px;
  box-shadow: 0 3px 23px 0 rgba(46,70,50,0.09);
  color: var(--primary);
}
.confirmation-message {
  color: var(--nature-green);
  font-weight: 500;
  font-size: 1.14rem;
  margin: 8px 0 16px 0;
}
.next-steps {
  background: var(--off-white);
  border-radius: 14px;
  padding: 14px 10px 8px 14px;
  font-size: 0.97rem;
}

/*********************************/
/* LEGAL POLICY SECTION          */
/*********************************/
.legal, .legal-text {
  background: var(--off-white);
  border-radius: 24px;
  box-shadow: 0 2px 12px 0 rgba(97,118,105,0.06);
  padding: 28px 12px 24px 20px;
  font-size: 1.07rem;
  margin-bottom: 62px;
}
.legal h2, .legal h3 { color: var(--nature-green); }
.legal-text ul, .values ul {
  list-style: disc inside;
  margin-bottom: 20px;
}
.legal-text a {
  color: var(--accent); text-decoration: underline;
}
/*********************************/
/* HIDE/SHOW JS CLASSES         */
/*********************************/
.is-hidden {
  display: none !important;
}

/*********************************/
/* END                          */
/*********************************/
