/* 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, main, 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;
}
article, aside, details, figcaption, figure, footer, header, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #FAFDFF;
  color: #173E43;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; transition: color .2s; }
img { max-width: 100%; height: auto; display: block; }
ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  outline: none;
  border: none;
  background: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #173E43;
}
strong, .strong {
  font-weight: 700;
  color: #3FB8AF;
}

/* Typography Scale */
h1 { font-size: 2.5rem; margin-bottom: 20px; letter-spacing: -1px; line-height: 1.13; }
h2 { font-size: 2rem; margin-bottom: 18px; line-height: 1.2; }
h3 { font-size: 1.35rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; margin-bottom: 8px; }
.subheadline {
  color: #444;
  font-size: 1.15rem;
  margin-bottom: 20px;
  font-family: 'Open Sans', Arial, sans-serif;
  letter-spacing: .03em;
  font-weight: 500;
}

/* playful_dynamic FONTS */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,400|Open+Sans:400,600&display=swap');

body {
  font-size: 16px;
  background: #FAFDFF;
}

/* Container & Layout System */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 18px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 3px 16px rgba(63,184,175,0.10), 0 0 0 1px #F6D55C44;
  transition: box-shadow 0.2s;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 20px;
  background: transparent;
}
.text-section {
  background: #F6D55C55;
  border-radius: 20px;
  padding: 30px 24px;
  margin-bottom: 20px;
}

.feature-grid, .company-list, .technology-list, .equipment-list, .market-trends, .comparison-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}

.company-list > div, .technology-list > div, .equipment-list > div, .comparison-grid > div {
  flex: 1 1 220px;
  background: #FAFDFF;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(63,184,175,0.07), 0 0 0 1px #3FB8AF22;
  padding: 18px 16px;
  margin-bottom: 20px;
  min-width: 180px;
  position: relative;
  transition: box-shadow .2s, transform .15s;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1;
}
.company-list > div:hover, .technology-list > div:hover, .equipment-list > div:hover, .comparison-grid > div:hover {
  box-shadow: 0 8px 24px 0 #F6D55C44, 0 0 0 1.5px #3FB8AF;
  transform: translateY(-4px) scale(1.03) rotate(-1.5deg);
  z-index: 3;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 14px 0 #3FB8AF12, 0 0 0 1.5px #3FB8AF14;
  padding: 28px 22px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .18s, transform .14s;
}
.card:hover {
  box-shadow: 0 12px 30px #173E4340, 0 0 0 2px #F6D55C;
  transform: scale(1.024) rotate(0.6deg);
  z-index: 2;
}

.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #FFFBE5;
  border-radius: 18px;
  box-shadow: 0 2px 8px #3FB8AF24;
  border: 1.5px solid #F6D55C;
  font-size: 1rem;
  color: #173E43;
}
.testimonial-card blockquote {
  margin: 0 0 0 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #173E43;
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-card cite {
  font-size: 0.92rem;
  color: #3FB8AF;
  font-style: normal;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-left: 16px;
}

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

.key-figures, .pros-cons, .usage-by-company {
  margin: 14px 0 16px 0;
  font-size: 1rem;
  color: #173E43;
}

/********* Navigation & Header *********/
header {
  background: #F6D55C;
  box-shadow: 0 2px 18px #F6D55C12;
  border-bottom: 3px solid #3FB8AF24;
  position: relative;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px 12px 18px;
}
header a img { height: 42px; }
nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  color: #173E43;
  font-weight: 600;
  background: #fff;
  padding: 9px 18px;
  border-radius: 24px;
  transition: background .18s, color .16s, box-shadow .13s;
  box-shadow: 0 2px 8px #F6D55C17;
  margin-bottom: 2px;
}
nav a:hover, nav a:focus {
  background: #3FB8AF;
  color: #fff; 
  box-shadow: 0 5px 20px #3FB8AF30;
}
nav .cta-primary {
  background: #3FB8AF;
  color: #fff;
  box-shadow: 0 2px 14px #3FB8AF22;
  font-size: 1.06rem;
  font-weight: 700;
  border-radius: 29px;
  padding: 10px 26px;
  margin-left: 10px;
  transition: box-shadow .18s, background .15s;
}
nav .cta-primary:hover, nav .cta-primary:focus {
  background: #173E43;
  color: #F6D55C;
  box-shadow: 0 10px 32px #3FB8AF34;
}

