/* ----------------------------------------------------------
   CSS RESET & BASELINE: Minimalist, Mobile-first
---------------------------------------------------------- */
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 {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  scroll-behavior: smooth;
  background: #fff;
}

body {
  background: #fff;
  color: #1a1a1a;
  min-height: 100vh;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  display: inline-block;
}

a {
  color: #225378;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover, a:focus {
  color: #43A047;
  outline: none;
}

/* Utility: Visually Hidden (for accessibility) */
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* ----------------------------------------------------------
   TYPOGRAPHY - Minimalist, Brand Spec
---------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: #225378;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 12px;
}

p, ul, ol, blockquote, pre, table {
  font-size: 1rem;
  color: #1a1a1a;
  margin-bottom: 18px;
  line-height: 1.7;
}

strong {
  font-weight: 600;
  color: #225378;
}

.subheadline {
  font-size: 1.125rem;
  color: #516073;
  margin-bottom: 28px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
}

blockquote {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  color: #225378;
  border-left: 3px solid #43A047;
  padding-left: 14px;
  margin: 0 0 16px 0;
  background: #f8fafb;
}

ol, ul {
  padding-left: 22px;
  margin-bottom: 22px;
}

ul.feature-list, ul.feature-grid, ul.service-list {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}

/* Accent for numbered list in processes */
ol {
  list-style: decimal inside;
  margin: 0 0 24px 0;
  padding-left: 0;
}
ol > li {
  margin-bottom: 15px;
}

/* ----------------------------------------------------------
   BRAND BUTTONS - Minimal, Professional
---------------------------------------------------------- */
.btn-primary, .btn-secondary {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  padding: 13px 32px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: background 0.2s, color 0.2s, box-shadow 0.3s;
  margin: 4px 0 0 0;
}

.btn-primary {
  background: #225378;
  color: #fff;
  box-shadow: 0 2px 10px rgba(34,83,120,0.04);
}
.btn-primary:hover, .btn-primary:focus {
  background: #43A047;
  color: #fff;
  box-shadow: 0 4px 16px rgba(34,83,120,0.10);
}

.btn-secondary {
  background: #43A047;
  color: #fff;
  box-shadow: 0 2px 8px rgba(67,160,71,0.05);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #225378;
  color: #fff;
  box-shadow: 0 4px 16px rgba(67,160,71,0.08);
}

/* ----------------------------------------------------------
   CONTAINER & LAYOUT - Minimalist Spacing
---------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

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

/* For hero/feature/testimonial mobile spacing */
@media (max-width: 768px) {
  .section {
    margin-bottom: 40px;
    padding: 30px 8px;
  }
}

/* ----------------------------------------------------------
   HEADER & NAVIGATION (TOP BAR)
---------------------------------------------------------- */
header {
  background: #fff;
  border-bottom: 1px solid #f0f3f5;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  min-height: 70px;
  gap: 12px;
}

header a img {
  height: 42px;
}

header nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #225378;
  padding: 4px 2px;
  border-radius: 3px;
  transition: color 0.2s, background 0.18s;
}
header nav a:hover, header nav a:focus {
  color: #43A047;
  background: #f6f8fa;
}
header .btn-primary {
  margin-left: 12px;
}

.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  color: #225378;
  padding: 8px 10px;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 120;
  display: none;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #43A047;
}
@media (max-width: 1020px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ----------------------------------------------------------
   MOBILE NAVIGATION DRAWER
---------------------------------------------------------- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100vw;
  height: 100vh;
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(0.7,0,0.3,1);
  box-shadow: 2px 0 24px rgba(34,83,120,0.08);
  display: flex;
  flex-direction: column;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #225378;
  align-self: flex-end;
  margin: 18px 24px 0 0;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 2200;
}
.mobile-menu-close:focus {
  outline: 2px solid #43A047;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  margin-top: 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  color: #225378;
  padding: 14px 0;
  border-radius: 6px;
  width: 90vw;
  text-align: left;
  transition: background 0.16s, color 0.16s;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #f4f7fa;
  color: #43A047;
}

/* Hide desktop nav on mobile, show burger */
@media (max-width: 1020px) {
  header nav {
    display: none !important;
  }
}

