/* =====================================================
   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,
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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F3F6FA;
  color: #273331;
  -webkit-font-smoothing: antialiased;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
input, button, textarea, select {
  font: inherit;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s;
}
:focus {
  outline: 2px solid #EEA00C;
  outline-offset: 2px;
}

/* =====================================================
   BRAND COLORS AND FONTS AS CSS VARIABLES
====================================================== */
:root {
  --primary: #23673B;
  --primary-dark: #1A482B;
  --secondary-bg: #F3F6FA;
  --accent: #EEA00C;
  --accent-dark: #C68000;
  --heading-font: 'Montserrat', Arial, Helvetica, sans-serif;
  --body-font: 'Roboto', Arial, Helvetica, sans-serif;
  --earth-brown: #97735D;
  --mud: #626156;
  --organic-green: #6DA46B;
  --warm-beige: #F6F2E5;
  --grey-text: #767D75;
  --error: #E14C39;
}

/* =====================================================
   TYPOGRAPHY
====================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; line-height: 1.15; margin-bottom: 28px; }
h2 { font-size: 2rem; line-height: 1.2; margin-bottom: 24px; }
h3 { font-size: 1.4rem; line-height: 1.22; margin-bottom: 12px; }
h4 { font-size: 1.2rem; margin-bottom: 10px; }
h5, h6 { font-size: 1rem; }
p, ul, ol, li, span, strong {
  font-family: var(--body-font);
  font-size: 1rem;
  color: #273331;
  letter-spacing: 0.01em;
}
strong {
  font-weight: 600;
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.15rem; }
}

/* ======================
   LAYOUT CONTAINERS
====================== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section {
    padding: 32px 8px;
    margin-bottom: 36px;
  }
}

/* ======================
   HEADER/NAVIGATION
====================== */
header {
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(35,103,59,0.06);
  position: relative;
  z-index: 90;
  width: 100%;
}
.header-bar {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0 16px 0;
}
.logo-link img {
  height: 42px;
  border-radius: 18px 18px 0 0;
  background: #F6F2E5;
  padding: 6px 12px;
  box-shadow: 0 2px 6px 0 rgba(35,103,59,0.05);
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
  font-size: 1rem;
}
.main-nav a {
  color: var(--primary-dark);
  font-family: var(--heading-font);
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.20s, color 0.18s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
}
.cta-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  border-radius: 32px 24px 28px 32px;
  padding: 11px 30px 12px 30px;
  box-shadow: 0 4px 22px 0 rgba(238, 160, 12, 0.10);
  border: none;
  cursor: pointer;
  margin-left: 10px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  position: relative;
  z-index: 1;
}
.cta-btn:active {
  background: var(--accent-dark);
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--primary);
  color: #fff;
}
.cta-btn.secondary {
  background: var(--primary);
  color: #fff;
}
.cta-btn.secondary:hover, .cta-btn.secondary:focus {
  background: var(--accent);
  color: #fff;
}

/* ======================
   MOBILE MENU
====================== */
.mobile-menu-toggle {
  display: none;
  background: var(--primary-dark);
  color: #fff;
  font-size: 2rem;
  padding: 4px 14px;
  border-radius: 22px;
  border: none;
  cursor: pointer;
  margin-left: auto;
  position: relative;
  z-index: 201;
  transition: background 0.18s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--primary);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(243, 246, 250, 0.98);
  transform: translateX(-100%);
  transition: transform 0.34s cubic-bezier(.73,0,.32,1);
  z-index: 200;
  padding: 35px 32px 32px 22px;
  width: 100vw;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2.2rem;
  margin-bottom: 6px;
  cursor: pointer;
  transition: color 0.16s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}
.mobile-nav a {
  color: var(--primary-dark);
  font-family: var(--heading-font);
  font-size: 1.15rem;
  font-weight: 600;
  border-radius: 18px;
  padding: 15px 10px;
  background: #fff;
  transition: color 0.16s, background 0.16s;
  text-align: left;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--accent);
  background: var(--warm-beige);
}

