/* =========================================================
   Fresh Emerald Reinigung – Modern Gradient Style (Flexbox ONLY)
   ========================================================= */

/* ====== CSS RESET & NORMALIZATION ====== */
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;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  min-height: 100%;
}
body {
  min-height: 100vh;
  background: linear-gradient(135deg, #F0FFF7 0%, #ffffff 100%);
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  color: #1A332B;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  list-style: none;
}
a {
  color: #10664C;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.4,0,.2,1);
}
a:hover, a:focus {
  color: #39B873;
  outline: none;
}
button {
  font-family: inherit;
  font-size: inherit;
  background: none;
  cursor: pointer;
  border: none;
  color: inherit;
  padding: 0;
}
h1, h2, h3, h4, h5 {
  color: #10664C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; line-height: 1.15; margin-bottom: 16px; }
h2 { font-size: 2rem; margin-bottom: 14px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; }
.subheadline { font-size: 1.15rem; color: #1A332B; margin-bottom: 24px; }
p, li, span, label { font-size: 1rem; }

/* ====== FLEXBOX CONTAINER SPACING (MANDATORY PATTERNS) ====== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px 0 rgba(16,102,76,0.05);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  margin-bottom: 20px;
  position: relative;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(16,102,76,0.07);
  padding: 28px 20px;
  min-width: 260px;
  flex-grow: 1;
  transition: transform 0.3s cubic-bezier(.4,0,.2,1), box-shadow 0.25s;
}
.card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 8px 28px 0 rgba(16,102,76,0.13);
}
.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;
  background: #F0FFF7;
  border-left: 6px solid #10664C;
  margin-bottom: 22px;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(16,102,76,0.04);
  flex-direction: column;
  min-width: 235px;
  max-width: 600px;
  color: #1A332B;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* ====== LAYOUT & TYPOGRAPHY ====== */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hero {
  padding: 90px 0 80px 0;
  background: linear-gradient(98deg, #39B873 0%, #10664C 70%);
  color: #fff;
}
.hero .container {
  justify-content: center;
  align-items: center;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 26px;
}
.hero h1 {
  color: #fff;
  font-size: 2.35rem;
  margin-bottom: 10px;
}
.hero .cta-btn {
  margin-top: 15px;
}

.features, .values, .services, .process-steps, .pricing, .testimonials, .faq, .about, .privacy-policy, .gdpr-policy, .cookie-policy, .terms-conditions, .thank-you, .pricing-faq {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 24px 0 rgba(16,102,76,0.06);
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-box {
  background: #F0FFF7;
  border-radius: 14px;
  padding: 26px 20px 20px 20px;
  flex: 1 1 235px;
  min-width: 200px;
  box-shadow: 0 2px 14px 0 rgba(16,102,76,0.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.22s, transform 0.22s;
}
.feature-box:hover {
  box-shadow: 0 6px 28px 0 rgba(57,184,115,0.13);
  transform: translateY(-4px) scale(1.02);
}
.feature-box img {
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
}

.service-teasers {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  justify-content: flex-start;
}
.service-teaser {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 10px 0 rgba(57,184,115,0.06);
  padding: 22px 16px 14px 16px;
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow 0.2s, transform 0.18s;
}
.service-teaser:hover {
  box-shadow: 0 6px 20px 0 rgba(16,102,76,0.13);
  transform: translateY(-3px) scale(1.01);
}
.service-teaser img {
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
}

.cta-bar {
  background: linear-gradient(90deg, #39B873 16%, #15753C 85%);
  color: #fff;
  border-radius: 16px;
  margin: 45px 0 25px 0;
  box-shadow: 0 8px 28px 0 rgba(16,102,76,0.09);
}
.cta-bar .content-wrapper {
  flex-direction: row;
  align-items: center;
  gap: 28px;
  justify-content: space-between;
}
.cta-bar p {
  font-size: 1.15rem;
  color: #fff;
}

/* ====== BUTTONS ====== */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(94deg, #10664C 0%, #39B873 90%);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  border-radius: 32px;
  padding: 14px 34px;
  box-shadow: 0 4px 16px 0 rgba(57,184,115,0.13);
  border: none;
  transition: background 0.22s, box-shadow 0.19s, transform 0.18s;
  margin: 8px 0;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #39B873 0%, #10664C 100%);
  box-shadow: 0 7px 28px 0 rgba(16,102,76,0.19);
  transform: translateY(-2px) scale(1.04);
  color: #fff !important;
}

/* ====== TABLES ====== */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 26px 0 18px 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 18px 0 rgba(16,102,76,0.045);
  font-size: 1.08rem;
}
.pricing-table th, .pricing-table td {
  padding: 16px 12px;
  text-align: left;
}
.pricing-table thead tr {
  background: #F0FFF7;
  color: #10664C;
}
.pricing-table tr {
  border-bottom: 1px solid #eaf6f0;
}
.pricing-table tbody tr:hover {
  background: #F0FFF7;
}
.pricing-table td {
  color: #1A332B;
}

/* ====== TESTIMONIALS, REVIEWS, ACCORDION ====== */
.testimonials, .testimonials-preview {
  background: #F0FFF7;
  border-radius: 18px;
  box-shadow: 0 1px 13px 0 rgba(16,102,76,0.055);
  padding-bottom: 16px;
}
.testimonial-card p {
  color: #1A332B;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.testimonial-card span {
  color: #15753C;
  font-weight: 600;
  font-size: 0.98rem;
}
.star-rating-summary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 20px 10px 0;
  color: #10664C;
  font-weight: 700;
}
.star-rating-summary img {
  width: 32px;
  height: 32px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.faq-item {
  background: #F0FFF7;
  border-left: 4px solid #15753C;
  border-radius: 13px;
  box-shadow: 0 2px 10px 0 rgba(16,102,76,0.04);
  padding: 18px 18px;
  color: #1A332B;
  transition: background .2s;
}
.faq-item:hover {
  background: #e3fbe3;
}
.faq-item h3 {
  margin-bottom: 6px;
  font-size: 1.15rem;
  color: #10664C;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.contact-for-more {
  background: #F0FFF7;
  padding: 16px;
  border-radius: 10px;
  margin-top: 12px;
}

/* ====== ABOUT, VALUES, POLICY TEXTS ====== */
.core-values-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 10px;
  color: #1A332B;
  font-size: 1rem;
}
.text-section {
  background: #F0FFF7;
  padding: 17px;
  border-radius: 9px;
}
.policy-text, .gdpr-text, .cookie-text, .terms-text {
  display: flex;
  flex-direction: column;
  gap: 17px;
  color: #1A332B;
}

/* ====== CONTACT PAGE ====== */
.contact-information {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #F0FFF7;
  padding: 20px 18px;
  border-radius: 11px;
}
.contact-information img {
  width: 23px;
  height: 23px;
  vertical-align: middle;
  margin-right: 8px;
}
.map-location {
  background: #fff;
  padding: 16px;
  border-radius: 8px;
  color: #10664C;
  box-shadow: 0 2px 8px 0 rgba(16,102,76,0.03);
}

/* ====== FOOTER ====== */
footer {
  background: linear-gradient(91deg, #10664C 0%, #39B873 97%);
  color: #fff;
  padding: 38px 0 18px;
  margin-top: 64px;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -8px 32px 0 rgba(16,102,76,0.09);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 20px;
}
.footer-nav a {
  color: #fff;
  font-weight: 600;
  font-size: 1.05rem;
  opacity: 0.85;
  padding: 2px 6px;
  border-radius: 3px;
  transition: background .15s, color .15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #39B873;
  color: #fff !important;
}
.footer-contact {
  text-align: center;
  font-size: 0.95rem;
  color: #e1f5ee;
  letter-spacing: 0.0015em;
  margin-bottom: 8px;
}
.footer-contact a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: underline;
  opacity: 0.92;
}
.footer-contact a:hover {
  color: #39B873;
}

/* ====== HEADER & NAVBAR ====== */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 24px 0 rgba(16,102,76,0.06);
  border-radius: 0 0 20px 20px;
  position: sticky;
  top: 0;
  z-index: 50;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: flex-start;
  padding: 16px 0;
  min-height: 70px;
}
.main-nav a {
  color: #10664C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 7px 10px;
  margin-left: 3px;
  margin-right: 3px;
  transition: color 0.17s, background 0.12s, box-shadow 0.11s;
  border-radius: 7px;
  display: flex;
  align-items: center;
}
.main-nav a.cta-btn {
  background: linear-gradient(90deg, #10664C 0%, #39B873 100%);
  color: #fff;
  margin-left: 16px;
  margin-right: 0;
  box-shadow: 0 1px 10px 0 rgba(16,102,76,0.09);
}
.main-nav a.cta-btn:hover {
  background: linear-gradient(94deg, #39B873 0%, #15753C 100%);
  color: #fff;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F0FFF7;
  color: #39B873;
}
.main-nav img {
  width: 42px;
  height: 42px;
  margin-right: 7px;
}

/* ====== MOBILE BURGER MENU ====== */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 18px;
  right: 22px;
  background: #39B873;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 12px rgba(16,102,76,0.10);
  z-index: 101;
  border: none;
  transition: background .19s, color .17s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #15753C;
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(16,102,76,0.85);
  backdrop-filter: blur(3px);
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.7,0,.19,1);
  z-index: 999;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  background: #fff;
  color: #39B873;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  position: absolute;
  top: 24px;
  right: 22px;
  z-index: 2000;
  box-shadow: 0 2px 14px 0 rgba(16,102,76,0.11);
  transition: background .13s, color .13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #15753C;
  color: #fff;
}
.mobile-nav {
  background: #fff;
  border-radius: 18px 0 0 18px;
  width: 290px;
  margin-top: 0;
  margin-right: 0;
  padding: 54px 30px 32px 34px;
  box-shadow: -8px 0 36px 0 rgba(16,102,76,0.13);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 1200;
}
.mobile-nav a {
  color: #10664C;
  font-size: 1.12rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 13px 0 13px 8px;
  border-radius: 6px;
  transition: background .13s, color .13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F0FFF7;
  color: #15753C;
}

/* ====== COOKIE CONSENT BANNER ====== */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  background: #10664C;
  color: #fff;
  padding: 22px 20px 20px 20px;
  z-index: 20000;
  box-shadow: 0 -8px 30px 0 rgba(16,102,76,0.19);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border-radius: 18px 18px 0 0;
  animation: fadeinBottom 0.55s ease;
  max-width: 560px;
  left: 50%;
  transform: translateX(-50%);
}
.cookie-consent-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 22px;
  padding: 8px 24px;
  margin: 0 6px;
  border: none;
  box-shadow: 0 2px 10px 0 rgba(57,184,115,0.08);
  cursor: pointer;
  transition: background 0.18s, color 0.13s;
}
.cookie-consent-banner .cookie-accept {
  background: #39B873;
  color: #fff;
}
.cookie-consent-banner .cookie-accept:hover {
  background: #15753C;
  color: #fff;
}
.cookie-consent-banner .cookie-reject {
  background: #F0FFF7;
  color: #10664C;
}
.cookie-consent-banner .cookie-reject:hover {
  background: #e6fbe5;
  color: #15753C;
}
.cookie-consent-banner .cookie-settings {
  background: #fff;
  color: #10664C;
}
.cookie-consent-banner .cookie-settings:hover {
  background: #F0FFF7;
  color: #39B873;
}
@keyframes fadeinBottom {
  from { opacity: 0; transform: translateX(-50%) translateY(60px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ====== COOKIE MODAL ====== */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 20010;
  top: 0; left: 0; right:0; bottom: 0;
  background: rgba(16,102,76,0.82);
  justify-content: center;
  align-items: center;
  animation: fadeInModalBg 0.3s;
}
.cookie-modal-overlay.open {
  display: flex;
}
@keyframes fadeInModalBg {from {opacity:0;} to {opacity:1;} }
.cookie-modal {
  background: #fff;
  color: #10664C;
  padding: 36px 26px 24px 26px;
  border-radius: 18px;
  min-width: 300px;
  max-width: 97vw;
  box-shadow: 0 8px 38px 0 rgba(16,102,76,0.25);
  position: relative;
  animation: jumpUpModal 0.32s cubic-bezier(.18,.73,.32,1.19);
}
@keyframes jumpUpModal {
  from { transform: scale(0.86) translateY(60px); opacity: .38; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 18px; right: 18px;
  color: #15753C;
  background: #F0FFF7;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 1.3rem;
  transition: background .12s, color .13s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  background: #39B873;
  color: #fff;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 19px;
  margin-bottom: 19px;
}
.cookie-categories label {
  font-weight: 600;
  margin-right: 8px;
}
.cookie-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.cookie-toggle input[type="checkbox"] {
  accent-color: #39B873;
  width: 20px;
  height: 20px;
}
.cookie-category-essential {
  background: #eaffef;
  padding: 12px 14px;
  border-radius: 9px;
  color: #15753C;
  font-weight: 600;
  opacity: 0.95;
  margin-bottom: 2px;
}
.cookie-category-analytics, .cookie-category-marketing {
  background: #F0FFF7;
  padding: 10px 13px;
  border-radius: 7px;
  color: #10664C;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 22px;
  padding: 8px 24px;
  border: none;
  transition: background 0.18s, color 0.13s;
  margin-right: 0;
}
.cookie-modal-actions .cookie-accept {
  background: #39B873;
  color: #fff;
}
.cookie-modal-actions .cookie-accept:hover {
  background: #15753C;
  color: #fff;
}
.cookie-modal-actions .cookie-reject {
  background: #F0FFF7;
  color: #10664C;
}
.cookie-modal-actions .cookie-reject:hover {
  background: #e6fbe5;
  color: #15753C;
}

/* ========== THANK YOU ========== */
.thank-you {
  text-align: center;
  padding: 75px 0 60px 0;
  background: linear-gradient(106deg, #F0FFF7 10%, #fff 89%);
}
.thank_you_message, .next_steps_info {
  margin: 16px auto 16px auto;
  background: #F0FFF7;
  padding: 16px 10px;
  border-radius: 12px;
  max-width: 500px;
  color: #10664C;
}

/* Responsive typography scaling */
@media (max-width: 1100px) {
  .container { padding: 0 6vw; }
}
@media (max-width:768px) {
  body { font-size: 15px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
  .main-nav { gap: 10px; }
  .container { padding: 0 10px; }
  .cta-bar {
    border-radius: 12px;
    padding: 18px 0;
  }
  .content-grid, .feature-grid, .card-container, .service-teasers {
    flex-direction: column;
    gap: 18px;
  }
  .cta-bar .content-wrapper {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .text-image-section {
    flex-direction: column;
    gap: 17px;
  }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
}
@media (max-width: 600px) {
  html { font-size: 98%; }
  .section, .features, .values, .services, .about, .testimonials, .testimonials-preview, .faq, .privacy-policy, .gdpr-policy, .cookie-policy, .terms-conditions, .thank-you, .pricing, .pricing-faq {
    padding: 22px 3px !important;
    border-radius: 9px;
  }
  .feature-box, .card {
    min-width: 0;
    padding: 15px 11px;
    border-radius: 10px;
  }
  .cta-btn {
    min-width: 120px;
    padding: 11px 16px;
    font-size: 1.02rem;
  }
  .cookie-consent-banner {
    max-width: 98vw;
    padding: 13px 8px 11px 8px;
  }
}

/* Misc spacing for consistence (cards/sections) */
.card:not(:last-child), .testimonial-card:not(:last-child), .feature-box:not(:last-child), .service-teaser:not(:last-child) {
  margin-bottom: 20px;
}
.section:not(:last-child), .services:not(:last-child), .features:not(:last-child), .testimonials:not(:last-child), .cta-bar:not(:last-child), .pricing:not(:last-child) {
  margin-bottom: 60px;
}

/* Handy utility classes */
.hide, .d-none { display: none !important; }
.flex { display: flex; }
.fd-col { flex-direction: column; }
.fd-row { flex-direction: row; }
.ai-center { align-items: center; }
.jc-center { justify-content: center; }

/* End of style.css */