/* ----------------------------------------------------------
   HERO SECTIONS
---------------------------------------------------------- */
.hero {
  background: #F4F7FA;
  padding: 60px 0 40px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  gap: 12px;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .hero {
    padding: 30px 0 24px 0;
  }
}

/* ----------------------------------------------------------
   SECTIONS, CARDS, GRIDS, FLEX WRAPPERS
---------------------------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 16px rgba(34,83,120,0.06);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 20px;
  min-width: 280px;
}

.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

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

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 20px 0 0 0;
}
.feature-grid > li {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(34,83,120,0.05);
  padding: 30px 22px 22px 22px;
  flex: 1 1 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 200px;
  max-width: 330px;
  gap: 10px;
}
.feature-grid img {
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
}

.service-list > li {
  margin-bottom: 17px;
  padding-left: 0;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

/* Testimonial Card (also on referenzen, index, etc) */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 26px 22px 18px 22px;
  margin-bottom: 25px;
  border-radius: 10px;
  background: #f4f7fa;
  box-shadow: 0 2px 16px rgba(34,83,120,0.07);
  max-width: 560px;
  border: 1px solid #edf1f6;
  color: #225378;
}
.testimonial-card .stars {
  color: #43A047;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1em;
  margin-bottom: 4px;
}
.testimonial-card blockquote {
  border-left: none;
  background: transparent;
  padding-left: 0;
  color: #225378;
  font-size: 1.07em;
  margin-bottom: 0;
}
.testimonial-footer {
  font-size: 0.98em;
  color: #516073;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 16px 11px 14px 11px;
    max-width: 100%;
    margin-bottom: 15px;
  }
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 22px;
  align-items: center;
}
.contact-details > div {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  color: #1a1a1a;
}
.contact-details img {
  height: 22px;
  width: 22px;
  margin-right: 3px;
}
@media (max-width: 800px) {
  .contact-details {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
}

/* FAQ Accordion Component (preise/kontakt/other) */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-accordion h3 {
  font-size: 1.07rem;
  color: #225378;
  margin-bottom: 5px;
  font-weight: 600;
}
.faq-accordion p {
  font-size: 0.99rem;
  color: #222;
  background: #f8fafb;
  border-radius: 5px;
  padding: 11px 13px;
}

/* Pricing Table */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0 20px 0;
  background: #fff;
  box-shadow: 0 2px 8px rgba(34,83,120,0.03);
  border-radius: 8px;
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  padding: 15px 14px;
  text-align: left;
  font-size: 1rem;
}
.pricing-table thead {
  background: #f4f7fa;
  color: #225378;
  font-family: 'Montserrat', sans-serif;
}
.pricing-table tbody tr {
  border-bottom: 1px solid #f0f1f2;
}
.pricing-table tbody tr:last-child {
  border-bottom: none;
}

.package-comparison {
  margin-top: 28px;
  margin-bottom: 26px;
}
.package-comparison ul {
  margin-bottom: 16px;
}
.package-comparison h3 {
  margin-bottom: 11px;
  font-size: 1.15rem;
}

/* Success / Thank You Styling */
.success {
  padding: 50px 0;
  background: #F4F7FA;
}
.success .next-steps-info {
  margin: 24px 0;
  background: #fff;
  padding: 16px 20px;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(34,83,120,0.04);
  color: #516073;
  font-size: 1rem;
}

/* ----------------------------------------------------------
   FOOTER
---------------------------------------------------------- */
footer {
  background: #fff;
  border-top: 1px solid #f0f3f5;
  padding: 40px 0 30px 0;
  color: #225378;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  justify-content: space-between;
  width: 100%;
}
footer a img {
  height: 38px;
  margin-bottom: 11px;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
footer nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 0.99rem;
  color: #616980;
  transition: color 0.2s;
}
footer nav a:hover, footer nav a:focus {
  color: #43A047;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 0.92rem;
  color: #516073;
}
@media (max-width: 800px) {
  footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  footer nav {
    margin-top: 12px;
    flex-wrap: wrap;
  }
}

/* Map snippet */
.map-snippet {
  border-radius: 8px;
  padding: 10px 16px;
  background: #f8fafb;
  font-size: 0.97rem;
  color: #516073;
  margin: 12px 0 20px;
}

