/* VIVIDSUSPENSION BAU – STYLE.CSS – SOFT PASTEL FLEXBOX LAYOUTS ONLY */
/* CSS RESET AND NORMALIZE */
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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #F7FAFB;
  color: #1A2233;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: background 0.3s;
  -webkit-font-smoothing: antialiased;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main {
  display: block;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #224067;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFA900;
  outline: none;
}
ul, ol {
  margin: 0 0 16px 24px;
  padding-left: 16px;
}
li {
  margin-bottom: 8px;
  line-height: 1.6;
}
strong, b {
  font-weight: 600;
}

/* BRAND COLORS (SOFT PASTELS) */
:root {
  --primary: #224067;
  --secondary: #DFE2E6;
  --accent: #FFA900;
  --pastel-pink: #F8DCDC;
  --pastel-blue: #D2EAFE;
  --pastel-yellow: #FFF5CC;
  --pastel-green: #E6F7E6;
  --pastel-lavender: #F4F1FA;
  --soft-shadow: 0 4px 24px 0 rgba(34, 64, 103, 0.08);
  --card-bg: #FFFFFF;
  --border-radius: 18px;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  line-height: 1.18;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.4rem;
}
h4 {
  font-size: 1.2rem;
}
p, .subheadline {
  font-size: 1.06rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #404B5A;
  line-height: 1.7;
  margin-bottom: 18px;
}
.subheadline {
  color: #717C96;
}

/* SPACING & LAYOUT PATTERNS */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  padding: 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--soft-shadow);
  padding: 24px 24px 20px;
  transition: box-shadow 0.3s;
}
.card:hover {
  box-shadow: 0 8px 40px 0 rgba(34,64,103,0.16);
}
.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: 22px;
    align-items: flex-start;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--pastel-blue);
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  box-shadow: var(--soft-shadow);
  color: #202638;
  font-size: 1.06rem;
}
.testimonial-card p {
  color: #202638;
  text-align: center;
  margin-bottom: 6px;
  font-size: 1.13rem;
}
.testimonial-card span {
  color: #8A97B8;
  font-size: 0.99rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--pastel-green);
  border-radius: var(--border-radius);
  padding: 22px 24px;
  box-shadow: var(--soft-shadow);
  margin-bottom: 20px;
  min-width: 215px;
}
.feature-item h3 {
  margin-bottom: 6px;
  font-size: 1.18rem;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, var(--pastel-blue) 60%, var(--pastel-pink) 100%);
  padding: 70px 0 60px 0;
  margin-bottom: 60px;
  box-shadow: 0 2px 24px 0 rgba(34,64,103,0.03);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.7rem;
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  .hero {
    padding: 38px 0 30px 0;
    margin-bottom: 34px;
  }
  .hero h1 {
    font-size: 2rem;
  }
}

/* FEATURES SECTION */
.features {
  background: var(--pastel-green);
  border-radius: var(--border-radius);
  margin-bottom: 60px;
  box-shadow: var(--soft-shadow);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}
.feature-icon {
  flex: 1 1 200px;
  background: var(--pastel-lavender);
  border-radius: var(--border-radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  box-shadow: var(--soft-shadow);
  min-width: 210px;
  max-width: 270px;
  transition: box-shadow 0.2s;
}
.feature-icon img {
  width: 44px;
  height: 44px;
  margin-bottom: 8px;
}
.feature-icon h3 {
  font-size: 1.15rem;
  margin-bottom: 0;
  color: var(--primary);
}
.feature-icon p {
  color: #4E5E7A;
  font-size: 1rem;
}
.feature-icon:hover {
  box-shadow: 0 8px 32px 0 rgba(34,64,103,0.13);
}
@media (max-width: 768px) {
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
}

/* SERVICES PREVIEW */
.services-preview {
  background: var(--pastel-yellow);
  border-radius: var(--border-radius);
  margin-bottom: 60px;
  box-shadow: var(--soft-shadow);
}
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 26px;
}
.service-item {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 160px;
  max-width: 240px;
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--soft-shadow);
  padding: 18px 18px 14px 18px;
  transition: transform 0.18s, box-shadow 0.18s;
}
.service-item img {
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
}
.service-item p {
  text-align: center;
  font-size: 1rem;
  color: #556880;
}
.service-item:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 32px 0 rgba(255,169,0,0.09);
}
@media (max-width: 768px) {
  .service-grid {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 16px;
  }
}

/* CONTACT PROMPT */
.contact-prompt {
  background: var(--pastel-pink);
  border-radius: var(--border-radius);
  margin-bottom: 48px;
  box-shadow: var(--soft-shadow);
}
.contact-snippet {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  margin-top: 18px;
}
.contact-snippet p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.04rem;
  color: #234;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .contact-snippet {
    flex-direction: column;
    gap: 15px;
  }
}

