:root {
  --apphr-ink: #17202c;
  --apphr-muted: #5d6974;
  --apphr-line: rgba(23, 32, 44, 0.14);
  --apphr-surface: rgba(255, 255, 255, 0.76);
  --apphr-teal: #007f74;
  --apphr-teal-2: #0f9b8e;
  --apphr-blue: #2f65b7;
  --apphr-coral: #e85d4f;
  --apphr-gold: #f2b84b;
  --apphr-bg: #f7fbfa;
  --apphr-page-bg:
    radial-gradient(circle at 78% 8%, rgba(47, 101, 183, 0.18), transparent 28rem),
    radial-gradient(circle at 8% 18%, rgba(242, 184, 75, 0.17), transparent 26rem),
    linear-gradient(180deg, #f7fbfa 0%, #ffffff 50%, #f6faf8 100%);
  --apphr-serif: Georgia, "Times New Roman", serif;
  --apphr-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body.apphr-front-page,
body.apphr-public-page {
  margin: 0;
  color: var(--apphr-ink);
  background: var(--apphr-page-bg);
  font-family: var(--apphr-sans);
  letter-spacing: 0;
}

.apphr-site-shell {
  width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background: var(--apphr-page-bg);
}

.apphr-hero {
  position: relative;
  min-height: 574px;
  padding: 30px 38px 30px;
  border-bottom: 1px solid var(--apphr-line);
  overflow: hidden;
}

.apphr-hero__sky,
.apphr-hero__map,
.apphr-hero__halo {
  position: absolute;
  pointer-events: none;
}

.apphr-hero__sky {
  inset: 0;
  background:
    linear-gradient(100deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.84) 27%, rgba(255,255,255,.34) 50%, rgba(230,244,255,.18) 100%),
    radial-gradient(circle at 56% 10%, rgba(255,255,255,.88), transparent 24rem);
}

.apphr-hero__map {
  display: none;
}

.apphr-hero__halo {
  right: 16%;
  top: 26%;
  width: 19rem;
  height: 19rem;
  border: 1px solid rgba(242, 184, 75, .45);
  border-radius: 50%;
  box-shadow: 0 0 120px rgba(242, 184, 75, .22);
}

.apphr-nav {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
}

.apphr-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--apphr-ink);
  text-decoration: none;
}

.apphr-brand img {
  width: 54px;
  height: 54px;
}

.apphr-brand span {
  display: block;
  font-size: 34px;
  line-height: 1;
}

.apphr-brand strong {
  display: inline;
  font-weight: 800;
}

.apphr-brand small {
  display: block;
  margin-top: 8px;
  color: var(--apphr-teal);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.apphr-menu {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-left: auto;
}

.apphr-menu a,
.apphr-signin,
.apphr-footer a {
  color: var(--apphr-ink);
  text-decoration: none;
}

.apphr-menu a {
  font-size: 15px;
}

.apphr-register-menu {
  position: relative;
  z-index: 45;
}

.apphr-register-menu summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 11px 17px;
  border: 1px solid rgba(0, 139, 122, .28);
  border-radius: 8px;
  color: var(--apphr-teal-dark);
  background: rgba(255, 255, 255, .46);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(14px);
}

.apphr-register-menu summary::marker,
.apphr-register-menu summary::-webkit-details-marker {
  display: none;
}

.apphr-register-menu summary::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.apphr-register-menu[open] summary::after {
  transform: translateY(2px) rotate(225deg);
}

.apphr-register-menu__panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 230px;
  padding: 8px;
  border: 1px solid rgba(214, 226, 225, .94);
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 20px 46px rgba(23, 32, 44, .14);
}

.apphr-register-menu__panel a {
  display: block;
  padding: 11px 12px;
  border-radius: 6px;
  color: var(--apphr-ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.apphr-register-menu__panel a:hover {
  background: rgba(0, 139, 122, .09);
  color: var(--apphr-teal-dark);
}

.apphr-signin {
  min-width: 118px;
  padding: 12px 21px;
  border: 1px solid rgba(23,32,44,.55);
  border-radius: 8px;
  text-align: center;
  background: rgba(255, 255, 255, .38);
  backdrop-filter: blur(14px);
}

.apphr-signin.is-authenticated {
  border-color: rgba(0, 139, 122, .36);
  color: var(--apphr-teal-dark);
  background: rgba(234, 248, 246, .76);
}

.apphr-language {
  display: flex;
  align-items: center;
  min-height: 38px;
  position: relative;
  z-index: 40;
  overflow: visible;
}

.apphr-language .gtranslate_wrapper,
.apphr-language .gt_switcher_wrapper {
  position: relative !important;
  font-family: var(--apphr-sans) !important;
  overflow: visible !important;
}

.apphr-language select,
.apphr-language .gt_selector,
.apphr-language .gt_switcher {
  min-height: 36px;
  width: 142px;
  max-width: 142px;
  border: 1px solid rgba(23,32,44,.24) !important;
  border-radius: 8px !important;
  background-color: rgba(255,255,255,.58) !important;
  color: var(--apphr-ink) !important;
  font-family: var(--apphr-sans) !important;
  font-size: 13px !important;
  position: relative !important;
  overflow: visible !important;
}

.apphr-language .gt_switcher .gt_selected {
  position: relative !important;
  z-index: 2;
}

.apphr-language .gt_switcher .gt_selected a,
.apphr-language .gt_switcher .gt_option a {
  box-sizing: border-box !important;
  width: 100% !important;
}

.apphr-language .gt_switcher .gt_option {
  position: absolute !important;
  top: calc(100% + 4px) !important;
  right: 0 !important;
  left: auto !important;
  bottom: auto !important;
  width: 142px !important;
  max-height: min(360px, calc(100vh - 96px)) !important;
  overflow-y: auto !important;
  border: 1px solid rgba(23,32,44,.18) !important;
  border-radius: 8px !important;
  background: rgba(255,255,255,.96) !important;
  box-shadow: 0 18px 40px rgba(23,32,44,.16);
  z-index: 1000;
}

.apphr-language--native {
  display: block;
}

.apphr-language--native summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 92px;
  min-height: 38px;
  border: 1px solid rgba(23,32,44,.24);
  border-radius: 8px;
  background-color: rgba(255,255,255,.58);
  color: var(--apphr-ink);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.apphr-language--native summary::-webkit-details-marker {
  display: none;
}

.apphr-language--native summary::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.apphr-language--native[open] summary::after {
  transform: translateY(2px) rotate(225deg);
}

.apphr-language__menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 80;
  width: 220px;
  max-height: min(420px, calc(100vh - 96px));
  overflow-y: auto;
  border: 1px solid rgba(23,32,44,.16);
  border-radius: 8px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 24px 60px rgba(23,32,44,.16);
  padding: 8px;
}

.apphr-language__menu a {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  border-radius: 6px;
  padding: 7px 8px;
  color: var(--apphr-ink);
  text-decoration: none;
}

.apphr-language__menu a:hover,
.apphr-language__menu a.is-active {
  background: rgba(13,124,111,.09);
}

.apphr-language__menu small {
  color: var(--apphr-muted);
  font-size: 11px;
  font-weight: 700;
}

.apphr-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1324px;
  margin: 64px auto 0;
}

.apphr-hero__content .col-lg-5 {
  position: relative;
  z-index: 4;
}

.apphr-hero__content .col-lg-7 {
  position: relative;
  z-index: 2;
}

.apphr-kicker {
  margin: 0 0 22px;
  color: var(--apphr-teal);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.apphr-hero h1 {
  margin: 0;
  max-width: 610px;
  font-family: var(--apphr-serif);
  font-size: 58px;
  line-height: .98;
  font-weight: 700;
}

.apphr-lead {
  max-width: 470px;
  margin: 28px 0 0;
  color: #313c48;
  font-size: 20px;
  line-height: 1.48;
}

.apphr-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 30px 0 0;
}

.apphr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-width: 224px;
  padding: 18px 26px;
  border: 1px solid rgba(23,32,44,.58);
  border-radius: 8px;
  color: var(--apphr-ink);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.apphr-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(23, 32, 44, .14);
}

.apphr-btn--primary {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(135deg, var(--apphr-teal), var(--apphr-teal-2));
}

.apphr-btn--ghost {
  background: rgba(255,255,255,.56);
  backdrop-filter: blur(12px);
}

.apphr-search-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  width: min(720px, calc(100vw - 100px));
  margin: 38px 0 0;
}

.apphr-search-strip__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  white-space: nowrap;
}

.apphr-search-strip svg {
  width: 22px;
  height: 22px;
  fill: var(--apphr-ink);
}

.apphr-search-strip a {
  min-height: 34px;
  padding: 8px 17px;
  border: 1px solid var(--apphr-line);
  border-radius: 999px;
  color: var(--apphr-ink);
  font-size: 13px;
  text-decoration: none;
  background: rgba(255,255,255,.56);
}

.apphr-hero-visual {
  position: relative;
  min-height: 426px;
}

.apphr-hero-visual::before {
  display: none;
}

.apphr-hero-visual__people {
  position: absolute;
  z-index: 1;
  right: -60px;
  top: -122px;
  width: min(900px, 64vw);
  max-width: none;
  border-radius: 0;
  filter: drop-shadow(0 28px 34px rgba(35, 64, 77, .12));
  mix-blend-mode: normal;
}

.apphr-readiness-card {
  position: absolute;
  z-index: 5;
  right: 0;
  top: -48px;
  width: 358px;
  border: 1px solid rgba(23, 32, 44, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 24px 70px rgba(35, 64, 77, .17);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.apphr-card-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--apphr-line);
  font-size: 13px;
}

.apphr-card-head strong {
  color: var(--apphr-teal);
  font-size: 12px;
}

.apphr-country-line {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
}

.apphr-country-line h2 {
  margin: 0;
  font-size: 21px;
}

.apphr-country-line p {
  margin: 5px 0 0;
  color: var(--apphr-muted);
  font-size: 13px;
}

.apphr-flag {
  display: inline-block;
  width: 42px;
  height: 30px;
  border-radius: 4px;
  box-shadow: inset 0 0 0 1px rgba(23,32,44,.12);
  flex: 0 0 auto;
}

