/* HostingRacing — design system */
:root {
  --hr-ink: #0b1220;
  --hr-ink-soft: #334155;
  --hr-muted: #64748b;
  --hr-line: #e2e8f0;
  --hr-bg: #ffffff;
  --hr-card: #ffffff;
  --hr-accent: #e85f00;
  --hr-accent-dark: #c95200;
  --hr-accent-soft: #fff0e6;
  --hr-header: #111827;
  --hr-header-soft: #1f2937;
  --hr-green: #e85f00;
  --hr-green-dark: #c95200;
  --hr-ok: #0d9488;
  --hr-bad: #e11d48;
  --hr-radius: 14px;
  --hr-radius-sm: 10px;
  --hr-shadow: 0 1px 2px rgba(15, 23, 42, 0.06), 0 8px 24px rgba(15, 23, 42, 0.06);
  --hr-shadow-lg: 0 10px 40px rgba(15, 23, 42, 0.1);
  --hr-container: 1200px;
  --hr-font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #fff;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--hr-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--hr-ink);
  background: #fff;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--hr-ink);
  text-decoration: none;
  transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

a:hover {
  color: var(--hr-accent-dark);
}

h1, h2, h3, h4 {
  line-height: 1.25;
  font-weight: 700;
  margin: 0 0 0.6em;
  color: var(--hr-ink);
}

p {
  margin: 0 0 1em;
  color: var(--hr-ink-soft);
}

ul, ol {
  margin: 0 0 1em;
  padding-left: 1.2em;
}

.hr-container {
  width: 100%;
  max-width: var(--hr-container);
  margin-inline: auto;
  padding-inline: 1rem;
  box-sizing: border-box;
}

.hr-section {
  padding: 3.5rem 0;
}

.hr-section--tight {
  padding: 2rem 0;
}

.hr-section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.hr-section__head h2 {
  margin: 0;
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
}

.hr-section__head p {
  margin: 0.35rem 0 0;
  color: var(--hr-muted);
  font-size: 0.95rem;
}

/* Buttons */
.hr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.925rem;
  cursor: pointer;
  text-decoration: none;
  line-height: 1.2;
  font-family: inherit;
}

.hr-btn--primary {
  background: var(--hr-accent);
  color: #fff !important;
  border-color: var(--hr-accent);
}

.hr-btn--primary:hover {
  background: var(--hr-accent-dark);
  border-color: var(--hr-accent-dark);
  color: #fff !important;
}

.hr-btn--ghost {
  background: transparent;
  border-color: var(--hr-line);
  color: var(--hr-ink) !important;
}

.hr-btn--ghost:hover {
  border-color: var(--hr-ink);
}

.hr-btn--dark {
  background: var(--hr-ink);
  color: #fff !important;
}

.hr-btn--dark:hover {
  background: #1e293b;
  color: #fff !important;
}

.hr-btn--sm {
  padding: 0.45rem 0.85rem;
  font-size: 0.85rem;
}

.hr-btn--block {
  width: 100%;
}

/* Header — single bar (same page canvas as content) */
.hr-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0.55rem 0;
  background: #fff;
  border-bottom: 1px solid transparent;
}

.hr-header.is-stuck,
.hr-header {
  background: #fff;
}

@supports (backdrop-filter: blur(8px)) {
  .hr-header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
  }
}

.hr-header__stats {
  display: none;
}

.hr-header__stat {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--hr-muted);
}

.hr-header__stat strong {
  color: var(--hr-ink);
  font-size: 1rem;
}

.hr-header__bar {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 6px 8px;
  background: var(--hr-header);
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.18);
  width: 100%;
  box-sizing: border-box;
}

.hr-logo {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  color: #fff !important;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
}

.hr-logo:hover {
  color: #fff !important;
}

.hr-logo__mark {
  order: 0;
  width: 34px;
  height: 34px;
  color: var(--hr-accent);
  flex-shrink: 0;
  display: block;
}

.hr-logo__word {
  order: 1;
  font-weight: 800;
  font-size: clamp(1.25rem, 3vw, 1.55rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}

.hr-header__nav {
  flex: 1;
  min-width: 0;
  overflow: visible;
}

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

.hr-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.55rem;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 500;
  color: #f1f5f9 !important;
  white-space: nowrap;
}

.hr-nav a:hover,
.hr-nav a.is-active,
.hr-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.08);
  color: #fff !important;
}

.hr-nav__icon {
  display: inline-flex;
  color: var(--hr-accent);
  flex-shrink: 0;
}

.hr-nav__icon svg {
  display: block;
}

/* Mobile-only search inside hamburger panel */
.hr-nav__search {
  display: none;
  list-style: none;
  width: 100%;
  margin: 0 0 0.35rem;
  padding: 0;
}

.hr-nav__search-form {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  width: 100%;
  padding: 0.35rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hr-nav__search-form input[type="search"] {
  flex: 1;
  min-width: 0;
  height: 36px;
  margin: 0;
  padding: 0 0.65rem;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font: inherit;
  font-size: 0.9rem;
}

.hr-nav__search-form input[type="search"]::placeholder {
  color: rgba(241, 245, 249, 0.55);
}

.hr-nav__search-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: var(--hr-accent);
  color: #fff;
  cursor: pointer;
}

.hr-header__actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
  margin-left: auto;
}

/* “More” overflow — shown by JS only when items do not fit */
.hr-nav__more {
  position: relative;
  display: none;
  list-style: none;
  flex-shrink: 0;
}

@media (min-width: 901px) {
  .hr-nav__more.is-needed {
    display: list-item;
  }
}

.hr-nav__more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  height: 38px;
  padding: 0 0.65rem;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #f1f5f9;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 550;
  cursor: pointer;
  white-space: nowrap;
}

.hr-nav__more-btn:hover,
.hr-nav__more.is-open .hr-nav__more-btn,
.hr-nav__more.has-active .hr-nav__more-btn {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.hr-nav__more-caret {
  transition: transform 0.2s ease;
  opacity: 0.85;
}

.hr-nav__more.is-open .hr-nav__more-caret {
  transform: rotate(180deg);
}

.hr-nav__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 140;
  min-width: 220px;
  margin: 0;
  padding: 0.4rem;
  list-style: none;
  background: #fff;
  border: 1px solid var(--hr-line);
  border-radius: 14px;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.16);
}

.hr-nav__more.is-open .hr-nav__dropdown {
  display: block;
}

.hr-nav__dropdown a {
  width: 100%;
  color: var(--hr-ink) !important;
  font-weight: 550;
}

.hr-nav__dropdown a:hover,
.hr-nav__dropdown a.is-active,
.hr-nav__dropdown a[aria-current="page"] {
  background: #f8fafc;
  color: var(--hr-ink) !important;
}

.hr-nav__dropdown .hr-nav__icon {
  color: var(--hr-accent);
}

.hr-header__search {
  position: relative;
  display: flex;
  align-items: center;
  height: 38px;
}

.hr-header__search-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  box-sizing: border-box;
  transition: border-color 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.hr-header__search-toggle:hover {
  border-color: rgba(232, 95, 0, 0.55);
  background: rgba(255, 255, 255, 0.06);
}

.hr-header__search.is-open .hr-header__search-toggle {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  border: 0;
}

.hr-header__search input {
  width: 0;
  max-width: 0;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: #fff;
  color: var(--hr-ink);
  font-family: inherit;
  font-size: 0.85rem;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transition:
    width 0.32s ease,
    max-width 0.32s ease,
    padding 0.32s ease,
    opacity 0.22s ease;
}

.hr-header__search.is-open input {
  width: 200px;
  max-width: min(200px, 28vw);
  padding: 0 2.2rem 0 0.85rem;
  opacity: 1;
  pointer-events: auto;
}

.hr-header__search input::placeholder {
  color: #94a3b8;
}

