/* 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  background: #212529;
  color: #ECEFF1;
}
ol, ul {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
}

/* VARIABLES (fallbacks included) */
:root {
  --color-primary: #153F65;
  --color-secondary: #30B37A;
  --color-accent: #F1F3F8;
  --color-bg-dark: #212529;
  --color-bg-darker: #181B1E;
  --color-bg-light: #2F3740;
  --color-metal: #ABB8C3;
  --color-btn-text: #212529;
  --color-btn-contrast: #ECEFF1;
  --color-white: #fff;
  --color-black: #111418;
  --shadow-elevate: 0 0.5rem 1rem rgba(20,33,44,0.14);
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --transition: all 0.25s cubic-bezier(.45,0,.52,1);
}

/* TYPEFACE LOAD (Montserrat and Roboto with system fallbacks) */
@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');

body {
  background: var(--color-bg-dark);
  font-family: var(--font-body), Arial, sans-serif;
  color: #ECEFF1;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display), Arial, sans-serif;
  font-weight: 700;
  color: var(--color-secondary);
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.3rem; margin-bottom: 12px; color: var(--color-accent); }
h4, h5, h6 { color: var(--color-metal); }
p, li, blockquote, label {
  font-size: 1rem;
  line-height: 1.7;
  color: #ECEFF1;
}
strong { color: var(--color-metal); font-weight: 700; }
subheadline, .subheadline { font-size: 1.15rem; color: var(--color-metal); font-family: var(--font-display); margin-bottom: 2px; }

/* CONTAINER & LAYOUT */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-elevate);
}

/* FLEX LAYOUTS -- spacing & alignment */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-bg-darker);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-elevate);
  margin-bottom: 20px;
  position: relative;
  transition: transform 0.18s cubic-bezier(.51,.11,.36,.96);
}
.card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 1rem 2rem rgba(24,27,30,0.17);
}
.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: var(--color-accent);
  color: #222f36;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(21,63,101,0.08);
  min-width: 260px;
  max-width: 480px;
  border-left: 6px solid var(--color-primary);
}
.testimonial-card strong,
.testimonial-card p,
.testimonial-card blockquote {
  color: var(--color-black);
}
.testimonial-card .user-stars {
  font-size: 1.25rem;
  color: var(--color-secondary);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-bg-light);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-elevate);
}

/* BUTTONS & CTA */
.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, var(--color-secondary) 75%, var(--color-primary) 100%);
  color: var(--color-btn-contrast);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.075rem;
  padding: 13px 38px;
  letter-spacing: 0.01em;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 16px rgba(48,179,122,0.13);
  margin-top: 8px;
  margin-bottom: 8px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-shadow: 0 1px 10px rgba(21,63,101,0.07);
  outline: none;
}
.cta-primary:hover,
.cta-primary:focus {
  background: linear-gradient(90deg, var(--color-primary) 80%, var(--color-secondary) 100%);
  color: var(--color-white);
  box-shadow: 0 8px 24px rgba(48,179,122,0.19);
  transform: translateY(-2px) scale(1.03);
}
.btn, button, .cookie-btn {
  font-family: var(--font-display);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 24px;
  cursor: pointer;
  border: none;
  outline: none;
  margin-right: 10px;
  transition: var(--transition);
}
.btn-secondary, .cookie-btn.settings {
  background: var(--color-metal);
  color: var(--color-black);
}
.btn-secondary:hover, .cookie-btn.settings:hover {
  background: var(--color-secondary);
  color: var(--color-white);
}
.cookie-btn.accept {
  background: var(--color-secondary);
  color: var(--color-white);
}
.cookie-btn.accept:hover {
  background: var(--color-primary);
}
.cookie-btn.reject {
  background: var(--color-primary);
  color: var(--color-accent);
}
.cookie-btn.reject:hover {
  background: var(--color-black);
}

