:root {
  --rd-red-logo: #f04438;
  --rd-red-light: #ff665c;
  --rd-red-action: #d92d20;
  --rd-red-hover: #b42318;
  --rd-red-soft: #fef3f2;
  --rd-blue-soft: #eff6ff;
  --rd-navy: #0b1f3a;
  --rd-navy-2: #12345a;
  --rd-blue: #1d4ed8;
  --rd-blue-hover: #1e40af;
  --rd-graphite: #172033;
  --rd-orange: var(--rd-red-logo);
  --rd-orange-dark: var(--rd-red-action);
  --rd-ink: var(--rd-graphite);
  --rd-text: #101828;
  --rd-muted: #667085;
  --rd-line: #e4e7ec;
  --rd-border: #e4e7ec;
  --rd-soft: #f8fafc;
  --rd-background: #f8fafc;
  --rd-white: #ffffff;
  --rd-radius-sm: 8px;
  --rd-radius: 14px;
  --rd-radius-lg: 18px;
  --rd-shadow-sm: 0 6px 18px rgba(16, 35, 61, 0.06);
  --rd-shadow: 0 14px 34px rgba(10, 31, 58, 0.1);
  --rd-transition: 180ms ease;
}

html {
  font-size: 106.25%;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  color: var(--rd-ink);
  background: var(--rd-white);
  font-family: Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
select,
input {
  font: inherit;
}

::selection {
  color: #fff;
  background: var(--rd-red-action);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  padding: 10px 16px;
  color: #fff;
  background: var(--rd-navy);
  border-radius: 10px;
  transform: translateY(-160%);
  transition: transform var(--rd-transition);
}

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

:focus-visible {
  outline: 3px solid rgba(240, 68, 56, 0.48);
  outline-offset: 3px;
}

.btn {
  --bs-btn-padding-y: 0.62rem;
  --bs-btn-padding-x: 1.05rem;
  --bs-btn-font-weight: 600;
  --bs-btn-border-radius: 10px;
  transition: transform var(--rd-transition), box-shadow var(--rd-transition), color var(--rd-transition), background var(--rd-transition), border-color var(--rd-transition);
}

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

.btn-brand {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--rd-red-action);
  --bs-btn-border-color: var(--rd-red-action);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--rd-red-hover);
  --bs-btn-hover-border-color: var(--rd-red-hover);
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--rd-red-hover);
  --bs-btn-active-border-color: var(--rd-red-hover);
  box-shadow: 0 9px 22px rgba(217, 45, 32, 0.2);
}

.btn-outline-brand {
  --bs-btn-color: var(--rd-navy);
  --bs-btn-bg: transparent;
  --bs-btn-border-color: #cfd6df;
  --bs-btn-hover-color: var(--rd-navy);
  --bs-btn-hover-bg: #f4f6f8;
  --bs-btn-hover-border-color: #b9c3cf;
}

.site-header .btn-sm {
  --bs-btn-padding-y: 0.42rem;
  --bs-btn-padding-x: 0.82rem;
  --bs-btn-font-size: 0.86rem;
  --bs-btn-border-radius: 9px;
}

.site-header {
  z-index: 1030;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(225, 230, 236, 0.9);
  backdrop-filter: blur(14px);
}

.navbar {
  min-height: 60px;
  padding: 4px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--rd-navy);
}

.brand:hover {
  color: var(--rd-navy);
}

.brand-mark {
  display: inline-flex;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  color: var(--rd-red-logo);
  filter: drop-shadow(0 5px 10px rgba(240, 68, 56, 0.16));
}

