:root {
  --pink: #FF0083;
  --sand: #FEDBE8;
  --olive: #C6C7BB;
  --footer-dark: #181818;
  --bg: #fbfaf6;
  --surface: #ffffff;
  --text: #222124;
  --muted: #605c67;
  --border: #ded9cf;
  --accent: var(--pink);
  --accent-contrast: #ffffff;
  --max-width: 1080px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  height: auto;
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fffdf9 0%, var(--bg) 100%);
  line-height: 1.55;
  width: 100%;
  height: auto;
  overflow-x: hidden;
  overflow-y: auto;
}

body,
p,
h1 {
  word-break: normal;
  overflow-wrap: normal;
}

.container {
  margin: 0 auto;
  max-width: var(--max-width);
  padding: 0 1rem;
}

/* Global section flow safety */
main > section {
  height: auto;
  max-height: none;
  min-height: unset;
  overflow: visible;
}

/* Full-bleed utility for edge-to-edge color sections */
.full-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.section-hero,
.section-pink,
.section-footer-wrap {
  width: 100%;
}

/* NAVBAR */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--sand);
  border-bottom: none;
  box-shadow: none;
  outline: none;
  transition: transform 0.24s ease;
  will-change: transform;
}

.site-header::before,
.site-header::after {
  content: none;
  display: none;
  border: 0;
  box-shadow: none;
}

.nav-shell {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: 100%;
  max-width: min(1400px, 100%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--footer-dark);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand:hover,
.brand:focus-visible {
  opacity: 0.92;
  outline: none;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  object-fit: cover;
  object-position: center 20%;
  border: 1px solid rgba(24, 24, 24, 0.22);
  background: #fff;
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.nav-list > li {
  position: relative;
}

.nav-list a {
  display: inline-flex;
  align-items: center;
  padding: 0.52rem 0.78rem;
  border-radius: 999px;
  color: var(--footer-dark);
  text-decoration: none;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  background: rgba(24, 24, 24, 0.08);
  color: var(--footer-dark);
  outline: none;
}

.giftcard-link {
  position: relative;
  padding-right: 0.78rem;
  background: rgba(24, 24, 24, 0.08);
}

.giftcard-link:hover,
.giftcard-link:focus-visible {
  background: rgba(24, 24, 24, 0.14);
}

.giftcard-bow {
  display: none;
  position: absolute;
  top: -0.7rem;
  right: 0.04rem;
  width: 1.46rem;
  height: 1.08rem;
  pointer-events: none;
  z-index: 2;
  transform: none;
}

.giftcard-bow-svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.resources-menu {
  position: relative;
}

.resources-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.1rem;
}

.resources-toggle {
  display: none;
  border: 0;
  margin: 0;
  padding: 0.42rem 0.46rem;
  border-radius: 999px;
  background: transparent;
  color: var(--footer-dark);
  cursor: pointer;
  line-height: 1;
  font-size: 0.82rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.resources-toggle span {
  display: inline-block;
  transition: transform 0.2s ease;
}

.resources-toggle:hover,
.resources-toggle:focus-visible {
  background: rgba(24, 24, 24, 0.08);
  color: var(--footer-dark);
  outline: none;
}

.resources-menu.is-open .resources-toggle span {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.45rem);
  left: 0;
  margin: 0;
  padding: 0.35rem;
  list-style: none;
  min-width: 236px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.8rem;
  background: #2c3036;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.32);
  display: none;
  gap: 0.2rem;
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  width: 100%;
  padding: 0.52rem 0.62rem;
  border-radius: 0.55rem;
  color: #f4f1ec;
  font-size: 0.84rem;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

.resources-menu:hover .dropdown-menu,
.resources-menu:focus-within .dropdown-menu,
.resources-menu.is-open .dropdown-menu {
  display: grid;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.68rem 1.12rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: var(--pink);
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transition: filter 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--pink);
  color: #ffffff;
  filter: brightness(0.9);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 2.55rem;
  height: 2.55rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(24, 24, 24, 0.26);
  background: transparent;
  color: var(--footer-dark);
  font-size: 1.18rem;
  cursor: pointer;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(24, 24, 24, 0.08);
  outline: none;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(8, 10, 14, 0.62);
}

.nav-overlay[hidden] {
  display: none;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  width: min(88vw, 380px);
  height: 100dvh;
  padding: 1rem 1rem 1.25rem;
  background: #23262b;
  color: #f4f1ea;
  box-shadow: -18px 0 38px rgba(0, 0, 0, 0.3);
  transform: translateX(102%);
  transition: transform 0.25s ease;
  display: none;
  grid-template-rows: auto 1fr auto;
  gap: 0.9rem;
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

.mobile-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.mobile-drawer-brand {
  margin: 0;
  color: #f7f1e8;
  font-weight: 700;
}

.drawer-close {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: #f7f1e8;
  cursor: pointer;
  font-size: 1rem;
}

.drawer-close:hover,
.drawer-close:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  outline: none;
}

.mobile-nav {
  display: grid;
  gap: 0.3rem;
  align-content: start;
}

.mobile-nav > a,
.drawer-resources summary {
  color: #f1ece5;
  text-decoration: none;
  display: block;
  padding: 0.72rem 0.78rem;
  border-radius: 0.7rem;
  font-size: 0.96rem;
}

.mobile-nav > a:hover,
.mobile-nav > a:focus-visible,
.drawer-resources summary:hover,
.drawer-resources summary:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  outline: none;
}