.apphr-flag--ro {
  background: linear-gradient(90deg, #002b7f 0 33%, #fcd116 33% 66%, #ce1126 66%);
}

.apphr-flag--de {
  background: linear-gradient(180deg, #000 0 33%, #dd0000 33% 66%, #ffce00 66%);
}

.apphr-flag--pl {
  background: linear-gradient(180deg, #fff 0 50%, #dc143c 50%);
}

.apphr-score {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-left: auto;
  border-radius: 50%;
  background:
    conic-gradient(var(--apphr-teal) calc(var(--score) * 1%), rgba(23,32,44,.1) 0),
    #fff;
}

.apphr-score::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: #fff;
}

.apphr-score span {
  position: relative;
  z-index: 1;
  font-size: 13px;
  font-weight: 800;
}

.apphr-checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--apphr-line);
}

.apphr-checklist li {
  position: relative;
  display: grid;
  gap: 3px;
  padding: 13px 44px 13px 50px;
  border-bottom: 1px solid rgba(23,32,44,.08);
}

.apphr-checklist li::before {
  content: "\2713";
  position: absolute;
  left: 20px;
  top: 14px;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  background: #63b887;
}

.apphr-checklist span {
  font-size: 13px;
  font-weight: 700;
}

.apphr-checklist small {
  color: var(--apphr-muted);
  font-size: 12px;
}

.apphr-card-link {
  display: flex;
  justify-content: space-between;
  padding: 18px 20px;
  color: var(--apphr-ink);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.apphr-audience {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--apphr-line);
  background: rgba(255,255,255,.78);
}

.apphr-audience__panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 188px;
  padding: 26px 28px;
  border-right: 1px solid var(--apphr-line);
  background: rgba(255,255,255,.82);
  overflow: hidden;
}

.apphr-audience__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: .98;
}

.apphr-audience__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255,255,255,.82) 0%, rgba(255,255,255,.48) 36%, rgba(255,255,255,.16) 64%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}

.apphr-audience__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  width: min(100%, 430px);
  padding: 0;
  border: 0;
  background: transparent;
  filter:
    drop-shadow(0 0 10px rgba(255, 255, 255, .98))
    drop-shadow(0 0 26px rgba(255, 255, 255, .88))
    drop-shadow(0 12px 24px rgba(23, 32, 44, .14));
}

.apphr-audience__panel--candidate {
  justify-content: flex-end;
  padding-left: 158px;
  padding-right: 28px;
}

.apphr-audience__panel--candidate::before {
  background-image: url("../img/template/audience-candidate.jpg");
  background-position: left center;
}

.apphr-audience__panel--candidate::after {
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.14) 36%, rgba(255,255,255,.48) 66%, rgba(255,255,255,.82) 100%);
}

.apphr-audience__panel--company::before {
  background-image: url("../img/template/audience-company.jpg");
  background-position: right center;
}

.apphr-audience__panel--agency::before {
  background-image: url("../img/template/audience-agency.jpg");
  background-position: right center;
}

.apphr-audience__panel--company,
.apphr-audience__panel--agency {
  padding-right: 178px;
}

.apphr-audience__panel--agency {
  border-right: 0;
}

.apphr-audience__panel--company::after,
.apphr-audience__panel--agency::after {
  background: linear-gradient(90deg, rgba(255,255,255,.84) 0%, rgba(255,255,255,.52) 38%, rgba(255,255,255,.18) 66%, rgba(255,255,255,0) 100%);
}

.apphr-audience__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--apphr-teal), var(--apphr-teal-2));
  box-shadow:
    0 0 0 6px rgba(255, 255, 255, .46),
    0 0 28px rgba(255, 255, 255, .96),
    0 12px 24px rgba(23, 32, 44, .16);
}

.apphr-audience__panel--company .apphr-audience__icon {
  background: linear-gradient(135deg, var(--apphr-blue), #6f99d4);
}

.apphr-audience__panel--agency .apphr-audience__icon {
  background: linear-gradient(135deg, var(--apphr-coral), var(--apphr-gold));
}

.apphr-audience__icon svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.apphr-audience__copy {
  min-width: 0;
}

.apphr-audience h2,
.apphr-countries h2,
.apphr-engine h2 {
  margin: 0;
  font-family: var(--apphr-serif);
  font-weight: 700;
}

.apphr-audience h2 {
  font-size: 31px;
  text-shadow:
    0 0 8px #fff,
    0 0 20px rgba(255, 255, 255, .96),
    0 1px 0 rgba(255, 255, 255, .76);
}

.apphr-audience p {
  max-width: 360px;
  margin: 12px 0 16px;
  color: #3b4650;
  line-height: 1.5;
  text-shadow:
    0 0 7px #fff,
    0 0 18px rgba(255, 255, 255, .96),
    0 1px 0 rgba(255, 255, 255, .84);
}

.apphr-audience a {
  color: var(--apphr-teal);
  font-weight: 800;
  text-decoration: none;
  text-shadow:
    0 0 8px #fff,
    0 0 18px rgba(255, 255, 255, .94);
}

.apphr-audience__panel--company a {
  color: var(--apphr-blue);
}

.apphr-audience__panel--agency a {
  color: var(--apphr-coral);
}

.apphr-countries,
.apphr-proof,
.apphr-stats,
.apphr-contact,
.apphr-engine,
.apphr-articles,
.apphr-footer {
  box-sizing: border-box;
  width: min(100%, 1400px);
  margin-right: auto;
  margin-left: auto;
}

.apphr-countries {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 26px;
  align-items: center;
  padding: 30px 46px;
  border-bottom: 1px solid var(--apphr-line);
  background: linear-gradient(180deg, #fff, #f8fbfa);
}

.apphr-section-title p {
  margin: 0 0 10px;
  font-family: var(--apphr-serif);
  font-size: 28px;
  font-weight: 700;
}

.apphr-section-title h2 {
  color: var(--apphr-muted);
  font-family: var(--apphr-sans);
  font-size: 16px;
  font-weight: 400;
}

.apphr-country-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.apphr-country-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  min-height: 124px;
  padding: 10px;
  border: 1px solid var(--apphr-line);
  border-radius: 8px;
  color: var(--apphr-ink);
  text-decoration: none;
  background: #f6fbfb;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.apphr-country-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
  transition: transform .3s ease;
}

.apphr-country-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255,255,255,.82) 0%, rgba(255,255,255,.54) 34%, rgba(255,255,255,.18) 62%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}

.apphr-country-card__content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: start;
  justify-items: start;
  width: min(70%, 236px);
  padding: 14px;
  border: 0;
  background: transparent;
  filter:
    drop-shadow(0 0 8px rgba(255, 255, 255, .98))
    drop-shadow(0 0 24px rgba(255, 255, 255, .9))
    drop-shadow(0 10px 22px rgba(23, 32, 44, .14));
}

.apphr-country-card--romania::after {
  background-image: url("../img/template/country-romania.jpg");
}

.apphr-country-card--germany::after {
  background-image: url("../img/template/country-germany.jpg");
}

.apphr-country-card--poland::after {
  background-image: url("../img/template/country-poland.jpg");
}

.apphr-country-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0,127,116,.55);
  box-shadow: 0 18px 42px rgba(23,32,44,.11);
}

.apphr-country-card:hover::after {
  transform: scale(1.06);
}

.apphr-country-card strong {
  margin-top: 8px;
  font-size: 23px;
  line-height: 1.08;
  text-shadow:
    0 0 8px #fff,
    0 0 18px rgba(255, 255, 255, .96),
    0 1px 0 rgba(255, 255, 255, .78);
}

.apphr-country-card small {
  justify-self: start;
  margin-top: 12px;
  padding: 3px 9px;
  border: 1px solid rgba(0,127,116,.28);
  border-radius: 999px;
  color: var(--apphr-teal);
  font-size: 11px;
  font-style: normal;
  text-transform: uppercase;
  background: rgba(255,255,255,.36);
  box-shadow: 0 0 18px rgba(255,255,255,.86);
}

.apphr-country-card em {
  margin-top: 8px;
  color: var(--apphr-muted);
  font-size: 13px;
  font-style: normal;
  line-height: 1.35;
  text-shadow:
    0 0 7px #fff,
    0 0 16px rgba(255, 255, 255, .96),
    0 1px 0 rgba(255, 255, 255, .78);
}

.apphr-country-card--active {
  border-color: rgba(0,127,116,.64);
}

.apphr-country-card--eu {
  display: grid;
  align-content: center;
  padding: 20px;
  background: #fff;
}

.apphr-country-card--eu::before,
.apphr-country-card--eu::after {
  display: none;
}

.apphr-eu-stars {
  color: #1e4ca8;
  font-size: 24px;
}

.apphr-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 24px 46px;
  background: rgba(255,255,255,.82);
}

.apphr-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 42px 46px;
  border-bottom: 1px solid var(--apphr-line);
  background:
    linear-gradient(90deg, rgba(255,255,255,.92), rgba(247,251,250,.84)),
    radial-gradient(circle at 84% 30%, rgba(47,101,183,.12), transparent 18rem);
}

.apphr-stats div {
  min-height: 148px;
  padding: 4px 30px;
  border-right: 1px solid var(--apphr-line);
}

.apphr-stats div:last-child {
  border-right: 0;
}

.apphr-stats span {
  display: block;
  color: var(--apphr-teal);
  font-family: var(--apphr-serif);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}

.apphr-stats strong {
  display: block;
  margin-top: 14px;
  font-size: 18px;
}

.apphr-stats small {
  display: block;
  max-width: 230px;
  margin-top: 9px;
  color: var(--apphr-muted);
  font-size: 13px;
  line-height: 1.42;
}

.apphr-contact {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(420px, 1fr);
  gap: 38px;
  align-items: center;
  padding: 62px 46px 70px;
  border-bottom: 1px solid var(--apphr-line);
  background:
    linear-gradient(120deg, rgba(255,255,255,.96), rgba(247,251,250,.78)),
    radial-gradient(circle at 88% 18%, rgba(0,127,116,.12), transparent 18rem);
}

.apphr-contact h2 {
  max-width: 520px;
  margin: 0;
  font-family: var(--apphr-serif);
  font-size: 42px;
  line-height: 1.06;
}