.brand-mark svg,
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-word {
  display: block;
  font-size: 1.26rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.brand-word span {
  color: var(--rd-red-logo);
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 44px;
}

.brand-tagline {
  display: block;
  margin-top: 3px;
  color: var(--rd-muted);
  font-size: 0.68rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.navbar-nav .nav-link {
  padding: 9px 13px !important;
  color: #4e5d70;
  font-size: 0.94rem;
  font-weight: 600;
  border-radius: 9px;
}

.navbar-nav .nav-link:hover {
  color: var(--rd-navy);
  background: #f5f7f9;
}

.launch-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  color: var(--rd-red-action);
  background: var(--rd-red-soft);
  border: 1px solid #fecdca;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0;
  white-space: nowrap;
}

.navbar-toggler {
  padding: 3px 7px;
  color: var(--rd-navy);
  font-size: 1.65rem;
}

.offcanvas {
  --bs-offcanvas-width: min(86vw, 360px);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.mobile-nav a {
  padding: 13px 3px;
  color: var(--rd-ink);
  font-size: 1.08rem;
  font-weight: 700;
  border-bottom: 1px solid var(--rd-line);
}

.hero {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(240, 68, 56, 0.24) 0%, rgba(240, 68, 56, 0) 32%),
    linear-gradient(110deg, #07172b 0%, var(--rd-navy) 48%, var(--rd-navy-2) 100%);
}

.hero-picture,
.hero-picture img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-picture img {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    radial-gradient(circle at 82% 18%, rgba(240, 68, 56, 0.26) 0%, rgba(240, 68, 56, 0) 34%),
    linear-gradient(90deg, rgba(7, 23, 43, 0.98) 0%, rgba(11, 31, 58, 0.92) 34%, rgba(18, 52, 90, 0.5) 62%, rgba(18, 52, 90, 0.12) 86%),
    linear-gradient(0deg, rgba(6, 22, 42, 0.5) 0%, transparent 35%);
}

.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 590px;
  padding-top: 48px;
  padding-bottom: 126px;
}

.hero-copy {
  max-width: 720px;
  transform: translateY(-28px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0;
}

.eyebrow span {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--rd-red-logo);
}

.hero h1 {
  max-width: 640px;
  margin: 0;
  font-family: "Roboto Condensed", Roboto, Arial, sans-serif;
  font-size: clamp(2.75rem, 4.4vw, 4rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.06;
  text-wrap: balance;
}

.hero h1 span {
  color: var(--rd-red-light);
}

.hero-lead {
  max-width: 610px;
  margin: 20px 0 18px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  line-height: 1.6;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags span {
  padding: 7px 11px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
  backdrop-filter: blur(6px);
}

.search-panel {
  position: absolute;
  right: 12px;
  bottom: 30px;
  left: 12px;
  padding: 18px;
  color: var(--rd-ink);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(2, 15, 34, 0.2);
  backdrop-filter: blur(16px);
}

.search-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr auto;
  gap: 12px;
  align-items: end;
}

.search-field label {
  display: block;
  margin: 0 0 6px 3px;
  color: #536277;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0;
}

.search-field label i {
  margin-right: 5px;
  color: var(--rd-red-logo);
}

.search-panel .form-select {
  min-height: 51px;
  padding-right: 42px;
  padding-left: 15px;
  color: var(--rd-ink);
  background-color: #f7f8fa;
  border: 1px solid #dfe4eb;
  border-radius: 10px;
  font-weight: 500;
  box-shadow: none;
}

.search-panel .form-select:focus {
  border-color: #fda29b;
  box-shadow: 0 0 0 4px rgba(240, 68, 56, 0.11);
}

.search-button {
  min-height: 51px;
  padding-right: 24px;
  padding-left: 24px;
  white-space: nowrap;
}

.search-button i {
  margin-right: 7px;
}

.search-suggestions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  color: #7a8698;
  font-size: 0.84rem;
}

.search-suggestions button {
  padding: 2px 7px;
  color: #516074;
  background: transparent;
  border: 0;
  border-bottom: 1px dashed #9ca7b5;
  font-weight: 500;
}

.search-suggestions button:hover {
  color: var(--rd-red-action);
  border-color: var(--rd-red-action);
}

.search-result-message {
  display: none;
  margin-top: 12px;
  padding: 10px 13px;
  color: #26496b;
  background: #eef6ff;
  border: 1px solid #d7e9fb;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 650;
}

.search-result-message.is-visible {
  display: block;
}

.benefits-bar {
  background: #fff;
  border-bottom: 1px solid var(--rd-line);
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 96px;
  padding: 20px 26px;
  border-right: 1px solid var(--rd-line);
}

.benefit-item:first-child {
  padding-left: 0;
}

.benefit-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.benefit-icon {
  display: grid;
  flex: 0 0 43px;
  width: 43px;
  height: 43px;
  color: var(--rd-red-action);
  background: var(--rd-red-soft);
  border-radius: 12px;
  place-items: center;
  font-size: 1.15rem;
}

.benefit-item strong,
.benefit-item small {
  display: block;
}

.benefit-item strong {
  color: var(--rd-ink);
  font-size: 0.95rem;
}

.benefit-item small {
  margin-top: 1px;
  color: var(--rd-muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.section {
  padding: 76px 0;
}

.section-soft {
  background: linear-gradient(180deg, #ffffff 0%, #f3f7fc 100%);
}

.section-dark {
  color: #fff;
  background: var(--rd-navy);
}

.section-heading {
  margin-bottom: 34px;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 9px;
  color: var(--rd-red-action);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0;
}

.section-kicker-light {
  color: #fda29b;
}

.section h2,
.final-cta h2 {
  margin: 0;
  color: var(--rd-navy);
  font-family: "Roboto Condensed", Roboto, Arial, sans-serif;
  font-size: clamp(1.85rem, 2.7vw, 2.55rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.14;
  text-wrap: balance;
}

.section-dark h2 {
  color: #fff;
}

.section-heading > div > p,
.section-heading > p {
  max-width: 700px;
  margin: 12px 0 0;
  color: var(--rd-muted);
  font-size: 1.04rem;
}

.section-intro {
  margin: 18px 0 28px;
  color: var(--rd-muted);
  font-size: 1.04rem;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rd-navy);
  font-size: 0.96rem;
  font-weight: 700;
  white-space: nowrap;
}

.section-link:hover {
  color: var(--rd-blue-hover);
}

.category-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 156px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--rd-line);
  border-radius: var(--rd-radius);
  box-shadow: 0 1px 0 rgba(10, 31, 58, 0.02);
  transition: transform var(--rd-transition), border-color var(--rd-transition), box-shadow var(--rd-transition);
}

.category-card:hover {
  color: inherit;
  border-color: #fecdca;
  box-shadow: var(--rd-shadow-sm);
  transform: translateY(-2px);
}

.category-icon {
  display: grid;
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  border-radius: 10px;
  place-items: center;
  font-size: 1.08rem;
}

.icon-orange { color: var(--rd-red-action); background: var(--rd-red-soft); }
.icon-blue { color: var(--rd-blue); background: var(--rd-blue-soft); }
.icon-teal { color: #087d79; background: #e4f7f5; }
.icon-violet { color: #7045c2; background: #f0eaff; }
.icon-yellow { color: #9a6700; background: #fffbeb; }
.icon-red { color: var(--rd-red-action); background: var(--rd-red-soft); }
.icon-green { color: #267d44; background: #e9f8ee; }
.icon-slate { color: #4c5e73; background: #edf1f5; }

.category-name {
  color: var(--rd-ink);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.category-meta {
  margin-top: 4px;
  color: var(--rd-muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.category-arrow {
  position: absolute;
  top: 18px;
  right: 18px;
  color: #a4aeba;
  transition: color var(--rd-transition), transform var(--rd-transition);
}

.category-card:hover .category-arrow {
  color: var(--rd-red-action);
  transform: translate(2px, -2px);
}

.category-card-image {
  isolation: isolate;
  justify-content: flex-end;
  min-height: 190px;
  padding-top: 46px;
  overflow: hidden;
  background-color: #fff;
  background-position: center right;
  background-size: cover;
}

.category-card-image::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 42%, rgba(255, 255, 255, 0.34) 72%, rgba(255, 255, 255, 0.04) 100%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.75) 34%, rgba(255, 255, 255, 0) 70%);
}

.category-card-image .category-icon {
  display: none;
}

.category-card-image .category-name,
.category-card-image .category-meta,
.category-card-image .category-tags,
.category-card-image .category-arrow {
  position: relative;
  z-index: 1;
}

.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  max-width: 94%;
  margin-top: 11px;
}

.category-tags span {
  padding: 4px 7px;
  color: #34445a;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(228, 231, 236, 0.9);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.1;
  box-shadow: 0 2px 8px rgba(11, 31, 58, 0.04);
}

.category-card-welder {
  background-image: url("../img/profession-welder-card.jpg");
}

.category-card-driver {
  background-image: url("../img/profession-driver-card.jpg");
}

.category-card-mechanic {
  background-image: url("../img/profession-mechanic-card.jpg");
}

.category-card-machinist {
  background-image: url("../img/profession-machinist-card.jpg");
}

.category-card-electrician {
  background-image: url("../img/profession-electrician-card.jpg");
}

.category-card-equipment {
  background-image: url("../img/profession-equipment-card.jpg");
}

.category-card-warehouse {
  background-image: url("../img/profession-warehouse-card.jpg");
}

.category-card-security {
  background-image: url("../img/profession-security-card.jpg");
}

.category-card-installer {
  background-image: url("../img/profession-installer-card.jpg");
}

.category-card-milling {
  background-image: url("../img/profession-milling-card.jpg");
}

.category-card-plumber {
  background-image: url("../img/profession-plumber-card.jpg");
}

.category-card-laborer {
  background-image: url("../img/profession-laborer-card.jpg");
}

.profession-collections {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.profession-collections article {
  padding: 20px;
  background: #fff;
  border: 1px solid var(--rd-line);
  border-radius: var(--rd-radius);
}

.profession-collections h3 {
  margin: 0 0 12px;
  color: var(--rd-ink);
  font-size: 1rem;
  font-weight: 700;
}

.profession-links {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.profession-links button {
  padding: 6px 9px;
  color: #415168;
  background: #f6f8fb;
  border: 1px solid #e4e9f0;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.32;
}

.profession-links button:hover {
  color: var(--rd-navy);
  background: var(--rd-blue-soft);
  border-color: #cfd8e3;
}

.vacancy-list {
  align-items: stretch;
}

.vacancy-card {
  display: flex;
  flex-direction: column;
  min-height: 252px;
  padding: 20px;
  background: #fff;
  border: 1px solid #e1e6ed;
  border-radius: var(--rd-radius);
  box-shadow: 0 5px 16px rgba(11, 31, 58, 0.035);
}

.vacancy-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.vacancy-top h3 {
  margin: 0;
  color: var(--rd-ink);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.25;
}

.vacancy-top span {
  flex: 0 0 auto;
  padding: 4px 8px;
  color: var(--rd-red-action);
  background: var(--rd-red-soft);
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 600;
}

.vacancy-card strong {
  margin-bottom: 10px;
  color: var(--rd-navy);
  font-size: 1.16rem;
  font-weight: 700;
}

.vacancy-card p {
  margin: 0 0 15px;
  color: var(--rd-muted);
  font-size: 0.96rem;
  line-height: 1.58;
}

.vacancy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  margin-bottom: 16px;
}

.vacancy-meta span {
  padding: 5px 8px;
  color: #536277;
  background: #f2f4f7;
  border-radius: 7px;
  font-size: 0.86rem;
  font-weight: 500;
}

.direction-card {
  position: relative;
  padding: 27px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e1e6ed;
  border-radius: var(--rd-radius-lg);
  box-shadow: 0 10px 30px rgba(11, 31, 58, 0.045);
  transition: transform var(--rd-transition), box-shadow var(--rd-transition), border-color var(--rd-transition);
}

.direction-card::after {
  content: "";
  display: none;
}

.direction-card:hover {
  border-color: #f2c89f;
  box-shadow: var(--rd-shadow-sm);
  transform: translateY(-2px);
}

.direction-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.direction-number {
  color: #c7cfd8;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.direction-label {
  padding: 4px 8px;
  color: var(--rd-red-action);
  background: var(--rd-red-soft);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0;
}

.direction-icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin: 28px 0 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--rd-navy), var(--rd-navy-2));
  border-radius: 17px;
  box-shadow: 0 12px 24px rgba(11, 31, 58, 0.2);
  place-items: center;
  font-size: 1.35rem;
}

.direction-card h3 {
  margin: 0 0 10px;
  color: var(--rd-ink);
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: 0;
}

.direction-card p {
  min-height: 72px;
  margin-bottom: 18px;
  color: var(--rd-muted);
  font-size: 0.92rem;
}

.direction-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}

.direction-tags span {
  padding: 5px 8px;
  color: #526175;
  background: #f2f4f7;
  border-radius: 7px;
  font-size: 0.84rem;
  font-weight: 700;
}

.direction-action {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  color: var(--rd-navy);
  background: transparent;
  border: 0;
  font-size: 0.9rem;
  font-weight: 700;
}

.direction-action:hover {
  color: var(--rd-red-action);
}

.launch-note {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  background: #fff;
  border: 1px solid var(--rd-line);
  border-radius: var(--rd-radius);
}

.launch-note-icon {
  display: grid;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  color: var(--rd-red-action);
  background: var(--rd-red-soft);
  border-radius: 13px;
  place-items: center;
  font-size: 1.15rem;
}

.launch-note strong {
  color: var(--rd-ink);
}

.launch-note p {
  margin: 2px 0 0;
  color: var(--rd-muted);
  font-size: 0.92rem;
}

.steps {
  position: relative;
  display: grid;
  gap: 12px;
}

.step-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--rd-line);
  border-radius: var(--rd-radius);
  box-shadow: 0 6px 18px rgba(11, 31, 58, 0.035);
}

.step-card > span {
  display: grid;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  color: #fff;
  background: var(--rd-red-action);
  border-radius: 12px;
  place-items: center;
  font-size: 0.86rem;
  font-weight: 700;
}

.step-card h3 {
  margin: 0 0 4px;
  color: var(--rd-ink);
  font-size: 1rem;
  font-weight: 700;
}

.step-card p {
  margin: 0;
  color: var(--rd-muted);
  font-size: 0.92rem;
}

.employer-panel {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

.employer-panel::before {
  content: "";
  display: none;
}

.employer-panel h2,
.employer-panel p,
.employer-benefits,
.contact-card {
  position: relative;
}

.employer-panel > .row > div:first-child > p {
  max-width: 680px;
  margin: 18px 0 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.04rem;
}

.employer-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.employer-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  font-weight: 650;
}

.employer-benefits i {
  color: var(--rd-red-light);
}

.contact-card {
  padding: 28px;
  color: var(--rd-ink);
  background: #fff;
  border-radius: var(--rd-radius-lg);
  box-shadow: 0 24px 55px rgba(0, 9, 23, 0.28);
}

.contact-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 17px;
  color: var(--rd-red-action);
  background: var(--rd-red-soft);
  border-radius: 14px;
  place-items: center;
  font-size: 1.2rem;
}

