/* =============================
   CSS RESET & BASE NORMALIZATION
   ============================= */
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;
  background: #F7F7F2;
}
body {
  background: linear-gradient(135deg, #F7F7F2 60%, #e9f7f2 100%);
  font-family: 'Open Sans', Arial, sans-serif;
  color: #234938;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img, video {
  max-width: 100%;
  height: auto;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #326756;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #B04B2B;
  text-decoration: underline;
}

/* =====================
   TYPOGRAPHY
   ===================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  color: #234938;
  line-height: 1.15;
  letter-spacing: 0.012em;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem; /* 40px */
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem; /* 32px */
  margin-bottom: 18px;
}
h3 {
  font-size: 1.375rem; /* 22px */
  margin-bottom: 12px;
}
h4 {
  font-size: 1.125rem;
}
.section h2, .cta-section h2 {
  color: #326756;
  background: linear-gradient(90deg, #326756, #B04B2B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
p, ul, ol, li {
  font-size: 1rem;
  margin-bottom: 10px;
}
strong, b {
  font-weight: 700;
}

/* =====================
   GENERAL LAYOUT & CONTAINERS
   ===================== */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.content-wrapper {
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 auto;
}

/* =====================
   HEADER
   ===================== */
header {
  background: #FFFFFF;
  box-shadow: 0 3px 18px 0 rgba(25,36,31,0.06);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 22;
}
header .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  gap: 24px;
}
header a img {
  height: 48px;
  width: auto;
  margin-right: 8px;
}
.desktop-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.desktop-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: #326756;
  font-size: 1rem;
  padding: 6px 0;
  position: relative;
  transition: color 0.18s;
}
.desktop-nav a:hover, .desktop-nav a:focus {
  color: #B04B2B;
}
.btn-primary {
  display: inline-block;
  padding: 10px 28px;
  background: linear-gradient(90deg,#326756 78%,#B04B2B 100%);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  border: none;
  border-radius: 32px;
  box-shadow: 0 3px 15px 0 rgba(34,73,56,0.12);
  cursor: pointer;
  transition: background 0.15s, transform 0.16s, box-shadow 0.15s;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg,#B04B2B 70%, #326756 100%);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 24px 0 rgba(34,73,56,0.12);
}

/* =====================
   MOBILE MENU
   ===================== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #326756;
  font-size: 2.2rem;
  cursor: pointer;
  z-index: 103;
  margin-left: 8px;
  outline: none;
  padding: 0 8px 0 0;
  transition: color 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #B04B2B;
}
.mobile-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(34,73,56,0.92);
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.77,0,.175,1);
  z-index: 102;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  font-size: 2.2rem;
  background: none;
  color: #FFF;
  border: none;
  padding: 16px 32px 0 0;
  cursor: pointer;
  z-index: 104;
  align-self: flex-end;
  transition: color 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #B04B2B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 70px;
  width: 100%;
  align-items: flex-end;
  padding-right: 44px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.375rem;
  letter-spacing: 0.01em;
  padding: 8px 0;
  transition: color 0.15s, background 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #B04B2B;
  background: rgba(255,255,255,0.09);
  border-radius: 16px;
}

/* ===========
   MAIN SECTIONS
   =========== */
main {
  width: 100%;
  min-height: 60vh;
  padding-bottom: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 20px 0 rgba(34,73,56,0.07);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}
.cta-section {
  margin-bottom: 60px;
  padding: 40px 20px 48px 20px;
  background: linear-gradient(90deg, #326756 80%, #B04B2B 100%);
  border-radius: 20px;
  box-shadow: 0 2px 18px 0 rgba(34,73,56,0.12);
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-section h2 {
  color: #fff;
  background: unset !important;
  -webkit-text-fill-color: unset;
}
.cta-section .btn-primary {
  background: #fff;
  color: #326756;
  margin-top: 20px;
  box-shadow: 0 4px 17px 0 rgba(34,73,56,0.18);
}
.cta-section .btn-primary:hover, .cta-section .btn-primary:focus {
  background: #B04B2B;
  color: #fff;
}

/* ================
   HERO SECTION
   ================ */
.hero-section {
  margin-bottom: 60px;
  padding: 70px 0 40px 0;
  min-height: 320px;
  background: linear-gradient(102deg, #f7f7f2 70%, #d5f2ee 100%);
  display: flex;
  align-items: center;
  border-radius: 0 0 44px 44px;
}
.hero-section .container {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
.hero-section .content-wrapper {
  align-items: flex-start;
  max-width: 600px;
}
.hero-section h1 {
  font-size: 2.3rem;
  color: #234938;
  background: linear-gradient(90deg, #326756 65%, #B04B2B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 12px;
}
.hero-section p {
  font-size: 1.15rem;
  color: #234938;
  margin-bottom: 24px;
}
.hero-section .btn-primary {
  margin-top: 8px;
}

/* =============================
   FLEX & CARD LAYOUTS
   ============================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 14px 0 rgba(34,73,56,0.09);
  position: relative;
  padding: 28px 24px 24px 24px;
  flex: 1 1 260px;
  transition: box-shadow 0.17s, transform 0.16s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 32px 0 rgba(34,73,56,0.12);
  transform: translateY(-2px) scale(1.02);
}
.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;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 2px 17px 0 rgba(34,73,56,0.1);
  margin-bottom: 20px;
  color: #234938;
  font-size: 1.08rem;
  position: relative;
  min-width: 0;
}
.testimonial-card p {
  color: #234938;
  margin-bottom: 8px;
  font-style: italic;
  font-size: 1.09rem;
}
.testimonial-card span {
  color: #326756;
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ==================
   FEATURE GRID
   ================== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 16px;
}
.feature {
  background: #f7f7f2;
  border-radius: 18px;
  padding: 24px 20px 20px 20px;
  box-shadow: 0 2px 12px 0 rgba(34,73,56,0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 240px;
  min-width: 220px;
  max-width: 100%;
  margin-bottom: 20px;
  transition: box-shadow 0.16s, transform 0.15s;
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 8px 24px rgba(34,73,56,0.10);
  transform: translateY(-2px) scale(1.025);
}
.feature img {
  height: 44px;
  width: 44px;
  margin-bottom: 14px;
}
.feature h3 {
  font-size: 1.15rem;
  color: #326756;
  margin-bottom: 8px;
}
.feature p {
  font-size: 1rem;
  color: #234938;
}

/* =================
   ARTICLE PREVIEWS
   ================= */
.article-preview-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}
.article-preview-list article {
  background: #fff;
  padding: 22px 20px 20px 20px;
  border-radius: 16px;
  box-shadow: 0 2px 13px 0 rgba(34,73,56,0.09);
  flex: 1 1 250px;
  min-width: 220px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  transition: box-shadow 0.14s, transform 0.13s;
}
.article-preview-list article:hover, .article-preview-list article:focus-within {
  box-shadow: 0 6px 21px 0 rgba(34,73,56,0.14);
  transform: translateY(-2px) scale(1.01);
}
.article-preview-list h3 {
  font-size: 1.1rem;
  color: #326756;
}
.article-preview-list a {
  color: #B04B2B;
  font-weight: 700;
  font-size: 0.98rem;
  transition: color 0.14s;
}

/* Category nav (Ratgeber) */
.category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 16px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #326756;
}
.category-nav a {
  color: #326756;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 12px;
  transition: background 0.15s, color 0.15s;
}
.category-nav a:hover, .category-nav a:focus {
  background: #e1ede7;
  color: #B04B2B;
}

input[type="search"] {
  width: 100%;
  max-width: 300px;
  padding: 9px 16px;
  border-radius: 12px;
  border: 1px solid #d3dfd0;
  font-size: 1rem;
  margin-bottom: 18px;
  background: #F7F7F2;
  transition: border 0.15s;
}
input[type="search"]:focus {
  border: 1.5px solid #326756;
  outline: none;
}

/* ============================
   FAQ ACCORDION (Preise)
   ============================ */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-accordion h3 {
  font-size: 1.01rem;
  color: #326756;
  margin-bottom: 4px;
  cursor: pointer;
  position: relative;
  padding-right: 24px;
}
.faq-accordion h3:after {
  content: '\002B';
  position: absolute;
  right: 0;
  font-size: 1.22rem;
  color: #B04B2B;
  top: 0;
  transition: transform 0.19s;
}
.faq-accordion h3.open:after {
  content: '\2212'; /* minus sign */
}
.faq-accordion p {
  margin-bottom: 0;
  display: none;
  font-size: 0.97rem;
}
.faq-accordion h3.open + p {
  display: block;
}

/* ================
   PRICING TABLE
   ================ */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  margin-bottom: 23px;
  font-size: 1rem;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 16px 0 rgba(34,73,56,0.09);
}
.price-table thead tr {
  background: #326756;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
}
.price-table th, .price-table td {
  padding: 13px 24px;
  text-align: left;
}
.price-table tr:nth-child(odd) {
  background: #F7F7F2;
}
.price-table tr:nth-child(even) {
  background: #fff;
}
.price-table tbody tr:hover {
  background: #e9f7f2 !important;
}

/* ================
   TEXT SECTIONS, UL
   ================ */
.text-section {
  margin: 0 0 12px 0;
}
.text-section ul, .feature-grid ul, .content-wrapper ul {
  padding-left: 22px;
  margin-bottom: 10px;
}
.text-section li {
  margin-bottom: 7px;
  color: #234938;
  font-size: 1rem;
}
.text-section a {
  color: #B04B2B;
  font-weight: 600;
}

/* ================
   FOOTER
   ================ */
footer {
  background: linear-gradient(92deg, #326756 80%, #B04B2B 100%);
  color: #fff;
  padding: 36px 0 16px 0;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -2px 19px 0 rgba(50,103,86,0.17);
  margin-top: 40px;
}
.footer-content {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  font-size: 0.98rem;
}
.footer-logo img {
  height: 44px;
  margin-bottom: 4px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 7px 0 5px 0;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  font-size: 1rem;
  padding: 4px 0;
  transition: color 0.12s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #B04B2B;
  text-decoration: underline;
}
.footer-meta, .footer-contact, .footer-tagline {
  color: #e8faf0;
}
.footer-meta a {
  color: #fff;
  text-decoration: underline;
  font-size: 0.96rem;
  margin-right: 6px;
}
.footer-meta a:hover {
  color: #B04B2B;
}
.footer-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.07rem;
  margin-top: 10px;
}

/* ===============
   COOKIE BANNER
   =============== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 120;
  background: #326756;
  color: #fff;
  box-shadow: 0 -2px 18px 0 rgba(50,103,86,.11);
  padding: 24px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 1rem;
  border-radius: 20px 20px 0 0;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.32s, transform 0.32s;
  pointer-events: all;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(40px);
  pointer-events: none;
}
.cookie-banner-btns {
  display: flex;
  gap: 18px;
}
.cookie-btn,
.cookie-set-btn {
  padding: 8px 24px;
  background: #fff;
  color: #326756;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 18px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.16s, color 0.15s, transform 0.13s;
}
.cookie-btn.accept {
  background: #B04B2B;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #fff;
  color: #B04B2B;
}
.cookie-btn.reject {
  background: #fff;
  color: #B04B2B;
  border: 1.5px solid #B04B2B;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #B04B2B;
  color: #fff;
}
.cookie-set-btn {
  background: #326756;
  color: #fff;
  border: 1.5px solid #fff;
}
.cookie-set-btn:hover, .cookie-set-btn:focus {
  background: #fff;
  color: #326756;
  border: 1.5px solid #326756;
}

/* ===============
   COOKIE MODAL
   =============== */
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%) scale(1);
  background: #fff;
  color: #234938;
  padding: 36px 22px 30px 22px;
  z-index: 130;
  border-radius: 24px;
  box-shadow: 0 8px 40px 0 rgba(34,73,56,0.19);
  min-width: 320px;
  max-width: 90vw;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  opacity: 1;
  transition: opacity 0.28s, transform 0.28s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.96);
}
.cookie-modal-header {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: bold;
  color: #326756;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  font-size: 1rem;
}
.cookie-category-label {
  font-weight: 600;
  color: #326756;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: #B04B2B;
  font-size: 1.65rem;
  font-weight: 700;
  position: absolute;
  right: 18px; top: 14px;
  cursor: pointer;
  z-index: 132;
  line-height: 1;
}
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 26px;
}
.cookie-switch input {
  display: none;
}
.cookie-slider {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #e2f6ef;
  border-radius: 18px;
  transition: background 0.2s;
}
.cookie-switch input:checked + .cookie-slider {
  background: #326756;
}
.cookie-slider:before {
  content: '';
  position: absolute;
  left: 2px; top: 3px;
  width: 20px; height: 20px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 7px 0 rgba(50,103,86,0.14);
  transition: transform 0.18s;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(18px);
}
/* Modal Overlay */
.cookie-modal-overlay {
  position: fixed;
  z-index: 129;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(34,73,56,0.34);
  transition: opacity 0.24s;
}

