:root {
  --navy: #061b41;
  --muted: #596a86;
  --blue: #075ecf;
  --orange: #ff4b12;
  --orange-dark: #ee3f0a;
  --line: #dfe6f0;
  --soft: #f6f8fb;
  --shadow: 0 18px 45px rgba(6, 27, 65, .08);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { min-height: 100%; scroll-behavior: smooth; }
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  color: var(--navy);
  background: #fff;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 28px 44px;
}

.hero-topbar {
  position: sticky;
  top: 0;
  background: transparent;
  backdrop-filter: none;
  transition: background .2s ease, box-shadow .2s ease, backdrop-filter .2s ease;
}

.hero-topbar.is-scrolled {
  background: linear-gradient(90deg, rgba(255,255,255,.18), rgba(255,255,255,.04));
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand-logo {
  display: block;
  width: 230px;
  height: auto;
}

.brand-mark {
  position: relative;
  width: 44px;
  height: 44px;
  display: inline-block;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 8px;
  width: 9px;
  height: 34px;
  border-radius: 7px;
  background: var(--orange);
  transform: rotate(45deg);
}

.brand-mark::after { transform: rotate(-45deg); }
.brand-mark span {
  position: absolute;
  top: 0;
  left: 14px;
  width: 17px;
  height: 17px;
  background: #1667c9;
  border-radius: 50%;
  z-index: 2;
}

.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-size: 40px; letter-spacing: 0; font-weight: 800; }
.brand-copy strong span, .brand-copy b { color: var(--orange); }
.brand-copy em { font-style: normal; font-size: 18px; font-weight: 500; text-align: center; color: var(--navy); }

.top-actions, .job-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.mobile-user-link {
  display: none;
}

.language {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  padding: 0 6px;
  transition: background .2s ease, box-shadow .2s ease;
}

.language-select {
  position: relative;
  z-index: 5;
}

.language.dark {
  color: var(--navy);
  background: transparent;
}

.language svg { width: 20px; height: 20px; }
.language span { color: currentColor; }
.language .chevron { width: 16px; height: 16px; transition: transform .2s ease; }
.language-select.open .chevron { transform: rotate(180deg); }
.language:hover,
.language-select.open .language {
  background: transparent;
  box-shadow: none;
}
.language.dark:hover,
.language-select.open .language.dark {
  background: transparent;
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: grid;
  min-width: 90px;
  padding: 4px 0;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 12px 28px rgba(6, 27, 65, .12);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.language-select.open .language-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-menu button,
.language-menu a {
  display: block;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  font-weight: 800;
  padding: 9px 14px;
  text-align: left;
}

.language-menu button:hover,
.language-menu button.active,
.language-menu a:hover,
.language-menu a.active {
  background: transparent;
  color: var(--orange);
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 7px;
  border: 1px solid transparent;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  transform: translateY(0);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 10%, rgba(255,255,255,.38) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .55s ease;
  pointer-events: none;
}

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

.btn:hover::after {
  transform: translateX(120%);
}

.btn:active {
  transform: translateY(0);
}

.btn:focus-visible,
.language-menu button:focus-visible,
.language-menu a:focus-visible {
  outline: 3px solid rgba(7, 94, 207, .28);
  outline-offset: 3px;
}

.language:focus-visible {
  outline: 0;
  box-shadow: none;
}

.btn-primary {
  background: linear-gradient(180deg, #ff5317 0%, #ff420c 100%);
  color: #fff;
  box-shadow: 0 10px 22px rgba(255, 75, 18, .2);
}

.btn-primary:hover {
  box-shadow: 0 16px 34px rgba(255, 75, 18, .32);
  background: linear-gradient(180deg, #ff6428 0%, #f43d09 100%);
}

.btn-light {
  background: #fff;
  color: var(--navy);
  border-color: #d5deeb;
  box-shadow: 0 8px 20px rgba(6, 27, 65, .12);
}

.btn-light:hover {
  border-color: #b9c8db;
  box-shadow: 0 14px 30px rgba(6, 27, 65, .16);
  background: #fbfdff;
}

.btn-outline {
  background: #fff;
  color: var(--blue);
  border-color: var(--blue);
}

.btn-outline.orange { color: var(--orange); border-color: var(--orange); }
.btn-large { min-width: 238px; min-height: 66px; font-size: 22px; justify-content: flex-start; }
.btn-large svg { width: 30px; height: 30px; }

.hero {
  position: relative;
  min-height: 970px;
  overflow: clip;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.hero-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.95) 0%, rgba(255,255,255,.78) 29%, rgba(255,255,255,.16) 54%, rgba(255,255,255,.02) 100%);
}

.hero-topbar { z-index: 50; }
.hero-content { position: relative; z-index: 1; }
.hero-content { padding: 72px 0 0 clamp(96px, 7vw, 150px); max-width: 520px; }
.hero h1 {
  margin: 0 0 24px;
  font-size: 62px;
  line-height: 1.08;
  letter-spacing: 0;
}
.hero h1 span, .auth-promo h1 span { color: var(--orange); }
.hero p {
  margin: 0 0 38px;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 600;
  max-width: 390px;
}

.profile-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  color: var(--blue);
  font-size: 18px;
  font-weight: 800;
}

.profile-link svg { width: 22px; height: 22px; }

.home-content {
  position: relative;
  z-index: 2;
  max-width: 1220px;
  margin: -76px auto 38px;
  padding: 0 30px;
}

.trust-card, .agency-band, .card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.trust-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 174px;
  overflow: hidden;
}

.trust-card article {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 34px 48px;
}

.trust-card article + article { border-left: 1px solid var(--line); }
.trust-card h2, .agency-band h2, .footer h2, .job-main h2 { margin: 0; font-size: 20px; }
.trust-card p, .agency-band p { margin: 10px 0 0; color: var(--navy); line-height: 1.55; }

.icon-pill, .agency-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  color: var(--orange);
  background: #fff3ed;
}

