/* === 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, 
main, 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 {
  box-sizing: border-box;
  scrollbar-color: #8CB39A #F3E9D2;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #F9FAF5;
  color: #222;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}
a {
  color: #154B41;
  text-decoration: none;
  transition: color 0.25s;
}
a:hover, a:focus {
  color: #E96B2C;
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
ul, ol {
  margin-left: 24px;
}
section, header, footer, main, nav {
  display: block;
}

/* === BRAND FONTS & COLORS === */
:root {
  --color-primary: #154B41;
  --color-secondary: #8CB39A;
  --color-accent: #F3E9D2;
  --color-orange: #E96B2C;
  --color-yellow: #FFE172;
  --color-light: #F9FAF5;
  --color-dark: #222;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

/* === LAYOUT CONTAINERS === */
.container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* === TYPOGRAPHY === */
h1, .hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.4rem;
  color: var(--color-primary);
  letter-spacing: -1px;
  margin-bottom: 16px;
  line-height: 1.15;
  word-spacing: 2px;
  text-shadow: 1px 2px 0 #8CB39A1a;
}
h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--color-secondary);
  margin-bottom: 16px;
  letter-spacing: 0px;
}
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--color-primary);
  margin-bottom: 12px;
}
.cta-primary, .cta .cta-primary {
  font-family: var(--font-display);
  background: var(--color-orange);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: bold;
  box-shadow: 0 4px 18px 0 #E96B2C20;
  box-sizing: border-box;
  cursor: pointer;
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  margin-top: 12px;
  display: inline-block;
  letter-spacing: .03em;
  outline: none;
  position: relative;
  z-index: 1;
}
.cta-primary:hover, .cta-primary:focus {
  background: #222;
  color: #FFE172;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 22px 0 #E96B2C33, 0 0 6px #FFE17277;
  text-decoration: none;
}

p {
  font-size: 1rem;
  font-family: var(--font-body);
  margin-bottom: 10px;
}
strong {
  font-weight: bold;
  color: var(--color-primary);
}

ul, ol {
  font-size: 1rem;
  line-height: 1.7;
  padding-left: 24px;
  margin-bottom: 12px;
}
li {
  margin-bottom: 8px;
}

/* === HEADER & NAVIGATION === */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 16px 0 #8CB39A15;
  z-index: 100;
  position: sticky;
  top: 0;
  min-height: 64px;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-top: 0;
  padding-bottom: 0;
  gap: 0;
}
header a img {
  height: 48px;
  margin-right: 24px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 12px;
}
header nav a {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  border-radius: 22px;
  padding: 7px 16px;
  transition: background 0.21s, color 0.18s, box-shadow 0.17s, transform 0.18s;
  margin: 0 2px;
  position: relative;
  z-index: 0;
}
header nav a.cta-primary {
  background: var(--color-orange);
  color: #fff;
  box-shadow: 0 2px 12px #E96B2C22;
  font-weight: bold;
}
header nav a:hover:not(.cta-primary), header nav a:focus:not(.cta-primary) {
  background: var(--color-secondary);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 2px 10px #154B4140;
  outline: none;
}
header nav a.cta-primary:hover, header nav a.cta-primary:focus {
  background: #222;
  color: #FFE172;
  transform: translateY(-2px) scale(1.04);
}
.mobile-menu-toggle {
  background: transparent;
  border: none;
  font-size: 2.4rem;
  color: var(--color-orange);
  display: flex;
  align-items: center;
  cursor: pointer;
  z-index: 101;
  margin-left: 16px;
  transition: color 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: var(--color-primary);
}

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

/* === MOBILE MENU === */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(243,233,210,0.99);
  box-shadow: -4px 0 22px #8CB39A44;
  z-index: 9001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.57,.21,.69,1.25);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.4rem;
  color: var(--color-primary);
  position: absolute;
  top: 28px;
  right: 32px;
  z-index: 9100;
  cursor: pointer;
  transition: color 0.21s;
  font-family: var(--font-display);
}
.mobile-menu-close:hover,
.mobile-menu-close:focus { color: var(--color-orange); outline: none; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 88px 32px 32px 32px;
  gap: 18px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-primary);
  padding: 12px 0;
  width: 100%;
  border-radius: 12px;
  transition: background 0.18s, color 0.18s, padding-left 0.16s;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--color-secondary);
  color: #fff;
  padding-left: 12px;
  outline: none;
}

@media (max-width: 1023px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle { display: flex; }
}
@media (max-width: 512px){
  .mobile-nav { padding-left: 10px; padding-right: 10px; }
  .mobile-menu-close { top: 16px; right: 16px; }
}

