/* --- 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;
}
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  background: #FFF;
  color: #19364D;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}
a {
  color: #47A2C5;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #19364D;
  text-decoration: underline;
}
ul, ol {
  margin-left: 1.2em;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #19364D;
  margin-bottom: 16px;
  font-weight: 700;
}
h1 { font-size: 2.25rem; line-height: 1.2; margin-bottom: 20px; }
h2 { font-size: 1.75rem; margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
h4 { font-size: 1.125rem; }

/* --- BASE LAYOUT & SPACING --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF;
  border-radius: 24px;
  box-shadow: 0 4px 24px 0 rgba(249,171,48,0.06);
}
@media (max-width: 900px) {
  .section {
    padding: 32px 10px;
  }
}
.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 12px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #FCEFD9;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 3px 16px 0 rgba(249,171,48,0.05);
  padding: 32px 24px;
  position: relative;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.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: center;
  gap: 20px;
  padding: 20px;
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(25,54,77,0.06);
  color: #19364D;
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 370px;
  flex: 1 1 280px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.cta-center {
  text-align: center;
  margin-top: 32px;
}

/* --- HEADER & NAVIGATION --- */
header {
  background: #FCEFD9;
  border-bottom: 1px solid #E1DFD2;
  box-shadow: 0 4px 24px 0 rgba(249,171,48,0.04);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  min-height: 72px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
}
header nav a {
  color: #19364D;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 22px;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
}
header nav a:hover:not(.btn-primary), header nav a:focus:not(.btn-primary) {
  background: #FFE4BA;
  color: #19364D;
}
.btn-primary {
  background: #47A2C5;
  color: #FFF !important;
  border-radius: 22px;
  padding: 8px 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.18s, transform 0.18s;
  box-shadow: 0 2px 12px 0 rgba(71,162,197,0.09);
  outline: none;
  margin-left: 14px;
}
.btn-primary:hover, .btn-primary:focus {
  background: #19364D;
  color: #FFF !important;
  box-shadow: 0 4px 20px 0 rgba(25,54,77,0.11);
  transform: translateY(-2px) scale(1.04);
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  background: #FCEFD9;
  color: #19364D;
  font-size: 2rem;
  border: none;
  border-radius: 12px;
  padding: 6px 18px;
  cursor: pointer;
  margin-left: 16px;
  transition: background 0.19s;
  z-index: 1002;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #FFE4BA;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  width: 100vw;
  height: 100vh;
  background: #FCEFD9;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(0.78,0.06,0.34,0.94);
  box-shadow: 0 6px 36px 0 rgba(71,162,197,0.08);
  visibility: hidden;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu-close {
  align-self: flex-start;
  background: transparent;
  border: none;
  font-size: 2.2rem;
  color: #19364D;
  padding: 18px 4px 8px 22px;
  cursor: pointer;
  margin-bottom: 12px;
  transition: color 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #47A2C5;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-top: 12px;
}
.mobile-nav a {
  font-size: 1.15rem;
  color: #19364D;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 12px 28px;
  border-radius: 16px;
  background: transparent;
  font-weight: 600;
  transition: background 0.19s, color 0.19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFE4BA;
  color: #47A2C5;
}
.mobile-nav a.btn-primary {
  margin-top: 20px;
  background: #47A2C5;
  color: #FFF;
  padding: 13px 34px;
  font-size: 1.13rem;
}

@media (max-width: 1024px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width:1025px) {
  .mobile-menu { display: none; }
}

/* --- MAIN SECTION STRUCTURE --- */
main > section {
  background: #FFF;
  border-radius: 28px;
  box-shadow: 0 2px 12px 0 rgba(249,171,48,0.06);
  margin-bottom: 60px;
  padding: 40px 0;
}
main > section:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .container {
    padding-left: 5px;
    padding-right: 5px;
  }
  .content-wrapper, .content-grid, .feature-grid, .service-cards, .testimonial-slider, .team-grid, .value-icons, .process-steps, .industry-cards, .blog-list, .newsletter-signup {
    flex-direction: column !important;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 18px;
    align-items: flex-start;
  }
}

