/* CSS RESET & 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 {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  height: 100%;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-size: 16px;
  background: #F5F3EE;
  color: #293B47;
  line-height: 1.6;
  min-height: 100vh;
}

img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
a {
  color: #293B47;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #B49476;
  outline: none;
}

ul, ol {
  margin: 0 0 1em 1.2em;
  padding: 0;
}
li {
  margin-bottom: 8px;
}

strong, b {
  font-weight: 700;
}

/* BRAND COLORS */
:root {
  --primary: #293B47;
  --secondary: #B49476;
  --accent: #F5F3EE;
  --electric1: #FF005E;
  --electric2: #0EE6B1;
  --electric3: #FFD600;
  --electric4: #2196F3;
  --danger: #e84343;
  --success: #37c571;
}

/* TYPOGRAPHY – Vibrant + Bold */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Source Sans Pro', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.18;
}
h1 { font-size: 2.5rem; color: var(--electric1); }
h2 { font-size: 1.8rem; color: var(--electric2); }
h3 { font-size: 1.28rem; color: var(--electric3); }
h4, h5, h6 {font-size: 1rem; color: var(--primary); font-weight: 700;}

p, ul, ol, li, span, label {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-size: 1rem;
  color: #293B47;
  font-weight: 400;
}

@media (min-width: 600px) {
  h1 { font-size: 3.2rem; }
  h2 { font-size: 2.2rem; }
  h3 { font-size: 1.45rem; }
}

@media (min-width: 1024px) {
  h1 { font-size: 3.6rem; }
  h2 { font-size: 2.8rem; }
  h3 { font-size: 1.6rem; }
}


/* SPACING & CONTAINER PATTERNS */
.container {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1200px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: white;
  border-radius: 24px;
  box-shadow: 0 6px 20px rgba(41,59,71,0.07);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* FLEX LAYOUTS – VIBRANT & ENERGETIC */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(41,59,71,0.18);
  padding: 28px 22px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 290px;
  min-width: 0;
  transition: box-shadow 0.2s, transform 0.2s;
  z-index: 1;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(255,0,94,0.22), 0 1.5px 10px rgba(41,59,71,0.10);
  transform: translateY(-6px) scale(1.025);
}

.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 {
  background: #fff;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  border-radius: 18px;
  box-shadow: 0 4px 20px 0 rgba(33,150,243,0.09);
  margin-bottom: 24px;
  border-left: 8px solid var(--electric2);
  transition: box-shadow 0.2s, border-color 0.25s;
}
.testimonial-card:hover {
  box-shadow: 0 10px 32px rgba(41,59,71,0.16);
  border-left: 8px solid var(--electric1);
}
.testimonial-card p {
  color: #111827;
  font-size: 1.08rem;
}
.testimonial-card span {
  color: #293B47;
  font-size: 1rem;
  font-style: italic;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 24px;
}
.feature-grid > div {
  flex: 1 1 220px;
  min-width: 160px;
  background: #fff;
  border-radius: 16px;
  padding: 22px 16px 18px 16px;
  box-shadow: 0 2px 14px 0 rgba(255,214,0,0.12);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow 0.2s, transform 0.22s;
  border-top: 4px solid var(--electric4);
}
.feature-grid > div:hover {
  box-shadow: 0 8px 24px 0 rgba(255,0,94,0.14);
  transform: translateY(-4px) scale(1.02);
  border-top: 4px solid var(--electric1);
}
.feature-grid img {
  max-width: 38px;
  margin-bottom: 8px;
}

.text-section {
  background: #fff;
  border-radius: 14px;
  padding: 20px 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px 0 rgba(14,230,177,0.07);
}

.location-map {
  background: #F0FAF6;
  padding: 18px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 15px;
}

.contact-details ul {
  list-style: none;
  padding: 0 0 0 0;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.contact-details img {
  width: 22px; height: 22px;
}

.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 18px;
}
.team-list li {
  background: #F0FAF6;
  border-radius: 10px;
  padding: 12px 20px;
  flex: 1 1 210px;
  min-width: 0;
  font-weight: 600;
}

.faq-item {
  background: #fff;
  padding: 18px 16px;
  border-radius: 10px;
  margin-bottom: 16px;
  box-shadow: 0 1px 8px rgba(33,150,243,0.04);
}