/* === HERO SECTION === */
.hero {
  background: linear-gradient(100deg, #F3E9D2 70%, #8CB39A22 110%);
  padding: 56px 0 48px 0;
  margin-bottom: 40px;
  width: 100%;
}
.hero .container {
  align-items: flex-start;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 680px;
  animation: popinHero 0.9s cubic-bezier(.37,1.13,.46,1.07) .15s both;
}
@keyframes popinHero { 0%{ opacity:0; transform:scale(.95) translateY(38px);} 100%{opacity:1;transform:none;} }

.hero h1 {
  font-size: 2.6rem;
  color: var(--color-primary);
  margin-bottom: 18px;
  letter-spacing: -1.5px;
  font-family: var(--font-display);
  font-weight: 900;
}
.hero p {
  font-size: 1.17rem;
  color: var(--color-dark);
  margin-bottom: 12px;
}

/* === FEATURES SECTION === */
.features .content-wrapper {
  gap: 32px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  justify-content: flex-start;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 2px 10px #8CB39A19, 0 0 0 #0000;
  padding: 28px 22px;
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 300px;
  margin-bottom: 20px;
  transition: transform 0.18s, box-shadow 0.19s;
  position: relative;
  z-index: 2;
}
.feature-item img {
  height: 44px;
  width: 44px;
  filter: drop-shadow(0 4px 8px #F3E9D280);
  margin-bottom: 4px;
  pointer-events: none;
}
.feature-item h3 {
  font-size: 1.12rem;
  color: var(--color-primary); margin-bottom: 6px;
  font-family: var(--font-display); font-weight: 700;
}
.feature-item p {
  color: #595959; font-size: 1em;
}
.feature-item:hover, .feature-item:focus-within {
  transform: translateY(-4px) scale(1.03) rotate(-0.5deg);
  box-shadow: 0 10px 26px 0 #8CB39A1f, 0 0 8px #E96B2C1a;
}

/* ==== ABOUT SECTION === */
.about .content-wrapper ul {
  list-style: disc;
  margin-left: 24px;
  margin-bottom: 12px;
}
.about .content-wrapper ul li {
  color: #555;
  margin-bottom: 8px;
}

/* ==== SERVICES AND CARDS === */
.services .service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.service-card {
  flex: 1 1 245px;
  min-width: 210px;
  background: #fff;
  border-radius: 26px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px #8CB39A19;
  padding: 28px 20px 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: transform 0.15s, box-shadow 0.15s;
  position: relative;
  z-index: 1;
}
.service-card h3 {
  font-size: 1.13rem;
  color: var(--color-secondary);
  font-family: var(--font-display);
  margin-bottom: 6px;
}
.service-card p { color: #4c4c4c; font-size: 1em; }
.service-card .price {
  background: var(--color-orange);
  color: #fff;
  font-weight: bold;
  border-radius: 14px;
  padding: 4px 16px;
  font-size: 1em;
  margin-top: 8px;
  align-self: flex-end;
  box-shadow: 0 2px 8px #E96B2C18;
  letter-spacing: .01em;
}
.service-card:hover, .service-card:focus-within {
  transform: scale(1.035) rotate(1.5deg);
  box-shadow: 0 8px 24px #8CB39A33, 0 0 8px #E96B2C2a;
}

/* === ARTICLE-LIST (Ressourcen) == */
.article-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.article-item {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 10px #8CB39A19;
  padding: 22px 18px;
  flex: 1 1 240px;
  min-width: 200px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  transition: transform 0.13s, box-shadow 0.15s;
}
.article-item h3 {
  font-size: 1.08rem;
  color: var(--color-orange);
}
.article-item a {
  color: var(--color-primary);
  text-decoration: underline;
  font-weight: 700;
  margin-top: 8px;
  transition: color 0.14s;
}
.article-item a:hover { color: var(--color-secondary); }
.article-item:hover, .article-item:focus {
  transform: scale(1.025);
  box-shadow: 0 6px 18px #E96B2C19, 0 0 8px #8CB39A0c;
}

.topics-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  list-style: none;
  margin-top: 8px !important;
}
.topics-filter li {
  background: var(--color-yellow);
  color: var(--color-primary);
  border-radius: 15px;
  padding: 6px 14px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .93em;
  letter-spacing: .03em;
  animation: filterIn .5s ease;
}
@keyframes filterIn { from{ opacity: 0; transform: scale(.95); } to { opacity:1; transform:none; } }

/* === CTA BANNER === */
.cta {
  background: linear-gradient(90deg, #FFE172 10%, #F3E9D2 90%);
  border-radius: 40px;
  margin-bottom: 60px;
  margin-top: 10px;
  padding: 36px 18px;
  box-shadow: 0 4px 18px #8CB39A11;
}
.cta p {
  font-size: 1.12rem;
  font-family: var(--font-display);
  color: var(--color-primary);
  margin-bottom: 22px;
}

/* === FOOTER === */
footer {
  background: #fff;
  margin-top: 40px;
  padding: 32px 0 10px 0;
  box-shadow: 0 -2px 24px #8CB39A11;
  font-size: 0.96rem;
}
footer .container {
  flex-direction: row;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0;
}
footer .footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  min-width: 210px;
}
.footer-contact img {
  height: 40px;
  margin-bottom: 8px;
}
.footer-contact ul {
  list-style: none;
  margin: 0 0 0 0;
  padding: 0;
}
.footer-contact ul li {
  display: flex;
  align-items: center;
  color: #606d67;
  font-size: .98em;
  margin-bottom: 7px;
  gap: 6px;
}
.footer-contact ul li img {
  width: 20px; height: 20px; margin-right: 7px;
  filter: grayscale(20%) brightness(1.1) sepia(0.1);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: var(--color-primary);
  padding: 4px 0;
  transition: color 0.13s, text-decoration 0.16s;
  font-family: var(--font-display);
  font-size: .98rem;
  font-weight: 600;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-orange);
  text-decoration: underline;
  outline: none;
}
footer p {
  color: #919A96;
  font-size: 0.93rem;
  text-align: right;
  margin-top: 18px;
  margin-bottom: 0;
}

/* === SECTION AND CARD SPACING - FLEXBOX ONLY === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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: #fff;
  border-radius: 32px;
  box-shadow: 0 2px 16px #FFE17233, 0 0 0 #0000;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, transform 0.17s;
  min-width: 200px;
  max-width: 720px;
  flex-wrap: wrap;
  font-size: 1.08rem;
  position: relative;
  z-index: 0;
}
.testimonial-card p {
  color: #1B2B27;
  font-size: 1.02em;
  font-family: var(--font-body);
  margin-bottom: 0;
}
.testimonial-details {
  font-size: 0.99em;
  color: var(--color-secondary);
  margin-left: 12px;
  font-family: var(--font-display);
  font-weight: 600;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 7px 26px #8CB39A22,0 0 8px #FFE17233;
  transform: scale(1.012);
}

.feature-item, .service-card, .article-item, .testimonial-card {
  margin-bottom: 20px;
}

/* === LISTS, GRIDS, OL/UL FORMAT === */
.benefits-grid, .features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: disc outside;
}
.benefits-grid li, .features ul li {
  background: #fff;
  border-radius: 16px;
  padding: 11px 16px;
  color: #174a42;
  min-width: 150px;
  font-size: 1em;
  box-shadow: 0 1px 7px #8CB39A13;
  margin-right: 8px;
  margin-bottom: 8px;
}

