:root {
  --uh-navy: #062942;
  --uh-navy-deep: #031f35;
  --uh-green: #079968;
  --uh-green-dark: #067653;
  --uh-mint: #eaf8f3;
  --uh-blue-soft: #eff7fb;
  --uh-text: #17354a;
  --uh-muted: #5d7282;
  --uh-line: #d7e5ec;
  --uh-white: #fff;
  --uh-shadow: 0 18px 48px rgba(3, 37, 60, 0.09);
  --uh-shadow-sm: 0 10px 28px rgba(3, 37, 60, 0.07);
  --uh-radius: 28px;
  --uh-radius-md: 20px;
  --uh-radius-sm: 14px;
}

html {
  scroll-behavior: smooth;
}

.utile-hub-page {
  color: var(--uh-text);
  background: #fff;
  overflow-x: clip;
}

.utile-hub-page main {
  overflow: clip;
}

.uh-container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.uh-skip {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: #fff;
  background: var(--uh-navy-deep);
  border-radius: 10px;
  transform: translateY(-160%);
}

.uh-skip:focus {
  transform: translateY(0);
}

.uh-eyebrow,
.uh-card-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--uh-green-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.uh-eyebrow::before {
  width: 24px;
  height: 2px;
  content: "";
  background: #43d7a6;
}

.uh-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: #688093;
  font-size: 0.86rem;
}

.uh-breadcrumb a {
  color: var(--uh-green-dark);
}

.uh-hero {
  position: relative;
  padding: 58px 0 62px;
  background:
    radial-gradient(circle at 9% 12%, rgba(53, 211, 164, 0.14), transparent 25%),
    linear-gradient(145deg, #f9fdfc 0%, #f1faf7 48%, #eef7fb 100%);
}

.uh-hero::after {
  position: absolute;
  right: -140px;
  bottom: -220px;
  width: 520px;
  height: 520px;
  content: "";
  border: 1px solid rgba(7, 153, 104, 0.12);
  border-radius: 50%;
}

.uh-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
  gap: clamp(44px, 7vw, 92px);
  align-items: center;
}

.uh-hero h1 {
  max-width: 690px;
  margin: 17px 0 18px;
  color: var(--uh-navy-deep);
  font-size: clamp(2.65rem, 5vw, 4.75rem);
  line-height: 0.98;
  letter-spacing: -0.058em;
}

.uh-hero__lead {
  max-width: 640px;
  margin: 0;
  color: #405d70;
  font-size: clamp(1.04rem, 1.8vw, 1.28rem);
  line-height: 1.68;
}

.uh-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
}

.uh-btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.uh-btn:hover {
  transform: translateY(-2px);
}

.uh-btn--primary {
  color: #fff;
  background: var(--uh-green);
  box-shadow: 0 12px 26px rgba(7, 153, 104, 0.22);
}

.uh-btn--primary:hover {
  color: #fff;
  background: var(--uh-green-dark);
}

.uh-btn--secondary {
  color: var(--uh-navy);
  background: #fff;
  border-color: #bfd2dc;
}

.uh-btn--secondary:hover {
  color: var(--uh-navy);
  border-color: var(--uh-green);
  box-shadow: var(--uh-shadow-sm);
}

.uh-micro-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
  color: #315469;
  font-size: 0.9rem;
  font-weight: 750;
}

.uh-micro-benefits span {
  color: var(--uh-green);
}

.uh-updated {
  margin: 17px 0 0;
  color: #718696;
  font-size: 0.8rem;
}

.uh-dashboard {
  position: relative;
  min-width: 0;
  max-width: 100%;
  padding: 22px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(7, 153, 104, 0.34), transparent 42%),
    var(--uh-navy-deep);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 32px;
  box-shadow: 0 30px 80px rgba(2, 35, 58, 0.22);
}

.uh-dashboard::before {
  position: absolute;
  z-index: -1;
  inset: 22px -18px -18px 28px;
  content: "";
  background: #c8eee1;
  border-radius: 30px;
}

.uh-dashboard__top,
.uh-dashboard__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.uh-dashboard__status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.82rem;
  font-weight: 750;
}

.uh-dashboard__status i {
  width: 8px;
  height: 8px;
  background: #4de0b2;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(77, 224, 178, 0.13);
}