/* ====================
   MEDIA QUERIES (RESPONSIVE)
   ==================== */
@media (max-width: 1124px) {
  .container, .footer-content {
    max-width: 98vw;
    padding-left: 10px; padding-right: 10px;
  }
  .content-wrapper {
    max-width: 99vw;
  }
  .section, .cta-section {
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (max-width: 900px) {
  .feature-grid {
    gap: 18px;
  }
  .feature {
    width: 99%;
    min-width: unset;
    max-width: 380px;
  }
  .article-preview-list {
    gap: 16px;
  }
  .article-preview-list article {
    min-width: 170px;
    max-width: 94vw;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    gap: 8px;
    padding-left: 6px;
    padding-right: 6px;
  }
  .desktop-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  main {
    padding-bottom: 12px;
  }
  .hero-section {
    padding: 38px 0 30px 0;
    min-height: 120px;
    border-radius: 0 0 32px 32px;
  }
  .hero-section .content-wrapper {
    max-width: 98vw;
  }
  .section, .cta-section {
    padding: 22px 6px;
    margin-bottom: 38px;
    border-radius: 14px;
  }
  .cta-section {
    padding-bottom: 34px;
    border-radius: 12px;
    margin-bottom: 34px;
  }
  .card-container, .content-grid, .feature-grid, .article-preview-list {
    flex-direction: column;
    gap: 16px;
  }
  .feature {
    width: 99%;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
  }
  .footer-content {
    font-size: 0.97rem;
    gap: 7px;
  }
  .footer-logo img {
    height: 34px;
  }
  .footer-nav {
    gap: 10px;
    flex-wrap: wrap;
    font-size: 0.99rem;
  }
  .cookie-banner {
    border-radius: 13px 13px 0 0;
    padding: 15px 10px 13px 10px;
    font-size: 0.99rem;
    gap: 10px;
  }
  .cookie-modal {
    min-width: 210px;
    padding: 22px 6px 22px 9px;
    border-radius: 12px;
  }
  .cookie-modal-header {
    font-size: 1.08rem;
  }
}
@media (max-width: 540px) {
  h1 {
    font-size: 1.67rem;
    margin-bottom: 16px;
  }
  h2 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  .section, .cta-section {
    padding: 12px 2px;
    margin-bottom: 19px;
    border-radius: 7px;
  }
  .footer-logo img {
    height: 25px;
  }
}

/* ===============
   UTILITIES & EFFECTS
   =============== */
.shadow-sm {
  box-shadow: 0 2px 8px 0 rgba(34,73,56,0.04);
}
.rounded-lg { border-radius: 1rem; }
.rounded { border-radius: 0.7rem; }

/* Hide visually but keep accessible */
.visually-hidden {
  position: absolute!important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  border: 0;
}

/* Focus States */
a:focus, .btn-primary:focus, button:focus {
  outline: 2px solid #B04B2B !important;
  outline-offset: 2px;
}

/* ===============
   PRINT MINIMAL
   =============== */
@media print {
  header, .mobile-menu, .cta-section, .footer-content, .cookie-banner, .cookie-modal, .cookie-modal-overlay {
    display: none !important;
  }
  .section, .feature, .card {
    box-shadow: none !important;
    background: #fff !important;
  }
}
