/* RESET & BASELINE NORMALIZATION */
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #203145;
  background: #F7FAFB;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background-color: #F3F8F6;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #5CB488;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #3A946A;
  text-decoration: underline;
}

/* TYPE SCALE */
h1, .h1 { font-family: 'Montserrat', Arial, Helvetica, sans-serif; font-size: 2.5rem; font-weight: 700; letter-spacing: -1px; margin-bottom: 18px; color: #203145; }
h2, .h2 { font-family: 'Montserrat', Arial, Helvetica, sans-serif; font-size: 2rem; font-weight: 600; margin-bottom: 12px; color: #203145; }
h3, .h3 { font-family: 'Montserrat', Arial, Helvetica, sans-serif; font-size: 1.25rem; font-weight: 500; margin-bottom: 8px; color: #203145; }
h4, .h4 { font-family: 'Montserrat', Arial, Helvetica, sans-serif; font-size: 1rem; font-weight: 500; margin-bottom: 6px; color: #203145; }
h1, h2, h3, h4, h5, h6 {
  line-height: 1.25;
}
strong { font-weight: 600; color: #203145; }
p, ul, ol { margin-bottom: 14px; }

/* CONTAINER & CONTENT WRAPPER */
.container {
  width: 100%;
  max-width: 1140px;
  padding: 0 20px;
  margin: 0 auto;
}
.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 18px rgba(80,142,141,0.07);
}

/* HEADER */
header {
  background: linear-gradient(180deg, #F3F8F6 75%, #E0EFE7 100%);
  box-shadow: 0 2px 10px rgba(120,162,180,0.02);
  position: relative;
  z-index: 99;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0 16px 0;
  gap: 28px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #203145;
  border-radius: 8px;
  padding: 8px 14px;
  transition: background 0.2s, color 0.2s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: #EAF6EF;
  color: #46818E;
}
.main-nav .cta-primary {
  background: #5CB488;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  margin-left: 10px;
  box-shadow: 0 2px 8px rgba(93, 180, 136, 0.07);
  transition: background 0.2s, box-shadow 0.2s;
  padding: 10px 24px;
}
.main-nav .cta-primary:hover, .main-nav .cta-primary:focus {
  background: #4ca078;
  color: #fff;
  box-shadow: 0 4px 16px rgba(93,180,136,0.14);
}

/* Burger Menu */
.mobile-menu-toggle {
  background: transparent;
  border: none;
  font-size: 2.1rem;
  color: #5CB488;
  border-radius: 6px;
  cursor: pointer;
  display: none;
  outline: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #D5F1E6;
}

/* Responsive Nav */
@media (max-width: 1020px) {
  .main-nav {
    gap: 11px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 96vw;
  }
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(250,255,255,0.97);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.33s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0%);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: #fff;
  color: #5CB488;
  font-size: 2.3rem;
  border: none;
  border-radius: 6px;
  margin: 20px 0 14px 20px;
  align-self: flex-start;
  cursor: pointer;
  box-shadow: 0 1px 5px rgba(93,180,136,0.06);
  transition: background 0.2s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #EBFAF2;
}
.mobile-menu nav.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 26px 0 0 30px;
}
.mobile-menu nav.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.18rem;
  color: #203145;
  background: transparent;
  border-radius: 9px;
  padding: 12px 18px;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu nav.mobile-nav a:hover, .mobile-menu nav.mobile-nav a:focus {
  background: #D5F1E6;
  color: #5CB488;
}

@media (max-width: 700px) {
  .mobile-menu nav.mobile-nav {
    margin: 18px 0 0 10px;
    gap: 17px;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 8px;
  }
  .section {
    padding: 22px 6px;
    margin-bottom: 36px;
  }
  .header-flex { padding: 10px 0 7px 0; }
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #E3F4FB 20%, #EAF6EF 100%);
  border-radius: 0;
  text-align: center;
  padding: 44px 0 64px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero h1 {
  font-size: 2.6rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #203145;
  font-weight: 700;
  margin-bottom: 18px;
}
.hero p {
  color: #418B7F;
  font-size: 1.17rem;
  margin-bottom: 32px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  max-width: 470px;
  margin-left: auto;
  margin-right: auto;
}

/* BUTTONS */
.cta-primary, .cta-secondary {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.08rem;
  padding: 13px 28px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 18px rgba(80,142,141,0.06);
  transition: background 0.21s, box-shadow 0.22s, color 0.16s;
}
.cta-primary {
  background: #5CB488;
  color: #fff !important;
  margin-top: 12px;
}
.cta-primary:hover, .cta-primary:focus {
  background: #3fa275;
  color: #fff;
  box-shadow: 0 4px 20px rgba(93,180,136,0.13);
  transform: translateY(-2px) scale(1.01);
}
.cta-secondary {
  background: #fff;
  color: #5CB488 !important;
  border: 1.5px solid #CFE8DA;
  margin-top: 12px;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #F3F8F6;
  color: #3fa275 !important;
  box-shadow: 0 4px 10px rgba(93,180,136,0.09);
  border-color: #5CB488;
}

/* FLEX CONTAINERS PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 18px rgba(200,220,220,0.09);
  padding: 28px 22px 22px 22px;
  min-width: 250px;
  transition: transform 0.17s, box-shadow 0.21s;
}
.card:hover {
  transform: translateY(-4px) scale(1.012);
  box-shadow: 0 6px 28px rgba(93,180,136,0.14);
}
.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; }
@media (max-width:768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
.testimonial-card, .testimonial-list .testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  background: #F6FBFB;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(42,76,110,0.07);
  margin-bottom: 20px;
  color: #203145;
  min-width: 240px;
  max-width: 490px;
  font-size: 1.06rem;
  position: relative;
  border: 1px solid #E2EDEF;
  transition: box-shadow 0.15s, border 0.15s;
}
.testimonial-card:hover {
  box-shadow: 0 7px 24px rgba(80,142,141,0.13);
  border-color: #B5DACC;
}
.testimonial-card p {
  color: #203145;
  font-size: 1.11rem;
  margin-bottom: 4px;
}
.testimonial-card strong {
  color: #5CB488;
  font-size: 1rem;
  margin-top: 9px;
}
.stars {
  color: #f7c873;
  font-size: 1.2rem;
  margin: 0 0 4px 0;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
}
@media (max-width: 700px) {
  .testimonial-list {
    flex-direction: column;
    gap: 15px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* FEATURES */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  margin-top: 32px;
}
.feature {
  flex: 1 1 230px;
  background: #F8FAF9;
  border-radius: 15px;
  box-shadow: 0 2px 9px rgba(85,180,136,0.04);
  padding: 26px 18px 18px 18px;
  text-align: center;
  min-width: 220px;
  max-width: 310px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.18s, background 0.18s;
}
.feature:hover {
  background: #ECF5F0;
  box-shadow: 0 4px 18px rgba(85,180,136,0.10);
}
.feature img {
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
}
.feature h3 {
  margin-bottom: 8px;
  font-size: 1.14rem;
}

/* SERVICE HIGHLIGHTS & TABS */
.service-highlights {
  list-style-type: disc;
  padding-left: 24px;
  margin-bottom: 18px;
}
.service-tabs ul {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 0 0 10px 0;
}
.service-tabs li {
  background: #E0EFE7;
  border-radius: 8px;
  padding: 10px 18px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #5CB488;
  margin-bottom: 7px;
}
.service-descriptions {
  margin-left: 18px;
}

/* PRICING TABLE */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
}
.pricing-table th, .pricing-table td {
  text-align: left;
  padding: 14px 12px;
  font-size: 1rem;
}
.pricing-table th {
  background: #E0EFE7;
  color: #203145;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
}
.pricing-table tr {
  border-bottom: 1px solid #E8F0ef;
}
.pricing-table tr:last-child {
  border-bottom: none;
}

/* FAQ ACCORDION */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: #F4F8F7;
  border-radius: 11px;
  padding: 22px 18px 18px 18px;
  box-shadow: 0 2px 8px rgba(120,162,180,0.06);
  border-left: 4px solid #5CB488;
}
.faq-item h2 {
  font-size: 1.18rem;
  margin-bottom: 7px;
  color: #203145;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.faq-item p { margin-bottom: 0; }

/* REVIEW INVITATION SNIPPET */
.review-form-snippet {
  background: #EAF6EF;
  padding: 18px 20px;
  border-radius: 13px;
  margin-bottom: 0;
  min-width: 200px;
}
.review-form-snippet a {
  color: #5CB488;
  font-weight: 500;
  text-decoration: underline;
}

/* CTA CENTRAL */
.cta-central {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}
.cta-central p {
  font-size: 1rem;
  color: #4E7998;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
}
.cta-central img {
  width: 19px;
  height: 19px;
  margin-right: 5px;
}

/* FOOTER */
footer {
  background: #EAF6EF;
  font-size: 0.99rem;
  color: #355A6C;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  margin-top: 60px;
}
.footer {
  padding: 34px 0 12px 0;
}
.footer .container {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0;
}
.footer .footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 7px;
}
.footer .footer-nav a {
  color: #355A6C;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 0.98rem;
  transition: color 0.16s;
}
.footer .footer-nav a:hover {
  color: #5CB488;
}
.footer-contact {
  margin-top: 3px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-right: 6px;
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
  margin-top: 24px;
  margin-bottom: 0;
}
.footer-social a img {
  width: 28px;
  height: 28px;
  filter: grayscale(0.15);
  transition: filter 0.19s;
}
.footer-social a:hover img {
  filter: grayscale(0) drop-shadow(0 2px 8px #B5DACC33);
}

/* TRUST SECTION */
.trustpoints-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 8px;
}
.trustpoints-list ul {
  margin: 0;
  padding-left: 24px;
}
.guarantee-information {
  background: #EAF6EF;
  border-radius: 12px;
  padding: 15px 20px;
  color: #357B68;
  font-size: 1.07rem;
  margin-left: 0;
}

/* HOURS TABLE (Kontakt) */
.hours-table {
  background: #EAF6EF;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 14px;
  font-size: 1.06rem;
}
.hours-table td {
  padding: 10px 16px;
  color: #203145;
}
.response-time-info p {
  font-size: 0.97rem;
  color: #4E7998;
  margin-top: 5px;
}

/* LEGAL & POLICY PAGES */
.legal-content {
  background: #fff;
  border-radius: 21px;
  margin-bottom: 60px;
  padding: 38px 20px 30px 20px;
}
.legal-content .text-section {
  max-width: 800px;
  margin: 0 auto;
}

/* THANK YOU PAGE */
.thank-you-section {
  text-align: center;
  background: linear-gradient(117deg, #e3f4fb 40%, #eaf6ef 100%);
  border-radius: 24px;
  margin-bottom: 60px;
  padding: 56px 14px 40px 14px;
}

/* MISC UTILITIES */
.text-section {
  max-width: 680px;
  margin-bottom: 12px;
}
.team-profile { margin-top: 16px; }
.certifications {
  margin-top: 11px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.certifications img {
  width: 28px;
  height: 28px;
  vertical-align: middle;
  margin-right: 8px;
}
.quicklinks {
  margin-top: 24px;
  margin-bottom: 12px;
}
.quicklinks a {
  color: #5CB488;
  font-weight: 500;
}
.contact-prompt {
  margin-top: 15px;
  margin-bottom: 10px;
}

/* MAP SNIPPET (Kontakt) */
.map-snippet {
  background: #F8FAF9;
  border-radius: 12px;
  margin: 22px 0 0 0;
  padding: 18px 15px;
  font-size: 1.03rem;
  color: #3E6763;
  display: flex;
  align-items: center;
  gap: 7px;
  max-width: 480px;
}
.map-snippet img {
  width: 21px;
  height: 21px;
}

/* STAR RATING SUMMARY */
.star-rating-summary {
  padding: 13px 0 12px 0;
  color: #3C7C73;
  font-size: 1.08rem;
  text-align: center;
}

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
  .content-wrapper, .card-container, .content-grid, .feature-grid, .testimonial-list {
    gap: 16px;
  }
  .footer .content-wrapper {
    gap: 18px;
  }
  .feature-grid {
    flex-direction: column;
    align-items: stretch;
  }
}
@media (max-width:768px) {
  .content-wrapper, .feature-grid, .testimonial-list, .card-container {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .section { padding: 26px 5px; }
  h1 { font-size: 2rem; }
  h2  { font-size: 1.4rem; }
}
@media (max-width:620px) {
  h1 { font-size: 1.52rem; }
  .hero h1 { font-size: 1.37rem; }
  h2 { font-size: 1.05rem; }
  .feature img { width: 39px; height: 39px; }
}
@media (max-width: 470px) {
  .feature, .testimonial-card { min-width: 0; max-width: 100%; }
  .footer-social a img { width: 22px; height: 22px; }
  .map-snippet { padding: 13px 4px; font-size:0.95rem; }
}

/* COOKIE CONSENT BANNER */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #fff;
  color: #203145;
  padding: 18px 28px 19px 28px;
  box-shadow: 0 -2px 16px rgba(80,142,141,0.13);
  border-top: 2px solid #E0EFE7;
  font-size: 1.01rem;
  font-family: 'Roboto', Arial, Helvetica,sans-serif;
  transition: transform 0.3s, opacity 0.22s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-consent-banner.hide {
  opacity: 0;
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.cookie-btn, .cookie-btn-primary, .cookie-btn-settings {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border: none;
  border-radius: 7px;
  font-weight: 500;
  padding: 8px 21px;
  font-size: 0.99rem;
  cursor: pointer;
  transition: background 0.14s, color 0.1s, border 0.16s;
}
.cookie-btn-primary {
  background: #5CB488;
  color: #fff;
}
.cookie-btn-primary:hover, .cookie-btn-primary:focus {
  background: #388F68;
}
.cookie-btn {
  background: #EAF6EF;
  color: #5CB488;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #c7e7d5;
  color: #2B785C;
}
.cookie-btn-settings {
  background: #fff;
  color: #3fa275;
  border: 1.5px solid #CFE8DA;
}
.cookie-btn-settings:hover, .cookie-btn-settings:focus {
  background: #F3F8F6;
  border-color: #5CB488;
}

@media (max-width:650px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 11px;
    padding: 13px 10px 13px 10px;
    font-size: 0.97rem;
  }
  .cookie-banner-actions {
    gap: 8.5px;
  }
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; right: 0; bottom:0; left:0;
  background: rgba(45, 60, 50, 0.22);
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  transition: opacity 0.23s;
}
.cookie-modal-overlay.open { display: flex; }
.cookie-modal {
  background: #fff;
  padding: 32px 20px 25px 20px;
  border-radius: 16px;
  box-shadow: 0 6px 28px rgba(80,142,141,0.19);
  min-width: 290px;
  max-width: 94vw;
  max-height: 94vh;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #203145;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-modal h2 { font-size: 1.36rem; color: #203145; font-family: 'Montserrat', Arial, Helvetica, sans-serif; font-weight: 600; margin-bottom: 6px; }
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #5CB488;
  cursor: pointer;
  transition: color 0.13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #418B7F;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 7px;
}
.cookie-category input[type="checkbox"]:not(:disabled) {
  accent-color: #5CB488;
  width: 18px;
  height: 18px;
}
.cookie-switch {
  margin-left: 7px;
}
.cookie-category label {
  font-size: 1.05rem;
  color: #203145;
}
.cookie-category em {
  color: #888;
  font-size: 0.97rem;
  margin-left: 2px;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 13px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* ANIMATIONS */
:root {
  --anim-fade-in: fadein 0.44s cubic-bezier(0.39,0.575,0.565,1) forwards;
}
@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }

/* INTERACTIVE VISUAL MICRO-EFFECTS */
.card, .feature, .testimonial-card {
  transition: box-shadow 0.18s, transform 0.17s, border 0.15s, background 0.18s;
}
.card:active, .feature:active, .testimonial-card:active {
  transform: scale(0.98);
}
.cta-primary:active, .cta-secondary:active, .cookie-btn:active, .cookie-btn-primary:active {
  transform: scale(0.98);
  box-shadow: 0 2px 6px rgba(93,180,136,0.14);
}

/* PASTEL/THEMATIC COLORS - SOFT DREAMY PALETTE */
body, .section, .content-wrapper, .feature, .testimonial-card, .card {
  background-blend-mode: soft-light;
}

.section, .card, .feature, .testimonial-card, .review-form-snippet, .guarantee-information {
  background: #fff;
}
.hero, .thank-you-section {
  background: linear-gradient(135deg, #E3F4FB 0%, #EAF6EF 100%);
}

/***** END OF CSS *****/
