/* Brillium Wave Stuttgart – Scandinavian Clean Responsive Flexbox CSS */

/* =====================
   CSS RESET & BASELINE
   ===================== */
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, 
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 {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background: #F4F6F8;
  color: #284570;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #284570;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F7B32B;
  outline: none;
}
ul, ol {
  list-style: none;
}
strong, b {
  font-weight: 700;
}
p + p {
  margin-top: 12px;
}

/* =====================
   TYPOGRAPHY
   ===================== */
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, Verdana, sans-serif;
  color: #284570;
  margin-bottom: 16px;
  line-height: 1.18;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-top: 28px;
}
h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 24px;
}
h4 {
  font-size: 1.1rem;
  font-weight: 500;
}
p, .subheadline, .footer-contact, li {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
.subheadline {
  color: #43689B;
  font-size: 1.125rem;
  margin-bottom: 20px;
}

/* =====================
   CONTAINERS & LAYOUT
   ===================== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 18px 0 12px 0;
}
.content-wrapper {
  margin-bottom: 40px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background-color: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(40,69,112,0.05), 0 1.5px 2.5px rgba(100,120,135,0.06);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 16px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.card-container, .feature-grid, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.card, .feature-grid > div {
  background: #F4F6F8;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(40, 69, 112, 0.04);
  padding: 26px 22px 18px 22px;
  position: relative;
  margin-bottom: 20px;
  min-width: 230px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.16s;
}
.card:hover, .feature-grid > div:hover {
  box-shadow: 0 6px 24px rgba(40,69,112,0.10);
  transform: translateY(-2px) scale(1.02);
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 18px 0 26px 0;
}
.usps {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 26px;
}
.usps li {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(40,69,112,0.04);
  padding: 12px 20px;
  font-size: 1rem;
  color: #284570;
  margin-bottom: 0;
  min-width: 220px;
}

.highlight-box {
  background: #EAF0F5;
  border-left: 6px solid #F7B32B;
  padding: 22px 24px 16px 20px;
  margin: 26px 0 22px 0;
  border-radius: 10px;
  font-size: 1rem;
}

/* =====================
   HEADER & NAVIGATION
   ===================== */
header {
  background: #fff;
  border-bottom: 1px solid #e8eaec;
  box-shadow: 0 2px 12px rgba(40,69,112,0.04);
  position: sticky;
  top: 0;
  z-index: 30;
}
header img {
  height: 44px;
  width: auto;
  display: block;
  vertical-align: middle;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Verdana, sans-serif;
  color: #284570;
  font-weight: 500;
  font-size: 1rem;
  padding: 2px 4px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #fff;
  background: #284570;
  outline: none;
}
.cta-btn {
  font-family: 'Montserrat', Arial, Verdana, sans-serif;
  background: #F7B32B;
  color: #284570;
  border: none;
  border-radius: 8px;
  padding: 11px 28px;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 2px 11px rgba(247,179,43,0.12);
  cursor: pointer;
  transition: background 0.16s, color 0.16s, transform 0.15s;
  margin-left: 8px;
  text-align: center;
  display: inline-block;
  letter-spacing: 0.02em;
}
.cta-btn:hover,
.cta-btn:focus {
  background: #284570;
  color: #fff;
  transform: scale(1.05);
}

/* =====================
   MOBILE MENU
   ===================== */
.mobile-menu-toggle {
  display: none;
  border: none;
  background: #EAF0F5;
  font-size: 2.1rem;
  padding: 6px 14px;
  color: #284570;
  border-radius: 8px;
  cursor: pointer;
  margin-left: 8px;
  transition: background 0.16s, color 0.16s;
  z-index: 1001;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #F7B32B;
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 1000;
  background: rgba(244,246,248,0.97);
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.7,0,0.3,1);
  will-change: transform;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #fff;
  border: none;
  font-size: 2rem;
  color: #284570;
  padding: 16px 20px;
  margin-top: 14px;
  margin-right: 8px;
  border-radius: 8px;
  cursor: pointer;
  z-index: 1101;
  align-self: flex-end;
  box-shadow: 0 1.5px 5px rgba(40,69,112,0.08);
  transition: background 0.15s, color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F7B32B;
  color: #fff;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 0 28px 40px 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Verdana, sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: #284570;
  padding: 10px 0;
  transition: color 0.16s, background 0.16s;
  width: 100%;
  border-radius: 6px;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #F7B32B;
  color: #fff;
}