/* --- FEATURE/TEAM/SERVICE GRID VARIANTS --- */
/* used via: .feature-grid, .service-cards, .service-grid, .team-grid, etc */
.feature-grid, .service-cards, .service-grid, .team-grid, .process-steps, .industry-cards, .value-icons, .usecase-list, .blog-list, .newsletter-signup {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
.feature-grid > div, .service-cards > div, .service-grid > div, .team-grid > div, .industry-cards > div, .value-icons > div, .usecase-list > div, .process-steps > div, .blog-list > article {
  flex: 1 1 210px;
  min-width: 230px;
  max-width: 90vw;
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(71,162,197,0.05);
  padding: 24px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.value-icons > div, .team-grid > div, .usecase-list > div {
  background: #FCEFD9;
  box-shadow: 0 2px 14px 0 rgba(249,171,48,0.07);
}

.solution-overview, .solution-benefits, .project-descriptions, .achievement-highlights, .whitepaper-teasers, .webinar-highlights {
  background: #FCEFD9;
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(249,171,48,0.07);
  padding: 28px 18px;
  margin-top: 28px;
  margin-bottom: 20px;
}

/* --- TESTIMONIAL STYLES --- */
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 12px;
  justify-content: flex-start;
}
.customer-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  justify-content: flex-start;
  margin-top: 18px;
}
.customer-logos img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #FFF;
  padding: 8px;
  box-shadow: 0 2px 8px rgba(249,171,48,0.09);
}
.customer-info {
  font-size: 1rem;
  color: #19364D;
  font-family: 'Montserrat', Arial, sans-serif;
  opacity: 0.86;
  margin-top: 6px;
}
.testimonial-card p {
  color: #19364D;
  font-size: 1.07rem;
  font-style: italic;
  margin-bottom: 8px;
  padding-left: 6px;
  padding-right: 6px;
}
.testimonial-card strong {
  color: #19364D;
}

/* --- CONTACT/CTA STYLES --- */
.contact-info-list, .confirmation ul {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
}
.contact-info-list li, .confirmation ul li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  gap: 10px;
  font-size: 1rem;
  color: #19364D;
}
.contact-info-list img, .confirmation ul img {
  width: 26px;
  height: 26px;
  margin-right: 4px;
}
.contact-button-row {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  margin-top: 18px;
}
.map-section img {
  width: 100%;
  max-width: 320px;
  margin-bottom: 8px;
  border-radius: 14px;
  object-fit: cover;
}
.cta-section, .confirmation {
  background: #FCEFD9;
  border-radius: 20px;
  padding: 30px 18px;
  text-align: center;
  box-shadow: 0 2px 12px 0 rgba(249,171,48,0.06);
}
.cta-section a, .confirmation a {
  margin-top: 18px;
}

/* --- FOOTER --- */
footer {
  background: #19364D;
  color: #FFF;
  padding: 34px 0 18px 0;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  margin-top: 40px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 20px;
  justify-content: center;
  align-items: center;
}
.footer-nav a {
  color: #FCEFD9;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  opacity: 0.94;
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 16px;
  transition: color 0.17s, background 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #47A2C5;
  color: #FFF;
}
.footer-info {
  text-align: center;
  opacity: 0.88;
  font-size: 0.97rem;
  letter-spacing: 0.2px;
}

/* --- LEGAL PAGES --- */
.legal-text {
  font-size: 1.05rem;
  color: #19364D;
  line-height: 1.7;
  background: #FCEFD9;
  padding: 24px 18px;
  border-radius: 16px;
}
.legal-text h2, .legal-text h3, .legal-text h4 {
  margin-top: 24px;
  color: #19364D;
}
.legal-text ul {
  margin-left: 22px;
  margin-bottom: 16px;
}

/* --- BLOG/Ressourcen/Newsletter --- */
.blog-list article {
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(71,162,197,0.07);
  padding: 20px 14px;
  margin-bottom: 22px;
}
.newsletter-signup {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  background: #FCEFD9;
  border-radius: 20px;
  padding: 24px 18px;
  margin-top: 24px;
}