.drawer-resources {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.72rem;
  overflow: hidden;
}

.drawer-resources summary {
  list-style: none;
  cursor: pointer;
}

.drawer-resources summary::-webkit-details-marker {
  display: none;
}

.drawer-submenu {
  display: grid;
  gap: 0.18rem;
  padding: 0.1rem 0.3rem 0.35rem;
}

.drawer-submenu a {
  color: #e6e0d8;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.56rem 0.55rem;
  border-radius: 0.56rem;
}

.drawer-submenu a:hover,
.drawer-submenu a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

.mobile-drawer-cta {
  width: 100%;
  border-radius: 999px;
  padding: 0.82rem 1rem;
  letter-spacing: 0.09em;
  font-size: 0.78rem;
  text-transform: uppercase;
}

body.drawer-open {
  overflow: hidden;
}

.section {
  padding: 4.3rem 0;
  border-bottom: 1px solid rgba(222, 217, 207, 0.5);
}

/* ABOUT PAGE */
.page {
  padding: 72px 0;
}

.page .container {
  max-width: 760px;
}

.page h1 {
  margin-bottom: 16px;
}

.page ul {
  margin-top: 18px;
}

/* HERO (MOBILE SANU STYLE) */
.hero--sanu {
  background: var(--sand);
  color: var(--footer-dark);
  padding: 72px 0 48px;
}

.section-hero {
  background: var(--sand);
}

.section-hero.full-bleed {
  background: var(--sand);
}

.hero-inner {
  display: grid;
}

.hero-copy {
  width: min(92vw, 42rem);
}

