/* ================================== */
/* BreezeSweep Automagazin - Style.css */
/* Nature_Organic Theme
   Inspired by: Earth tones, organic shapes, natural textures, green accents
   Brand: Modern, sachlich, dynamisch
*/
/* ========== CSS RESET & NORMALIZE ========== */
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; margin: 0; padding: 0; }
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #f5f5f3;
  color: #213029;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  background-color: #F5F3F0;
  -webkit-font-smoothing: antialiased;
  overscroll-behavior-y: none;
  scroll-behavior: smooth;
}
img { max-width: 100%; height: auto; display: block; border: 0; }
a { color: #437645; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #C1121F; }
ul, ol { padding-left: 24px; }
li+li { margin-top: 8px; }
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: 0;
  outline: none;
  color: inherit;
}
:focus { outline: 2px solid #84a672; outline-offset: 2px; }

/* =============================== */
/*       BRAND TYPOGRAPHY         */
/* =============================== */
@import url('https://fonts.googleapis.com/css?family=Oswald:400,500,600&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', Arial, sans-serif;
  color: #1A2233;
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.18;
}
h1 { font-size: 2.5rem; letter-spacing: -1px; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.35rem; margin-bottom: 10px; }
h4 { font-size: 1.1rem; }
p, ul, ol { font-size: 1rem; margin-bottom: 16px; }
strong, b { font-weight: 600; }

/* ============= LAYOUT CONTAINERS ============= */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 28px 64px 36px 56px / 60px 36px 64px 28px;
  box-shadow: 0 4px 24px rgba(67,116,69,0.09), 0 1.5px 6px rgba(60, 72, 38, 0.05);
}
@media (max-width: 900px) {
  .container { padding: 0 10px; }
  .section { padding: 28px 8px; }
}
@media (max-width: 540px) {
  .section { padding: 20px 4px; }
}