/* HEADER & NAVIGATION */
header {
  background: var(--color-bg-darker);
  box-shadow: 0 2px 12px rgba(20,33,44,0.11);
  padding: 0;
  position: relative;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
}
header img {
  max-height: 40px;
  margin-right: 24px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
header nav a {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-accent);
  font-size: 1rem;
  position: relative;
  padding: 8px 12px;
  transition: color 0.15s cubic-bezier(.32,.77,.52,1), background 0.17s;
}
header nav a:not(.cta-primary):hover {
  color: var(--color-secondary);
}
header nav .cta-primary {
  margin-left: 14px;
}
.mobile-menu-toggle {
  display: none;
  background: var(--color-secondary);
  color: var(--color-bg-dark);
  font-size: 2.1rem;
  border-radius: 50%;
  width: 42px; height: 42px;
  align-items: center;
  justify-content: center;
  border: none;
  position: relative;
  z-index: 120;
  box-shadow: 0 1px 4px rgba(21,63,101,0.11);
  cursor: pointer;
  transition: background 0.15s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--color-accent);
}
header nav { transition: none; }

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(27,33,40,0.98);
  backdrop-filter: blur(3px);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.34s cubic-bezier(.53,.01,.35,1.02);
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.3rem;
  background: transparent;
  color: var(--color-secondary);
  border: none;
  align-self: flex-end;
  margin: 24px 24px 0 0;
  cursor: pointer;
  transition: color 0.23s;
  z-index: 2002;
}
.mobile-menu-close:hover {
  color: var(--color-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 48px 0 0 32px;
}
.mobile-nav a {
  font-size: 1.15rem;
  font-family: var(--font-display);
  color: var(--color-accent);
  padding: 10px 0;
  transition: color 0.21s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-secondary);
}

/* HERO SECTION, HEADINGS, SUBHEADLINES */
.section:first-of-type, section:first-of-type {
  background: var(--color-primary);
  color: var(--color-accent);
  box-shadow: 0 10px 30px rgba(32,60,110,0.14);
}
.section:first-of-type h1,
.section:first-of-type h2,
.section:first-of-type .subheadline {
  color: var(--color-accent);
}
.section:first-of-type .cta-primary {
  background: var(--color-secondary);
}

/* SEARCH BAR */
.search-bar { margin: 20px 0 0; }
.search-bar input {
  width: 100%;
  background: var(--color-bg-light);
  color: var(--color-white);
  border: 1px solid var(--color-metal);
  padding: 15px 18px;
  border-radius: var(--radius-md);
  font-size: 1.1rem;
  transition: border .18s;
  margin-bottom: 10px;
}
.search-bar input:focus {
  border-color: var(--color-secondary);
  background: #242b33;
}

/* LISTS, SERVICE-LISTs, OL/UL */
ul, ol {
  padding-left: 22px;
  margin-bottom: 14px;
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-list li, .news-feed li, .event-highlights li {
  background: var(--color-bg-light);
  color: var(--color-accent);
  padding: 14px 18px;
  margin-bottom: 10px;
  border-radius: var(--radius-sm);
  box-shadow: 0 1px 4px rgba(21,63,101,0.09);
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.news-feed { margin-bottom: 18px; }
.event-highlights h3 {
  color: var(--color-secondary);
  margin-bottom: 12px;
}

/* VALUE ICONS (About Page) */
.value-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.value-icons > div {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-bg-darker);
  color: var(--color-secondary);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  box-shadow: 0 1px 5px rgba(27,50,78,.08);
}

/* FOOTER */
footer {
  background: var(--color-bg-darker);
  padding: 36px 0 24px 0;
  border-top: 1.5px solid var(--color-bg-light);
  margin-top: 64px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
}
.footer-links {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: var(--color-metal);
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 4px 0px;
  transition: color 0.14s;
}
.footer-links a:hover {
  color: var(--color-secondary);
}
.footer-info {
  display: flex;
  align-items: center;
  gap: 18px;
  opacity: 0.82;
}
.footer-info img {
  max-height: 34px;
}
footer p {
  color: var(--color-metal);
  font-size: 0.92rem;
}

/* SOCIAL LINKS (Aktuelles) */
.social-links {
  display: flex;
  gap: 18px;
}
.social-links li {
  display: flex;
  align-items: center;
  background: transparent;
  color: var(--color-accent);
  font-weight: 500;
  gap: 6px;
  font-size: 1.05rem;
  border: none;
  box-shadow: none;
  margin: 0;
}

/* TEXT SECTIONS & CONTACT BLOCKS */
.text-section {
  background: var(--color-bg-light);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  color: var(--color-accent);
  margin-bottom: 16px;
  box-shadow: 0 2px 7px rgba(21,63,101,0.07);
}
.contact-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}
.contact-block p {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-block img {
  height: 20px; width: 20px;
  filter: grayscale(0.65) brightness(1.1);
}

/* TRANSITIONS & INTERACTIONS */
a,
button,
.cta-primary,
.btn,
.cookie-btn,
header nav a,
.mobile-nav a,
.card,
.card:hover {
  transition: var(--transition);
}
img,
.feature-grid img,
.value-icons img {
  border-radius: var(--radius-sm);
  box-shadow: none;
  transition: box-shadow 0.15s;
}
.feature-grid img, .value-icons img {
  width: 46px; height: 46px;
  background: #26313b;
  padding: 4px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--color-metal);
  box-shadow: 0 1px 5px rgba(21,63,101,.05);
}
.feature-grid > div:hover img {
  box-shadow: 0 3px 16px rgba(48,179,122,0.12);
}