.hero-utility {
  display: inline-flex;
  align-items: center;
  min-height: 1.8rem;
  margin-bottom: 1.05rem;
  padding: 0.22rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(24, 24, 24, 0.22);
  background: rgba(255, 255, 255, 0.45);
  color: var(--footer-dark);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-title {
  margin: 0 0 0.95rem;
  font-family: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  font-size: clamp(1.85rem, 7vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
  text-wrap: balance;
  max-width: none;
  hyphens: none;
}

.hero-subtitle {
  margin: 1.1rem 0 1rem;
  max-width: none;
  font-size: clamp(1rem, 3.8vw, 1.25rem);
  line-height: 1.5;
  opacity: 0.9;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.62rem;
  margin: 1.2rem 0 1.15rem;
}

.hero-ctas .button {
  width: 100%;
  justify-content: center;
  border-radius: 999px;
  padding: 0.78rem 1.05rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-discover-button {
  display: none;
}

.hero-gift-package-button {
  display: none;
}

.hero--sanu .hero-ctas .button-primary {
  background: var(--pink);
  color: #ffffff;
  border: 1px solid var(--pink);
  transition: filter 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.hero--sanu .hero-ctas .button-primary:hover,
.hero--sanu .hero-ctas .button-primary:focus-visible {
  background: var(--pink);
  color: #ffffff;
  filter: brightness(0.9);
}

.hero--sanu .hero-ctas .button-secondary {
  background: transparent;
  color: var(--footer-dark);
  border-color: rgba(24, 24, 24, 0.34);
}

.hero--sanu .hero-ctas .button-secondary:hover,
.hero--sanu .hero-ctas .button-secondary:focus-visible {
  background: rgba(24, 24, 24, 0.08);
  color: var(--footer-dark);
}

.hero--sanu .hero-ctas .button-secondary.hero-gift-package-button {
  background: #F7F2EB;
  color: var(--footer-dark);
  border-color: rgba(24, 24, 24, 0.26);
}

.hero-giftcard-button {
  gap: 0.42rem;
  border-color: rgba(24, 24, 24, 0.3);
  background: rgba(255, 255, 255, 0.32);
}

.button-bow-icon {
  display: inline-flex;
  width: 1.2rem;
  height: 0.9rem;
  flex: 0 0 auto;
  transform: translateY(-0.02rem);
}

.button-bow-svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-trust {
  margin-top: 0.6rem;
  display: grid;
  gap: 0.55rem;
}

.hero--sanu .hero-trust li {
  color: rgba(24, 24, 24, 0.88);
}

.hero--sanu .hero-trust li::before {
  background: var(--pink);
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0 0 0.9rem;
}

h1 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

h2 {
  font-size: clamp(1.45rem, 2.2vw, 2.05rem);
}

h3 {
  font-size: 1.08rem;
}

p,
ul,
ol {
  margin: 0 0 1rem;
}

.note,
.fine-print {
  color: var(--muted);
  font-size: 0.92rem;
}

.subhead {
  color: var(--muted);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.25rem 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 0.55rem;
  padding: 0.62rem 0.9rem;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}

.button-primary {
  background: var(--accent);
  color: var(--accent-contrast);
}

.button-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

/* PACKAGES */
.packages-section .packages-intro {
  max-width: 64ch;
}

.packages-section .packages-note {
  margin-bottom: 0;
}

#packages .container {
  max-width: min(1680px, 96vw);
}

.packages-grid {
  margin-top: 1.45rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.05rem;
  align-items: start;
}

.packages-grid > .package-card {
  align-self: start;
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  min-height: auto;
  padding: 1.4rem;
  border-radius: 1.1rem;
  border: 1px solid #d5cec3;
  box-shadow: 0 10px 26px rgba(37, 34, 31, 0.06);
}

.package-card-featured {
  border-color: #c6b8a8;
  box-shadow: 0 14px 30px rgba(37, 34, 31, 0.1);
}

.package-card.is-featured {
  padding-top: 1.4rem;
}

.package-card.is-featured .package-title {
  padding-right: 0;
}

.package-card.is-featured .most-loved-badge {
  position: absolute;
  top: 10px;
  right: 16px;
  z-index: 2;
  margin: 0;
  pointer-events: none;
  white-space: nowrap;
}

.package-tag {
  align-self: flex-start;
  margin: 0;
  padding: 0.24rem 0.62rem;
  border-radius: 999px;
  border: 1px solid #d1c2b0;
  background: #f7efe7;
  color: #5c4a3f;
  font-size: 0.75rem;
  letter-spacing: 0.03em;
}

@media (max-width: 640px){
  .package-card.is-featured .package-title{
    padding-right: 0;
  }

  .package-card.is-featured .most-loved-badge{
    top: 10px;
    right: 12px;
    transform: scale(0.95);
  }

  .package-card.is-featured{
    padding-top: 1.4rem;
  }
}

.package-card-head {
  display: grid;
  gap: 0.55rem;
}

.package-name {
  margin: 0;
  font-size: clamp(1.2rem, 1.9vw, 1.48rem);
  line-height: 1.22;
}

.packages-section .pkgTitle {
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
}

.packages-section .pkgTitleLine1,
.packages-section .pkgTitleLine2 {
  display: block;
  white-space: normal;
  overflow-wrap: anywhere;
}

.packages-section .pkgTitleLine2 {
  margin-top: 6px;
}

.package-oneliner {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.package-list {
  margin: 0;
  display: block;
  flex: 0 0 auto;
}

.package-card > .package-oneliner + .package-list {
  margin-top: -0.7rem;
}

.package-list li + li {
  margin-top: 0.55rem;
}

.package-meta-block {
  display: grid;
  gap: 0;
}

.package-meta-block .package-oneliner:nth-child(3) {
  margin-top: 0.55rem;
}

.package-fine-print {
  margin-bottom: 0;
}

.package-button {
  align-self: flex-start;
  margin-top: 0.2rem;
  padding: 0.62rem 1.02rem;
  border-radius: 999px;
  border: 1px solid rgba(24, 24, 24, 0.2);
  background: var(--sand);
  color: var(--footer-dark);
  font-size: 0.77rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: filter 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.package-button:hover,
.package-button:focus-visible {
  background: var(--sand);
  color: var(--footer-dark);
  border-color: rgba(24, 24, 24, 0.32);
  filter: brightness(0.96);
}

/* EMPLOYERS */
.employers-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: start;
  gap: 2.15rem;
}

.employers-heading {
  margin: 0 0 1rem;
  font-family: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  font-size: clamp(1.85rem, 3vw, 2.7rem);
  line-height: 1.03;
  letter-spacing: 0.01em;
}

.employers-copy p {
  margin-bottom: 0.9rem;
  max-width: 63ch;
}

.employers-list {
  margin-top: 1.15rem;
  display: grid;
  gap: 0.55rem;
}

.employers-card {
  background: var(--surface);
  border: 1px solid #d8d0c5;
  border-radius: 1.15rem;
  padding: 1.25rem;
  display: grid;
  gap: 0.85rem;
  box-shadow: 0 14px 28px rgba(41, 38, 35, 0.08);
}

.employers-cta-card {
  position: relative;
  align-content: start;
}

.employers-cta-card .cta-ribbon{
  position: absolute;
  top: -14px;
  left: 18px;
  width: 44px;
  height: 28px;
  pointer-events: none;
  z-index: 2;
}

.employers-cta-card .cta-ribbon::before,
.employers-cta-card .cta-ribbon::after{
  content: "";
  position: absolute;
  top: 0;
  width: 22px;
  height: 22px;
  background: #FEDBE8;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 6px 14px 14px 14px;
  transform: rotate(20deg);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.employers-cta-card .cta-ribbon::before{
  left: 0;
}

.employers-cta-card .cta-ribbon::after{
  right: 0;
  transform: rotate(-20deg);
  border-radius: 14px 6px 14px 14px;
}

.employers-cta-card .cta-ribbon-dot{
  position: absolute;
  left: 50%;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #FF0083;
  border: 1px solid rgba(0, 0, 0, 0.14);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transform: translateX(-50%);
  z-index: 3;
}

.employers-card-title {
  margin: 0;
  font-size: clamp(1.18rem, 2vw, 1.46rem);
  line-height: 1.3;
}

.employers-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.employers-cta {
  margin-top: 0.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.68rem 1.08rem;
  border-radius: 999px;
  border: 1px solid #d2c2b1;
  background: #f6ecdf;
  color: #3d322c;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
}

.employers-cta:hover,
.employers-cta:focus-visible {
  background: #f8f0e6;
  color: #2d241f;
  border-color: #c8b5a1;
  outline: none;
}

.inline-list,
.stack-list,
.footer-links {
  list-style: none;
  padding: 0;
}

.inline-list {
  display: grid;
  gap: 0.45rem;
  margin-top: 1rem;
}

.inline-list li,
.stack-list li,
.footer-links li {
  position: relative;
  padding-left: 1.1rem;
}

.inline-list li::before,
.stack-list li::before,
.footer-links li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 999px;
  background: var(--accent);
}

.ordered {
  counter-reset: steps;
}

.ordered li {
  list-style: none;
}

.ordered li::before {
  content: counter(steps) ".";
  counter-increment: steps;
  color: var(--accent);
  background: none;
  width: auto;
  height: auto;
  top: 0;
  left: 0;
  font-weight: 700;
}

.grid {
  display: grid;
  gap: 1rem;
}

.cards-3 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.cards-5 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

/* WHY SECTION */
.why-section {
  background: #f6f2eb;
}

.why-heading {
  margin: 0 auto 0.35rem;
  text-align: center;
  font-family: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.why-sub {
  margin: 0 auto 1rem;
  max-width: 56ch;
  text-align: center;
  color: #5f5a51;
  font-size: clamp(0.95rem, 1.8vw, 1.08rem);
}

.why-intro {
  margin: 0 auto 2rem;
  max-width: 72ch;
  text-align: center;
  color: #4a453e;
  font-size: clamp(1.02rem, 1.9vw, 1.14rem);
  line-height: 1.72;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.why-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.08);
  text-align: center;
}

.why-card .why-icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.05);
  color: #4a6a75;
  flex: 0 0 auto;
  margin: 0 auto;
}

.why-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-card h3 {
  margin: 0;
  font-family: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  font-size: clamp(1.18rem, 1.45vw, 1.48rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.why-card p {
  margin: 0;
  max-width: 28ch;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.55;
  font-size: 0.97rem;
  word-break: normal;
  overflow-wrap: normal;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  align-self: center;
}

.why-card .why-footer {
  margin-top: auto;
}

/* DIFFERENCE SECTION */
.difference-section {
  background: #FEDBE8;
}

#resources {
  background: var(--olive);
}

.difference-panel {
  border-radius: 2rem;
  background: #f0ede6;
  border: 1px solid rgba(66, 58, 49, 0.08);
  padding: clamp(1.5rem, 4vw, 2.8rem);
}

.difference-header {
  max-width: 74ch;
  margin: 0 auto;
  text-align: center;
}

.difference-header h2 {
  margin: 0 0 0.85rem;
  font-family: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.difference-header p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.99rem, 1.5vw, 1.1rem);
  line-height: 1.64;
}

.difference-grid {
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.difference-item {
  min-width: 0;
  text-align: center;
  padding: 1.15rem 0.8rem 0.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}

.difference-icon {
  display: flex;
  justify-content: center;
}

.difference-icon-badge {
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e8dfd2;
  color: #4a6a75;
}

.difference-icon-badge svg {
  width: 1.45rem;
  height: 1.45rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.difference-item h3 {
  margin: 0;
  font-family: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  font-size: clamp(1.28rem, 1.95vw, 1.56rem);
  line-height: 1.18;
  letter-spacing: -0.008em;
  text-wrap: balance;
}

.difference-item p {
  margin: 0;
  max-width: 31ch;
  color: #4c4740;
  line-height: 1.62;
}

.card,
.resource-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  padding: 1rem;
}

/* TESTIMONIALS */
.testimonial-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -52%);
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 999px;
  border: 1px solid #d8d4cc;
  background: #ffffff;
  color: #2f333c;
  display: grid;
  place-items: center;
  font-size: 1.42rem;
  line-height: 1;
  box-shadow: 0 8px 20px rgba(26, 29, 35, 0.15);
  z-index: 6;
}

.testimonial-badge--image {
  padding: 0.14rem;
  overflow: hidden;
  background: transparent;
}

.testimonial-badge--image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  border-radius: inherit;
}