.contact-card h3 {
  margin: 0 0 8px;
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: 0;
}

.contact-card p {
  margin-bottom: 20px;
  color: var(--rd-muted);
  font-size: 0.96rem;
}

.contact-card small {
  display: block;
  margin-top: 9px;
  color: #98a2b3;
  font-size: 0.84rem;
  text-align: center;
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.city-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 13px 16px;
  color: #34445a;
  background: #fff;
  border: 1px solid var(--rd-line);
  border-radius: 12px;
  font-size: 0.94rem;
  font-weight: 720;
  transition: color var(--rd-transition), border-color var(--rd-transition), transform var(--rd-transition), box-shadow var(--rd-transition);
}

.city-grid a:hover {
  color: var(--rd-blue-hover);
  border-color: #bfdbfe;
  box-shadow: var(--rd-shadow-sm);
  transform: translateY(-2px);
}

.city-grid a > i {
  color: #a6afbb;
}

.city-grid .city-featured {
  color: #fff;
  background: var(--rd-navy);
  border-color: var(--rd-navy);
}

.city-grid .city-featured:hover {
  color: #fff;
  background: var(--rd-navy-2);
  border-color: var(--rd-navy-2);
}

.city-featured span i {
  margin-right: 7px;
  color: var(--rd-red-light);
}

