/* --- CSS RESET & BASE TYPOGRAPHY --- */
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; }
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  background: #F5F3EE;
  color: #233D4D;
  position: relative;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
ul, ol { list-style: none; }

/* --- BRAND COLORS & CUSTOM PROPERTIES --- */
:root {
  --brand-primary: #233D4D;
  --brand-secondary: #97AABD;
  --brand-accent: #F5F3EE;
  --creative-green: #2ac085;
  --creative-salmon: #FF715B;
  --creative-yellow: #FEC601;
  --creative-purple: #8957A1;
  --creative-blue: #4f86c6;
  --card-radius: 18px;
  --shadow-main: 0 6px 24px rgba(40,60,100,0.10);
  --shadow-card: 0 2px 12px rgba(35,61,77,0.06);
  --transition-all: 0.25s cubic-bezier(.82,-0.01,.33,1.01);
}

/* --- TYPE SCALE --- */
h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
  line-height: 1.15;
  color: var(--creative-salmon);
  text-shadow: 1px 2px 0 var(--brand-accent);
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 16px;
  color: var(--creative-green);
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 8px;
}
h4, h5, h6 { font-family: 'Montserrat', Arial, sans-serif; color: var(--brand-primary); }
p, ul, ol { font-size: 1rem; }
strong { font-weight: bold; }

/* --- CONTAINER & SPACING --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section,
.hero,
.features,
.about-preview,
.leistungen-vorschau,
.kundenstimmen-preview,
.schnellkontakt,
.about-section,
.anfrage-cta,
.testimonials,
.beratung-cta,
.kontakt-section,
.usp-section,
.legal-section,
.confirmation-section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}
/* Card Patterns */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: white;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-card);
  position: relative;
  padding: 32px 24px 24px 24px;
  transition: box-shadow var(--transition-all), transform var(--transition-all);
}
.card:hover {
  box-shadow: 0 8px 28px rgba(35,61,77,0.16);
  transform: translateY(-4px) scale(1.03) rotate(-1deg);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-card);
  margin-bottom: 24px;
  color: #1a222a;
  position: relative;
  transition: box-shadow var(--transition-all), transform var(--transition-all);
}
.testimonial-card.light {
  background: var(--brand-accent);
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px rgba(35,61,77,0.13);
  transform: translateY(-3px) scale(1.015) rotate(1deg);
}
.testimonial-info {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.95em;
  font-family: 'Roboto', Arial, sans-serif;
  color: #2d2b27;
}

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

/* --- HEADER --- */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 1px 7px rgba(35,61,77,0.06);
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  flex-direction: column;
}
header > * {
  min-height: 60px;
}
.logo {
  padding: 10px 0 10px 2px;
  display: flex;
  align-items: center;
  transition: opacity .18s;
}
.logo img {
  height: 36px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-left: 36px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: var(--brand-primary);
  text-decoration: none;
  padding: 8px 2px;
  position: relative;
  transition: color var(--transition-all);
}
.main-nav a:after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: var(--creative-yellow);
  transition: width 0.28s cubic-bezier(.91,.01,.33,1);
  border-radius: 4px;
  margin-top: 2px;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--creative-salmon);
}
.main-nav a:hover:after,
.main-nav a:focus:after {
  width: 100%;
}
.btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 32px;
  padding: 12px 32px;
  border: none;
  font-size: 1.06rem;
  cursor: pointer;
  margin-left: 18px;
  transition: background 0.22s, color 0.18s, transform 0.2s;
  box-shadow: 0 2px 10px rgba(35,61,77,0.09);
  min-width: 138px;
  display: inline-block;
  outline: none;
}
.btn-primary {
  background: linear-gradient(92deg, var(--creative-green) 30%, var(--creative-salmon) 100%);
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--creative-salmon);
  color: #fff;
  transform: translateY(-2px) scale(1.03) rotate(-1deg);
}
.btn-secondary {
  background: var(--brand-secondary);
  color: var(--brand-primary);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--brand-primary);
  color: #fff;
  transform: scale(1.03) rotate(1deg);
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  background: var(--creative-salmon);
  color: #fff;
  font-size: 2rem;
  padding: 8px 18px 6px 18px;
  border: none;
  border-radius: 36px;
  margin-left: 18px;
  cursor: pointer;
  transition: background var(--transition-all), transform var(--transition-all);
  z-index: 55;
}
.mobile-menu-toggle:hover {
  background: var(--creative-yellow);
  color: var(--brand-primary);
  transform: rotate(8deg);
}
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(35,61,77,0.97);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  z-index: 100;
  transform: translateX(100vw);
  transition: transform .42s cubic-bezier(.67,0,.23,1);
  opacity: 1;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: transparent;
  border: none;
  font-size: 2.5rem;
  color: #fff;
  position: absolute;
  right: 24px;
  top: 18px;
  cursor: pointer;
  z-index: 1000;
  padding: 10px;
  transition: color 0.16s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--creative-yellow);
}
.mobile-nav {
  margin-top: 68px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  align-items: flex-start;
  padding-left: 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  color: #fff;
  text-decoration: none;
  padding: 16px 0 6px 0;
  transition: color 0.22s, background 0.18s;
  border-radius: 8px 0 0 8px;
  width: calc(100vw - 52px);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--creative-salmon);
  color: #fff;
}

