/* =====================================================
   RESET & NORMALIZE (mobile-first baseline)
======================================================*/
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  background: #fff;
  color: #151515;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.65;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
img, svg {
  max-width: 100%;
  display: block;
}
ull, ol {
  list-style: none;
}
a {
  color: #1A2442;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #52B3D9;
  outline-offset: 2px;
}

/* =====================================================
   TYPOGRAPHY – Monochrome Sophisticated 
======================================================*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #1A2442;
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: 0.03em;
}
h1 {
  font-size: 2.625rem; /* 42px */
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem; /* 32px */
  margin-bottom: 14px;
}
h3 {
  font-size: 1.375rem; /* 22px */
  margin-bottom: 14px;
}
h4 {
  font-size: 1.125rem; /* 18px */
}
p, li, dd {
  font-size: 1rem;
  color: #232323;
}
strong, b {
  font-weight: 600;
}


/* =====================================================
   CONTAINERS, SECTIONS & LAYOUTS
======================================================*/
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0px 8px 28px 0 rgba(16,24,40,0.12);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.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;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  flex: 1 1 260px;
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0px 2px 12px 0 rgba(0,0,0,0.08);
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0px 6px 24px 0 rgba(26,36,66,0.14);
  transform: translateY(-2px) scale(1.02);
  z-index: 2;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 24px 18px 24px;
}


/* ========================================================
   NAVIGATION – HEADER & MOBILE MENU
========================================================*/
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(10,20,40,0.06);
  position: relative;
  z-index: 101;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: flex-start;
  padding: 20px 0;
}
header nav .logo {
  margin-right: 26px;
  display: flex;
  align-items: center;
  padding: 0;
  transition: opacity 0.2s;
}
header nav .logo img {
  height: 36px;
  width: auto;
}
header nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #191919;
  margin-right: 0;
  transition: color 0.16s;
  padding: 8px 14px;
  border-radius: 6px;
  position: relative;
}
header nav a:not(.cta-primary):hover,
header nav a:not(.cta-primary):focus {
  color: #1A2442;
  background: #F2F2F2;
}
.cta-primary {
  background: #1A2442;
  color: #fff !important;
  font-weight: 600;
  border-radius: 6px;
  padding: 10px 20px;
  transition: background 0.19s, box-shadow 0.19s, color 0.19s;
  box-shadow: 0px 2px 8px 0 rgba(26,36,66,0.09);
  border: none;
  outline: none;
  display: inline-block;
}
.cta-primary:hover,
.cta-primary:focus {
  background: #232B3B;
  color: #FFF !important;
  box-shadow: 0px 4px 20px 0 rgba(26,36,66,0.15);
  text-decoration: none;
}

.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: none;
  border: none;
  color: #1A2442;
  cursor: pointer;
  margin-left: auto;
  padding: 10px;
  border-radius: 7px;
  transition: background 0.15s;
  z-index: 201;
  outline: none;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #e6e6e6;
}