.testimonials-section #testimonials-title {
  text-align: center;
}

.testimonial-card--institution .testimonial-badge {
  display: grid;
  border: 1px solid #d8d4cc;
  background: #ffffff;
}

.testimonial-card--client .testimonial-icon {
  display: block;
}

.testimonials-carousel {
  margin-top: 1rem;
  padding: clamp(0.9rem, 2vw, 1.35rem);
  border: 1px solid #e4d6c7;
  border-radius: 1.2rem;
  background: #f6ecdf;
}

.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.testimonials-arrow {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: 1px solid #d6d3dc;
  background: #f6f6f7;
  color: #2d3138;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(27, 29, 35, 0.1);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.testimonials-arrow:hover,
.testimonials-arrow:focus-visible {
  background: #ffffff;
  transform: translateY(-1px);
  outline: none;
}

.testimonials-stage {
  position: relative;
  min-height: 25rem;
  padding: 0.5rem 0.5rem 0.75rem;
}

.testimonial-layer {
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  border-radius: 1rem;
  border: 1px solid #e7dacb;
  background: #faf3eb;
  box-shadow: 0 10px 24px rgba(28, 31, 36, 0.12);
}

.testimonial-layer-back {
  top: 2rem;
  bottom: 0.2rem;
  transform: rotate(-1.8deg);
}

.testimonial-layer-mid {
  top: 1.2rem;
  bottom: 0.45rem;
  transform: rotate(1.2deg);
}

.testimonial-card {
  position: absolute;
  inset: 0.55rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.28s ease, transform 0.28s ease;
  pointer-events: none;
  border-radius: 1rem;
  padding: clamp(1.05rem, 2.2vw, 1.65rem);
  box-shadow: 0 16px 34px rgba(26, 29, 35, 0.14);
  border-color: #d8d4cc;
}

.testimonial-card.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.testimonial-icon {
  margin: 0 0 0.55rem;
  font-size: 2rem;
  line-height: 1;
  color: #2f333c;
}

.testimonial-text {
  margin: 0 0 1.15rem;
  max-width: 40ch;
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  line-height: 1.6;
}

.testimonial-author {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 700;
}

.testimonial-role {
  margin: 0.12rem 0 0;
}

.featured {
  border-color: #8ba9b4;
  box-shadow: 0 0 0 1px rgba(31, 96, 114, 0.15);
}

.tag {
  margin: 0 0 0.6rem;
  display: inline-block;
  font-size: 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  padding: 0.2rem 0.5rem;
}

.mini-faq {
  display: grid;
  gap: 0.9rem;
  margin: 1rem 0;
}

.resource-block {
  margin-bottom: 1rem;
}

.resource-block--faq .faq-item {
  border-top: 1px dashed var(--border);
  padding: 0.82rem 0;
}

.resource-block--faq .faq-item:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.resource-block--faq .faq-item > summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.resource-block--faq .faq-item > summary::-webkit-details-marker {
  display: none;
}

.resource-block--faq .faq-item > summary::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  color: rgba(0, 0, 0, 0.72);
  font-size: 1rem;
  line-height: 1;
  flex: 0 0 auto;
}