.apphr-contact__copy p:not(.apphr-kicker) {
  max-width: 540px;
  margin: 22px 0 0;
  color: #3b4650;
  font-size: 17px;
  line-height: 1.55;
}

.apphr-contact__signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.apphr-contact__signals span {
  padding: 8px 13px;
  border: 1px solid rgba(0,127,116,.22);
  border-radius: 999px;
  color: var(--apphr-teal);
  font-size: 12px;
  font-weight: 800;
  background: rgba(255,255,255,.72);
}

.apphr-contact__form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--apphr-line);
  border-radius: 8px;
  background: rgba(255,255,255,.84);
  box-shadow: 0 24px 70px rgba(35,64,77,.12);
}

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

.apphr-contact__form label {
  display: grid;
  gap: 8px;
  margin: 0;
}

.apphr-contact__form label span {
  color: var(--apphr-muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.apphr-contact__form input,
.apphr-contact__form select,
.apphr-contact__form textarea {
  width: 100%;
  border: 1px solid rgba(23,32,44,.18);
  border-radius: 8px;
  color: var(--apphr-ink);
  background: rgba(255,255,255,.9);
  font: inherit;
}

.apphr-contact__form input,
.apphr-contact__form select {
  min-height: 48px;
  padding: 0 14px;
}

.apphr-contact__form textarea {
  resize: vertical;
  min-height: 128px;
  padding: 13px 14px;
}

.apphr-contact__form button {
  width: min(240px, 100%);
  cursor: pointer;
}

.apphr-contact__notice {
  margin: 0;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
}

.apphr-contact__notice--success {
  color: #00695f;
  background: rgba(0,127,116,.1);
}

.apphr-contact__notice--error {
  color: #9f2b23;
  background: rgba(232,93,79,.12);
}

.apphr-contact__trap {
  position: absolute;
  left: -9999px;
}

.apphr-route-contact,
.apphr-contact--page {
  width: min(100%, 1400px);
  margin: 0 auto;
  border-top: 1px solid rgba(23,32,44,.08);
}

.apphr-contact--page {
  align-items: start;
  background:
    linear-gradient(120deg, rgba(255,255,255,.98), rgba(244,250,248,.86)),
    radial-gradient(circle at 88% 18%, rgba(47,101,183,.11), transparent 20rem);
}

.apphr-route-contact {
  background:
    linear-gradient(120deg, rgba(255,255,255,.96), rgba(239,248,246,.8)),
    radial-gradient(circle at 86% 12%, rgba(0,127,116,.11), transparent 20rem);
}

.apphr-contact-seo {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(100%, 1400px);
  margin: 0 auto;
  padding: 0 46px 68px;
}

.apphr-contact-seo article {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--apphr-line);
  border-radius: 8px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 26px 70px rgba(35,64,77,.08);
}

.apphr-contact-seo h2 {
  margin: 0;
  font-size: 25px;
  font-weight: 650;
  line-height: 1.14;
}

.apphr-contact-seo p {
  margin: 16px 0 0;
  color: var(--apphr-muted);
  line-height: 1.62;
}

.apphr-proof div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: center;
  padding: 0 30px;
  border-right: 1px solid var(--apphr-line);
}

.apphr-proof div:last-child {
  border-right: 0;
}

.apphr-proof img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.apphr-proof span {
  color: #37424d;
  font-size: 14px;
  line-height: 1.35;
}

.apphr-proof strong {
  color: var(--apphr-ink);
  font-size: 15px;
}

.apphr-engine {
  padding: 74px 46px 84px;
  background:
    radial-gradient(circle at 16% 30%, rgba(242,184,75,.18), transparent 24rem),
    radial-gradient(circle at 88% 48%, rgba(47,101,183,.12), transparent 24rem),
    #f9fcfb;
}

.apphr-articles {
  padding: 68px 46px 76px;
  border-top: 1px solid rgba(23,32,44,.08);
  background: linear-gradient(180deg, #fff, #f7fbfa);
}

.apphr-articles__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.apphr-articles h2 {
  margin: 0;
  font-family: var(--apphr-serif);
  font-size: 42px;
  line-height: 1;
}

.apphr-articles__head a {
  color: var(--apphr-teal);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.apphr-article-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.apphr-article-card {
  display: grid;
  align-content: start;
  min-height: 226px;
  padding: 22px;
  border: 1px solid var(--apphr-line);
  border-radius: 8px;
  color: var(--apphr-ink);
  text-decoration: none;
  background:
    linear-gradient(160deg, rgba(255,255,255,.96), rgba(255,255,255,.74)),
    radial-gradient(circle at 92% 10%, rgba(0,127,116,.1), transparent 10rem);
  box-shadow: 0 22px 50px rgba(35,64,77,.07);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.apphr-article-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0,127,116,.42);
  box-shadow: 0 26px 64px rgba(35,64,77,.11);
}

.apphr-article-card small {
  color: var(--apphr-gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.apphr-article-card strong {
  margin-top: 28px;
  font-size: 20px;
  line-height: 1.16;
}

.apphr-article-card span {
  margin-top: 14px;
  color: var(--apphr-muted);
  font-size: 13px;
  line-height: 1.45;
}

.apphr-article-card em {
  align-self: end;
  margin-top: 24px;
  color: var(--apphr-teal);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.apphr-engine .container-fluid {
  max-width: 1440px;
}

.apphr-engine h2 {
  max-width: 560px;
  font-size: 44px;
  line-height: 1.08;
}

.apphr-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.apphr-flow div {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--apphr-line);
  border-radius: 8px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 20px 55px rgba(35,64,77,.08);
}

.apphr-flow span {
  color: var(--apphr-gold);
  font-size: 13px;
  font-weight: 900;
}

.apphr-flow strong {
  display: block;
  margin: 28px 0 12px;
  font-size: 19px;
}

.apphr-flow small {
  color: var(--apphr-muted);
  font-size: 13px;
  line-height: 1.45;
}

.apphr-site-shell--inner {
  overflow: visible;
}

.apphr-inner-hero {
  position: relative;
  min-height: 430px;
  padding: 30px 38px 74px;
  border-bottom: 1px solid var(--apphr-line);
  overflow: hidden;
  background: var(--apphr-page-bg);
  --apphr-inner-hero-image: url("../img/template/hero-workers.png");
  --apphr-inner-hero-position: right center;
  --apphr-inner-hero-opacity: 1;
}

.apphr-inner-hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  background-image: var(--apphr-inner-hero-image);
  background-repeat: no-repeat;
  background-position: var(--apphr-inner-hero-position);
  background-size: cover;
  opacity: var(--apphr-inner-hero-opacity);
}

.apphr-inner-hero .apphr-hero__sky {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255,255,255,.99) 0%, rgba(255,255,255,.92) 31%, rgba(255,255,255,.56) 56%, rgba(255,255,255,.18) 78%, rgba(255,255,255,0) 100%),
    linear-gradient(180deg, rgba(247,251,250,.04) 0%, rgba(247,251,250,.2) 100%);
}

.apphr-inner-hero .apphr-hero__halo {
  z-index: 1;
  opacity: .12;
}

.apphr-inner-hero--candidate {
  --apphr-inner-hero-image: url("../img/template/hero-candidate-clear.jpg");
  --apphr-inner-hero-position: right top;
}

.apphr-inner-hero--company {
  --apphr-inner-hero-image: url("../img/template/hero-company-clear.jpg");
  --apphr-inner-hero-position: right top;
}

.apphr-inner-hero--agency {
  --apphr-inner-hero-image: url("../img/template/hero-agency-clear.jpg");
  --apphr-inner-hero-position: right top;
}

.apphr-inner-hero--romania {
  --apphr-inner-hero-image: url("../img/template/hero-countries-clear.jpg");
  --apphr-inner-hero-position: right center;
}

.apphr-inner-hero--articles,
.apphr-inner-hero--article,
.apphr-inner-hero--page {
  --apphr-inner-hero-image: url("../img/template/hero-articles-clear.jpg");
  --apphr-inner-hero-position: right center;
}

.apphr-inner-hero--expanded {
  min-height: 560px;
  padding-bottom: 104px;
}

.apphr-inner-hero--countries {
  --apphr-inner-hero-image: url("../img/template/hero-countries-clear.jpg");
  --apphr-inner-hero-position: right center;
}

.apphr-nav--inner {
  position: relative;
  z-index: 3;
  margin-bottom: 76px;
}

.apphr-menu a.is-active {
  color: var(--apphr-teal);
  font-weight: 650;
}

.apphr-inner-hero__content,
.apphr-article-hero,
.apphr-blog-list,
.apphr-single-article,
.apphr-related-articles {
  position: relative;
  z-index: 3;
  box-sizing: border-box;
  width: min(100%, 1400px);
  margin-right: auto;
  margin-left: auto;
}

.apphr-inner-hero__content {
  max-width: 760px;
  margin-left: calc((100% - min(100%, 1400px)) / 2);
  text-shadow:
    0 1px 0 rgba(255,255,255,.82),
    0 0 20px rgba(255,255,255,.92),
    0 0 52px rgba(255,255,255,.72);
}

.apphr-site-shell--inner .apphr-kicker {
  font-weight: 650;
}

.apphr-inner-hero h1,
.apphr-article-hero h1,
.apphr-blog-list h2,
.apphr-single-article__cta h2,
.apphr-related-articles h2,
.apphr-empty-state h2 {
  margin: 0;
  font-family: var(--apphr-serif);
  color: var(--apphr-ink);
  font-weight: 500;
  letter-spacing: 0;
}

.apphr-inner-hero h1,
.apphr-article-hero h1 {
  max-width: 760px;
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.06;
}

.apphr-inner-hero__content > p:not(.apphr-kicker),
.apphr-article-hero .apphr-article-meta,
.apphr-single-article__cta p,
.apphr-empty-state p {
  color: #3b4650;
  font-size: 18px;
  line-height: 1.58;
}

.apphr-inner-hero__content > p:not(.apphr-kicker) {
  max-width: 700px;
  margin: 22px 0 0;
}

.apphr-inner-hero--expanded .apphr-inner-hero__content > p:not(.apphr-kicker) {
  max-width: 760px;
}

.apphr-inner-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.apphr-inner-hero__actions .apphr-btn {
  min-width: 218px;
  background-color: rgba(255,255,255,.62);
}

