/* ===============================
  CSS RESET & BASE
=============================== */
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 {box-sizing: border-box; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;}
*, *:before, *:after {box-sizing: inherit;}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #18415A;
  background: #F3F5F7;
  line-height: 1.5;
  min-height: 100vh;
  font-size: 16px;
}
img {max-width: 100%; display: block;}
a {color: #18415A; text-decoration: none; transition: color .2s;}
a:focus {outline: 2px dashed #18415A; outline-offset: 2px;}
ul, ol {list-style: none;}

/* ===============================
   SCANDINAVIAN CLEAN: COLORS & FONTS
=============================== */
:root {
  --primary: #18415A;
  --secondary: #F3F5F7;
  --accent: #F5A623;
  --heading-font: 'Montserrat', Arial, Helvetica, sans-serif;
  --body-font: 'Roboto', Arial, Helvetica, sans-serif;
  --card-bg: #fff;
  --border-color: #e1e5ea;
  --shadow: 0 2px 10px rgba(24,65,90,0.07);
  --radius: 14px;
  --transition: 0.22s cubic-bezier(.4,0,.2,1);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  letter-spacing: .01em;
  color: #18415A;
  line-height: 1.17;
  margin-bottom: 20px;
}
h1 {font-size: 2.5rem; margin-bottom: 24px;}
h2 {font-size: 2rem; margin-bottom: 20px;}
h3 {font-size: 1.5rem;}
h4 {font-size: 1.125rem;}
p {margin-bottom: 16px; line-height: 1.6; color: #2C3A47;}
strong {font-weight: 600;}

@media (max-width: 600px) {
  h1 {font-size: 2rem;}
  h2 {font-size: 1.4rem;}
}

/*********************************************
  LAYOUT CONTAINERS
*********************************************/
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.card {
  margin-bottom: 20px;
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 27px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--border-color);
  transition: box-shadow var(--transition), transform .13s;
}
.card:hover {
  box-shadow: 0 6px 26px rgba(32,52,68,0.10);
  transform: translateY(-2px) scale(1.012);
}

.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;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
  flex-direction: column;
  min-width: 230px;
  max-width: 620px;
  transition: box-shadow var(--transition), background .14s;
}
.testimonial-card p {
  font-size: 1.07rem;
  color: #18415A;
  margin-bottom: 10px;
}
.testimonial-card span {
  font-size: 0.97rem;
  color: #708597;
}
.testimonial-card strong {color: #18415A;}
.testimonial-card:hover {
  background: #F3F5F7;
  box-shadow: 0 8px 28px rgba(24,65,90,0.12);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

@media (max-width: 900px) {
  .content-grid, .card-container {gap: 16px;}
  .section {padding: 28px 8px; margin-bottom: 38px;}
}
@media (max-width: 700px) {
  .content-wrapper, .container {padding: 0 6px;}
  .testimonial-card {padding: 14px;}
}

/*********************************************
  HEADER & NAVIGATION
*********************************************/
header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 99;
  box-shadow: 0 1px 12px rgba(24,65,90,0.03);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
  height: 74px;
  min-height: 64px;
}
.logo img {height: 42px; display: block;}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-left: 12px;
}
.main-nav a {
  font-family: var(--body-font);
  color: #18415A;
  font-size: 1rem;
  padding: 8px 6px;
  border-radius: 7px;
  transition: background var(--transition), color var(--transition);
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--secondary);
  color: var(--accent);
}
.cta-header {
  margin-left: auto;
  margin-right: 16px;
}

/*********************
  MOBILE NAVIGATION
*********************/
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: #18415A;
  cursor: pointer;
  margin-left: auto;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(24, 65, 90, 0.95);
  z-index: 9999;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 32px 24px 18px 24px;
  transform: translateX(-100vw);
  opacity: 0;
  transition: transform 0.34s cubic-bezier(0.46,0.03,0.52,0.96), opacity .18s;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.4rem;
  margin-bottom: 22px;
  align-self: flex-end;
  cursor: pointer;
  transition: color .15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {color: var(--accent);}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.26rem;
  font-family: var(--heading-font);
  letter-spacing: 0.01em;
  padding: 9px 0;
  border-radius: 9px;
  line-height: 1.3;
  transition: background 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(255,255,255,0.09);
  color: var(--accent);
}

@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .cta-header {
    display: none;
  }
}
@media (max-width: 700px) {
  header .container {gap: 8px;}
  .logo img {height: 32px;}
}

/*********************************************
  BUTTONS
*********************************************/
.btn-primary, .btn-secondary {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 1.07rem;
  letter-spacing: .01em;
  border-radius: 24px;
  padding: 13px 32px;
  box-shadow: 0 1px 14px rgba(24,65,90,0.03);
  margin-top: 10px;
  cursor: pointer;
  border: none;
  transition: background 0.18s, color 0.13s, transform .11s;
  outline: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--accent);
  color: #18415A;
  transform: translateY(-2px) scale(1.025);
}
.btn-secondary {
  background: #fff;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  padding: 12px 28px;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--accent);
  transform: translateY(-2px) scale(1.02);
}