.icon-pill { border-radius: 50%; }
.icon-pill.green { color: #31a766; background: #eaf8ef; }
.icon-pill svg, .agency-icon svg { width: 36px; height: 36px; }

.agency-band {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 42px;
  margin-top: 56px;
  padding: 48px 70px;
  background: linear-gradient(90deg, #f2f7ff, #fff);
}

.agency-icon {
  width: 140px;
  height: 140px;
  color: var(--blue);
  background: #e8f1ff;
  border-radius: 50%;
}

.agency-icon svg { width: 62px; height: 62px; }
.agency-band h2 { font-size: 30px; }
.agency-band p { font-size: 20px; }
.agency-band .btn { min-width: 250px; }

.footer {
  margin-top: auto;
  padding: 56px 50px 32px;
  background: radial-gradient(circle at 22% 8%, rgba(14, 76, 123, .62), transparent 31%), #061a2f;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 70px;
  max-width: 1180px;
  margin: 0 auto;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.brand-footer .brand-logo { width: 190px; }
.footer p, .footer a { color: rgba(255,255,255,.78); font-size: 18px; line-height: 1.55; }
.footer section { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.footer h2 { color: #fff; text-transform: uppercase; font-size: 16px; margin: 0 0 10px; }
.socials { display: flex; gap: 16px; margin-top: 8px; }
.socials a { display: grid; place-items: center; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; font-weight: 800; }
.copyright { text-align: center; margin: 28px 0 0; }

.cookie-bar {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 90;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  width: min(1120px, calc(100vw - 48px));
  padding: 20px 24px;
  border: 1px solid rgba(219, 229, 240, .95);
  border-radius: 16px;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 18px 42px rgba(6, 27, 65, .16);
  transform: translateX(-50%);
  backdrop-filter: blur(10px);
}

.cookie-bar.is-customizing {
  align-items: stretch;
}

.cookie-bar [hidden] {
  display: none !important;
}

.cookie-kicker {
  margin: 0 0 8px;
  color: var(--orange);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.cookie-copy h2 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 20px;
}

.cookie-copy p:last-child {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
}

.cookie-copy a {
  color: var(--blue);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-settings {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding-top: 2px;
}

.cookie-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 104px;
  padding: 16px 18px;
  border: 1px solid #dbe5f1;
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
}

.cookie-option strong {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
}

.cookie-option small {
  display: block;
  max-width: 430px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.cookie-option b {
  display: inline-grid;
  place-items: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  background: #eef5ff;
  color: var(--blue);
  font-size: 12px;
  text-transform: uppercase;
}

.cookie-option input {
  width: 22px;
  height: 22px;
  accent-color: var(--orange);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.cookie-actions .btn {
  min-height: 46px;
  border-radius: 999px;
  padding: 0 18px;
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
  width: auto;
  min-width: 142px;
}

.cookie-actions .btn-primary {
  background: linear-gradient(180deg, #ff4b17 0%, #ff3f0c 100%);
}

.auth-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 54.2% 45.8%;
}

.auth-visual {
  position: relative;
  overflow: hidden;
  min-height: 900px;
}

.auth-visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 47% 50%;
}

.auth-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.95) 0%, rgba(255,255,255,.58) 37%, rgba(255,255,255,.03) 74%);
}

.auth-brand {
  position: absolute;
  top: 40px;
  left: 56px;
  z-index: 3;
}

.auth-promo {
  position: relative;
  z-index: 1;
  max-width: 470px;
  padding: 216px 0 0 56px;
}

.auth-promo h1 {
  margin: 0;
  font-size: 58px;
  line-height: 1.18;
  letter-spacing: 0;
}

.auth-promo > i {
  display: block;
  width: 58px;
  height: 3px;
  background: var(--orange);
  margin: 34px 0 48px;
}

.auth-promo article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  margin-bottom: 42px;
}

.auth-promo article svg { width: 46px; height: 46px; color: var(--orange); }
.auth-promo h2 { margin: 0 0 8px; font-size: 21px; }
.auth-promo p { margin: 0; font-size: 18px; line-height: 1.55; }

.auth-form-side {
  position: relative;
  padding: 46px 66px;
}

.auth-lang { display: flex; justify-content: flex-end; margin-bottom: 78px; }
.login-card { max-width: 530px; margin: 0 auto; }

.login-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 62px;
}

.login-tabs button,
.login-tabs a {
  height: 80px;
  border: 0;
  background: #fff;
  color: var(--navy);
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-shadow: inset 0 -1px 0 var(--line);
  cursor: pointer;
  text-align: center;
  transition: background .18s ease, color .18s ease, box-shadow .18s ease;
}

.login-tabs a:nth-child(2n),
.login-tabs button:nth-child(2n) {
  border-left: 1px solid var(--line);
}

.login-tabs button:hover,
.login-tabs a:hover {
  background: #f8fbff;
  color: var(--blue);
}

.login-tabs .active {
  color: var(--orange);
  border-bottom: 3px solid var(--orange);
  box-shadow: 0 8px 22px rgba(6,27,65,.08);
}

.login-card h1 { margin: 0 0 18px; font-size: 44px; line-height: 1.1; }
.login-card > p { margin: 0 0 34px; color: var(--muted); font-size: 21px; line-height: 1.5; font-weight: 500; }

.field {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 66px;
  margin-bottom: 20px;
  border: 1px solid #d8e1ec;
  border-radius: 7px;
  padding: 0 18px;
  color: var(--orange);
}

.field input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--navy);
  font-size: 20px;
}

.field input::placeholder { color: #6c7890; }
.field .muted { color: #8390a7; }
.password-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #8390a7;
  cursor: pointer;
}
.password-toggle:hover { background: #f2f6fb; color: var(--navy); }
.password-toggle:focus-visible { outline: 3px solid rgba(7, 94, 207, .22); outline-offset: 2px; }
.forgot { display: inline-block; margin: 2px 0 26px; color: var(--blue); font-weight: 700; }
.btn-submit { width: 100%; min-height: 66px; font-size: 25px; border: 0; }
.btn-submit span { font-size: 34px; font-weight: 400; }
.divider { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; margin: 34px 0 28px; color: var(--muted); font-weight: 700; }
.divider span { height: 1px; background: var(--line); }
.google {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
  height: 66px;
  border: 1px solid #d6e0ec;
  border-radius: 7px;
  background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
  color: var(--navy);
  font-size: 20px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(6, 27, 65, .07);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.google:hover {
  transform: translateY(-2px);
  border-color: #bfccdc;
  background: #fff;
  box-shadow: 0 14px 30px rgba(6, 27, 65, .13);
}
.google:active { transform: translateY(0); box-shadow: 0 7px 16px rgba(6, 27, 65, .09); }
.google:focus-visible { outline: 3px solid rgba(7, 94, 207, .22); outline-offset: 3px; }
.google b {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  color: #4285f4;
  font-size: 22px;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px #e5ebf3;
}
.register-copy { text-align: center; color: var(--navy); margin-top: 26px; }
.register-copy a { color: var(--orange); }

.google + .register-copy {
  margin-top: 0;
  padding-top: 24px;
}

.forgot-card .back {
  display: inline-block;
  margin-bottom: 48px;
  color: var(--blue);
  font-weight: 800;
}

.forgot-card h1 {
  margin-bottom: 16px;
}

.forgot-card > p:not(.register-copy) {
  max-width: 500px;
}

.register-auth-card .login-tabs {
  margin-bottom: 44px;
}

.register-auth-card h1 {
  color: var(--navy);
}

.register-auth-card .terms-copy {
  padding-top: 18px;
}

.register-auth-card .register-copy {
  margin-top: 28px;
}

.register-auth-card .btn-submit {
  margin-top: 8px;
}

.forgot-card .btn-submit + .register-copy {
  margin-top: 24px;
}

.register-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 39% 61%;
  background: #f5f6f8;
}

.register-info {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: #fff;
}

.register-info > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 50%;
  filter: grayscale(.15);
}

.register-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 75, 18, .96), rgba(255, 75, 18, .9));
  mix-blend-mode: multiply;
}

.register-brand {
  position: absolute;
  top: 52px;
  left: 58px;
  z-index: 1;
}

.register-brand .brand-logo {
  width: 175px;
  filter: brightness(0) invert(1);
}

.register-info-copy {
  position: relative;
  z-index: 1;
  max-width: 520px;
  padding: 34vh 58px 0;
}

.register-info-copy h1 {
  margin: 0 0 20px;
  font-size: 34px;
  line-height: 1.16;
  color: #fff;
}

.register-info-copy p {
  margin: 0;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 600;
  color: rgba(255, 255, 255, .92);
}

.register-form-side {
  position: relative;
  display: grid;
  align-items: center;
  padding: 70px 24px 60px;
}

.register-lang {
  position: absolute;
  top: 34px;
  right: 34px;
}

.register-card {
  width: min(100%, 500px);
  margin: 0 auto;
}

.register-card h1 {
  margin: 0 0 8px;
  text-align: center;
  color: var(--orange);
  font-size: 34px;
  line-height: 1.15;
}

.register-card > p {
  margin: 0 0 36px;
  text-align: center;
  color: var(--muted);
  font-size: 17px;
}

.register-card .field {
  background: #fff;
  height: 54px;
  margin-bottom: 16px;
}

.phone-row {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 6px;
}

.select-field {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--navy);
}

.select-field select {
  width: 100%;
  height: 100%;
  min-height: 54px;
  min-width: 0;
  border: 1px solid #dae4f0;
  border-radius: 7px;
  outline: 0;
  background-color: #fbfdff;
  color: var(--navy);
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  padding-left: 12px;
  cursor: pointer;
}

.captcha-field {
  justify-content: flex-start;
  gap: 18px;
}

.captcha-field span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  background: #d8d8d8;
  color: #1c2433;
  font-weight: 800;
  letter-spacing: .2px;
}

.captcha-field img {
  flex: 0 0 auto;
  width: 72px;
  height: 28px;
  border-radius: 4px;
  background: #d8d8d8;
  image-rendering: auto;
}

.captcha-field input {
  flex: 1;
}

.register-card .btn-submit {
  margin-top: 22px;
  min-height: 54px;
  font-size: 18px;
}

.register-card .btn-submit svg {
  width: 22px;
  height: 22px;
}

