/* ===========================================================
   Luminex Grünpflege – Vibrant Energetic CSS
   Brand Colors: #21632D (primary), #7BB661 (secondary), #E5F5EC (accent)
   Display Font: Montserrat, Body Font: Open Sans
   No CSS Grid/Columns. Flexbox Only.
   =========================================================== */
/* ==== 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;
  box-sizing: border-box;
  font: inherit;
  vertical-align: baseline;
}
html { scroll-behavior: smooth; }
body { background: #fff; }
img { display: block; max-width: 100%; height: auto; border: none; }
input, button, textarea, select { font: inherit; }
a { text-decoration: none; color: inherit; transition: color 0.23s; }
:focus { outline: 2px solid #21632D; outline-offset: 2px; }

/* ==== BRAND FONTS ==== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;700&display=swap');
:root {
  --primary: #21632D;
  --secondary: #7BB661;
  --accent: #E5F5EC;
  --electric-green: #39E67A;
  --electric-yellow: #FFD600;
  --electric-orange: #FF7A39;
  --electric-blue: #18A4FC;
  --bg-light: #F9FFF6;
  --heading-font: 'Montserrat', Arial, Helvetica, sans-serif;
  --body-font: 'Open Sans', Arial, Helvetica, sans-serif;
  --text-dark: #1A3520;
  --text-light: #fff;
  --border-radius: 18px;
  --transition: 0.22s cubic-bezier(.77,.13,.35,1.01);
  --shadow: 0 8px 24px rgba(40,160,90,0.08), 0 1.5px 8px rgba(33,99,45,0.08);
}

body {
  font-family: var(--body-font);
  font-size: 16px;
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.65;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ==================================================================================
   HEADER & NAVIGATION
================================================================================== */
header {
  background: var(--text-light);
  box-shadow: 0 8px 24px rgba(33,99,45,0.07);
  position: relative;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0 14px 0;
}
header img[alt="Luminex Grünpflege"] {
  height: 48px;
  width: auto;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-left: 32px;
}
.main-nav a {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 16px;
  padding: 6px 8px;
  border-radius: 8px;
  color: var(--primary);
  transition: background var(--transition), color var(--transition);
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--electric-blue);
  color: var(--text-light);
}

.cta-button {
  font-family: var(--heading-font);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.01em;
  padding: 12px 28px;
  background: linear-gradient(92deg, var(--electric-yellow) 0%, var(--electric-green) 100%);
  border: none;
  border-radius: var(--border-radius);
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(255,214,0,0.18);
  margin-left: 24px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-shadow: 0 2px 8px rgba(255,255,255,0.07);
  display: inline-block;
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(96deg, var(--electric-blue) 0%, var(--electric-green) 100%);
  color: var(--text-light);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 24px rgba(24,164,252,0.12);
}

/* Burger Menu Button */
.mobile-menu-toggle {
  display: none;
  background: var(--electric-blue);
  color: var(--text-light);
  font-size: 30px;
  border: none;
  border-radius: 8px;
  padding: 9px 18px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  margin-left: 22px;
  z-index: 81;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--electric-orange);
  transform: scale(1.09);
}

/* MOBILE NAV STYLES */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: var(--accent);
  box-shadow: 0 12px 36px 0 rgba(33,99,45,0.14);
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-105vw);
  transition: transform 0.34s cubic-bezier(.55,1.65,.17,.91);
  gap: 0;
  padding: 0;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  color: var(--primary);
  font-size: 34px;
  border: none;
  padding: 22px 22px 10px 22px;
  cursor: pointer;
  align-self: flex-end;
  transition: color var(--transition), transform var(--transition);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--electric-orange);
  transform: scale(1.1);
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 0 32px 12px 32px;
}
.mobile-nav a {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 21px;
  line-height: 1.35;
  color: var(--primary);
  padding: 13px 0;
  border-bottom: 1px solid #B1DEA7;
  width: 100%;
  transition: color var(--transition), background var(--transition);
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--electric-yellow);
  color: var(--text-dark);
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ==================================================================================
   HERO SECTION