.trust-section {
  background: #fff;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.trust-grid article {
  padding: 22px;
  background: var(--rd-soft);
  border: 1px solid #edf0f4;
  border-radius: var(--rd-radius);
}

.trust-grid article > i {
  display: inline-block;
  margin-bottom: 13px;
  color: var(--rd-red-action);
  font-size: 1.25rem;
}

.trust-grid h3 {
  margin: 0 0 5px;
  font-size: 0.98rem;
  font-weight: 700;
}

.trust-grid p {
  margin: 0;
  color: var(--rd-muted);
  font-size: 0.9rem;
}

.faq-accordion {
  --bs-accordion-bg: transparent;
  --bs-accordion-border-color: transparent;
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-active-color: var(--rd-navy);
  --bs-accordion-active-bg: #fff;
}

.faq-accordion .accordion-item {
  margin-bottom: 9px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--rd-line);
  border-radius: 12px !important;
}

.faq-accordion .accordion-button {
  padding: 19px 20px;
  color: var(--rd-ink);
  font-size: 1rem;
  font-weight: 780;
}

.faq-accordion .accordion-button:not(.collapsed) {
  box-shadow: none;
}

.faq-accordion .accordion-body {
  padding: 0 20px 20px;
  color: var(--rd-muted);
  font-size: 0.96rem;
}

