.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
  }
  .fill-icon {
    font-variation-settings: 'FILL' 1;
  }
  ::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }
  ::-webkit-scrollbar-track {
    background: transparent;
  }
  ::-webkit-scrollbar-thumb {
    background-color: rgba(27, 77, 62, 0.3);
    border-radius: 9999px;
    border: 2px solid transparent;
    background-clip: content-box;
  }
  ::-webkit-scrollbar-thumb:hover {
    background-color: rgba(27, 77, 62, 0.7);
  }
  * {
    scrollbar-width: thin;
    scrollbar-color: rgba(27, 77, 62, 0.3) transparent;
  }
  .no-scrollbar::-webkit-scrollbar {
    display: none !important;
  }
  .no-scrollbar {
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
  }
  .hero-overlay-light {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.12) 45%, rgba(250, 250, 250, 0.95) 100%),
                linear-gradient(90deg, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.15) 55%, rgba(255, 255, 255, 0.45) 100%);
  }
  .glass-header-light {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.08);
  }
  .glass-badge-light {
    background: rgba(255, 255, 255, 0.95);
  }

/* Focus-visible state for accessibility (WCAG AA) */
*:focus-visible {
  outline: 2px solid #1b4d3e !important;
  outline-offset: 2px !important;
}

/* Ensure mobile form controls have font-size >= 16px to prevent iOS Safari auto-zoom */
input, select, textarea {
  font-size: 16px !important;
}

/* Content visibility optimization for smooth scrolling */
section {
  content-visibility: auto;
  contain-intrinsic-size: 1px 500px;
}


/* Enhanced Text & Placeholder Contrast for WCAG AA (>= 4.5:1) */
::placeholder {
  color: #525252 !important;
  opacity: 1 !important;
}
.text-stone-500 {
  color: #44403c !important;
}

/* FAQ Accordion Pure CSS Grid Transition (Zero Twitching) */
.faq-content-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 350ms cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-content-wrapper.is-open {
  grid-template-rows: 1fr;
}
.faq-content-inner {
  overflow: hidden;
}