/* === MAP SNIPPET & CONTACT INFO === */
.map-snippet {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 12px #F3E9D230;
  padding: 16px;
  margin-top: 24px;
}
.contact-info {
  list-style: none;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 18px;
}
.contact-info li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  gap: 7px;
}
.contact-info img {
  width: 24px; height: 24px;
}

/* === COOKIE CONSENT BANNER === */
#cookie-banner, .cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  background: #FFE172;
  color: #1B2B27;
  z-index: 99000;
  box-shadow: 0 -2px 14px #8CB39A23;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  font-size: 1rem;
  font-family: var(--font-body);
  gap: 14px;
  animation: cookieAppear .7s .2s both cubic-bezier(.4,1.32,.34,1);
}
@keyframes cookieAppear { from{ opacity:0; transform: translateY(100%);} to{opacity:1; transform:none;} }
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-banner button {
  font-family: var(--font-display);
  font-size: 1em;
  font-weight: 700;
  border: none;
  border-radius: 19px;
  padding: 7px 20px;
  background: var(--color-secondary);
  color: #fff;
  cursor: pointer;
  margin-left: 3px;
  transition: background .16s, color .17s, transform .14s;
  box-shadow: 0 1px 6px #8CB39A18;
}
.cookie-banner button.accept {
  background: var(--color-primary);
}
.cookie-banner button.reject {
  background: #E96B2C;
}
.cookie-banner button.settings {
  background: #fff;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  transform: translateY(-2px) scale(1.04);
  outline: none;
  background: #154B41aa;
  color: #FFE172;
}
.cookie-banner button.settings:hover, .cookie-banner button.settings:focus {
  background: #F3E9D2;
  color: #222;
}