.uh-dashboard__search {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  margin: 26px 0 18px;
  color: #b8ccd8;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 13px;
}

.uh-dashboard__search-wrap,
.uh-dashboard__menu-wrap {
  position: relative;
  min-width: 0;
}

.uh-dashboard .sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
}

.uh-dashboard__search svg {
  flex: 0 0 auto;
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.uh-dashboard__search input {
  width: 100%;
  min-width: 0;
  min-height: 46px;
  padding: 0;
  color: #fff;
  font: inherit;
  background: transparent;
  border: 0;
  outline: 0;
}

.uh-dashboard__search input::placeholder {
  color: #b8ccd8;
  opacity: 1;
}

.uh-dashboard__search:focus-within {
  border-color: #75e5c1;
  box-shadow: 0 0 0 3px rgba(117, 229, 193, 0.18);
}

.uh-dashboard__search > button {
  display: grid;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  color: #d9fff2;
  font-size: 1.35rem;
  background: transparent;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
}

.uh-dashboard__search > button[hidden] {
  display: none;
}

.uh-dashboard__search > button:hover,
.uh-dashboard__search > button:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.uh-dashboard__menu-button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  color: #d9fff2;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  cursor: pointer;
}

.uh-dashboard__menu-button .semantic-icon {
  width: 21px;
  height: 21px;
}

.uh-dashboard__menu-button:hover,
.uh-dashboard__menu-button:focus-visible,
.uh-dashboard__menu-button[aria-expanded="true"] {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(117, 229, 193, 0.58);
}

.uh-dashboard__menu {
  position: absolute;
  z-index: 25;
  top: calc(100% + 9px);
  right: 0;
  display: grid;
  width: min(270px, calc(100vw - 54px));
  padding: 8px;
  color: var(--uh-navy-deep);
  background: #fff;
  border: 1px solid #d7e6e2;
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(2, 35, 58, 0.24);
}

.uh-dashboard__menu[hidden] {
  display: none;
}

.uh-dashboard__menu a {
  min-height: 44px;
  padding: 11px 12px;
  color: var(--uh-navy-deep);
  font-size: 0.86rem;
  font-weight: 750;
  text-decoration: none;
  border-radius: 9px;
}

.uh-dashboard__menu a:hover,
.uh-dashboard__menu a:focus-visible {
  color: var(--uh-green-dark);
  background: var(--uh-mint);
}

.uh-dashboard__results-panel {
  position: absolute;
  z-index: 24;
  top: calc(100% - 10px);
  right: 0;
  left: 0;
  max-height: min(420px, calc(100vh - 120px));
  padding: 10px;
  overflow-y: auto;
  color: var(--uh-navy-deep);
  background: #fff;
  border: 1px solid #d7e6e2;
  border-radius: 14px;
  box-shadow: 0 22px 54px rgba(2, 35, 58, 0.25);
}

.uh-dashboard__results-panel[hidden] {
  display: none;
}

.uh-dashboard__results-status {
  margin: 0;
  padding: 3px 5px 8px;
  color: #647d8d;
  font-size: 0.74rem;
}

.uh-dashboard__results {
  display: grid;
  gap: 5px;
}

.uh-dashboard__result,
.uh-dashboard__popover-link,
.uh-dashboard__recommendation {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 8px;
  color: var(--uh-navy-deep);
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 11px;
}

.uh-dashboard__result:hover,
.uh-dashboard__result:focus-visible,
.uh-dashboard__result.is-selected,
.uh-dashboard__popover-link:hover,
.uh-dashboard__popover-link:focus-visible {
  color: var(--uh-navy-deep);
  background: #effaf6;
  border-color: #cbe9de;
  outline: none;
}

.uh-resource-result__icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--uh-green-dark);
  background: #eaf8f2;
  border: 1px solid rgba(18, 135, 91, 0.14);
  border-radius: 11px;
}

.uh-resource-result__icon .semantic-icon {
  width: 21px;
  height: 21px;
}

.uh-resource-result__copy {
  display: grid;
  min-width: 0;
}