/* ============
   MAIN CONTENT
   ============ */
main {
  width: 100%;
  min-height: 60vh;
  margin-bottom: 32px;
}

/* Cards, Features */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin: 16px 0;
}
.feature-grid > div {
  min-width: 210px;
  flex: 1 1 220px;
  align-items: flex-start;
  box-shadow: 0 2px 12px rgba(40,69,112,0.03);
  border: 1px solid #EAF0F5;
  background: #fff;
}
.feature-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  margin-top: 2px;
}

/* ============
   TESTIMONIALS
   ============ */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-direction: column;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 18px rgba(40,69,112,0.08);
  padding: 20px 28px 16px 28px;
  margin-top: 28px;
  margin-bottom: 20px;
  max-width: 640px;
  color: #284570;
  font-size: 1.07rem;
  line-height: 1.7;
  border-left: 6px solid #F7B32B;
}
.testimonial-card p {
  margin: 0;
  font-size: 1.1rem;
  color: #284570;
  font-style: italic;
}
.testimonial-card span {
  color: #43689B;
  font-weight: 500;
  margin-top: 6px;
  font-size: 0.98rem;
}

/* ===========
   FOOTER
   =========== */
footer {
  background: #fff;
  border-top: 2px solid #EAF0F5;
  margin-top: 42px;
  padding: 38px 0 20px 0;
  box-shadow: 0 -2px 12px rgba(40,69,112,0.03);
}
footer .container {
  display: flex;
  gap: 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  color: #284570;
  font-weight: 600;
}
.footer-brand img {
  height: 36px;
  width: auto;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  color: #43689B;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  transition: color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F7B32B;
}
.footer-contact {
  font-size: 0.95rem;
  color: #43689B;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.footer-contact img {
  height: 16px;
  width: auto;
  margin-right: 7px;
  vertical-align: middle;
}

/* ================
   LEGAL SECTIONS
   ================ */
.content-wrapper.legal {
  background: #fff;
  border: 1px solid #e9ebf0;
  border-radius: 14px;
  box-shadow: none;
  padding: 34px 22px 27px 22px;
  margin-bottom: 12px;
}
.content-wrapper.contact {
  background: #F4F6F8;
  border-radius: 16px;
  box-shadow: 0 0.5px 4px rgba(40,69,112,0.03);
  padding: 34px 22px 22px 22px;
  margin-bottom: 12px;
}

/* ===============
   MAPS + EMBEDS
   =============== */
.map-embed {
  background: #EAF0F5;
  border-radius: 10px;
  padding: 18px 18px 13px 16px;
  margin-top: 28px;
  margin-bottom: 18px;
}

/* ===============
   COOKIES BANNER
   =============== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-top: 2px solid #EAF0F5;
  box-shadow: 0 -2px 20px rgba(40,69,112,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 24px 22px 24px;
  z-index: 2000;
  animation: cookie-banner-in 0.5s ease;
}
@keyframes cookie-banner-in {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner__text {
  flex: 1 1 auto;
  color: #284570;
  font-size: 1.03rem;
  margin-right: 16px;
}
.cookie-banner__actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-btn, .cookie-settings-btn {
  background: #F7B32B;
  color: #284570;
  border: none;
  border-radius: 8px;
  padding: 8px 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.14s, color 0.14s, transform 0.12s;
  box-shadow: 0 2px 7px rgba(247,179,43,0.07);
}
.cookie-btn.reject {
  background: #EAF0F5;
  color: #284570;
  border: 1.5px solid #43689B;
}
.cookie-btn:hover, .cookie-btn:focus, .cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #284570;
  color: #fff;
  transform: scale(1.06);
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  left: 0; right: 0;
  top: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(40,69,112,0.22);
  z-index: 2100;
  animation: fadein-modal 0.32s ease;
}
@keyframes fadein-modal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal__dialog {
  background: #fff;
  border-radius: 18px;
  padding: 36px 30px 30px 30px;
  box-shadow: 0 6px 36px rgba(40,69,112,0.10);
  max-width: 400px;
  width: 92vw;
  display: flex;
  flex-direction: column;
  gap: 23px;
  animation: popin 0.27s cubic-bezier(0.4,1.3,0.2,1);
}
@keyframes popin {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal__close {
  background: none;
  border: none;
  color: #284570;
  font-size: 1.7rem;
  position: absolute;
  top: 18px;
  right: 26px;
  cursor: pointer;
}
.cookie-modal h3 {
  font-size: 1.35rem;
  color: #284570;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
}
.cookie-category label {
  font-size: 1rem;
  color: #43689B;
  font-weight: 500;
}
.cookie-toggle {
  width: 40px;
  height: 22px;
  background: #EAF0F5;
  border-radius: 12px;
  position: relative;
  margin-right: 6px;
  cursor: pointer;
  transition: background 0.18s;
  border: 1.1px solid #d9e0ea;
}
.cookie-toggle.active {
  background: #F7B32B;
}
.cookie-toggle span {
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 1.6px;
  left: 2px;
  transition: left 0.19s cubic-bezier(0.4,1.3,0.2,1);
  box-shadow: 0 1.5px 7px rgba(40,69,112,0.11);
}
.cookie-toggle.active span {
  left: 20px;
}
.cookie-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 18px;
}

/* =================
   MICRO INTERACTIONS
   ================= */