================================================================================== */
.hero {
  background: linear-gradient(91deg, var(--electric-yellow) 12%, var(--electric-green) 100%);
  min-height: 300px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  padding: 50px 0 40px 0;
  box-shadow: 0 8px 32px rgba(33,99,45,0.09);
  position: relative;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  max-width: 640px;
}
.hero h1 {
  font-family: var(--heading-font);
  font-weight: 900;
  font-size: 48px;
  color: var(--primary);
  margin-bottom: 0px;
  letter-spacing: 0.6px;
  text-shadow: 0 2px 12px #F9FFF6;
}
.hero .subheadline {
  font-family: var(--body-font);
  font-weight: 400;
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 6px;
  margin-top: -8px;
}
.hero .cta-button {
  margin-top: 8px;
}

/* ==================================================================================
   UNIVERSAL FLEX CONTENT CONTAINERS
================================================================================== */
.section, section:not(.hero) {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  position: relative;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--bg-light);
  box-shadow: var(--shadow);
  border-radius: var(--border-radius);
  padding: 28px 20px;
  min-width: 220px;
  max-width: 370px;
}
.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;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--accent);
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  box-shadow: 0 4px 18px rgba(54,229,122,0.09);
  transition: box-shadow var(--transition), transform var(--transition);
}
.testimonial-card:hover {
  box-shadow: 0 10px 32px rgba(33,99,45,0.13);
  transform: translateY(-4px) scale(1.015);
}
.testimonial-info {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
}
blockquote {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 22px;
  color: var(--primary);
  line-height: 1.35;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--bg-light);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 22px 18px;
  min-width: 200px;
  flex-basis: 1 1 220px;
  margin-bottom: 20px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.feature-item img {
  height: 40px;
  width: 40px;
  display: block;
}
.feature-item:hover {
  box-shadow: 0 10px 32px rgba(27,176,130,0.17);
  transform: translateY(-3px) scale(1.03);
}

/* ==================================================================================
   SPECIFIC PAGE SECTIONS
================================================================================== */
.features .feature-grid, .services .services-list, .services .service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: flex-start;
}

.features .feature-grid .feature-item,
.services .services-list .service-item,
.services .service-grid .service-item {
  min-width: 200px;
  max-width: 320px;
  flex: 1 1 220px;
}
.services .service-item img {
  height: 36px; width: 36px; margin-bottom: 8px;
}

/* FAQ / USP / Packages Lists */
.usp-list, .feature-list, .tip-list, .faq-list,
.package-descriptions ul, .text-section ul, .content-wrapper ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 24px;
  font-size: 17px;
  margin-bottom: 16px;
}
.content-wrapper ol {
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding-left: 28px;
  font-size: 17px;
  margin-bottom: 18px;
}

/* PRICING TABLE */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 30px 0 30px 0;
  background: var(--bg-light);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.pricing-table thead th {
  background: var(--electric-green);
  color: var(--primary);
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 900;
  padding: 16px 8px;
  border-bottom: 4px solid var(--electric-blue);
}
.pricing-table tbody td {
  padding: 13px 12px;
  font-size: 16px;
  border-bottom: 1px solid #d1efc8;
  color: var(--text-dark);
  font-family: var(--body-font);
}
.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

/* EXPERIENCE STATS / BADGES */
.experience-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 10px;
  color: var(--primary);
  font-size: 18px;
}
.experience-stats img {
  display: inline-block;
  height: 22px;
  margin-right: 8px;
  vertical-align: middle;
}

/* FAQ BLOCK STYLES */
.faq, .faq-list, section.faq {
  background: var(--accent);
  border-radius: var(--border-radius);
  padding: 32px 22px;
  margin-top: 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 16px rgba(60,195,136,0.08);
}
.faq h3 {
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-top: 18px;
  margin-bottom: 4px;
}
.faq p {
  font-family: var(--body-font);
  font-size: 15px;
  margin-bottom: 10px;
}

