/* 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%;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background: #F4F7FB;
}

body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #F4F7FB;
  color: #25303B;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #A05A21;
  text-decoration: none;
  transition: color 0.2s;
  word-break: break-word;
}
a:focus, a:hover {
  color: #C07B48;
}

ul, ol {
  margin: 1.2em 0 1em 1.2em;
  padding: 0;
}
li {
  margin-bottom: 0.6em;
  font-size: 16px;
}

strong {
  font-weight: 700;
}

/* TYPOGRAPHY SCALE */
h1, .h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 16px;
  color: #25303B;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #25303B;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 12px;
  color: #25303B;
}
h4, .h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
}
p {
  margin-bottom: 1.2em;
}
.text-section ul, .text-section ol {
  margin-left: 1.2em;
}

/* ELECTRIC, VIBRANT COLORS (use brand, but heighten energy for highlights) */
:root {
  --primary: #25303B;
  --primary-rgb: 37,48,59;
  --secondary: #F4F7FB;
  --secondary-rgb: 244,247,251;
  --accent: #A05A21;
  --accent-bright: #C07B48;
  --electric-blue: #2196F3;
  --electric-violet: #BB00FF;
  --warning-yellow: #FFE43C;
}

/* CONTAINERS, SPACING, LAYOUTS (Flex only, per requirements) */
.container {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  padding: 0 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  border-radius: 20px;
  box-shadow: 0 3px 12px rgb(37 48 59 / 6%);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(37,48,59,0.08);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
}
.card:hover {
  box-shadow: 0 14px 32px rgba(33,150,243,0.10), 0 1.5px 10px rgba(160,90,33,0.05);
  transform: translateY(-4px) scale(1.03);
}

.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;
  border-radius: 18px;
  background: #FFF;
  box-shadow: 0 7px 30px rgba(33,150,243,0.11), 0 1.5px 6px rgba(160,90,33,0.06);
  margin-bottom: 24px;
  min-width: 260px;
  max-width: 540px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.testimonial-card blockquote {
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  letter-spacing: -0.2px;
  color: #25303B;
  margin-bottom: 8px;
  margin-left: 0;
  quotes: "\201C" "\201D" "\2018" "\2019";
}
.testimonial-card:hover {
  box-shadow: 0 14px 32px rgba(33,150,243,0.14), 0 2.5px 14px rgba(160,90,33,0.11);
  transform: scale(1.018);
}
.testimonial-card strong {
  color: #A05A21;
}
/* Always dark text for readability */
.testimonial-card, .testimonials-section .testimonial-card {
  background: #FFF;
  color: #25303B;
}

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