/* ================= HEADER, NAVIGATION ================= */
header {
  width: 100%;
  background: #f8faf8;
  border-bottom: 1.5px solid #e2e6e1;
  padding-top: 6px;
  z-index: 1030;
  position: relative;
  min-height: 60px;
  box-shadow: 0 1px 12px rgba(60,72,38,0.03);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 70px;
  justify-content: flex-start;
  position: relative;
}
.main-nav img {
  height: 42px;
  width: auto;
  margin-right: 24px;
  border-radius: 15px 25px 18px 18px / 23px 18px 28px 11px;
  background: #f5f5f3;
  box-shadow: 0 2px 8px rgba(67,116,69,0.04);
}
.main-nav a {
  color: #213029;
  font-weight: 500;
  padding: 7px 0 7px 0;
  font-size: 1rem;
  display: block;
  border-radius: 8px;
  transition: background 0.16s, color 0.16s;
}
.main-nav a:hover, .main-nav a:focus { background: #e7ebe5; color: #2b8830; }
.main-nav .cta-primary {
  background: #3ea646;
  color: #fff;
  border-radius: 18px 32px 16px 18px / 20px 16px 22px 11px;
  padding: 10px 30px;
  margin-left: auto;
  font-size: 1.07rem;
  box-shadow: 0 2px 8px rgba(46,120,44,0.07);
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 600;
  transition: background 0.20s, transform 0.20s, box-shadow 0.18s;
  cursor: pointer;
  letter-spacing: .5px;
}
.main-nav .cta-primary:hover, .main-nav .cta-primary:focus {
  background: #37673b;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 24px rgba(49,120,54,0.12);
}
@media (max-width: 1000px) {
  .main-nav { gap: 11px; }
  .main-nav img { margin-right: 12px; }
}
@media (max-width: 820px) {
  .main-nav a { font-size: .98rem; }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .main-nav .cta-primary { margin: 0; }
}

/* ============ MOBILE MENU STYLES ============ */
.mobile-menu-toggle {
  display: none;
  background: #3ea646;
  color: #fff;
  border: none;
  border-radius: 16px 26px 22px 20px/18px 20px 24px 11px;
  font-size: 2rem;
  padding: 7px 19px 7px 17px;
  cursor: pointer;
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 1041;
  box-shadow: 0 2px 8px rgba(64,108,70,0.13);
  transition: background 0.15s, box-shadow 0.14s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #467c4e;
  box-shadow: 0 8px 24px rgba(72,152,84,0.13);
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 92vw;
  max-width: 355px;
  height: 100vh;
  background: #f5f3f0;
  overflow-y: auto;
  z-index: 1050;
  transform: translateX(120%);
  transition: transform 0.34s cubic-bezier(.47,.7,.3,1.23);
  box-shadow: -3px 0 18px 3px rgba(58, 72, 49, 0.08);
  display: flex;
  flex-direction: column;
  padding: 12px 24px 32px 24px;
}
.mobile-menu.open { transform: translateX(0%); }
.mobile-menu-close {
  align-self: flex-end;
  background: #3ea646;
  color: #fff;
  font-size: 1.5rem;
  border: none;
  border-radius: 12px 24px 24px 14px / 19px 17px 14px 11px;
  padding: 6px 18px 6px 10px;
  margin-top: 14px;
  margin-bottom: 22px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(61,95,77,.09);
  transition: background 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus { background: #467c4e; color: #fff; }
.mobile-nav { display: flex; flex-direction: column; gap: 16px; margin-top: 0; }
.mobile-nav a {
  color: #1A2233;
  font-size: 1.15rem;
  font-family: 'Oswald', Arial, sans-serif;
  padding: 14px 8px;
  border-radius: 13px 23px 18px 14px / 14px 19px 17px 11px;
  transition: background 0.16s, color 0.15s;
  margin-left: 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #cee4b9;
  color: #1C4523;
}
@media (max-width: 540px) {
  .mobile-menu { width: 98vw; padding: 18px 8px 34px 10px; }
  .mobile-nav a { font-size: 1.09rem; padding: 11px 6px; }
}

/* ================= HERO SECTION =============== */
.hero {
  background: linear-gradient(90deg, #e2eee5 0%, #f5f3f0 100%);
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 84px 44px / 80px 30px 80px 44px;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 270px;
  z-index: 1;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero h1 {
  color: #1A2233;
  font-size: 2.4rem;
  font-family: 'Oswald', Arial, sans-serif;
}
.hero p {
  color: #374932;
  font-size: 1.08rem;
  margin-bottom: 17px;
  max-width: 470px;
}
.hero .cta-primary { margin-top: 6px; align-self: flex-start; }
@media (max-width: 640px) {
  .hero { min-height: 210px; border-radius: 0 0 38px 24px / 30px 30px 32px 24px; }
  .hero h1 { font-size: 1.55rem; }
  .hero .container { min-height: 120px; }
}

/* ================= FEATURES =============== */
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 22px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 220px;
  max-width: 320px;
  background: #f3fdf3;
  border-radius: 34px 31px 27px 31px / 36px 29px 24px 18px;
  padding: 26px 18px 22px 19px;
  box-shadow: 0 2px 12px rgba(58,75,46,.07);
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow 0.22s, transform 0.16s;
}
.feature-item img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #cee4b9;
  padding: 9px;
  box-shadow: 0 1px 6px rgba(24, 78, 44, 0.08);
}
.feature-item h3 {
  color: #36733F;
  font-size: 1.15rem;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 6px 32px rgba(67,102,52,0.13);
  transform: translateY(-4px) scale(1.04);
}
@media (max-width: 960px) {
  .features .feature-grid { gap: 18px; }
  .feature-item { min-width: 160px; max-width: 380px; }
}
@media (max-width: 540px) {
  .features .feature-grid { flex-direction: column; gap: 19px; }
}

/* ============== NEWS PREVIEW / ARTICLES ============== */
.news-preview .news-teaser {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 21px;
}
.news-preview .news-teaser article {
  background: #fafcf7;
  border-radius: 16px 31px 27px 21px / 18px 19px 14px 11px;
  box-shadow: 0 2px 8px rgba(50,67,56,0.06);
  padding: 24px 18px 18px 19px;
  min-width: 200px;
  max-width: 340px;
  flex: 1 1 270px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.19s, transform 0.17s;
  border-left: 4px solid #37844c;
}
.news-preview .news-teaser article a {
  margin-top: 7px;
  color: #396054;
  font-weight: 600;
  font-size: 1rem;
  display: inline-block;
  transition: color 0.18s, text-decoration 0.18s;
}
.news-preview .news-teaser article a:hover, .news-preview .news-teaser article a:focus { color: #235f29; text-decoration: underline; }
.news-preview .news-teaser article:hover { box-shadow: 0 8px 32px rgba(67,116,69,0.13); transform: translateY(-2px) scale(1.03); }
@media (max-width: 828px) {
  .news-preview .news-teaser { gap: 15px; }
}
@media (max-width: 540px) {
  .news-preview .news-teaser { flex-direction: column; gap: 19px; }
}

.news-articles-list, .test-review-list, .tech-article-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.news-articles-list article, .test-review-list article, .tech-article-overview article {
  background: #f8faf7;
  border-radius: 14px 14px 22px 20px / 18px 24px 19px 18px;
  box-shadow: 0 1.5px 7px rgba(50,67,56,0.05);
  padding: 22px 15px 14px 15px;
  flex: 1 1 260px;
  min-width: 180px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-left: 4px solid #afd883;
  transition: box-shadow 0.17s, transform 0.12s;
}
.news-articles-list article:hover, .test-review-list article:hover, .tech-article-overview article:hover {
  box-shadow: 0 7px 26px rgba(67,116,69,0.13); transform: translateY(-2px) scale(1.025);
}
@media (max-width: 540px) {
  .news-articles-list, .test-review-list, .tech-article-overview { flex-direction: column; gap: 18px; }
}

/* ============== TESTIMONIALS ============== */
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #F5F3F0;
  border-radius: 32px 22px 20px 32px / 19px 28px 30px 17px;
  padding: 20px;
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 368px;
  box-shadow: 0 2px 10px rgba(67,116,69,0.08);
  border: 1.5px solid #cee4b9;
  color: #1A2233;
  transition: box-shadow 0.19s, transform 0.13s;
}
.testimonial-card p {
  color: #1A2233;
  font-size: 1.06rem;
  margin-bottom: 7px;
}
.testimonial-card span {
  color: #3c5344;
  font-size: .98rem;
  font-style: italic;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 32px rgba(67,116,69,0.18);
  transform: scale(1.03) translateY(-3px);
}
@media (max-width: 540px) {
  .testimonials .content-wrapper { flex-direction: column; gap: 17px; }
  .testimonial-card { flex-direction: column; align-items: flex-start; gap: 11px; }
}

/* ================ CARD CONTAINERS ================ */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 22px 24px 18px 12px / 24px 19px 24px 10px;
  background: #f5f7f2;
  box-shadow: 0 2px 10px rgba(49, 161, 86, 0.06);
  padding: 24px 18px 18px 19px;
}

.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: flex-start; gap: 18px; }
}