.uh-resource-result__copy small {
  color: #6c8392;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.uh-resource-result__copy strong {
  overflow: hidden;
  font-size: 0.86rem;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.uh-resource-result__copy > span {
  overflow: hidden;
  color: #607687;
  font-size: 0.74rem;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.uh-resource-result__arrow {
  display: grid;
  place-items: center;
  color: #668293;
}

.uh-resource-result__arrow .semantic-icon {
  width: 17px;
  height: 17px;
}

.uh-dashboard mark,
.uh-search-result mark {
  color: inherit;
  background: #d8f4e9;
  border-radius: 3px;
}

.uh-dashboard__empty {
  padding: 14px 10px 9px;
  text-align: center;
}

.uh-dashboard__empty p {
  margin: 0 0 10px;
  color: #526b7a;
  font-size: 0.82rem;
}

.uh-dashboard__empty a,
.uh-dashboard__all-results {
  color: var(--uh-green-dark);
  font-size: 0.8rem;
  font-weight: 800;
}

.uh-dashboard__all-results {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 9px 7px 4px;
}

.uh-dashboard__grid {
  display: grid;
  grid-template-columns: 1fr 98px;
  gap: 12px;
}

.uh-dashboard__feature {
  grid-row: span 2;
  display: flex;
  min-height: 206px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(155deg, #0aa873, #087c68);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.uh-dashboard__feature:hover,
.uh-dashboard__feature:focus-visible {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.46);
  box-shadow: 0 18px 34px rgba(1, 38, 46, 0.25);
  outline: 3px solid rgba(117, 229, 193, 0.45);
  outline-offset: 3px;
  transform: translateY(-2px);
}

.uh-dashboard__feature span {
  margin-bottom: auto;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.uh-dashboard__feature strong {
  max-width: 260px;
  font-size: 1.35rem;
  line-height: 1.15;
}

.uh-dashboard__feature small {
  margin-top: 9px;
  color: #d9fff2;
}

.uh-dashboard__feature b {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  min-height: 44px;
  margin-top: 20px;
  color: #fff;
  font-size: 0.83rem;
}

.uh-dashboard__mini {
  display: grid;
  min-height: 97px;
  place-content: center;
  color: #12374c;
  font: inherit;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.uh-dashboard__mini:hover,
.uh-dashboard__mini:focus-visible,
.uh-dashboard__mini[aria-expanded="true"] {
  border-color: #75dcb9;
  box-shadow: 0 12px 26px rgba(2, 35, 58, 0.2);
  outline: 3px solid rgba(117, 229, 193, 0.35);
  outline-offset: 2px;
  transform: translateY(-2px);
}

.uh-dashboard__mini span {
  color: var(--uh-green-dark);
  font-size: 1.6rem;
  font-weight: 850;
}

.uh-dashboard__mini small {
  margin-top: 3px;
  color: #607687;
}

.uh-dashboard__footer {
  gap: 8px;
  margin-top: 16px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.uh-dashboard__footer button {
  display: inline-flex;
  flex: 1 0 auto;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px 10px;
  color: #bcd0dc;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 750;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
}

.uh-dashboard__footer button:hover,
.uh-dashboard__footer button:focus-visible,
.uh-dashboard__footer button.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(117, 229, 193, 0.32);
}

.uh-dashboard__footer button:focus-visible {
  outline: 2px solid #75e5c1;
  outline-offset: 2px;
}

.uh-dashboard__footer i {
  width: 9px;
  height: 9px;
  border-radius: 3px;
}

.uh-dashboard__footer .is-auto { background: #3acfa2; }
.uh-dashboard__footer .is-home { background: #63a7d2; }
.uh-dashboard__footer .is-guide { background: #f4c462; }

.uh-dashboard__recommendations {
  display: grid;
  min-width: 0;
  min-height: 52px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin-top: 12px;
}

.uh-dashboard__recommendation {
  grid-template-columns: 30px minmax(0, 1fr);
  min-height: 50px;
  padding: 7px;
  color: #dff8ef;
  background: rgba(255, 255, 255, 0.065);
  border-color: rgba(255, 255, 255, 0.08);
}

.uh-dashboard__recommendation .uh-resource-result__icon {
  width: 30px;
  height: 30px;
  color: #87e4c4;
  background: rgba(117, 229, 193, 0.1);
  border-color: rgba(117, 229, 193, 0.2);
  border-radius: 9px;
}

.uh-dashboard__recommendation .uh-resource-result__icon .semantic-icon {
  width: 17px;
  height: 17px;
}

.uh-dashboard__recommendation .uh-resource-result__copy small,
.uh-dashboard__recommendation .uh-resource-result__copy > span,
.uh-dashboard__recommendation .uh-resource-result__arrow {
  display: none;
}

.uh-dashboard__recommendation .uh-resource-result__copy strong {
  color: #fff;
  font-size: 0.75rem;
}

.uh-dashboard__recommendation:hover,
.uh-dashboard__recommendation:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(117, 229, 193, 0.4);
  outline: 2px solid rgba(117, 229, 193, 0.55);
  outline-offset: 1px;
}

.uh-dashboard__popover {
  position: absolute;
  z-index: 23;
  right: 22px;
  left: 22px;
  top: 158px;
  max-height: 360px;
  padding: 12px;
  overflow-y: auto;
  color: var(--uh-navy-deep);
  background: #fff;
  border: 1px solid #d7e6e2;
  border-radius: 16px;
  box-shadow: 0 22px 54px rgba(2, 35, 58, 0.28);
}

.uh-dashboard__popover[hidden] {
  display: none;
}

.uh-dashboard__popover-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 5px 8px;
}

.uh-dashboard__popover-head strong {
  font-size: 0.92rem;
}

.uh-dashboard__popover-head button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  color: #536d7d;
  font-size: 1.35rem;
  background: #f2f7f5;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
}

.uh-dashboard__popover-link {
  grid-template-columns: 38px minmax(0, 1fr) 18px;
}

.uh-dashboard__noscript {
  margin: 12px 0 0;
  padding: 10px;
  color: #dff8ef;
  font-size: 0.78rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}

.uh-dashboard__noscript a {
  color: #fff;
}

.utile-hub-page.resource-center-search-open .whatsapp-floating {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.uh-section {
  padding: 50px 0;
}

.uh-section-intro {
  max-width: 720px;
  margin-bottom: 34px;
}

.uh-section-intro h2 {
  margin: 12px 0 11px;
  color: var(--uh-navy-deep);
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.uh-section-intro p {
  max-width: 680px;
  margin: 0;
  color: var(--uh-muted);
  line-height: 1.7;
}

.uh-section-intro--compact {
  margin-bottom: 22px;
}

.uh-section-intro--row {
  display: flex;
  max-width: none;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.uh-section-intro--row > div:first-child {
  max-width: 730px;
}

.uh-search-section {
  position: relative;
  z-index: 3;
  margin-top: -28px;
}

.uh-search-panel {
  padding: clamp(25px, 4vw, 42px);
  background: #fff;
  border: 1px solid var(--uh-line);
  border-radius: var(--uh-radius);
  box-shadow: var(--uh-shadow);
}

.uh-search-box {
  position: relative;
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  background: #f8fbfc;
  border: 1px solid #bcd1dc;
  border-radius: 16px;
}

.uh-search-box:focus-within {
  border-color: var(--uh-green);
  box-shadow: 0 0 0 4px rgba(7, 153, 104, 0.12);
}

.uh-search-box svg {
  width: 23px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--uh-green-dark);
  stroke-width: 1.8;
}

.uh-search-box input {
  width: 100%;
  min-width: 0;
  height: 54px;
  padding: 0;
  color: var(--uh-navy);
  background: transparent;
  border: 0;
  outline: 0;
  font: inherit;
}

.uh-search-box button {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  color: var(--uh-navy);
  background: transparent;
  border: 0;
  border-radius: 10px;
  font-size: 1.45rem;
  cursor: pointer;
}

.uh-filter-row {
  display: flex;
  gap: 8px;
  padding: 4px;
  margin: 18px 0 12px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.uh-filter-row button {
  min-height: 44px;
  flex: 0 0 auto;
  padding: 8px 15px;
  color: #496477;
  background: #f2f7f9;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 750;
  cursor: pointer;
}

.uh-filter-row button.is-active {
  color: #fff;
  background: var(--uh-navy);
}

.uh-search-status,
.uh-glossary-status {
  min-height: 22px;
  margin: 9px 0;
  color: var(--uh-muted);
  font-size: 0.87rem;
}

.uh-search-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.uh-search-result {
  display: grid;
  min-height: 88px;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 15px;
  color: var(--uh-text);
  background: #fbfdfd;
  border: 1px solid var(--uh-line);
  border-radius: 15px;
  text-decoration: none;
}

.uh-search-result:hover {
  color: var(--uh-text);
  border-color: #8dcbb7;
  box-shadow: var(--uh-shadow-sm);
}

.uh-search-result__type {
  display: inline-flex;
  min-width: 76px;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  color: var(--uh-green-dark);
  background: var(--uh-mint);
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 800;
}

.uh-search-result strong {
  display: block;
  color: var(--uh-navy-deep);
  font-size: 0.96rem;
}

.uh-search-result small {
  display: block;
  margin-top: 4px;
  color: var(--uh-muted);
}

.uh-search-result mark {
  color: inherit;
  background: #fff0a8;
  border-radius: 2px;
}

.uh-search-empty {
  padding: 18px;
  color: #714600;
  background: #fff8df;
  border-radius: 14px;
}

.uh-text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  color: var(--uh-green-dark);
  font-weight: 800;
  text-decoration: none;
}

.uh-tools {
  padding-top: 72px;
}

.uh-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.uh-tool-card {
  position: relative;
  display: flex;
  min-height: 260px;
  flex-direction: column;
  padding: 25px;
  background: #fff;
  border: 1px solid var(--uh-line);
  border-radius: var(--uh-radius-md);
  box-shadow: var(--uh-shadow-sm);
}

.uh-tool-card--featured {
  grid-column: span 2;
  display: grid;
  min-height: 250px;
  grid-template-columns: 88px 1fr;
  gap: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 12%, rgba(61, 222, 174, 0.25), transparent 30%),
    var(--uh-navy-deep);
  border-color: transparent;
}

.uh-tool-card__icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 24px;
  color: var(--uh-green-dark);
  background: var(--uh-mint);
  border: 1px solid rgba(18, 135, 91, 0.16);
  border-radius: 14px;
  font-weight: 900;
}

.uh-tool-card--featured .uh-tool-card__icon {
  width: 48px;
  height: 48px;
  margin: 0;
  color: #fff;
  background: rgba(66, 218, 174, 0.16);
  border: 1px solid rgba(104, 232, 194, 0.3);
}

.uh-tool-card h3,
.uh-resource-card h3 {
  margin: 12px 0 9px;
  color: var(--uh-navy-deep);
  font-size: 1.35rem;
  line-height: 1.2;
}

.uh-tool-card--featured h3,
.uh-tool-card--featured p {
  color: #fff;
}

.uh-tool-card p,
.uh-resource-card p {
  margin: 0;
  color: var(--uh-muted);
  line-height: 1.65;
}

.uh-tool-card > a,
.uh-tool-card > div + a,
.uh-resource-card > a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding-top: 18px;
  color: var(--uh-green-dark);
  font-weight: 800;
  text-decoration: none;
}

.uh-tool-card--featured > a {
  grid-column: 2;
  color: #69e4bd;
}

.uh-tools-grid > .uh-tool-card:last-child {
  grid-column: 1 / -1;
  min-height: 150px;
  display: grid;
  grid-template-columns: 64px 110px minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  column-gap: 22px;
  row-gap: 8px;
  align-items: center;
}

.uh-tools-grid > .uh-tool-card:last-child .uh-tool-card__icon {
  grid-column: 1;
  grid-row: 1 / 3;
  margin-bottom: 0;
}

.uh-tools-grid > .uh-tool-card:last-child .uh-card-label {
  grid-column: 2;
  grid-row: 1;
}

.uh-tools-grid > .uh-tool-card:last-child h3 {
  grid-column: 3;
  grid-row: 1;
  margin: 0;
}

.uh-tools-grid > .uh-tool-card:last-child p {
  grid-column: 2 / 4;
  grid-row: 2;
}

.uh-tools-grid > .uh-tool-card:last-child > a {
  grid-column: 4;
  grid-row: 1 / 3;
  align-self: center;
  margin-top: 0;
  padding-top: 0;
}

.uh-guides,
.uh-glossary,
.uh-faq {
  background: var(--uh-blue-soft);
}

.uh-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.uh-resource-card {
  display: flex;
  min-height: 252px;
  flex-direction: column;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--uh-line);
  border-radius: var(--uh-radius-md);
}

.uh-resource-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--uh-green-dark);
  font-size: 0.77rem;
  font-weight: 800;
  text-transform: uppercase;
}

.uh-resource-card small {
  display: block;
  padding-top: 16px;
  margin-top: auto;
  color: #6f8290;
  border-top: 1px solid #e4edf1;
  line-height: 1.4;
}

.uh-resource-card > a {
  margin-top: 7px;
  padding-top: 5px;
}

.uh-official {
  padding-bottom: 72px;
}

.uh-official-note {
  max-width: 380px;
  padding: 15px 17px;
  color: #3b5b6d;
  background: var(--uh-mint);
  border-left: 4px solid var(--uh-green);
  border-radius: 12px;
  font-size: 0.88rem;
  line-height: 1.55;
}

.uh-source-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.uh-source-card {
  display: grid;
  min-height: 100px;
  grid-template-columns: 62px 1fr auto;
  gap: 15px;
  align-items: center;
  padding: 17px;
  background: #fff;
  border: 1px solid var(--uh-line);
  border-radius: 16px;
}

.uh-source-card__mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--uh-navy);
  background: #eff7f9;
  border-radius: 14px;
  font-size: 0.76rem;
  font-weight: 900;
}

