/* --- CSS RESET & NORMALIZE --- */
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body, html {
  height: 100%;
  font-size: 16px;
  font-family: 'Roboto', Arial, sans-serif;
  background: #181c2b;
  color: #F5F9FF;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #16A8C1;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F5F9FF;
}
ul, ol {
  list-style-position: outside;
  margin-left: 1.25em;
  margin-bottom: 1em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  color: #F5F9FF;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
h1 { font-size: 2.5rem; font-weight: 700; margin-bottom: 16px; }
h2 { font-size: 2rem; font-weight: 700; margin-bottom: 15px; }
h3 { font-size: 1.4rem; font-weight: 600; margin-bottom: 10px; }
h4 { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; color: #16A8C1; }
strong { font-weight: 700; }

/* --- LAYOUT CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.text-section {
  background: rgba(35,43,67,0.98);
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(22,168,193,0.08);
  padding: 32px 28px;
  margin-bottom: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #232B43;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(22,168,193,0.12);
  transition: box-shadow 0.22s, transform 0.15s;
  overflow: hidden;
}
.card:hover {
  box-shadow: 0 6px 32px 0 #16A8C1;
  transform: translateY(-6px) scale(1.02);
  z-index: 2;
}
.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;
  background: #F5F9FF;
  color: #232B43;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(35,43,67,0.13);
  padding: 20px;
  margin-bottom: 20px;
  font-size: 1.05rem;
  flex-direction: column;
  min-width: 230px;
  transition: box-shadow 0.23s, transform 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px 0 #16A8C1;
  transform: translateY(-3px) scale(1.01);
}
.testimonial-card p {
  margin-bottom: 8px;
  color: #232B43;
  font-size: 1.05rem;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #16A8C1;
  font-weight: 600;
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(112deg, #232B43 72%, #16A8C1 120%);
  padding: 64px 0 56px;
  display: flex;
  align-items: center;
}
.hero h1 {
  font-size: 2.5rem;
  color: #F5F9FF;
  text-shadow: 0 2px 20px #16A8C1, 0 1px 2px #181c2b;
  line-height: 1.18;
  margin-bottom: 14px;
}
.hero p {
  color: #B6E7FC;
  font-size: 1.16rem;
  margin-bottom: 22px;
  max-width: 590px;
}

/* --- PRIMARY BUTTONS --- */
.btn-primary, .btn-primary:visited {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  background: linear-gradient(90deg, #16A8C1 60%, #23d4eb 100%);
  color: #232B43 !important;
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  border-radius: 24px;
  font-weight: 700;
  font-size: 1.09rem;
  letter-spacing: 0.03em;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(22,168,193,0.16);
  transition: background 0.23s, color 0.2s, box-shadow 0.2s, transform 0.17s;
  margin-top: 5px;
}
.btn-primary:hover, .btn-primary:focus {
  background: #0ef7f4;
  color: #181c2b !important;
  box-shadow: 0 8px 32px 0 #16A8C1;
  transform: scale(1.05);
}

/* --- FEATURES GRID --- */
.features-grid, .team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.features-grid > div, .team-grid > div {
  background: #232B43;
  border-radius: 14px;
  box-shadow: 0 1px 8px 0 #16A8C1;
  padding: 28px 22px;
  flex: 1 1 240px;
  min-width: 220px;
  margin-bottom: 20px;
  transition: box-shadow 0.19s, transform 0.15s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.features-grid > div:hover, .team-grid > div:hover {
  box-shadow: 0 8px 28px #16A8C1;
  transform: translateY(-4px) scale(1.02);
  z-index: 1;
}
.features-grid img, .team-grid img {
  height: 44px;
  width: 44px;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 8px #16A8C1aa);
}
.features-grid h3 {
  font-size: 1.2rem;
  color: #16A8C1;
  margin-bottom: 7px;
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
}
.tag {
  background: #16A8C1;
  color: #232B43;
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-size: .92rem;
  font-weight: 600;
  border-radius: 8px;
  padding: 3px 12px;
  margin-top: 10px;
  margin-bottom: 7px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* --- LISTS & ICONS --- */
.text-section ul, .text-section ol {
  margin-bottom: 14px;
}
.text-section ul li, .text-section ol li {
  margin-bottom: 9px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.08rem;
}
.text-section ul li img {
  width: 22px;
  height: 22px;
  vertical-align: middle;
}
.text-section ol {
  padding-left: 1.2em;
}

/* --- MAP Placeholder (Kontakt) --- */
.map-placeholder {
  background: #232B43;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  gap: 15px;
  font-size: 1.03rem;
  color: #16A8C1;
  margin-top: 18px;
  box-shadow: 0 2px 8px #16A8C1aa;
}
.map-placeholder img {
  height: 32px;
  width: 32px;
}

/* --- CTA Section --- */
.cta {
  background: linear-gradient(87deg, #16A8C1 10%, #232B43 88%);
  box-shadow: 0 2px 16px 0 #16A8C150;
  border-radius: 16px;
  padding: 32px 0;
  margin-bottom: 60px;
}
.cta h2, .cta p {
  color: #232B43;
  background-color: #F5F9FF;
}
.cta .btn-primary {
  background: #232B43;
  color: #16A8C1 !important;
  border: 2px solid #16A8C1;
}
.cta .btn-primary:hover {
  background: #F5F9FF;
  color: #232B43 !important;
  box-shadow: 0 0 18px #16A8C1;
}

/* --- FOOTER --- */
footer {
  background: #181c2b;
  color: #90b6c9;
  padding: 38px 0 12px;
  margin-top: 40px;
  font-size: 0.97rem;
}
.footer-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 12px;
}
.footer-links a {
  color: #16A8C1;
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-size: 0.98em;
  font-weight: bold;
  letter-spacing: .5px;
  transition: color 0.18s, text-shadow 0.18s;
}
.footer-links a:hover {
  color: #F5F9FF;
  text-shadow: 0 1px 2px #16A8C1cc;
}
.footer-address {
  margin-bottom: 12px;
}
.newsletter {
  margin-bottom: 12px;
}

/* --- HEADER & PRIMARY NAV --- */
header {
  width: 100%;
  background: #232B43;
  box-shadow: 0 2px 24px 0 rgba(35,43,67,0.16);
  position: relative;
  z-index: 20;
}
header .container {
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
header img {
  height: 40px;
}
nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
nav a {
  color: #F5F9FF;
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.2px;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s, box-shadow 0.14s;
}
nav a:hover, nav a:focus {
  background: #16A8C1;
  color: #232B43;
}
nav .btn-primary {
  margin: 0 0 0 10px;
  box-shadow: 0 4px 20px #16A8C130;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  color: #16A8C1;
  font-size: 2.2rem;
  border: none;
  cursor: pointer;
  margin-left: 16px;
  transition: color 0.16s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: #F5F9FF;
}

/* --- MOBILE NAV & OVERLAY --- */
.mobile-menu {
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: #232B43;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.52,.41,.47,.87);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0 0 0 0;
  box-shadow: -10px 0 30px #16A8C1;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: -20px 0 80px #16A8C1;
}
.mobile-menu-close {
  background: none;
  color: #F5F9FF;
  font-size: 2.3rem;
  border: none;
  margin-top: 22px;
  margin-right: 28px;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #16A8C1;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  padding: 40px 40px 0 36px;
  gap: 20px;
  font-size: 1.22rem;
}
.mobile-nav a {
  color: #16A8C1;
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  border-radius: 10px;
  padding: 12px 6px;
  transition: background 0.19s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #16A8C1;
  color: #232B43;
}
@media (max-width: 1040px) {
  .container {
    max-width: 960px;
    padding: 0 15px;
  }
  nav {
    gap: 15px;
  }
}

@media (max-width: 820px) {
  .container {
    max-width: 92vw;
    padding: 0 8px;
  }
}
@media (max-width: 900px) {
  .features-grid, .team-grid {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    align-items: center;
    height: 62px;
  }
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .features-grid, .team-grid {
    flex-direction: column;
    gap: 20px;
  }
  .features-grid > div, .team-grid > div {
    min-width: 180px;
    width: 100%;
    padding: 21px 13px;
  }
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .section {
    margin-bottom: 32px;
    padding: 18px 4px;
  }
  .text-section {
    padding: 20px 10px;
  }
  .card-container {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    font-size: 1rem;
    padding: 16px;
    min-width: 180px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .cta {
    padding: 21px 0;
  }
}
@media (max-width: 500px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.19rem; }
  .hero { padding: 44px 0 22px; }
  .features-grid > div, .team-grid > div { padding: 10px 7px; }
  .container { padding: 0 3px; }
}

/* --- COOKIES CONSENT BANNER --- */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  width: 100vw;
  background: #181c2b;
  color: #F5F9FF;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px 18px 16px 18px;
  z-index: 12000;
  box-shadow: 0 -4px 28px #16A8C1aa;
  font-size: 1rem;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  animation: slideInBottom 0.5s;
}
@keyframes slideInBottom {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-btn-group {
  display: flex;
  gap: 16px;
  flex-direction: row;
}
.cookie-btn {
  background: #16A8C1;
  color: #232B43;
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-size: 1.03rem;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  padding: 9px 23px;
  margin-right: 0;
  cursor: pointer;
  transition: background 0.18s, color 0.13s, box-shadow 0.18s, transform 0.12s;
  box-shadow: 0 1px 6px #16A8C1bb;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #23d4eb;
  color: #181c2b;
  box-shadow: 0 1px 16px #16A8C1cc;
  transform: scale(1.05);
}
.cookie-btn.cookie-settings {
  background: #232B43;
  color: #16A8C1;
  border: 1.5px solid #16A8C1;
}
.cookie-btn.cookie-settings:hover, .cookie-btn.cookie-settings:focus {
  background: #16A8C1;
  color: #232B43;
}
@media(max-width: 700px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 10px 4px 7px 6px;
    font-size: 0.98rem;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  .cookie-btn-group { justify-content: flex-end; }
}

/* --- COOKIE SETTINGS MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  z-index: 13000;
  background: rgba(35,43,67,0.89);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.4s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #232B43;
  color: #F5F9FF;
  border-radius: 18px;
  box-shadow: 0 8px 48px #16A8C1ee;
  max-width: 410px;
  width: 94vw;
  padding: 36px 28px 23px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 1rem;
  animation: modalZoomIn 0.35s;
}
@keyframes modalZoomIn {
  from { transform: scale(0.85); }
  to { transform: scale(1); }
}
.cookie-modal h2 {
  color: #16A8C1;
  margin-bottom: 8px;
  margin-top: 0;
  font-size: 1.33rem;
}
.cookie-modal label {
  cursor: pointer;
  font-size: 1.05rem;
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.cookie-modal input[type="checkbox"][disabled] {
  accent-color: #b2c9d6;
  cursor: not-allowed;
}
.cookie-modal input[type="checkbox"]:not([disabled]) {
  accent-color: #16A8C1;
  cursor: pointer;
}
.cookie-modal .cookie-btn-group {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 13px;
  right: 17px;
  background: none;
  border: none;
  color: #F5F9FF;
  font-size: 1.23rem;
  cursor: pointer;
  transition: color 0.2s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #16A8C1;
}

/* --- GENERAL SPACING & TYPOGRAPHY HIERARCHY --- */
body {
  font-size: 16px;
}
.text-section h1, .text-section h2, .text-section h3, .text-section h4 {
  color: #16A8C1;
}
.text-section ul li, .text-section ol li {
  color: #B6E7FC;
  font-weight: 400;
}
.text-section h2, .text-section h3 {
  margin-top: 10px;
  margin-bottom: 10px;
}

/* --- MISC DESIGN ELEMENTS --- */
hr {
  border: none;
  border-bottom: 1.5px solid #16A8C1;
  margin: 32px 0;
}

::-webkit-scrollbar {
  width: 7px;
  background: #181c2b;
}
::-webkit-scrollbar-thumb {
  background: #16A8C1;
  border-radius: 4px;
}

/* --- FORMS --- */
input, textarea, select {
  background: #232B43;
  color: #F5F9FF;
  border: 1.5px solid #16A8C1;
  border-radius: 9px;
  padding: 9px 13px;
  margin-bottom: 12px;
  font-size: 1rem;
  transition: border 0.17s, box-shadow 0.14s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #23d4eb;
  outline: none;
  box-shadow: 0 2px 7px #16A8C1cc;
}
label { color: #B6E7FC; font-size: 1.08rem; }

/* --- VISUAL EFFECTS --- */
.card, .features-grid > div, .team-grid > div {
  position: relative;
  box-shadow: 0 2px 16px 0 #16A8C1cc;
  overflow: hidden;
}
.card:before, .features-grid > div:before, .team-grid > div:before {
  content: '';
  display: block;
  position: absolute;
  z-index: 0;
  left: -40%;
  top: -60%;
  width: 180%;
  height: 220%;
  pointer-events: none;
  background: radial-gradient(circle at 20% 90%, #16A8C1 0%, transparent 60%);
  opacity: 0.06;
}

.card > *, .features-grid > div > *, .team-grid > div > * {
  position: relative;
  z-index: 1;
}

/* --- TYPOGRAPHY SETTINGS FOR ORBITRON/ROBOTO --- */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700&family=Roboto:wght@400;500;700&display=swap');

body, input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
}
h1, h2, h3, h4, nav a, .btn-primary, .mobile-nav a, .tag {
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  text-transform: none;
}

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