.hr-header__search-btn {
  position: absolute;
  right: 0.45rem;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: #334155;
  padding: 0.25rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.hr-header__search.is-open .hr-header__search-btn {
  opacity: 1;
  pointer-events: auto;
}

.hr-btn--header,
.hr-btn--green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  background: var(--hr-accent);
  color: #fff !important;
  border-color: var(--hr-accent);
  border-radius: 10px;
  padding: 0 0.9rem;
  font-size: 0.85rem;
  gap: 0.4rem;
  white-space: nowrap;
  box-sizing: border-box;
  line-height: 1;
}

.hr-btn--header:hover,
.hr-btn--green:hover {
  background: var(--hr-accent-dark);
  border-color: var(--hr-accent-dark);
  color: #fff !important;
}

.hr-btn--header svg {
  display: block;
  flex-shrink: 0;
  color: #e8c04a;
  filter: drop-shadow(0 0 3px rgba(232, 192, 74, 0.4));
}

.hr-btn--header__icon {
  width: 18px;
  height: 18px;
}

.hr-lang-dd {
  position: relative;
  flex-shrink: 0;
}

.hr-lang-dd__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  height: 38px;
  padding: 0 0.65rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  color: #fff;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-sizing: border-box;
}

.hr-lang-dd__btn:hover,
.hr-lang-dd.is-open .hr-lang-dd__btn {
  border-color: rgba(232, 95, 0, 0.55);
  background: rgba(255, 255, 255, 0.06);
}

.hr-lang-dd__caret {
  transition: transform 0.18s ease;
  opacity: 0.85;
}

.hr-lang-dd.is-open .hr-lang-dd__caret {
  transform: rotate(180deg);
}

.hr-lang-dd__menu {
  position: absolute;
  right: 0;
  left: auto;
  top: calc(100% + 0.4rem);
  min-width: 180px;
  margin: 0;
  padding: 0.35rem;
  list-style: none;
  background: #fff;
  border: 1px solid var(--hr-line);
  border-radius: 12px;
  box-shadow: var(--hr-shadow-lg);
  z-index: 120;
}

.hr-lang-dd__menu[hidden] {
  display: none;
}

.hr-lang-dd__option {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  color: var(--hr-ink) !important;
  font-size: 0.875rem;
}

.hr-lang-dd__option:hover,
.hr-lang-dd__option.is-active {
  background: #f1f5f9;
}

.hr-lang-dd__opt-code {
  flex: 0 0 2rem;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--hr-header);
}

.hr-lang-dd__opt-name {
  color: var(--hr-ink-soft);
  font-weight: 500;
}

.hr-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 38px;
  height: 38px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  box-sizing: border-box;
}

.hr-nav-toggle span {
  position: absolute;
  left: 50%;
  display: block;
  width: 15px;
  height: 2px;
  margin: 0;
  background: #fff;
  border-radius: 1px;
  transform: translateX(-50%);
  transition: transform 0.28s ease, opacity 0.2s ease, top 0.28s ease;
}

.hr-nav-toggle span:nth-child(1) { top: 12px; }
.hr-nav-toggle span:nth-child(2) { top: 18px; }
.hr-nav-toggle span:nth-child(3) { top: 24px; }

.hr-header__bar.is-nav-open .hr-nav-toggle span:nth-child(1) {
  top: 18px;
  transform: translateX(-50%) rotate(45deg);
}

.hr-header__bar.is-nav-open .hr-nav-toggle span:nth-child(2) {
  opacity: 0;
  transform: translateX(-50%) scaleX(0.3);
}

.hr-header__bar.is-nav-open .hr-nav-toggle span:nth-child(3) {
  top: 18px;
  transform: translateX(-50%) rotate(-45deg);
}

@media (max-width: 1100px) {
  .hr-header__search.is-open input {
    width: 150px;
    max-width: min(150px, 24vw);
  }
  .hr-btn--header .hr-btn__text {
    display: none;
  }
  .hr-btn--header {
    padding-inline: 0.7rem;
  }
}

@media (max-width: 900px) {
  .hr-nav-toggle {
    display: inline-flex;
  }

  .hr-header__bar {
    position: relative;
    flex-wrap: nowrap;
    gap: 0.5rem;
    padding: 6px 8px;
  }

  /* Overlay panel — no layout jump */
  .hr-header__nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 6px);
    z-index: 130;
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    pointer-events: none;
  }

  .hr-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    width: 100%;
    margin: 0;
    padding: 0.45rem;
    list-style: none;
    background: var(--hr-header);
    border-radius: 14px;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.28);
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top center;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition:
      opacity 0.28s ease,
      transform 0.28s ease,
      max-height 0.32s ease,
      visibility 0.28s;
  }

  .hr-header__bar.is-nav-open .hr-header__nav {
    pointer-events: auto;
  }

  .hr-nav.is-open {
    opacity: 1;
    transform: translateY(0) scale(1);
    max-height: 70vh;
    overflow-y: auto;
    visibility: visible;
  }

  .hr-nav__more {
    display: contents;
  }

  .hr-nav__more-btn {
    display: none !important;
  }

  .hr-nav__dropdown,
  .hr-nav__more.is-open .hr-nav__dropdown {
    display: contents !important;
    position: static;
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .hr-nav__dropdown li {
    display: list-item;
    list-style: none;
  }

  .hr-nav__dropdown a {
    color: #f1f5f9 !important;
  }

  .hr-nav__dropdown a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff !important;
  }

  .hr-nav__dropdown .hr-nav__icon {
    color: var(--hr-accent);
  }

  .hr-nav__search {
    display: list-item;
  }

  .hr-nav__label {
    display: inline;
  }

  .hr-nav a {
    padding: 0.75rem 0.85rem;
  }

  .hr-header__search {
    display: none;
  }

  .hr-logo__mark {
    width: 28px;
    height: 28px;
  }

  .hr-logo__word {
    font-size: clamp(1.1rem, 3.4vw, 1.3rem);
    letter-spacing: 0.08em;
  }

  .hr-header__actions {
    gap: 0.4rem;
  }
}

@media (max-width: 560px) {
  .hr-container {
    padding-inline: 0.85rem;
  }

  .hr-btn--header {
    padding: 0 0.7rem;
  }

  .hr-btn--header .hr-btn__text {
    display: none;
  }

  .hr-lang-dd__btn {
    height: 38px;
    padding: 0 0.5rem;
  }
}

/* VPS picker — compact minimal row */
.hr-section--picker {
  padding-top: 1.25rem;
}

.hr-picker {
  background: #fff;
  border: 1px solid var(--hr-line);
  border-radius: 16px;
  padding: 1rem 1.1rem 1.05rem;
  box-shadow: var(--hr-shadow);
  margin-bottom: 1.25rem;
}

.hr-picker__types {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.95rem;
}

.hr-picker__type {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--hr-line);
  background: #fff;
  color: var(--hr-ink);
  font-size: 0.8rem;
  font-weight: 650;
  text-decoration: none;
  line-height: 1.2;
}

.hr-picker__type:hover {
  border-color: rgba(232, 95, 0, 0.45);
}

.hr-picker__type.is-active {
  border-color: rgba(232, 95, 0, 0.45);
  background: rgba(232, 95, 0, 0.1);
  color: var(--hr-ink);
}

.hr-picker__sliders {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem 1rem;
  margin-bottom: 0.95rem;
}

.hr-picker__slider {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
}

.hr-picker__slider-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--hr-muted);
}

.hr-picker__slider-head strong {
  color: var(--hr-ink);
  font-size: 0.86rem;
  font-weight: 750;
}

.hr-picker__slider input[type="range"] {
  width: 100%;
  margin: 0;
  accent-color: var(--hr-accent);
  cursor: pointer;
}