.mobile-menu {
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(26,36,66,0.95);
  transform: translateX(-100vw);
  transition: transform 0.3s cubic-bezier(0.6,0.2,0.1,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 18px 20px 6px 30px;
  align-self: flex-end;
  cursor: pointer;
  outline: none;
  transition: color 0.15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #52B3D9;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 26px 32px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.3rem;
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.035em;
  padding: 12px 0;
  margin-bottom: 0;
  transition: color 0.15s;
  border-radius: 4px;
  outline: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #52B3D9;
  background: rgba(255,255,255,0.07);
}

@media (min-width: 992px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none!important;
  }
  header nav {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
}
@media (max-width: 991.9px) {
  header nav a:not(.logo) {
    display: none;
  }
}

/*
  Hamburger visible on mobile, nav links hidden, except brand .logo
*/
@media (max-width: 991.9px) {
  header nav .logo {
    margin-right: auto;
  }
}

/* =====================================================
   FOOTER
======================================================*/
footer {
  background: #101010;
  color: #f8f8f8;
  padding: 46px 0 25px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
footer .logo img {
  height: 38px;
  width: auto;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 16px 0;
  justify-content: center;
}
footer nav a {
  color: #dadada;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.18s, background 0.18s;
}
footer nav a:hover, footer nav a:focus {
  color: #fff;
  background: #232B3B;
}
footer p {
  color: #aaaaaa;
  font-size: 0.95rem;
}

/* =====================================================
   LISTS & ICON LISTS
======================================================*/
ul, ol {
  margin: 0 0 20px 0;
  padding: 0;
}
li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
li:last-child {
  margin-bottom: 0;
}
ul li img {
  height: 26px;
  width: 26px;
  object-fit: contain;
  filter: grayscale(1) brightness(0.22);
  opacity: 0.82;
}


/* =====================================================
   TABLES (Preistabellen)
======================================================*/
table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px 0;
  background: #fafbfc;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(26,36,66,0.04);
}
th, td {
  padding: 17px 18px;
  text-align: left;
  font-size: 1rem;
}
th {
  background: #1A2442;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.02em;
}
td {
  color: #232323;
  border-bottom: 1px solid #EBEBEB;
}
tr:last-child td {
  border-bottom: none;
}

/* =====================================================
   TESTIMONIALS
======================================================*/
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F2F2F2;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 3px 22px 0 rgba(26,36,66,0.07);
}
.testimonial-card p {
  font-size: 1.09rem;
  color: #191919;
  margin-bottom: 8px;
  font-style: italic;
}
.testimonial-card span {
  color: #1A2442;
  font-weight: 600;
  letter-spacing: 0.01em;
  font-size: 1rem;
}

/* === FAQ === */
dt {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  color: #1A2442;
  margin-top: 14px;
  margin-bottom: 4px;
  font-size: 1.11rem;
}
dd {
  margin-bottom: 10px;
  color: #232323;
  font-size: 1rem;
}

/* =====================================================
   BUTTONS
======================================================*/
button, .btn {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  padding: 10px 22px;
  background: #1A2442;
  color: #FFF;
  font-weight: 600;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s, box-shadow 0.18s, color 0.16s, outline 0.16s;
  box-shadow: 0 2px 7px 0 rgba(26,36,66,0.08);
  outline: none;
}
button:hover, button:focus, .btn:hover, .btn:focus {
  background: #232B3B;
  color: #e2e2e2;
}


/* =====================================================
   MICRO-INTERACTIONS & EFFECTS
======================================================*/
a, button {
  transition: background 0.18s, color 0.17s, box-shadow 0.15s, outline 0.16s;
}
section, .card, .testimonial-card {
  transition: box-shadow 0.22s, transform 0.18s;
}
h1, h2, h3, h4, h5 {
  transition: color 0.18s;
}