button, .cta-btn, .cookie-btn, .cookie-settings-btn {
  outline: none;
  transition: box-shadow 0.14s, transform 0.13s;
}
button:active, .cta-btn:active, .cookie-btn:active {
  transform: scale(0.98);
}

/* =====================
   FORM ELEMENTS, UL/OL
   ===================== */
input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 7px;
  border: 1.3px solid #D9E0EA;
  padding: 9px 14px;
  background: #F4F6F8;
  transition: border 0.13s;
}
input:focus, textarea:focus, select:focus {
  border: 1.3px solid #F7B32B;
  outline: none;
}
ul, ol {
  padding-left: 18px;
}
li {
  margin-bottom: 8px;
  color: #284570;
}
.text-section ul, .feature-list ul {
  list-style: disc inside;
  margin-bottom: 0;
}
.legal ul {
  list-style: disc inside;
  color: #284570;
  margin-top: 7px;
  margin-bottom: 7px;
}
.legal ul li {
  margin-bottom: 6px;
}

/* ============
   RESPONSIVE
   ============ */
@media (max-width: 1020px) {
  .container { max-width: 96vw; }
  .footer-brand { font-size: 1rem; }
}
@media (max-width: 900px) {
  .feature-grid, .card-container, .content-grid {gap:16px;}
  .footer-brand img {height:28px;}
  .feature-grid > div {min-width:180px; padding: 20px 13px 13px 13px;}
}
@media (max-width: 768px) {
  h1 {font-size:1.6rem;}
  h2 {font-size:1.25rem;}
  h3 {font-size:1.07rem;}
  header .container {flex-direction: row;gap:10px;}
  .main-nav {display: none;}
  .cta-btn {font-size:1rem; padding: 10px 16px; margin-left: 2px;}
  .mobile-menu-toggle {display: block;}
  .container {padding-left: 8px; padding-right: 8px;}
  .content-wrapper, .section {padding:22px 6px; border-radius:8px;}
  .feature-grid, .card-container, .content-grid {gap:10px;}
  .feature-grid > div {min-width:140px; padding: 14px 7px 8px 7px; font-size: 0.98rem;}
  .usps {gap: 12px 0;}
  .usps li {min-width: 120px; font-size: 0.93rem;}
  .card, .feature-grid > div {margin-bottom: 12px;}
  .testimonial-card {padding: 14px 9px 10px 10px;}
  .cookie-banner {padding: 17px 7px; flex-direction: column; align-items: flex-start; gap: 8px;}
  .cookie-banner__text {margin-right: 0;font-size:0.99rem;}
  .cookie-banner__actions {gap:6px;}
  footer .container {flex-direction: column; gap: 12px; align-items: flex-start;}
}
@media (max-width: 550px) {
  .section{padding:11px 2px; margin-bottom:24px;}
  .text-section{gap:10px;}
  .highlight-box{padding: 12px 8px; font-size:0.96rem;}
  .map-embed{padding: 7px 5px 7px 5px;}
  .feature-grid, .card-container, .content-grid {flex-direction: column;gap: 7px;}
  .feature-grid > div, .card {min-width:90px; padding: 10px 6px 5px 6px;}
}
.text-image-section {
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 769px) {
  .text-image-section {flex-direction: row; align-items: center;}
}

/* Utility: Hide visually, but accessible to screenreaders */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* END */