/* ===============================
   Luminous Movement 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, main, 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;
  font-size: 16px;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #F8F7F2;
  color: #355C47;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
  min-width: 0;
  transition: background 0.25s, color 0.25s;
}
img, svg {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
a {
  color: #45775C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFC857;
  outline: none;
}
ul, ol {
  list-style: none;
}
button {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
}
:focus {
  outline: 2px solid #FFC857;
  outline-offset: 2px;
}
/* ===============================
   Typography & Scale (Geometric)
=============================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #355C47;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 32px;
}
h2 {
  font-size: 2rem;
  line-height: 1.15;
  margin-bottom: 24px;
  margin-top: 16px;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 18px;
}
h4 {
  font-size: 1.15rem;
}
p, ul, ol, li, blockquote {
  font-size: 1rem;
  color: #355C47;
  letter-spacing: 0.01em;
}
p {
  margin-bottom: 16px;
}
strong {
  font-weight: 700;
  letter-spacing: 0.02em;
}
blockquote {
  border-left: 4px solid #FFC857;
  padding-left: 20px;
  background: #fffbe9;
  color: #355C47;
  font-style: italic;
}
/* ===============================
   Layout Containers (Flexbox Only)
=============================== */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(69,119,92,0.10), 0 1.5px 8px rgba(53,92,71,0.12);
  position: relative;
  padding: 28px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  flex: 1 1 300px;
}
.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;
  border-radius: 20px;
  background: #fffbe9;
  box-shadow: 0 2px 12px rgba(53,92,71,0.06);
  margin-bottom: 20px;
  min-width: 0;
  flex: 1 1 320px;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card blockquote {
  border: none;
  background: none;
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #355C47;
}
.testimonial-card:hover {
  box-shadow: 0 4px 24px #FFC85742, 0 8px 16px rgba(69,119,92,0.08);
  transform: translateY(-3px) scale(1.018);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
/* ===============================
   Header, Navigation & Branding
=============================== */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 1px 12px 0 rgba(53,92,71,.10);
  z-index: 40;
}
header .container {
  padding-top: 18px;
  padding-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #355C47;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 8px 6px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
header nav a:hover,
header nav a:active {
  background: #FFC85722;
  color: #45775C;
}
header a.button-primary {
  margin-left: 24px;
}
header img[alt="Luminous Movement"] {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  margin-right: 16px;
}
/* ===============================
   Buttons - Primary/Secondary/CTA
=============================== */
.button-primary, .button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 32px;
  border-radius: 100px;
  border: none;
  background: #45775C;
  color: #FFFFFF;
  letter-spacing: 0.06em;
  box-shadow: 0 2px 12px 0 rgba(69,119,92,0.13);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.13s;
  margin-top: 12px;
  margin-bottom: 12px;
  cursor: pointer;
}
.button-primary:hover, .button-primary:focus {
  background: #355C47;
  color: #FFC857;
  box-shadow: 0 6px 32px 0 #45775C33;
  transform: translateY(-2px) scale(1.01);
}
.button-secondary {
  background: #FFC857;
  color: #355C47;
}
.button-secondary:hover, .button-secondary:focus {
  background: #FFFFFF;
  color: #45775C;
  border: 2px solid #FFC857;
}
.button-tertiary {
  background: transparent;
  color: #45775C;
  border: 2px solid #45775C;
  padding: 12px 32px;
  border-radius: 90px;
  transition: background 0.2s, color 0.2s;
}
.button-tertiary:hover, .button-tertiary:focus {
  background: #FFC857;
  color: #355C47;
}
/* ===============================
   Cards & Icon List (Geometric)
=============================== */
ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 32px;
}
ul li {
  background: #FFF;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(53,92,71,0.08);
  padding: 20px 20px 16px 20px;
  margin-bottom: 20px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 240px;
  font-size: 1rem;
  position: relative;
  transition: box-shadow 0.2s, transform 0.19s;
}
ul li img {
  margin-bottom: 10px;
  width: 38px;
  height: 38px;
}
ul li strong {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  margin-bottom: 6px;
  display: inline-block;
  color: #45775C;
}
ul li:hover {
  box-shadow: 0 4px 24px #FFC85733, 0 1.5px 8px #355c4722;
  transform: translateY(-2px) scale(1.015);
}
.price {
  font-size: 1.04rem;
  color: #FFC857;
  margin-top: 8px;
  margin-bottom: 6px;
  display: block;
}
/* ===============================
   Footer
=============================== */
footer {
  background: #45775C;
  color: #FFFFFF;
  padding-top: 36px;
  padding-bottom: 36px;
}
footer .container {
  max-width: 1240px;
  margin: 0 auto;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
  justify-content: space-between;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
footer nav a {
  color: #FFC857;
  font-size: 1rem;
  letter-spacing: 0.04em;
  font-family: 'Montserrat', Arial, sans-serif;
  text-transform: uppercase;
  transition: color 0.15s;
}
footer nav a:hover, footer nav a:focus {
  color: #FFFFFF;
  text-decoration: underline;
}
footer .tagline {
  font-size: 1.05rem;
  color: #FFC857;
  margin-top: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
}
footer .social-links {
  display: flex;
  gap: 16px;
  align-items: center;
}
footer .social-links img {
  width: 34px;
  height: 34px;
  background: #fff;
  border-radius: 50%;
  padding: 5px;
  box-shadow: 0 2px 10px #FFC85722;
  transition: box-shadow 0.2s, transform 0.2s;
}
footer .social-links a:hover img {
  box-shadow: 0 6px 16px #FFC85742;
  transform: scale(1.11);
}
footer span, footer div {
  color: #FFFFFF;
}
/* ===============================
   Mobile Menu (Hamburger)
=============================== */
.mobile-menu-toggle {
  display: none;
  background: #FFC857;
  border-radius: 12px;
  font-size: 2.2rem;
  line-height: 1;
  padding: 4px 14px;
  color: #355C47;
  box-shadow: 0 1.5px 7px #355c4740;
  position: relative;
  z-index: 105;
  border: none;
  margin-left: 12px;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #FFDA8E;
  color: #45775C;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 8px 64px #355C4744;
  z-index: 2000;
  transform: translateX(110%);
  transition: transform 0.35s cubic-bezier(.66,.01,.29,1.07);
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow-y: auto;
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  color: #45775C;
  font-size: 2.2rem;
  padding: 6px 12px;
  position: absolute;
  top: 22px;
  right: 22px;
  background: #FFC857;
  border-radius: 12px;
  z-index: 2100;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #FFDA8E;
  color: #355C47;
}
.mobile-nav {
  margin-top: 90px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  justify-content: flex-start;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  color: #355C47;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 15px 36px;
  border-radius: 18px;
  margin: 3px 0;
  background: none;
  transition: color 0.17s, background 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFC85744;
  color: #45775C;
}
@media (max-width: 1024px) {
  header .container nav,
  header .container a.button-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}
/* ===============================
   Cookie Consent Banner & Modal
=============================== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 26px 14px 18px 20px;
  background: #FFFFFF;
  box-shadow: 0 -2.5px 18px 0 #45775c33, 0 1px 1px #FFC85722;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  z-index: 3000;
  gap: 22px;
  flex-wrap: wrap;
  transition: transform 0.22s;
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner .cookie-text {
  font-size: 1.04rem;
  color: #355C47;
  flex: 1 1 200px;
  line-height: 1.45;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
}
.cookie-banner .button-primary,
.cookie-banner .button-secondary {
  font-size: 1rem;
  padding: 10px 24px;
  margin: 0;
}
.cookie-banner .button-tertiary {
  font-size: 1rem;
  padding: 10px 24px;
  background: transparent;
  color: #45775C;
  border: 2px solid #FFC857;
  border-radius: 100px;
  transition: background 0.2s, color 0.2s;
}
.cookie-banner .button-tertiary:hover {
  background: #FFC85733;
  color: #355C47;
}
/* Cookie Preferences Modal */
.cookie-modal-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(53,92,71,0.22);
  z-index: 3500;
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal-bg.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 48px #45775c33;
  max-width: 410px;
  width: 100%;
  padding: 32px 30px 22px 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: cookieModalIn 0.3s cubic-bezier(0.66,0.01,0.29,1.07);
}
@keyframes cookieModalIn {
  0% { transform: scale(0.92); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.4rem;
  margin-bottom: 5px;
}
.cookie-option {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-toggle {
  width: 44px;
  height: 24px;
  background: #FFC85744;
  border-radius: 12px;
  position: relative;
  transition: background 0.22s;
  cursor: pointer;
}
.cookie-toggle.enabled {
  background: #FFC857;
}
.cookie-toggle-inner {
  display: block;
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0.5px 5px #355c4740;
  position: absolute;
  top: 1px;
  left: 1px;
  transition: left 0.20s;
}
.cookie-toggle.enabled .cookie-toggle-inner {
  left: 21px;
}
.cookie-modal .button-primary,
.cookie-modal .button-secondary {
  font-size: 1rem;
  padding: 10px 24px;
  margin: 0 6px 0 0;
}
.cookie-modal .button-tertiary {
  padding: 10px 24px;
  font-size: 1rem;
  border: 2px solid #45775C;
  color: #45775C;
  background: none;
}
.cookie-modal .button-tertiary:hover {
  background: #FFC85744;
}
.cookie-modal-close {
  position: absolute;
  right: 14px;
  top: 14px;
  background: #FFF;
  border: none;
  color: #45775C;
  font-size: 1.5rem;
  border-radius: 8px;
  padding: 3px 11px;
  cursor: pointer;
  transition: background 0.18s, color 0.14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #FFC85733;
  color: #355C47;
}
/* ===============================
   Media Queries: Responsive Design
=============================== */
@media (max-width: 900px) {
  .container {
    padding: 0 10px;
  }
  .content-wrapper,
  .section {
    padding: 24px 7px;
  }
  ul {
    gap: 20px 14px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.18rem; }
  header .container {
    flex-direction: row;
    gap: 9px;
    padding-top: 11px;
    padding-bottom: 11px;
  }
  .section {
    padding: 26px 8px;
    margin-bottom: 36px;
  }
  .content-wrapper,
  .card-container,
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  ul {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 19px;
  }
  .testimonial-card {
    align-items: flex-start;
    padding: 16px 8px;
    flex: 1 1 99%;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .container {
    padding-left: 2px;
    padding-right: 2px;
  }
  .section {
    padding: 13px 2px;
  }
}
/* ===============================
   MISC Geometric/Structured 
=============================== */
::-webkit-input-placeholder { color: #a0ad9b; }
::-moz-placeholder { color: #a0ad9b; }
:-ms-input-placeholder { color: #a0ad9b; }
::placeholder { color: #a0ad9b; }
hr {
  border: none;
  border-top: 2px solid #FFC857;
  margin: 32px 0 24px 0;
}
/* ===============================
   Custom Utility Classes
=============================== */
.mt-2 { margin-top: 16px !important; }
.mt-4 { margin-top: 32px !important; }
.pb-2 { padding-bottom: 16px !important; }
.pb-4 { padding-bottom: 32px !important; }
.hide { display: none !important; }
/* ===============================
   Geometric Decoratives
=============================== */
.card, ul li, .testimonial-card, .cookie-modal {
  border-top-left-radius: 26px 32px;
  border-bottom-right-radius: 30px 22px;
}

/* ===============================
   Print Styles
=============================== */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-bg { display: none !important; }
  .section { padding: 0; margin-bottom: 32px; }
}
