/* ----------------------
   CSS RESET & BASE STYLES
   ---------------------- */
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,
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 {
  height: 100%;
  color-scheme: dark light;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: #181C22;
  color: #E5EAF1;
  font-size: 16px;
  background-color: #181C22;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
*, *::before, *::after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 8px;
}
a {
  color: #80C342;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.65,.05,.36,1);
}
a:hover, a:focus {
  color: #B3FF61;
}
ul, ol {
  margin: 0;
  padding-left: 24px;
}
li {
  margin-bottom: 8px;
}
strong {
  font-weight: 700;
  color: #fff;
}
/* --------------
   BRAND COLORS
   -------------- */
:root {
  --color-bg: #181C22;
  --color-bg-section: #202A33;
  --color-bg-card: #232C31;
  --color-primary: #22314A;
  --color-secondary: #80C342;
  --color-accent: #FFFFFF;
  --color-metal: #636C74;
  --color-border: #303C4A;
  --shadow-card: 0 2px 16px 0 rgba(34, 49, 74, 0.22);
  --shadow-card-hover: 0 4px 24px 0 rgba(128, 195, 66, 0.22);
  --radius: 12px;
}

/* -------------------
   GLOBAL TYPOGRAPHY
   ------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; line-height: 1.15; margin-bottom: 16px; }
h2 { font-size: 2rem; line-height: 1.2; margin-bottom: 14px; }
h3 { font-size: 1.25rem; line-height: 1.25; margin-bottom: 10px; }
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.05rem; }
}
.subheadline {
  font-size: 1.1rem;
  color: #c2c9d1;
  margin-bottom: 24px;
  font-family: 'Roboto', Arial, sans-serif;
}
p {
  color: #E5EAF1;
  font-size: 1rem;
  margin-bottom: 16px;
}

/* -------------------
   FLEXBOX LAYOUTS
   ------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg-section);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  position: relative;
}
@media (max-width: 768px){
  .section {
    margin-bottom: 40px;
    padding: 28px 8px;
  }
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 32px;
}
.card {
  background: var(--color-bg-card);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius);
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 280px;
  min-width: 260px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.23s cubic-bezier(.45,.25,.6,1);
  border: 1px solid var(--color-border);
}
.card:hover, .card:focus {
  box-shadow: var(--shadow-card-hover);
  border-color: var(--color-secondary);
  z-index: 2;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 20px;
}
.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;
    gap: 18px;
    align-items: flex-start;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/*********************
 HEADER & NAVIGATION
 *********************/
header {
  width: 100%;
  background: var(--color-primary);
  border-bottom: 2px solid #2C394C;
  box-shadow: 0 3px 18px 0 rgba(34, 49, 74, 0.20);
  z-index: 1001;
  position: relative;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo img {
  height: 38px;
  width: auto;
  border-radius: 0;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  color: #E3EEFB;
  padding: 6px 8px;
  border-radius: 4px;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-secondary);
  color: #172438;
}
.btn-primary {
  background: linear-gradient(90deg, #80C342 70%, #628F21);
  color: var(--color-primary);
  padding: 10px 28px;
  font-size: 1.05rem;
  font-family: 'Montserrat', sans-serif;
  border: none;
  border-radius: 22px;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 3px 8px 0 rgba(128,195,66,.11);
  cursor: pointer;
  margin-left: 10px;
  transition: background 0.18s, color 0.15s, box-shadow .2s;
  display: inline-block;
  outline: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, #aadf6e 70%, #80C342);
  color: #1d2617;
  box-shadow: 0 6px 16px 0 rgba(128,195,66,.22);
}
.btn-secondary {
  background: var(--color-bg-card);
  color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
  padding: 10px 28px;
  border-radius: 22px;
  font-size: 1.02rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: background .18s, color .18s, border-color 0.13s;
  display: inline-block;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--color-secondary);
  color: #1d2617;
  border-color: #aadf6e;
}
.mobile-menu-toggle {
  display: none;
}
@media (max-width: 1010px){
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-secondary);
    border: none;
    color: var(--color-primary);
    font-size: 2.2rem;
    height: 44px;
    width: 44px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1022;
    margin-left: 10px;
    box-shadow: 0 2px 8px 0 rgba(128,195,66,.09);
    transition: background 0.15s;
  }
  .mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
    background: #aadf6e;
    color: #0D1725;
  }
}