.resource-block--faq .faq-item[open] > summary::after {
  content: "−";
}

.resource-block--faq .faq-answer {
  padding-top: 0.76rem;
  max-width: 74ch;
  line-height: 1.65;
}

.resource-block--faq .faq-answer p {
  margin: 0;
}

.resource-block--faq .faq-answer .stack-list {
  margin: 0.72rem 0 0;
  display: grid;
  gap: 0.45rem;
}

.resource-block--faq .faq-answer .stack-list li {
  line-height: 1.58;
}

.resource-block summary {
  cursor: pointer;
  font-weight: 600;
}

/* FOOTER */
.site-footer {
  margin-top: 0;
  padding: 0;
  background: var(--footer-dark);
  color: rgba(255, 255, 255, 0.92);
}

.footer-shell{
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 48px;
}

.footer-inner{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
  background: var(--footer-dark);
  border-radius: 48px;
  padding: 44px 48px;
}

.footer-inner .footer-cta-col {
  justify-self: auto;
  max-width: none;
}

.site-footer .container {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  background: var(--footer-dark);
  border-radius: 48px 48px 0 0;
  padding: 44px 48px;
}

.footer-col {
  min-width: 0;
}

.footer-brand {
  margin: 0;
  font-size: clamp(1.95rem, 3.8vw, 3rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
}

.footer-tagline {
  margin: 0.8rem 0 1.1rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
}

.footer-social-label {
  margin: 0 0 0.42rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 0.58rem;
  flex-wrap: wrap;
}

.footer-social-link {
  width: 2.08rem;
  height: 2.08rem;
  display: inline-grid;
  place-items: center;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.04);
  color: #f2eee8;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.footer-social-link svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.52);
  color: #fff;
  outline: none;
}

.social-icon {
  width: 1.84rem;
  height: 1.84rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  font-size: 0.64rem;
  letter-spacing: 0.04em;
}

.footer-title {
  margin: 0 0 0.75rem;
  color: #ece5dc;
  font-size: 0.98rem;
  font-weight: 600;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.46rem;
}

.footer-nav-list a {
  color: #f2eee8;
  text-decoration: none;
  opacity: 0.9;
}

.footer-nav-list a:hover,
.footer-nav-list a:focus-visible {
  opacity: 1;
  color: #fff;
  outline: none;
}

.footer-cta-title {
  max-width: 30ch;
  font-size: 1.06rem;
  line-height: 1.35;
}

.footer-cta-copy {
  margin: 0 0 0.72rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.55;
}

.footer-cta-copy + .footer-cta-copy {
  margin-bottom: 1rem;
}

.footer-whatsapp {
  margin: 0.85rem 0 1rem;
  color: #cec4b8;
}

.footer-whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(24, 24, 24, 0.2);
  padding: 0.7rem 1.14rem;
  background: var(--sand);
  color: var(--footer-dark);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: filter 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.footer-whatsapp-button:hover,
.footer-whatsapp-button:focus-visible {
  background: var(--sand);
  color: var(--footer-dark);
  border-color: rgba(24, 24, 24, 0.32);
  filter: brightness(0.96);
  outline: none;
}

@media (max-width: 900px){
  .site-footer{
    padding: 0;
  }
  .footer-shell{
    padding: 48px 24px;
  }
  .footer-inner{
    grid-template-columns: 1fr;
    gap: 28px;
    border-radius: 34px;
    padding: 28px 20px;
  }
  .site-footer .footer-grid{
    border-radius: 34px 34px 0 0;
    padding: 28px 20px;
  }
}