.apphr-role-switch {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  box-sizing: border-box;
  width: min(100%, 1400px);
  margin: 0 auto;
  padding: 18px 46px 20px;
  border-bottom: 1px solid var(--apphr-line);
  background: rgba(247,251,250,.92);
}

.apphr-role-switch a {
  display: grid;
  gap: 5px;
  min-height: 72px;
  padding: 16px 18px;
  border: 1px solid rgba(5,127,117,.16);
  border-radius: 8px;
  background: rgba(255,255,255,.72);
  color: var(--apphr-ink);
  text-decoration: none;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease, background .18s ease;
}

.apphr-role-switch a:hover,
.apphr-role-switch a:focus-visible {
  border-color: rgba(5,127,117,.44);
  box-shadow: 0 18px 38px rgba(16,24,40,.08);
  transform: translateY(-1px);
}

.apphr-role-switch a.is-active {
  border-color: rgba(5,127,117,.72);
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(231,250,246,.92));
  box-shadow: inset 0 0 0 1px rgba(5,127,117,.18), 0 20px 42px rgba(5,127,117,.12);
}

.apphr-role-switch strong {
  color: var(--apphr-ink);
  font-size: 18px;
  line-height: 1.18;
}

.apphr-role-switch span {
  color: #52616e;
  font-size: 14px;
  line-height: 1.36;
}

.apphr-blog-list,
.apphr-related-articles {
  padding: 70px 46px 76px;
}

.apphr-blog-list__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.apphr-blog-list__head h2,
.apphr-related-articles h2 {
  font-size: 42px;
  line-height: 1;
}

.apphr-blog-list__head a,
.apphr-back-link,
.apphr-pagination a,
.apphr-pagination span {
  color: var(--apphr-teal);
  font-weight: 650;
  text-decoration: none;
}

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

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

.apphr-blog-card {
  display: grid;
  align-content: start;
  min-height: 278px;
  padding: 26px;
  border: 1px solid var(--apphr-line);
  border-radius: 8px;
  color: var(--apphr-ink);
  text-decoration: none;
  background:
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(247,251,250,.82)),
    radial-gradient(circle at 88% 0%, rgba(47,101,183,.12), transparent 12rem);
  box-shadow: 0 22px 60px rgba(35,64,77,.08);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.apphr-blog-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0,127,116,.42);
  box-shadow: 0 30px 72px rgba(35,64,77,.12);
}

.apphr-blog-card small {
  color: var(--apphr-gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.apphr-blog-card h2 {
  margin: 34px 0 0;
  font-family: var(--apphr-sans);
  font-size: 22px;
  line-height: 1.14;
}

.apphr-blog-card p {
  margin: 14px 0 0;
  color: var(--apphr-muted);
  font-size: 14px;
  line-height: 1.5;
}

.apphr-blog-card span {
  align-self: end;
  margin-top: 26px;
  color: var(--apphr-teal);
  font-size: 14px;
  font-weight: 650;
}

.apphr-pagination {
  margin-top: 36px;
}

.apphr-pagination ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.apphr-pagination a,
.apphr-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--apphr-line);
  border-radius: 8px;
  background: rgba(255,255,255,.74);
}

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

.apphr-empty-state {
  padding: 34px;
  border: 1px solid var(--apphr-line);
  border-radius: 8px;
  background: rgba(255,255,255,.8);
}

.apphr-article-hero {
  max-width: 1000px;
}

.apphr-back-link {
  display: inline-flex;
  margin-bottom: 34px;
}

.apphr-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 22px;
}

.apphr-article-meta span + span::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 18px;
  border-radius: 999px;
  background: var(--apphr-gold);
  vertical-align: middle;
}

.apphr-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 780px;
  margin-top: 24px;
}

.apphr-tag-list a {
  padding: 8px 12px;
  border: 1px solid rgba(0,127,116,.22);
  border-radius: 999px;
  color: var(--apphr-teal);
  font-size: 12px;
  font-weight: 650;
  text-decoration: none;
  background: rgba(255,255,255,.72);
}

.apphr-tag-list a:hover {
  border-color: rgba(0,127,116,.48);
  background: rgba(0,127,116,.08);
}

.apphr-single-article {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(300px, 420px);
  gap: 58px;
  align-items: start;
  padding: 70px 46px 76px;
}

.apphr-single-article__body {
  font-size: 18px;
  line-height: 1.76;
}

.apphr-single-article__body p,
.apphr-single-article__body ul,
.apphr-single-article__body ol {
  margin-top: 0;
  margin-bottom: 24px;
}

.apphr-single-article__body h2,
.apphr-single-article__body h3 {
  margin: 42px 0 16px;
  font-family: var(--apphr-serif);
  line-height: 1.12;
}

.apphr-single-article__body h2 {
  font-size: 34px;
}

.apphr-single-article__body h3 {
  font-size: 26px;
}

.apphr-single-article__body a {
  color: var(--apphr-teal);
  font-weight: 650;
}

.apphr-single-article__cta {
  position: sticky;
  top: 24px;
  padding: 26px;
  border: 1px solid var(--apphr-line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(247,251,250,.86)),
    radial-gradient(circle at 100% 0%, rgba(0,127,116,.12), transparent 13rem);
  box-shadow: 0 26px 70px rgba(35,64,77,.12);
}

.apphr-single-article__cta h2 {
  font-size: 32px;
  line-height: 1.08;
}

.apphr-single-article__cta p:not(.apphr-kicker) {
  margin: 18px 0 24px;
  font-size: 15px;
}

.apphr-related-articles {
  border-top: 1px solid rgba(23,32,44,.08);
  background: linear-gradient(180deg, #fff, #f7fbfa);
}

.apphr-landing-detail,
.apphr-language-variants,
.apphr-translation-index {
  box-sizing: border-box;
  width: min(100%, 1400px);
  margin-right: auto;
  margin-left: auto;
  padding: 70px 46px 76px;
}

.apphr-landing-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 460px);
  gap: 34px;
  align-items: start;
}

.apphr-landing-detail__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.apphr-landing-detail__content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.apphr-landing-detail__grid article,
.apphr-landing-detail__content > .wp-block-group,
.apphr-landing-detail__content > .wp-block-columns,
.apphr-landing-detail__content > article,
.apphr-landing-detail__cta,
.apphr-translation-note,
.apphr-variant-grid a {
  border: 1px solid var(--apphr-line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(247,251,250,.82)),
    radial-gradient(circle at 88% 0%, rgba(47,101,183,.12), transparent 12rem);
  box-shadow: 0 22px 60px rgba(35,64,77,.08);
}

.apphr-landing-detail__grid article {
  min-height: 250px;
  padding: 24px;
}

.apphr-landing-detail__content > .wp-block-group,
.apphr-landing-detail__content > .wp-block-columns,
.apphr-landing-detail__content > article {
  min-height: 250px;
  padding: 24px;
}

.apphr-landing-detail__grid h2,
.apphr-landing-detail__content h2,
.apphr-landing-detail__content h3,
.apphr-landing-detail__cta h2,
.apphr-translation-note h2 {
  margin: 0;
  font-family: var(--apphr-serif);
  font-weight: 500;
  line-height: 1.1;
}

.apphr-landing-detail__grid h2 {
  font-size: 26px;
}

.apphr-landing-detail__content h2,
.apphr-landing-detail__content h3 {
  font-size: 26px;
}

.apphr-landing-detail__grid p,
.apphr-landing-detail__content p,
.apphr-landing-detail__cta p:not(.apphr-kicker),
.apphr-translation-note p:not(.apphr-kicker) {
  margin: 18px 0 0;
  color: var(--apphr-muted);
  font-size: 15px;
  line-height: 1.6;
}

.apphr-landing-detail__cta {
  position: sticky;
  top: 24px;
  padding: 28px;
}

.apphr-landing-detail__cta h2 {
  font-size: 34px;
}

.apphr-landing-detail__cta .apphr-btn {
  width: min(260px, 100%);
  margin-top: 24px;
}

.apphr-language-variants,
.apphr-translation-index {
  border-top: 1px solid rgba(23,32,44,.08);
  background: linear-gradient(180deg, #fff, #f7fbfa);
}

.apphr-variant-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.apphr-variant-grid a {
  display: grid;
  gap: 13px;
  padding: 20px;
  color: var(--apphr-ink);
  text-decoration: none;
}

.apphr-variant-grid a.is-active {
  border-color: rgba(0,127,116,.55);
  box-shadow: 0 26px 70px rgba(0,127,116,.14);
}

.apphr-variant-grid small,
.apphr-translation-table a span {
  color: var(--apphr-gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.apphr-variant-grid strong {
  font-size: 17px;
  font-weight: 650;
  line-height: 1.2;
}

.apphr-variant-grid span:not(:first-child) {
  color: var(--apphr-muted);
  font-size: 13px;
  word-break: break-word;
}

.apphr-translation-table {
  display: grid;
  border: 1px solid var(--apphr-line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255,255,255,.72);
}

.apphr-translation-table__row {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) repeat(4, minmax(150px, 1fr));
  border-bottom: 1px solid var(--apphr-line);
}

.apphr-translation-table__row:last-child {
  border-bottom: 0;
}

.apphr-translation-table__row > * {
  min-width: 0;
  padding: 18px;
  border-right: 1px solid var(--apphr-line);
}

.apphr-translation-table__row > *:last-child {
  border-right: 0;
}

.apphr-translation-table__row--head {
  color: var(--apphr-muted);
  font-size: 12px;
  font-weight: 650;
  text-transform: uppercase;
  background: rgba(247,251,250,.94);
}

.apphr-translation-table strong {
  font-size: 16px;
  font-weight: 650;
  line-height: 1.25;
}

.apphr-translation-table a {
  display: grid;
  gap: 8px;
  color: var(--apphr-ink);
  font-size: 14px;
  line-height: 1.3;
  text-decoration: none;
}

.apphr-translation-table a:hover {
  color: var(--apphr-teal);
}

.apphr-translation-note {
  max-width: 760px;
  margin-top: 24px;
  padding: 26px;
}

.apphr-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1.25fr) minmax(150px, .7fr) minmax(170px, .75fr) minmax(240px, 1fr);
  align-items: start;
  gap: 34px;
  padding: 44px 46px;
  border-top: 1px solid var(--apphr-line);
  background: #fff;
}