/* ==================================================================================
   TYPOGRAPHY
================================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  color: var(--primary);
  margin-bottom: 10px;
  font-weight: 900;
  letter-spacing: 0.03em;
}
h1 { font-size: 42px; line-height:1.13; margin-bottom:20px; }
h2 { font-size: 32px; margin-bottom: 16px; }
h3 { font-size: 22px; margin-bottom: 10px; }
h4 { font-size: 18px; }
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 17px;
  line-height: 1.7;
}
p {
  font-family: var(--body-font);
  color: var(--text-dark);
  font-size: 16px;
  margin-bottom: 12px;
}

/* ==================================================================================
   BUTTONS & LINKS
================================================================================== */
button, .cta-button, a.cta-button {
  cursor: pointer;
  user-select: none;
  outline: none;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
}
button:active, .cta-button:active {
  transform: scale(0.97);
}

/* Links in body */
.content-wrapper a:not(.cta-button), .text-section a {
  color: var(--electric-blue);
  text-decoration: underline;
  font-weight: 700;
  transition: color var(--transition);
}
.content-wrapper a:not(.cta-button):hover, .text-section a:hover {
  color: var(--electric-orange);
  text-decoration: underline wavy;
}

/* ==================================================================================
   FOOTER
================================================================================== */
footer {
  background: var(--primary);
  color: var(--text-light);
  padding: 38px 0 22px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 6px;
}
.footer-nav a {
  color: var(--electric-yellow);
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 700;
  padding: 2.5px 4px;
  border-radius: 5px;
  transition: background var(--transition), color var(--transition);
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--electric-green);
  color: var(--primary);
}
footer p {
  font-size: 14px;
  color: #EAF7F0;
  margin-bottom: 3px;
  text-align: center;
  word-break: break-word;
}

/* ==================================================================================
   COOKIE CONSENT BANNER
================================================================================== */
.cookie-consent-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: linear-gradient(90deg, var(--electric-green) 70%, var(--electric-blue) 100%);
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 18px 16px 18px 16px;
  z-index: 101;
  box-shadow: 0 -4px 22px rgba(24,164,252,0.08);
  font-size: 16px;
  transition: transform 0.33s cubic-bezier(.66,1.4,.33,1);
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-consent-banner.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 6px;
}
.cookie-consent-banner button {
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 700;
  padding: 8px 19px;
  border-radius: 10px;
  border: none;
  box-shadow: 0 2px 9px rgba(0,0,0,0.06);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.cookie-consent-banner .accept {
  background: var(--electric-green);
  color: var(--primary);
}
.cookie-consent-banner .accept:hover {
  background: var(--primary);
  color: var(--text-light);
}
.cookie-consent-banner .reject {
  background: var(--electric-orange);
  color: var(--text-light);
}
.cookie-consent-banner .reject:hover {
  background: var(--primary);
  color: var(--text-light);
}
.cookie-consent-banner .settings {
  background: var(--electric-yellow);
  color: var(--primary);
}
.cookie-consent-banner .settings:hover {
  background: var(--electric-blue);
  color: var(--text-light);
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top:0; bottom:0;
  background: rgba(36,89,62,0.64);
  z-index: 1102;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(.66,1.4,.33,1);
}
.cookie-modal.active {
  pointer-events: all;
  opacity: 1;
}
.cookie-modal .cookie-modal-content {
  background: #fff;
  border-radius: 20px;
  max-width: 400px;
  width: 95vw;
  padding: 36px 22px 22px 22px;
  box-shadow: 0 18px 42px rgba(24,164,252,0.14);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--primary);
  cursor: pointer;
  transition: color var(--transition);
}
.cookie-modal .cookie-modal-close:hover,
.cookie-modal .cookie-modal-close:focus {
  color: var(--electric-orange);
}
.cookie-modal h2 {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 10px;
  font-family: var(--heading-font);
  font-weight: 900;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}
.cookie-modal .cookie-category label {
  font-weight: 700;
  font-size: 18px;
  color: var(--primary);
}
.cookie-modal .cookie-category input[type="checkbox"] {
  accent-color: var(--electric-green);
  width: 20px; height: 20px;
}
.cookie-modal .essential {
  opacity: 0.7;
  pointer-events: none;
  text-decoration: line-through;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}