@media (max-width: 990px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .cta-btn {
    margin-right: 16px;
  }
}
@media (max-width: 600px) {
  .mobile-menu {
    padding: 23px 12px 20px 9px;
  }
}

/* ======================
   HERO SECTION
====================== */
.hero {
  background: var(--organic-green);
  background-image: linear-gradient(135deg, #F6F2E5 85%, #6DA46B 100%);
  background-repeat: no-repeat;
  background-size: cover, cover;
  border-radius: 0 0 70px 70px / 0 0 60px 60px;
  min-height: 340px;
  margin-bottom: 60px;
  box-shadow: 0 6px 48px 0 rgba(35,103,59,0.06);
  display: flex;
  align-items: center;
}
.hero .container {
  display: flex;
  align-items: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
  max-width: 610px;
  margin-top: 26px;
  margin-bottom: 26px;
  z-index: 2;
}
.hero h1 {
  color: var(--primary-dark);
  max-width: 550px;
  font-size: 2.5rem;
}
.hero p {
  color: #273331;
  font-size: 1.18rem;
  margin-bottom: 18px;
}
@media (max-width: 768px) {
  .hero {
    min-height: 220px;
    border-radius: 0 0 36px 36px / 0 0 24px 24px;
    margin-bottom: 30px;
  }
  .hero .content-wrapper {
    max-width: 98vw;
    margin-top: 10px;
    margin-bottom: 10px;
    gap: 14px;
  }
  .hero h1 {
    font-size: 1.45rem;
  }
  .hero p {
    font-size: 1rem;
  }
}

/* ======================
   FLEX LAYOUT PATTERNS
====================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  background: #fff;
  margin-bottom: 20px;
  border-radius: 20px;
  box-shadow: 0 3px 16px 0 rgba(35,103,59,0.08);
  padding: 32px 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.17s, transform 0.14s;
}
.card:hover {
  box-shadow: 0 7px 26px 0 rgba(35,103,59,0.14);
  transform: translateY(-2px) scale(1.015);
}
.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, .content-grid, .features-grid, .team-list {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ======================
   FEATURE/PROCESS/STEPS
====================== */
.features-grid,
.steps-list,
.benefits-list,
.tips-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin-top: 12px;
  margin-bottom: 10px;
}
.features-grid li,
.steps-list li,
.benefits-list li,
.tips-list li {
  flex: 1 1 210px;
  background: #fff;
  box-shadow: 0 2px 10px 0 rgba(35,103,59,0.06);
  border-radius: 18px;
  padding: 28px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 200px;
  transition: box-shadow 0.18s;
  margin-bottom: 12px;
  border-left: 5px solid var(--organic-green);
}
.features-grid li:hover, .features-grid li:focus,
.steps-list li:hover, .steps-list li:focus,
.benefits-list li:hover, .benefits-list li:focus {
  box-shadow: 0 4px 18px 0 rgba(35,103,59,0.13);
  border-left-color: var(--accent);
}
.features-grid img, .steps-list img, .benefits-list img, .tips-list img {
  height: 38px;
  margin-bottom: 7px;
  border-radius: 12px;
  background: var(--warm-beige);
  padding: 5px 7px;
}
@media (max-width: 800px) {
  .features-grid li, .steps-list li, .benefits-list li, .tips-list li {
    min-width: 130px;
    padding: 18px 10px;
  }
}

/* ======================
   TEAM
====================== */
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.team-member {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(35,103,59,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px;
  gap: 8px;
  max-width: 260px;
}
.team-member img {
  height: 48px;
  margin-bottom: 8px;
  background: var(--warm-beige);
  border-radius: 16px;
  padding: 5px 9px;
}

/* ======================
   TESTIMONIALS
====================== */
.testimonials {
  background: var(--warm-beige);
  border-radius: 32px 32px 32px 32px / 22px 35px 35px 22px;
}
.testimonials .content-wrapper {
  gap: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(35,103,59,0.07);
  margin-bottom: 20px;
  border-left: 5px solid var(--accent);
  transition: box-shadow 0.16s;
}
.testimonial-card p {
  color: #273331;
  font-size: 1rem;
  font-style: italic;
}
.testimonial-card .review-details {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-dark);
  font-size: 1.02rem;
  font-family: var(--heading-font);
}
.testimonial-card .review-details span:first-child {
  color: var(--accent);
  letter-spacing: 0.08em;
  font-size: 1.23rem;
}