/*********************************************
  HERO SECTION
*********************************************/
.hero {
  background: linear-gradient(102deg, #fff 50%, var(--secondary) 100%);
  padding-top: 60px;
  padding-bottom: 35px;
  margin-bottom: 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}
.hero p {
  font-size: 1.17rem;
  color: #465668;
  margin-bottom: 24px;
}
@media (max-width: 900px) {
  .hero {padding-top: 32px; padding-bottom: 20px;}
  .hero h1 {font-size: 2rem;}
}

/*********************************************
  FEATURES, ICON ROWS, LISTS, USPs
*********************************************/
.features, .features-why, .features-simple-process, .features-pricing, .features-contact {
  margin-bottom: 60px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(24,65,90,0.035);
}
.features .icon-row, .features-why .icon-row, .features-simple-process .icon-row, .features-contact .icon-row {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  margin: 20px 0 12px 0;
}
.icon-row > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  font-family: var(--heading-font);
  font-size: 1.09rem;
  font-weight: 600;
  color: #18415A;
}
.icon-row img {
  width: 34px; height: 34px;
  margin-bottom: 3px;
}
.usp-list {
  margin-block: 18px 8px;
  padding-left: 10px;
}
.usp-list li, .features ul li, .steps li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #2C3A47;
  padding-left: 0.5em;
  position: relative;
}
.usp-list li::before, .features ul li::before, .steps li::before {
  content: "";
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
}

/*********************************************
  TESTIMONIALS & SLIDERS
*********************************************/
.testimonials {
  background: var(--secondary);
  margin-bottom: 60px;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: flex-start;
  margin-top: 18px;
}
@media (max-width: 970px) {
  .testimonial-slider {flex-direction: column; gap: 18px;}
}