.apphr-footer__brand img {
  width: 245px;
  height: auto;
}

.apphr-footer__brand p,
.apphr-footer__contact p {
  max-width: 330px;
  margin: 18px 0 0;
  color: var(--apphr-muted);
  font-size: 15px;
  line-height: 1.6;
}

.apphr-footer__brand p + p {
  margin-top: 12px;
}

.apphr-footer h2 {
  margin: 0 0 16px;
  color: var(--apphr-ink);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.apphr-footer__menu,
.apphr-footer__contact {
  display: grid;
  align-content: start;
  gap: 10px;
}

.apphr-footer__menu a,
.apphr-footer__email {
  width: fit-content;
  color: #33404a;
  font-size: 15px;
  line-height: 1.35;
  text-decoration: none;
}

.apphr-footer__menu a:hover,
.apphr-footer__email:hover {
  color: var(--apphr-teal);
}

.apphr-footer__email {
  margin-top: 6px;
  color: var(--apphr-teal-dark);
  font-weight: 750;
}

.apphr-footer__social {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.apphr-footer__social a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0,127,116,.18);
  border-radius: 50%;
  color: var(--apphr-teal-dark);
  background: rgba(0,127,116,.06);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.apphr-footer__social a:hover {
  border-color: rgba(0,127,116,.34);
  background: rgba(0,127,116,.12);
  transform: translateY(-1px);
}

.apphr-footer__social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease, transform .5s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.apphr-route-overview,
.apphr-route-sections,
.apphr-route-workflow,
.apphr-route-trust,
.apphr-route-faq,
.apphr-route-cta,
.apphr-agency-directory,
.apphr-wp-page,
.apphr-cookie {
  box-sizing: border-box;
}

.apphr-route-overview,
.apphr-route-sections,
.apphr-route-workflow,
.apphr-route-trust,
.apphr-route-faq,
.apphr-route-cta,
.apphr-agency-directory,
.apphr-wp-page {
  width: min(100%, 1400px);
  margin: 0 auto;
  padding: 68px 46px;
}

.apphr-route-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: start;
  background: rgba(255,255,255,.62);
  border-top: 1px solid rgba(23,32,44,.08);
}

.apphr-agency-directory {
  border-top: 1px solid rgba(23,32,44,.08);
  border-bottom: 1px solid rgba(23,32,44,.08);
  background:
    linear-gradient(145deg, rgba(255,255,255,.9), rgba(247,251,250,.74)),
    radial-gradient(circle at 96% 10%, rgba(0,127,116,.12), transparent 24rem);
}

.apphr-agency-directory__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 28px;
  align-items: end;
}

.apphr-agency-directory__head h2 {
  max-width: 780px;
  margin: 0;
  font-family: var(--apphr-serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 500;
  line-height: 1.04;
}

.apphr-agency-directory__head p:not(.apphr-kicker) {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--apphr-muted);
  font-size: 17px;
  line-height: 1.56;
}

.apphr-agency-directory__head small {
  display: block;
  padding: 18px;
  border: 1px solid rgba(0,127,116,.18);
  border-radius: 8px;
  color: #31504c;
  background: rgba(255,255,255,.74);
  font-size: 13px;
  line-height: 1.5;
}

.apphr-agency-directory__filters {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 14px;
  align-items: end;
  margin-top: 28px;
  padding: 18px;
  border: 1px solid var(--apphr-line);
  border-radius: 8px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 22px 56px rgba(35,64,77,.08);
}

.apphr-agency-directory__filters label {
  display: grid;
  gap: 8px;
  min-width: 0;
  margin: 0;
}

.apphr-agency-directory__filters span {
  color: var(--apphr-muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.apphr-agency-directory__filters select {
  width: 100%;
  min-height: 46px;
  padding: 0 13px;
  border: 1px solid rgba(23,32,44,.18);
  border-radius: 8px;
  color: var(--apphr-ink);
  background: rgba(255,255,255,.94);
  font: inherit;
}

.apphr-agency-directory__actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.apphr-agency-directory__actions button,
.apphr-agency-directory__actions a {
  min-height: 46px;
  padding: 0 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.apphr-agency-directory__actions button {
  border: 0;
  color: #fff;
  background: var(--apphr-teal);
  cursor: pointer;
}

.apphr-agency-directory__actions a {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(23,32,44,.16);
  color: var(--apphr-ink);
  background: rgba(255,255,255,.68);
}

.apphr-agency-directory__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.apphr-agency-card,
.apphr-agency-directory__empty {
  border: 1px solid var(--apphr-line);
  border-radius: 8px;
  background: rgba(255,255,255,.84);
  box-shadow: 0 24px 70px rgba(35,64,77,.08);
}

.apphr-agency-card {
  display: grid;
  gap: 18px;
  min-height: 300px;
  padding: 24px;
}

.apphr-agency-card__top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.apphr-agency-card__top strong {
  display: block;
  font-size: 20px;
  font-weight: 650;
  line-height: 1.22;
}

.apphr-agency-card__top span,
.apphr-agency-card__top em {
  display: block;
  margin-top: 8px;
  color: var(--apphr-muted);
  font-size: 13px;
  font-style: normal;
  line-height: 1.38;
}

.apphr-agency-card__top em {
  min-width: 92px;
  text-align: right;
}

.apphr-agency-card__badges,
.apphr-agency-card__countries,
.apphr-agency-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.apphr-agency-card__badges span {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  max-width: 100%;
  padding: 9px 11px;
  border: 1px solid rgba(0,127,116,.24);
  border-radius: 8px;
  color: var(--apphr-teal);
  background: rgba(238,250,247,.76);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.2;
}

.apphr-agency-card__badges small,
.apphr-agency-card__countries small {
  color: var(--apphr-muted);
  font-size: 11px;
  font-weight: 650;
}

.apphr-agency-card__countries small {
  padding: 5px 9px;
  border: 1px solid rgba(23,32,44,.11);
  border-radius: 999px;
  background: rgba(255,255,255,.78);
}

.apphr-agency-card__links {
  align-self: end;
  margin-top: auto;
}

.apphr-agency-card__links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(23,32,44,.16);
  border-radius: 8px;
  color: var(--apphr-ink);
  background: rgba(255,255,255,.74);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.apphr-agency-card__links a:last-child {
  color: #fff;
  border-color: transparent;
  background: var(--apphr-teal);
}

.apphr-agency-directory__empty {
  margin-top: 22px;
  padding: 24px;
  color: var(--apphr-muted);
  font-size: 15px;
  line-height: 1.5;
}

.apphr-route-overview__copy h2,
.apphr-route-sections h2,
.apphr-route-workflow h2,
.apphr-route-trust h2,
.apphr-route-faq h2,
.apphr-route-cta h2,
.apphr-wp-page h1,
.apphr-wp-page h2 {
  margin: 0;
  font-family: var(--apphr-serif);
  font-weight: 500;
  line-height: 1.04;
}

.apphr-route-overview__copy h2 {
  font-size: clamp(28px, 2.8vw, 38px);
  line-height: 1.08;
}

.apphr-route-overview__copy p:not(.apphr-kicker) {
  margin: 22px 0 0;
  color: var(--apphr-muted);
  font-size: 18px;
  line-height: 1.62;
}

.apphr-route-metrics,
.apphr-route-card-grid,
.apphr-route-steps,
.apphr-route-faq__grid {
  display: grid;
  gap: 14px;
}

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

.apphr-inner-hero--candidate + .apphr-route-overview,
.apphr-inner-hero--company + .apphr-route-overview,
.apphr-inner-hero--agency + .apphr-route-overview,
.apphr-route-overview--role {
  align-items: start;
}

.apphr-inner-hero--candidate + .apphr-route-overview .apphr-route-metrics,
.apphr-inner-hero--company + .apphr-route-overview .apphr-route-metrics,
.apphr-inner-hero--agency + .apphr-route-overview .apphr-route-metrics,
.apphr-route-overview--role .apphr-route-metrics {
  align-self: start;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: auto auto;
  height: auto;
}

.apphr-inner-hero--candidate + .apphr-route-overview .apphr-route-metrics article:first-child,
.apphr-inner-hero--company + .apphr-route-overview .apphr-route-metrics article:first-child,
.apphr-inner-hero--agency + .apphr-route-overview .apphr-route-metrics article:first-child,
.apphr-route-overview--role .apphr-route-metrics article:first-child {
  grid-column: 1 / -1;
}

.apphr-inner-hero--candidate + .apphr-route-overview .apphr-route-metrics article,
.apphr-inner-hero--company + .apphr-route-overview .apphr-route-metrics article,
.apphr-inner-hero--agency + .apphr-route-overview .apphr-route-metrics article,
.apphr-route-overview--role .apphr-route-metrics article {
  min-height: 112px;
  padding: 18px 20px;
}

.apphr-inner-hero--candidate + .apphr-route-overview .apphr-route-metrics strong,
.apphr-inner-hero--company + .apphr-route-overview .apphr-route-metrics strong,
.apphr-inner-hero--agency + .apphr-route-overview .apphr-route-metrics strong,
.apphr-route-overview--role .apphr-route-metrics strong {
  font-size: 17px;
}

.apphr-inner-hero--candidate + .apphr-route-overview .apphr-route-metrics p,
.apphr-inner-hero--company + .apphr-route-overview .apphr-route-metrics p,
.apphr-inner-hero--agency + .apphr-route-overview .apphr-route-metrics p,
.apphr-route-overview--role .apphr-route-metrics p {
  margin-top: 7px;
  line-height: 1.48;
}

.apphr-route-metrics article,
.apphr-route-card-grid article,
.apphr-route-steps article,
.apphr-route-faq__grid article,
.apphr-route-trust,
.apphr-route-cta,
.apphr-wp-page__content,
.apphr-wp-page__cta {
  border: 1px solid var(--apphr-line);
  border-radius: 8px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 26px 70px rgba(35,64,77,.08);
}

.apphr-route-metrics article {
  min-height: 176px;
  padding: 24px;
}

.apphr-route-metrics strong,
.apphr-route-steps strong {
  display: block;
  font-size: 18px;
  font-weight: 650;
  line-height: 1.22;
}

.apphr-route-metrics p,
.apphr-route-card-grid p,
.apphr-route-steps p,
.apphr-route-trust li,
.apphr-route-faq__grid p,
.apphr-wp-page p,
.apphr-wp-page li {
  color: var(--apphr-muted);
  line-height: 1.62;
}

.apphr-route-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.apphr-route-card-grid article {
  min-height: 240px;
  padding: 26px;
}

.apphr-route-card-grid h2,
.apphr-route-faq h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 650;
  line-height: 1.14;
}

.apphr-route-steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.apphr-route-steps article {
  min-height: 220px;
  padding: 24px;
}

.apphr-route-steps span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 50%;
  color: #fff;
  background: var(--apphr-teal);
  font-weight: 650;
  font-size: 12px;
}

.apphr-route-trust {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 34px;
  padding: 40px 46px;
  background:
    linear-gradient(110deg, rgba(255,255,255,.9), rgba(239,248,246,.78)),
    radial-gradient(circle at 100% 0, rgba(47,101,183,.12), transparent 22rem);
}

.apphr-route-trust ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.apphr-route-trust li {
  position: relative;
  padding-left: 30px;
}

.apphr-route-trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--apphr-teal);
  box-shadow: 0 0 0 5px rgba(0,127,116,.12);
}

