/* ---------------- 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;
  box-sizing: border-box;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #182723;
  color: #F6F8F3;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  list-style: none;
}
a {
  color: #B9D66B;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px dashed #B9D66B;
  outline-offset: 2px;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
}
button {
  cursor: pointer;
}

/* ---------------- BRAND COLOR VARIABLES ----------------- */
:root {
  --color-primary: #285930;
  --color-secondary: #B9D66B;
  --color-accent: #F6F8F3;
  --color-bg: #182723;
  --color-bg-alt: #223A2A;
  --color-neon: #5DFF70;
  --color-shadow: rgba(0, 0, 0, 0.25);
  --font-display: 'Montserrat', 'Arial', sans-serif;
  --font-body: 'Roboto', 'Arial', sans-serif;
}

/* ---------------- LAYOUT CONTAINERS ----------------- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg-alt);
  border-radius: 24px;
  box-shadow: 0 4px 24px var(--color-shadow);
  transition: box-shadow 0.3s;
}
@media (max-width: 768px) {
  .section {
    padding: 24px 8px;
    margin-bottom: 36px;
    border-radius: 16px;
  }
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}

/* ---------------- TYPOGRAPHY ----------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-neon);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
  font-weight: 700;
}
h1 { font-size: 2.8rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.15rem; }
h5, h6 { font-size: 1rem; }

@media (max-width: 768px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.45rem; }
}

p, li, a, span, table, tr, th, td, strong {
  font-family: var(--font-body);
  color: var(--color-accent);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}
strong {
  color: var(--color-secondary);
  font-weight: 600;
}

/* ---------------- HEADER & NAVIGATION ----------------- */
header {
  width: 100%;
  background: linear-gradient(90deg,#285930 65%,#2F6653 100%);
  box-shadow: 0 4px 24px var(--color-shadow);
}
header .container {
  padding: 16px 16px 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
header a img {
  height: 48px;
  margin-right: 10px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-right: 8px;
}
.main-nav a {
  font-family: var(--font-display);
  color: var(--color-accent);
  font-weight: 500;
  font-size: 1.025rem;
  letter-spacing: 0.01em;
  border-bottom: 2px solid transparent;
  padding: 6px 0;
  transition: color 0.16s, border-color 0.16s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-neon);
  border-bottom: 2px solid var(--color-neon);
}

.cta-btn {
  background: linear-gradient(90deg, var(--color-secondary) 75%, var(--color-neon) 100%);
  color: #182723;
  border-radius: 28px;
  font-family: var(--font-display);
  font-size: 1.12rem;
  padding: 10px 28px;
  margin-left: 20px;
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(89,255,123,.24);
  border: none;
  letter-spacing: 0.025em;
  transition: background 0.19s, color 0.19s, box-shadow 0.19s, transform 0.19s;
  outline: none;
  position: relative;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #5DFF70 60%, #B9D66B 100%);
  color: #102913;
  box-shadow: 0 4px 24px rgba(89,255,123,0.45);
  transform: translateY(-2px) scale(1.025);
}

.mobile-menu-toggle {
  display: none;
  background: #B9D66B;
  color: #182723;
  border: none;
  font-size: 2rem;
  padding: 4px 17px 4px 12px;
  border-radius: 50%;
  margin-left: 12px;
  transition: box-shadow 0.21s, background 0.16s;
  box-shadow: 0 2px 12px var(--color-shadow);
  z-index: 1111;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--color-neon);
  box-shadow: 0 0 6px #B9D66B, 0 4px 20px #5DFF70;
}
@media (max-width: 1080px) {
  .main-nav {
    gap: 15px;
  }
}
@media (max-width: 900px) {
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }
  .main-nav {
    gap: 11px;
  }
}
@media (max-width: 768px) {
  .main-nav,
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ------------- MOBILE MENU ------------- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24, 39, 35, 0.97);
  backdrop-filter: blur(3px);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateX(-105%);
  transition: transform 0.32s cubic-bezier(.8,.25,.4,1.15);
  box-shadow: 0 0 16px var(--color-shadow);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 25px 27px 10px 0;
  background: var(--color-secondary);
  color: #172217;
  font-size: 2.2rem;
  border: none;
  border-radius: 50%;
  padding: 3px 20px 3px 15px;
  box-shadow: 0 0 10px #B9D66B,0 2px 12px var(--color-shadow);
  transition: background .16s, color .16s, box-shadow 0.15s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: var(--color-neon);
  color: #112910;
  box-shadow: 0 0 16px #5DFF70;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  margin-top: 58px;
  width: 100%;
}
.mobile-nav a {
  color: var(--color-neon);
  font-size: 1.35rem;
  font-family: var(--font-display);
  font-weight: 500;
  text-align: center;
  padding: 16px 0 10px 0;
  width: 100vw;
  border-bottom: 1.5px solid #253d25;
  transition: background 0.19s, color 0.19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #223A2A;
  color: var(--color-secondary);
}

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