/* ======================
   CONTACT TEASER & SHORT
====================== */
.contact-teaser {
  background: var(--organic-green) !important;
  border-radius: 24px;
  color: #fff;
  margin-bottom: 56px;
  box-shadow: 0 4px 18px 0 rgba(35,103,59,0.07);
}
.contact-teaser h2,
.contact-teaser p {
  color: #fff;
}
.contact-short {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 24px 0 16px 0;
}
.contact-short img {
  height: 25px;
  background: #fff;
  padding: 2px 5px;
  border-radius: 9px;
}

/* ======================
   CARDS / LEGAL / GENERIC
====================== */
.legal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 16px 0 rgba(35, 103, 59, 0.06);
  padding: 36px 22px;
  margin-bottom: 44px;
}

/* ======================
   FOOTER
====================== */
footer {
  background: var(--primary-dark);
  color: #fff;
  padding: 36px 0 22px 0;
  border-top-right-radius: 40px;
  border-top-left-radius: 18px;
  margin-top: 60px;
}
footer span {
  color: white;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}
.footer-content > * {
  margin-bottom: 12px;
}
.footer-content img {
  height: 38px;
  margin-bottom: 12px;
  background: #fff;
  border-radius: 12px;
  padding: 2px 5px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-right: 24px;
}
.footer-nav a {
  color: #fff;
  font-family: var(--heading-font);
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--accent);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.99rem;
  color: #e5ece3;
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
  margin-top: 8px;
}
.footer-social img {
  height: 28px;
  background: #fff;
  border-radius: 6px;
  padding: 2px 5px;
}

@media (max-width: 950px) {
  .footer-content {
    flex-direction: column;
    gap: 22px;
  }
}

/* =============================
   PRICING TABLE/BADGES/FAQ
============================= */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  font-size: 1.02rem;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px 0 rgba(35,103,59,0.07);
  border-radius: 16px;
  overflow: hidden;
}
.pricing-table th {
  background: var(--primary);
  color: #fff;
  padding: 12px 10px;
  font-family: var(--heading-font);
  font-size: 1rem;
  font-weight: 600;
}
.pricing-table td {
  padding: 12px 10px;
  border-bottom: 1px solid #e7e7e7;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
.pricing-notes {
  margin-top: 8px;
  margin-bottom: 16px;
  padding-left: 20px;
  list-style: disc;
  color: var(--grey-text);
}
.discount-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}
.badge {
  background: var(--accent);
  color: #fff;
  font-family: var(--heading-font);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 18px;
  padding: 8px 15px;
  letter-spacing: 0.04em;
}
.discount-descriptions,
.next-steps {
  margin-top: 10px;
  padding-left: 20px;
  color: var(--grey-text);
  list-style: disc;
}
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(35,103,59,0.08);
  padding: 20px 16px;
  margin-bottom: 14px;
  transition: box-shadow 0.18s;
}
.faq-item:hover,
.faq-item:focus-within {
  box-shadow: 0 6px 20px 0 rgba(35,103,59,0.12);
}
.faq-item h2, .faq-item h3 {
  font-family: var(--heading-font);
  font-size: 1.16rem;
  color: var(--primary);
  margin-bottom: 6px;
}

/* ======================
   CTA BANNER
====================== */
.cta-banner {
  background: var(--accent) !important;
  color: #fff;
  border-radius: 36px;
  padding: 38px 22px;
  box-shadow: 0 2px 18px 0 rgba(238,160,12,0.14);
}
.cta-banner h2, .cta-banner p {
  color: #fff;
}
.cta-banner .cta-btn {
  background: #fff;
  color: var(--primary);
  margin-top: 18px;
  font-weight: bold;
}
.cta-banner .cta-btn:hover, .cta-banner .cta-btn:focus {
  background: var(--primary);
  color: #fff;
}