.hr-picker__head {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.hr-picker__title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.hr-picker__hint {
  margin: 0;
  font-size: 0.85rem;
  color: var(--hr-muted);
}

.hr-picker__row {
  display: flex;
  align-items: flex-end;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.hr-picker__item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 0;
  flex: 1 1 0;
}

.hr-picker__item--num {
  flex: 0 1 88px;
  max-width: 100px;
}

.hr-picker__label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--hr-muted);
  white-space: nowrap;
}

.hr-picker__item select,
.hr-picker__item input {
  width: 100%;
  height: 40px;
  padding: 0 0.7rem;
  border: 1px solid var(--hr-line);
  border-radius: 10px;
  background: var(--hr-bg);
  color: var(--hr-ink);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  appearance: none;
  -webkit-appearance: none;
}

.hr-picker__item select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' fill='none' stroke='%2364748b' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.65rem center;
  padding-right: 1.6rem;
}

.hr-picker__item select:hover,
.hr-picker__item input:hover {
  border-color: #cbd5e1;
  background: #fff;
}

.hr-picker__item select:focus,
.hr-picker__item input:focus {
  border-color: var(--hr-accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(232, 95, 0, 0.12);
}

.hr-picker__item input::-webkit-outer-spin-button,
.hr-picker__item input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.hr-picker__item input[type="number"] {
  -moz-appearance: textfield;
}

.hr-picker__actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex: 0 0 auto;
  margin-top: 0;
  padding-bottom: 0;
}

.hr-picker__reset {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--hr-line);
  background: #fff;
  color: var(--hr-muted) !important;
  font-size: 0.85rem;
  text-decoration: none;
}

.hr-picker__reset:hover {
  border-color: #cbd5e1;
  color: var(--hr-ink) !important;
}

.hr-picker__submit {
  height: 40px;
  padding: 0 1.1rem;
  border: 0;
  border-radius: 10px;
  background: var(--hr-accent);
  color: #fff;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 650;
  cursor: pointer;
  white-space: nowrap;
}

.hr-picker__submit:hover {
  background: var(--hr-accent-dark);
}

.hr-picker__more {
  text-align: center;
  margin: 1rem 0 0;
}

@media (max-width: 1100px) {
  .hr-picker__sliders {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hr-picker__row {
    flex-wrap: wrap;
  }
  .hr-picker__item {
    flex: 1 1 calc(25% - 0.55rem);
    min-width: 140px;
  }
  .hr-picker__item--num {
    flex: 1 1 calc(25% - 0.55rem);
    max-width: none;
  }
  .hr-picker__actions {
    margin-left: auto;
  }
}

@media (max-width: 640px) {
  .hr-picker {
    padding: 0.9rem;
  }
  .hr-picker__sliders {
    grid-template-columns: 1fr;
  }
  .hr-picker__head {
    flex-direction: column;
    gap: 0.2rem;
    margin-bottom: 0.75rem;
  }
  .hr-picker__item,
  .hr-picker__item--num {
    flex: 1 1 calc(50% - 0.55rem);
    min-width: 0;
  }
  .hr-picker__actions {
    flex: 1 1 100%;
    margin-left: 0;
  }
  .hr-picker__submit {
    flex: 1;
  }
}

.hr-found {
  display: inline-flex;
  margin: 0 auto 1rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: var(--hr-header);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
}

.hr-section--picker .hr-found {
  display: flex;
  width: fit-content;
}

.hr-plans-table__company {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.hr-plans-table__company img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--hr-line);
  object-fit: contain;
  background: #fff;
}

.hr-plans-table__plan {
  font-size: 0.75rem;
  color: var(--hr-muted);
  margin-top: 0.2rem;
}

.hr-plans-table thead th {
  background: var(--hr-header);
  color: #fff;
  border-bottom: 0;
}

@media (max-width: 900px) {
  .hr-plans-table {
    border: 0;
    background: transparent;
    overflow: visible;
  }

  .hr-plans-table .hr-table,
  .hr-plans-table thead,
  .hr-plans-table tbody,
  .hr-plans-table tr,
  .hr-plans-table th,
  .hr-plans-table td {
    display: block;
    width: 100%;
  }

  .hr-plans-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .hr-plans-table tr {
    margin-bottom: 0.75rem;
    padding: 0.95rem 1rem;
    border: 1px solid var(--hr-line);
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--hr-shadow);
  }

  .hr-plans-table td {
    display: grid;
    grid-template-columns: minmax(6.5rem, 34%) 1fr;
    gap: 0.5rem 0.75rem;
    align-items: center;
    padding: 0.4rem 0;
    border-bottom: 1px dashed var(--hr-line);
  }

  .hr-plans-table td:first-child {
    display: block;
    padding-top: 0;
    padding-bottom: 0.65rem;
    margin-bottom: 0.25rem;
    border-bottom: 1px solid var(--hr-line);
  }

  .hr-plans-table td:last-child {
    border-bottom: 0;
    padding-bottom: 0;
    padding-top: 0.75rem;
    display: block;
  }

  .hr-plans-table td:last-child .hr-btn {
    width: 100%;
    justify-content: center;
  }

  .hr-plans-table td::before {
    content: attr(data-label);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--hr-muted);
  }

  .hr-plans-table td:first-child::before,
  .hr-plans-table td:last-child::before,
  .hr-plans-table td[data-label=""]::before {
    content: none;
  }
}

/* Homepage — Website Planet inspired minimal (header untouched) */
.hr-home-hero {
  padding: 3.25rem 0 2rem;
  text-align: center;
}

.hr-home-hero__title {
  margin: 0 auto 0.65rem;
  max-width: 20ch;
  font-size: clamp(1.85rem, 4.2vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.12;
  color: var(--hr-ink);
}

.hr-home-hero__lead {
  margin: 0 auto;
  max-width: 34rem;
  font-size: 1.08rem;
  line-height: 1.5;
  color: var(--hr-muted);
}

.hr-home-rank {
  padding: 0.5rem 0 3rem;
}

.hr-home-rank__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--hr-line);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.hr-home-rank__more {
  margin: 1.5rem 0 0;
  text-align: center;
}

.hr-home-rank__more a {
  font-weight: 650;
  font-size: 0.95rem;
  color: var(--hr-ink-soft) !important;
}

.hr-home-rank__more a:hover {
  color: var(--hr-accent) !important;
}

.hr-rank-row {
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1.45fr) minmax(0, 0.85fr) minmax(0, 0.7fr) auto;
  gap: 1rem 1.15rem;
  align-items: center;
  padding: 1.2rem 1.25rem;
  border-bottom: 1px solid var(--hr-line);
  background: #fff;
  transition: background 0.15s ease;
}

.hr-rank-row:last-child {
  border-bottom: 0;
}

.hr-rank-row:hover {
  background: #fafbfc;
}