@media (max-width: 768px) {
  .hero--sanu {
    min-height: calc(100dvh - 78px);
    min-height: calc(100svh - 78px);
    padding: 48px 0 32px;
    display: flex;
    align-items: center;
  }

  .hero-inner {
    width: 100%;
  }

  .hero-copy {
    margin-inline: auto;
    text-align: center;
  }

  .hero-utility {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-title,
  .hero-subtitle {
    text-align: center;
  }

  .hero-title .hero-comma {
    display: none;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
  }

  .hero-ctas .hero-primary-availability,
  .hero-ctas .hero-giftcard-button {
    display: none;
  }

  .hero-ctas .hero-discover-button {
    display: inline-flex;
    width: min(100%, 330px);
    min-width: 0;
    flex: 0 0 auto;
  }

  .hero-ctas .hero-gift-package-button {
    display: inline-flex;
    width: auto;
    min-width: 200px;
    flex: 0 0 auto;
  }

  .hero-ctas .hero-discover-button,
  .hero-ctas .hero-gift-package-button {
    padding: 0.62rem 0.78rem;
    font-size: 0.69rem;
    letter-spacing: 0.03em;
    white-space: nowrap;
  }

  .hero-trust {
    display: grid;
    gap: 0.55rem;
    margin-top: 0.85rem;
  }

  .hero--sanu .hero-trust li {
    padding-left: 0;
    text-align: center;
  }

  .hero--sanu .hero-trust li::before {
    display: none;
  }

  .footer-shell {
    padding: 28px 18px;
  }

  .footer-inner,
  .footer-grid {
    gap: 18px;
    padding: 22px 18px;
    border-radius: 24px;
  }

  .footer-brand {
    font-size: 28px;
    line-height: 1.1;
  }

  .footer-tagline,
  .footer-cta-copy,
  .footer-whatsapp-button,
  .footer-social-label {
    font-size: 16px;
    line-height: 1.5;
  }

  .footer-social-links {
    gap: 10px;
  }

  .footer-whatsapp-button {
    padding: 12px 18px;
    border-radius: 999px;
  }
}

/* SUPPORT CHECKLIST SECTION */
.support-section{
  background: #FEDBE8;
  padding: clamp(56px, 6vw, 96px) 0;
}

.support-inner{
  max-width: 980px;
  margin: 0 auto;
}

.support-title{
  text-align: center;
  margin: 0 0 16px;
}

.support-lead{
  text-align: center;
  max-width: 58ch;
  margin: 0 auto 34px;
}

.support-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.support-list li{
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: start;
  line-height: 1.55;
}

.support-list li::before{
  content: "✓";
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 2px solid rgba(0, 0, 0, 0.18);
  background: rgba(255, 255, 255, 0.35);
  margin-top: 2px;
  font-weight: 700;
}

.support-list .support-note{
  opacity: 0.85;
}

.support-list .support-note::before{
  opacity: 0.55;
}

@media (max-width: 1100px) {
  .why-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .difference-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .why-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .why-card {
    padding: 24px 18px;
  }

  .difference-panel {
    border-radius: 1.35rem;
    padding: 1.2rem 1rem 1.3rem;
  }

  .difference-header h2 {
    font-size: clamp(1.48rem, 7vw, 1.88rem);
  }

  .difference-header p {
    font-size: 0.98rem;
  }

  .difference-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.75rem;
    margin-top: 1.2rem;
  }

  .difference-item {
    padding: 0.9rem 0.2rem 0.4rem;
    gap: 0.72rem;
  }
}

@media (max-width: 640px){
  .support-section{
    padding: 44px 0;
  }

  .support-lead{
    margin-bottom: 26px;
    padding: 0 8px;
  }

  .support-list{
    gap: 14px;
  }

  .support-list li{
    grid-template-columns: 30px 1fr;
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    min-height: 56svh;
    min-height: 56dvh;
    display: flex;
    align-items: center;
    padding: 1rem 0 0.7rem;
    border-bottom: 0;
  }

  .testimonials-section > .container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .testimonials-section #testimonials-title {
    margin-bottom: 0.65rem;
  }

  .testimonials-section .testimonials-carousel {
    margin-top: 0;
    padding: 0.86rem;
  }

  .testimonials-section .testimonials-stage {
    min-height: 18.5rem;
  }

  .testimonials-section .testimonial-badge {
    width: 2.2rem;
    height: 2.2rem;
    font-size: 1.22rem;
  }

  .site-footer-home-compact {
    min-height: 44svh;
    min-height: 44dvh;
    display: flex;
    align-items: center;
  }

  .site-footer-home-compact .footer-shell {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 18px 12px;
  }

  .site-footer-home-compact .footer-inner,
  .site-footer-home-compact .footer-grid {
    gap: 12px;
    padding: 18px 14px;
    border-radius: 18px;
  }
}


@media (min-width: 769px) {
  .testimonials-section {
    min-height: 56vh;
    display: flex;
    align-items: center;
  }

  .testimonials-section > .container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .site-footer-home-compact {
    min-height: 44vh;
    display: flex;
    align-items: center;
  }

  .site-footer-home-compact .footer-shell {
    width: 100%;
    display: flex;
    align-items: center;
  }

  .hero--sanu {
    padding: 86px 0 64px;
  }

  .hero-subtitle {
    font-size: 1.08rem;
  }

  .hero-ctas {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
  }

  .hero-ctas .button {
    width: auto;
  }
}

@media (min-width: 900px) {
  .hero-copy {
    width: min(50vw, 48rem);
  }
}

@media (min-width: 780px) {
  .packages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cards-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cards-5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
    gap: 2.5rem;
  }

  .footer-cta-col {
    justify-self: end;
    max-width: 320px;
  }
}

@media (min-width: 1120px) {
  .packages-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    transform: translate3d(0, 0, 0);
  }

  .site-header.nav-hidden-mobile {
    transform: translate3d(0, -110%, 0);
  }

  body.drawer-open .site-header {
    transform: translate3d(0, 0, 0);
  }

  body {
    padding-top: 78px;
  }

  .nav-shell {
    min-height: 78px;
    gap: 0.7rem;
  }

  .main-nav,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .mobile-drawer {
    display: grid;
  }
}


