/* =====================================================
   CSS RESET & BASELINE 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, 
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;
}
html { height: 100%; font-size: 16px; }
body {
  min-height: 100vh;
  background: #f6fbff;
  color: #22364a;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *::before, *::after { box-sizing: inherit; }
a { color: #205375; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #67c6e3; text-decoration: underline; }
img { max-width: 100%; display: block; height: auto; border: 0; }
ul, ol { list-style-position: inside; margin-left: 0; }
table { border-collapse: collapse; width: 100%; }
strong { font-weight: 700; }

/* =====================================================
   FONTS & TYPOGRAPHY
   ===================================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Open+Sans:wght@400;600&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #205375;
  margin-bottom: 18px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.4rem; margin-bottom: 12px; font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }
h5, h6 { font-size: 1rem; font-weight: 700; }
p, ul, ol, li { color: #22364a; font-size: 1rem; }
p { margin-bottom: 16px; }
ul, ol { margin-bottom: 16px; }
label { font-weight: 600; }

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: 0;
}

/* =====================================================
   LAYOUT CONTAINERS & GRID SYSTEM
   ===================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 0;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  position: relative;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(32,83,117,0.06);
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/**** Spacing for feature items and testimonials ****/
.feature-grid, .feature-list, .service-list, .reason-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(32,83,117,0.05);
  padding: 24px 22px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 360px;
  transition: box-shadow 0.2s;
}
.feature-item img {
  width: 38px;
  height: 38px;
  margin-bottom: 4px;
}
.feature-item:hover {
  box-shadow: 0 6px 20px rgba(32,83,117,0.10);
}

/**** Responsive Cards for services ****/
.service-list, .service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(32,83,117,0.06);
  padding: 30px 24px 24px 24px;
  margin-bottom: 20px;
  min-width: 220px;
  flex: 1 1 310px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 14px;
  transition: box-shadow 0.20s;
  position: relative;
}
.service-card h2, .service-card h3 {
  margin-bottom: 0.25em;
}
.service-card .price {
  margin-top: 10px;
  color: #205375;
  font-weight: 700;
}
.service-card:hover {
  box-shadow: 0 6px 20px rgba(32,83,117,0.10);
}

/**** CTA Section ****/
.cta {
  background: #205375;
  color: #fff;
  border-radius: 18px;
}
.cta h2 {
  color: #fff;
}

/* =====================================================
   HEADER & NAVIGATION
   ===================================================== */
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(32,83,117,0.04);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo img { height: 42px; }
nav.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: #205375;
  font-size: 1rem;
  padding: 8px 4px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #f6fbff;
  color: #67c6e3;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  background: #205375;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 12px 28px;
  border: none;
  border-radius: 32px;
  box-shadow: 0 3px 18px rgba(32,83,117,0.08);
  transition: background 0.18s, box-shadow 0.2s, color 0.2s;
  cursor: pointer;
  margin-left: 24px;
}
.btn-primary:hover, .btn-primary:focus {
  background: #67c6e3;
  color: #205375;
  box-shadow: 0 8px 30px rgba(32,83,117,0.15);
  text-decoration: none;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  background: #67c6e3;
  color: #205375;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 10px 22px;
  border: none;
  border-radius: 24px;
  transition: background 0.2s, color 0.2s, box-shadow 0.18s;
  margin-top: 16px;
  cursor: pointer;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #205375;
  color: #fff;
  box-shadow: 0 4px 18px rgba(32,83,117,0.12);
  text-decoration: none;
}

/**** Mobile Burger Menu ****/
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #205375;
  cursor: pointer;
  margin-left: 18px;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
  z-index: 120;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #f6fbff;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #205375;
  transform: translateX(-100%);
  transition: transform 0.34s cubic-bezier(.77,0,.18,1);
  z-index: 120;
  padding: 0;
  min-height: 100vh;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: #fff;
  font-size: 2.2rem;
  border: none;
  padding: 24px;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus { color: #67c6e3; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 32px 0;
  align-items: flex-start;
  padding-left: 32px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  padding: 10px 0;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #67c6e3;
  background: rgba(255,255,255,0.065);
}