.uh-source-card h3 {
  margin: 0 0 4px;
  color: var(--uh-navy);
  font-size: 1rem;
}

.uh-source-card p {
  margin: 0;
  color: var(--uh-muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.uh-source-card > a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--uh-green-dark);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: right;
  text-decoration: none;
}

.uh-glossary-search {
  min-width: 280px;
}

.uh-glossary-search label {
  display: block;
  margin-bottom: 7px;
  color: var(--uh-navy);
  font-size: 0.84rem;
  font-weight: 800;
}

.uh-glossary-search input {
  width: 100%;
  min-height: 48px;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid #bdd1dc;
  border-radius: 12px;
  font: inherit;
}

.uh-filter-row--glossary {
  margin: -12px 0 16px;
}

.uh-glossary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.uh-glossary-item {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--uh-line);
  border-radius: 15px;
}

.uh-glossary-item h3,
.uh-faq-item h3 {
  margin: 0;
}

.uh-glossary-item button,
.uh-faq-item button {
  display: flex;
  width: 100%;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 14px 17px;
  color: var(--uh-navy);
  background: transparent;
  border: 0;
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.uh-glossary-item button span,
.uh-faq-item button span {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border: 1px solid #b8ccd7;
  border-radius: 50%;
}

.uh-glossary-item button span::before,
.uh-glossary-item button span::after,
.uh-faq-item button span::before,
.uh-faq-item button span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 1.5px;
  content: "";
  background: var(--uh-green-dark);
  transform: translate(-50%, -50%);
}

