/* 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;
}
html {
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  background: #1a1b1d;
  color: #F2E5C7;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #8CC084;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F2E5C7;
  text-decoration: underline;
}
ul, ol {
  margin: 0 0 1em 1.5em;
}
strong, b {
  font-weight: 700;
}

/* VARIABLE FONT-FACE LOADING: Fallbacks included */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

:root {
  --brand-primary: #356A3D;
  --brand-secondary: #8CC084;
  --brand-accent: #F2E5C7;
  --black: #181818;
  --grey-900: #232323;
  --grey-800: #26292B;
  --grey-700: #3a3a40;
  --metallic: #7A7F86;
  --border: #44494E;
  --white: #fff;
  --danger: #D94937;
  --shadow: 0 4px 20px 0 rgba(20, 22, 25, 0.18);
}

/* LAYOUT CONTAINERS */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--grey-800);
  border-radius: 18px;
  box-shadow: var(--shadow);
  position: relative;
}
@media (max-width: 600px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 36px;
  }
}

/* CARD FLEX CONTAINERS  */
.card-container, .content-grid, .features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card {
  background: var(--grey-900);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 22px;
  transition: box-shadow 0.2s, border 0.2s;
}
.card:hover {
  border-color: var(--brand-secondary);
  box-shadow: 0 6px 28px 0 rgba(49, 61, 42, 0.20);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

/* FLEX UTILS */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  background: #ffffff6b;
  color: #25282B;
  border-left: 6px solid var(--brand-secondary);
  border-radius: 14px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 28px;
  box-shadow: 0 2px 10px 0 rgba(60, 66, 70,0.11);
  font-size: 1.06em;
  transition: box-shadow 0.2s, border 0.2s;
}
.testimonial-card p {
  color: #23292e;
  margin-bottom: 0.4em;
}
.testimonial-card strong {
  color: var(--brand-primary);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  color: var(--brand-accent);
  margin-bottom: 0.5em;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.8rem;
  color: var(--brand-accent);
  letter-spacing: 0.02em;
  text-shadow: 0 2px 8px rgba(27,44,32,0.07);
  line-height: 1.1;
}
h2 {
  font-size: 2.1rem;
  letter-spacing: 0.01em;
  line-height: 1.14;
  color: var(--brand-secondary);
}
h3 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--brand-primary);
}
h4, h5, h6 {
  font-size: 1.13rem;
  color: var(--brand-accent);
}
.subheadline {
  font-size: 1.22em;
  color: var(--brand-secondary);
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 500;
  margin-bottom: 1em;
}
p, li, ol {
  font-size: 1em;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: var(--brand-accent);
  margin-bottom: 10px;
}
ul, ol {
  padding-left: 22px;
}
ul li, ol li {
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.text-section {
  margin-bottom: 22px;
}
.text-section:last-child {
  margin-bottom: 0;
}

/* BUTTONS & CTAs */
.cta-primary, .cta-secondary, .mobile-menu button, .cookie-banner button, .cookie-modal button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.13em;
  border-radius: 36px;
  padding: 13px 34px;
  border: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, border 0.18s;
  cursor: pointer;
  letter-spacing: 0.03em;
  margin-top: 8px;
  margin-bottom: 8px;
  box-shadow: 0 2px 10px 0 rgba(39,42,44,0.09);
}
.cta-primary {
  background: linear-gradient(90deg, #356A3D 70%, #485c50 100%);
  color: #F2E5C7;
  border: 2.5px solid var(--brand-primary);
  text-shadow: 0 2px 8px rgba(31,31,31,0.06);
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(90deg, #2c4b32 90%, #5b7d63 100%);
  box-shadow: 0 4px 14px 0 rgba(40,60,36,0.14);
  color: var(--brand-accent);
}
.cta-secondary {
  background: #1e2321;
  color: var(--brand-secondary);
  border: 2px solid var(--brand-secondary);
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--brand-secondary);
  color: var(--grey-900);
  border-color: #638b6a;
}
nav a.cta-primary {
  margin-left: 28px;
}

/* HEADER & MAIN NAVIGATION */
header {
  width: 100%;
  background: #191b1e;
  border-bottom: 3.5px solid var(--metallic);
  box-shadow: 0 2px 10px rgba(23,27,22,0.13);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  padding: 14px 24px;
}
header nav {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
header nav a {
  color: #a4b3a8;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1em;
  padding: 8px 10px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
header nav a:hover, header nav a.active {
  background: #23292B;
  color: var(--brand-secondary);
}
header img {
  height: 44px;
  margin-right: 28px;
}
header .mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--brand-accent);
  font-size: 2em;
  cursor: pointer;
  margin-left: 20px;
  padding: 6px 10px 4px 10px;
  transition: color 0.18s;
  border-radius: 10px;
}
header .mobile-menu-toggle:hover, header .mobile-menu-toggle:focus {
  color: var(--brand-secondary);
  background: #22272a;
}

/* MOBILE HEADER */
@media (max-width: 1024px) {
  header nav {
    display: none;
  }
  header .mobile-menu-toggle {
    display: inline-flex;
  }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 2500;
  background: rgba(24,27,28, 0.99);
  transform: translateX(100vw);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100vw;
  height: 100vh;
  overflow-y: auto;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  background: transparent;
  color: var(--brand-accent);
  border: none;
  font-size: 2.3rem;
  margin: 30px 0 16px 30px;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover {
  color: var(--brand-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 12px;
  margin-top: 16px;
  padding-left: 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.36rem;
  padding: 14px 10px 14px 2px;
  color: var(--brand-accent);
  border-radius: 5px;
  margin-bottom: 3px;
  background: none;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #23292B;
  color: var(--brand-secondary);
}

@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/* MAIN & FOOTER */
main {
  width: 100%;
  margin-top: 0;
  flex: 1 0 auto;
}
footer {
  width: 100%;
  background: #191a19;
  border-top: 2.5px solid var(--grey-700);
  box-shadow: 0 -4px 18px 0 rgba(32,33,31,0.14);
  padding: 32px 0 0 0;
  font-size: 1em;
}
footer .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px;
  padding: 14px 24px;
}
footer img {
  height: 38px;
  margin-bottom: 14px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
footer nav a {
  color: var(--metallic);
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1em;
  padding: 4px 0;
  transition: color 0.17s;
}
footer nav a:hover {
  color: var(--brand-secondary);
}
footer .text-section {
  color: var(--metallic);
  font-size: 0.98em;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  margin-bottom: 0;
  line-height: 1.5;
}
footer strong {
  color: var(--brand-accent);
}
@media (max-width: 820px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* ICON & IMAGE STYLES */
li img, .text-section img {
  width: 1.35em;
  height: 1.35em;
  object-fit: contain;
  margin-right: 8px;
  filter: grayscale(65%) contrast(1.05) brightness(1.05);
}

/* CARD/GRID/TESTIMONIAL SPACING */
.card-container, .content-grid, .features {
  gap: 24px;
}
.content-wrapper > * {
  margin-bottom: 20px;
}
.content-wrapper > *:last-child {
  margin-bottom: 0;
}

/* RESPONSIVE WRAPPERS */
@media (max-width: 768px) {
  .container {
    padding: 0 7px;
  }
  .content-wrapper {
    gap: 16px;
  }
  .section {
    border-radius: 11px;
  }
  .content-grid, .card-container, .features {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  header .container, footer .container {
    flex-direction: column;
    padding: 12px 7px;
    gap: 14px;
  }
}

/* SPACING RULES! */
.section, .card, .testimonial-card, .feature-item, .card-container, .content-grid, .text-image-section {
  margin-bottom: 20px;
}
.section:last-child, .card:last-child, .testimonial-card:last-child, .feature-item:last-child {
  margin-bottom: 0 !important;
}

/* SHADOWS & BORDERS */
.card, .testimonial-card, .feature-item {
  box-shadow: var(--shadow);
}

/* MICRO-INTERACTIONS / HOVER EFFECTS */
.card, .testimonial-card, .cta-primary, .cta-secondary {
  transition: box-shadow 0.18s, border 0.18s, background 0.18s, color 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px 0 rgba(46,84,48,0.14);
  border-left-color: var(--brand-primary);
}
.feature-item:hover {
  box-shadow:0 2px 12px 0 rgba(80,110,70,0.09);
  border-left: 5px solid var(--brand-secondary);
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 9999;
  background: #262A2D;
  box-shadow: 0 -2px 14px 0 rgba(32,32,34,0.16);
  color: var(--brand-accent);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  padding: 24px 14px 14px 24px;
  gap: 18px;
  min-height: 78px;
  font-size: 1em;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  transition: transform 0.22s cubic-bezier(.42,0,.36,1);
}
.cookie-banner.hidden {
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-banner .cookie-text {
  max-width: 420px;
  margin-right: 20px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1em;
  background: #23292B;
  color: var(--brand-accent);
  border: 1.5px solid var(--metallic);
  border-radius: 30px;
  padding: 10px 22px;
  cursor: pointer;
  margin: 0 5px;
  box-shadow: none;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--brand-primary);
  color: var(--brand-accent);
  border-color: var(--brand-secondary);
}
.cookie-banner button.accept {
  background: var(--brand-secondary);
  color: #1a1b1d;
  border: none;
}
.cookie-banner button.accept:hover {
  background: #6ba775;
  color: var(--brand-accent);
}
.cookie-banner button.reject {
  background: #2b2423;
  color: var(--danger);
  border: 1.5px solid var(--danger);
}
.cookie-banner button.reject:hover {
  background: #591a14;
  color: #fff;
}
.cookie-banner button.settings {
  background: #26292B;
  color: var(--brand-accent);
  border: 1.5px solid var(--brand-secondary);
}
.cookie-banner button.settings:hover {
  background: var(--brand-secondary);
  color: var(--grey-900);
}

@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding: 18px 7px 10px 11px;
    font-size: 0.98em;
  }
  .cookie-banner .cookie-text {
    margin-right: 0;
    max-width: none;
  }
  .cookie-banner .cookie-actions {
    flex-direction: column;
    gap: 8px;
  }
}
/* COOKIE CONSENT MODAL */
.cookie-modal {
  position: fixed;
  z-index: 10000;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(21,23,19,0.86);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.22s cubic-bezier(.44,.07,.38,1), transform 0.2s;
}
.cookie-modal.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(24px);
}
.cookie-modal .modal-content {
  background: #302f34;
  border-radius: 20px;
  width: 98%;
  max-width: 460px;
  box-shadow: 0 6px 38px 0 rgba(17,21,21,0.18);
  padding: 38px 30px 19px 30px;
  color: var(--brand-accent);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal h2 {
  color: var(--brand-secondary);
  margin-bottom: 18px;
  font-size: 1.37rem;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 20px; right: 20px;
  background: transparent;
  border: none;
  color: var(--brand-accent);
  font-size: 1.5em;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}
.cookie-modal .modal-close:hover {
  color: var(--brand-secondary);
}
.cookie-modal label {
  font-size: 1.01em;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.cookie-modal input[type='checkbox'] {
  accent-color: var(--brand-secondary);
  width: 18px; height: 18px;
  border-radius: 4px;
}
.cookie-modal .category {
  background: #23242a;
  padding: 13px 14px;
  border-radius: 12px;
  margin-bottom: 12px;
  border: 1px solid var(--grey-700);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.cookie-modal .category.essential {
  background: #2e342a;
  border-left: 5px solid var(--brand-secondary);
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 7px;
}
.cookie-modal button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1em;
  background: #23292B;
  color: var(--brand-accent);
  border: 1.5px solid var(--metallic);
  border-radius: 30px;
  padding: 9px 22px;
  cursor: pointer;
}
.cookie-modal button.accept {
  background: var(--brand-secondary);
  color: #181818;
  border: none;
}
.cookie-modal button.accept:hover {
  background: #6ba775;
  color: var(--brand-accent);
}
.cookie-modal button.save {
  background: var(--brand-primary);
  color: #fff;
  border: none;
}
.cookie-modal button.save:hover {
  background: #264f34;
  color: var(--brand-accent);
}
.cookie-modal button.cancel {
  background: transparent;
  color: var(--metallic);
  border: 1.5px solid var(--metallic);
}
.cookie-modal button.cancel:hover {
  background: #191a1b;
  color: var(--brand-secondary);
}

@media (max-width: 490px) {
  .cookie-modal .modal-content {
    padding: 14px 5px 10px 5px;
    max-width: 98vw;
    width: 98vw;
  }
}

/* Miscellaneous: accessibility/selection etc */
::selection {
  background: var(--brand-secondary);
  color: #151A19;
}

/* Accessibility for Focus */
button:focus, .cta-primary:focus, .cta-secondary:focus, a:focus {
  outline: 2px solid var(--brand-accent);
  outline-offset: 1px;
}

/* Hide visually only, for cookie/ARIA hints */
.visually-hidden {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/********************
 **  MOBILE STYLES **
 *******************/
@media (max-width: 600px) {
  h1 {
    font-size: 2.12rem;
  }
  h2 {
    font-size: 1.55rem;
  }
  h3 {
    font-size: 1.08rem;
  }
  .section {
    padding: 19px 5px;
  }
  .card {
    padding: 18px 9px;
  }
  .testimonial-card {
    padding: 12px 10px;
    border-radius: 8px;
  }
  ul, ol {
    padding-left: 14px;
  }
  .cta-primary, .cta-secondary {
    padding: 10px 16px;
    font-size: 0.98em;
  }
}

/* PRINT STYLES: Hide banners and nav */
@media print {
  header, .mobile-menu, .cookie-banner, .cookie-modal, footer {
    display: none !important;
  }
  .section {
    background: #fff !important;
    color: #181818 !important;
  }
}

/* END of industrial_modern responsive theme for Pulse Fusion Grünpflege */