.terms-copy {
  margin: 0;
  padding-top: 16px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

.terms-copy a {
  color: var(--blue);
  font-weight: 700;
}

.form-separator {
  height: 1px;
  margin: 42px 0 30px;
  background: var(--line);
}

.register-card .register-copy {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.register-card .register-copy a {
  color: var(--navy);
  font-weight: 900;
}

.job-page { background: #fff; }

.job-topbar { min-height: 86px; padding: 18px 56px; border-bottom: 1px solid var(--line); }
.job-topbar .brand-logo { width: 198px; }
.jobs-topbar { background: transparent; border-bottom: 0; box-shadow: none; }
.jobs-topbar.hero-topbar.is-scrolled {
  background: linear-gradient(90deg, rgba(255,255,255,.18), rgba(255,255,255,.04));
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.jobs-topbar .brand-logo { width: 198px; }
.job-nav a, .job-nav button { font-weight: 700; }
.job-nav a:not(.btn) { display: inline-flex; align-items: center; gap: 10px; }
.job-nav svg { width: 21px; height: 21px; }
.job-main { max-width: 1478px; margin: 0 auto; padding: 0 20px 28px; }

.job-hero {
  display: grid;
  grid-template-columns: 43% 57%;
  min-height: 234px;
  overflow: hidden;
  border-top: 0;
}

.job-page:not(.job-panel-page) .job-hero {
  position: relative;
  z-index: 3;
  overflow: visible;
}

.job-page:not(.job-panel-page) .stats {
  position: relative;
  z-index: 1;
}

.job-title {
  position: relative;
  padding: 22px 36px 28px;
}

.job-title-actions {
  position: absolute;
  top: 22px;
  right: 24px;
  z-index: 4;
}

.share-trigger {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid #dbe5f0;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(6, 27, 65, .08);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, color .18s ease;
}

.share-trigger svg {
  width: 21px;
  height: 21px;
}

.share-trigger:hover,
[data-share-root].open .share-trigger {
  color: var(--orange);
  border-color: rgba(255, 75, 18, .28);
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(6, 27, 65, .12);
}

.share-trigger:focus-visible {
  outline: 3px solid rgba(7, 94, 207, .22);
  outline-offset: 3px;
}

.share-menu-modern {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  min-width: 190px;
  padding: 8px;
  border: 1px solid rgba(219, 229, 240, .9);
  border-radius: 8px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 38px rgba(6, 27, 65, .16);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px) scale(.98);
  transform-origin: top right;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

[data-share-root].open .share-menu-modern {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.share-menu-modern a,
.share-menu-modern button {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 100%;
  min-height: 40px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  padding: 0 10px;
  text-align: left;
}

.share-menu-modern svg {
  width: 18px;
  height: 18px;
  color: var(--orange);
}

.share-menu-modern a:hover,
.share-menu-modern button:hover {
  background: #f4f8ff;
  color: var(--blue);
}

.share-menu-modern a:focus-visible,
.share-menu-modern button:focus-visible {
  outline: 3px solid rgba(7, 94, 207, .2);
  outline-offset: 2px;
}

.share-menu-modern [data-share-channel="copy"].copied {
  color: #168241;
}

.job-page:not(.job-panel-page) .job-title-actions {
  position: absolute;
  top: 22px;
  right: 24px;
  z-index: 12;
  display: grid;
  justify-items: end;
  gap: 10px;
  margin: 0;
}

.job-page:not(.job-panel-page) .job-title-actions .share-trigger {
  width: 42px;
  height: 42px;
}

.job-page:not(.job-panel-page) .job-title-actions .share-menu-modern {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: none;
  grid-template-columns: 1fr;
  width: min(220px, 100%);
  min-width: 210px;
  opacity: 1;
  visibility: visible;
  transform: none;
  z-index: 20;
}

.job-page:not(.job-panel-page) .job-title-actions.open .share-menu-modern {
  display: grid;
}

.job-page:not(.job-panel-page) .job-title-actions .share-menu-modern a,
.job-page:not(.job-panel-page) .job-title-actions .share-menu-modern button {
  min-height: 42px;
  justify-content: flex-start;
}

.back { display: inline-block; color: var(--blue); font-size: 14px; margin-bottom: 32px; }
.job-title h1 {
  margin: 0 58px 18px 0;
  font-size: 39px;
  line-height: 1.15;
}
.job-title h2, .job-title p { display: flex; align-items: center; gap: 12px; margin: 0 0 22px; font-size: 18px; }
.job-title p { font-size: 15px; font-weight: 500; }
.job-title svg { width: 22px; height: 22px; }
.job-title p span { margin-left: 12px; padding: 4px 9px; color: #fff; background: #106dd8; border-radius: 5px; font-weight: 800; }
.job-hero img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 20px;
  min-height: 86px;
}
.stats article {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 18px 34px;
}
.stats article + article { border-left: 1px solid var(--line); }
.stats .icon-pill { width: 52px; height: 52px; border-radius: 10px; }
.stats .icon-pill svg { width: 30px; height: 30px; }
.stats p { margin: 0 0 5px; font-size: 14px; color: var(--muted); }
.stats h2 { font-size: 22px; }

.job-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, .8fr) minmax(330px, .95fr);
  gap: 16px;
  margin-top: 18px;
}

.description { padding: 28px 34px; }
.description h2 { margin-bottom: 22px; }
.description p { margin: 0 0 22px; line-height: 1.55; }
.description ul { list-style: none; padding: 0; margin: 0 0 26px; }
.description li { margin: 5px 0; line-height: 1.4; }
.description li::before { content: "✓"; display: inline-grid; place-items: center; width: 13px; height: 13px; margin-right: 10px; border-radius: 3px; background: #52b875; color: #fff; font-size: 10px; font-weight: 900; }
.description-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 18px; }
.description-actions .btn { min-height: 44px; font-size: 16px; }

.details { padding: 16px 24px; }
.details article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  padding: 16px 0;
}
.details article + article { border-top: 1px solid var(--line); }
.details .icon-pill { width: 40px; height: 40px; }
.details .icon-pill svg { width: 24px; height: 24px; }
.details h3 { margin: 0 0 5px; font-size: 14px; }
.details p { margin: 0; color: var(--navy); }
.details .open { display: inline-block; padding: 5px 13px; border-radius: 18px; color: #168241; background: #dff4e7; font-weight: 800; }

.side-stack { display: grid; gap: 16px; }
.mini-list, .req-list, .share-card, .agency-card { padding: 22px 26px; }
.mini-list h2, .req-list h2, .share-card h2, .agency-card h2 { margin-bottom: 18px; }
.mini-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  min-height: 48px;
  margin-bottom: 12px;
  overflow: hidden;
}
.mini-list svg { width: 54px; height: 48px; padding: 13px; color: var(--orange); background: #fff8f4; border-right: 1px solid #f3e5de; }
.mini-list p { margin: 0; padding: 8px 18px; font-size: 14px; }
.req-list dl { display: grid; grid-template-columns: 1fr 1fr; row-gap: 24px; margin: 0; }
.req-list dt { font-weight: 800; }
.req-list dd { margin: 0; color: var(--navy); }
.share-card { display: grid; grid-template-columns: 1.25fr 1fr; gap: 22px; }
.share-card > div + div { border-left: 1px solid var(--line); padding-left: 22px; }
.share-card p { margin: 0 0 18px; }
.share-card h3 { margin: 0 0 20px; }
.share-card .btn { min-height: 42px; font-size: 15px; }
.share-card a:not(.btn) { color: var(--blue); font-weight: 800; }

.agency-card {
  display: grid;
  gap: 20px;
}

.agency-card-head {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.agency-card-head p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.agency-card-head h2 {
  margin: 0;
  font-size: 24px;
}

.agency-more-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid #e4ebf4;
  border-radius: 7px;
  background: #fbfdff;
  color: var(--blue);
  font-weight: 900;
  text-align: center;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.agency-more-link:hover {
  border-color: #cfdbea;
  background: #fff;
  transform: translateY(-1px);
}

.floating-apply {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 28px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff5317 0%, #ff420c 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(255, 75, 18, .28);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.floating-apply:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(255, 75, 18, .34);
}

.floating-apply:active {
  transform: translateY(0);
  box-shadow: 0 10px 24px rgba(255, 75, 18, .26);
}

.job-panel-main .floating-apply {
  position: sticky;
  bottom: 14px;
  z-index: 35;
  display: flex;
  width: min(240px, calc(100% - 32px));
  margin: 20px auto 4px;
}

.jobs-page { background: #fbfcff; }

.jobs-main {
  max-width: 1320px;
  margin: 0 auto;
  padding: 34px 28px 72px;
}

.jobs-hero { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 32px; padding: 34px 0 28px; }

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
}

.jobs-hero h1 { margin: 0; max-width: 760px; font-size: 44px; line-height: 1.1; }

.jobs-hero p:last-child {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.jobs-hero-card { min-width: 178px; padding: 22px 24px; border-radius: 8px; background: var(--navy); color: #fff; box-shadow: 0 18px 36px rgba(6, 27, 65, .14); }

.jobs-hero-card strong {
  display: block;
  color: var(--orange);
  font-size: 44px;
  line-height: 1;
}

.jobs-hero-card span { color: rgba(255,255,255,.74); font-weight: 800; }

.jobs-layout { display: grid; gap: 18px; align-items: start; }
.jobs-layout-wide { grid-template-columns: 1fr; }

.filters-panel, .results-toolbar, .job-card-modern { border: 1px solid #e4ebf4; border-radius: 8px; background: #fff; }

.filters-panel { padding: 20px; box-shadow: 0 10px 28px rgba(6, 27, 65, .05); }

.filters-bar {
  position: static;
  display: grid;
  grid-template-columns: minmax(64px, auto) repeat(3, minmax(180px, 1fr)) auto;
  align-items: end;
  gap: 16px;
}

.filters-head {
  align-self: start;
  display: grid;
  gap: 8px;
  margin-bottom: 0;
}

.results-toolbar h2 {
  margin: 0;
  font-size: 22px;
}

.filters-head h2 {
  margin: 0;
  color: var(--navy);
  font-size: 16px;
}

.filters-clear {
  justify-self: end;
  min-height: 44px;
  border: 0;
  background: transparent;
  color: var(--blue);
  font-weight: 800;
  cursor: pointer;
  padding: 0 4px;
  text-align: right;
}

.filter-field { display: grid; gap: 8px; margin-bottom: 0; }

.filter-field span,
.results-toolbar label span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.filter-field input, .filter-field select, .results-toolbar select {
  width: 100%;
  min-height: 44px;
  border: 1px solid #dae4f0;
  border-radius: 7px;
  background: #fbfdff;
  color: var(--navy);
  padding: 0 12px;
  font: inherit;
  font-weight: 700;
}

.filter-field select,
.results-toolbar select,
.select-field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--navy) 50%),
    linear-gradient(135deg, var(--navy) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 16px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 44px;
}

.filter-field select::-ms-expand,
.results-toolbar select::-ms-expand,
.select-field select::-ms-expand {
  display: none;
}

.register-auth-card .field.select-field {
  display: flex;
  align-items: center;
  height: 66px;
  margin-bottom: 20px;
  border: 1px solid #d8e1ec;
  border-radius: 7px;
  padding: 0 18px;
  background: #fff;
}

.register-auth-card .field.select-field .auth-select {
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  outline: 0;
  background-color: transparent;
  background-image:
    linear-gradient(45deg, transparent 50%, #6c7890 50%),
    linear-gradient(135deg, #6c7890 50%, transparent 50%);
  color: #6c7890;
  font-size: 20px;
  font-weight: 400;
  padding: 0 38px 0 0;
}

.register-auth-card .field.select-field:focus-within {
  border-color: #b9c9dd;
  box-shadow: 0 0 0 3px rgba(0, 101, 217, .08);
}

.prefix-field {
  position: relative;
  padding: 0;
  color: #6c7890;
}

.register-auth-card .prefix-field {
  overflow: visible;
  padding: 0 18px;
}

.auth-prefix-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  color: #6c7890;
  font: inherit;
  font-size: 20px;
  cursor: pointer;
  padding: 0;
  text-align: left;
}

.auth-prefix-trigger svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: #6c7890;
  transition: transform .18s ease;
}

.auth-prefix-trigger .prefix-leading-icon {
  color: var(--orange);
  transform: none;
}

.prefix-field.open .auth-prefix-trigger .prefix-leading-icon {
  transform: none;
}

.prefix-field.open .auth-prefix-trigger svg {
  transform: rotate(180deg);
}

.auth-prefix-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  padding: 6px;
  max-height: 280px;
  overflow-y: auto;
  border: 1px solid #d8e1ec;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(6, 27, 65, .14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}

.prefix-field.open .auth-prefix-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.auth-prefix-menu button {
  min-height: 36px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #6c7890;
  cursor: pointer;
  font: inherit;
  font-size: 16px;
  text-align: left;
  padding: 0 10px;
}

.auth-prefix-menu button:hover,
.auth-prefix-menu button.active {
  background: #eef5ff;
  color: var(--navy);
}

.check-filter {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  color: var(--navy);
  font-weight: 800;
}

.check-filter input {
  width: 18px;
  height: 18px;
  accent-color: var(--orange);
}

.results-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 18px 20px; margin-bottom: 14px; box-shadow: 0 8px 22px rgba(6, 27, 65, .04); }

.results-toolbar p {
  margin: 7px 0 0;
  color: var(--muted);
}

.results-toolbar label {
  display: grid;
  gap: 8px;
  min-width: 190px;
}

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

.show-more-jobs {
  display: flex;
  width: fit-content;
  min-width: 180px;
  margin: 24px auto 0;
}

.show-more-jobs[hidden] {
  display: none;
}

.job-card-modern { position: relative; display: flex; flex-direction: column; min-height: 300px; gap: 18px; padding: 22px 22px 20px; box-shadow: 0 6px 18px rgba(6, 27, 65, .04); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }

.job-card-share {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 6;
}

.job-card-share .share-trigger {
  width: 38px;
  height: 38px;
  border-color: #e1e9f3;
  background: #fbfdff;
  box-shadow: 0 8px 18px rgba(6, 27, 65, .06);
}

.job-card-share .share-trigger svg {
  width: 18px;
  height: 18px;
}

.job-card-share .share-menu-modern {
  min-width: 178px;
}

.job-card-modern::before { content: ""; position: absolute; left: 0; top: 18px; bottom: 18px; width: 3px; border-radius: 0 3px 3px 0; background: var(--orange); opacity: .9; }

.job-card-modern:hover { transform: translateY(-2px); border-color: #cfdbea; box-shadow: 0 16px 34px rgba(6, 27, 65, .09); }

.job-card-main { min-width: 0; flex: 1; }

.job-card-top { display: grid; grid-template-rows: auto 32px; gap: 14px; margin-bottom: 16px; padding-right: 46px; }

.job-card-modern h3 { margin: 0; font-size: 23px; line-height: 1.2; min-height: 56px; }

.job-card-modern h3 a {
  color: var(--navy);
}

.job-card-modern .specialization { margin: 7px 0 0; color: var(--muted); font-weight: 700; min-height: 22px; }

.drawer-open {
  overflow: hidden;
}

.job-detail-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  justify-items: end;
  pointer-events: none;
}

.job-detail-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(6, 27, 65, .38);
  opacity: 0;
  cursor: pointer;
  transition: opacity .22s ease;
}

.job-detail-drawer {
  position: relative;
  width: min(430px, 100vw);
  height: 100%;
  min-height: 0;
  background: #fff;
  box-shadow: -24px 0 60px rgba(6, 27, 65, .22);
  transform: translateX(104%);
  transition: transform .24s ease;
  display: flex;
  flex-direction: column;
}

.job-detail-overlay.open {
  pointer-events: auto;
}

.job-detail-overlay.open .job-detail-backdrop {
  opacity: 1;
}

.job-detail-overlay.open .job-detail-drawer {
  transform: translateX(0);
}

.job-detail-drawer-head {
  z-index: 2;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding: 0 14px 0 18px;
  border-bottom: 1px solid #e4ebf4;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
}

.job-detail-drawer-head strong {
  font-size: 16px;
}

.job-detail-drawer-head button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #f3f7fc;
  color: var(--navy);
  cursor: pointer;
}

.job-detail-drawer-head svg {
  width: 20px;
  height: 20px;
}

.job-detail-drawer-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  overscroll-behavior: contain;
  background: #fbfcff;
}

.job-detail-component {
  padding: 0 14px 24px;
}

.job-detail-loading,
.job-detail-error {
  margin: 14px;
  padding: 22px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
}

.job-detail-error h2 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 22px;
}