.cookie-modal .cookie-modal-actions button {
  padding: 11px 18px;
  font-family: var(--heading-font);
  font-size: 16px;
  border-radius: 7px;
  border: none;
}
.cookie-modal .save {
  background: var(--electric-green);
  color: var(--primary);
}
.cookie-modal .save:hover {
  background: var(--primary);
  color: var(--text-light);
}

/* ==================================================================================
   RESPONSIVE LAYOUTS (MOBILE-FIRST)
================================================================================== */
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
    max-width: 100vw;
  }
  .section, section:not(.hero) {
    padding: 28px 6px;
    margin-bottom: 45px;
    border-radius: 14px;
    box-shadow: none;
  }
  .hero {
    padding: 38px 0 36px 0;
    min-height: 190px;
  }
  .hero h1 {
    font-size: 32px;
  }
  h1 { font-size: 28px; }
  h2 { font-size: 21px; }
  h3 { font-size: 17px; }
  .main-nav, .cta-button {
    display: none;
  }
  .feature-grid, .services-list, .service-grid, .card-container,
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-item, .service-item, .card {
    min-width: 0;
    max-width: 100vw;
    width: 100%;
    margin-bottom: 14px;
    align-items: flex-start;
  }
  .testimonial-card {
    gap: 12px;
    padding: 14px;
  }
  .testimonial-card blockquote {
    font-size: 17px;
  }
  .testimonial-info {
    font-size: 14px;
  }
  .experience-stats {
    gap: 10px;
    font-size: 15px;
    flex-direction: column;
  }
  .text-image-section {
    flex-direction: column;
    gap: 19px;
  }
  .cookie-modal .cookie-modal-content {
    padding: 22px 5vw 16px 5vw;
    min-width: 0;
    max-width: 99vw;
    font-size: 15px;
  }
}

@media (max-width: 540px) {
  .testimonial-info {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-nav {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
}

/* ==================================================================================
   ANIMATIONS & MICRO-INTERACTIONS
================================================================================== */
.cta-button, button, .feature-item, .service-item, .card, .testimonial-card {
  transition: box-shadow var(--transition), background var(--transition), color var(--transition), transform var(--transition);
}
.cta-button:active,
button:active {
  transform: scale(0.98);
}

/* ==================================================================================
   UTILITIES
================================================================================== */
.mt-16 { margin-top: 16px; }
.mb-32 { margin-bottom: 32px; }
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.flex-col {
  display: flex;
  flex-direction: column;
}
.gap-16 { gap: 16px; }

/* Accessibility: Hide visually but preserve for screen readers */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* Card highlight effects */
.card:hover, .feature-item:hover, .service-item:hover {
  background: #FFFDE9;
  box-shadow: 0 10px 32px rgba(255,214,0,0.07);
}

/* Confirmation Section (Thank You Page) */
.confirmation {
  margin-bottom: 60px;
  padding: 35px 20px;
  background: linear-gradient(90deg, var(--electric-green) 55%, var(--electric-yellow) 100%);
  border-radius: var(--border-radius);
  box-shadow: 0 8px 32px rgba(54,229,122,0.09);
}
.confirmation h1 {
  color: var(--primary);
}
.confirmation .cta-button {
  margin-top: 20px;
}

/* Contact Details Block */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
  font-size: 16px;
}
.contact-details img {
  height: 22px;
  margin-right: 7px;
  vertical-align: bottom;
  opacity: 0.8;
}
.contact-details a {
  color: var(--electric-blue);
  text-decoration: underline;
  transition: color var(--transition);
}
.contact-details a:hover {
  color: var(--primary);
}

/* Hide elements (for scripting: e.g., menu/modal) */
.menu-hidden { display: none !important; }

/* ==================================================================================
   ENSURE VISUAL HIERARCHY, BOLD AND ENERGETIC
================================================================================== */
h1, h2, h3 {
  text-transform: none;
  font-family: var(--heading-font);
  color: var(--primary);
  margin-bottom: 10px;
  font-weight: 900;
  line-height: 1.13;
}

/*************************************************************
* Ensure no overlap and no grid/columns used
* All flexbox with gaps, proper margins, NO absolute positioning for content
**************************************************************/