/* TRUST BADGES */
.trust-badges {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 16px;
}
.trust-badges img {
  width: 38px;
  height: 38px;
}

/* CARDS IN LISTS (REFERENZEN, GALERIE) */
.project-list, .faq-list, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.project-list > div, .faq-list > div, .service-list > div {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--soft-shadow);
  padding: 24px 22px 20px 22px;
  min-width: 220px;
  flex: 1 1 340px;
  margin-bottom: 0;
  margin-right: 0;
  margin-left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.2s;
}
.project-list > div:hover, .faq-list > div:hover, .service-list > div:hover {
  box-shadow: 0 8px 40px 0 rgba(34,64,103,0.13);
}
.project-list h3, .service-list h3, .faq-list h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.13rem;
  color: var(--primary);
  margin-bottom: 5px;
}
@media (max-width: 768px) {
  .project-list, .faq-list, .service-list {
    flex-direction: column;
    gap: 18px;
  }
}

/* CTA BUTTONS */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.12rem;
  background: var(--accent);
  color: #353a44;
  border: none;
  border-radius: 24px;
  padding: 13px 34px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(34,64,103,0.06);
  margin-top: 4px;
  transition: background 0.2s, color 0.2s, box-shadow 0.21s, transform 0.17s;
  letter-spacing: 0.01em;
}
.cta-button.primary {
  background: var(--primary);
  color: #fff;
}
.cta-button:hover, .cta-button:focus {
  background: #fffbe4;
  color: var(--primary);
  box-shadow: 0 6px 24px 0 rgba(34, 64, 103, 0.15);
  outline: none;
  transform: translateY(-2px) scale(1.04);
}
.cta-button.primary:hover, .cta-button.primary:focus {
  background: #163257;
  color: #FFD275;
}

/* HEADER & NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(34,64,103,0.06);
  position: sticky;
  top: 0;
  z-index: 99;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 18px;
  padding-bottom: 18px;
}
header img {
  height: 48px;
  width: auto;
  margin-right: 24px;
}
nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  color: var(--primary);
  font-size: 1.03rem;
  padding: 5px 0;
  position: relative;
  transition: color 0.14s;
}
nav a:hover, nav a:focus {
  color: var(--accent);
}
@media (max-width: 1040px) {
  nav {
    gap: 18px;
  }
}

/* HIDE MAIN NAV ON MOBILE */
@media (max-width: 900px) {
  header nav { display: none; }
  header .cta-button { display: none; }
}

/* MOBILE BURGER MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 2.1rem;
  cursor: pointer;
  z-index: 99;
  box-shadow: 0 0 8px 0 rgba(34,64,103,0.07);
  transition: background 0.2s, box-shadow 0.22s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--accent);
  background: var(--accent);
  color: var(--primary);
}
@media (max-width: 900px) {
  .mobile-menu-toggle {
    display: block;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(223,226,230,0.97);
  z-index: 120;
  transform: translateX(-100vw);
  transition: transform 0.33s cubic-bezier(.71,0,.27,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 6px 32px 0 rgba(34,64,103,0.21);
  opacity: 0.99;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2.2rem;
  margin: 18px 0 8px 18px;
  cursor: pointer;
  align-self: flex-end;
  transition: color 0.17s;
  padding: 8px;
  border-radius: 50%;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--accent);
  background: #f2edd3;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding: 30px 32px;
}
.mobile-nav a {
  font-size: 1.24rem;
  color: var(--primary);
  font-weight: 600;
  border-radius: 10px;
  padding: 12px 10px;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: #fff;
}

/* Ensure content below header */
body {
  padding-top: 0;
}
main {
  background: transparent;
  min-height: 60vh;
  padding-bottom: 60px;
}
/* FOOTER */
footer {
  background: var(--secondary);
  color: #33445D;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  box-shadow: 0 -2px 24px 0 rgba(34,64,103,0.08);
  padding: 34px 0 16px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--accent);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #506080;
  font-size: 1.01rem;
  margin-top: 0.5em;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-contact img {
  width: 20px;
  height: 20px;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 20px;
  }
  footer { padding: 28px 0 12px 0; }
}

/* TEXT-SECTION GENERAL */
.text-section {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--soft-shadow);
  padding: 34px 28px 34px 28px;
}
@media (max-width: 768px) {
  .text-section {
    padding: 20px 6px !important;
  }
}

/* MISC ELEMENTS */
.map-placeholder {
  padding: 18px 0 10px 0;
  font-size: 1.06rem;
  color: #728596;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-details ul {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1.07rem;
  color: #2D425E;
}