.job-detail-error p {
  margin: 0 0 16px;
}

.job-detail-drawer-body .job-hero,
.job-detail-drawer-body .stats,
.job-detail-drawer-body .job-grid,
.job-detail-drawer-body .details,
.job-detail-drawer-body .side-stack,
.job-detail-drawer-body .description-actions {
  grid-template-columns: 1fr;
}

.job-detail-drawer-body .job-hero {
  position: relative;
  z-index: 3;
  margin-top: 14px;
  overflow: visible;
}

.job-detail-drawer-body .stats {
  position: relative;
  z-index: 1;
}

.job-detail-drawer-body .job-hero img {
  order: -1;
  min-height: 210px;
  border-radius: 8px 8px 0 0;
}

.job-detail-drawer-body .job-title,
.job-detail-drawer-body .description,
.job-detail-drawer-body .details,
.job-detail-drawer-body .mini-list,
.job-detail-drawer-body .req-list,
.job-detail-drawer-body .agency-card {
  padding: 20px 18px;
}

.job-detail-drawer-body .job-title h1 {
  font-size: 31px;
  line-height: 1.05;
}

.job-detail-drawer-body .stats article {
  min-height: auto;
}

.job-detail-drawer-body .stats article + article {
  border-left: 0;
  border-top: 1px solid var(--line);
}