.apphr-route-faq__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.apphr-route-faq__grid article {
  min-height: 220px;
  padding: 26px;
}

.apphr-route-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid rgba(23,32,44,.08);
  border-bottom: 1px solid rgba(23,32,44,.08);
  background: rgba(255,255,255,.76);
}

.apphr-route-cta h2 {
  max-width: 860px;
  font-size: clamp(26px, 3vw, 38px);
}

.apphr-wp-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 34px;
}

.apphr-wp-page__content,
.apphr-wp-page__cta {
  padding: 34px;
}

.apphr-wp-page__content h2 {
  margin-top: 36px;
  font-size: 32px;
}

.apphr-wp-page__content h2:first-child {
  margin-top: 0;
}

.apphr-wp-page__content table {
  width: 100%;
  min-width: 680px;
  margin: 24px 0;
  border-collapse: collapse;
  font-size: 14px;
}

.apphr-wp-page__content th,
.apphr-wp-page__content td {
  padding: 12px;
  border: 1px solid rgba(23,32,44,.12);
  text-align: left;
  vertical-align: top;
}

.apphr-wp-page__content th {
  color: var(--apphr-ink);
  background: rgba(0,127,116,.08);
}

.apphr-wp-page__cta {
  position: sticky;
  top: 24px;
  align-self: start;
}

.apphr-wp-page__cta h2 {
  font-size: 32px;
}

.apphr-wp-page__cta ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.apphr-wp-page__cta li {
  margin: 0;
}

.apphr-wp-page__cta a:not(.apphr-btn) {
  color: var(--apphr-teal);
  font-weight: 650;
  text-decoration: none;
}

.apphr-related-links {
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid rgba(23,32,44,.12);
}

.apphr-related-links h2 {
  font-size: 30px;
}

.apphr-related-links div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.apphr-related-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 16px;
  border: 1px solid rgba(23,32,44,.12);
  border-radius: 8px;
  color: var(--apphr-ink);
  background: rgba(255,255,255,.72);
  font-weight: 650;
  line-height: 1.2;
  text-decoration: none;
}

.apphr-related-links a:hover {
  border-color: rgba(0,127,116,.38);
  color: var(--apphr-teal);
}

.apphr-cookie {
  position: fixed;
  z-index: 80;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(23,32,44,.16);
  border-radius: 8px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 28px 90px rgba(23,32,44,.18);
}

.apphr-cookie[hidden] {
  display: none;
}

.apphr-cookie strong {
  display: block;
  margin-bottom: 4px;
}

.apphr-cookie p {
  max-width: 720px;
  margin: 0;
  color: var(--apphr-muted);
  font-size: 13px;
  line-height: 1.45;
}