.hr-rank-row.is-top {
  background: linear-gradient(90deg, var(--hr-accent-soft) 0%, #fff 42%);
}

.hr-rank-row.is-top:hover {
  background: linear-gradient(90deg, #ffedd9 0%, #fafbfc 42%);
}

.hr-rank-row.is-podium .hr-rank-row__place span {
  color: var(--hr-ink);
  background: #f1f5f9;
}

.hr-rank-row__place {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hr-rank-row__place span {
  display: grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--hr-muted);
  background: #f8fafc;
  border: 1px solid var(--hr-line);
}

.hr-rank-row.is-top .hr-rank-row__place span {
  color: #fff;
  background: var(--hr-accent);
  border-color: var(--hr-accent);
  box-shadow: 0 4px 12px rgba(232, 95, 0, 0.28);
}

.hr-rank-row__brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.hr-rank-row__logo {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  border: 1px solid var(--hr-line);
  object-fit: contain;
  padding: 5px;
  background: #fff;
  flex-shrink: 0;
}

.hr-rank-row__logo.is-placeholder {
  background: #0f172a;
  padding: 0;
  object-fit: cover;
}

.hr-rank-row__meta {
  min-width: 0;
}

.hr-rank-row__name {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.hr-rank-row__name a {
  color: inherit !important;
}

.hr-rank-row__name a:hover {
  color: var(--hr-accent-dark) !important;
}

.hr-rank-row__url {
  display: inline-block;
  margin-top: 0.2rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--hr-accent) !important;
}

.hr-rank-row__score {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
}

.hr-rank-row__score-main {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  line-height: 1;
}

.hr-rank-row__score strong {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.hr-rank-row__star {
  width: 16px;
  height: 16px;
  color: #f5a623;
  flex-shrink: 0;
}

.hr-rank-row__reviews {
  font-size: 0.75rem;
  color: var(--hr-muted);
  line-height: 1.2;
}

.hr-rank-row__price span {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--hr-muted);
  margin-bottom: 0.15rem;
}

.hr-rank-row__price strong {
  font-size: 1.02rem;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.hr-rank-row__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
}

.hr-rank-row__cta,
.hr-rank-row__go {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  height: 40px;
  padding: 0 1rem;
  border-radius: 10px;
  font-size: 0.84rem;
  font-weight: 650;
  white-space: nowrap;
}

.hr-rank-row__cta svg,
.hr-rank-row__go svg {
  display: block;
  flex-shrink: 0;
}

.hr-rank-row__go {
  background: var(--hr-accent);
  border: 1px solid var(--hr-accent);
  color: #fff !important;
}

.hr-rank-row__go:hover {
  background: var(--hr-accent-dark);
  border-color: var(--hr-accent-dark);
  color: #fff !important;
}

.hr-rank-row__cta {
  background: #fff;
  border: 1px solid var(--hr-line);
  color: var(--hr-ink) !important;
}

.hr-rank-row__cta svg {
  color: var(--hr-accent);
}

.hr-rank-row__cta:hover {
  border-color: var(--hr-accent);
  color: var(--hr-ink) !important;
  background: var(--hr-accent-soft);
}

@media (max-width: 1100px) and (min-width: 901px) {
  .hr-rank-row {
    grid-template-columns: 2.75rem minmax(0, 1.2fr) minmax(0, 0.7fr) minmax(0, 0.65fr) auto;
    gap: 0.75rem 0.85rem;
    padding: 1.05rem 1rem;
  }
  .hr-rank-row__actions {
    flex-direction: column;
    align-items: stretch;
    min-width: 7.5rem;
  }
  .hr-rank-row__cta,
  .hr-rank-row__go {
    width: 100%;
    padding: 0 0.75rem;
  }
}

@media (max-width: 900px) {
  .hr-rank-row {
    grid-template-columns: 2.5rem minmax(0, 1fr) minmax(0, 1fr);
    grid-template-areas:
      "place brand brand"
      ". score price"
      ". actions actions";
    gap: 0.85rem 0.75rem;
    align-items: center;
    padding: 1rem 0.95rem;
    width: 100%;
  }

  .hr-rank-row__place {
    grid-area: place;
    align-self: start;
    padding-top: 0.15rem;
  }

  .hr-rank-row__brand {
    grid-area: brand;
    min-width: 0;
  }

  .hr-rank-row__score {
    grid-area: score;
    width: 100%;
    align-items: flex-start;
  }

  .hr-rank-row__price {
    grid-area: price;
    width: 100%;
    text-align: right;
    justify-self: stretch;
  }

  .hr-rank-row__price span {
    text-align: right;
  }

  .hr-rank-row__actions {
    grid-area: actions;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    width: 100%;
    justify-content: stretch;
  }

  .hr-rank-row__cta,
  .hr-rank-row__go {
    width: 100%;
    min-width: 0;
    padding: 0 0.65rem;
  }

  .hr-rank-row.is-top {
    background: linear-gradient(180deg, var(--hr-accent-soft) 0%, #fff 70%);
  }
}

@media (max-width: 420px) {
  .hr-rank-row {
    grid-template-columns: 2.25rem minmax(0, 1fr);
    grid-template-areas:
      "place brand"
      "score score"
      "price price"
      "actions actions";
    gap: 0.7rem 0.65rem;
  }

  .hr-rank-row__score,
  .hr-rank-row__price {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
  }

  .hr-rank-row__score {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0.65rem;
  }

  .hr-rank-row__price {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    text-align: left;
    padding-top: 0.15rem;
    border-top: 1px dashed var(--hr-line);
  }

  .hr-rank-row__price span {
    text-align: left;
    margin: 0;
  }
}

.hr-home-block {
  padding: 3.25rem 0;
}

.hr-home-block--line {
  border-top: 1px solid var(--hr-line);
}

.hr-home-block__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.hr-home-block__head h2 {
  margin: 0;
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
  font-weight: 750;
  letter-spacing: -0.025em;
}

.hr-home-block__head a {
  font-size: 0.92rem;
  font-weight: 650;
  color: var(--hr-ink-soft) !important;
}

.hr-home-block__head a:hover {
  color: var(--hr-accent) !important;
}

.hr-home-reviews {
  /* layout defined with review cards below */
}

.hr-home-countries {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--hr-line);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.hr-home-countries__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.35rem;
  min-height: 132px;
  padding: 1.35rem 1.4rem;
  border-right: 1px solid var(--hr-line);
  border-bottom: 1px solid var(--hr-line);
  color: var(--hr-ink) !important;
  background: #fff;
  transition: background 0.15s ease;
}

.hr-home-countries__item:nth-child(3n) {
  border-right: 0;
}

.hr-home-countries__item:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.hr-home-countries__item:hover {
  background: #fafbfc;
}

.hr-home-countries__name {
  font-size: 1.15rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.hr-home-countries__meta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--hr-muted);
  font-size: 0.82rem;
}

.hr-home-countries__meta strong {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--hr-ink);
  line-height: 1;
}

.hr-home-countries__meta svg {
  margin-left: auto;
  color: var(--hr-accent);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .hr-home-countries {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hr-home-countries__item:nth-child(3n) {
    border-right: 1px solid var(--hr-line);
  }
  .hr-home-countries__item:nth-child(2n) {
    border-right: 0;
  }
  .hr-home-countries__item:nth-last-child(-n + 3) {
    border-bottom: 1px solid var(--hr-line);
  }
  .hr-home-countries__item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 560px) {
  .hr-home-countries {
    grid-template-columns: 1fr;
  }
  .hr-home-countries__item {
    border-right: 0 !important;
    min-height: 0;
  }
  .hr-home-countries__item:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--hr-line);
  }
  .hr-home-countries__item:last-child {
    border-bottom: 0;
  }
}

.hr-home-news {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.hr-home-news__item {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--hr-line);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.hr-home-news__item:hover {
  border-color: #cbd5e1;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.hr-home-news__media {
  display: block;
  aspect-ratio: 16 / 10;
  background: #0f172a;
  overflow: hidden;
}

.hr-home-news__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hr-home-news__ph {
  display: block;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 70% 30%, rgba(232, 95, 0, 0.35), transparent 45%),
    linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.hr-home-news__body {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.15rem 1.2rem 1.3rem;
  flex: 1;
}

.hr-home-news__body time {
  font-size: 0.75rem;
  font-weight: 550;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--hr-muted);
}

.hr-home-news__body h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.hr-home-news__body h3 a {
  color: inherit !important;
}

.hr-home-news__body h3 a:hover {
  color: var(--hr-accent-dark) !important;
}

.hr-home-news__body p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--hr-muted);
}

@media (max-width: 900px) {
  .hr-home-news {
    grid-template-columns: 1fr;
  }
}

.hr-home-faq {
  border: 1px solid var(--hr-line);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  max-width: none;
}

.hr-home-faq__item {
  border-bottom: 1px solid var(--hr-line);
  margin: 0;
  padding: 0;
  background: transparent;
}

.hr-home-faq__item:last-child {
  border-bottom: 0;
}