.uh-glossary-item button span::after,
.uh-faq-item button span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.uh-glossary-item button[aria-expanded="true"] span::after,
.uh-faq-item button[aria-expanded="true"] span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.uh-glossary-item > div,
.uh-faq-item > div {
  padding: 0 17px 17px;
  color: var(--uh-muted);
  line-height: 1.6;
}

.uh-glossary-item p,
.uh-faq-item p {
  margin: 0;
}

.uh-glossary-item a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  margin-top: 8px;
  color: var(--uh-green-dark);
  font-weight: 800;
}

.uh-glossary [data-glossary-toggle] {
  margin-top: 14px;
}

.uh-help {
  color: #fff;
  background:
    radial-gradient(circle at 7% 20%, rgba(60, 219, 171, 0.22), transparent 24%),
    var(--uh-navy-deep);
}

.uh-help__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
  gap: clamp(40px, 7vw, 90px);
  align-items: start;
}

.uh-help__content {
  position: sticky;
  top: 110px;
  padding-top: 24px;
}

.uh-help .uh-eyebrow {
  color: #77e5c2;
}

.uh-help h2 {
  margin: 14px 0 14px;
  color: #fff;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.uh-help__content > p {
  max-width: 480px;
  margin: 0;
  color: #c9dae4;
  line-height: 1.7;
}