.seo-section {
  padding-top: 84px;
  padding-bottom: 84px;
}

.seo-copy {
  padding: 38px;
  background: #fff;
  border: 1px solid var(--rd-line);
  border-radius: var(--rd-radius-lg);
}

.seo-copy h2 {
  margin-bottom: 26px;
}

.seo-copy p {
  margin-bottom: 14px;
  color: #5d6a7d;
  font-size: 0.96rem;
}

.seo-copy strong {
  color: var(--rd-ink);
}

.final-cta {
  padding: 0 0 88px;
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 40px 44px;
  color: #fff;
  background: linear-gradient(120deg, var(--rd-blue) 0%, var(--rd-navy) 56%, var(--rd-red-action) 100%);
  border-radius: var(--rd-radius-lg);
  box-shadow: var(--rd-shadow);
}

.final-cta-inner > div:first-child > span {
  display: block;
  margin-bottom: 7px;
  color: #fecdca;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0;
}

.final-cta h2 {
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.65rem);
}

.site-footer {
  color: rgba(255, 255, 255, 0.66);
  background: #08182d;
}

.footer-main {
  padding: 66px 0 48px;
}

.brand-footer {
  margin-bottom: 18px;
  color: #fff;
}

.brand-footer:hover {
  color: #fff;
}