.job-detail-drawer-body .req-list dl {
  grid-template-columns: 1fr;
  gap: 6px;
}

.job-detail-drawer-body .job-title > .job-title-actions {
  position: absolute !important;
  top: 20px !important;
  right: 18px !important;
  z-index: 25;
  display: grid;
  justify-items: end;
  gap: 10px;
  margin: 0;
}

.job-detail-drawer-body .job-title > .job-title-actions .share-trigger {
  justify-self: end;
}

.job-detail-drawer-body .job-title > .job-title-actions .share-menu-modern {
  position: absolute !important;
  top: calc(100% + 10px) !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  display: none;
  grid-template-columns: 1fr;
  width: 210px;
  min-width: 210px;
  max-height: none;
  overflow: visible;
  opacity: 1;
  visibility: visible;
  transform: none;
  padding: 6px;
  box-shadow: 0 18px 42px rgba(6, 27, 65, .16);
}

.job-detail-drawer-body .job-title > .job-title-actions.open .share-menu-modern {
  display: grid;
  transform: none;
}

.job-detail-drawer-body .job-title > .job-title-actions .share-menu-modern a,
.job-detail-drawer-body .job-title > .job-title-actions .share-menu-modern button {
  min-height: 38px;
  padding: 0 12px;
  justify-content: flex-start;
}

.job-badge {
  display: inline-flex;
  align-items: center;
  align-self: start;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #fff3ed;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  width: 100%;
}

.job-card-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 12px; padding-top: 14px; border-top: 1px solid #edf2f7; }

.job-card-meta span { display: grid; gap: 5px; color: var(--muted); font-size: 12px; font-weight: 500; text-transform: uppercase; }

.job-card-meta strong { color: var(--navy); font-size: 15px; font-weight: 700; text-transform: none; }
.job-card-meta span:first-child strong { color: var(--orange); font-size: 18px; }

.job-card-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; min-width: 0; }

.job-card-actions .btn { min-height: 44px; font-size: 15px; padding: 0 18px; }

.empty-jobs {
  display: none;
  padding: 34px;
  border: 1px dashed #cbd8e8;
  border-radius: 8px;
  text-align: center;
  color: var(--muted);
  background: #fff;
  font-weight: 800;
}

.empty-jobs.visible {
  display: block;
}

.about-page {
  background: #fbfcff;
}

.about-page .about-hero > .hero-topbar {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
}

.about-hero {
  position: relative;
  min-height: 970px;
  overflow: clip;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 50%;
}

.about-hero-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.82) 33%, rgba(255,255,255,.2) 62%, rgba(255,255,255,.04) 100%);
}

.about-hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 178px 0 0 clamp(96px, 7vw, 150px);
}

.about-hero-content h1 {
  max-width: 700px;
  margin: 0;
  font-size: 56px;
  line-height: 1.08;
}

.about-hero-content p:not(.eyebrow) {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.6;
  font-weight: 600;
}

.about-main {
  max-width: 1320px;
  margin: -76px auto 0;
  padding: 0 28px 72px;
  position: relative;
  z-index: 2;
}

.about-metrics {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  margin: 18px 0 64px;
}

.about-metrics article {
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 26px 24px;
  text-align: center;
}

.about-metrics article + article {
  border-left: 1px solid var(--line);
}

.about-metrics strong {
  color: var(--orange);
  font-size: 34px;
  line-height: 1;
}

.about-metrics span {
  color: var(--navy);
  font-weight: 800;
  line-height: 1.35;
}

.about-section,
.about-services {
  margin-top: 64px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 24px;
}

.section-heading h2 {
  margin: 0;
  font-size: 36px;
  line-height: 1.15;
}

.section-heading p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

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

.about-card {
  padding: 24px;
}

.about-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.about-card-head .icon-pill {
  width: 50px;
  height: 50px;
}

.about-card-head .icon-pill svg {
  width: 28px;
  height: 28px;
}

.about-card h3 {
  margin: 0;
  font-size: 22px;
}

.about-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.about-process {
  margin-top: 64px;
  padding: 32px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.process-steps article {
  padding: 24px;
  border-radius: 8px;
  background: #fbfdff;
  border: 1px solid #e4ebf4;
}

.process-step-head {
  display: grid;
  grid-template-columns: auto minmax(36px, 1fr) auto;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.process-step-head span {
  color: var(--orange);
  font-size: 18px;
  font-weight: 900;
}

.process-step-head i {
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 75, 18, .55), rgba(223, 230, 240, .9));
}

.process-step-head h3 {
  margin: 0;
  font-size: 21px;
  white-space: nowrap;
}

.process-steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.service-list {
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(6, 27, 65, .07);
}

.service-list-head,
.service-row {
  display: grid;
  grid-template-columns: minmax(220px, .7fr) minmax(320px, 1fr) minmax(150px, auto);
  align-items: center;
  gap: 22px;
}

.service-list-head {
  min-height: 54px;
  padding: 0 24px;
  background: #f3f7fc;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-list-head span:last-child {
  justify-self: end;
  text-align: right;
}

.service-row {
  min-height: 66px;
  padding: 16px 24px;
  background: #fff;
}

.service-row + .service-row {
  border-top: 1px solid #e7edf5;
}

.service-row:hover {
  background: #fbfdff;
}

.service-row.price {
  background: linear-gradient(90deg, #fff 0%, #fff8f4 100%);
}

.service-name {
  color: var(--navy);
  font-weight: 900;
}

.service-desc {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}

.service-badge {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff1eb;
  color: var(--orange);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.service-badge.blue {
  background: #e8f1ff;
  color: var(--blue);
}

.service-badge.muted {
  background: #f0f4f8;
  color: var(--navy);
}

.service-badge.price {
  background: var(--orange);
  color: #fff;
}

.about-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin-top: 64px;
  padding: 34px 40px;
  background: linear-gradient(90deg, #f2f7ff, #fff);
}

.about-cta h2 {
  margin: 0;
  font-size: 30px;
}

.legal-page {
  background: #fbfcff;
}

.privacy-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.privacy-page .legal-main {
  flex: 1 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 88px;
  padding-bottom: 88px;
}

.privacy-page .legal-hero,
.privacy-page .legal-content {
  width: min(860px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.privacy-page .legal-content {
  min-height: 170px;
}

.legal-main {
  max-width: 1320px;
  margin: 0 auto;
  padding: 34px 28px 72px;
}

.legal-hero {
  padding: 44px 0 34px;
  max-width: 860px;
}

.legal-hero h1 {
  margin: 0;
  font-size: 54px;
  line-height: 1.08;
}

.legal-hero p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.6;
}

.legal-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 6px;
  padding: 20px;
}

.legal-toc h2 {
  margin: 0 0 12px;
  font-size: 18px;
}

.legal-toc a {
  padding: 10px 12px;
  border-radius: 7px;
  color: var(--muted);
  font-weight: 800;
  transition: background .18s ease, color .18s ease;
}

.legal-toc a:hover {
  background: #f2f7ff;
  color: var(--blue);
}

.legal-toc a.active {
  background: #fff3ed;
  color: var(--orange);
  box-shadow: inset 3px 0 0 var(--orange);
}

.legal-content {
  padding: 36px 44px;
}

.legal-content section {
  scroll-margin-top: 120px;
}

.legal-content section + section {
  margin-top: 38px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin: 0 0 16px;
  font-size: 28px;
}

.legal-content h3 {
  margin: 24px 0 12px;
  font-size: 18px;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

.legal-content p {
  margin: 0 0 14px;
}

.legal-content b {
  color: var(--navy);
}

.legal-content ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
}

.faq-page {
  background: #fbfcff;
}

.faq-main {
  max-width: 1320px;
  margin: 0 auto;
  padding: 34px 28px 72px;
}

.faq-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 28px;
  align-items: end;
  padding: 44px 0 34px;
}

.faq-hero h1 {
  margin: 0;
  max-width: 780px;
  font-size: 54px;
  line-height: 1.08;
}

.faq-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.6;
}