.apphr-cookie nav {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.apphr-cookie a {
  color: var(--apphr-teal);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.apphr-cookie button {
  height: 40px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--apphr-teal);
  font-weight: 900;
}

@media (max-width: 1180px) {
  .apphr-menu {
    gap: 16px;
  }

  .apphr-role-switch {
    padding-right: 28px;
    padding-left: 28px;
  }

  .apphr-hero h1 {
    font-size: 58px;
  }

  .apphr-hero-visual__people {
    right: 46px;
    width: 720px;
  }

  .apphr-readiness-card {
    width: 330px;
  }

  .apphr-audience,
  .apphr-country-grid,
  .apphr-proof,
  .apphr-contact,
  .apphr-flow,
  .apphr-stats,
  .apphr-article-grid,
  .apphr-blog-grid,
  .apphr-blog-grid--compact,
  .apphr-contact-seo {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .apphr-landing-detail {
    grid-template-columns: 1fr;
  }

  .apphr-landing-detail__grid,
  .apphr-landing-detail__content,
  .apphr-variant-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .apphr-landing-detail__cta {
    position: static;
  }

  .apphr-translation-table {
    overflow-x: auto;
  }

  .apphr-translation-table__row {
    min-width: 980px;
  }

  .apphr-single-article {
    grid-template-columns: minmax(0, 1fr);
  }

  .apphr-single-article__cta {
    position: static;
  }

  .apphr-countries {
    grid-template-columns: 1fr;
  }

  .apphr-country-card__content {
    width: min(76%, 260px);
  }

  .apphr-route-overview,
  .apphr-route-trust,
  .apphr-agency-directory__head,
  .apphr-wp-page {
    grid-template-columns: 1fr;
  }

  .apphr-route-metrics,
  .apphr-route-card-grid,
  .apphr-route-steps,
  .apphr-route-faq__grid,
  .apphr-agency-directory__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .apphr-inner-hero--candidate + .apphr-route-overview .apphr-route-metrics,
  .apphr-inner-hero--company + .apphr-route-overview .apphr-route-metrics,
  .apphr-inner-hero--agency + .apphr-route-overview .apphr-route-metrics,
  .apphr-route-overview--role .apphr-route-metrics {
    grid-template-rows: auto;
    height: auto;
  }

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

  .apphr-route-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .apphr-wp-page__cta {
    position: static;
  }
}

@media (min-width: 1181px) and (max-width: 1399px) {
  .apphr-hero h1 {
    font-size: 54px;
  }
}

@media (max-width: 820px) {
  .apphr-role-switch {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px 18px 16px;
  }

  .apphr-role-switch a {
    min-height: 0;
    padding: 14px 15px;
  }

  .apphr-hero {
    min-height: 980px;
    padding: 22px 18px 28px;
  }

  .apphr-nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: flex-start;
    gap: 10px 12px;
  }

  .apphr-brand span {
    font-size: 27px;
  }

  .apphr-brand {
    grid-column: 1;
    grid-row: 1;
  }

  .apphr-brand small,
  .apphr-menu {
    display: none;
  }

  .apphr-language {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: start;
    margin-left: 0;
  }

  .apphr-language select,
  .apphr-language .gt_selector,
  .apphr-language .gt_switcher {
    width: 118px;
    max-width: 118px;
    min-height: 34px;
    font-size: 12px !important;
  }

  .apphr-language .gt_switcher a {
    font-size: 12px !important;
  }

  .apphr-language .gt_switcher .gt_selected a {
    overflow: hidden;
    padding-right: 26px !important;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .apphr-language .gt_switcher .gt_option {
    width: 118px !important;
  }

  .apphr-language--native summary {
    width: 86px;
    min-height: 34px;
    font-size: 12px;
  }

  .apphr-language__menu {
    right: auto;
    left: 0;
    width: min(220px, calc(100vw - 36px));
  }

  .apphr-register-menu {
    grid-column: 1 / -1;
    grid-row: 3;
    justify-self: start;
  }

  .apphr-register-menu summary {
    min-height: 34px;
    padding: 9px 12px;
    font-size: 13px;
  }

  .apphr-register-menu__panel {
    right: auto;
    left: 0;
    width: min(230px, calc(100vw - 36px));
  }

  .apphr-signin {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    min-width: 76px;
    padding: 10px 11px;
    font-size: 13px;
  }

  .apphr-hero__content {
    margin-top: 46px;
  }

  .apphr-hero h1 {
    font-size: 46px;
    line-height: 1.02;
  }

  .apphr-lead {
    font-size: 18px;
  }

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

  .apphr-btn {
    min-width: 0;
  }

  .apphr-search-strip__label {
    width: 100%;
  }

  .apphr-hero-visual {
    position: relative;
    min-height: 430px;
  }

  .apphr-hero-visual::before {
    display: none;
  }

  .apphr-hero-visual__people {
    right: auto;
    left: 50%;
    top: auto;
    bottom: 0;
    width: 620px;
    transform: translateX(-50%);
  }

  .apphr-readiness-card {
    right: 0;
    left: 0;
    top: 20px;
    width: auto;
  }

  .apphr-audience,
  .apphr-country-grid,
  .apphr-proof,
  .apphr-flow,
  .apphr-stats,
  .apphr-article-grid,
  .apphr-blog-grid,
  .apphr-blog-grid--compact,
  .apphr-landing-detail__grid,
  .apphr-landing-detail__content,
  .apphr-variant-grid,
  .apphr-route-metrics,
  .apphr-route-card-grid,
  .apphr-route-steps,
  .apphr-route-faq__grid {
    grid-template-columns: 1fr;
  }

  .apphr-inner-hero--candidate + .apphr-route-overview .apphr-route-metrics,
  .apphr-inner-hero--company + .apphr-route-overview .apphr-route-metrics,
  .apphr-inner-hero--agency + .apphr-route-overview .apphr-route-metrics,
  .apphr-route-overview--role .apphr-route-metrics {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
  }

  .apphr-audience__panel {
    align-items: flex-end;
    justify-content: flex-start;
    min-height: 360px;
    padding: 190px 20px 24px;
    border-right: 0;
    border-bottom: 1px solid var(--apphr-line);
  }

  .apphr-audience__panel--candidate,
  .apphr-audience__panel--company,
  .apphr-audience__panel--agency {
    justify-content: flex-start;
    padding: 190px 20px 24px;
  }

  .apphr-audience__panel::before {
    background-position: center top;
    background-size: cover;
  }

  .apphr-audience__panel::after {
    background: linear-gradient(180deg, rgba(255,255,255,.02) 0%, rgba(255,255,255,.12) 36%, rgba(255,255,255,.58) 72%, rgba(255,255,255,.82) 100%);
  }

  .apphr-audience__content {
    grid-template-columns: 54px minmax(0, 1fr);
    width: 100%;
    padding: 16px;
  }

  .apphr-countries,
  .apphr-proof,
  .apphr-stats,
  .apphr-contact,
  .apphr-engine,
  .apphr-articles,
  .apphr-blog-list,
  .apphr-single-article,
  .apphr-related-articles,
  .apphr-landing-detail,
  .apphr-language-variants,
  .apphr-translation-index,
  .apphr-route-overview,
  .apphr-route-sections,
  .apphr-route-workflow,
  .apphr-route-trust,
  .apphr-route-faq,
  .apphr-route-cta,
  .apphr-agency-directory,
  .apphr-wp-page,
  .apphr-contact-seo,
  .apphr-footer {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    padding-left: 20px;
    padding-right: 20px;
  }

  .apphr-route-overview,
  .apphr-route-trust,
  .apphr-agency-directory__head,
  .apphr-wp-page {
    grid-template-columns: 1fr;
  }

  .apphr-route-overview,
  .apphr-route-sections,
  .apphr-route-workflow,
  .apphr-route-trust,
  .apphr-route-faq,
  .apphr-route-cta,
  .apphr-agency-directory,
  .apphr-wp-page {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .apphr-agency-directory__filters,
  .apphr-agency-directory__grid,
  .apphr-contact-seo {
    grid-template-columns: 1fr;
  }

  .apphr-agency-directory__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .apphr-agency-directory__actions button,
  .apphr-agency-directory__actions a {
    justify-content: center;
    width: 100%;
  }

  .apphr-agency-card {
    min-height: 0;
  }

  .apphr-agency-card__top {
    flex-direction: column;
  }

  .apphr-agency-card__top em {
    min-width: 0;
    text-align: left;
  }

  .apphr-route-metrics article,
  .apphr-route-card-grid article,
  .apphr-route-steps article,
  .apphr-route-faq__grid article {
    min-height: 0;
  }

  .apphr-wp-page__content,
  .apphr-wp-page__cta {
    padding: 22px;
  }

  .apphr-wp-page__content {
    overflow-x: auto;
  }

  .apphr-related-links div {
    grid-template-columns: 1fr;
  }

  .apphr-cookie {
    left: 14px;
    right: 14px;
    bottom: 14px;
    flex-direction: column;
    align-items: flex-start;
    width: calc(100% - 28px);
  }

  .apphr-cookie nav {
    width: 100%;
    justify-content: space-between;
    white-space: normal;
  }

  .apphr-inner-hero {
    min-height: 0;
    padding: 22px 18px 58px;
  }

  .apphr-inner-hero--expanded {
    padding-bottom: 72px;
  }

  .apphr-inner-hero::before {
    inset: 0;
    width: 100%;
    background-position: center bottom;
    opacity: .34;
  }

  .apphr-inner-hero .apphr-hero__sky {
    background:
      linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.84) 62%, rgba(247,251,250,.66) 100%);
  }

  .apphr-nav--inner {
    margin-bottom: 58px;
  }

  .apphr-inner-hero__content {
    margin-left: auto;
  }

  .apphr-inner-hero h1,
  .apphr-article-hero h1 {
    font-size: 36px;
    line-height: 1.08;
  }

  .apphr-inner-hero__content > p:not(.apphr-kicker),
  .apphr-single-article__body {
    font-size: 16px;
  }

  .apphr-inner-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 26px;
  }

  .apphr-inner-hero__actions .apphr-btn {
    width: 100%;
  }

  .apphr-blog-list,
  .apphr-single-article,
  .apphr-related-articles {
    padding-top: 54px;
    padding-bottom: 58px;
  }

  .apphr-blog-list__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .apphr-blog-list__head h2,
  .apphr-related-articles h2 {
    font-size: 34px;
  }

  .apphr-blog-card {
    min-height: 0;
    padding: 22px;
  }

  .apphr-landing-detail__grid article,
  .apphr-landing-detail__content > .wp-block-group,
  .apphr-landing-detail__content > .wp-block-columns,
  .apphr-landing-detail__content > article {
    min-height: 0;
  }

  .apphr-landing-detail__cta h2,
  .apphr-translation-note h2 {
    font-size: 30px;
  }

  .apphr-single-article__body h2 {
    font-size: 28px;
  }

  .apphr-single-article__body h3 {
    font-size: 23px;
  }

  .apphr-stats div {
    min-height: 0;
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid var(--apphr-line);
  }

  .apphr-stats div:last-child {
    border-bottom: 0;
  }

  .apphr-stats span {
    font-size: 40px;
  }

  .apphr-contact {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .apphr-contact__form {
    padding: 20px;
  }

  .apphr-form-grid {
    grid-template-columns: 1fr;
  }

  .apphr-contact h2 {
    font-size: 34px;
  }

  .apphr-proof div {
    grid-template-columns: 48px 1fr;
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid var(--apphr-line);
  }

  .apphr-proof div:last-child {
    border-bottom: 0;
  }

  .apphr-engine h2 {
    font-size: 34px;
  }

  .apphr-articles__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .apphr-articles h2 {
    font-size: 34px;
  }

  .apphr-footer {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.apphr-pricing-section {
  padding: 64px clamp(22px, 4vw, 70px);
}

.apphr-pricing-section .apphr-section-title {
  max-width: 980px;
  margin: 0 auto 28px;
  text-align: left;
}

.apphr-pricing-section .apphr-section-title h2 {
  max-width: 820px;
  font-size: clamp(34px, 4vw, 56px);
}

.apphr-pricing-section .apphr-section-title span {
  display: block;
  max-width: 820px;
  color: var(--apphr-muted);
  font-size: 18px;
  line-height: 1.65;
}

.apphr-pricing-jump,
.apphr-discovery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: min(1120px, 100%);
  margin: 0 auto 28px;
}

.apphr-pricing-jump a,
.apphr-discovery-tabs a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 16px;
  border: 1px solid var(--apphr-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .74);
  color: var(--apphr-ink);
  font-weight: 800;
  text-decoration: none;
}

.apphr-pricing-jump a:hover,
.apphr-discovery-tabs a:hover,
.apphr-discovery-tabs a.is-active {
  border-color: rgba(0, 127, 116, .42);
  background: rgba(0, 127, 116, .1);
  color: var(--apphr-teal);
}

.apphr-pricing-group {
  width: min(1120px, 100%);
  margin: 0 auto 36px;
}

.apphr-pricing-group__head {
  max-width: 760px;
  margin-bottom: 18px;
}

.apphr-pricing-group__head h3 {
  margin: 0 0 10px;
  font-family: var(--apphr-serif);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.08;
}

.apphr-pricing-group__head p:last-child {
  color: var(--apphr-muted);
  line-height: 1.65;
}

.apphr-price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 18px;
}

.apphr-price-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
  border: 1px solid rgba(23, 32, 44, .12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(245,250,249,.86)),
    rgba(255,255,255,.84);
  box-shadow: 0 18px 48px rgba(23, 32, 44, .08);
}

.apphr-price-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.2;
}

.apphr-price-card strong {
  display: block;
  margin-bottom: 14px;
  color: var(--apphr-teal);
  font-family: var(--apphr-serif);
  font-size: 34px;
  line-height: 1.06;
}

.apphr-price-card p {
  color: var(--apphr-muted);
  line-height: 1.55;
}

.apphr-price-card ul,
.apphr-discovery-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.apphr-price-card li,
.apphr-discovery-card li {
  position: relative;
  padding-left: 18px;
  color: var(--apphr-ink);
  line-height: 1.45;
}

.apphr-price-card li::before,
.apphr-discovery-card li::before {
  position: absolute;
  left: 0;
  top: .62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--apphr-teal);
  content: "";
}