/* HERO SECTION */
.hero {
  background: linear-gradient(120deg, #F4F7FB 65%, #C07B48 100%);
  padding: 64px 0 48px 0;
  margin-bottom: 48px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero h1 {
  font-size: 2.6rem;
  color: #25303B;
  margin-bottom: 18px;
  letter-spacing: -1.2px;
}
.hero p {
  font-size: 1.17rem;
  color: #25303B;
  margin-bottom: 24px;
}
.hero .cta-btn {
  margin-top: 12px;
}

/* MAIN NAVIGATION */
header {
  width: 100%;
  background: #FFF;
  min-height: 70px;
  box-shadow: 0 6px 18px rgba(37,48,59,0.06);
  z-index: 90;
  position: relative;
  display: flex;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  height: 64px;
  padding: 0 12px 0 12px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.main-nav a {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 7px 14px;
  color: #25303B;
  border-radius: 7px;
  transition: background 0.2s, color 0.18s, box-shadow 0.18s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F4F7FB;
  color: #C07B48;
  box-shadow: 0 2px 10px rgba(192,123,72,0.08);
}
.main-nav .cta-btn {
  background: linear-gradient(90deg, #A05A21 80%, #C07B48 100%);
  color: #fff;
  font-weight: 700;
  border-radius: 12px;
  letter-spacing: 0.12em;
  padding: 9px 25px;
  margin-left: 8px;
  transition: background 0.17s, transform 0.17s;
  box-shadow: 0 2px 16px rgba(192,123,72,0.07);
}
.main-nav .cta-btn:hover, .main-nav .cta-btn:focus {
  background: #C07B48;
  color: #fff;
  transform: translateY(-2px) scale(1.045);
}

/* MOBILE BURGER MENU */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #A05A21;
  margin-left: 20px;
  cursor: pointer;
  z-index: 200;
  transition: color 0.18s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: #C07B48;
}
.mobile-menu {
  display: none;
}

/* FOOTER */
footer {
  background: #25303B;
  color: #fff;
  padding: 50px 0 30px 0;
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer img {
  width: 62px;
  margin-bottom: 14px;
}
.footer-nav {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 18px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.footer-nav a {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.82;
  transition: color 0.16s, opacity 0.16s;
  padding: 3px 8px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #C07B48;
  opacity: 1;
  background: rgba(192,123,72,0.07);
}
.footer-contact {
  color: #F4F7FB;
  font-size: 0.96em;
  text-align: center;
  margin-top: 12px;
  opacity: 0.98;
}

/* SERVICES LISTING (Leistungen, Index) */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 32px 0;
  justify-content: flex-start;
}
.service-card {
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(160,90,33,0.07), 0 1.5px 10px rgba(37,48,59,0.06);
  padding: 28px 24px 22px 24px;
  min-width: 260px;
  max-width: 340px;
  transition: box-shadow 0.19s, transform 0.19s;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 1.2rem;
  color: #A05A21;
}
.service-card:hover {
  box-shadow: 0 16px 32px rgba(192,123,72,0.13), 0 2px 14px rgba(33,150,243,0.07);
  transform: scale(1.025);
}

/* CTA BUTTONS */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0.8em 2em;
  border-radius: 13px;
  background: linear-gradient(90deg,#C07B48 80%, #FFF2DB 100%);
  color: #fff;
  font-family: 'Montserrat',Arial,Helvetica,sans-serif;
  font-size: 1.04rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 16px rgba(160,90,33,0.10), 0 1.5px 8px rgba(192,123,72,0.05);
  transition: background 0.17s, color 0.17s, box-shadow 0.23s, transform 0.17s;
  letter-spacing: 0.1em;
  text-shadow: 0 1px 7px rgba(160,90,33,0.05);
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg,#A05A21 64%, #FFE43C 100%);
  color: #25303B;
  box-shadow: 0 6px 32px rgba(192,123,72,0.16), 0 2.5px 14px rgba(33,150,243,0.07);
  transform: scale(1.048);
  outline: none;
}

/* TABLE STYLES (Preise) */
table {
  border-collapse: collapse;
  width: 100%;
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(160,90,33,0.07);
  margin-bottom: 28px;
  overflow: hidden;
  font-size: 1rem;
  margin-top: 10px;
}
thead {
  background: #F4F7FB;
}
th, td {
  padding: 15px 18px;
  text-align: left;
}
th {
  color: #A05A21;
  font-family: 'Montserrat',Arial,Helvetica,sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}
tr {
  border-bottom: 1.5px solid #F4F7FB;
}
tr:last-child {
  border: none;
}

/* SUCCESS SECTION (Thank you) */
.success {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fffbe8;
  border-radius: 18px;
  box-shadow: 0 6px 26px rgba(255,228,60,0.09);
  padding: 48px 12px 58px 12px;
  margin-bottom: 60px;
  margin-top: 44px;
}
.success h1 {
  color: #A05A21;
  margin-bottom: 10px;
}
.success .cta-btn {
  margin-top: 18px;
}

/* FAQ (Preise) */
.faq ul>li {
  border-left: 4px solid #C07B48;
  background: #FFF;
  padding: 12px 14px 8px 18px;
  margin-bottom: 16px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(33,150,243,0.04);
  font-size: 1rem;
}

/* MAP, CONTACT */
.map {
  background: #F4F7FB;
  border-radius: 12px;
  padding: 16px;
  margin-top: 12px;
  color: #25303B;
  font-size: 1rem;
}
.contact-info p {
  margin-bottom: 12px;
  font-size: 1rem;
}

/* LEGAL PAGES (Datenschutz, Nutzungsbedingungen, etc.) */
.legal {
  margin-bottom: 40px;
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 7px 25px rgba(33,150,243,0.07);
  padding: 34px 20px 38px 20px;
}
.legal h1 {
  color: #A05A21;
}
.legal h2 {
  font-size: 1.3rem;
  margin-top: 24px;
  color: #25303B;
}
.legal a {
  text-decoration: underline;
  color: #A05A21;
}
.legal a:hover {
  color: #BB00FF;
}

/* Responsive Design – mobile first */
@media (max-width: 900px) {
  .container { max-width: 98%; padding: 0 8px; }
  .main-nav { gap: 8px; }
  .service-cards { gap: 14px; }
  .card-container { gap: 13px; }
}
@media (max-width: 768px) {
  /* MAIN NAVIGATION MOBILE */
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: relative;
    z-index: 210;
  }
  .mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background: #FFF;
    z-index: 3000;
    transform: translateX(100%);
    transition: transform 0.34s cubic-bezier(.8,.2,.2,1.01);
    box-shadow: -6px 0 24px rgba(37,48,59,0.13);
    overflow-y: auto;
    padding: 34px 32px 22px 18px;
  }
  .mobile-menu.open {
    transform: translateX(0%);
  }
  .mobile-menu-close {
    background: none;
    color: #A05A21;
    font-size: 2.2rem;
    border: none;
    align-self: flex-end;
    margin-bottom: 22px;
    cursor: pointer;
    transition: color 0.18s;
  }
  .mobile-menu-close:focus, .mobile-menu-close:hover {
    color: #C07B48;
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
  }
  .mobile-nav a {
    color: #25303B;
    font-size: 1.1rem;
    font-family: 'Montserrat',Arial,Helvetica,sans-serif;
    font-weight: 600;
    padding: 17px 0 11px 9px;
    border-radius: 7px;
    transition: background 0.14s, color 0.25s;
  }
  .mobile-nav a:hover, .mobile-nav a:focus {
    color: #FFF;
    background: #A05A21;
  }
}
@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
  .main-nav { display: flex; }
}
@media (max-width: 768px) {
  .hero {
    padding: 36px 0 30px 0;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .service-cards {.content-wrapper {
    flex-direction: column;
  }}
  .service-card {
    min-width: 80vw;
    max-width: 90vw;
  }
  .testimonial-card { max-width: 100%; }

  .section, .legal {
    padding: 26px 7px 28px 7px;
    margin-bottom: 32px;
    border-radius: 12px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 12px;
  }
  .about-brief, .about-section, .services-section, .pricing-section, .process, .faq, .contact-section, .case-studies, .success {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .text-image-section,
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
}

/* FLEX WRAPS – Utility: always use flex for rows/col-lay */
.features, .testimonials, .testimonials-section, .service-cards, .case-studies, .pricing-section, .faq, .cta {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* VISUAL FLAIR AND VIBRANT ENERGETIC MICRO-ELEMENTS */
.cta {
  background: linear-gradient(92deg, #FFF7EC 90%, #BB00FF 180%);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(187,0,255,0.08);
  margin-bottom: 34px;
}
.cta h2 {
  color: #A05A21;
}
.cta .cta-btn {
  margin-top: 10px;
  background: linear-gradient(90deg, #2196F3 60%, #BB00FF 100%);
  color: #fff;
  text-shadow: none;
}
.cta .cta-btn:hover {
  background: linear-gradient(90deg, #2196F3 5%, #FFE43C 100%);
  color: #25303B;
}

/* Minimal accent underline for high energy style */
h2, h3 {
  position: relative;
}
h2:after, h3:after {
  content: '';
  display: block;
  width: 38px;
  height: 4px;
  border-radius: 6px;
  background: linear-gradient(90deg, #2196F3 60%, #A05A21 100%);
  margin-top: 7px;
  margin-bottom: 0;
}

/* Cookie Consent BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4000;
  background: #FFF;
  color: #25303B;
  box-shadow: 0 -2px 30px rgba(37,48,59,0.13);
  border-top: 2px solid #C07B48;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px 20px 14px 20px;
  gap: 20px;
  font-size: 1rem;
  animation: slideUpCookie 0.58s cubic-bezier(.23,1.06,.79,0.97) forwards;
}
@keyframes slideUpCookie {
  from { transform: translateY(98px); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-banner-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-btn {
  font-size: 1rem;
  padding: 9px 24px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.16s,color 0.13s,box-shadow 0.14s,transform 0.12s;
}
.cookie-btn.accept {
  background: #2196F3;
  color: #FFF;
  font-weight: bold;
  box-shadow: 0 2px 13px rgba(33,150,243,0.108);
}
.cookie-btn.accept:hover {
  background: #25303B;
  color: #FFF;
  transform: scale(1.045);
}
.cookie-btn.reject {
  background: #A05A21;
  color: #fff;
  font-weight: normal;
}
.cookie-btn.reject:hover {
  background: #BB00FF;
  color: #fff;
}
.cookie-btn.settings {
  background: #F4F7FB;
  color: #25303B;
  border: 1px solid #C07B48;
}
.cookie-btn.settings:hover {
  color: #A05A21;
  border: 1px solid #BB00FF;
}

/* Cookie Modal */
.cookie-modal-bg {
  display: none;
  position: fixed;
  z-index: 5000;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(37,48,59,0.56);
  align-items: center;
  justify-content: center;
}
.cookie-modal-bg.active {
  display: flex;
}
.cookie-modal {
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 7px 64px rgba(33,150,243,0.13), 0 3px 8px rgba(160,90,33,0.08);
  padding: 36px 14px 22px 20px;
  max-width: 420px;
  width: 98vw;
  animation: modalAppear 0.38s cubic-bezier(.2,1,.8,1) forwards;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
@keyframes modalAppear {
  from { transform: scale(0.82); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal h3 {
  color: #A05A21;
  font-size: 1.15rem;
  margin-bottom: 7px;
}
.cookie-modal-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  margin-bottom: 13px;
}
.cookie-modal-category label {
  font-size: 1rem;
  color: #25303B;
  font-weight: 600;
  cursor: pointer;
}
.cookie-modal input[type="checkbox"] {
  appearance: none;
  width: 28px; height: 16px;
  border-radius: 12px;
  background: #F4F7FB;
  border: 1.7px solid #C07B48;
  position: relative;
  outline: none;
  transition: background 0.12s, border 0.12s;
  vertical-align: middle;
}
.cookie-modal input[type="checkbox"]:checked {
  background: #2196F3;
  border-color: #2196F3;
}
.cookie-modal input[type="checkbox"]:after {
  content: '';
  display: block;
  position: absolute;
  left: 3px;
  top: 2px;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0.5px 2px rgba(0,0,0,0.11);
  transition: left 0.19s;
}
.cookie-modal input[type="checkbox"]:checked:after {
  left: 13px;
  background: #FFE43C;
}
.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 13px;
  margin-top: 18px;
}
.cookie-modal .cookie-btn {
  font-size: 0.96rem;
  padding: 7px 18px;
  border-radius: 8px;
}
.cookie-modal .essential { opacity: 0.62; }

/* ANIMATION FOR MENU OVERLAY */
@media (max-width: 768px) {
  .mobile-menu {
    /* transition above */
  }
}

/* Utility Classes */
.d-none { display: none !important; }
.d-flex { display: flex !important; }
.mt-16 { margin-top: 16px !important; }
.mt-24 { margin-top: 24px !important; }
.mt-32 { margin-top: 32px !important; }
.mb-16 { margin-bottom: 16px !important; }
.mb-24 { margin-bottom: 24px !important; }

::-webkit-input-placeholder { color: #bbb; opacity: 1; }
::-moz-placeholder { color: #bbb; opacity: 1; }
:-ms-input-placeholder { color: #bbb; opacity: 1; }
::placeholder { color: #bbb; opacity: 1; }

/* FOCUS OUTLINE HIGH VISIBILITY */
a:focus,
button:focus,
.cta-btn:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2.5px solid #2196F3;
  outline-offset: 1.5px;
}

/* VIBRANT ACCENTS FOR BULLETS */
ul li::marker, ol li::marker {
  color: #A05A21;
}

/* Remove grid/column props compliance check:
   NO display: grid, grid-*, column-*
   All layouts exclusively flexbox */