/**** Responsive Nav (Desktop: show, Mobile: toggle) ****/
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  color: #173E43;
  background: #3FB8AF;
  border-radius: 50%;
  width: 46px; height: 46px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px #3FB8AF33;
  border: none;
  cursor: pointer;
  transition: background .16s, transform .11s;
}
.mobile-menu-toggle:active {
  background: #F6D55C;
  transform: scale(.92);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #F6D55C;
  box-shadow: 0 2px 48px #3FB8AF33;
  z-index: 995;
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(.76,.03,.23,.90);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 24px 40px 24px;
}
.mobile-menu.open {
  transform: translateX(0);
  transition: transform 0.32s cubic-bezier(.44,.03,.12,.99);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.3rem;
  background: #3FB8AF;
  color: #fff;
  border-radius: 50%;
  border: none;
  width: 42px; height: 42px;
  cursor: pointer;
  margin-bottom: 24px;
  transition: background .14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #173E43;
  color: #F6D55C;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-top: 12px;
}
.mobile-nav a {
  background: #fff;
  color: #173E43;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  border-radius: 28px;
  padding: 16px 18px;
  margin-bottom: 2px;
  font-weight: 700;
  text-align: left;
  box-shadow: 0 2px 12px #F6D55C18;
  transition: background .15s, color .13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #3FB8AF;
  color: #fff;
}

@media (max-width: 980px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 981px) {
  .mobile-menu, .mobile-menu-close {
    display: none !important;
  }
}

/********* Main Sections **********/
main {
  background: #FAFDFF;
}
section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}
.section:last-child, section:last-child {
  margin-bottom: 0;
}

/********* Tables, Lists, Blockquotes **********/
table {
  width: 100%;
  border-collapse: collapse;
  margin: 15px 0 12px 0;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px #3FB8AF18;
}
thead {
  background: #F6D55C55;
}
th, td {
  padding: 12px 16px;
  text-align: left;
  font-size: 1rem;
}
tr {
  border-bottom: 1px solid #eee;
}
tr:last-child { border-bottom: none; }

ul, ol {
  padding-left: 20px;
  margin-bottom: 10px;
}
li {
  font-size: 1rem;
  margin-bottom: 8px;
  word-break: break-word;
}
ul li:before,
.pros-cons ul li:before,
.unique-selling-points ul li:before,
.benefits-analysis ul li:before,
.efficiency-metrics ul li:before,
.safety-features ul li:before,
.factor-analyses ul li:before,
.profit-drivers ul li:before {
  content: '';
  margin-right: 0;
}
.pros-cons ul li, .unique-selling-points ul li, .benefits-analysis ul li, .efficiency-metrics ul li, .safety-features ul li, .profit-drivers ul li {
  font-size: 1.08rem;
}
blockquote {
  border-left: 6px solid #3FB8AF;
  padding-left: 20px;
  margin-bottom: 14px;
  color: #173E43;
  font-style: italic;
  background: #F6D55C22;
  border-radius: 8px;
}

/********* CTA Buttons *********/
.cta-primary, .cta-secondary {
  display: inline-block;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  border-radius: 32px;
  padding: 13px 34px;
  margin-top: 10px;
  margin-bottom: 16px;
  box-shadow: 0 3px 12px #3FB8AF18;
  transition: background .19s, color .14s, box-shadow .22s, transform .13s;
  outline: none;
}
.cta-primary {
  background: #3FB8AF;
  color: #fff;
}
.cta-primary:hover, .cta-primary:focus {
  background: #173E43;
  color: #F6D55C;
  box-shadow: 0 9px 30px #3FB8AF33;
  transform: scale(1.06) rotate(-1deg);
}
.cta-secondary {
  background: #F6D55C;
  color: #173E43;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #3FB8AF;
  color: #fff;
  box-shadow: 0 7px 24px #F6D55C22;
  transform: scale(1.04) rotate(1deg);
}