/* SHARED BUTTONS & CTA */
.cta.primary {
  display: inline-block;
  padding: 13px 36px;
  border-radius: 30px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.16rem;
  color: #fff;
  background: linear-gradient(90deg, var(--electric1) 0%, var(--electric2) 85%);
  box-shadow: 0 4px 18px 0 rgba(255,0,94,0.12);
  letter-spacing: 0.03em;
  cursor: pointer;
  margin-top: 10px;
  margin-bottom: 8px;
  transition: background 0.16s, box-shadow 0.16s, transform 0.20s;
}
.cta.primary:hover, .cta.primary:focus {
  background: linear-gradient(90deg, var(--electric2) 0%, var(--electric3) 85%);
  color: #111;
  box-shadow: 0 4px 24px 0 rgba(33,150,243,0.21), 0 0.5px 8px rgba(41,59,71,0.10);
  transform: translateY(-2px) scale(1.04);
}

.button, button, .cta {
  font-family: 'Montserrat', 'Source Sans Pro', Arial, sans-serif;
  font-weight: 700;
  border: none;
  padding: 10px 26px;
  font-size: 1rem;
  border-radius: 26px;
  background: var(--electric1);
  color: #fff;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.18s;
  cursor: pointer;
  outline: none;
}
.button:hover, button:hover {
  background: var(--electric2);
  color: var(--primary);
  box-shadow: 0 7px 24px rgba(14,230,177,0.14);
  transform: translateY(-2px);
}

/* HEADER & NAVIGATION */
header {
  background: white;
  box-shadow: 0 4px 18px 0 rgba(41,59,71,0.10);
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 40;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 20px;
}
header img {
  height: 52px;
}
nav.main-nav {
  display: flex;
  gap: 22px;
}
nav.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  padding: 3px 0 2px 0;
  position: relative;
  transition: color 0.16s;
}
nav.main-nav a:after {
  content: '';
  display: block;
  width: 0%;
  height: 2px;
  background: var(--electric1);
  transition: width 0.15s;
  margin-top: 3px;
}
nav.main-nav a:hover, nav.main-nav a.active {
  color: var(--electric1);
}
nav.main-nav a:hover:after, nav.main-nav a.active:after {
  width: 80%;
}

/* HERO SECTIONS */
.hero {
  min-height: 310px;
  background: linear-gradient(90deg, var(--electric3) 0%, #FFF6EB 100%);
  padding: 58px 0 54px 0;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  box-shadow: 0 3px 14px 0 rgba(255,0,94,0.07);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero h1 {
  font-size: 2.25rem;
  color: var(--electric1);
}
.hero p {
  font-size: 1.12rem;
  margin-top: 18px;
  margin-bottom: 16px;
  color: var(--primary);
}
@media (min-width: 700px) {
  .hero {
    padding: 78px 0 60px 0;
    min-height: 400px;
  }
  .hero .container {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 56px;
  }
  .hero h1 {
    font-size: 3rem;
  }
}

/* FOOTER */
footer {
  background: var(--primary);
  color: #fff;
  padding: 0 0 0 0;
  position: relative;
  margin-top: 40px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 34px 0 22px 0;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #FFD600;
  font-weight: 600;
  transition: color 0.18s;
  text-decoration: underline;
}
.footer-nav a:hover {
  color: var(--electric1);
}
.footer-info {
  color: #fff;
  font-size: 0.98rem;
  opacity: 0.86;
}

/* MOBILE NAVIGATION (BURGER MENU) */
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--electric1);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  margin-left: auto;
  transition: background 0.18s, box-shadow 0.16s, transform 0.18s;
  position: relative;
  z-index: 101;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(255,0,94,0.11);
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--electric4);
  color: #fff;
  transform: scale(1.07);
}
@media (min-width: 901px) {
  .mobile-menu-toggle {
    display: none;
  }
}
nav.main-nav {
  display: none;
}
@media (min-width: 901px) {
  nav.main-nav {
    display: flex;
  }
}
.cta.primary {
  display: none;
}
@media (min-width: 901px) {
  .cta.primary {
    display: inline-block;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 92vw;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(100deg, var(--accent) 92%, #FFD600 100%);
  box-shadow: -8px 0 32px 0 rgba(41,59,71,0.13);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.27s cubic-bezier(0.81,0.11,0.37,0.93);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: var(--electric2);
  color: #fff;
  border: none;
  font-size: 2.15rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-self: flex-end;
  margin: 18px 12px 4px 0;
  cursor: pointer;
  z-index: 2101;
  transition: background 0.15s, transform 0.16s;
}
.mobile-menu-close:hover {
  background: var(--electric1);
  transform: scale(1.08);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 34px 28px 14px 32px;
  margin-top: 18px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  padding: 12px 0;
  border-radius: 8px;
  background: none;
  transition: background 0.12s, color 0.16s;
  outline: none;
  width: 100%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--electric2);
  color: #fff;
}

@media (min-width: 901px) {
  .mobile-menu {display: none;}
}

/* COOKIES CONSENT BANNER & MODAL */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3300;
  background: #fff;
  border-top: 6px solid var(--electric1);
  box-shadow: 0 -5px 28px 0 rgba(41,59,71,0.13);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
  transition: transform 0.28s, opacity 0.25s;
}
.cookie-banner .cookie-banner-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.cookie-banner p {
  color: #293B47;
  font-size: 1.03rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 6px;
}