.site-footer p {
  max-width: 320px;
  font-size: 0.9rem;
}

.site-footer h2 {
  margin: 4px 0 16px;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0;
}

.site-footer .col-6 > a,
.site-footer .col-lg-3 > a {
  display: block;
  width: fit-content;
  margin: 0 0 9px;
  font-size: 0.9rem;
}

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

.footer-note {
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.86rem;
}

.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1020;
  display: grid;
  width: 48px;
  height: 48px;
  color: #fff;
  background: var(--rd-red-action);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 14px 30px rgba(11, 31, 58, 0.22), 0 6px 16px rgba(217, 45, 32, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.96);
  transition: opacity var(--rd-transition), transform var(--rd-transition), background var(--rd-transition), box-shadow var(--rd-transition);
  place-items: center;
}

.scroll-top:hover {
  background: var(--rd-red-hover);
  box-shadow: 0 16px 34px rgba(11, 31, 58, 0.24), 0 7px 18px rgba(217, 45, 32, 0.24);
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.scroll-top i {
  font-size: 1.25rem;
  line-height: 1;
}

@media (max-width: 1199.98px) {
  .hero-overlay {
    background:
      radial-gradient(circle at 80% 18%, rgba(240, 68, 56, 0.22) 0%, rgba(240, 68, 56, 0) 34%),
      linear-gradient(90deg, rgba(7, 23, 43, 0.98) 0%, rgba(11, 31, 58, 0.9) 42%, rgba(18, 52, 90, 0.38) 70%, rgba(18, 52, 90, 0.12) 100%),
      linear-gradient(0deg, rgba(6, 22, 42, 0.5), transparent 35%);
  }

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

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

@media (max-width: 991.98px) {
  .hero {
    min-height: 670px;
  }

  .hero-picture img {
    object-position: 68% center;
  }

  .hero-overlay {
    background:
      radial-gradient(circle at 78% 16%, rgba(240, 68, 56, 0.22) 0%, rgba(240, 68, 56, 0) 34%),
      linear-gradient(90deg, rgba(7, 23, 43, 0.98) 0%, rgba(11, 31, 58, 0.88) 54%, rgba(18, 52, 90, 0.37) 100%),
      linear-gradient(0deg, rgba(6, 22, 42, 0.64), transparent 45%);
  }

  .hero-container {
    min-height: 670px;
    padding-top: 48px;
    padding-bottom: 208px;
  }

  .hero-copy {
    max-width: 620px;
    transform: translateY(-14px);
  }

  .search-grid {
    grid-template-columns: 1fr 1fr;
  }

  .search-button {
    grid-column: 1 / -1;
  }

  .benefit-item {
    padding-right: 18px;
    padding-left: 18px;
  }

  .section {
    padding: 76px 0;
  }

  .employer-panel {
    padding: 0;
  }

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

  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 767.98px) {
  .navbar {
    min-height: 56px;
    padding: 4px 0;
  }

  .brand-mark {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
  }

  .brand-word {
    font-size: 1.08rem;
  }

  .brand-text {
    min-height: 40px;
  }

  .brand-tagline {
    margin-top: 2px;
    font-size: 0.58rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-picture img {
    object-position: 72% center;
    opacity: 0.92;
  }

  .hero-overlay {
    background:
      radial-gradient(circle at 80% 18%, rgba(240, 68, 56, 0.18) 0%, rgba(240, 68, 56, 0) 34%),
      linear-gradient(180deg, rgba(7, 23, 43, 0.52) 0%, rgba(11, 31, 58, 0.58) 42%, rgba(7, 23, 43, 0.82) 82%),
      linear-gradient(90deg, rgba(7, 23, 43, 0.72) 0%, rgba(7, 23, 43, 0.36) 48%, rgba(18, 52, 90, 0.08) 100%);
  }

  .hero-container {
    justify-content: flex-start;
    min-height: auto;
    padding-top: 58px;
    padding-bottom: 28px;
  }

  .eyebrow {
    margin-bottom: 13px;
    font-size: 0.9rem;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 9vw, 2.65rem);
  }

  .hero-copy {
    transform: none;
  }

  .hero-lead {
    max-width: 520px;
    margin: 16px 0 16px;
    font-size: 1.02rem;
  }

  .search-panel {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    margin-top: 20px;
    padding: 14px;
    border-radius: 16px;
  }

  .search-grid {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .search-button {
    grid-column: auto;
  }

  .search-panel .form-select,
  .search-button {
    min-height: 47px;
  }

  .search-suggestions {
    display: none;
  }

  .benefit-item,
  .benefit-item:first-child,
  .benefit-item:last-child {
    min-height: auto;
    padding: 17px 0;
    border-right: 0;
    border-bottom: 1px solid var(--rd-line);
  }

  .benefit-item:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 48px 0;
  }

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

  .section:not(.section-soft):not(.section-dark) + .section:not(.section-soft):not(.section-dark) {
    padding-top: 26px;
  }

  .section-soft + .section {
    padding-top: 44px;
  }

  .category-card {
    min-height: 150px;
    padding: 17px;
    border-radius: 13px;
  }

  .category-card-image {
    min-height: 190px;
    padding-top: 40px;
  }

  .category-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 17px;
  }

  .category-name {
    font-size: 0.96rem;
  }

  .category-meta {
    font-size: 0.84rem;
  }

  .category-tags {
    gap: 4px;
    margin-top: 9px;
  }

  .category-tags span {
    padding: 4px 6px;
    font-size: 0.68rem;
  }

  .profession-collections {
    grid-template-columns: 1fr;
    margin-top: 16px;
  }

  .profession-collections article {
    padding: 17px;
  }

  .vacancy-card {
    min-height: auto;
  }

  .category-arrow {
    top: 17px;
    right: 17px;
  }

  .launch-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .launch-note .btn {
    width: 100%;
  }

  .city-grid {
    grid-template-columns: 1fr 1fr;
  }

  .city-grid a {
    min-height: 54px;
    padding: 11px 13px;
    font-size: 0.9rem;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .seo-copy {
    padding: 24px;
  }

  .final-cta {
    padding-bottom: 64px;
  }

  .final-cta-inner {
    padding: 30px 24px;
    border-radius: 21px;
  }

  .footer-main {
    padding: 52px 0 36px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }

  .scroll-top {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 430px) {
  .hero {
    min-height: auto;
  }

  .hero-picture img {
    object-position: 76% center;
  }

  .hero-container {
    min-height: auto;
    padding-top: 44px;
  }

  .category-card {
    min-height: 150px;
  }

  .direction-card {
    padding: 23px;
  }

  .city-grid {
    grid-template-columns: 1fr;
  }
}

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

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