/* ======================================================  
   Bright Halo Ernährung – style.css
   Geometric Structured Design | Flexbox Only | Responsive
   ======================================================
   RESET & BASE TYPOGRAPHY
====================================================== */
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, menu, 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, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  box-sizing: border-box;
  vertical-align: baseline;
}
html {
  font-size: 16px;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #FFFFFF;
  color: #2C3643;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
a {
  color: #217455;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.35,1.1,.65,1);
}
a:hover, a:focus {
  color: #2C3643;
  outline: none;
}
ul, ol {
  list-style: none;
}
strong, b {
  font-weight: 700;
}
hr {
  border: none;
  border-top: 1px solid #E5E7EB;
  margin: 32px 0;
}

/* ======================================================
   BASE LAYOUT CONTAINERS & SPACING
====================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 3px 32px rgba(44,54,67,0.05);
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Flex containers as per mandatories */
.card-container,
.card-grid,
.features,
.recipe-list,
.benefit-grid,
.testimonial-slider,
.faq-accordion {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card,
.recipe-card,
.service-card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(44,54,67,0.05);
  padding: 24px 20px 16px 20px;
  min-width: 260px;
  flex: 1 1 270px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-left: 5px solid #268763;
  transition: box-shadow 0.2s;
}
.card:hover, .card:focus,
.recipe-card:hover, .recipe-card:focus {
  box-shadow: 0 6px 32px 0 rgba(44,54,67,0.13);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #F3EBCB;
  color: #2C3643;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(44,54,67,0.04);
  padding: 20px 28px 18px 28px;
  min-width: 250px;
  flex: 1 1 310px;
  margin-bottom: 20px;
}
.feature-item,
.feature-comparison ul,
ul.features-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
ul.features-list li {
  border: 1.5px solid #217455;
  background: #FFFFFF;
  border-radius: 14px;
  padding: 22px 18px 18px 18px;
  min-width: 200px;
  flex: 1 1 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

/* ======================================================
   TYPOGRAPHY / HEADINGS
====================================================== */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #2C3643;
  letter-spacing: -.02em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  line-height: 1.22;
}
h3 {
  font-size: 1.25rem;
  letter-spacing:-.01em;
}
h4 {
  font-size: 1.125rem;
}
p, li, td, th, em, label {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #2C3643;
}
small {
  font-size: .875rem;
  color: #217455;
}
@media (max-width: 900px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
}
@media (max-width: 600px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.125rem; }
}
button, .cta-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* Slightly angular font variant if available */
@supports (font-variation-settings: normal) {
  h1,h2,h3,h4,h5,h6 {
    font-variation-settings: "slnt" 2;
  }
}

/* ======================================================
   BUTTONS & PRIMARY INTERACTIVES
====================================================== */
.cta-btn, button, .btn {
  padding: 0.75em 1.8em;
  border: none;
  border-radius: 10px;
  background: #217455;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(44,54,67,0.06);
  transition: background .18s, color .18s, transform .13s;
  margin: 8px 0;
  outline: none;
  display: inline-block;
  text-align: center;
  text-transform: none;
}
.cta-btn:hover, .cta-btn:focus, button:hover, button:focus, .btn:hover, .btn:focus {
  background: #2C3643;
  color: #F3EBCB;
  transform: translateY(-2px) scale(1.02);
}
/* Secondary/ghost button */
.btn-secondary, .cookie-btn-secondary {
  background: #F3EBCB;
  color: #217455;
  border: 1.5px solid #217455;
}
.btn-secondary:hover, .cookie-btn-secondary:hover, .btn-secondary:focus, .cookie-btn-secondary:focus {
  background: #217455;
  color: #fff;
}

/* =============================================
   HEADER, NAV & LOGO
============================================= */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 18px rgba(44,54,67,0.07);
  position: sticky;
  top: 0;
  z-index: 40;
}
header .container {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  min-height: 80px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: #2C3643;
  font-size: 1rem;
  position: relative;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background .17s;
}
header nav a:hover, header nav a:focus {
  background: #F3EBCB;
  color: #217455;
}
header a img, footer a img {
  height: 34px;
  width: auto;
}
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: transparent;
  color: #217455;
  border: none;
  margin-left: 10px;
  border-radius: 8px;
  padding: 2px 10px;
  transition: background 0.22s;
  cursor: pointer;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #F3EBCB;
}