/********* Footer *********/
footer {
  background: #173E43;
  color: #F6D55C;
  margin-top: 70px;
  padding: 40px 0 24px 0;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -2px 22px #3FB8AF10;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
}
.footer-menu {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-menu a {
  color: #F6D55C;
  font-size: 1.08rem;
  background: #3FB8AF38;
  padding: 7px 20px;
  border-radius: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: background .16s, color .13s;
}
.footer-menu a:hover, .footer-menu a:focus {
  background: #F6D55C;
  color: #173E43;
}
.brand-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.15rem;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
}
.footer-social {
  display: flex;
  gap: 18px;
  align-items: center;
}

/******** Animations & playful_dynamic micro-interactions ********/
.card, .company-list > div, .technology-list > div, .equipment-list > div, .testimonial-card, .footer-menu a, .cta-primary, .cta-secondary, nav a {
  transition: box-shadow 0.23s, transform 0.17s, background .18s, color .15s;
}
.card:hover:after, .company-list > div:hover:after, .technology-list > div:hover:after {
  content: '';
  position: absolute;
  top: -14px; right: -14px;
  width: 38px; height: 38px;
  background: #F6D55C;
  border-radius: 50%;
  box-shadow: 0 7px 29px #F6D55CCC;
  opacity: .19;
  z-index: -1;
  animation: sparkle 0.45s ease;
}
@keyframes sparkle {
  0% { opacity: 0; transform: scale(0.7); }
  80%{ opacity:.28; transform: scale(1.12); }
  100%{ opacity:.19; transform: scale(1); }
}
.cta-primary:active, .cta-secondary:active {
  transform: scale(.95);
}