/*********************************************
  FOOTER
*********************************************/
footer {
  width: 100%;
  background: #fff;
  border-top: 1px solid var(--border-color);
  color: #18415A;
  box-shadow: 0 -1px 17px rgba(24,65,90,0.04);
  padding: 24px 0 10px 0;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.footer-brand img {
  height: 42px; margin-bottom: 10px;
}
.footer-nav {
  display: flex;
  gap: 18px;
  margin-bottom: 7px;
}
.footer-nav a {
  color: #18415A;
  font-size: 0.99rem;
  opacity: 0.95;
  transition: color 0.15s, opacity 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {color: var(--accent); opacity: 1;}
.footer-contact {
  color: #465668;
  font-size: 0.97rem;
  opacity: 0.93;
  margin-bottom: 2px;
  text-align: center;
}
footer small {
  font-size: 0.91rem;
  opacity: 0.77;
}

/*********************************************
  TABLES: PRICING, SERVICE
*********************************************/
.price-list {
  width: 100%;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  margin-bottom: 24px;
  font-size: 1rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.price-list th, .price-list td {
  padding: 14px 10px;
  text-align: left;
}
.price-list thead tr {
  background: var(--secondary);
  border-bottom: 1px solid var(--border-color);
}
.price-list tbody tr {
  border-bottom: 1px solid var(--border-color);
}
.price-list td {
  color: #18415A;
}
@media (max-width: 600px) {
  .price-list {font-size: 0.98rem;}
  .price-list th, .price-list td {padding: 10px 6px;}
}

/*********************************************
  ADDRESS, CONTACT DETAILS, MAP
*********************************************/
address {
  font-style: normal;
  margin-bottom: 18px;
}
.contact-details ul, address ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 12px;
}
.contact-details img, address img {
  height: 19px; width: 19px;
  vertical-align: middle;
  margin-right: 8px;
  margin-bottom: -3px;
}
.contact-details a, address a {color: var(--primary); transition: color .17s;}
.contact-details a:hover, address a:hover {color: var(--accent);}

.map-embed {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.06rem;
  background: #EAF1F4;
  padding: 13px 20px;
  border-radius: 13px;
  color: #18415A;
}

/*********************************************
  LEGAL & THANK YOU PAGES
*********************************************/
.legal-section {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  padding: 44px 16px;
}
.legal-section .text-section {
  margin-top: 10px;
  font-size: 1.04rem;
  color: #2C3A47;
  line-height: 1.65;
}
.thank-you {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 44px 22px;
  margin-bottom: 60px;
  text-align: center;
}

/*********************************************
  COOKIES BANNER + MODAL
*********************************************/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fff;
  border-top: 2px solid var(--border-color);
  box-shadow: 0 -2px 22px rgba(24,65,90,0.07);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  gap: 18px;
  font-size: 1rem;
  transition: transform .28s;
}
.cookie-banner.hide {transform: translateY(100%); opacity: 0;}
.cookie-banner p {
  margin: 0 0 8px 0;
  color: #18415A;
  font-size: 1rem;
  max-width: 320px;
}
.cookie-btns {
  display: flex;
  gap: 12px;
  align-items: center;
}
.cookie-btn {
  background: var(--primary);
  color: #fff;
  font-family: var(--heading-font);
  padding: 9px 22px;
  border-radius: 21px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  margin-right: 0;
  transition: background .18s, color .13s, transform .16s;
}
.cookie-btn:focus {outline: 2px dashed var(--accent);}
.cookie-btn.accept {
  background: var(--accent);
  color: #18415A;
}
.cookie-btn.settings {
  background: #fff;
  color: var(--primary);
  border: 1.3px solid var(--primary);
}
.cookie-btn.reject {
  background: #fff1e1;
  color: var(--primary);
  border: 1.3px solid #ddc299;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--primary);
  color: #fff;
  transform: translateY(-1.5px);
}
.cookie-btn.reject:hover {background: #ffeedd; color: var(--primary); border-color: var(--accent);}
.cookie-btn.accept:hover {background: #18415A; color: #fff;}

@media (max-width: 600px) {
  .cookie-banner {flex-direction: column; align-items: flex-start; padding: 18px 6px 19px 8px;}
  .cookie-btns {gap: 6px;}
}

/***** Cookie Modal *****/
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 100000;
  transform: translate(-50%,-60%) scale(0.95);
  opacity: 0;
  pointer-events: none;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 12px 60px rgba(24,65,90,0.12);
  min-width: 340px;
  max-width: 95vw;
  padding: 36px 30px 18px 30px;
  transition: opacity .26s, transform .23s;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-modal.open {
  opacity: 1;
  transform: translate(-50%,-50%) scale(1);
  pointer-events: auto;
}
.cookie-modal h2 {
  font-size: 1.28rem;
  margin-bottom: 13px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-bottom: 7px;
  color: #18415A;
  font-family: var(--body-font);
  font-size: 1rem;
}
.cookie-toggle {
  appearance: none;
  width: 36px; height: 19px;
  border-radius: 15px;
  background: var(--secondary);
  border: 1.6px solid var(--border-color);
  position: relative;
  outline: none;
  transition: background .2s, border .2s;
  cursor: pointer;
}
.cookie-toggle:checked {
  background: var(--accent);
  border-color: var(--accent);
}
.cookie-toggle::before {
  content: "";
  display: block;
  width: 17px; height: 17px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: .5px; left: 1px;
  transition: left .23s;
  box-shadow: 0 1px 5px rgba(24,65,90,0.07);
}
.cookie-toggle:checked::before {left: 17px; background: #18415A;}
.cookie-modal .modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 16px;
  justify-content: flex-end;
}
.cookie-modal .btn-primary, .cookie-modal .btn-secondary {
  padding: 9px 20px;
}
.cookie-modal-close {
  position: absolute;
  right: 13px; top: 11px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #18415A;
  cursor: pointer;
  transition: color .13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {color: var(--accent);}

@media (max-width:430px) {
  .cookie-modal {min-width: 0; padding: 10vw 3vw 5vw 3vw;}
}

/*********************************************
  RESPONSIVE ADJUSTMENTS
*********************************************/
@media (max-width: 900px) {
  .content-grid, .card-container, .testimonial-slider, .icon-row {gap: 12px;}
  .section {padding: 18px 2px; margin-bottom: 30px;}
}
@media (max-width: 800px) {
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}
/*********************************************
  MISC/UTILITY
*********************************************/
.text-section {font-size: 1.08rem; color: #2C3A47; line-height: 1.65;}
.steps {display: flex; flex-wrap: wrap; gap: 18px; margin-bottom: 14px;}
@media (max-width:680px) {
  .steps {flex-direction: column; gap: 7px;}
}
.service-list, .leistungen-list {
  margin-bottom: 23px;
}
.service-list li, .leistungen-list li {
  background: #F3F5F7;
  padding: 12px 18px;
  border-radius: 9px;
  margin-bottom: 13px;
  font-size: 1.08rem;
  color: #18415A;
  box-shadow: 0 1px 7px rgba(24,65,90,0.03);
}
.leistungen-list span {
  color: #F5A623;
  font-size: 1.02rem;
  font-family: var(--body-font);
  margin-left: 8px;
}
/*********************************************
  TRANSITIONS, HOVER EFFECTS, MICRO-ANIMATIONS
*********************************************/
.btn-primary, .btn-secondary, .main-nav a, .card, .testimonial-card, .mobile-menu, .mobile-nav a, .footer-nav a, .cookie-btn, .cookie-btn.settings, .cookie-btn.reject, .cookie-btn.accept {
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), border var(--transition), transform .12s;
}

.card, .testimonial-card, .features, .section, .legal-section {
  transition: box-shadow .19s, background .13s, border .12s;
}

/* END OF CSS */