/********************
 MOBILE MENU STYLES
 ********************/
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,28,34, 0.97);
  z-index: 99999;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.77,0,.18,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  box-shadow: -2px 0 24px 0 rgba(0,0,0,0.28);
}
.mobile-menu.open {
  transform: translateX(0);
  transition: transform 0.32s cubic-bezier(.77,0,.18,1);
}
.mobile-menu-close {
  background: var(--color-secondary);
  color: var(--color-primary);
  border: none;
  font-size: 2.2rem;
  width: 48px;
  height: 48px;
  border-radius: 24px;
  cursor: pointer;
  margin: 24px 0 20px 28px;
  align-self: flex-start;
  box-shadow: 0 1px 8px 0 rgba(128,195,66,0.12);
  transition: background 0.14s;
  z-index: 1008;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #aadf6e;
  color: #1d2617;
}
.mobile-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 0 36px;
  width: 100vw;
}
.mobile-nav a {
  color: #E5EAF1;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 14px 0;
  letter-spacing: 0.04em;
  transition: color .2s;
  border-bottom: 1px solid #263247;
  width: 100%;
  display: block;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-secondary);
  background: none;
}

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

/*******************
 HERO SECTION
 *******************/
section:first-of-type {
  background: linear-gradient(110deg, #1d2026 76%, #343B43 100%);
  box-shadow: var(--shadow-card);
}
section .container {
  align-items: stretch;
}
section h1, section h2 {
  margin-bottom: 12px;
}

/**********************
 FEATURES & BENEFITS
 **********************/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  align-items: stretch;
  margin: 36px 0 16px 0;
}
.feature-grid > div {
  background: var(--color-bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border: 1px solid #2b3644;
  padding: 28px 22px;
  flex: 1 1 220px;
  min-width: 190px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s;
  margin: 0 0 0 0;
  gap: 10px;
}
.feature-grid > div:hover {
  box-shadow: var(--shadow-card-hover);
  border-color: var(--color-secondary);
  z-index: 1;
}
.feature-grid img {
  height: 38px;
  width: 38px;
  margin-bottom: 10px;
  filter: grayscale(30%)
    drop-shadow(0px 2px 8px #18181844)
    brightness(1.2);
}

/**********************
 SERVICE LISTS
 **********************/
.category-list {
  font-size: 1.07rem;
  width: 100%;
  background: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.category-list li {
  background: var(--color-bg-card);
  border: 1.5px solid #2e3e50;
  border-radius: var(--radius);
  padding: 18px 18px 14px 18px;
  color: #E5EAF1;
  margin: 0;
  box-shadow: 0 2px 10px 0 rgba(24,28,34,0.11);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.category-list span {
  color: #aacfc1;
  font-size: 0.96em;
  margin-left: 8px;
}
.category-list img {
  height: 18px;
  width: 18px;
  vertical-align: middle;
  margin-bottom: 0;
}

/***************************
 PRICING TABLES & CHECKLIST
 ***************************/
.pricing-table {
  width: 100%;
  border-spacing: 0;
  margin-top: 16px;
  margin-bottom: 20px;
  border-radius: var(--radius);
  background: var(--color-bg-card);
  color: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  font-family: 'Montserrat', 'Roboto', sans-serif;
}
.pricing-table th, .pricing-table td {
  padding: 12px 18px;
  border-bottom: 1px solid #303848;
  font-size: 1rem;
}
.pricing-table th {
  background: #263247;
  color: #80C342;
  text-align: left;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
.feature-checklist {
  display: flex;
  flex-direction: column;
  gap: 13px;
  list-style: none;
  margin-top: 20px;
}
.feature-checklist li {
  font-size: 1.02em;
  color: #e0efce;
  display: flex;
  align-items: center;
  gap: 8px;
}
.feature-checklist img {
  width: 18px; height: 18px;
  filter: brightness(1.25);
}

/**********************
 TESTIMONIAL CARDS
 **********************/
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 3px 18px 0 rgba(34,49,74,0.10);
  color: #263247;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  margin: 0 0 24px 0;
  border-left: 8px solid var(--color-secondary);
  position: relative;
}
.testimonial-card p {
  color: #22314A;
  font-size: 1.12rem;
  font-weight: 400;
  margin: 0 0 4px 0;
}
.testimonial-card span {
  font-size: 1.05rem;
  color: #475461;
  margin: 0;
  font-style: italic;
}
@media (max-width: 650px) {
  .testimonial-card {
    flex-direction: column;
    gap: 7px;
    padding: 16px;
  }
}

/**********************
 CTA SECTIONS
 **********************/
section .btn-primary {
  margin-top: 16px;
  align-self: center;
}

/***********************
 FOOTER STYLES
 ***********************/
footer {
  width: 100%;
  background: #1a2130;
  margin-top: 60px;
  border-top: 2px solid #222B3B;
  padding: 42px 0 0 0;
  font-size: 0.98rem;
  color: #b4c0d7;
}
footer .container {
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: flex-start;
  padding-bottom: 12px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
}
.footer-nav a {
  color: #b1c5de;
  font-size: 0.96rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  padding: 8px 0;
  border-radius: 2px;
  transition: color .16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-secondary);
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin-bottom: 18px;
  align-items: center;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #c7cfda;
}
.footer-contact img {
  width: 19px; height: 19px;
  margin-right: 2px;
  filter: grayscale(70%) brightness(1.2);
}
.footer-logo {
  margin-top: 22px;
  margin-bottom: 12px;
}
.footer-logo img {
  height: 36px;
  width: auto;
  filter: grayscale(35%) brightness(1.15);
}

/*****************************
 FORMS & FAQ SEARCH
 *****************************/
input[type="search"],
input,
textarea {
  background: #232B34;
  border: 1.5px solid #353F4D;
  color: #E5EAF1;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-top: 10px;
  width: 100%;
  outline: none;
  transition: border-color .2s;
}
input[type="search"]:focus, input:focus, textarea:focus {
  border-color: var(--color-secondary);
}
.faq-search label {
  font-size: 1rem;
  color: #EAEAEA;
  font-weight: 600;
  margin-right: 6px;
}

/***************************
 FAQ ACCORDION
 ***************************/
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
  margin-top: 10px;
}
.faq-item {
  background: #222A32;
  border-radius: 10px;
  box-shadow: 0 1px 12px 0 rgba(34,49,74,0.06);
  padding: 18px 22px;
  border: 1px solid #293445;
  margin-bottom: 0;
  cursor: pointer;
  transition: box-shadow 0.18s, border-color .15s;
  position: relative;
}
.faq-item:hover, .faq-item:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 5px 20px 2px rgba(128,195,66,0.07);
}
.faq-item h3 {
  margin-bottom: 10px;
  color: #a1f17c;
  font-size: 1.06rem;
  font-weight: 600;
}
.faq-item div {
  color: #E5EAF1;
  font-size: 1rem;
}

/***************************
 STEP LIST (SO FUNKTIONIERT ES)
 ***************************/
.step-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  align-items: stretch;
  margin: 40px 0 0 0;
}
.step {
  flex: 1 1 200px;
  min-width: 200px;
  max-width: 330px;
  background: #232B34;
  border-radius: var(--radius);
  box-shadow: 0 2px 10px 0 rgba(50,62,75,0.17);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 20px 16px 20px;
  border-left: 5px solid var(--color-secondary);
}
.step img {
  height: 34px; width: 34px;
  margin-bottom: 4px;
  filter: grayscale(20%) brightness(1.2);
}
.step strong {
  color: #a1f17c;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0;
}
.step p {
  color: #D2D9E0;
  margin-bottom: 0;
}