/* =====================================================
   COOKIE CONSENT BANNER & MODAL
======================================================*/
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #232B3B;
  color: #fff;
  padding: 22px 18px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 -4px 30px 0 rgba(16,28,44,0.18);
  gap: 18px;
  transition: transform 0.38s cubic-bezier(0.65,0.12,0.43,1), opacity 0.22s;
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner p {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0;
}
.cookie-banner-action {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cookie-banner button,
.cookie-banner .btn {
  background: #fff;
  color: #1A2442;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(10,24,44,0.09);
  border: none;
  margin: 0;
  font-weight: 600;
}
.cookie-banner button:hover, .cookie-banner .btn:hover {
  background: #dde7f2;
  color: #1A2442;
}
.cookie-banner .btn-settings {
  background: transparent;
  color: #52B3D9;
  border: 1px solid #52B3D9;
  transition: background 0.16s, color 0.16s;
}
.cookie-banner .btn-settings:hover {
  background: #52B3D9;
  color: #fff;
}

/*
   COOKIE MODAL
*/
.cookie-modal-backdrop {
  position: fixed;
  z-index: 3100;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(26,36,66,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.cookie-modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  border-radius: 14px;
  min-width: 320px;
  max-width: 95vw;
  box-shadow: 0px 8px 40px 0 rgba(16,24,40,0.32);
  padding: 36px 26px 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 21px;
  color: #1A2442;
}
.cookie-modal h2 {
  color: #1A2442;
  font-size: 1.4rem;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 10px;
}
.cookie-modal .cookie-toggle {
  appearance: none;
  width: 38px;
  height: 20px;
  background: #b6bacb;
  border-radius: 40px;
  position: relative;
  cursor: pointer;
  outline: none;
  transition: background 0.17s;
  margin-top: 1px;
}
.cookie-modal .cookie-toggle:checked {
  background: #52B3D9;
}
.cookie-modal .cookie-toggle:before {
  content: '';
  display: block;
  position: absolute;
  left: 2px;
  top: 2px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(20,22,50,0.06);
  transition: left 0.16s;
}
.cookie-modal .cookie-toggle:checked:before {
  left: 20px;
}
.cookie-modal .cookie-category label {
  font-size: 1.03rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  color: #232323;
  margin-bottom: 0;
}
.cookie-modal .cookie-category .cookie-toggle:disabled + label {
  color: #B6BACB;
  font-style: italic;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  margin-top: 16px;
}
.cookie-modal .btn-cancel {
  background: transparent;
  color: #1A2442;
  border: 1px solid #B6BACB;
  font-weight: 600;
}
.cookie-modal .btn-cancel:hover {
  background: #EBEBEB;
}
.cookie-modal .btn-save {
  background: #1A2442;
  color: #fff;
}
.cookie-modal .btn-save:hover {
  background: #232B3B;
  color: #fff;
}

/* =====================================================
   RESPONSIVE DESIGN (mobile first)
======================================================*/
@media (max-width: 1023px) {
  .container {
    max-width: 96vw;
    padding-left: 12px;
    padding-right: 12px;
  }
  h1 {
    font-size: 2.1rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.12rem;
  }
  .section {
    padding: 32px 10px;
    margin-bottom: 40px;
  }
  .content-wrapper, .text-section {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding-left: 7px;
    padding-right: 7px;
  }
  .section {
    margin-bottom: 20px;
    padding: 24px 4px;
    border-radius: 9px;
  }
  .content-wrapper {
    gap: 10px;
    padding: 4px 1px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  ul li img {
    height: 22px;
    width: 22px;
  }
  .testimonial-card {
    padding: 17px 12px;
  }
}

/* Ensure consistent .feature-item layout for icons + text */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* Utility
------------------------------------------------------*/
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-16 { margin-top: 16px !important; }
.mb-16 { margin-bottom: 16px !important; }
.mt-32 { margin-top: 32px !important; }
.mb-32 { margin-bottom: 32px !important; }

/* Hide cookie banner on print */
@media print {
  .cookie-banner, .cookie-modal-backdrop {
    display: none !important;
  }
}

/* ======================
   ACCESSIBILITY & FOCUS
====================== */
a:focus-visible, button:focus-visible, .cta-primary:focus-visible {
  outline: 2.5px solid #52B3D9;
  outline-offset: 1.5px;
}

/* ======================
   MISC. CLASSES
====================== */
hr {
  border: 0; height: 1px;
  background: #D4D4D4;
  margin: 30px 0 35px 0;
}

/*
----------------------------------------------------
  MONOCHROME SOPHISTICATED EXTRA ACCENTS (for brand touch)
---------------------------------------------------- */
.section {
  border: 1.5px solid #ECEEEE;
}
.card {
  border: 1.5px solid #ECEEEE;
}
.testimonial-card {
  border: 1.5px solid #E3E3E3;
}

/* FAQ Quicklinks */
.content-wrapper ul li a {
  color: #1A2442;
  font-weight: 600;
  text-decoration: underline;
}
/* Table alt row coloring */
tbody tr:nth-child(even) td {
  background: #F6F7F7;
}

table td strong {
  color: #1A2442;
}

/* ======================
   END OF STYLE.CSS
====================== */