.hr-home-faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.35rem;
  cursor: pointer;
  list-style: none;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--hr-ink);
}

.hr-home-faq__item summary::-webkit-details-marker {
  display: none;
}

.hr-home-faq__item summary svg {
  flex-shrink: 0;
  color: var(--hr-accent);
  transition: transform 0.2s ease;
}

.hr-home-faq__item[open] summary svg {
  transform: rotate(45deg);
}

.hr-home-faq__item[open] summary {
  padding-bottom: 0.55rem;
}

.hr-home-faq__item p {
  margin: 0;
  padding: 0 1.35rem 1.25rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--hr-muted);
  max-width: 48rem;
}

.hr-rating-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

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

@media (max-width: 700px) {
  .hr-rating-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 420px) {
  .hr-rating-grid {
    grid-template-columns: 1fr;
  }
}

.hr-rating-card {
  background: #fff;
  border: 1px solid var(--hr-line);
  border-radius: 16px;
  padding: 1.1rem;
  text-align: center;
  box-shadow: var(--hr-shadow);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.hr-rating-card__rank {
  width: 28px;
  height: 28px;
  margin: 0 auto;
  border-radius: 8px;
  background: var(--hr-accent);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  display: grid;
  place-items: center;
}

.hr-rating-card__logo {
  width: 64px;
  height: 64px;
  margin: 0.25rem auto;
  border-radius: 14px;
  border: 1px solid var(--hr-line);
  object-fit: contain;
  padding: 4px;
  background: #fff;
}

.hr-rating-card__title {
  font-size: 1rem;
  margin: 0;
}

.hr-rating-card__meta {
  font-size: 0.8rem;
  color: var(--hr-muted);
  margin: 0 0 0.35rem;
  line-height: 1.45;
}

.hr-geo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

@media (max-width: 800px) {
  .hr-geo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.hr-geo-card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem;
  background: #fff;
  border: 1px solid var(--hr-line);
  border-radius: 14px;
  box-shadow: var(--hr-shadow);
  color: inherit !important;
}

.hr-geo-card:hover {
  border-color: #fdba74;
}

.hr-geo-card span {
  font-size: 0.8rem;
  color: var(--hr-muted);
}

.hr-section--alt {
  background: #fff;
  border-block: 1px solid var(--hr-line);
}

.hr-page-head {
  background: #fff;
  border-bottom: 1px solid var(--hr-line);
  padding: 2.5rem 0 1.85rem;
}

.hr-page-head h1 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
  letter-spacing: -0.035em;
}

.hr-page-head > .hr-container > p,
.hr-page-head__meta {
  margin: 0;
  color: var(--hr-muted);
  max-width: 40rem;
}

.hr-page-head__meta {
  margin-bottom: 0.55rem;
  font-size: 0.82rem;
  font-weight: 550;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hr-page-content {
  max-width: 760px;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--hr-ink-soft);
}

.hr-page-content__thumb {
  display: block;
  width: 100%;
  border-radius: 16px;
  margin: 0 0 1.5rem;
}

.hr-empty-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  padding: 3.5rem 1.5rem;
  border: 1px solid var(--hr-line);
  border-radius: 16px;
  background: #fff;
}

.hr-empty-panel h1 {
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  letter-spacing: -0.04em;
}

.hr-compare-table {
  border: 1px solid var(--hr-line);
  border-radius: 16px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.hr-compare-table .hr-table {
  min-width: 32rem;
}

.hr-compare-table .hr-table th:first-child,
.hr-compare-table .hr-table td:first-child {
  position: sticky;
  left: 0;
  z-index: 2;
  background: #fff;
  box-shadow: 1px 0 0 var(--hr-line);
}

.hr-compare-table .hr-table thead th:first-child {
  z-index: 3;
  background: var(--hr-bg);
}

.hr-compare-table .hr-table thead th {
  white-space: normal;
  vertical-align: bottom;
  text-align: center;
  min-width: 7rem;
  max-width: 9.5rem;
  line-height: 1.25;
}

.hr-compare-table .hr-table thead th:first-child {
  min-width: 6.5rem;
  max-width: 8rem;
  text-align: left;
}

.hr-compare-table .hr-table thead th a {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  word-break: break-word;
  hyphens: auto;
}

.hr-compare-table .hr-table tbody th {
  font-size: 0.72rem;
  white-space: normal;
  max-width: 7.5rem;
}

.hr-compare-table .hr-table td {
  text-align: center;
  white-space: nowrap;
}

.hr-compare__logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  margin: 0 auto 0.5rem;
}

.hr-list-block {
  display: none;
}

@media (min-width: 901px) {
  .hr-list-block {
    display: block;
  }
}

.hr-compare-fab {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  background: var(--hr-ink);
  color: #fff !important;
  box-shadow: var(--hr-shadow-lg);
  font-weight: 600;
  font-size: 0.9rem;
}

.hr-compare-fab.is-visible {
  display: inline-flex;
}

.hr-compare-fab__count {
  background: var(--hr-accent);
  color: #111;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 800;
}

/* WP admin bar — sticky header stays below it while scrolling */
body.admin-bar .hr-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .hr-header {
    top: 46px;
  }
}

@media screen and (max-width: 600px) {
  /* WP admin bar becomes position:absolute below 600px — keep header at top */
  body.admin-bar .hr-header {
    top: 0;
  }
}

/* Hero */
.hr-hero {
  padding: 3.5rem 0 2.5rem;
  background:
    radial-gradient(ellipse 80% 60% at 90% -10%, rgba(232, 95, 0, 0.16), transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(17, 24, 39, 0.06), transparent 50%),
    #fff;
  border-bottom: 1px solid var(--hr-line);
}

.hr-hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 860px) {
  .hr-hero__grid {
    grid-template-columns: 1fr;
  }
}

.hr-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: var(--hr-accent-soft);
  color: var(--hr-accent-dark);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hr-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.hr-hero__lead {
  font-size: 1.05rem;
  max-width: 36rem;
  margin-bottom: 1.5rem;
}

.hr-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.hr-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.hr-stat {
  background: var(--hr-card);
  border: 1px solid var(--hr-line);
  border-radius: var(--hr-radius-sm);
  padding: 1rem;
  box-shadow: var(--hr-shadow);
}

.hr-stat__num {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--hr-ink);
}

.hr-stat__label {
  font-size: 0.8rem;
  color: var(--hr-muted);
  margin: 0;
}

.hr-hero-card {
  background: var(--hr-ink);
  color: #fff;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--hr-shadow-lg);
}

.hr-hero-card h3 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.hr-hero-card label {
  display: block;
  font-size: 0.8rem;
  color: #94a3b8;
  margin-bottom: 0.35rem;
}

.hr-hero-card select,
.hr-hero-card input {
  width: 100%;
  margin-bottom: 0.85rem;
  padding: 0.65rem 0.8rem;
  border-radius: 10px;
  border: 1px solid #334155;
  background: #1e293b;
  color: #fff;
  font-family: inherit;
}

.hr-hero-card .hr-btn {
  width: 100%;
  margin-top: 0.25rem;
}

/* Cards */
.hr-grid {
  display: grid;
  gap: 1rem;
}

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

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

.hr-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 900px) {
  .hr-grid--3,
  .hr-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .hr-grid--2,
  .hr-grid--3,
  .hr-grid--4,
  .hr-stats {
    grid-template-columns: 1fr;
  }
}

.hr-card {
  background: var(--hr-card);
  border: 1px solid var(--hr-line);
  border-radius: var(--hr-radius);
  padding: 1.15rem;
  box-shadow: var(--hr-shadow);
}

.hr-card--hover:hover {
  border-color: #cbd5e1;
  box-shadow: var(--hr-shadow-lg);
}

.hr-type-card {
  text-align: left;
  padding: 1.25rem;
}