/* Hide Main Nav & Show Burger on Mobile */
@media (max-width: 992px) {
  nav.main-nav { display: none; }
  .mobile-menu-toggle { display: inline-flex; }
  .btn-primary { margin-left: 0; }
}
@media (min-width: 993px) {
  .mobile-menu { display: none !important; }
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
  background: linear-gradient(90deg, #f6fbff 65%, #67c6e3 250%);
  min-height: 320px;
  display: flex;
  align-items: center;
  padding: 76px 0 36px 0;
  margin-bottom: 40px;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.hero .content-wrapper {
  max-width: 600px;
}
.hero h1 {
  color: #205375;
  margin-bottom: 18px;
  font-size: 2.5rem;
}
.hero p {
  color: #22364a;
  font-size: 1.18rem;
  margin-bottom: 32px;
  line-height: 1.6;
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 30px;
  background: #fff;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(32,83,117,0.06);
  min-width: 220px;
  max-width: 440px;
  flex: 1 1 320px;
  transition: box-shadow 0.22s;
}
.testimonial-card p {
  color: #22364a;
  font-size: 1.08rem;
  margin-bottom: 8px;
  font-style: italic;
}
.testimonial-card span {
  font-size: 0.97rem;
  color: #205375;
  font-weight: 600;
}
.star-rating {
  font-size: 1.3rem;
  color: #67c6e3;
  margin-top: -10px;
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px rgba(32,83,117,0.14);
}

/* =====================================================
   FOOTER
   ===================================================== */
footer {
  background: #203040;
  color: #fff;
  padding: 48px 0 16px 0;
  margin-top: 64px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
}
.logo-footer img { height: 52px; width: auto; margin-bottom: 12px; }
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #67c6e3;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus { color: #fff; text-decoration: underline; }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.99rem;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #f6fbff;
  line-height: 1.5;
}
.footer-contact img {
  width: 20px; height: 20px;
}
.copyright {
  width: 100%;
  color: #a7bbc7;
  font-size: 0.91rem;
  margin-top: 18px;
  text-align: center;
}

/* =====================================================
   TABLES (Preise)
   ===================================================== */
.pricing-table {
  width: 100%;
  margin-bottom: 32px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(32,83,117,0.04);
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  padding: 16px 12px;
  border-bottom: 1px solid #e8eff4;
  text-align: left;
  font-size: 1rem;
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table th {
  background: #205375;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
}
.pricing-table td {
  color: #22364a;
}
.price-notes ul {
  margin-left: 0;
  padding-left: 1.2em;
}

/* =====================================================
   STATIC PAGES & LISTS
   ===================================================== */
.value-list, .reason-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  margin-bottom: 12px;
}
.value-list li, .reason-list li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 10px;
  padding: 13px 20px;
  font-weight: 600;
  font-size: 1.07rem;
  color: #205375;
  box-shadow: 0 1px 8px rgba(32,83,117,0.03);
}
.value-list img, .reason-list img {
  width: 26px;
  height: 26px;
}
.stat-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 18px;
}
.stat-highlights span {
  background: #67c6e3;
  color: #22364a;
  padding: 8px 22px;
  border-radius: 24px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 2px 10px rgba(103,198,227,0.04);
}

/* =====================================================
   FAQ / NOTICES / NEXT-STEPS
   ===================================================== */
.price-notes, .next-steps ul {
  background: #e8f3f9;
  border-radius: 9px;
  padding: 18px 16px;
  color: #205375;
  margin-bottom: 24px;
}
.next-steps ul { list-style: disc inside; }