.faq-search {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  padding: 0 18px;
}

.faq-search svg {
  width: 24px;
  height: 24px;
  color: var(--orange);
}

.faq-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--navy);
  font: inherit;
  font-size: 18px;
}

.faq-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.faq-summary {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 8px;
  padding: 20px;
}

.faq-summary a:not(.btn) {
  padding: 10px 12px;
  border-radius: 7px;
  color: var(--muted);
  font-weight: 800;
  transition: background .18s ease, color .18s ease;
}

.faq-summary a:not(.btn):hover {
  background: #f2f7ff;
  color: var(--blue);
}

.faq-summary .btn {
  margin-top: 12px;
  min-height: 46px;
}

.faq-content {
  display: grid;
  gap: 18px;
}

.faq-group {
  padding: 28px 34px;
  scroll-margin-top: 120px;
}

.faq-group-head {
  margin-bottom: 16px;
}

.faq-group-head h2 {
  margin: 0;
  font-size: 28px;
}

.faq-item {
  border-top: 1px solid var(--line);
}

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

.faq-item > button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  min-height: 66px;
  border: 0;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  font: inherit;
  font-size: 18px;
  font-weight: 900;
  text-align: left;
  padding: 0;
}

.faq-item > button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--orange);
  transition: transform .18s ease;
}

.faq-item.open > button svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 42px 20px 0;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

.faq-item.hidden,
.faq-group.hidden,
.faq-empty {
  display: none;
}

.faq-empty.visible {
  display: block;
  padding: 24px 28px;
  color: var(--muted);
  font-weight: 800;
}

.survey-page {
  background: #fbfcff;
}

.survey-hero {
  position: relative;
  min-height: 970px;
  overflow: clip;
}

.survey-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.survey-hero-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.95) 0%, rgba(255,255,255,.78) 29%, rgba(255,255,255,.16) 54%, rgba(255,255,255,.02) 100%);
}

.survey-hero-content {
  position: relative;
  z-index: 1;
  max-width: 520px;
  padding: 72px 0 0 clamp(96px, 7vw, 150px);
}

.survey-hero-content h1 {
  margin: 0 0 24px;
  font-size: 62px;
  line-height: 1.08;
}

.survey-hero-content p:not(.eyebrow) {
  margin: 0 0 38px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.45;
  font-weight: 600;
  max-width: 390px;
}

.survey-main {
  max-width: 1180px;
  margin: -76px auto 72px;
  padding: 0 30px;
  position: relative;
  z-index: 3;
}

.survey-intro {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0;
  overflow: hidden;
}

.survey-intro article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 28px 32px;
}

.survey-intro article + article {
  border-left: 1px solid var(--line);
}

.survey-intro h2 {
  margin: 0 0 8px;
  font-size: 19px;
}

.survey-intro p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.survey-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 20px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
}

.survey-modal.open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

.survey-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(6, 27, 65, .48);
  cursor: pointer;
}

.survey-dialog {
  position: relative;
  width: min(720px, 100%);
  max-height: min(760px, calc(100vh - 40px));
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(6, 27, 65, .28);
  overflow: hidden;
  transform: translateY(12px) scale(.98);
  transition: transform .2s ease;
}

.survey-modal[data-survey-step="5"] .survey-dialog {
  overflow: visible;
}

.survey-modal.open .survey-dialog {
  transform: translateY(0) scale(1);
}

.survey-dialog-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 30px 22px;
  border-bottom: 1px solid var(--line);
}

.survey-dialog-head p {
  margin: 0 0 8px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.survey-dialog-head h2 {
  margin: 0;
  font-size: 30px;
}

.survey-dialog-head > button {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: #f3f7fc;
  color: var(--navy);
  cursor: pointer;
}

.survey-dialog-head svg {
  width: 20px;
  height: 20px;
}

.survey-steps {
  overflow: auto;
  padding: 28px 30px 10px;
}

.survey-modal[data-survey-step="5"] .survey-steps {
  overflow: visible;
}

.survey-step {
  display: none;
}

.survey-step.active {
  display: block;
}

.survey-step > p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.survey-select {
  margin-bottom: 18px;
}

.survey-rating-guide {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin: -8px 0 18px;
  padding: 12px;
  border: 1px solid #dbe5f1;
  border-radius: 8px;
  background: #f7faff;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.survey-rating {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 22px;
}

.survey-rating label {
  position: relative;
  cursor: pointer;
}

.survey-rating input {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.survey-rating span {
  display: grid;
  place-items: center;
  min-height: 58px;
  border: 1px solid #dbe5f1;
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  font-size: 20px;
  font-weight: 900;
  transition: border-color .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.survey-rating label:hover span {
  border-color: rgba(255, 68, 23, .5);
  transform: translateY(-1px);
}

.survey-rating input:checked + span {
  border-color: var(--orange);
  background: #fff1eb;
  color: var(--orange);
  box-shadow: 0 14px 30px rgba(255, 68, 23, .12);
}

.survey-comment {
  display: grid;
  gap: 10px;
  color: var(--navy);
  font-weight: 900;
}

.survey-comment textarea {
  min-height: 120px;
  width: 100%;
  border: 1px solid #d4e0ee;
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  font: inherit;
  font-weight: 700;
  line-height: 1.5;
  padding: 14px 16px;
  resize: vertical;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.survey-comment textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 94, 204, .1);
}

.survey-contact-step > p {
  max-width: 560px;
  margin-bottom: 14px;
}

.survey-contact-card {
  display: grid;
  gap: 10px;
  padding: 16px 18px 18px;
  border: 1px solid #dbe5f1;
  border-radius: 8px;
  background: #f8fbff;
}

.survey-contact-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 2px;
}

.survey-contact-header span {
  display: inline-grid;
  place-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff1eb;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.survey-contact-header strong {
  color: var(--navy);
  font-size: 16px;
}

.survey-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.survey-contact-card .field {
  min-height: 56px;
  margin: 0;
  background: #fff;
}

.survey-phone-row {
  grid-template-columns: minmax(150px, .75fr) minmax(0, 1.6fr);
  gap: 12px;
}

.survey-phone-row .prefix-field {
  overflow: visible;
}

.survey-phone-row .auth-prefix-trigger {
  justify-content: space-between;
  gap: 12px;
  padding: 0 14px 0 18px;
  color: #6c7890;
  font-size: 18px;
  font-weight: 400;
}

.survey-phone-row .auth-prefix-trigger [data-prefix-label] {
  min-width: 0;
  flex: 1;
}

.survey-phone-row .auth-prefix-trigger > svg:last-child {
  width: 16px;
  height: 16px;
  margin-left: auto;
  color: #8b98ad;
}

.survey-phone-row .prefix-field:focus-within {
  border-color: #b9c9dd;
  box-shadow: 0 0 0 3px rgba(0, 101, 217, .08);
}

.survey-phone-row .auth-prefix-menu {
  top: auto;
  bottom: calc(100% + 8px);
  z-index: 50;
  max-height: 220px;
  overflow: auto;
}

.survey-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.5;
}

.survey-consent input {
  width: 18px;
  height: 18px;
  accent-color: var(--orange);
  margin-top: 3px;
}

.survey-dialog-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 20px 30px 28px;
  border-top: 1px solid var(--line);
}

.refer-page {
  background: #fbfcff;
}

.refer-hero {
  position: relative;
  min-height: 970px;
  overflow: clip;
}

.refer-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 50%;
}

.refer-hero-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.82) 33%, rgba(255,255,255,.2) 62%, rgba(255,255,255,.04) 100%);
}

.refer-hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 72px 0 0 clamp(96px, 7vw, 150px);
}

.refer-hero-content h1 {
  max-width: 690px;
  margin: 0;
  font-size: 56px;
  line-height: 1.08;
}

.refer-hero-content p:not(.eyebrow) {
  max-width: 640px;
  margin: 22px 0 0;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.6;
  font-weight: 600;
}

.refer-hero-content .btn-large {
  margin-top: 34px;
}

