/* --- RESET, NORMALIZE & UNIVERSALBOX --- */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  height: 100%;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100%;
  font-family: 'Roboto', Arial, sans-serif;
  color: #eaf7f2;
  background: linear-gradient(135deg, #232946 0%, #163a34 100%);
  line-height: 1.6;
  letter-spacing: 0.01em;
  background-color: #163a34;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  list-style: none;
}
a {
  color: #7fffd4;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFD580;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
h1 { font-size: 2.6rem; }
h2 { font-size: 2.0rem; }
h3 { font-size: 1.3rem; }
strong, b {
  font-weight: bold;
  color: #FFEECC;
}
/* --- CONTAINERS & BASIC LAYOUT --- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.section, section, .content-wrapper {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  background: rgba(20,34,44, 0.83);
  border-radius: 24px;
  box-shadow: 0 6px 32px 0 rgba(25,50,65,0.15);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
.text-section {
  background: rgba(34,49,54, 0.97);
  box-shadow: 0 2px 10px rgba(30,60,70,0.1);
  padding: 40px 24px;
  border-radius: 22px;
}
@media (max-width: 768px) {
  .section, section, .content-wrapper {
    padding: 32px 8px;
    margin-bottom: 36px;
  }
  .container {
    padding: 0 10px;
  }
}
/* --- NAVIGATION & HEADER --- */
header {
  background: #101923;
  border-bottom: 1px solid #194249;
  box-shadow: 0 2px 10px 0 rgba(25,34,44,0.12);
  position: sticky;
  top: 0;
  z-index: 100;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 12px 0;
  gap: 32px;
}
.main-nav > a img {
  height: 42px;
  width: auto;
}
.main-nav ul {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav li {
  display: flex;
  align-items: center;
}
.main-nav li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #aeeada;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.main-nav li a:hover, .main-nav li a:focus {
  background: #277B5C;
  color: #fff;
}
.cta-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #232946;
  background: linear-gradient(90deg, #7fffd4 0%, #FFD580 100%);
  border: none;
  border-radius: 18px;
  padding: 12px 32px;
  font-size: 1.08rem;
  font-weight: bold;
  box-shadow: 0 2px 12px 0 rgba(40,150,130,0.12);
  cursor: pointer;
  letter-spacing: 0.02em;
  margin-left: 28px;
  transition: background 0.22s, color 0.16s, transform 0.12s;
  position: relative;
  outline: none;
  text-shadow: 0 2px 16px rgba(140,255,226,0.15);
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(90deg, #40dfa8 0%, #ffde84 100%);
  color: #121821;
  transform: scale(1.04);
  box-shadow: 0 4px 20px 0 rgba(127,255,212,0.15),0 2px 10px 0 rgba(163,195,255,0.07);
}
/* --- BURGER MENU --- */
.mobile-menu-toggle {
  background: none;
  border: none;
  color: #FFD580;
  font-size: 2.1rem;
  padding: 10px 20px;
  cursor: pointer;
  display: none;
  z-index: 102;
  position: relative;
}
@media (max-width: 990px) {
  .main-nav ul, .main-nav .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 24px;
    top: 12px;
  }
}
/* --- MOBILE MENU OVERLAY --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,36,48,0.98);
  backdrop-filter: blur(3px);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(.83,.01,.38,1.01);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  color: #FFEECC;
  font-size: 2rem;
  background: none;
  border: none;
  margin: 22px 32px 4px 0;
  cursor: pointer;
  align-self: flex-end;
  z-index: 203;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 90vw;
  max-width: 366px;
  margin: 24px 32px 0 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
}
.mobile-nav a {
  background: none;
  border-radius: 10px;
  padding: 15px 16px;
  color: #7fffd4;
  text-decoration: none;
  transition: background 0.17s, color 0.15s;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #277B5C;
  color: #fff;
}
/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(100deg, #28527A 60%, #277B5C 100%);
  padding: 0;
  margin-bottom: 0;
  min-height: 350px;
  display: flex;
  align-items: center;
  box-shadow: 0 10px 80px -16px #10392170;
  position: relative;
  border-radius: 0 0 28px 28px;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  padding-top: 32px;
  padding-bottom: 32px;
}
.hero .content-wrapper {
  background: none;
  box-shadow: none;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.hero h1, .hero h2 {
  color: #FFEECC;
  text-shadow: 0 2px 30px #20344c66;
}
.hero p {
  color: #eaf7f2;
  font-size: 1.18rem;
  letter-spacing: 0.04em;
}
@media (max-width: 900px) {
  .hero {
    min-height: 220px;
  }
}
@media (max-width: 600px) {
  .hero {
    border-radius: 0 0 16px 16px;
    padding-bottom: 8px;
  }
  .hero .content-wrapper h1 { font-size: 1.6rem; }
}
/* --- FLEX GRIDS & CARDS --- */
.features-grid, .card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
  margin-bottom: 24px;
  justify-content: space-between;
}
.features-grid > div {
  background: rgba(28,57,67,0.94);
  border-radius: 16px;
  box-shadow: 0 4px 18px 0 rgba(30,90,80,0.07);
  padding: 26px 19px 20px 19px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 230px;
  min-width: 220px;
  max-width: 290px;
  text-align: center;
  margin-bottom: 20px;
  transition: box-shadow 0.19s, transform 0.18s;
  position: relative;
}
.features-grid > div:hover {
  box-shadow: 0 8px 36px 6px #277B5C55;
  transform: translateY(-3px) scale(1.028);
}
.features-grid img {
  margin-bottom: 20px;
  max-height: 46px;
}
.card-container, .content-grid {
  gap: 24px;
}
.card {
  background: rgba(34,49,54,0.97);
  border-radius: 20px;
  box-shadow: 0 2px 16px 0 rgba(40,100,90,0.08);
  margin-bottom: 20px;
  position: relative;
  padding: 30px 22px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 22px;
}
@media (max-width: 920px) {
  .features-grid, .card-container, .content-grid {
    gap: 18px;
    flex-direction: column;
    align-items: stretch;
  }
  .features-grid > div {
    min-width: 0;
    max-width: none;
    width: 100%;
  }
}
/* --- TEXT-IMAGE FLEX & LAYOUT ADAPTIONS --- */
.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: stretch;
    gap: 16px;
  }
}
/* --- LISTS WITH ICONS/IMAGES --- */
ul li, .text-section ul li, ul > li {
  margin-bottom: 14px;
  position: relative;
  font-size: 1.1rem;
  padding-left: 0;
  color: #d3f8e9;
  display: flex;
  align-items: center;
  gap: 14px;
}
ul li img {
  max-height: 28px;
  margin-right: 10px;
  vertical-align: middle;
}
ul li span {
  font-weight: 600;
  color: #FFD580;
  margin-right: 2px;
}
/* --- TESTIMONIALS --- */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #f7f7fa;
  color: #293243;
  padding: 24px 30px;
  margin-bottom: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 18px 0 rgba(40,122,123,0.072);
  border-left: 6px solid #277B5C;
  font-size: 1.07rem;
  transition: box-shadow 0.17s;
}
.testimonial-card p {
  font-size: 1.13rem;
  color: #244450;
  font-style: italic;
}
.testimonial-card span {
  color: #28527A;
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 2px;
}
.testimonial-card div {
  font-size: 0.97rem;
  color: #28527A;
  font-weight: 600;
}
.testimonial-card:hover {
  box-shadow: 0 10px 32px 5px #28527A22;
}
/* --- OFFER LISTS --- */
.content-wrapper ul > li {
  background: rgba(52,63,74,0.93);
  border-radius: 14px;
  box-shadow: 0 2px 9px 0 rgba(30,90,80,0.06);
  margin-bottom: 20px;
  padding: 22px 18px 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.content-wrapper ul > li a {
  align-self: flex-start;
  margin-top: 12px;
  background: #277B5C;
  color: #fff;
  border-radius: 8px;
  padding: 8px 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s, color 0.17s;
  box-shadow: 0 2px 4px 0 rgba(40,123,92,0.062);
}
.content-wrapper ul > li a:hover, .content-wrapper ul > li a:focus {
  background: #40dfa8;
  color: #222;
}
/* --- CTA SECTION --- */
.cta {
  background: linear-gradient(105deg, #277B5C 55%, #28527A 100%);
  color: #fff;
  border-radius: 22px;
  box-shadow: 0 10px 40px -8px #28527A55;
  margin-bottom: 40px;
}
.cta .content-wrapper {
  background: none;
  box-shadow: none;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: #fff;
}
.cta h2 {
  color: #FFD580;
}
.cta-primary {
  margin-left: 0;
}
/* --- ARTICLES (BLOG) --- */
.featured-articles {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 10px;
}
.featured-articles article {
  background: rgba(28,57,67,0.91);
  border-radius: 13px;
  padding: 23px 17px 13px 17px;
  box-shadow: 0 2px 8px 0 rgba(40,123,92,0.035);
  flex: 1 1 217px;
  min-width: 200px;
  max-width: 320px;
  color: #eaf7f2;
  font-size: 1.07rem;
  transition: box-shadow 0.17s, transform 0.12s;
}
.featured-articles article:hover {
  box-shadow: 0 8px 24px 2px #277B5C44;
  transform: translateY(-2px) scale(1.012);
}
.featured-articles h3 {
  margin-bottom: 11px;
  font-size: 1.18rem;
  color: #FFEECC;
}
@media (max-width: 830px) {
  .featured-articles {
    flex-direction: column;
    gap: 11px;
  }
  .featured-articles article {
    min-width: 0;
    max-width: none;
    width: 100%;
  }
}
/* --- ADDRESS/CONTACT BLOCKS --- */
.adresse-block, .email-block, .oeffnungszeiten {
  font-size: 1.12rem;
  color: #FFD580;
  padding-bottom: 12px;
}
/* --- CASE EXAMPLES --- */
.case-example {
  background: rgba(247,255,245,0.92);
  color: #234c3a;
  padding: 22px 28px;
  border-radius: 12px;
  margin-top: 20px;
  margin-bottom: 20px;
  box-shadow: 0 1px 5px #277B5C22;
}
.case-example h3 {
  color: #277B5C;
}
/* --- FOOTER --- */
footer {
  background: #101923;
  border-top: 1px solid #163a34;
  color: #beded2;
  padding: 32px 0 16px 0;
  font-size: 1rem;
  width: 100%;
}
footer .container {
  padding-bottom: 0;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  background: none;
  box-shadow: none;
  gap: 36px 28px;
  padding: 0;
}
footer a {
  color: #FFD580;
  font-weight: 500;
  font-size: 1.02rem;
  margin-right: 14px;
  margin-bottom: 8px;
  display: inline-block;
  transition: color 0.16s;
}
footer a:hover, footer a:focus {
  color: #7fffd4;
}
.footer-contact, .footer-legal {
  font-size: 0.98rem;
  margin-bottom: 8px;
  color: #c4fce2;
}
.footer-legal {
  display: flex;
  flex-direction: row;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.footer-social img {
  width: 35px; height: 35px;
  filter: drop-shadow(0 0 6px #277B5C55);
}
@media (max-width: 950px) {
  footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}
/* --- COOKIES CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  width: 100vw;
  background: #233c34;
  color: #fff7e6;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3001;
  box-shadow: 0 -2px 26px 0 #23294644;
  padding: 18px 12px 18px 12px;
  animation: slideUp 0.44s cubic-bezier(.77,.02,.49,1.01);
  transition: transform 0.15s;
  gap: 13px;
}
.cookie-banner p {
  font-size: 1.06rem;
  margin-bottom: 7px;
  color: #FFEECC;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-banner button {
  border: none;
  border-radius: 8px;
  padding: 9px 22px;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  cursor: pointer;
  margin-top: 0;
  background: #277B5C;
  color: #fff;
  transition: background 0.18s, color 0.13s, box-shadow 0.14s;
  box-shadow: 0 2px 7px #277B5C22;
}
.cookie-banner button.cookie-reject {
  background: #28527A;
  color: #fff;
}
.cookie-banner button.cookie-settings {
  background: #FFD580;
  color: #234c3a;
}
.cookie-banner button:hover,
.cookie-banner button:focus {
  background: #40dfa8;
  color: #222;
}
@keyframes slideUp {
  0% { transform: translateY(100%); }
  100% { transform: translateY(0); }
}
/* --- COOKIE MODAL POPUP --- */
.cookie-modal-overlay {
  position: fixed;
  top:0;bottom:0;left:0;right:0;
  width:100vw; height:100vh;
  background: rgba(17,35,26,0.83);
  z-index: 3100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.28s;
}
@keyframes fadeInModal {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #162c24;
  color: #ffe7b4;
  border-radius: 16px;
  box-shadow: 0 8px 40px #163a3430, 0 0px 1px #fff0;
  padding: 34px 32px 22px 32px;
  max-width: 388px;
  width: 95vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 19px;
  position: relative;
}
.cookie-modal h3 {
  color: #FFD580;
  font-size: 1.28rem;
  margin-bottom: 8px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.06rem;
  margin-bottom: 7px;
}
.cookie-modal input[type='checkbox'] {
  width: 18px;
  height: 18px;
  accent-color: #277B5C;
}
.cookie-modal .modal-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.cookie-modal button {
  border: none;
  border-radius: 9px;
  background: #277B5C;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.01rem;
  padding: 8px 18px;
  cursor: pointer;
  box-shadow: 0 2px 6px #277B5C22;
  transition: background 0.19s, color 0.15s;
}
.cookie-modal button.cookie-modal-close {
  position: absolute;
  right: 22px;
  top: 14px;
  background: none;
  color: #FFD580;
  font-size: 1.5rem;
  padding: 0;
  width: 32px;
  height: 32px;
}
.cookie-modal button.cookie-modal-close:hover {
  color: #7fffd4;
  background: none;
}
.cookie-modal button:hover,
.cookie-modal button:focus {
  background: #40dfa8;
  color: #222;
}
.cookie-category {
  margin: 10px 0 6px 0;
  font-weight: bold;
  color: #7fffd4;
}
.cookie-modal label[disabled],
.cookie-modal input[disabled] {
  color: #b8c3be;
  accent-color: #b8c3be;
  cursor: not-allowed;
}
/* --- TRANSITIONS, MICRO-INTERACTIONS & NEON ACCENTS --- */
.cta-primary, .content-wrapper ul > li a, .mobile-nav a, .main-nav li a, .cookie-banner button, .cookie-modal button {
  box-shadow: 0 0 4px 0 #28527A33, 0 0 16px 0 #7fffd425;
  transition: background 0.19s, color 0.15s, box-shadow 0.14s, transform 0.15s;
}
.cta-primary:focus,
.content-wrapper ul > li a:focus, .mobile-nav a:focus,
.main-nav li a:focus {
  outline: 2px solid #FFD580;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px #7fffd477;
}
.card:before, .features-grid > div:before {
  content: '';
  display: block;
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: conic-gradient(from 260deg at 50% 50%, #277B5C22 0deg, #28527A33 120deg, #ffb63822 270deg, #277B5C22 360deg);
  z-index: 0;
  border-radius: inherit;
  opacity: 0.46;
  pointer-events: none;
}
.card:after, .features-grid > div:after {
  display: none;
}
.card, .features-grid > div {
  position: relative;
  z-index: 1;
}
/* --- MEDIA QUERIES: RESPONSIVENESS --- */
@media (max-width: 768px) {
  h1 { font-size: 2.0rem; }
  h2 { font-size: 1.34rem; }
  .cta, .cta .content-wrapper {
    border-radius: 13px;
    padding: 22px 5px;
    margin-bottom: 22px;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 1.23rem; }
  h2 { font-size: 1.02rem; }
  .container {
    max-width: 100vw;
    padding: 0 6px;
  }
  .content-wrapper, .text-section {
    padding: 12px 3px 13px 3px;
    border-radius: 13px;
  }
  .features-grid > div, .card {
    padding: 17px 7px;
    border-radius: 10px;
  }
  .footer-legal, .footer-contact {
    font-size: 0.93rem;
    gap: 8px;
  }
}
/* Hide scroll for open mobile menu */
body.mobile-menu-open {
  overflow: hidden !important;
}