.uh-whatsapp-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: 18px;
  color: #70dfbd;
  font-weight: 800;
}

.uh-help-form {
  padding: 28px;
  color: var(--uh-text);
  background: #fff;
  border-radius: 25px;
  box-shadow: 0 25px 68px rgba(0, 0, 0, 0.18);
}

.uh-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.uh-field {
  margin-bottom: 15px;
}

.uh-field label {
  display: block;
  margin-bottom: 7px;
  color: var(--uh-navy);
  font-size: 0.88rem;
  font-weight: 800;
}

.uh-field input,
.uh-field select,
.uh-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  color: var(--uh-text);
  background: #fbfdfd;
  border: 1px solid #bdcfd9;
  border-radius: 11px;
  font: inherit;
}

.uh-field textarea {
  min-height: 112px;
  resize: vertical;
}

.uh-field small {
  display: block;
  margin-top: 5px;
  color: #6c818f;
  font-size: 0.77rem;
}

.uh-check {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 11px;
  align-items: start;
  padding: 13px;
  margin-top: 10px;
  color: #29495c;
  background: #eff9f5;
  border: 1px solid #badfce;
  border-radius: 12px;
  font-size: 0.85rem;
  line-height: 1.5;
}

.uh-check--optional {
  background: #f7f9fa;
  border-color: #d8e2e7;
}