/* ======================
   MAP PLACEHOLDER
====================== */
.map-placeholder {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(35,103,59,0.06);
  padding: 16px 18px;
  margin-top: 16px;
}
.map-placeholder img {
  height: 70px;
  border-radius: 8px;
  background: var(--warm-beige);
  padding: 7px 10px;
  margin-right: 8px;
}
@media (max-width: 700px) {
  .map-placeholder {
    flex-direction: column;
    gap: 10px;
  }
}

/* ======================
   THANK YOU
====================== */
.thank-you {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 3px 18px 0 rgba(35,103,59,0.08);
  padding: 40px 25px 32px 25px;
  margin-bottom: 38px;
  text-align: left;
}

/* ======================
   RESPONSIVE HELPERS
====================== */
@media (max-width: 900px) {
  .header-bar {
    flex-direction: row;
    gap: 8px;
    padding: 14px 0 11px 0;
  }
  .container {
    max-width: 98vw;
    padding: 0 6px;
  }
  .content-wrapper {
    gap: 18px;
  }
}
@media (max-width: 600px) {
  .footer-content {
    flex-direction: column;
    gap: 12px;
  }
  .card, .legal, .thank-you, .cta-banner, .contact-teaser {
    padding: 17px 8px;
    border-radius: 12px;
  }
  .testimonials, .section {
    border-radius: 12px;
    padding: 18px 4px;
  }
  .map-placeholder {
    padding: 8px 4px;
    border-radius: 7px;
  }
}

/* ======================
   BUTTONS & UI EFFECTS
====================== */
button, .cta-btn {
  box-shadow: 0 1px 7px 0 rgba(35,103,59,0.08);
  transition: background 0.15s, color 0.14s, box-shadow 0.15s, outline 0.13s;
}
button:active, .cta-btn:active {
  box-shadow: 0 1px 3px 0 rgba(35,103,59,0.04);
}