.refer-main {
  max-width: 1320px;
  margin: -128px auto 0;
  padding: 0 28px 72px;
  position: relative;
  z-index: 2;
}

.refer-layout {
  max-width: 900px;
  margin: 28px auto 0;
}

.refer-support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 0;
}

.refer-panel,
.refer-form {
  padding: 34px;
}

.refer-panel {
  min-height: 270px;
}

.refer-panel h2 {
  margin: 0 0 20px;
  min-height: 66px;
  font-size: 27px;
  line-height: 1.2;
}

.refer-checks {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.refer-checks li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.45;
}

.refer-checks svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: var(--orange);
}

.refer-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff1eb;
  color: var(--orange);
  font-weight: 900;
}

.refer-form fieldset {
  margin: 0 0 22px;
  padding: 18px 18px 2px;
  border: 1px solid #e4ebf4;
  border-radius: 8px;
  background: #fbfdff;
}

.refer-form .field,
.refer-form .field input,
.refer-form .textarea-field textarea {
  background: transparent;
}

.refer-form .field {
  background: #fff;
}

.refer-form legend {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.fieldset-title {
  margin: 0 0 16px;
  padding: 0 8px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 900;
}

.refer-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.textarea-field {
  display: grid;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--muted);
  font-weight: 800;
}

.textarea-field textarea {
  width: 100%;
  resize: vertical;
  min-height: 112px;
  border: 1px solid #d8e1ec;
  border-radius: 7px;
  outline: 0;
  padding: 14px 16px;
  color: var(--navy);
  font: inherit;
}

.textarea-field textarea:focus,
.refer-form .field:focus-within {
  border-color: #b8c8dc;
  box-shadow: 0 0 0 3px rgba(7, 94, 207, .08);
}

.consent-field {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.45;
}

.consent-field input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--orange);
}

.refer-note {
  max-width: 420px;
  margin: 14px auto 0;
  color: var(--muted);
  text-align: center;
  font-weight: 500;
}

.refer-form .btn-submit {
  width: auto;
  min-width: 260px;
  padding-inline: 42px;
  margin: 4px auto 0;
  display: flex;
}

.refer-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
  padding: 24px;
  overflow: visible;
  background: #fff;
}

.refer-steps article {
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid #e4ebf4;
  border-radius: 8px;
  background: #fbfdff;
}

.refer-steps h2 {
  margin: 0;
  font-size: 17px;
  line-height: 1.35;
}

.refer-steps article:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -16px;
  top: 50%;
  width: 16px;
  height: 1px;
  background: #dfe6f0;
}