/* Show mobile nav button and hide nav on mobile */
@media (max-width: 1100px) {
  .main-nav,
  header .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 900px) {
  .container { max-width: 92vw; }
  .footer-nav { flex-wrap: wrap; gap: 18px; }
}
@media (max-width: 768px) {
  .container { padding-left: 10px; padding-right: 10px; }
  .section, .hero, .features, .about-preview, .leistungen-vorschau,
  .kundenstimmen-preview, .schnellkontakt, .about-section, .anfrage-cta,
  .testimonials, .beratung-cta, .kontakt-section, .usp-section, .legal-section, .confirmation-section {
    padding: 28px 5px;
    margin-bottom: 32px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.38rem; }
  .content-wrapper {
    gap: 18px;
  }
  .card-container,
  .content-grid,
  .feature-grid,
  .service-list,
  .prozess-schritte,
  .contact-info {
    flex-direction: column !important;
    gap: 20px;
    align-items: stretch;
  }
  .about-preview .text-section,
  .kontakt-section .text-section,
  .schnellkontakt .text-section {
    font-size: .95rem;
  }
  .testimonial-card { padding: 16px; }
}

/* --- HERO SECTIONS & ARTISTIC ACCENTS --- */
.hero {
  position: relative;
  background: linear-gradient(130deg, var(--creative-blue) 0%, var(--creative-salmon) 70%, var(--creative-yellow) 100%);
  color: #fff;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 8px 32px rgba(35,61,77,0.08);
  overflow: hidden;
}
.hero h1 { color: #fff; text-shadow: 1px 2px 10px rgba(35,61,77,.08); }
.hero p { font-weight: 400; color:#fff; max-width: 580px; margin-bottom: 18px; }
.hero .btn-primary { margin-top: 8px; box-shadow: 0 4px 32px rgba(252,181,80,0.15); }

/* --- FEATURES & ICONS --- */
.features .feature-grid, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature, .service {
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: 0 2px 12px rgba(35,61,77,0.09);
  padding: 28px 20px 24px 20px;
  flex: 1 1 260px;
  min-width: 230px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: box-shadow var(--transition-all), transform var(--transition-all);
  margin-bottom: 20px;
}
.service img,
.feature img {
  width: 46px;
  height: 46px;
  margin-bottom: 9px;
  filter: drop-shadow(0px 4px 7px #fec60122);
}
.feature:hover, .service:hover {
  box-shadow: 0 10px 40px rgba(255,113,91,0.14);
  transform: translateY(-6px) scale(1.04) rotate(-2deg);
}

/* --- USP & LISTS --- */
.usp-list, .about-section ul, .features ul, .kontakt-section ul, .usp-section ul, .legal-section ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-left: 3px;
  margin-bottom: 10px;
}
.usp-list li, .about-section ul li, .features ul li, .kontakt-section ul li, .usp-section ul li, .legal-section ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  padding: 6px 0;
  color: var(--brand-primary);
}
.usp-list img, .kontakt-section img, .features img, .about-section img {
  width: 26px;
  height: 26px;
  margin-right: 6px;
}

/* --- TESTIMONIALS SLIDER & SECTION --- */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.kundenstimmen-preview .testimonial-card {
  min-width: 220px;
}
.testimonials .testimonial-card {
  margin-bottom: 20px;
}

.testimonial-info img {
  width: 18px;
  height: 18px;
  margin-right: 2px;
  vertical-align: middle;
  filter: drop-shadow(0 2px 3px #fec60177);
}

/* --- ABOUT / TEXT SECTIONS --- */
.about-preview .text-section,
.about-section .text-section,
.legal-section .content-wrapper,
.kontakt-section .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.brand-values ul {
  margin: 10px 0 24px 0;
  gap: 6px;
}
.brand-values li {
  font-weight: 500;
  color: var(--creative-purple);
}

/* --- FOOTER --- */
footer {
  background: var(--brand-primary);
  color: #fff;
  padding: 38px 0 16px 0;
  box-shadow: 0 -2px 24px rgba(35,61,77,0.17);
  border-radius: 30px 30px 0 0;
  margin-top: 60px;
}
.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.footer-logo img {
  height: 40px;
}
.footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-nav a {
  color: var(--creative-yellow);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.18s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #fff;
}
.footer-contact {
  font-size: 0.96rem;
  color: #c6d2e1;
  margin-bottom: 10px;
}
.footer-contact a {
  color: #c6d2e1;
  text-decoration: underline;
}
.footer-contact a:hover,
.footer-contact a:focus {
  color: #fff;
}
.footer-copy {
  font-size: 0.88rem;
  color: var(--brand-secondary);
  text-align: right;
  margin-top: 8px;
}
@media (max-width: 700px) {
  .footer-main,
  .footer-nav {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .footer-copy {
    text-align: left;
  }
}

/* --- CTA / CONFIRMATION / MODALS --- */
.anfrage-cta, .beratung-cta, .confirmation-section {
  background: #f9edea;
  border-radius: 28px;
  text-align: center;
  box-shadow: 0 5px 32px rgba(255,113,91,0.06);
}
.anfrage-cta h2, .beratung-cta h2, .confirmation-section h1 {
  color: var(--creative-salmon);
}
.anfrage-cta p, .beratung-cta p, .confirmation-section p {
  color: var(--brand-primary);
}

/* --- QUICK CONTACT --- */
.contact-info, .schnellkontakt .contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.schnellkontakt .contact-form-teaser {
  min-width: 200px;
  flex: 1 1 200px;
}
.schnellkontakt .btn-primary {
  margin-top: 12px;
}

/* --- PROCESS (PROZESS) --- */
.prozess-features .prozess-schritte {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  counter-reset: prozstep;
  justify-content: flex-start;
}
.prozess-schritte li {
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-card);
  padding: 32px 20px 24px 20px;
  min-width: 220px;
  flex: 1 1 220px;
  max-width: 310px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  transition: box-shadow var(--transition-all), transform var(--transition-all);
}
.prozess-schritte li::before {
  counter-increment: prozstep;
  content: counter(prozstep) ".";
  position: absolute;
  top: 16px; left: 16px;
  font-size: 1.8rem;
  color: var(--creative-yellow);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  opacity: .13;
}
.prozess-schritte li img {
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
}
.prozess-schritte li:hover {
  box-shadow: 0 10px 44px rgba(46,201,108,0.09);
  transform: translateY(-3px) scale(1.02) rotate(-2deg);
}

/* --- LEGAL SECTIONS --- */
.legal-section {
  background: #fbfcff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(151,170,189,0.09);
  margin-bottom: 48px;
}

.legal-section .content-wrapper {
  gap: 18px;
}

.legal-section h1,.legal-section h2 {
  color: var(--brand-primary);
}
.legal-section h2 { font-size: 1.13rem; }
.legal-section ul li {
  color: var(--brand-primary);
  font-size: .96rem;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff7f0;
  color: var(--brand-primary);
  box-shadow: 0 -2px 40px 0 rgba(35,61,77,0.16);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 20px 28px 20px 28px;
  z-index: 5000;
  font-size: .99rem;
  animation: cookie-slide-up .5s cubic-bezier(.66,.01,.48,1.11);
}
@keyframes cookie-slide-up {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner .cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: .99rem;
  color: #fff;
  background: var(--creative-green);
  border-radius: 32px;
  border: none;
  padding: 8px 24px;
  box-shadow: 0 2px 8px rgba(46,201,108,0.09);
  cursor: pointer;
  transition: background .22s, color .13s, outline .13s;
}
.cookie-banner .cookie-btn.secondary {
  background: var(--brand-secondary);
  color: var(--brand-primary);
}
.cookie-banner .cookie-btn.settings {
  background: var(--creative-yellow);
  color: var(--brand-primary);
}
.cookie-banner .cookie-btn:hover, .cookie-btn:focus {
  background: var(--creative-salmon);
  color: #fff;
  outline: 2px solid var(--creative-yellow);
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 10px 20px 10px;
    gap: 10px;
  }
}

/* --- COOKIE MODAL --- */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(35,61,77,0.67);
  z-index: 5100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity .3s ease, visibility .3s ease;
  pointer-events: auto;
}
.cookie-modal.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 21px;
  box-shadow: 0 8px 54px rgba(137,87,161,0.13);
  padding: 36px 26px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 370px;
  width: 90vw;
  animation: cookie-modal-animate .42s cubic-bezier(.51,1.01,.54,1);
}
@keyframes cookie-modal-animate {
  from { transform: scale(.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal-content h3 { font-family: 'Montserrat', Arial, sans-serif; color: var(--brand-primary); margin-bottom: 10px; }
.cookie-modal-content label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--brand-primary);
  cursor: pointer;
}
.cookie-toggle {
  width: 38px;
  height: 22px;
  background: var(--brand-secondary);
  border-radius: 22px;
  position: relative;
  transition: background .22s;
  display: inline-block;
  margin-right: 8px;
}
.cookie-toggle input[type="checkbox"] {
  opacity: 0;
  width: 0; height: 0;
  position: absolute;
}
.cookie-toggle .slider {
  position: absolute;
  left: 2px; top: 2px;
  height: 18px; width: 18px;
  background: #fff;
  border-radius: 50%;
  transition: left .16s, background .19s;
  box-shadow: 0 1px 3px rgba(151,170,189,0.13);
}
.cookie-toggle input:checked + .slider {
  left: 18px;
  background: var(--creative-green);
}
.cookie-categories-desc {
  font-size: .92em;
  color: var(--brand-secondary);
  margin-bottom: 6px;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-modal-actions .cookie-btn {
  min-width: 100px;
}

/* --- MICRO-INTERACTIONS / EFFECTS --- */
a, .btn, .mobile-menu-toggle, .mobile-nav a, .main-nav a, .cookie-btn {
  transition: color .15s, background .20s, box-shadow .23s, transform .19s;
}

/* --- CUSTOM SCROLLBAR --- */
::-webkit-scrollbar { width: 10px; background: #ececec; }
::-webkit-scrollbar-thumb { background: var(--brand-secondary); border-radius: 16px; }

/* --- ARTISTIC FONTS (load in HTML!) --- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

/* --- UNIQUE/ELEMENT DECORATIVE MOTIFS --- */
.feature, .service, .card, .testimonial-card {
  border-bottom: 4px solid var(--creative-yellow);
  position: relative;
}
.feature:before, .service:before, .card:before, .testimonial-card:before {
  content: '';
  position: absolute;
  left: 16px; top: -18px;
  width: 60px; height: 16px;
  border-radius: 24px 6px 18px 0;
  background: linear-gradient(93deg, var(--creative-salmon) 30%, var(--creative-green) 100%);
  opacity: .16;
  z-index: 0;
}

/* --- FORMS (KONTAKT) --- */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border: 1.5px solid var(--brand-secondary);
  outline: none;
  border-radius: 7px;
  padding: 12px 14px;
  margin-bottom: 18px;
  background: #fbfbfa;
  color: var(--brand-primary);
  transition: border-color 0.2s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--creative-salmon);
  background: #fff7f0;
}
label { display: block; margin-bottom: 7px; font-family: 'Montserrat', Arial, sans-serif; font-weight: 600; }

/* --- MISCELLANEOUS --- */
::selection {
  background: var(--creative-yellow);
  color: var(--brand-primary);
}

/* --- ENSURE NO OVERLAPPING, GAP ENFORCEMENT --- */
.card-container, .content-grid, .feature-grid, .service-list, .usp-list, .prozess-schritte, .testimonial-slider,
.kundenstimmen-preview .testimonial-slider, .testimonials .content-wrapper > * {
  gap: 20px !important;
}
.card, .feature, .service, .testimonial-card {
  margin-bottom: 20px !important;
}

/* --- REMOVE CSS GRID/ COLUMNS & ABSOLUTE ONLY FOR DECO --- */
/* no forbidden props used */