.uh-check input {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
}

.uh-check a {
  color: var(--uh-green-dark);
  font-weight: 750;
}

.uh-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 17px;
}

.uh-form-actions button {
  cursor: pointer;
}

.uh-form-actions span {
  color: #6c808e;
  font-size: 0.8rem;
}

.uh-form-status {
  min-height: 22px;
  margin: 10px 0 0;
}

.uh-faq__layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(40px, 7vw, 84px);
  align-items: start;
}

.uh-faq .uh-section-intro {
  position: sticky;
  top: 110px;
  margin-bottom: 0;
}

.uh-faq-list {
  display: grid;
  gap: 10px;
}

.uh-faq-item {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--uh-line);
  border-radius: 15px;
}

.uh-final {
  padding: 32px 0;
  background: #fff;
}

.uh-final__panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: clamp(28px, 5vw, 52px);
  color: #fff;
  background:
    radial-gradient(circle at 86% 22%, rgba(68, 220, 174, 0.27), transparent 30%),
    linear-gradient(135deg, var(--uh-navy-deep), #074b59);
  border-radius: var(--uh-radius);
  box-shadow: var(--uh-shadow);
}

.uh-final .uh-eyebrow {
  color: #71e1bf;
}

.uh-final h2 {
  max-width: 660px;
  margin: 12px 0 9px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.uh-final p {
  margin: 0;
  color: #c8dbe4;
}

.uh-final .uh-actions {
  flex: 0 0 auto;
  margin-top: 0;
}

.uh-btn--light {
  color: var(--uh-navy);
  background: #fff;
}

.uh-btn--ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.36);
}

.uh-btn--ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
}

.utile-hub-page :is(a, button, input, select, textarea):focus-visible {
  outline: 3px solid #f4b942;
  outline-offset: 3px;
}

/* Conținutul rămâne vizibil chiar dacă observatorul vizual global nu pornește. */
.utile-hub-page .rollout-reveal,
.utile-hub-page .rollout-reveal.is-visible {
  opacity: 1 !important;
  transform: none !important;
}

@media (max-width: 1040px) {
  .uh-hero__grid {
    grid-template-columns: 1fr 420px;
    gap: 42px;
  }

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

  .uh-tool-card--featured {
    grid-column: span 2;
  }

  .uh-source-list {
    grid-template-columns: 1fr;
  }

  .uh-help__grid {
    grid-template-columns: minmax(0, 0.7fr) minmax(470px, 1.3fr);
    gap: 40px;
  }
}