/* ======================
   COOKIE CONSENT BANNER
====================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff8eb;
  box-shadow: 0 -4px 22px 0 rgba(35,103,59,0.13);
  border-top: 2px solid var(--accent);
  padding: 22px 16px 20px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 30px;
  z-index: 3000;
  transition: transform 0.26s cubic-bezier(.64,0,.45,1);
}
.cookie-banner.hide {
  transform: translateY(150%);
}
.cookie-banner__text {
  color: var(--primary-dark);
  font-size: 1.08rem;
  flex: 1 1 350px;
  max-width: 505px;
  margin-right: 26px;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 18px;
  padding: 9px 18px;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 1rem;
  margin-right: 3px;
  transition: background 0.17s, color 0.16s;
  cursor: pointer;
}
.cookie-btn.accept {
  background: var(--accent);
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: var(--primary);
  color: #fff;
}
.cookie-btn.reject {
  background: #fff;
  color: var(--error);
  border: 2px solid var(--error);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: var(--error);
  color: #fff;
}
.cookie-btn.settings {
  background: var(--warm-beige);
  color: var(--primary);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--primary);
  color: #fff;
}
@media (max-width: 680px) {
  .cookie-banner {
    flex-direction: column;
    gap: 13px;
    align-items: flex-start;
    padding: 14px 5px 8px 8px;
  }
  .cookie-banner__text {
    margin-right: 0;
    margin-bottom: 8px;
  }
}

/* ========================== 
   COOKIE MODAL
========================== */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(35, 103, 59, 0.16);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.23s;
  pointer-events: all;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal__dialog {
  background: #fffef9;
  border-radius: 24px;
  box-shadow: 0 10px 54px 0 rgba(35,103,59,0.25);
  max-width: 415px;
  width: 95vw;
  padding: 36px 22px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal__title {
  color: var(--primary-dark);
  font-size: 1.32rem;
  font-family: var(--heading-font);
  margin-bottom: 7px;
}
.cookie-modal__groups {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-group {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 9px 2px;
  border-radius: 14px;
  background: var(--secondary-bg);
}
.cookie-group .cookie-switch {
  margin-left: auto;
}
.cookie-group .cookie-switch[disabled] {
  opacity: 0.35;
  pointer-events: none;
}
.cookie-group label {
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  font-family: var(--heading-font);
}
.cookie-modal__actions {
  display: flex;
  flex-direction: row;
  gap: 11px;
  margin-top: 6px;
}
.cookie-modal__close {
  display: block;
  position: absolute;
  top: 12px;
  right: 13px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--primary);
  padding: 2px 8px;
  border-radius: 12px;
  cursor: pointer;
  transition: color 0.14s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  color: var(--accent);
}
.cookie-switch {
  width: 40px;
  height: 22px;
  background: var(--warm-beige);
  border-radius: 15px;
  position: relative;
  display: inline-block;
  transition: background 0.17s;
  vertical-align: middle;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-switch-slider {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 18px;
  height: 18px;
  background: var(--primary);
  border-radius: 50%;
  transition: transform 0.18s, background 0.15s;
}
.cookie-switch input:checked + .cookie-switch-slider {
  transform: translateX(17px);
  background: var(--accent);
}
.cookie-modal__groups small {
  color: var(--grey-text);
  font-weight: 400;
  font-size: 0.98rem;
}
@media (max-width: 480px) {
  .cookie-modal__dialog { padding: 14px 1px 15px 7px; }
  .cookie-modal__title { font-size: 1.08rem; }
}

/* ===============
   UTILITY CLASSES
================== */
.mt-2 { margin-top: 14px; }
.mb-2 { margin-bottom: 14px; }
.mb-3 { margin-bottom: 20px; }
.gap-16 { gap: 16px; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* ===============
   ANIMATIONS
================== */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  80% { opacity: 1; transform: translateY(-2px); }
  100% { opacity: 1; transform: translateY(0); }
}
.hero, .card, .cta-banner, .legal, .thank-you, .testimonials, .cookie-banner, .cookie-modal__dialog {
  animation: fadeInUp 0.6s cubic-bezier(.65,0,.32,1);
}

/* ============================
   ORGANIC SHAPES ACCENTS
============================ */
.section,
.card,
.cta-banner,
.legal,
.footer-content,
.testimonials,
.team-member,
.hero,
.contact-teaser {
  border-radius: 24px 44px 22px 45px / 22px 38px 32px 16px;
}
.features-grid li,
.benefits-list li,
.team-member,
.steps-list li {
  border-radius: 18px 20px 12px 24px / 14px 18px 22px 12px;
}
.contact-short img,
.footer-social img,
.map-placeholder img {
  border-radius: 16px 19px 7px 14px;
}

/* =============================
   ORGANIC/NATURAL TEXTURES
 ========================= */
.card, .features-grid li, .steps-list li, .benefits-list li, .testimonials, .cta-banner, .thank-you, .contact-teaser, .legal {
  background-image: repeating-linear-gradient(135deg, rgba(246,242,229,0.06) 0 2px, transparent 2px 24px), linear-gradient(#fff, #fff);
  background-repeat: repeat;
}

/* =============================
   MISC
 ========================= */
ul, ol {
  margin: 0 0 18px 24px;
}
li {
  margin-bottom: 6px;
}
table {
  width: 100%;
}
.section:last-child, .testimonials:last-child {
  margin-bottom: 0;
}

/* A11Y for visual focus */
a:focus, button:focus, .cta-btn:focus {
  outline: 2.5px solid var(--accent);
  outline-offset: 2.5px;
  z-index: 30;
}

/* =============================
   CUSTOM SCROLLBAR (OPTIONAL)
 ========================= */
body::-webkit-scrollbar {
  width: 10px;
  background: #F3F6FA;
}
body::-webkit-scrollbar-thumb {
  background: var(--organic-green);
  border-radius: 8px;
}

/* End of CSS */