/* =====================================================
   CONTACT DETAILS / FORMS
   ===================================================== */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #205375;
  font-size: 1.07rem;
}
.contact-item a { color: #205375; }
.contact-item a:hover, .contact-item a:focus { color: #67c6e3; text-decoration: underline; }

/* =====================================================
   COOKIE CONSENT BANNER & MODAL
   ===================================================== */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0; right: 0;
  z-index: 150;
  background: #fff;
  color: #22364a;
  border-top: 2px solid #67c6e3;
  box-shadow: 0 -6px 24px rgba(32,83,117,0.07);
  padding: 22px 18px 18px 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 1rem;
  animation: slidein-bottom 0.37s cubic-bezier(.75,0,.19,1);
}
@keyframes slidein-bottom {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  border: none;
  outline: none;
  border-radius: 22px;
  padding: 10px 24px;
  font-size: 1rem;
  cursor: pointer;
  margin-right: 0;
  transition: background 0.18s, color 0.18s;
}
.cookie-btn.accept {
  background: #205375;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus { background: #67c6e3; color: #205375; }
.cookie-btn.reject {
  background: #e8f3f9;
  color: #22364a;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus { background: #205375; color: #fff; }
.cookie-btn.settings {
  background: #67c6e3;
  color: #205375;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus { background: #205375; color: #fff; }

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(32,83,117,0.42);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.22s;
  animation: fadein-modal 0.22s;
}
@keyframes fadein-modal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-inner {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 12px 64px rgba(32,83,117,0.14);
  min-width: 320px; max-width: 98vw; width: 420px;
  padding: 36px 26px 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  top: 18px; right: 22px;
  background: none;
  border: none;
  color: #205375;
  font-size: 2.1rem;
  cursor: pointer;
  transition: color 0.22s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus { color: #67c6e3; }
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1.03rem;
  margin-bottom: 18px;
}
.cookie-category input[type="checkbox"] {
  accent-color: #67c6e3;
  width: 20px; height: 20px;
}
.cookie-category.essential label { font-weight: 700; color: #205375; }
.cookie-category.essential input { opacity: 0.35; pointer-events: none; }

/* Blurred Modal BG When Open */
body.modal-open {
  overflow-y: hidden;
  filter: blur(0.01px);
}

/* =====================================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ===================================================== */
@media (max-width: 1280px) {
  .container { max-width: 980px; }
  .feature-grid, .service-list, .service-cards, .testimonial-list { gap: 16px; }
}
@media (max-width: 992px) {
  .container { max-width: 94vw; }
  .main-nav { gap: 12px; }
}
@media (max-width: 768px) {
  html{ font-size:15px; }
  header .container, .footer .container {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
  .section, section { padding: 34px 8px; }
  .hero { min-height: 210px; padding: 44px 0 24px 0; }
  .hero h1 { font-size: 2.1rem; }
  .content-wrapper { gap: 18px; }
  .feature-grid, .service-list, .service-cards, .testimonial-list, .reason-list, .stat-highlights {
    flex-direction: column;
    gap: 18px;
  }
  .feature-item, .service-card, .testimonial-card, .value-list li, .reason-list li { max-width: 100%; min-width: 0; }
  .cta { border-radius: 9px; }
  .pricing-table th, .pricing-table td { padding: 12px 7px; }
}
@media (max-width: 540px) {
  html { font-size: 14px; }
  .container { padding-left: 8px; padding-right: 8px; }
  .hero { padding: 26px 0 10px 0; }
  .cookie-modal-inner { padding: 21px 5vw 20px 5vw; min-width: 0; width: 97vw; }
}
/* Show Burger and hide nav on mobile only is above */

/* Cookie Banner Mobile Adjust */
@media (max-width: 485px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 10px; font-size: 0.99rem; }
  .cookie-banner .cookie-actions { gap: 8px; }
  .cookie-modal-inner { min-width: 0; width: 98vw; }
}

/* =====================================================
   MICRO-INTERACTIONS, TRANSITIONS & EFFECTS
   ===================================================== */
.card, .feature-item, .service-card, .testimonial-card, .value-list li, .reason-list li {
  transition: box-shadow 0.15s, transform 0.17s;
}
.card:hover, .feature-item:hover, .service-card:hover, .testimonial-card:hover, .value-list li:hover, .reason-list li:hover {
  box-shadow: 0 8px 28px rgba(32,83,117,0.11);
  transform: translateY(-2px) scale(1.015);
}
.btn-primary, .btn-secondary {
  transition: background 0.18s, color 0.16s, box-shadow 0.15s, transform 0.13s;
}
.btn-primary:active, .btn-secondary:active {
  transform: scale(0.97);
}
input[type="text"], input[type="email"], textarea {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  border: 1px solid #bccfe0;
  border-radius: 6px;
  padding: 10px 13px;
  width: 100%;
  margin-bottom: 18px;
  font-size: 1.06rem;
  background: #f6fbff;
  outline: none;
  color: #22364a;
  transition: border 0.14s;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border: 1.5px solid #67c6e3;
}

/* =====================================================
   VISUAL HIERARCHY & SPACING SYSTEM
   ===================================================== */
.section:not(:last-child), section:not(:last-child) {
  margin-bottom: 60px;
  border-radius: 18px;
}
.section, section {
  min-width: 0;
  margin-top: 0;
}
.card, .feature-item, .service-card, .testimonial-card {
  margin-bottom: 20px;
}

/**** Prevent content overlaps and ensure proper z-index ****/
.header, .mobile-menu, .cookie-banner, .cookie-modal { z-index: inherit; }

/*
  CRITICAL: No grid, no columns, flexbox only; margin/gap patterns obeyed.
*/