.hr-type-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--hr-accent-soft);
  color: var(--hr-accent-dark);
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 0.85rem;
}

.hr-type-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.hr-type-card p {
  margin: 0;
  font-size: 0.9rem;
}

/* Provider card */
.hr-provider {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  width: 100%;
}

@media (max-width: 860px) {
  .hr-provider {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .hr-provider__side {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1rem;
    width: 100%;
    padding-top: 0.15rem;
    border-top: 1px solid var(--hr-line);
  }

  .hr-provider__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    width: 100%;
  }

  .hr-provider__actions .hr-check {
    grid-column: 1 / -1;
  }

  .hr-provider__actions .hr-btn {
    width: 100%;
    justify-content: center;
  }
}

.hr-provider__rank {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--hr-bg);
  border: 1px solid var(--hr-line);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--hr-ink-soft);
}

.hr-provider__rank--top {
  background: var(--hr-accent);
  border-color: var(--hr-accent);
  color: #111;
}

.hr-provider__logo,
.hr-rating-card__logo,
.hr-provider-hero__logo,
.hr-plans-table__logo,
.hr-compare__logo {
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--hr-line);
}

.hr-provider__logo.is-placeholder,
.hr-rating-card__logo.is-placeholder,
.hr-provider-hero__logo.is-placeholder,
.hr-plans-table__logo.is-placeholder,
.hr-compare__logo.is-placeholder,
.hr-rank-card__logo.is-placeholder,
.hr-post-card__media.is-placeholder {
  object-fit: cover;
  background: #0f172a;
  padding: 0;
}

.hr-compare__logo {
  display: block;
  margin: 0 auto 0.5rem;
  border-radius: 10px;
}

.hr-plans-table__logo {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  padding: 2px;
  flex-shrink: 0;
}

.hr-provider__main {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  min-width: 0;
}

.hr-provider__meta h3 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
}

.hr-provider__meta h3 a {
  color: inherit;
}

.hr-provider__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.4rem;
}

.hr-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.45rem;
  border-radius: 6px;
  background: var(--hr-bg);
  border: 1px solid var(--hr-line);
  font-size: 0.72rem;
  color: var(--hr-muted);
  font-weight: 500;
}

.hr-provider__scores {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-top: 0.55rem;
  font-size: 0.8rem;
  color: var(--hr-muted);
}

.hr-provider__scores strong {
  color: var(--hr-ink);
  font-weight: 700;
}

.hr-provider__side {
  text-align: right;
  min-width: 130px;
}

.hr-provider__price {
  font-size: 0.85rem;
  color: var(--hr-muted);
  margin: 0.35rem 0 0.75rem;
}

.hr-provider__price strong {
  display: block;
  color: var(--hr-ink);
  font-size: 1.1rem;
}

.hr-provider__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: flex-end;
}

.hr-check {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--hr-muted);
  cursor: pointer;
  user-select: none;
}

.hr-check input {
  accent-color: var(--hr-accent);
}

/* Stars */
.hr-stars {
  display: inline-flex;
  align-items: center;
  gap: 0.12rem;
  color: var(--hr-accent);
  line-height: 1;
  vertical-align: middle;
}

.hr-star {
  display: block;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

.hr-star--empty {
  color: #cbd5e1;
}

.hr-stars__num {
  margin-left: 0.35rem;
  font-weight: 700;
  color: var(--hr-ink);
  letter-spacing: 0;
  font-size: 0.95rem;
  line-height: 1;
}

/* Filters layout */
.hr-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 1.5rem;
  align-items: start;
}

@media (max-width: 860px) {
  .hr-layout {
    grid-template-columns: 1fr;
  }
}

.hr-filters {
  position: sticky;
  top: 84px;
  align-self: start;
  z-index: 20;
}

.hr-filters__toggle {
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--hr-line);
  border-radius: 12px;
  background: #fff;
  color: var(--hr-ink);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 650;
  cursor: pointer;
}

.hr-filters__toggle-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.hr-filters__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.35rem;
  height: 1.35rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: var(--hr-accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
}

.hr-filters__caret {
  transition: transform 0.2s ease;
  opacity: 0.7;
}

.hr-filters.is-open .hr-filters__caret {
  transform: rotate(180deg);
}

.hr-filters__backdrop {
  display: none;
}

.hr-filters__panel {
  background: #fff;
  border: 1px solid var(--hr-line);
  border-radius: 16px;
  padding: 1rem 1.05rem 1.1rem;
}

.hr-filters__panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.hr-filters__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.hr-filters__close {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--hr-muted);
  cursor: pointer;
}

.hr-filters__close:hover {
  background: #f8fafc;
  color: var(--hr-ink);
}

.hr-filters__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 0 0.9rem;
}

.hr-filters__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  max-width: 100%;
  padding: 0.28rem 0.55rem;
  border: 1px solid var(--hr-line);
  border-radius: 999px;
  background: #f8fafc;
  color: var(--hr-ink) !important;
  font-size: 0.78rem;
  font-weight: 550;
  text-decoration: none !important;
  line-height: 1.2;
}

.hr-filters__chip:hover {
  border-color: #cbd5e1;
  background: #fff;
}

.hr-filters__chip--clear {
  background: transparent;
  color: var(--hr-muted) !important;
}

.hr-filters__facets {
  display: grid;
  gap: 0.85rem;
}

.hr-filters__group {
  margin: 0;
  padding: 0 0 0.85rem;
  border-bottom: 1px solid var(--hr-line);
}

.hr-filters__group:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.hr-filters__label {
  display: block;
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--hr-muted);
}

.hr-filters__group > summary.hr-filters__label {
  cursor: pointer;
  list-style: none;
}

.hr-filters__group > summary.hr-filters__label::-webkit-details-marker {
  display: none;
}

.hr-filters__group > summary.hr-filters__label::after {
  content: "";
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  margin-left: 0.4rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.65;
  vertical-align: middle;
}

.hr-filters__group[open] > summary.hr-filters__label::after {
  transform: rotate(-135deg) translateY(-1px);
}

.hr-filters__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hr-filters__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.32rem 0.6rem;
  border: 1px solid var(--hr-line);
  border-radius: 999px;
  background: #fff;
  color: var(--hr-ink-soft);
  font-size: 0.8rem;
  font-weight: 550;
  line-height: 1.25;
  cursor: pointer;
  user-select: none;
}

.hr-filters__link input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  pointer-events: none;
}

.hr-filters__link:hover {
  border-color: #cbd5e1;
  color: var(--hr-ink);
  background: #f8fafc;
}

.hr-filters__link.is-active,
.hr-filters__link:has(input:checked) {
  border-color: rgba(232, 95, 0, 0.35);
  background: rgba(232, 95, 0, 0.08);
  color: var(--hr-ink);
}

.hr-filters__count {
  color: var(--hr-muted);
  font-size: 0.72rem;
  font-weight: 600;
}

.hr-filters__form {
  margin: 0;
}

.hr-filters__refine {
  margin-top: 1rem;
  padding-top: 0.95rem;
  border-top: 1px solid var(--hr-line);
}

.hr-filters__slider {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}

.hr-filters__slider-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: var(--hr-muted);
}

.hr-filters__slider-head strong {
  color: var(--hr-ink);
  font-size: 0.92rem;
  font-weight: 750;
}

.hr-filters__slider input[type="range"] {
  width: 100%;
  margin: 0;
  accent-color: var(--hr-accent);
  cursor: pointer;
}

.hr-filters__slider-scale {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--hr-muted);
}

.hr-filters__field {
  display: grid;
  gap: 0.3rem;
  margin-bottom: 0.65rem;
  font-size: 0.8rem;
  color: var(--hr-muted);
}

.hr-filters__field select,
.hr-filters input[type="number"],
.hr-filters input[type="search"] {
  width: 100%;
  box-sizing: border-box;
  height: 40px;
  padding: 0 0.7rem;
  border: 1px solid var(--hr-line);
  border-radius: 10px;
  font: inherit;
  font-size: 0.9rem;
  color: var(--hr-ink);
  background: #fff;
}