/* ================ UTILITY CLASSES ================ */
.text-section {
  background: #f8faf7;
  border-radius: 18px 36px 22px 14px / 21px 18px 28px 11px;
  padding: 28px 20px 21px 21px;
  box-shadow: 0 1.5px 8px rgba(64,130,62,0.04);
  margin-bottom: 22px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-left: 8px;
}
.model-brand-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 12px;
  margin-bottom: 18px;
}
.model-brand-list li {
  padding: 7px 18px;
  background: #cee4b9;
  border-radius: 15px 18px 11px 12px;
  color: #1A2233;
  font-weight: 700;
  font-family: "Oswald", Arial, sans-serif;
  font-size: 1rem;
}
.contact-infos {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.contact-infos li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1.08rem;
}
.contact-infos img { width: 26px; height: 26px; }

/* ================ BUTTONS ================ */
.cta-primary, .cta-secondary {
  border: none;
  border-radius: 18px 32px 16px 18px / 20px 16px 22px 11px;
  padding: 10px 30px;
  font-size: 1.03rem;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  margin-top: 5px;
  transition: background 0.20s, color 0.14s, box-shadow 0.20s, transform 0.18s;
  box-shadow: 0 1.5px 8px rgba(49, 161, 86, 0.09);
  letter-spacing: 0.01em;
  display: inline-block;
}
.cta-primary {
  background: #3ea646;
  color: #fff;
  outline: none;
}
.cta-primary:hover, .cta-primary:focus {
  background: #2b8830;
  color: #ffffff;
  box-shadow: 0 6px 26px rgba(49,120,54,0.12);
  transform: translateY(-2px) scale(1.04);
}
.cta-secondary {
  background: #fff;
  color: #3ea646;
  border: 2px solid #afd883;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #afd883;
  color: #213029;
}

