/* ---- 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.3;
  min-height: 100vh;
  background: #F2F6FA;
  color: #1A252F;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
ol, ul {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
  transition: color 0.25s;
}
img {
  max-width: 100%;
  display: block;
}
button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
  line-height: 1.3;
}
button {
  background: none;
  border: none;
  cursor: pointer;
}

/* ---- BRAND FONTS ---- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Roboto:wght@400;500&display=swap');

body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  background: linear-gradient(135deg, #F2F6FA 60%, #ffffff 100%);
  color: #1A252F;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  line-height: 1.18;
  color: #1A252F;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.375rem; }
h4 { font-size: 1.1rem; }
p, ul, ol, li, table, th, td {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #1A252F;
}
.subheadline {
  font-size: 1.25rem;
  color: #08A0B6;
  font-weight: 500;
  margin-bottom: 28px;
}

/* ---- CONTAINER ---- */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ---- HEADER ---- */
header {
  width: 100%;
  background: linear-gradient(90deg, #1A252F 70%, #08A0B6 100%);
  color: #ffffff;
  box-shadow: 0 2px 8px 0 rgba(26,37,47,0.06);
  position: relative;
  z-index: 1000;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 20px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #ffffff;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.2s, color 0.25s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #08A0B6;
  color: #fff;
}
.cta-primary {
  display: inline-block;
  background: linear-gradient(90deg, #08A0B6 80%, #1A252F 100%);
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 12px 32px;
  border: none;
  border-radius: 32px;
  box-shadow: 0 2px 10px 0 rgba(8,160,182,0.1);
  margin-left: 8px;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(90deg, #1A252F 80%, #08A0B6 100%);
  box-shadow: 0 4px 16px 0 rgba(8,160,182,0.17);
  transform: translateY(-2px) scale(1.03);
}

.cta-secondary {
  display: inline-block;
  background: transparent;
  color: #08A0B6;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 28px;
  border: 2px solid #08A0B6;
  border-radius: 32px;
  margin-top: 16px;
  margin-bottom: 8px;
  transition: background 0.2s, color 0.22s, border-color 0.18s, transform 0.15s;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #08A0B6;
  color: #fff;
  border-color: #1A252F;
  transform: scale(1.035);
}

/* HAMBURGER MENU */
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  background: none;
  color: #08A0B6;
  margin-left: 12px;
  border: none;
  transition: color 0.2s, transform 0.15s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #ffffff;
  transform: scale(1.11);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(100deg, #1A252F 80%, #08A0B6 100%);
  color: #fff;
  z-index: 9999;
  transform: translateX(-100vw);
  transition: transform 0.4s cubic-bezier(.77,0,.18,1.01);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 32px 28px 16px 28px;
  gap: 30px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.2rem;
  background: none;
  color: #08A0B6;
  border: none;
  margin-bottom: 24px;
  transition: color 0.2s, transform 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #ffffff;
  transform: scale(1.15);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.mobile-nav a {
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  padding: 14px 18px;
  border-radius: 10px;
  margin: 0 0 6px 0;
  transition: background 0.19s, color 0.19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #08A0B6;
  color: #FFF;
}

/* Hide navigation on mobile, show burger */
@media (max-width: 1024px) {
  .main-nav, .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ---- FOOTER ---- */
footer {
  width: 100%;
  background: #1A252F;
  color: #fff;
  padding: 40px 0 0 0;
  border-top-left-radius: 36px;
  border-top-right-radius: 36px;
  margin-top: 80px;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
  flex-wrap: wrap;
}
footer .branding img {
  max-width: 60px;
  margin-bottom: 12px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  opacity: .87;
  transition: color .21s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #08A0B6;
}
.contact-details p {
  font-size: 1rem;
  color: #c3d0dd;
  margin-top: 6px;
  line-height: 1.45;
}

/* ---- SECTION LAYOUTS ---- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: 20px;
}
section > .container {
  gap: 38px;
}
.section-accent {
  background: #F2F6FA;
  border-radius: 18px;
}

/* ---- CONTENT & FLEX LAYOUTS ---- */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(26,37,47,0.13);
  padding: 28px 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.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: flex-start;
  gap: 20px;
  padding: 20px 32px 22px 24px;
  background: #fff;
  color: #1A252F;
  border-radius: 20px;
  box-shadow: 0 4px 20px 0 rgba(8,160,182,0.05), 0 1px 2px 0 rgba(26,37,47,0.05);
  margin-bottom: 24px;
  transition: box-shadow 0.18s, transform 0.15s;
  min-width: 260px;
  max-width: 450px;
}
.testimonial-card p {
  color: #222c38;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 6px;
}
.testimonial-card div {
  color: #FFD600;
  font-size: 1.3rem;
  margin-bottom: 2px;
}
.testimonial-card span {
  color: #747d89;
  font-size: 0.98rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 8px 32px 0 rgba(8,160,182,0.13);
  transform: translateY(-3px) scale(1.017);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.text-section ul, .text-section ol {
  margin: 0 0 6px 0;
  padding: 0 0 0 20px;
  list-style: disc inside;
  color: #1A252F;
}
.text-section li {
  font-size: 1rem;
  margin-bottom: 8px;
  color: #1A252F;
  line-height: 1.45;
  display: flex;
  align-items: center;
  gap: 10px;
}
.text-section strong {
  font-weight: 600;
  color: #08A0B6;
}

/* ---- TABLE STYLES (Preise) ---- */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(26,37,47,0.06);
  margin-bottom: 28px;
  overflow: hidden;
  font-size: 1rem;
}
thead tr {
  background: #08A0B6;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
thead th {
  padding: 17px 12px;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
  text-align: left;
  font-weight: 700;
}
tbody td {
  padding: 16px 12px;
  border-bottom: 1px solid #F2F6FA;
}
tbody tr:last-child td {
  border-bottom: none;
}
tbody tr:nth-child(even) {
  background: #F2F6FA;
}
td, th {
  text-align: left;
}

/* ---- BUTTONS ---- */
button:focus, a:focus {
  outline: 2px solid #08A0B6;
  outline-offset: 2px;
}

/* ---- ICONS IN LISTS ---- */
li img {
  vertical-align: middle;
  width: 22px;
  height: 22px;
  margin-right: 6px;
}

/* ---- RESPONSIVE DESIGN ---- */
@media (max-width: 1200px) {
  .container {
    max-width: 98vw;
  }
  footer .container {
    flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 900px) {
  .card-container, .content-grid {
    flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.15rem; }
  section {
    padding: 28px 7vw;
    margin-bottom: 40px;
  }
  .container {
    padding: 0 7vw;
    gap: 20px;
  }
  .footer-nav, .contact-details {
    padding-bottom: 14px;
  }
  .testimonial-card {
    padding: 16px 14px 16px 14px;
    min-width: 200px;
    max-width: 100%;
  }
  .text-image-section, .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .text-image-section {
    gap: 16px;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 0 4vw;
  }
  section {
    padding: 18px 4vw 30px 4vw;
  }
  .testimonial-card {
    font-size: 0.95rem;
    padding: 12px 7px 14px 8px;
  }
  .footer-nav, .contact-details, .branding {
    text-align: left;
  }
}

/* ---- MICRO-INTERACTIONS / TRANSITIONS ---- */
.card, .testimonial-card, .cta-primary, .cta-secondary, .main-nav a, .footer-nav a {
  transition: box-shadow 0.18s, background 0.19s, color 0.17s, transform 0.17s;
}
.card:hover, .card:focus {
  box-shadow: 0 10px 30px 0 rgba(8,160,182,0.09);
  transform: translateY(-3px) scale(1.015);
}
.cta-primary:active, .cta-secondary:active {
  transform: scale(0.98);
}

/* ---- COOKIE CONSENT BANNER ---- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #1A252F;
  color: #fff;
  z-index: 7000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 24px 6vw 20px 6vw;
  box-shadow: 0 -2px 23px 0 rgba(26,37,47,.19);
  transition: transform 0.33s;
}
.cookie-banner.hide {
  transform: translateY(110%);
}
.cookie-banner__info {
  flex: 1;
  font-size: 1rem;
  color: #e0e8f0;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-banner button,
.cookie-banner .cookie-settings-btn {
  background: #08A0B6;
  color: #fff;
  border: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 0.97rem;
  border-radius: 22px;
  padding: 9px 20px;
  margin-left: 0;
  transition: background .2s, color .12s, transform .15s;
  cursor: pointer;
}
.cookie-banner button:hover,
.cookie-banner .cookie-settings-btn:hover,
.cookie-banner button:focus {
  background: #fff;
  color: #08A0B6;
}
.cookie-banner .cookie-settings-btn {
  background: transparent;
  color: #fff;
  border: 1.5px solid #fff;
}
.cookie-banner .cookie-settings-btn:hover,
.cookie-banner .cookie-settings-btn:focus {
  border-color: #08A0B6;
  background: #08A0B6;
  color: #fff;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 4vw 18px 4vw;
    gap: 15px;
  }
  .cookie-banner__actions {
    flex-direction: column;
    gap: 10px;
  }
}

/* ---- COOKIE CONSENT MODAL ---- */
.cookie-modal-overlay {
  position: fixed;
  z-index: 7100;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(26,37,47,0.67);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  color: #1A252F;
  padding: 32px 24px 28px 24px;
  border-radius: 20px;
  box-shadow: 0 5px 24px 0 rgba(8,160,182,0.11);
  min-width: 300px;
  max-width: 90vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.cookie-modal__header h3 {
  font-size: 1.13rem;
  color: #08A0B6;
  margin: 0;
}
.cookie-modal__close {
  background: none;
  border: none;
  color: #08A0B6;
  font-size: 1.8rem;
  cursor: pointer;
}
.cookie-modal__content {
  font-size: 1rem;
  color: #555;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category-toggle {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.cookie-toggle {
  width: 38px; height: 22px;
  background: #F2F6FA;
  border-radius: 22px;
  position: relative;
  transition: background .17s;
}
.cookie-toggle input[type="checkbox"] {
  opacity: 0; width: 0; height: 0; position: absolute;
}
.cookie-toggle-slider {
  position: absolute;
  left: 2px; top: 2px;
  width: 18px; height: 18px;
  background: #d0e7f3;
  border-radius: 50%;
  transition: left .19s, background .17s;
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  left: 18px;
  background: #08A0B6;
}
.cookie-category-label {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #1A252F;
}
.cookie-modal__actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 12px;
}
.cookie-modal button {
  background: #08A0B6;
  color: #fff;
  border: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 0.97rem;
  border-radius: 22px;
  padding: 8px 19px;
  transition: background .2s, color .12s;
  cursor: pointer;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: #1A252F;
  color: #fff;
}
@media (max-width: 480px) {
  .cookie-modal {
    min-width: 0;
    padding: 18px 8px 19px 8px;
  }
}

/* ---- MISC SMALL ELEMENTS ---- */
div[role="alert"], .alert {
  background: #08A0B6;
  color: #fff;
  border-radius: 12px;
  padding: 15px 18px;
  margin: 18px 0 21px 0;
  font-size: 1rem;
  box-shadow: 0 2px 8px 0 rgba(8,160,182,0.08);
  font-family: 'Roboto', Arial, sans-serif;
}

/* ---- LINKS STYLING ---- */
a {
  transition: color 0.22s;
}
a:hover, a:focus {
  color: #08A0B6;
  text-decoration: underline;
}
.cta-primary a, .cta-secondary a {
  color: inherit;
  text-decoration: none;
}

/* ---- VISUAL HIERARCHY & SPACING ---- */
section > .container > h1, section > .container > h2 {
  margin-bottom: 18px;
}
.card + .card, .testimonial-card + .testimonial-card {
  margin-top: 20px;
}
section + section {
  margin-top: 0;
}

/* ---- UTILITY CLASSES if needed ---- */
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }

/* ---- PRINT ---- */
@media print {
  header, footer, .cookie-banner, .mobile-menu {
    display: none !important;
  }
  body {
    background: #fff;
    color: #1A252F;
  }
}