/* =============================================
   MOBILE MENU OVERLAY
============================================= */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: #FFFFFF;
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.52,0,.34,1);
  z-index: 1102;
  box-shadow: 0 4px 32px 0 rgba(44,54,67,0.22);
  padding: 0;
  opacity: 1;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  background: transparent;
  color: #2C3643;
  border: none;
  padding: 16px 26px 10px 0;
  border-radius: 7px;
  cursor: pointer;
  transition: background .18s, color .14s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #F3EBCB;
  color: #217455;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 18px;
  margin-left: 28px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.13rem;
  padding: 12px 12px 12px 0;
  color: #217455;
  border-left: 3.5px solid #217455;
  border-radius: 0 9px 9px 0;
  min-width: 150px;
  transition: background .14s, color .12s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F3EBCB;
  color: #2C3643;
  outline: none;
}

/* Show/hide mobile nav */
@media (max-width: 900px) {
  header nav,
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

/* =============================================
   HERO SECTIONS
============================================= */
.hero {
  background: #F3EBCB url('../assets/hero-bg-geometric.svg') bottom right no-repeat;
  background-size: 480px;
  border-radius: 0 0 60px 60px;
  margin-bottom: 36px;
  padding: 56px 0 40px 0;
  display: flex;
  flex-direction: column;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
}
.hero h1 {
  color: #217455;
  margin-bottom: 10px;
}
.hero p {
  color: #2C3643;
  opacity: .92;
  margin-bottom: 16px;
}

/* =============================================
   CARDS & RECIPE LISTS
============================================= */
.recipe-list {
  gap: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.recipe-card {
  border: 1.5px solid #217455;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(44,54,67,0.06);
  padding: 22px 18px 18px 18px;
  min-width: 200px;
  max-width: 320px;
  flex: 1 1 46%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .19s;
}
.recipe-card:hover {
  box-shadow: 0 4px 32px 0 rgba(44,54,67,0.13);
}

.benefit-grid {
  gap: 24px;
  display: flex;
  flex-wrap: wrap;
}
.benefit-grid > div {
  background: #fff;
  border: 1.5px solid #217455;
  border-radius: 16px;
  padding: 18px 18px 16px 18px;
  flex: 1 1 260px;
  min-width: 210px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  align-items: flex-start;
}
.benefit-grid img {
  height: 42px;
  width: 42px;
  margin-bottom: 10px;
}


/* =============================================
   TABLES & PRICE LISTS
============================================= */
.price-list {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 20px;
  font-size: 1rem;
}
.price-list th, .price-list td {
  padding: 12px 16px;
  border-bottom: 1px solid #EEE;
  text-align: left;
}
.price-list th {
  background: #F3EBCB;
  color: #2C3643;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.06rem;
  font-weight: 600;
}
.price-list td {
  background: #fff;
  color: #2C3643;
}

/* =============================================
   FAQ ACCORDION (Simple Style)
============================================= */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-accordion > div {
  background: #fff;
  border: 1.5px solid #217455;
  border-radius: 13px;
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 1px 6px rgba(44,54,67,0.03);
  cursor: pointer;
  margin-bottom: 0;
  position: relative;
  transition: box-shadow .17s;
}
.faq-accordion > div:hover, .faq-accordion > div:focus-within {
  box-shadow: 0 2px 12px 0 rgba(44,54,67,0.08);
}
.faq-question {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  cursor: pointer;
  color: #217455;
  font-size: 1.13rem;
}
.faq-answer {
  display: none;
  padding-top: 6px;
  color: #2C3643;
}
.faq-accordion .open .faq-answer {
  display: block;
}

/* =============================================
   TRUST BADGES & AWARDS (Index)
============================================= */
.trust-badges {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  padding: 0;
  margin: 18px 0 0 0;
}
.trust-badges li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
  font-family: 'Roboto';
  border-radius: 10px;
  background: #fff;
  border: 1.5px solid #F3EBCB;
  padding: 10px 20px 9px 14px;
  color: #217455;
}
.trust-badges img {
  width: 24px;
  height: 24px;
}

/* =============================================
   FOOTER
============================================= */
footer {
  background: #F3EBCB;
  border-radius: 60px 60px 0 0;
  padding: 46px 0 34px 0;
  margin-top: 70px;
  min-height: 150px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
  align-items: flex-start;
  justify-content: space-between;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
footer nav a {
  color: #217455;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.01em;
  padding: 3px 0;
  border-radius: 4px;
  transition: background .14s, color .12s;
}
footer nav a:hover, footer nav a:focus {
  color: #2C3643;
  background: #fff;
}
footer .text-section {
  color: #2C3643;
  font-size: 1rem;
  font-family: 'Roboto';
  gap: 12px;
}
footer .text-section a {
  color: #2C3643;
  text-decoration: underline;
  font-weight: 500;
}
footer .text-section a:hover {
  color: #217455;
}

/* =============================================
   RESPONSIVE RULES (Mobile-First)
============================================= */
@media (max-width: 1200px) {
  .container {
    max-width: 99vw;
  }
}
@media (max-width: 900px) {
  .container {
    padding: 0 8px;
  }
  .hero {
    padding: 32px 0 24px 0;
  }
  .section {
    padding: 28px 10px;
    margin-bottom: 42px;
  }
  .card,
  .recipe-card,
  .testimonial-card {
    min-width: 70vw;
  }
  .benefit-grid > div, .features-list li {
    min-width: 70vw;
  }
  footer {
    padding: 24px 0 28px 0;
  }
  footer .container {
    gap: 22px;
  }
}
@media (max-width: 768px) {
  .content-grid,
  .section, .trust-badges, .card-container,
  .card-grid, .features, .recipe-list,
  .benefit-grid, .testimonial-slider,
  .faq-accordion {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .hero {
    background-size: 200px;
    border-radius: 0 0 32px 32px;
  }
  header .container {
    padding: 0 8px;
    min-height: 62px;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

@media (max-width: 540px) {
  .section {
    margin-bottom: 28px;
    padding: 17px 4px;
  }
  .content-wrapper {
    gap: 14px;
  }
  .card, .recipe-card, .testimonial-card, .benefit-grid > div, .features-list li {
    min-width: 86vw;
    padding: 13px 7vw 13px 7vw;
    font-size: 0.94rem;
  }
  .trust-badges li {
    padding: 9px 5vw 7px 5vw;
    font-size: 0.94rem;
  }
  .hero {
    padding: 20px 0 10px 0;
    border-radius: 0 0 17px 17px;
  }
}

/* =============================================
   TESTIMONIALS
============================================= */
.testimonial-slider {
  gap: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.testimonial-card {
  border-left: 5px solid #217455;
  background: #F3EBCB;
  color: #2C3643;
  font-size: 1.07rem;
  margin-bottom: 20px;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(44,54,67,0.04);
  min-width: 250px;
}
.testimonial-card strong {
  color: #217455;
  font-size: 0.96rem;
  font-family: 'Montserrat';
  margin-top: 6px;
  font-weight: 700;
}
/* For contrast, force dark text on light testimonial bg */
.testimonial-card p, .testimonial-card strong {
  color: #2C3643;
}

/* =============================================
   STEPS AND FILTERS (e.g., ol.step-guide, .filter-list)
============================================= */
ol.step-guide {
  display: flex;
  flex-direction: column;
  gap: 15px;
  list-style: none;
  counter-reset: step;
  margin-left: 0;
  margin-top: 4px;
}
ol.step-guide li {
  position: relative;
  padding-left: 36px;
  font-size: 1rem;
}
ol.step-guide li:before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 2px;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: #217455;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(44,54,67,0.05);
}
ul.filter-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
ul.filter-list li strong {
  color: #217455;
}

/* =============================================
   COOKIE CONSENT BANNER + MODAL
============================================= */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; width: 100vw;
  background: #2C3643;
  color: #fff;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  gap: 21px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 0.97rem;
  box-shadow: 0 -6px 22px 0 rgba(33,116,85,0.07);
  animation: cookieAppear .9s cubic-bezier(.47,2,.24,1);
  border-radius: 20px 20px 0 0;
}
@keyframes cookieAppear {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 13px;
  align-items: center;
}
.cookie-btn-primary {
  background: #217455;
  color: #fff;
  border-radius: 7px;
  padding: 10px 18px;
  border: none;
  font-family: Montserrat,Arial,Helvetica,sans-serif;
  font-size: 1rem;
  font-weight: 700;
  transition: background .18s;
  cursor: pointer;
}
.cookie-btn-primary:hover, .cookie-btn-primary:focus {
  background: #2C3643;
  color: #F3EBCB;
}
.cookie-btn-secondary {
  background: #F3EBCB;
  color: #217455;
  border-radius: 7px;
  padding: 10px 14px;
  border: 1.5px solid #217455;
  font-size: 1rem;
  font-weight: 600;
  transition: background .19s, color .13s;
}
.cookie-btn-secondary:hover, .cookie-btn-secondary:focus {
  background: #217455;
  color: #fff;
}

/* Cookie Settings Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(44,54,67,0.40);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1300;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.3s;
}
.cookie-modal {
  background: #fff;
  color: #2C3643;
  border-radius: 14px;
  max-width: 98vw;
  width: 375px;
  padding: 36px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  box-shadow: 0 7px 40px 0 rgba(44,54,67,0.16);
  animation: modalPop 0.26s cubic-bezier(.5,1.3,.5,1);
  z-index: 1400;
}
@keyframes modalPop {
  0% { transform: translateY(60px) scale(0.93); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal-header {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 3px;
}
.cookie-modal-header h2 {
  font-size: 1.3rem;
  color: #217455;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 8px 0 0 0;
}
.cookie-switch {
  position: relative;
  display: flex;
  align-items: center;
}
.cookie-switch input[type=checkbox] {
  display: none;
}
.cookie-slider {
  width: 38px;
  height: 22px;
  background: #F3EBCB;
  border-radius: 12px;
  position: relative;
  transition: background 0.2s;
  cursor: pointer;
}
.cookie-switch input:checked + .cookie-slider {
  background: #217455;
}
.cookie-slider:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 2.5px;
  width: 17px;
  height: 17px;
  background: #fff;
  border-radius: 50%;
  transition: transform .23s cubic-bezier(.54,1.8,.7,1), background .13s;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(16px);
  background: #F3EBCB;
}
.cookie-category-label {
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #2C3643;
}
.cookie-category-essential {
  color: #A0A0A0;
  font-size: 0.96rem;
  font-style: italic;
}
.cookie-modal-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}
.cookie-modal-close {
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #217455;
  position: absolute;
  top: 15px; right: 16px;
  border-radius: 8px;
  padding: 2px 8px;
  cursor: pointer;
  transition: background .13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #F3EBCB;
}

/* =============================================
   GEOMETRIC DECORATIVE ELEMENTS
============================================= */
.section {
  position: relative;
  overflow: visible;
}
.section:before {
  content: '';
  display: block;
  position: absolute;
  top: -26px;
  left: -18px;
  width: 82px; height: 38px;
  background: #F3EBCB;
  border-radius: 0 24px 0 0;
  z-index: 1;
  opacity: .72;
}
.section:after {
  content: '';
  display: block;
  position: absolute;
  bottom: -28px; right: -23px;
  width: 62px; height: 28px;
  background: #268763;
  border-radius: 14px 0 14px 0;
  opacity: .13;
  z-index: 1;
}
.section > * {
  position: relative;
  z-index: 4;
}

/* Only include this decoration when enough space (avoid on xs screens) */
@media (max-width: 540px) {
  .section:before, .section:after {
    display: none;
  }
}

/* =============================================
   INPUTS, FORMS (if present)
============================================= */
input, textarea, select {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border-radius: 7px;
  border: 1.5px solid #217455;
  outline: none;
  padding: 10px 13px;
  margin-bottom: 14px;
  background: #fff;
  width: 100%;
  box-shadow: 0 1px 6px rgba(44,54,67,0.03);
  transition: border-color 0.18s;
}
input:focus, textarea:focus, select:focus {
  border-color: #2C3643;
}
label {
  margin-bottom: 5px;
  font-weight: 600;
  color: #217455;
}


/* ========== UTILITIES ========== */
.mt-2 { margin-top: 16px; }
.mb-2 { margin-bottom: 16px; }
.mt-3 { margin-top: 24px; }
.mb-3 { margin-bottom: 24px; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* Hide visually but accessible */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ========== ANIMATIONS & TRANSITIONS ========== */
.section, .card, .card-container, .testimonial-card, .feature-item, ol.step-guide li, .cta-btn, .btn, .price-list th, .price-list td {
  transition: box-shadow 0.17s, background 0.18s, border-color 0.17s;
}

/* ========== ACCESSIBILITY ========== */
:focus-visible {
  outline: 2px solid #217455;
  outline-offset: 2px;
}

/* === Hide cookie modal/banner if not shown === */
.cookie-banner.hidden,
.cookie-modal-overlay.hidden {
  display: none !important;
  pointer-events: none;
}

/* =============================================
   END – Bright Halo Ernährung CSS
============================================= */