.hr-filters__field select:focus,
.hr-filters input[type="number"]:focus,
.hr-filters input[type="search"]:focus {
  outline: 2px solid rgba(232, 95, 0, 0.25);
  outline-offset: 1px;
  border-color: rgba(232, 95, 0, 0.45);
}

.hr-filters__actions {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.25rem;
}

.hr-catalog-toolbar {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--hr-line);
  border-radius: 14px;
  background: #fff;
}

.hr-catalog-toolbar__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hr-catalog-toolbar__count {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--hr-ink);
}

.hr-catalog-toolbar__reset {
  font-size: 0.82rem;
  font-weight: 650;
  color: var(--hr-accent);
  text-decoration: none;
}

.hr-catalog-toolbar__reset:hover {
  text-decoration: underline;
}

.hr-catalog-toolbar__summary {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--hr-muted);
}

.hr-catalog-toolbar__summary-label {
  color: var(--hr-ink);
  font-weight: 650;
}

.hr-catalog-toolbar__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.hr-catalog-toolbar__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.55rem 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(232, 95, 0, 0.28);
  background: rgba(232, 95, 0, 0.08);
  color: var(--hr-ink);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.2;
}

.hr-catalog-toolbar__chip:hover {
  border-color: var(--hr-accent);
  background: rgba(232, 95, 0, 0.14);
}

@media (max-width: 860px) {
  .hr-filters {
    position: static;
    z-index: 40;
  }

  .hr-filters__toggle {
    display: inline-flex;
  }

  .hr-filters__panel-head .hr-filters__title {
    font-size: 1.05rem;
  }

  .hr-filters__close {
    display: inline-flex;
  }

  .hr-filters__backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 140;
    background: rgba(15, 23, 42, 0.42);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s ease;
  }

  .hr-filters__panel {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 150;
    max-height: min(86vh, 720px);
    margin: 0;
    padding: 1rem 1rem calc(1rem + env(safe-area-inset-bottom, 0px));
    border-radius: 18px 18px 0 0;
    border: 0;
    box-shadow: 0 -18px 48px rgba(15, 23, 42, 0.22);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateY(110%);
    visibility: hidden;
    transition: transform 0.28s ease, visibility 0.28s;
  }

  .hr-filters.is-open .hr-filters__backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .hr-filters.is-open .hr-filters__panel {
    transform: translateY(0);
    visibility: visible;
  }

  body.hr-filters-open {
    overflow: hidden;
  }
}

/* Legacy plan-filters (no sheet panel markup) */
aside.hr-filters:not(:has(.hr-filters__panel)) {
  background: #fff;
  border: 1px solid var(--hr-line);
  border-radius: 16px;
  padding: 1.15rem;
}

aside.hr-filters:not(:has(.hr-filters__panel)) > h3 {
  margin: 0 0 0.85rem;
  font-size: 1rem;
  font-weight: 750;
}

aside.hr-filters:not(:has(.hr-filters__panel)) label {
  display: grid;
  gap: 0.3rem;
  margin-bottom: 0.55rem;
  font-size: 0.85rem;
  color: var(--hr-muted);
}

aside.hr-filters:not(:has(.hr-filters__panel)) select,
aside.hr-filters:not(:has(.hr-filters__panel)) input {
  width: 100%;
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--hr-line);
  border-radius: 10px;
  font: inherit;
  font-size: 0.9rem;
}

/* Single provider */
.hr-provider-hero {
  background: #fff;
  border-bottom: 1px solid var(--hr-line);
  padding: 2rem 0;
}

.hr-provider-hero__top {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
}

.hr-provider-hero__info {
  display: flex;
  gap: 1rem;
  align-items: center;
  min-width: 0;
}

.hr-provider-hero__logo {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  border: 1px solid var(--hr-line);
  object-fit: contain;
  padding: 6px;
  background: #fff;
}

.hr-scoreboard {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
  margin-top: 1.5rem;
}

@media (max-width: 640px) {
  .hr-scoreboard {
    grid-template-columns: repeat(2, 1fr);
  }
}

.hr-scoreboard__item {
  background: var(--hr-bg);
  border: 1px solid var(--hr-line);
  border-radius: var(--hr-radius-sm);
  padding: 0.85rem;
  text-align: center;
}

.hr-scoreboard__item strong {
  display: block;
  font-size: 1.35rem;
  margin-bottom: 0.15rem;
}

.hr-scoreboard__item span {
  font-size: 0.8rem;
  color: var(--hr-muted);
}

.hr-proscons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 640px) {
  .hr-proscons {
    grid-template-columns: 1fr;
  }
}

.hr-pros ul,
.hr-cons ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hr-pros li,
.hr-cons li {
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--hr-line);
  font-size: 0.925rem;
  color: var(--hr-ink-soft);
}

.hr-pros li::before {
  content: "+ ";
  color: var(--hr-ok);
  font-weight: 700;
}

.hr-cons li::before {
  content: "− ";
  color: var(--hr-bad);
  font-weight: 700;
}

/* Tables */
.hr-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--hr-line);
  border-radius: var(--hr-radius);
  background: #fff;
}

.hr-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.hr-table th,
.hr-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--hr-line);
  vertical-align: middle;
}

.hr-table th {
  background: var(--hr-bg);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--hr-muted);
  font-weight: 700;
}

.hr-table tr:last-child td {
  border-bottom: 0;
}

/* Reviews */
.hr-reviews-page {
  max-width: 860px;
}

.hr-reviews-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 0.85rem;
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--hr-line);
  border-radius: 14px;
  background: #fff;
}

.hr-reviews-toolbar__filters {
  margin: 0;
}

.hr-reviews-toolbar__field select {
  height: 40px;
  padding: 0 0.75rem;
  border: 1px solid var(--hr-line);
  border-radius: 10px;
  background: #fff;
  font: inherit;
  font-size: 0.88rem;
  color: var(--hr-ink);
}

.hr-reviews-toolbar__sort {
  display: inline-flex;
  gap: 0.3rem;
  padding: 0.2rem;
  border-radius: 10px;
  background: #f1f5f9;
}

.hr-reviews-toolbar__sort-btn {
  padding: 0.4rem 0.7rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 650;
  color: var(--hr-muted) !important;
  text-decoration: none !important;
}

.hr-reviews-toolbar__sort-btn.is-active {
  background: #fff;
  color: var(--hr-ink) !important;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}

.hr-reviews-toolbar__write {
  margin-left: auto;
}

.hr-reviews-list {
  display: grid;
  gap: 0.85rem;
}

.hr-review {
  padding: 1.15rem 1.2rem 1.2rem;
  border: 1px solid var(--hr-line);
  border-radius: 16px;
  background: #fff;
}

.hr-home-reviews {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  border: 0;
  background: transparent;
  overflow: visible;
}

.hr-home-reviews .hr-review {
  height: 100%;
}