/* ================ FOOTER ================ */
footer {
  background: #e2eee5;
  border-radius: 56px 36px 0 0 / 44px 28px 0 0;
  box-shadow: 0 -2px 12px rgba(58,75,46,0.04);
  margin-top: 44px;
  padding: 36px 0 32px 0;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 18px;
  justify-content: center;
}
.footer-menu a {
  color: #1A2233;
  font-weight: 500;
  font-size: 1rem;
  background: #cee4b9;
  padding: 7px 18px;
  border-radius: 16px;
  transition: background 0.12s, color 0.13s;
}
.footer-menu a:hover { background: #afd883; color: #2b8830; }
.footer-contact {
  text-align: center;
  color: #37673b;
  font-size: .97rem;
}
.footer-contact p + p { margin-top: 7px; }

@media (max-width: 768px) {
  .footer-menu { gap: 16px; }
  footer { border-radius: 22px 16px 0 0 / 17px 9px 0 0; padding: 19px 0 18px 0; }
}

/* ========== COOKIE CONSENT BANNER & MODAL ========== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  border-top: 3px solid #C1121F;
  color: #213029;
  box-shadow: 0 -2px 20px 0 rgba(64,110,80,0.11);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  z-index: 9999;
  padding: 26px 18px;
  font-size: 1rem;
  animation: cookieslidein 0.62s cubic-bezier(.5,1.6,.48,1.1);
}
@keyframes cookieslidein { from { transform: translateY(120%); } to { transform: translateY(0); } }
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.cookie-banner button.cookie-accept {
  background: #3ea646;
  color: #fff;
  border-radius: 14px 20px 16px 14px / 13px 16px 14px 11px;
  padding: 10px 24px;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  transition: background 0.16s, box-shadow 0.18s;
  cursor: pointer;
}
.cookie-banner button.cookie-accept:hover, .cookie-banner button.cookie-accept:focus { background: #278337; }
.cookie-banner button.cookie-reject {
  background: #fff;
  color: #C1121F;
  border: 2px solid #C1121F;
  border-radius: 14px 20px 16px 14px / 13px 16px 14px 11px;
  padding: 10px 21px;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.14s, color 0.13s, border-color 0.17s;
  cursor: pointer;
}
.cookie-banner button.cookie-reject:hover, .cookie-banner button.cookie-reject:focus { background: #f8ecec; color: #B71C1C; }
.cookie-banner button.cookie-settings {
  background: #e2eee5;
  color: #1A2233;
  border-radius: 13px;
  padding: 10px 18px;
  border: none;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 0.96rem;
  font-weight: 500;
  transition: background 0.21s, color 0.11s;
  cursor: pointer;
}
.cookie-banner button.cookie-settings:hover, .cookie-banner button.cookie-settings:focus { background: #afd883; color: #3ea646; }
@media (max-width: 650px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; padding: 18px 8px; gap: 16px; font-size: 0.97rem; }
  .cookie-banner .cookie-actions { gap: 8px; }
}

/* ---- Cookie Modal Dialog ---- */
.cookie-modal-overlay {
  position: fixed;
  z-index: 10999;
  left: 0; top: 0; bottom: 0; right: 0;
  background: rgba(33,48,41,0.45);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: cookieFade 0.25s ease;
}
@keyframes cookieFade { from { opacity: 0; } to { opacity: 1; } }
.cookie-modal {
  background: #f5f3f0;
  border-radius: 24px 36px 22px 24px / 21px 18px 28px 13px;
  box-shadow: 0 3px 40px 0 rgba(28,52,23,0.13);
  max-width: 390px;
  width: 90vw;
  padding: 32px 22px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 1.05rem;
  color: #1A2233;
  position: relative;
  animation: cookieDialogIn 0.42s cubic-bezier(.5,1.6,.48,1.1);
}
@keyframes cookieDialogIn { from { transform: scale(.8) translateY(60px); opacity: 0; } to { transform: none; opacity: 1; } }
.cookie-modal h2 { margin-bottom: 8px; }
.cookie-modal .cookie-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
}
.cookie-category label {
  font-weight: 500;
  cursor: pointer;
  font-size: 1.01rem;
}
.cookie-category input[type="checkbox"] {
  width: 20px; height: 20px;
  accent-color: #3ea646;
}
.cookie-category.essential label {
  color: #1A2233;
  font-weight: 700;
  opacity: 0.85;
}
.cookie-modal-buttons {
  display: flex;
  gap: 13px;
  margin-top: 9px;
}
.cookie-modal-btn-confirm {
  background: #3ea646;
  color: #fff;
  border-radius: 14px;
  border: none;
  padding: 11px 24px;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.17s;
  cursor: pointer;
}
.cookie-modal-btn-confirm:hover, .cookie-modal-btn-confirm:focus { background: #278337; }
.cookie-modal-btn-cancel {
  background: #eee;
  color: #1A2233;
  border-radius: 13px;
  padding: 11px 18px;
  border: none;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 0.96rem;
  font-weight: 500;
  cursor: pointer;
}
.cookie-modal-btn-cancel:hover, .cookie-modal-btn-cancel:focus { background: #afd883; color: #3ea646; }
.cookie-modal .cookie-modal-close {
  position: absolute;
  right: 17px; top: 13px;
  background: transparent;
  border: none;
  font-size: 1.46rem;
  color: #3ea646;
  cursor: pointer;
  border-radius: 10px;
  transition: background 0.12s;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus { background: #cee4b9; }

/* ============= ORGANIC DECOR PATTERNS ============== */
/* Use organic borders, earth-toned cards, shaded with accent greens */
.section, .feature-item, .news-preview .news-teaser article, .testimonial-card, .card, .footer-menu a, .model-brand-list li {
  border-radius: 23px 51px 33px 32px / 32px 31px 53px 19px;
}

/* ============== MEDIA QUERIES =============== */
@media (max-width: 1130px) {
  .container { max-width: 99vw; }
}
@media (max-width: 900px) {
  .card-container, .content-grid {
    gap: 13px;
  }
}

/* Ensure all sections and cards have minimum 20px margin between */
.section, .card, .feature-item, .news-preview .news-teaser article, .testimonial-card {
  margin-bottom: 20px;
}

/* Prevent element overlap */
.section, .feature-item, .testimonial-card, .card, .footer-menu a, .model-brand-list li {
  z-index: 1;
}

/* =================== ANIMATIONS & MICRO-INTERACTIONS ================== */
.card, .feature-item, .news-preview .news-teaser article, .testimonial-card, .cta-primary, .cta-secondary {
  transition: box-shadow 0.21s, transform 0.15s, background 0.22s;
}
.card:hover, .feature-item:hover, .news-preview .news-teaser article:hover, .testimonial-card:hover {
  box-shadow: 0 6px 30px rgba(66, 116, 80, 0.11);
  transform: translateY(-3px) scale(1.03);
}

/* ================== PRINTING =================== */
@media print {
  header,.mobile-menu,.mobile-menu-toggle,.cookie-banner,.cookie-modal-overlay,footer {display:none!important;}
  body {color:#000;background:#fff;}
}

/* =================== GENERAL FINE-TUNING =================== */
::-webkit-scrollbar {
  height: 9px; width: 8px;
  background: #cee4b9;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb {
  background: #afd883;
  border-radius: 8px;
}

/* ---- Selection styling ---- */
::selection {
  background: #afd883;
  color: #223317;
}

/* ================== Z-INDEX CONTROL ================== */
header, .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal-overlay {
  z-index: 1030;
}

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