/* ------------- HERO/INTRO SECTION ---------- */
.hero {
  background: linear-gradient(135deg, #223A2A 90%, #285930 100%);
  padding: 64px 0 64px 0;
  border-radius: 0 0 34px 34px;
  box-shadow: 0 3px 24px var(--color-shadow);
  margin-bottom: 40px;
  min-height: 320px;
  display: flex;
  align-items: center;
}
.hero .container {
  display: flex;
  align-items: center;
  min-height: 180px;
}
.hero h1 {
  color: #F6F8F3;
  font-size: 2.2rem;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}
.hero p {
  font-size: 1.15rem;
  color: #B9D66B;
  margin-bottom: 24px;
}
@media (max-width: 900px) {
  .hero {
    padding: 44px 0 44px 0;
    min-height: 180px;
    border-radius: 0 0 20px 20px;
  }
}
@media (max-width: 600px) {
  .hero {
    padding: 28px 0 24px 0;
    min-height: 100px;
  }
}

/* -------------- FLEXBOX LAYOUTS -------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  background: #203921;
  border-radius: 22px;
  box-shadow: 0 4px 22px var(--color-shadow);
  padding: 28px 24px;
  min-width: 240px;
  margin-bottom: 20px;
  transition: box-shadow 0.22s, transform 0.22s;
  border: 1.5px solid #2f6643;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 32px #5DFF70,0 3px 42px var(--color-shadow);
  transform: translateY(-3px);
}

.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px 18px 28px;
  margin-bottom: 22px;
  background: #F6F8F3;
  color: #172217;
  border-radius: 14px;
  box-shadow: 0 2px 12px #b9d66b4d;
  border-left: 4px solid var(--color-secondary);
  position: relative;
  transition: box-shadow 0.18s, transform 0.12s;
}
.testimonial-card p {
  color: #172217;
  font-size: 1.09rem;
  letter-spacing: 0.01em;
  line-height: 1.56;
  font-weight: 500;
}
.testimonial-card span {
  color: #285930;
  font-size: 0.97rem;
  font-family: var(--font-display);
  font-weight: 600;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 4px 24px #b9d66b4d, 0 1px 6px #5DFF70;
  transform: scale(1.012) translateY(-2px);
  border-left-color: #5DFF70;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-item {
  background: #203921;
  border-radius: 11px;
  box-shadow: 0 2px 12px var(--color-shadow);
  padding: 20px 20px 16px 24px;
  margin-bottom: 10px;
  border-left: 4px solid #5DFF70;
  transition: box-shadow 0.19s, border-left 0.13s;
}
.faq-item h2 {
  color: var(--color-neon);
  font-size: 1.17rem;
  margin-bottom: 6px;
}
.faq-item p {
  color: var(--color-accent);
  font-size: 1rem;
}
.faq-item:hover, .faq-item:focus-within {
  box-shadow: 0 2px 18px #5DFF70,0 1px 6px #b9d66b;
  border-left-color: var(--color-secondary);
}

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

/* -------------- TABLES (for Preise) -------------- */
table {
  width: 100%;
  border-collapse: collapse;
  background: #203921;
  color: #F6F8F3;
  margin-bottom: 24px;
  border-radius: 13px;
  box-shadow: 0 2px 10px var(--color-shadow);
  overflow: hidden;
}
thead th {
  background: #285930;
  color: #B9D66B;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 8px;
  border-bottom: 1.5px solid #B9D66B;
}
tbody td {
  color: #F6F8F3;
  padding: 12px 8px;
  border-bottom: 1px solid #2f6643;
}
tbody tr:last-child td {
  border-bottom: none;
}

/* -------------- BUTTONS & LINKS -------------- */
button, .cta-btn, .cookie-btn {
  transition: background .17s, color .17s, box-shadow 0.19s, transform 0.14s;
}

a, .cta-btn {
  cursor: pointer;
}

a.cta-btn, .cta-btn:visited {
  color: #182723 !important;
  background: linear-gradient(90deg, var(--color-secondary) 70%, var(--color-neon) 100%);
}

/* --------------- LISTS, IMAGES --------------- */
ul, ol {
  margin-left: 1.6em;
}
ul li, ol li {
  position: relative;
  min-height: 32px;
  margin-bottom: 17px;
  font-size: 1rem;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 12px;
}
ul li img {
  width: 22px;
  height: 22px;
  background: transparent;
  border-radius: 50%;
  margin-right: 9px;
}
li:last-child {
  margin-bottom: 0 !important;
}

/* -------- QUOTES/BLOCKQUOTES --------- */
blockquote {
  background: #223a2aa1;
  border-left: 4px solid #B9D66B;
  margin: 17px 0;
  padding: 10px 28px 10px 18px;
  color: #B9D66B;
  font-style: italic;
  font-size: 1.07rem;
  border-radius: 9px;
}

/* ----------- FOOTER ------------ */
footer {
  background: linear-gradient(90deg,#203921 80%,#285930 100%);
  color: #F6F8F3;
  padding: 34px 0 16px 0;
}
footer .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 28px;
  align-items: flex-start;
  min-height: 110px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 16px;
  flex: 2 1 360px;
}
.footer-nav a {
  color: #B9D66B;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 500;
  border-bottom: 1.5px solid transparent;
  transition: color .15s, border-bottom .15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #5DFF70;
  border-bottom: 1.5px solid #5DFF70;
}
.contact-snippet {
  flex: 1 1 230px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #F6F8F3;
  font-size: 0.97rem;
  font-family: var(--font-body);
  margin-bottom: 12px;
}
.contact-snippet img {
  margin-right: 7px;
  vertical-align: middle;
  width: 18px;
  height: 18px;
}
.branding {
  flex: 1 1 170px;
  color: #B9D66B;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}
.branding img {
  width: 29px;
  height: 29px;
  vertical-align: middle;
}
@media (max-width: 1020px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .footer-nav {
    gap: 10px;
    justify-content: flex-start;
  }
  .contact-snippet {
    margin-bottom: 6px;
  }
}
@media (max-width: 600px) {
  .branding {
    font-size: 0.92rem;
  }
}

/* ---------- TEXT-SECTIONS & HEADLINE SPACING --------- */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.text-section h2 {
  color: #B9D66B;
  margin: 15px 0 4px 0;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.text-section h3 {
  color: #5DFF70;
  margin: 12px 0 4px 0;
  font-size: 1.14rem;
}
.text-section ul, .text-section ol {
  margin-left: 0.7em;
}
.text-section li {
  font-size: 0.98rem;
  color: var(--color-accent);
}

/* ------------- RESPONSIVE ------------- */
@media (max-width: 650px) {
  h1 { font-size: 1.61rem; }
  h2 { font-size: 1.11rem; }
  .container {
    padding: 0 7px;
  }
  table thead th, table tbody td {
    font-size: 0.99rem;
    padding: 9px 5px;
  }
}

/* ------------- COOKIE CONSENT BANNER ------------- */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 10000;
  background: #203921ef;
  color: #F6F8F3;
  padding: 20px 16px 18px 16px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  box-shadow: 0 -4px 16px #00000033;
  gap: 16px;
  font-family: var(--font-body);
  animation: fadeInUpBanner 0.7s cubic-bezier(.89,.16,.26,1.09);
}
@keyframes fadeInUpBanner {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}

.cookie-banner-message {
  flex: 2 1 380px;
  font-size: 1.04rem;
  color: #F6F8F3;
  margin-right: 18px;
}
.cookie-banner-actions {
  flex: 1 1 170px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-btn {
  border-radius: 23px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 22px;
  border: none;
  margin-right: 6px;
  background: var(--color-neon);
  color: #182723;
  box-shadow: 0 2px 12px #5DFF7070;
  outline: none;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #B9D66B;
  color: #102913;
  box-shadow: 0 4px 16px #B9D66B;
}
.cookie-settings-btn {
  background: transparent;
  border: 2px solid #B9D66B;
  color: #B9D66B;
  font-weight: 600;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #223A2A;
  color: #5DFF70;
  border-color: #5DFF70;
}
@media (max-width: 700px) {
  .cookie-consent-banner {
    flex-direction: column;
    padding: 17px 6px 14px 6px;
    gap: 10px;
  }
  .cookie-banner-message {
    margin-right: 0;
  }
}

/* ---------- COOKIE PREFERENCES MODAL ---------- */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(24,39,35,0.86);
  z-index: 11000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInOverlay 0.3s;
}
@keyframes fadeInOverlay {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #203921;
  border-radius: 24px;
  box-shadow: 0 10px 50px #00000055;
  padding: 38px 32px 32px 32px;
  max-width: 400px;
  width: 92vw;
  color: #F6F8F3;
  font-family: var(--font-body);
  animation: modalZoomIn 0.37s cubic-bezier(.7,-0.02,.13,1.09);
}
@keyframes modalZoomIn {
  from { transform: scale(.7) translateY(24px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  color: #5DFF70;
  font-size: 1.25rem;
  margin-bottom: 24px;
  text-align: center;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding: 10px 0;
  border-bottom: 1px solid #2f6643;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-category input[type='checkbox'] {
  transform: scale(1.25);
  accent-color: #B9D66B;
}
.cookie-category .essential-label {
  font-weight: bold;
  color: #B9D66B;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 23px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 26px;
  background: transparent;
  color: #B9D66B;
  border: none;
  font-size: 2rem;
  cursor: pointer;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #5DFF70;
}

/* --------------- MICRO EFFECTS / ANIMATIONS --------------- */
.card, .testimonial-card, .faq-item,
.cta-btn, .cookie-btn, button, .mobile-menu-close {
  will-change: box-shadow, transform;
}

/* --------------- ACCESSIBLE FOCUS RINGS --------------- */
:focus-visible {
  outline: 2px solid #5DFF70;
  outline-offset: 3px;
}

/* --------------- SCROLLBAR --------------- */
::-webkit-scrollbar {
  width: 12px;
  background: #223A2A;
}
::-webkit-scrollbar-thumb {
  background: #2f6643;
  border-radius: 10px;
}

/* --------------- CUSTOM NEON ACCENTS --------------- */
.neon {
  color: #5DFF70;
  text-shadow: 0 0 6px #5DFF70, 0 0 15px #5DFF7022, 0 0 5px #5DFF7027;
}

/* --------------- PRINT / SELECTION --------------- */
@media print {
  * { color: #000 !important; background: #fff !important; }
}

::selection {
  background: #B9D66B;
  color: #182723;
}

/* ========== END OF STYLE ========== */