.cookie-banner .cookie-btn {
  padding: 9px 26px;
  border-radius: 26px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.04rem;
  border: none;
  cursor: pointer;
  background: var(--electric2);
  color: #fff;
  margin-right: 6px;
  transition: background 0.14s, color 0.13s, transform 0.15s;
}
.cookie-banner .cookie-btn:hover {
  background: var(--electric1);
  color: #fff;
  transform: scale(1.02);
}
.cookie-banner .cookie-btn.reject {
  background: var(--danger);
}
.cookie-banner .cookie-btn.settings {
  background: var(--electric3);
  color: #293B47;
}
.cookie-banner .cookie-btn.settings:hover {
  background: var(--electric4);
  color: #fff;
}

/* Cookie Modal Overlay */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 3400;
  background: rgba(41,59,71,0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal .modal-content {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(41,59,71,0.22);
  padding: 30px 22px 26px 22px;
  max-width: 440px;
  width: 90vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.cookie-modal .modal-header {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.32rem;
  font-weight: 800;
  color: var(--electric1);
  margin-bottom: 13px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: var(--electric1);
  color: #fff;
  border: none;
  font-size: 1.45rem;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;
  transition: background 0.14s, transform 0.14s;
}
.cookie-modal .modal-close:hover {
  background: var(--electric2);
  transform: scale(1.09);
}

.cookie-modal .cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-modal .cookie-category input[type="checkbox"] {
  width: 21px;
  height: 21px;
  accent-color: var(--electric4);
}
.cookie-modal .cookie-category label {
  font-size: 1.05rem;
  color: #293B47;
  font-weight: 600;
  cursor: pointer;
}
.cookie-modal .cookie-category span {
  font-size: 0.96rem;
  color: #555;
  margin-left: 5px;
}
.cookie-modal .cookie-category input[disabled] {
  filter: grayscale(90%);
  opacity: 0.7;
  pointer-events: none;
}

.cookie-modal .modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
  align-items: center;
}

/* ========== RESPONSIVE LAYOUTS ========== */
@media (min-width: 700px) {
  .content-wrapper {
    flex-direction: row;
    gap: 32px;
  }
  .feature-grid {
    justify-content: center;
  }
  .testimonial-card {
    flex-direction: row;
    gap: 32px;
  }
  .text-section {padding: 32px 32px;}
  .section {padding: 56px 36px;}
  .container {padding-left: 36px; padding-right: 36px;}
  .team-list {gap: 36px;}
}
@media (max-width: 1024px) {
  .feature-grid>div, .team-list li, .card {
    flex: 1 1 48%;
  }
}
@media (max-width: 900px) {
  .feature-grid > div, .team-list li, .card {
    flex: 1 1 90%;
  }
}
@media (max-width: 768px) {
  .content-wrapper, .content-grid, .feature-grid, .card-container, .team-list {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .card, .feature-grid > div, .testimonial-card {
    min-width: 0;
    width: 100%;
  }
  .team-list li {
    width: 100%;
    min-width: 0;
  }
  nav.main-nav, .cta.primary {
    display: none !important;
  }
}

/* MARGIN & SPACING FOR SECTIONS */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (min-width: 700px) {
  section {
    margin-bottom: 80px;
    padding: 60px 36px;
  }
}

/****** ENERGETIC MICRO-ANIMATIONS ******/
.card, .feature-grid > div, .cta.primary, .button, .testimonial-card {
  transition: box-shadow 0.23s, transform 0.17s, border-color 0.21s, background 0.15s, color 0.14s;
}
.cta.primary:active, .button:active, .testimonial-card:active, .feature-grid>div:active {
  transform: scale(0.98);
  box-shadow: 0 1px 4px rgba(33,150,243,0.14);
}


/******  PAGE SPECIFIC HELPER CLASSES ******/
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/****** ACCENT COLORS FOR DIVERSE ELEMENTS ******/
.feature-grid > div:nth-child(1) {
  border-top: 4px solid var(--electric1);
}
.feature-grid > div:nth-child(2) {
  border-top: 4px solid var(--electric2);
}
.feature-grid > div:nth-child(3) {
  border-top: 4px solid var(--electric3);
}
.feature-grid > div:nth-child(4) {
  border-top: 4px solid var(--electric4);
}

/**** Z-INDEX BOOST FOR MODALS/UI ****/
[aria-modal="true"], .cookie-modal.open {
  z-index: 3301 !important;
}

/**** SCROLLBAR CUSTOMIZATION ****/
body, html {
  scrollbar-color: var(--electric2) #E0E6EA;
  scrollbar-width: thin;
}
::-webkit-scrollbar {
  width: 10px;
  background: #F5F3EE;
}
::-webkit-scrollbar-thumb {
  background: var(--electric2);
  border-radius: 12px;
}

/**** ACCESSIBILITY ****/
:focus {
  outline: 2px solid var(--electric4);
  outline-offset: 2px;
}
::-moz-focus-inner { border: 0; }


/****** HIDE ELEMENTS UTILITY CLASSES ******/
.hide, .hidden {
  display: none !important;
}

/****** FORMS (if any) ******/
input[type=text], input[type=email], textarea {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-size: 1.02rem;
  padding: 11px 14px;
  border-radius: 8px;
  border: 2px solid #E8EBED;
  transition: border 0.15s, box-shadow 0.18s;
  margin-bottom: 12px;
  background: #fff;
  color: #293B47;
  width: 100%;
}
input[type=text]:focus, input[type=email]:focus, textarea:focus {
  border: 2px solid var(--electric4);
  box-shadow: 0 2px 8px rgba(33,150,243,0.07);
}

/***** ABOUT PAGE TEAM LIST ******/
.team-list {
  list-style: none;
  padding: 0;
}

/****** THANK YOU PAGE ******/
.thank-you-message {
  font-size: 1.3rem;
  color: var(--electric2);
}

/****** FAQ ACCORDION SIMPLIFIED ******/
.faq-item h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--electric2);
  margin-bottom: 10px;
}
.faq-item p {
  color: #293B47;
  font-size: 1rem;
  margin-bottom: 4px;
}

/****** ENSURE GAPS EVERYWHERE ******/
.card:not(:last-child), .feature-grid > div:not(:last-child), .testimonial-card:not(:last-child), .text-section:not(:last-child) {
  margin-bottom: 20px;
}

/***** LIGHT BACKGROUND FOR TESTIMONIALS *****/
#testimonials, #kundenstimmen {
  background: #F4FFFC;
  border-radius: 32px;
  box-shadow: 0 2px 14px 0 rgba(14,230,177,0.06);
}

/***** CTA Section Accents *****/
#cta {
  background: var(--electric4);
  border-radius: 20px;
  color: #fff;
}
#cta h2 { color: #fff; margin-bottom: 16px; }
#cta .cta.primary {
  background: linear-gradient(90deg, var(--electric1), var(--electric2));
  color: #fff;
}
#cta .cta.primary:hover {
  background: linear-gradient(90deg, var(--electric2), var(--electric3));
  color: #111827;
}

/***** UTILITIES *****/
.center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.text-center {
  text-align: center;
}


/* END OF STYLE */