/***************************
 MAP EMBED (KONTAKT)
 ***************************/
.map-embed {
  background: #232A30;
  border: 2px solid #303C4A;
  border-radius: 10px;
  margin-top: 24px;
  padding: 24px 20px;
  color: #b3bbc5;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.01rem;
}

/***************************
 COOKIE CONSENT BANNER & MODAL
 ***************************/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #20282f;
  color: #fff;
  box-shadow: 0 -5px 32px 0 rgba(0,0,0,0.21);
  z-index: 999999;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  justify-content: center;
  padding: 22px 14px;
  font-size: 1rem;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.18s, transform 0.25s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(80px);
}
.cookie-banner-text {
  flex: 1 1 300px;
  max-width: 550px;
  color: #fff;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-btn {
  border: none;
  border-radius: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 0.99rem;
  cursor: pointer;
  padding: 9px 22px;
  margin-right: 0;
  transition: background 0.16s, color .13s;
}
.cookie-btn-accept {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-btn-accept:hover, .cookie-btn-accept:focus {
  background: #aadf6e;
  color: #172438;
}
.cookie-btn-reject {
  background: #353b45;
  color: #fff;
  border: 1.5px solid #7B8883;
}
.cookie-btn-reject:hover, .cookie-btn-reject:focus {
  background: #22292f;
  color: #ff6363;
}
.cookie-btn-settings {
  background: none;
  color: #A3AFC2;
  border: 1.5px dashed #80C342;
}
.cookie-btn-settings:hover, .cookie-btn-settings:focus {
  background: #232b34;
  color: #B3FF61;
  border-style: solid;
}
@media (max-width:700px){
  .cookie-banner {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    font-size: 0.95rem;
    padding: 17px 10px;
  }
  .cookie-banner-actions {
    flex-direction: row;
    gap: 8px;
  }
}

/**********************
 COOKIE PREFERENCE MODAL
 **********************/
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(10,18,22,0.88);
  z-index: 9999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.13s;
}
.cookie-modal {
  background: #232b33;
  border-radius: var(--radius);
  box-shadow: 0 6px 40px 0 rgba(34,49,74,0.30);
  padding: 46px 32px 32px 32px;
  max-width: 400px;
  width: 96vw;
  color: #fff;
  font-family: 'Roboto', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal h3 {
  color: var(--color-secondary);
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.04rem;
}
.cookie-modal-category input[type="checkbox"] {
  accent-color: var(--color-secondary);
}
.cookie-modal-sticky {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 18px;
}

/*********************
 MEDIA QUERIES
 *********************/
@media (max-width: 900px) {
  .feature-grid, .step-list {
    flex-direction: column;
    gap: 18px;
  }
  .category-list {
    font-size: 1rem;
  }
  .footer-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
@media (max-width: 540px){
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.12rem; margin-bottom:8px; }
  section { padding: 18px 2px; }
  .footer-nav { gap: 12px; }
  .footer-contact, .content-grid { gap: 8px; }
  .content-wrapper, .container { padding: 0 5px; }
}

/* -------------------
   MICRO-INTERACTIONS
   ------------------- */
.card, .feature-grid > div, .testimonials-card, .step {
  transition: box-shadow .2s, border-color .17s;
}
.btn-primary, .btn-secondary, .cookie-btn {
  transition: background .18s, color .13s, box-shadow .22s;
}
.feature-grid > div:active, .step:active, .card:active {
  transform: translateY(2px) scale(.992);
}
.mobile-menu,
.cookie-modal-overlay {
  animation: fadeInModal .25s cubic-bezier(.56,.21,.48,1) both;
}
@keyframes fadeInModal {
  from { opacity: 0;}
  to { opacity: 1;}
}
.mobile-menu.open {
  animation: slideInMenu .39s cubic-bezier(.69,0,.29,1) both;
}
@keyframes slideInMenu {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}

/* -------------------
   CUSTOM SCROLLBAR
   ------------------- */
::-webkit-scrollbar { width: 8px; background: #293345; }
::-webkit-scrollbar-thumb { background: #3d4858; border-radius: 6px;}
::-webkit-scrollbar-thumb:hover { background: #454e5c; }

/* -------------------
   ACCESSIBILITY
   ------------------- */
:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

/****************************
   CARD & LAYOUT SPACING
****************************/
.card, .testimonial-card, .step, .category-list li {
  margin-bottom: 20px;
}
.section, .service-list, .benefits-list, .feature-list {
  margin-bottom: 60px;
}
.card-container, .content-grid, .feature-grid, .step-list, .footer-contact {
  gap: 20px;
}


/* ----------------
   PRINT (SAFETY)
   ---------------- */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay { display: none !important; }
  section { background: #fff; color: #222; }
  h1, h2, h3 { color: #111; }
}