/********* Cookie Consent Banner *********/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #173E43;
  color: #fff;
  padding: 24px 16px;
  z-index: 1200;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  box-shadow: 0 -5px 36px #3FB8AF42;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  flex-wrap: wrap;
  animation: cookie-slideup .55s cubic-bezier(.16,1.56,.7,.91);
}
@keyframes cookie-slideup {
  from { transform: translateY(80px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner button {
  margin-left: 12px;
  border-radius: 28px;
  padding: 12px 22px;
  font-size: 1em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background .13s, color .12s, box-shadow .1s;
  background: #F6D55C;
  color:#173E43;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #3FB8AF;
  color: #fff;
  box-shadow: 0 3px 14px #F6D55C33;
}
.cookie-banner .cookie-settings {
  background: #3FB8AF;
  color: #fff;
  margin-left: 14px;
}
.cookie-banner .cookie-settings:hover {
  background: #F6D55C;
  color: #173E43;
}

/********* Cookie Preferences Modal *********/
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: #173E4391;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modal-fadein .27s cubic-bezier(0.51, 0.4, 0.23, 1.07);
}
@keyframes modal-fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  padding: 36px 32px 28px 32px;
  border-radius: 22px;
  box-shadow: 0 7px 54px #173E4340;
  min-width: 320px;
  max-width: 99vw;
  color: #173E43;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.08rem;
  z-index: 1301;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: modal-slideup .31s cubic-bezier(.22,1.08,.74,.95);
}
@keyframes modal-slideup {
  from { transform: translateY(60px) scale(.96); opacity:0; }
  to { transform: translateY(0) scale(1); opacity:1; }
}
.cookie-modal h2 {
  font-size: 1.24rem;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 16px;
  background: #F6D55C33;
  border-radius: 11px;
  padding: 10px 15px;
}
.cookie-modal .cookie-category label {
  font-weight: 600;
  font-size: 1.1rem;
  min-width: 160px;
}
.cookie-modal input[type="checkbox"] {
  width: 26px;
  height: 26px;
  accent-color: #3FB8AF;
  border-radius: 7px;
}
.cookie-modal .btn-row {
  display: flex;
  gap: 16px;
  margin-top: 15px;
  justify-content: flex-end;
}
.cookie-modal .btn-row button {
  padding: 13px 28px;
}

/********* Helpers & Utility classes *********/
.mt-0 { margin-top: 0 !important; }
.mt-8 { margin-top: 8px !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-12 { margin-bottom: 12px !important; }
.mb-24 { margin-bottom: 24px !important; }
.mb-40 { margin-bottom: 40px !important; }
.text-center { text-align: center !important; }
.align-center { align-items: center !important; }
.lh-tight { line-height: 1.1 !important; }
.lh-loose { line-height: 1.7 !important; }
.bg-accent { background: #F6D55C !important; }
.bg-primary { background: #3FB8AF !important; }
.bg-dark { background: #173E43 !important; color: #fff !important; }

/*************** Responsive Design ****************/
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
  .content-wrapper,
  .company-list, .technology-list, .equipment-list, .comparison-grid, .feature-grid {
    flex-direction: column !important;
    gap: 20px !important;
  }
  .company-list > div, .technology-list > div, .equipment-list > div, .comparison-grid > div {
    min-width: 0;
    width: 100%;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 18px;
  }
  section, .section {
    padding: 25px 6px 0 6px;
    margin-bottom: 36px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.32rem; }
  .testimonial-card { flex-direction: column; align-items: flex-start; }
  .brand-footer span { font-size: .99rem; }
  .footer-menu { flex-direction: column; gap: 12px; align-items: flex-start; }
  .footer-social { gap: 10px; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.45rem; }
  .content-wrapper, .card, .testimonial-card {
    padding: 14px 9px;
    border-radius: 11px;
  }
  .cookie-modal {
    padding: 24px 7px 18px 10px;
    border-radius: 12px;
    min-width: 0;
  }
}

/************ Decorative playful_dynamic elements ************/
.card:before, .company-list > div:before, .technology-list > div:before, .equipment-list > div:before {
  content: '';
  position: absolute;
  top: -14px; left: -14px;
  width: 40px; height: 40px;
  background: #3FB8AF33;
  border-radius: 50%;
  z-index: 0;
}

/***** Colorful and playful checkmarks for highlights *****/
li:before, .pros-cons ul li:before, .unique-selling-points ul li:before, .benefits-analysis ul li:before, .efficiency-metrics ul li:before, .safety-features ul li:before, .profit-drivers ul li:before {
  display: inline-block;
  margin-right: 10px;
  font-size: 1.12rem;
}
.pros-cons ul li:before { content: attr(data-icon); color: #3FB8AF; }
.unique-selling-points ul li:before, .benefits-analysis ul li:before, .efficiency-metrics ul li:before, .safety-features ul li:before, .profit-drivers ul li:before {
  content: '✔️'; color: #3FB8AF;
  margin-right: 9px;
}
.pros-cons ul li[data-icon^='❌']:before {
  content: '❌'; color: #F65C6C; }
.pros-cons ul li[data-icon^='✔️']:before {
  content: '✔️'; color: #3FB8AF; }

/******** Contact Details ********/
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 1.1rem;
  margin-bottom: 18px;
}
.contact-details img {
  width: 25px;
  height: 25px;
  vertical-align: middle;
  margin-right: 10px;
}

/********* Misc classes for special components *********/
.revenue-tables, .profit-charts, .trend-analyses { margin-bottom: 18px; }

/******* Z-Index for overlays and fixed elements ******/
.cookie-banner { z-index: 1202; }
.cookie-modal-overlay { z-index: 1300; }

/**************** End ÖlKompass playful_dynamic CSS *****************/