/* --- MISC --- */
::-webkit-scrollbar { width: 10px; border-radius: 8px; background: #FCEFD9; }
::-webkit-scrollbar-thumb { background: #FFE4BA; border-radius: 8px; }

/* --- COOKIE CONSENT BANNER --- */
.cookie-consent-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: #FFF9F2;
  border-top: 1px solid #E1DFD2;
  box-shadow: 0 -2px 14px 0 rgba(249,171,48,0.11);
  z-index: 1200;
  padding: 22px 32px 21px 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  animation: cookieBannerIn 0.6s;
}
@keyframes cookieBannerIn {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner .cookie-btn-row {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.cookie-consent-banner button {
  border: none;
  padding: 8px 22px;
  border-radius: 22px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  margin-left: 0;
}
.cookie-consent-banner .cookie-accept {
  background: #47A2C5;
  color: #FFF;
}
.cookie-consent-banner .cookie-accept:hover, .cookie-consent-banner .cookie-accept:focus {
  background: #19364D;
  color: #FFF;
}
.cookie-consent-banner .cookie-reject {
  background: #FFE4BA;
  color: #19364D;
}
.cookie-consent-banner .cookie-reject:hover, .cookie-consent-banner .cookie-reject:focus {
  background: #47A2C5;
  color: #FFF;
}
.cookie-consent-banner .cookie-settings {
  background: #FFF;
  color: #19364D;
  border: 1px solid #E2C48B;
}
.cookie-consent-banner .cookie-settings:hover {
  background: #FFE4BA;
}
@media (max-width: 700px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 10px 18px 10px;
  }
}

/* --- COOKIE CONSENT MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1500;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(25,54,77,0.49);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.34s;
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #FFF9F2;
  border-radius: 22px;
  max-width: 420px;
  width: 97vw;
  box-shadow: 0 10px 48px 0 rgba(71,162,197,0.16);
  padding: 34px 20px 28px 20px;
  position: relative;
  animation: slideInModal 0.35s;
}
@keyframes slideInModal {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  margin-bottom: 14px;
  font-size: 1.32rem;
}
.cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 10px;
  background: transparent;
  border: none;
  font-size: 1.7rem;
  color: #19364D;
  cursor: pointer;
  transition: color 0.17s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #47A2C5;
}
.cookie-toggles {
  margin: 18px 0 24px 0;
}
.cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  background: #FFF;
  border-radius: 10px;
  padding: 11px 13px;
  font-size: 1rem;
}
.cookie-toggle-label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #19364D;
}
.cookie-toggle-switch {
  position: relative;
  width: 46px;
  display: inline-block;
  height: 24px;
}
.cookie-toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: #FFE4BA;
  border-radius: 24px;
  transition: background 0.2s;
}
.cookie-toggle-switch input:checked + .cookie-slider {
  background: #47A2C5;
}
.cookie-slider:before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 4px; bottom: 3px;
  background: #FFF;
  border-radius: 50%;
  transition: transform 0.21s;
  box-shadow: 0 1px 5px rgba(71,162,197,0.06);
}
.cookie-toggle-switch input:checked + .cookie-slider:before {
  transform: translateX(21px);
}
.cookie-essential {
  opacity: 0.6;
}
.cookie-modal .cookie-btn-row {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
}
.cookie-modal .cookie-accept, .cookie-modal .cookie-reject, .cookie-modal .cookie-save {
  border: none;
  padding: 8px 24px;
  border-radius: 22px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.cookie-modal .cookie-accept { background: #47A2C5; color: #FFF; }
.cookie-modal .cookie-accept:hover, .cookie-modal .cookie-accept:focus { background: #19364D; }
.cookie-modal .cookie-reject { background: #FFE4BA; color: #19364D; }
.cookie-modal .cookie-reject:hover { background: #47A2C5; color: #FFF; }
.cookie-modal .cookie-save { background: #19364D; color: #FFF; }
.cookie-modal .cookie-save:hover { background: #47A2C5; color: #FFF; }
@media (max-width:550px) {
  .cookie-modal {
    padding: 14px 6px 18px 8px;
  }
}

/* --- ANIMATIONS --- */
.btn-primary, .mobile-menu-toggle, .mobile-menu-close, .footer-nav a, .mobile-nav a, .cookie-consent-banner button, .cookie-modal-close {
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.18s;
}
.card, .team-grid > div, .feature-grid > div, .testimonial-card, .newsletter-signup, .value-icons > div {
  transition: box-shadow 0.23s, transform 0.21s;
}
.card:hover, .team-grid > div:hover, .feature-grid > div:hover, .testimonial-card:hover, .newsletter-signup:hover, .value-icons > div:hover {
  box-shadow: 0 8px 36px 0 rgba(71,162,197,0.15);
  transform: translateY(-2px) scale(1.025);
}

/* --- FORMS (newsletter/inputs if present) --- */
input, textarea, select {
  border: 1px solid #E1DFD2;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 1.02rem;
  background: #FFF;
  color: #19364D;
  margin-bottom: 16px;
  outline: none;
  transition: border 0.17s, box-shadow 0.17s;
}
input:focus, textarea:focus, select:focus {
  border-color: #47A2C5;
  box-shadow: 0 0 0 2px rgba(71,162,197,0.16);
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  color: #19364D;
  margin-bottom: 4px;
  display: block;
}

/* --- UTILITIES --- */
.subheadline {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.18rem;
  color: #19364D;
  opacity: 0.91;
  margin-bottom: 20px;
  font-weight: 400;
}
.mt-24 { margin-top: 24px; }
.mt-36 { margin-top: 36px; }
.mb-20 { margin-bottom: 20px; }
.mb-28 { margin-bottom: 28px; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* --- RESPONSIVE TYPOGRAPHY - NO CLAMP --- */
@media (max-width: 900px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.07rem; }
}

/* --- OVERLAY BLOCKING WHEN MODAL/MENU VISIBLE --- */
body.menu-open, body.modal-open {
  overflow: hidden;
}

/* --- END --- */