/* CONTACT FAQ */
.contact-faq {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

/* RESPONSIVE DESIGN */
@media (max-width: 600px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.18rem; }
  .container { padding: 0 6px; }
  .content-wrapper { gap: 12px; }
  .hero { padding: 20px 0 12px 0; }
}

/* TRANSITIONS & MICRO-INTERACTIONS */
button, .cta-button, .card, .feature-icon, .service-item {
  transition-property: background, color, box-shadow, transform;
  transition-duration: 0.18s;
  transition-timing-function: cubic-bezier(.33,.99,.25,.98);
}

/* ACCESSIBILITY FOCUS */
:focus {
  outline: 2px dashed var(--accent);
  outline-offset: 2px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  background: #fffbe4;
  border-top: 1px solid var(--secondary);
  color: #333;
  padding: 22px 18px 21px 18px;
  box-shadow: 0 -2px 32px 0 rgba(34,64,103,0.11);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  animation: cookieSlideIn 0.7s cubic-bezier(.8,0,.2,1) both;
}
@keyframes cookieSlideIn {
  0% { opacity: 0; transform: translateY(90px); }
  80% { opacity: 1; transform: translateY(-4px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 7px;
}
.cookie-banner button {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 21px;
  border-radius: 19px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  margin-right: 5px;
  transition: background 0.18s, color 0.16s, box-shadow 0.16s;
}
.cookie-banner .accept-all {
  background: var(--primary);
  color: #fff;
}
.cookie-banner .reject-all {
  background: var(--pastel-blue);
  color: var(--primary);
}
.cookie-banner .cookie-settings {
  background: var(--accent);
  color: #fff;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  box-shadow: 0 2px 12px 0 rgba(34,64,103,0.12);
  background: #fffbe4;
  color: var(--primary);
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(32,38,64,0.44);
  z-index: 100001;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieFadeIn 0.23s {
    cubic-bezier(.56,0,.21,1) both;
  }
}
@keyframes cookieFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal .cookie-modal-content {
  background: #FFFFFF;
  border-radius: 18px;
  padding: 34px 42px 28px 42px;
  box-shadow: 0 6px 28px 0 rgba(34,64,103,0.13);
  min-width: 330px;
  max-width: 94vw;
  display: flex;
  flex-direction: column;
  gap: 19px;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--primary);
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  background: var(--pastel-yellow);
  color: var(--accent);
}
.cookie-modal h2 {
  margin: 0 0 6px 0;
  font-size: 1.15rem;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-bottom: 9px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-category-label {
  flex: 1 1 auto;
  color: #222;
  font-size: 1.01rem;
}
/* Stylized toggles */
.cookie-toggle {
  width: 40px;
  height: 22px;
  position: relative;
  display: inline-block;
}
.cookie-toggle input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--pastel-blue);
  border-radius: 12px;
  transition: background 0.21s;
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  background: var(--accent);
}
.cookie-toggle-slider:before {
  position: absolute;
  content: "";
  height: 16px; width: 16px;
  left: 3.3px; bottom: 3.2px;
  background-color: #fff;
  border-radius: 99px;
  transition: transform 0.21s;
  box-shadow: 0 1px 4px 0 rgba(34,64,103,0.08);
}
.cookie-toggle input:checked + .cookie-toggle-slider:before {
  transform: translateX(16.2px);
}
.cookie-category-essential {
  opacity: 0.66;
}
.cookie-category-essential .cookie-toggle {
  pointer-events: none;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 9px;
  margin-top:8px;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-actions button {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 21px;
  border-radius: 19px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  margin-right: 3px;
}
.cookie-modal .save-cookies {
  background: var(--accent);
  color: #fff;
}
.cookie-modal .cancel-cookies {
  background: var(--pastel-blue);
  color: var(--primary);
}
.cookie-modal .save-cookies:hover, 
.cookie-modal .cancel-cookies:hover {
  background: #FFF5CC;
  color: var(--primary);
}

/* ============ MEDIA QUERIES ============ */
@media (max-width: 900px) {
  .section {
    margin-bottom: 38px;
    padding: 29px 7px;
  }
  .card-container {
    gap: 14px;
  }
  .project-list, .faq-list, .service-list {
    gap: 11px;
  }
}

@media (max-width: 520px) {
  .card, .feature-icon, .feature-item {
    padding: 14px 9px;
    min-width: unset;
    font-size: 0.99rem;
  }
  .project-list > div, .faq-list > div, .service-list > div {
    padding: 13px 5px 9px 5px;
  }
  .cookie-modal .cookie-modal-content { padding: 18px 4vw 12px 4vw; min-width: unset; }
}

/* Utility for hiding elements */
.d-none { display: none !important; }

/* Misc font & icon fixes */
img[alt^="icon-"] { vertical-align: middle; border-radius: 5px; }