@media (max-width: 1100px) {
  .hero { min-height: 860px; }
  .hero-content { padding-left: 48px; }
  .trust-card { grid-template-columns: 1fr; }
  .trust-card article + article { border-left: 0; border-top: 1px solid var(--line); }
  .agency-band { grid-template-columns: auto 1fr; }
  .agency-band .btn { grid-column: 2; justify-self: start; }
  .auth-shell { grid-template-columns: 1fr; }
  .auth-visual { min-height: 620px; }
  .auth-form-side { padding: 34px 28px 60px; }
  .auth-lang { margin-bottom: 34px; }
  .job-grid { grid-template-columns: 1fr 1fr; }
  .side-stack { grid-column: 1 / -1; grid-template-columns: repeat(3, 1fr); align-items: start; }
  .share-card { grid-template-columns: 1fr; }
  .share-card > div + div { border-left: 0; border-top: 1px solid var(--line); padding: 18px 0 0; }
  .register-shell { grid-template-columns: 1fr; }
  .register-info { min-height: 500px; }
  .register-info-copy { padding-top: 210px; }
  .register-form-side { min-height: auto; padding: 96px 24px 70px; }
  .jobs-layout { grid-template-columns: 1fr; }
  .filters-panel { position: static; }
  .filters-bar { grid-template-columns: 1fr 1fr; }
  .filters-head { grid-column: 1 / -1; }
  .filters-clear { grid-column: 2; justify-self: end; }
  .jobs-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .job-card-meta { grid-template-columns: 1fr 1fr; }
  .about-hero { min-height: 860px; }
  .about-hero-content { padding-left: 48px; }
  .about-metrics { grid-template-columns: repeat(3, 1fr); }
  .about-metrics article:nth-child(4) { border-left: 0; }
  .about-card-grid, .process-steps { grid-template-columns: 1fr; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
  .faq-hero,
  .faq-layout { grid-template-columns: 1fr; }
  .faq-summary { position: static; }
  .survey-hero-content { padding-left: 48px; }
  .survey-intro { grid-template-columns: 1fr; }
  .survey-intro article + article { border-left: 0; border-top: 1px solid var(--line); }
  .refer-support-grid { grid-template-columns: 1fr; }
  .refer-hero { min-height: 860px; }
  .refer-hero-content { padding-left: 48px; }
}

@media (max-width: 820px) {
  .topbar { padding: 22px 20px; }
  .brand-logo { width: 184px; }
  .top-actions { gap: 10px; }
  .top-actions .btn-light { display: none; }
  .btn { min-height: 46px; padding: 0 18px; font-size: 16px; }
  .hero { min-height: 780px; }
  .hero-wash { background: linear-gradient(90deg, rgba(255,255,255,.94), rgba(255,255,255,.64), rgba(255,255,255,.18)); }
  .hero-content { padding: 48px 24px 0; }
  .hero h1 { font-size: 54px; }
  .hero p { font-size: 20px; }
  .btn-large { min-width: 230px; min-height: 64px; font-size: 22px; }
  .home-content { margin-top: -48px; padding: 0 18px; }
  .trust-card article { padding: 26px 24px; }
  .agency-band { grid-template-columns: 1fr; padding: 34px 28px; gap: 20px; }
  .agency-band .btn { grid-column: auto; }
  .agency-icon { width: 86px; height: 86px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .cookie-bar {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  .cookie-actions {
    justify-content: start;
  }
  .auth-promo { padding: 160px 28px 0; }
  .auth-brand { left: 28px; }
  .auth-promo h1 { font-size: 46px; }
  .login-tabs button,
  .login-tabs a { font-size: 15px; gap: 8px; height: 66px; }
  .job-topbar { padding: 16px 18px; flex-wrap: wrap; }
  .job-nav { width: 100%; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
  .job-hero { grid-template-columns: 1fr; }
  .job-hero img { min-height: 210px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stats article:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .stats article:nth-child(4) { border-top: 1px solid var(--line); }
  .job-grid, .side-stack { grid-template-columns: 1fr; }
  .description-actions { grid-template-columns: 1fr; }
  .jobs-topbar { flex-wrap: wrap; padding: 16px 18px; }
  .jobs-main { padding: 26px 18px 56px; }
  .jobs-hero { grid-template-columns: 1fr; }
  .jobs-hero h1 { font-size: 36px; }
  .filters-bar { grid-template-columns: 1fr; }
  .filters-clear { grid-column: 1; justify-self: end; min-height: 32px; }
  .results-toolbar { align-items: stretch; flex-direction: column; }
  .results-toolbar label { min-width: 0; }
  .jobs-list { grid-template-columns: 1fr; }
  .job-card-actions { grid-template-columns: 1fr 1fr; min-width: 0; }
  .about-main { padding: 0 18px 56px; }
  .about-hero-content h1 { font-size: 42px; }
  .about-metrics { grid-template-columns: 1fr 1fr; }
  .about-metrics article { border-left: 0; border-top: 1px solid var(--line); }
  .about-metrics article:nth-child(1),
  .about-metrics article:nth-child(2) { border-top: 0; }
  .section-heading h2 { font-size: 30px; }
  .service-list-head { display: none; }
  .service-row {
    grid-template-columns: 1fr auto;
    gap: 8px 16px;
    align-items: start;
    min-height: 0;
    padding: 18px;
  }
  .service-desc {
    grid-column: 1 / -1;
    order: 3;
  }
  .about-cta { grid-template-columns: 1fr; padding: 28px; }
  .legal-main { padding: 26px 18px 56px; }
  .legal-hero h1 { font-size: 42px; }
  .legal-content { padding: 28px 24px; }
  .refer-main { padding: 0 18px 56px; }
  .refer-hero-content h1 { font-size: 42px; }
  .refer-form-grid { grid-template-columns: 1fr; gap: 0; }
  .refer-steps { grid-template-columns: 1fr; }
  .refer-steps article:not(:last-child)::after { display: none; }
  .refer-support-grid .refer-panel:nth-child(2) {
    display: none;
  }
  .register-brand { top: 34px; left: 28px; }
  .register-info-copy { padding: 180px 28px 46px; }
  .register-info-copy h1 { font-size: 30px; }
  .register-lang { top: 28px; right: 24px; }
}

@media (max-width: 560px) {
  .job-page {
    padding-bottom: 92px;
  }
  .hero { min-height: 710px; }
  .hero-bg { object-position: 60% 50%; }
  .hero h1 { font-size: 44px; }
  .hero-topbar {
    align-items: center;
    flex-wrap: nowrap;
    gap: 12px;
    padding: 22px 26px;
  }
  .hero-topbar .brand-logo { width: 156px; }
  .hero-topbar .top-actions {
    width: auto;
    margin-left: auto;
    justify-content: flex-end;
    gap: 14px;
  }
  .top-actions .btn,
  .top-actions .btn-light,
  .top-actions .btn-primary {
    display: none;
  }
  .top-actions .language {
    width: 38px;
    height: 38px;
    min-height: 38px;
    justify-content: center;
    padding: 0;
    color: var(--navy);
    background: rgba(255,255,255,.72);
    border-radius: 50%;
  }
  .top-actions .language span,
  .top-actions .language .chevron {
    display: none;
  }
  .top-actions .language svg {
    width: 21px;
    height: 21px;
  }
  .top-actions .language-menu {
    right: 0;
    min-width: 86px;
  }
  .mobile-user-link {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: var(--navy);
    background: rgba(255,255,255,.72);
  }
  .mobile-user-link svg {
    width: 21px;
    height: 21px;
  }
  .profile-link { font-size: 18px; }
  .trust-card article { align-items: flex-start; }
  .agency-band h2 { font-size: 25px; }
  .agency-band p { font-size: 18px; }
  .footer { padding: 42px 24px 26px; }
  .footer-grid { grid-template-columns: 1fr; }
  .cookie-bar {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    gap: 16px;
    padding: 18px;
    transform: none;
  }
  .cookie-copy h2 {
    font-size: 20px;
  }
  .cookie-settings,
  .cookie-actions {
    grid-template-columns: 1fr;
  }
  .cookie-actions {
    display: grid;
  }
  .cookie-actions .btn {
    width: 100%;
  }
  .cookie-option {
    min-height: 0;
  }
  .privacy-page .legal-main {
    justify-content: flex-start;
    padding-top: 96px;
    padding-bottom: 56px;
  }
  .auth-visual { min-height: 760px; }
  .auth-visual > img { object-position: 58% 50%; }
  .auth-gradient {
    background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.84) 48%, rgba(255,255,255,.42) 100%);
  }
  .auth-promo article { grid-template-columns: 40px 1fr; gap: 16px; }
  .auth-promo p {
    max-width: 310px;
    color: var(--navy);
    font-weight: 500;
  }
  .auth-form-side { padding: 28px 18px 52px; }
  .login-card h1 { font-size: 36px; }
  .login-card > p { font-size: 18px; }
  .login-tabs { grid-template-columns: 1fr; }
  .login-tabs a:nth-child(2n),
  .login-tabs button:nth-child(2n) {
    border-left: 0;
  }
  .field input { font-size: 17px; }
  .register-form-side { padding: 86px 18px 54px; }
  .register-card h1 { font-size: 30px; }
  .register-overlay {
    background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.84) 52%, rgba(255,255,255,.44) 100%);
  }
  .register-info > img { object-position: 58% 50%; }
  .register-info-copy p {
    max-width: 310px;
    font-weight: 500;
  }
  .phone-row { grid-template-columns: 1fr; gap: 0; }
  .job-card-meta { grid-template-columns: 1fr; }
  .job-card-actions { grid-template-columns: 1fr; }
  .job-title { padding: 20px; }
  .job-title-actions {
    top: 18px;
    right: 18px;
  }
  .share-trigger {
    width: 40px;
    height: 40px;
  }
  .share-menu-modern {
    min-width: 176px;
  }
  .job-title h1 { font-size: 31px; }
  .about-hero {
    min-height: 780px;
  }
  .about-hero-bg { object-position: 62% 50%; }
  .about-hero-wash { background: linear-gradient(90deg, rgba(255,255,255,.95), rgba(255,255,255,.66), rgba(255,255,255,.16)); }
  .about-hero-content {
    padding: 138px 24px 0;
  }
  .about-hero-content h1 { font-size: 36px; }
  .about-hero-content p:not(.eyebrow) { font-size: 18px; }
  .about-metrics { grid-template-columns: 1fr; }
  .about-metrics article + article,
  .about-metrics article:nth-child(2) { border-top: 1px solid var(--line); }
  .about-card, .about-process { padding: 22px 18px; }
  .legal-hero h1 { font-size: 36px; }
  .legal-hero p:not(.eyebrow),
  .legal-content p,
  .legal-content li { font-size: 16px; }
  .legal-content { padding: 24px 18px; }
  .faq-main { padding: 26px 18px 56px; }
  .faq-hero h1 { font-size: 36px; }
  .faq-hero p:not(.eyebrow),
  .faq-answer p { font-size: 16px; }
  .faq-group { padding: 24px 18px; }
  .faq-item > button { font-size: 16px; }
  .faq-answer { padding-right: 0; }
  .survey-hero { min-height: 970px; }
  .survey-hero-bg { object-position: 60% 50%; }
  .survey-hero-wash { background: linear-gradient(90deg, rgba(255,255,255,.94), rgba(255,255,255,.64), rgba(255,255,255,.18)); }
  .survey-hero-content { padding: 48px 24px 0; }
  .survey-hero-content h1 { font-size: 44px; }
  .survey-main { margin-top: -48px; padding: 0 18px; }
  .survey-dialog-head,
  .survey-steps,
  .survey-dialog-actions { padding-left: 20px; padding-right: 20px; }
  .survey-dialog-actions { grid-template-columns: 1fr; }
  .survey-rating-guide { grid-template-columns: 1fr; }
  .survey-rating { gap: 8px; }
  .survey-rating span { min-height: 50px; }
  .survey-contact-grid,
  .survey-phone-row { grid-template-columns: 1fr; }
  .refer-hero {
    min-height: 710px;
  }
  .refer-hero-bg { object-position: 62% 50%; }
  .refer-hero-wash { background: linear-gradient(90deg, rgba(255,255,255,.95), rgba(255,255,255,.66), rgba(255,255,255,.16)); }
  .refer-hero-content {
    padding: 48px 24px 0;
  }
  .refer-hero-content .btn-large {
    margin-top: 28px;
  }
  .refer-hero-content h1 { font-size: 36px; }
  .refer-hero-content p:not(.eyebrow) { font-size: 18px; }
  .refer-panel,
  .refer-form,
  .refer-steps article { padding: 22px 18px; }
  .refer-panel,
  .refer-panel h2 {
    min-height: 0;
  }
  .service-row {
    grid-template-columns: 1fr;
  }
  .service-badge {
    justify-self: start;
  }
  .stats { grid-template-columns: 1fr; }
  .stats article + article, .stats article:nth-child(3), .stats article:nth-child(4) { border-left: 0; border-top: 1px solid var(--line); }
  .description, .details, .mini-list, .req-list, .share-card, .agency-card { padding: 22px 18px; }
  .req-list dl { grid-template-columns: 1fr; row-gap: 8px; }
  .req-list dd { margin-bottom: 12px; }
  .job-page:not(.job-panel-page) {
    padding-bottom: calc(92px + env(safe-area-inset-bottom));
  }
  .floating-apply {
    position: fixed;
    left: 50%;
    right: auto;
    bottom: calc(16px + env(safe-area-inset-bottom));
    z-index: 60;
    display: flex;
    width: min(260px, calc(100vw - 48px));
    transform: translateX(-50%);
  }
  .floating-apply:hover {
    transform: translateX(-50%) translateY(-2px);
  }
  .floating-apply:active {
    transform: translateX(-50%);
  }
  .job-panel-main .floating-apply {
    position: sticky;
    bottom: 14px;
    width: min(240px, calc(100% - 32px));
    transform: none;
  }
  .job-panel-main .floating-apply:hover {
    transform: translateY(-2px);
  }
  .job-panel-main .floating-apply:active {
    transform: none;
  }
}