.apphr-pricing-rules {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.apphr-pricing-rules p,
.apphr-pricing-after article {
  margin: 0;
  padding: 18px 20px;
  border: 1px solid rgba(0, 127, 116, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
  color: var(--apphr-muted);
  line-height: 1.55;
}

.apphr-pricing-after {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 0 clamp(22px, 4vw, 70px) 70px;
}

.apphr-pricing-after article {
  color: var(--apphr-ink);
}

.apphr-pricing-after h2 {
  margin: 0 0 10px;
  font-size: 24px;
}

.apphr-discovery-hero {
  position: relative;
  padding: 30px 38px 46px;
  border-bottom: 1px solid var(--apphr-line);
  overflow: hidden;
}

.apphr-discovery-hero .apphr-hero__sky {
  background:
    linear-gradient(100deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.9) 54%, rgba(240,248,247,.82) 100%),
    radial-gradient(circle at 82% 12%, rgba(47, 101, 183, .16), transparent 24rem);
}

.apphr-discovery-hero__content {
  position: relative;
  z-index: 2;
  width: min(960px, 100%);
  padding-top: 54px;
}

.apphr-discovery-hero h1 {
  max-width: 820px;
  margin: 0 0 18px;
  font-family: var(--apphr-serif);
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1;
}

.apphr-discovery-hero__content > p:not(.apphr-kicker) {
  max-width: 780px;
  color: var(--apphr-muted);
  font-size: 19px;
  line-height: 1.65;
}

.apphr-discovery-landing,
.apphr-discovery-page {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 56px 0 76px;
}

.apphr-discovery-landing {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.apphr-discovery-choice,
.apphr-discovery-card {
  display: block;
  padding: 28px;
  border: 1px solid rgba(23, 32, 44, .12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(246,250,249,.86)),
    #fff;
  box-shadow: 0 18px 46px rgba(23, 32, 44, .08);
}

.apphr-discovery-choice {
  color: var(--apphr-ink);
  text-decoration: none;
}

.apphr-discovery-choice span,
.apphr-discovery-card small {
  display: block;
  margin-bottom: 12px;
  color: var(--apphr-teal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.apphr-discovery-choice strong {
  display: block;
  margin-bottom: 12px;
  font-family: var(--apphr-serif);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.08;
}

.apphr-discovery-choice p,
.apphr-discovery-card p {
  color: var(--apphr-muted);
  line-height: 1.6;
}

.apphr-discovery-choice em {
  display: inline-flex;
  margin-top: 18px;
  color: var(--apphr-teal);
  font-style: normal;
  font-weight: 900;
}

.apphr-discovery-filters {
  display: grid;
  grid-template-columns: minmax(220px, 310px) 1fr;
  gap: 18px;
  align-items: end;
  margin: 0 0 24px;
  padding: 20px;
  border: 1px solid rgba(23, 32, 44, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
}

.apphr-discovery-filters--cv {
  grid-template-columns: minmax(190px, 260px) minmax(190px, 260px) 1fr;
}

.apphr-discovery-filters label {
  display: grid;
  gap: 8px;
}

.apphr-discovery-filters span {
  color: var(--apphr-ink);
  font-weight: 900;
}

.apphr-discovery-filters select {
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid rgba(23, 32, 44, .16);
  border-radius: 8px;
  background: #fff;
  color: var(--apphr-ink);
  font: inherit;
}

.apphr-discovery-filters p {
  margin: 0;
  color: var(--apphr-muted);
  line-height: 1.5;
}

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

.apphr-discovery-card h2 {
  margin: 0 0 12px;
  font-family: var(--apphr-serif);
  font-size: 30px;
  line-height: 1.08;
}

.apphr-discovery-card dl {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
}

.apphr-discovery-card dl div {
  display: grid;
  gap: 2px;
}

.apphr-discovery-card dt {
  color: var(--apphr-muted);
  font-size: 13px;
  font-weight: 800;
}

.apphr-discovery-card dd {
  margin: 0;
  color: var(--apphr-ink);
  font-weight: 800;
}

.apphr-completion-bars {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.apphr-completion-bars span {
  position: relative;
  display: block;
  min-height: 34px;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(23, 32, 44, .07);
  overflow: hidden;
  color: var(--apphr-ink);
  font-size: 13px;
  font-weight: 900;
}

.apphr-completion-bars b {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 0;
  border-radius: inherit;
  background: rgba(0, 127, 116, .18);
}

.apphr-completion-bars span {
  isolation: isolate;
}

.apphr-completion-bars span::after {
  position: relative;
  z-index: 1;
  content: "";
}

.apphr-discovery-empty {
  margin: 24px 0 0;
  padding: 18px 20px;
  border: 1px dashed rgba(23, 32, 44, .28);
  border-radius: 8px;
  color: var(--apphr-muted);
}

.apphr-candidate-acq {
  background:
    radial-gradient(circle at 88% 8%, rgba(47, 101, 183, .16), transparent 27rem),
    linear-gradient(180deg, #f7fbfa 0%, #fff 42%, #f5faf8 100%);
}

.apphr-candidate-acq-hero {
  position: relative;
  min-height: 690px;
  padding: 30px 38px 54px;
  border-bottom: 1px solid var(--apphr-line);
  overflow: hidden;
}

.apphr-candidate-acq-hero__image,
.apphr-candidate-acq-hero__wash {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.apphr-candidate-acq-hero__image {
  z-index: 0;
  background-image: url("../img/template/hero-candidate-clear.jpg");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
}

.apphr-candidate-acq-hero__wash {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.93) 32%, rgba(255,255,255,.56) 54%, rgba(255,255,255,.18) 73%, rgba(255,255,255,0) 100%),
    linear-gradient(180deg, rgba(247,251,250,.98) 0%, rgba(247,251,250,.36) 22%, rgba(247,251,250,0) 62%);
}

.apphr-candidate-acq-nav {
  position: relative;
  z-index: 5;
}

.apphr-candidate-acq-hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 380px);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  width: min(1260px, 100%);
  min-height: 540px;
  margin: 46px auto 0;
}

.apphr-candidate-acq-copy {
  max-width: 650px;
  filter:
    drop-shadow(0 0 10px rgba(255, 255, 255, .98))
    drop-shadow(0 0 28px rgba(255, 255, 255, .92));
}

.apphr-candidate-acq-copy h1 {
  margin: 0;
  font-family: var(--apphr-serif);
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.02;
  font-weight: 700;
}

.apphr-candidate-acq-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
  max-width: 700px;
}

.apphr-candidate-acq-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 14px;
  border: 1px solid rgba(23, 32, 44, .12);
  border-radius: 999px;
  color: var(--apphr-ink);
  background: rgba(255, 255, 255, .66);
  box-shadow: 0 0 24px rgba(255, 255, 255, .9);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.apphr-candidate-acq-card {
  width: min(100%, 380px);
  margin-left: auto;
  border: 1px solid rgba(23, 32, 44, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 28px 70px rgba(23, 32, 44, .17);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.apphr-candidate-acq-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: min(100%, 1400px);
  margin: 0 auto;
  border-bottom: 1px solid var(--apphr-line);
  background: rgba(255, 255, 255, .86);
}

.apphr-candidate-acq-strip div {
  min-height: 182px;
  padding: 30px 28px;
  border-right: 1px solid var(--apphr-line);
}

.apphr-candidate-acq-strip div:last-child {
  border-right: 0;
}

.apphr-candidate-acq-strip span {
  display: block;
  margin-bottom: 18px;
  color: var(--apphr-teal);
  font-family: var(--apphr-serif);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}

.apphr-candidate-acq-strip strong {
  display: block;
  font-size: 18px;
}

.apphr-candidate-acq-strip small {
  display: block;
  margin-top: 10px;
  color: var(--apphr-muted);
  font-size: 13px;
  line-height: 1.5;
}

.apphr-candidate-acq-section {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 68px 0;
}

.apphr-candidate-acq-section--split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: center;
}

.apphr-candidate-acq-section h2 {
  margin: 0 0 20px;
  font-family: var(--apphr-serif);
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.08;
}

.apphr-candidate-acq-section p {
  color: var(--apphr-muted);
  font-size: 17px;
  line-height: 1.7;
}

.apphr-candidate-acq-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.apphr-candidate-acq-feature-grid article,
.apphr-candidate-acq-docs article,
.apphr-candidate-acq-faq article,
.apphr-candidate-acq-price-card {
  border: 1px solid rgba(23, 32, 44, .12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(246,250,249,.86)),
    #fff;
  box-shadow: 0 18px 46px rgba(23, 32, 44, .08);
}

.apphr-candidate-acq-feature-grid article {
  padding: 22px 24px;
}

.apphr-candidate-acq-feature-grid span {
  display: block;
  margin-bottom: 9px;
  color: var(--apphr-teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.apphr-candidate-acq-feature-grid h3,
.apphr-candidate-acq-faq h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.2;
}

.apphr-candidate-acq-feature-grid p,
.apphr-candidate-acq-faq p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

.apphr-candidate-acq-section--documents {
  width: min(1300px, calc(100% - 44px));
}

.apphr-candidate-acq-docs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.apphr-candidate-acq-docs article {
  min-height: 184px;
  padding: 24px;
}

.apphr-candidate-acq-docs strong {
  display: block;
  color: var(--apphr-ink);
  font-size: 19px;
  line-height: 1.25;
}

.apphr-candidate-acq-docs span {
  display: block;
  margin-top: 12px;
  color: var(--apphr-muted);
  line-height: 1.55;
}

.apphr-candidate-acq-section--price {
  width: min(100%, 1400px);
  padding-right: clamp(22px, 4vw, 70px);
  padding-left: clamp(22px, 4vw, 70px);
}

.apphr-candidate-acq-price-card {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 30px;
  background:
    linear-gradient(110deg, rgba(255,255,255,.98), rgba(238,249,247,.9)),
    radial-gradient(circle at 82% 30%, rgba(47,101,183,.12), transparent 20rem);
}

.apphr-candidate-acq-price-card h2 {
  margin: 0;
  color: var(--apphr-teal);
  font-size: clamp(40px, 5vw, 64px);
}

.apphr-candidate-acq-price-card p {
  margin: 0;
}

.apphr-candidate-acq-price-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.apphr-candidate-acq-price-card li {
  position: relative;
  padding-left: 18px;
  color: var(--apphr-ink);
  line-height: 1.45;
}

.apphr-candidate-acq-price-card li::before {
  content: "";
  position: absolute;
  top: .62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--apphr-teal);
}

.apphr-candidate-acq-section--articles {
  width: min(1300px, calc(100% - 44px));
}

.apphr-candidate-acq-section--articles .apphr-article-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.apphr-candidate-acq-section--faq {
  display: grid;
  grid-template-columns: minmax(260px, .5fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.apphr-candidate-acq-faq {
  display: grid;
  gap: 14px;
}

.apphr-candidate-acq-faq article {
  padding: 24px;
}

.apphr-candidate-acq-footer {
  margin-top: 20px;
}

@media (max-width: 980px) {
  .apphr-discovery-landing,
  .apphr-discovery-grid,
  .apphr-pricing-after,
  .apphr-candidate-acq-hero__content,
  .apphr-candidate-acq-section--split,
  .apphr-candidate-acq-section--faq,
  .apphr-candidate-acq-price-card {
    grid-template-columns: 1fr;
  }

  .apphr-discovery-filters,
  .apphr-discovery-filters--cv {
    grid-template-columns: 1fr;
  }

  .apphr-candidate-acq-hero {
    min-height: auto;
    padding: 22px 22px 44px;
  }

  .apphr-candidate-acq-hero__wash {
    background:
      linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.9) 48%, rgba(255,255,255,.42) 76%, rgba(255,255,255,.2) 100%),
      linear-gradient(90deg, rgba(255,255,255,.96), rgba(255,255,255,.54));
  }

  .apphr-candidate-acq-hero__content {
    min-height: auto;
    margin-top: 36px;
  }

  .apphr-candidate-acq-card {
    margin: 0;
  }

  .apphr-candidate-acq-strip,
  .apphr-candidate-acq-docs,
  .apphr-candidate-acq-section--articles .apphr-article-grid {
    grid-template-columns: 1fr;
  }

  .apphr-candidate-acq-strip div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--apphr-line);
  }

  .apphr-candidate-acq-strip div:last-child {
    border-bottom: 0;
  }

  .apphr-candidate-acq-price-card {
    align-items: stretch;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}