/* ----------------------------------------------------------
   COOKIE CONSENT BANNER & MODAL
---------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-top: 1px solid #e2e7eb;
  box-shadow: 0 -3px 24px rgba(34,83,120,0.08);
  padding: 22px 16px 15px 16px;
  gap: 26px;
  animation: fadeInCookie 0.35s cubic-bezier(0.37, 0, 0.63, 1);
}
@keyframes fadeInCookie {
  0% { opacity: 0; transform: translateY(18px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-text {
  color: #225378;
  font-size: 1rem;
  margin-right: 18px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-banner button {
  padding: 9px 18px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.cookie-banner .cookie-accept {
  background: #43A047;
  color: #fff;
}
.cookie-banner .cookie-accept:hover, .cookie-banner .cookie-accept:focus {
  background: #225378;
}
.cookie-banner .cookie-reject {
  background: #f4f7fa;
  color: #225378;
  border: 1px solid #d5dbe0;
}
.cookie-banner .cookie-reject:hover, .cookie-banner .cookie-reject:focus {
  background: #edf1f6;
}
.cookie-banner .cookie-settings {
  background: none;
  color: #225378;
  border: 1px solid #225378;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: #f4f7fa;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 3100;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,83,120,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInCookieModal 0.29s cubic-bezier(0.27,0.15,0.62,1);
}
@keyframes fadeInCookieModal {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 28px rgba(34,83,120,0.17);
  padding: 34px 28px 24px 28px;
  max-width: 390px;
  width: 92vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.28rem;
  color: #225378;
  margin-bottom: 18px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}
.cookie-modal .cookie-toggle {
  width: 32px;
  height: 17px;
  border-radius: 12px;
  background: #edf1f6;
  position: relative;
  cursor: pointer;
  border: 1px solid #dae2e8;
  transition: background 0.16s;
}
.cookie-modal .cookie-toggle.active {
  background: #43A047;
  border-color: #43A047;
}
.cookie-modal .cookie-toggle .circle {
  position: absolute;
  left: 3px;
  top: 2px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.18s;
}
.cookie-modal .cookie-toggle.active .circle {
  left: 16px;
}
.cookie-modal .cookie-legend {
  font-size: 0.99rem;
  color: #49617C;
  margin-bottom: 18px;
}
.cookie-modal .cookie-modal-actions {
  width: 100%;
  display: flex;
  gap: 11px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal .cookie-modal-close {
  background: none;
  color: #8e9eab;
  border: none;
  font-size: 1.24rem;
  position: absolute;
  right: 14px;
  top: 12px;
  cursor: pointer;
  transition: color 0.14s;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  color: #225378;
}
@media (max-width: 430px) {
  .cookie-modal {
    padding: 20px 9px 16px 9px;
    max-width: 96vw;
  }
}

/* ----------------------------------------------------------
   MEDIA QUERIES - RESPONSIVENESS
---------------------------------------------------------- */
@media (max-width: 1100px) {
  .container {
    max-width: 97vw;
    padding-left: 10px; padding-right: 10px;
  }
}

@media (max-width: 920px) {
  .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 600px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.2rem; }
  h3 { font-size: 1.06rem; }
  .container, .section { padding-left: 5px; padding-right: 5px; }
  .section { padding-top: 18px; padding-bottom: 25px; margin-bottom: 22px; }
  .btn-primary, .btn-secondary {
    padding: 12px 20px;
    font-size: 1rem;
  }
}

/* ----------------------------------------------------------
   MICRO-INTERACTIONS & TRANSITIONS
---------------------------------------------------------- */
.card, .feature-grid > li, .testimonial-card, .faq-accordion p, .pricing-table {
  transition: box-shadow 0.20s, border 0.15s;
}
.card:hover, .feature-grid > li:hover, .testimonial-card:hover {
  box-shadow: 0 4px 28px rgba(67,160,71,0.09);
  border: 1.5px solid #43A047;
}

.btn-primary, .btn-secondary, .cookie-banner button {
  transition: background 0.23s, color 0.17s, box-shadow 0.22s;
}

input:focus, textarea:focus, select:focus {
  outline: 2px solid #43A047;
  border-radius: 3px;
}

/* ----------------------------------------------------------
   MISC
---------------------------------------------------------- */
.text-section {
  margin-bottom: 16px;
}

.next-steps-info {
  margin-bottom: 20px;
}

/* Hide scrollbar in mobile menu overlay */
.mobile-menu {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* END CSS */