/* === COOKIE SETTINGS MODAL === */
#cookie-modal, .cookie-modal {
  display: none;
  position: fixed;
  z-index: 99001;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(21,75,65,0.18);
  align-items: center;
  justify-content: center;
  animation: fadeIn .2s both;
}
@keyframes fadeIn { from{opacity:0;} to{opacity:1;} }
.cookie-modal.open {
  display: flex !important;
}
.cookie-modal-content {
  background: #FFE172;
  color: #154B41;
  border-radius: 28px;
  box-shadow: 0 8px 44px #2221;
  padding: 38px 28px;
  max-width: 400px;
  width: 96vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: var(--font-body);
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 16px;
  padding: 10px 18px;
  font-size: 1em;
  margin-bottom: 8px;
  box-shadow: 0 1px 5px #8CB39A11;
}
.cookie-category label {
  font-family: var(--font-display);
  font-size: 1em;
  color: var(--color-primary);
}
.cookie-modal-close {
  border: none;
  background: transparent;
  color: #E96B2C;
  position: absolute;
  top: 1.1em; right: 2em;
  font-size: 2.1em;
  cursor: pointer;
  transition: color .17s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus { color: #154B41; }

/* === FORMS === */
input, textarea, select {
  font-family: var(--font-body);
  border-radius: 8px;
  border: 1.5px solid var(--color-secondary);
  padding: 10px 14px;
  font-size: 1em;
  margin-bottom: 14px;
  width: 100%;
  background: #F3E9D2;
  color: #154B41;
  transition: border-color 0.17s, box-shadow 0.13s;
}
input:focus, textarea:focus, select:focus {
  border-color: #E96B2C;
  outline: none;
  box-shadow: 0 2px 10px #FFE17255;
}
label {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-size: .99em;
}

/* === THANK YOU PAGE === */
.thank-you {
  padding: 50px 0 30px 0;
  min-height: 320px;
}
.thank-you h1 {
  color: var(--color-orange);
  font-size: 2rem;
  margin-bottom: 22px;
}
.thank-you p {
  margin-bottom: 15px;
}

/* === ANIMATIONS & MICRO-INTERACTIONS === */
.feature-item, .service-card, .article-item, .testimonial-card {
  will-change: transform, box-shadow;
}
.cta-primary, .cookie-banner button, .mobile-menu-toggle {
  transition: background 0.21s, color 0.19s, transform 0.175s, box-shadow 0.15s;
}

/* === URBAN TIPS (achtsamkeit) === */
.urban-tips ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
  list-style: disc;
}
.urban-tips li {
  background: #fff;
  padding: 8px 14px;
  border-radius: 14px;
  font-size: 1em;
  box-shadow: 0 1px 7px #8CB39A13;
}

/* === RESPONSIVE DESIGN (MOBILE-FIRST) === */
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding: 0 8px;
  }
  .hero .content-wrapper,
  .about .content-wrapper,
  .features .content-wrapper,
  .services .content-wrapper
  { max-width: none; }
  .features .feature-grid { gap: 16px; }
  .article-list { gap: 14px; }
  .service-cards { gap: 14px; }
}
@media (max-width: 768px) {
  h1, .hero h1 { font-size: 2rem; }
  h2 { font-size: 1.17rem; }
  .section, .hero, .cta { padding: 18px 4vw; }
  .feature-grid, .service-cards, .article-list { flex-direction: column; gap: 10px; }
  .footer-nav { flex-direction: column; gap: 6px; }
  .footer-contact { min-width: 120px; }
  .content-wrapper { gap: 18px; }
  .testimonial-card { flex-direction: column; gap: 7px; padding: 16px; }
}
@media (max-width: 600px) {
  .article-item, .feature-item, .service-card, .testimonial-card {
    min-width: 0; max-width: 100vw;
    padding: 16px 9px;
    font-size: 0.98em;
  }
  .cookie-banner { flex-direction: column; padding: 12px 6px; gap: 8px; align-items: flex-start; }
  #cookie-banner { padding: 8px 2vw; }
}
@media (max-width: 470px) {
  .footer-contact ul li { font-size: .93em; }
  footer p { font-size: .84em; }
  .mobile-menu-close { font-size: 1.8rem; }
  .testimonial-card { font-size: .97em; padding: 9px; }
}

/* === EXTRAS: DYNAMIC & PLAYFUL DETAILS === */
.feature-item:after, .service-card:after, .testimonial-card:after {
  content: '';
  display: block;
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.13;
}
.feature-item:after {
  background: var(--color-yellow);
  width: 54px; height: 54px; bottom: 12px; right: 10px;
}
.service-card:after {
  background: var(--color-secondary);
  width: 37px; height: 37px; top: 11px; right: 13px;
}
.testimonial-card:after {
  background: var(--color-orange);
  width: 28px; height: 28px; bottom: 8px; left: 16px;
}

/* === Utility: Hide/Show === */
.hide { display: none !important; }
.show { display: flex !important; }

/* === Accessibility: Focus Styles === */
a:focus, button:focus, .cta-primary:focus {
  outline: 2.5px dashed #FFE172;
  outline-offset: 2px;
}
::-webkit-input-placeholder { color: #8CB39A; }
::-moz-placeholder { color: #8CB39A; }
:-ms-input-placeholder { color: #8CB39A; }
::placeholder { color: #8CB39A; }

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

/* === END === */