@media (min-width: 769px) and (max-width: 900px) {
  .testimonials-carousel {
    padding: 0.78rem;
    border-radius: 1rem;
  }

  .testimonials-controls {
    margin-bottom: 0.55rem;
  }

  .testimonials-arrow {
    width: 2.6rem;
    height: 2.6rem;
    font-size: 1.35rem;
  }

  .testimonials-stage {
    min-height: 22rem;
    padding: 0.36rem 0.2rem 0.42rem;
  }

  .testimonial-layer {
    left: 0.35rem;
    right: 0.35rem;
  }

  .testimonial-card {
    inset: 0.25rem;
  }
}


@media (prefers-reduced-motion: reduce) {
  .site-header {
    transition: none;
  }
}

@media (max-width: 980px) {
  .employers-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.3rem;
  }

  .employers-cta {
    width: 100%;
  }
}

@media (max-width: 640px){
  .employers-cta-card .cta-ribbon{
    top: -12px;
    left: 14px;
    transform: scale(0.9);
  }
}

/* WHY BENEFITS SECTION (SCOPED) */
.benefitsSection .container {
  max-width: min(1400px, 96vw);
}

.benefitsSection .benefitsGrid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
  grid-auto-rows: 1fr;
}

@media (max-width: 1100px) {
  .benefitsSection .benefitsGrid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .benefitsSection .benefitsGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 540px) {
  .benefitsSection .benefitsGrid {
    grid-template-columns: 1fr;
  }
}

.benefitsSection .benefitCard {
  padding: 26px 22px;
  border-radius: 28px;
  min-height: 420px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (max-width: 820px) {
  .benefitsSection .benefitCard {
    min-height: 380px;
  }
}

@media (max-width: 540px) {
  .benefitsSection .benefitCard {
    min-height: auto;
  }
}

.benefitsSection .benefitTitle {
  display: block;
  -webkit-line-clamp: unset;
  -webkit-box-orient: initial;
  overflow: visible;
  white-space: normal;
  text-overflow: unset;
  overflow-wrap: anywhere;
}

.benefitsSection .benefitText {
  display: block;
  -webkit-line-clamp: unset;
  -webkit-box-orient: initial;
  overflow: visible;
  white-space: normal;
  text-overflow: unset;
  overflow-wrap: anywhere;
  max-width: none;
  width: 100%;
}

/* ACCESSIBILITY WIDGET */
.a11y-widget {
  position: fixed;
  left: 0.5rem;
  bottom: 0.58rem;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
}

.a11y-trigger {
  width: auto;
  height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: none;
}

.a11y-trigger:hover,
.a11y-trigger:focus-visible {
  outline: none;
}

.a11y-trigger-icon {
  font-size: 1.7rem;
  line-height: 1;
}

.a11y-trigger-esc {
  padding: 0.16rem 0.52rem;
  border-radius: 999px;
  border: 1px solid rgba(154, 194, 222, 0.9);
  background: rgba(238, 248, 255, 0.96);
  color: #1d6a9c;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.a11y-backdrop {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(10, 18, 28, 0.28);
}

.a11y-backdrop[hidden] {
  display: none;
}

.a11y-dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 115;
  border-top: 1px solid rgba(187, 208, 226, 0.55);
  background: linear-gradient(180deg, rgba(43, 80, 110, 0.9) 0%, rgba(12, 32, 48, 0.94) 100%);
  padding: 0.42rem 0.48rem calc(0.56rem + env(safe-area-inset-bottom));
  box-shadow: 0 -16px 32px rgba(8, 15, 25, 0.38);
}

.a11y-dock[hidden] {
  display: none;
}

.a11y-dock-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
  margin-bottom: 0.4rem;
}

.a11y-hint {
  margin: 0;
  border-radius: 0.5rem;
  border: 1px solid rgba(115, 191, 238, 0.45);
  background: #4c9fd3;
  color: #f7fbff;
  font-size: 0.76rem;
  line-height: 1.25;
  padding: 0.34rem 0.62rem;
}

.a11y-dock-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
}

.a11y-dock-reset,
.a11y-dock-close {
  border: 1px solid rgba(188, 209, 226, 0.7);
  border-radius: 0.42rem;
  background: rgba(239, 247, 253, 0.95);
  color: #1f3648;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.35rem 0.52rem;
  cursor: pointer;
}

.a11y-dock-reset:hover,
.a11y-dock-reset:focus-visible,
.a11y-dock-close:hover,
.a11y-dock-close:focus-visible {
  background: #ffffff;
  outline: none;
}

.a11y-tools-wrap {
  max-height: min(38vh, 22rem);
  overflow-y: auto;
  overflow-x: hidden;
  padding-bottom: 0.1rem;
}

.a11y-tools {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9.2rem, 1fr));
  gap: 0.38rem;
}

.a11y-tool {
  position: relative;
  min-height: 4.95rem;
  border-radius: 0.6rem;
  border: 1px solid #ccd4dc;
  background: #f7f8fa;
  color: #232a33;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.24rem;
  text-align: center;
  padding: 0.38rem 0.28rem;
  cursor: pointer;
}

.a11y-tool:hover,
.a11y-tool:focus-visible {
  border-color: #6ab4e3;
  box-shadow: 0 0 0 2px rgba(106, 180, 227, 0.25);
  outline: none;
}

.a11y-tool-icon {
  font-size: 1.42rem;
  line-height: 1;
}

.a11y-tool-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.15;
}

.a11y-tool.is-active {
  border-color: #3fa0db;
  box-shadow: inset 0 0 0 2px rgba(63, 160, 219, 0.36);
}

.a11y-tool.is-active::after {
  content: "\2713";
  position: absolute;
  top: -0.42rem;
  right: -0.34rem;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 999px;
  border: 2px solid #ecf7ff;
  background: #51a9df;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1;
}