/* USER STARS */
.user-stars {
  letter-spacing: 0.1em;
  color: var(--color-secondary);
  font-family: var(--font-display);
  font-size: 1.15em;
  margin-top: 4px;
  margin-bottom: 6px;
}

/* MODALS, BANNERS, OVERLAYS */
/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: var(--color-bg-dark);
  color: var(--color-accent);
  box-shadow: 0 -3px 18px rgba(5,18,37,0.21);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3330;
  padding: 24px 16px 20px 16px;
  gap: 16px;
  animation: slideUpBanner 0.39s cubic-bezier(.49,.06,.63,.92);
}
@keyframes slideUpBanner {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  font-size: 1rem;
  color: var(--color-accent);
  text-align: center;
  margin-bottom: 7px;
}
.cookie-banner .cookie-btn {
  min-width: 120px;
  margin: 8px 6px 0 0;
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(33,38,44,0.86);
  z-index: 3370;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.28s cubic-bezier(.46,.17,.51,1);
}
.cookie-modal .modal-window {
  background: var(--color-bg-darker);
  color: var(--color-accent);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 42px rgba(21,63,101,0.21);
  max-width: 380px;
  width: 92%;
  padding: 38px 22px 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  animation: fadeInModal 0.31s cubic-bezier(.46,.17,.51,1);
}
@keyframes fadeInModal {
  from {transform: scale(1.16) translateY(60px); opacity: 0; }
  to   {transform: none; opacity: 1;}
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 8px 0;
}
.cookie-modal input[type=checkbox] {
  accent-color: var(--color-secondary);
  width: 20px; height: 20px;
}
.cookie-modal .cookie-btn {
  min-width: 110px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .container {
    max-width: 94vw;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  .footer-links {
    flex-direction: column;
    gap: 18px;
  }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .footer-info {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  .feature-grid {
    flex-direction: column;
  }
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 600px) {
  .section {
    padding: 26px 6px;
    margin-bottom: 38px;
  }
  .testimonial-card {
    padding: 12px 8px;
    font-size: 0.96rem;
    min-width: unset;
    max-width: 100%;
  }
  .value-icons {
    gap: 10px;
  }
  .feature-grid > div,
  .service-list li,
  .card { min-width: unset; max-width: 100%; }
}

/* VISUAL INDUSTRIAL MODERN CROWD - "industrial_modern" accents */
.section, .card, .feature-item, .text-section {
  border: 1.5px solid #2D333B;
  box-shadow: 0 8px 26px rgba(42,50,60,0.09), 0 2px 12px rgba(80,120,130,0.06);
}

header, footer {
  border-bottom: 2px solid #23292F;
}

section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* MICRO INTERACTIONS */
.card, .feature-item, .testimonial-card {
  transition: box-shadow 0.13s, transform 0.19s;
}
.card:hover, .feature-item:hover,
.feature-grid > div:hover {
  box-shadow: 0 12px 28px rgba(36,179,122,0.11), 0 3px 16px rgba(48,179,122,0.08);
  transform: scale(1.012) translateY(-2px);
}
.cta-primary:active {
  transform: scale(0.97);
  box-shadow: 0 2px 7px rgba(48,179,122,0.13);
}

/* Gaps between all major content blocks */
section + section, .section + .section, .card + .card, .content-wrapper + .content-wrapper {
  margin-top: 30px;
}

/* GAP for flex containers */
.feature-grid, .card-container, .content-grid, .testimonial-row {
  gap: 20px;
}

/* Prevent overlapping */
.card, .feature-item, .testimonial-card, .section, .text-section {
  margin-bottom: 20px;
}

/* ENSURE ACCESSIBILITY FOR TESTIMONIALS */
.testimonial-card {
  background: var(--color-accent);
  color: #222f36;
}
.testimonial-card p, .testimonial-card strong, .testimonial-card blockquote { color: #192127; }

/* Miscellaneous Hedging */
::-webkit-scrollbar {
  width: 10px; background: #272d36;
}
::-webkit-scrollbar-thumb {
  background: #2e3743; border-radius: 6px;
}

/* Hide default cookie banner if JavaScript disables it */
.cookie-banner.js-hide, .cookie-modal.js-hide { display: none !important; }

/* Utility helpers */
.hide {
  display: none !important;
}

/* END OF industrial_modern CSS THEME */