@media (max-width: 860px) {
  .uh-hero {
    padding-top: 50px;
  }

  .uh-hero__grid,
  .uh-help__grid,
  .uh-faq__layout {
    grid-template-columns: 1fr;
  }

  .uh-dashboard {
    width: min(620px, 100%);
    margin-inline: auto;
  }

  .uh-section-intro--row,
  .uh-final__panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .uh-section-intro--row {
    display: flex;
  }

  .uh-help__content,
  .uh-faq .uh-section-intro {
    position: static;
  }

  .uh-help__content {
    padding-top: 0;
  }

  .uh-final .uh-actions {
    flex: auto;
    margin-top: 10px;
  }
}

@media (max-width: 680px) {
  .uh-container {
    width: min(100% - 28px, 1180px);
  }

  .uh-hero {
    padding: 38px 0 58px;
  }

  .uh-hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.5rem);
  }

  .uh-hero__lead {
    font-size: 1rem;
  }

  .uh-hero .uh-actions > * {
    flex: 1 1 0;
    padding-inline: 12px;
  }

  .uh-micro-benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .uh-dashboard {
    padding: 16px;
    border-radius: 24px;
  }

  .uh-dashboard::before {
    display: none;
  }

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

  .uh-dashboard__feature {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 172px;
    padding: 18px;
  }

  .uh-dashboard__mini {
    min-height: 82px;
  }

  .uh-dashboard__recommendations {
    grid-template-columns: repeat(3, minmax(170px, 1fr));
    padding: 2px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
  }

  .uh-dashboard__recommendation {
    scroll-snap-align: start;
  }

  .uh-dashboard__popover {
    top: 148px;
    right: 16px;
    left: 16px;
    max-height: min(360px, calc(100vh - 180px));
  }

  .uh-dashboard__results-panel {
    max-height: min(400px, calc(100vh - 96px));
  }

  .uh-dashboard__result {
    grid-template-columns: 38px minmax(0, 1fr) 16px;
    min-height: 64px;
  }

  .uh-section {
    padding: 62px 0;
  }

  .uh-search-section {
    margin-top: -20px;
  }

  .uh-search-panel {
    padding: 21px;
    border-radius: 22px;
  }

  .uh-search-results,
  .uh-tools-grid,
  .uh-guide-grid,
  .uh-glossary-grid,
  .uh-form-row {
    grid-template-columns: 1fr;
  }

  .uh-tool-card--featured {
    grid-column: auto;
    display: flex;
    min-height: 310px;
  }

  .uh-tools-grid > .uh-tool-card:last-child {
    grid-column: auto;
    min-height: 0;
    display: flex;
  }

  .uh-tools-grid > .uh-tool-card:last-child .uh-tool-card__icon {
    margin-bottom: 24px;
  }

  .uh-tools-grid > .uh-tool-card:last-child h3 {
    margin: 12px 0 9px;
  }

  .uh-tools-grid > .uh-tool-card:last-child > a {
    align-self: stretch;
    margin-top: auto;
    padding-top: 18px;
  }

  .uh-tool-card--featured .uh-tool-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
  }

  .uh-tool-card--featured > a {
    grid-column: auto;
  }

  .uh-source-card {
    grid-template-columns: 50px 1fr;
  }

  .uh-source-card__mark {
    width: 48px;
    height: 48px;
    font-size: 0.68rem;
  }

  .uh-source-card > a {
    grid-column: 2;
    min-height: 38px;
    justify-self: start;
    text-align: left;
  }

  .uh-glossary-search {
    width: 100%;
    min-width: 0;
  }

  .uh-help-form {
    padding: 20px;
    border-radius: 21px;
  }

  .uh-final__panel {
    padding: 28px 22px;
    border-radius: 22px;
  }

  .uh-final .uh-actions {
    width: 100%;
  }

  .uh-final .uh-actions > * {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .uh-container {
    width: calc(100% - 24px);
  }

  .uh-hero h1 {
    font-size: 2.35rem;
  }

  .uh-hero .uh-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .uh-dashboard__footer span:nth-child(2) {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .utile-hub-page *,
  .utile-hub-page *::before,
  .utile-hub-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  [data-header],
  [data-footer],
  .uh-dashboard,
  .uh-search-section,
  .uh-actions,
  .uh-help-form {
    display: none !important;
  }

  .uh-section,
  .uh-hero {
    padding: 20px 0;
  }
}