.a11y-fixed-tooltip {
  position: fixed;
  right: 0.72rem;
  bottom: calc(5.1rem + env(safe-area-inset-bottom));
  z-index: 118;
  max-width: min(24rem, calc(100vw - 1.4rem));
  border-radius: 0.54rem;
  border: 1px solid rgba(117, 189, 234, 0.5);
  background: rgba(40, 93, 128, 0.93);
  color: #f4f9ff;
  font-size: 0.79rem;
  line-height: 1.35;
  padding: 0.42rem 0.56rem;
}

body.a11y-dock-open .a11y-fixed-tooltip {
  bottom: calc(14rem + env(safe-area-inset-bottom));
}

html.a11y-highlight-links a {
  text-decoration: underline !important;
  text-decoration-thickness: 0.13em;
  text-underline-offset: 0.14em;
  box-shadow: 0 0 0 2px rgba(234, 15, 139, 0.24);
  border-radius: 0.2rem;
}

html.a11y-highlight-titles :is(h1, h2, h3, h4, h5, h6) {
  outline: 2px dashed rgba(56, 165, 226, 0.88);
  outline-offset: 0.12em;
  background: rgba(56, 165, 226, 0.12);
}

html.a11y-readable-fonts body,
html.a11y-readable-fonts button,
html.a11y-readable-fonts input,
html.a11y-readable-fonts select,
html.a11y-readable-fonts textarea {
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif !important;
}

html.a11y-stop-blinks *,
html.a11y-stop-blinks *::before,
html.a11y-stop-blinks *::after {
  animation-duration: 0.001ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.001ms !important;
  scroll-behavior: auto !important;
}

html.a11y-keyboard-nav *:focus {
  outline: 3px solid rgba(80, 170, 228, 0.95) !important;
  outline-offset: 2px !important;
}

html.a11y-mode-monochrome {
  filter: grayscale(1);
}

html.a11y-mode-sepia {
  filter: sepia(0.88) saturate(1.02) contrast(1.02);
}

html.a11y-mode-high-contrast {
  filter: contrast(1.34) saturate(1.08);
}

html.a11y-mode-invert {
  filter: invert(1) hue-rotate(180deg);
}

html.a11y-mode-black-yellow body {
  background: #050505 !important;
  color: #f7ed2f !important;
}

html.a11y-mode-black-yellow :is(h1, h2, h3, h4, h5, h6, p, span, li, strong, small) {
  color: #f7ed2f !important;
}

html.a11y-mode-black-yellow a {
  color: #2fd9ff !important;
  text-decoration: underline !important;
}

html.a11y-cursor-white *,
html.a11y-cursor-white a,
html.a11y-cursor-white button,
html.a11y-cursor-white input,
html.a11y-cursor-white textarea,
html.a11y-cursor-white select {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28'%3E%3Ccircle cx='10' cy='10' r='7' fill='%23ffffff' stroke='%23000000' stroke-width='2'/%3E%3C/svg%3E") 10 10, auto !important;
}

html.a11y-cursor-black *,
html.a11y-cursor-black a,
html.a11y-cursor-black button,
html.a11y-cursor-black input,
html.a11y-cursor-black textarea,
html.a11y-cursor-black select {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28'%3E%3Ccircle cx='10' cy='10' r='7' fill='%23000000' stroke='%23ffffff' stroke-width='2'/%3E%3C/svg%3E") 10 10, auto !important;
}

html.a11y-zoom-fallback body {
  transform: scale(var(--a11y-page-scale, 1));
  transform-origin: top center;
  width: calc(100% / var(--a11y-page-scale, 1));
}

@media (max-width: 1024px) {
  .a11y-tools {
    grid-template-columns: repeat(auto-fit, minmax(8.1rem, 1fr));
  }

  .a11y-tool {
    min-height: 4.65rem;
  }

  .a11y-tool-label {
    font-size: 0.53rem;
  }
}

@media (max-width: 768px) {
  .a11y-widget {
    left: 0.42rem;
    bottom: 0.48rem;
    gap: 0.28rem;
  }

  .a11y-trigger-icon {
    font-size: 1.55rem;
  }

  .a11y-trigger-esc {
    font-size: 0.54rem;
    padding: 0.13rem 0.44rem;
  }

  .a11y-dock {
    padding: 0.34rem 0.34rem calc(0.48rem + env(safe-area-inset-bottom));
  }

  .a11y-dock-head {
    flex-wrap: wrap;
  }

  .a11y-hint {
    width: 100%;
    font-size: 0.68rem;
    padding: 0.28rem 0.44rem;
  }

  .a11y-tools-wrap {
    max-height: min(48vh, 23rem);
  }

  .a11y-tools {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.32rem;
  }

  .a11y-tool {
    min-height: 4.3rem;
    border-radius: 0.54rem;
    padding: 0.34rem 0.18rem;
  }

  .a11y-tool-icon {
    font-size: 1.24rem;
  }

  .a11y-tool-label {
    font-size: 0.48rem;
  }

  .a11y-fixed-tooltip {
    right: 0.48rem;
    left: 0.48rem;
    max-width: none;
    bottom: calc(4.7rem + env(safe-area-inset-bottom));
    font-size: 0.72rem;
  }

  body.a11y-dock-open .a11y-fixed-tooltip {
    bottom: calc(16.8rem + env(safe-area-inset-bottom));
  }
}