@media (max-width: 720px) {
  .hr-home-reviews {
    grid-template-columns: 1fr;
  }
  .hr-reviews-toolbar__write {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
}

.hr-review__head {
  display: flex;
  justify-content: space-between;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.hr-review__who {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  min-width: 0;
}

.hr-review__avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0f172a, #334155);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.hr-review__author {
  font-weight: 750;
  margin: 0;
  font-size: 0.98rem;
  color: var(--hr-ink);
  letter-spacing: -0.01em;
}

.hr-review__meta {
  font-size: 0.78rem;
  color: var(--hr-muted);
  margin: 0.2rem 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3rem;
}

.hr-review__provider {
  display: inline-flex;
  align-items: center;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  border: 1px solid var(--hr-line);
  background: #f8fafc;
  color: var(--hr-ink) !important;
  font-weight: 600;
  text-decoration: none !important;
}

.hr-review__score {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  flex-shrink: 0;
  line-height: 1;
}

.hr-review__score strong {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hr-review__star {
  display: block;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.hr-review__title {
  margin: 0 0 0.55rem;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.hr-review__bubble {
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #eef2f7;
}

.hr-review__body {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--hr-ink-soft);
}

.hr-review__rating-line {
  margin: 0.7rem 0 0;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--hr-muted);
}

.hr-review__actions {
  margin-top: 0.7rem;
}

.hr-review__actions a {
  font-size: 0.84rem;
  font-weight: 650;
  color: var(--hr-accent) !important;
}

.hr-review.is-compact .hr-review__bubble {
  padding: 0.75rem 0.85rem;
}

.hr-review.is-compact .hr-review__body {
  font-size: 0.88rem;
}

.hr-reviews-compose {
  margin-top: 2rem;
  padding: 1.35rem 1.4rem;
  border: 1px solid var(--hr-line);
  border-radius: 16px;
  background: #fff;
}

.hr-reviews-compose__intro h2 {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
}

.hr-reviews-compose__intro p {
  margin: 0 0 1rem;
  color: var(--hr-muted);
  font-size: 0.92rem;
}

.hr-reviews-compose__form {
  max-width: 560px;
}

/* News cards */
.hr-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.hr-news-grid--home {
  margin: 0;
}

@media (max-width: 900px) {
  .hr-news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .hr-news-grid {
    grid-template-columns: 1fr;
  }
}

.hr-news-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--hr-line);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.hr-news-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.hr-news-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  background: #0f172a;
  overflow: hidden;
}

.hr-news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hr-news-card__ph {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 78% 22%, rgba(232, 95, 0, 0.42), transparent 42%),
    radial-gradient(circle at 18% 80%, rgba(56, 189, 248, 0.18), transparent 40%),
    linear-gradient(145deg, #0f172a 0%, #1e293b 55%, #111827 100%);
}

.hr-news-card__ph-icon {
  opacity: 0.9;
}

.hr-news-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.1rem 1.15rem 1.2rem;
  flex: 1;
}

.hr-news-card__body time {
  font-size: 0.75rem;
  font-weight: 550;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--hr-muted);
}

.hr-news-card__body h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.hr-news-card__body h3 a {
  color: inherit !important;
  text-decoration: none !important;
}

.hr-news-card__body p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--hr-muted);
  flex: 1;
}

.hr-news-card__more {
  margin-top: 0.35rem;
  font-size: 0.84rem;
  font-weight: 650;
  color: var(--hr-accent) !important;
  text-decoration: none !important;
}

.hr-article {
  max-width: 780px;
}

.hr-article__hero {
  margin: 0 0 1.35rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--hr-line);
  aspect-ratio: 16 / 9;
  background: #0f172a;
}

.hr-article__hero.is-placeholder {
  border: 0;
}

.hr-article__thumb {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hr-article__ph {
  min-height: 100%;
}

/* FAQ page */
.hr-faq-page {
  max-width: 820px;
}

.hr-faq-page__lead {
  margin-bottom: 1.25rem;
}

.hr-faq--page .hr-faq__item,
.hr-faq details {
  margin: 0 0 0.65rem;
  border: 1px solid var(--hr-line);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

.hr-faq--page .hr-faq__item summary,
.hr-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.hr-faq summary::-webkit-details-marker {
  display: none;
}

.hr-faq--page .hr-faq__item[open] summary,
.hr-faq details[open] summary {
  border-bottom: 1px solid var(--hr-line);
  color: var(--hr-ink);
}

.hr-faq__answer,
.hr-faq details p {
  margin: 0;
  padding: 0.95rem 1.1rem 1.1rem;
  color: var(--hr-muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

.hr-form {
  display: grid;
  gap: 0.85rem;
}

.hr-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--hr-ink);
}

.hr-form input,
.hr-form textarea,
.hr-form select {
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--hr-line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
}

.hr-form textarea {
  min-height: 120px;
  resize: vertical;
}

.hr-form__hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.hr-form-msg {
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
  display: none;
}

.hr-form-msg.is-ok {
  display: block;
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.hr-form-msg.is-err {
  display: block;
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* Blog */
.hr-post-card h3 {
  font-size: 1.05rem;
  margin: 0.75rem 0 0.4rem;
}

.hr-post-card__meta {
  font-size: 0.8rem;
  color: var(--hr-muted);
  margin: 0;
}

.hr-post-card__excerpt {
  font-size: 0.9rem;
  margin: 0.5rem 0 0;
}

.hr-content {
  max-width: 720px;
}

.hr-content img {
  border-radius: var(--hr-radius-sm);
}

.hr-breadcrumb {
  font-size: 0.85rem;
  color: var(--hr-muted);
  margin-bottom: 1rem;
}

.hr-breadcrumb a {
  color: var(--hr-muted);
}

/* FAQ on provider pages */
.hr-faq:not(.hr-faq--page) details {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--hr-line);
  border-radius: 0;
  padding: 0.95rem 0;
  margin: 0;
}

.hr-faq:not(.hr-faq--page) summary {
  cursor: pointer;
  font-weight: 650;
  list-style: none;
  color: var(--hr-ink);
  display: block;
  padding: 0;
}

.hr-faq:not(.hr-faq--page) summary::-webkit-details-marker {
  display: none;
}

.hr-faq:not(.hr-faq--page) details[open] summary {
  margin-bottom: 0.45rem;
  border-bottom: 0;
}

.hr-faq:not(.hr-faq--page) p {
  margin: 0;
  padding: 0;
  font-size: 0.925rem;
  color: var(--hr-muted);
  max-width: 40rem;
}

/* Footer */
.hr-footer {
  background: #0b1220;
  color: #94a3b8;
  padding: 3.25rem 0 1.5rem;
  margin-top: 0;
  border-top: 1px solid #1e293b;
}

.hr-footer a {
  color: #cbd5e1;
}

.hr-footer a:hover {
  color: #fff;
}

.hr-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 2fr);
  gap: 2.5rem;
  margin-bottom: 2.25rem;
}

.hr-footer__brand {
  margin-bottom: 0.75rem;
}

.hr-footer__brand.hr-logo {
  display: inline-flex;
}

.hr-footer__brand .hr-logo__word {
  color: #fff;
}

.hr-footer__brand-col p {
  margin: 0;
  max-width: 28ch;
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.5;
}

.hr-footer__nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.hr-footer h4 {
  color: #fff;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 0.85rem;
  font-weight: 700;
}

.hr-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hr-footer li {
  margin-bottom: 0.45rem;
}

.hr-footer li a {
  font-size: 0.9rem;
  color: #94a3b8 !important;
}

.hr-footer li a:hover {
  color: #fff !important;
}

.hr-footer__bottom {
  border-top: 1px solid #1e293b;
  padding-top: 1.15rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: #64748b;
}

@media (max-width: 800px) {
  .hr-footer__top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hr-footer__nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .hr-footer__nav {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 1rem;
  }
}

@media (max-width: 420px) {
  .hr-footer__nav {
    grid-template-columns: 1fr;
  }
}

.hr-disclaimer {
  font-size: 0.8rem;
  color: var(--hr-muted);
  background: var(--hr-accent-soft);
  border: 1px solid #fde68a;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  margin: 1rem 0 0;
}

.hr-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--hr-muted);
}

.hr-pagination {
  display: flex;
  gap: 0.4rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hr-pagination a,
.hr-pagination span {
  display: inline-flex;
  min-width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--hr-line);
  background: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0 0.5rem;
}

.hr-pagination .current {
  background: var(--hr-ink);
  color: #fff;
  border-color: var(--hr-ink);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.alignwide {
  max-width: var(--hr-container);
  margin-inline: auto;
}

.wp-block-image {
  margin: 1.25rem 0;
}
