:root {
  --brand-red: #e7322a;
  --brand-dark: #141414;
  --text-muted: #7a7a7a;
  --bg-body: #ffffff;
  --radius-soft: 36px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  color: var(--brand-dark);
  background: var(--bg-body);
}

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

.page {
  width: 100%;
  min-height: 100vh;
  padding-bottom: 64px;
}

.topbar {
  width: 100%;
  background: #fff;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  width: 46px;
  height: 46px;
  position: relative;
  border-radius: 16px;
  background: var(--brand-red);
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand-pin {
  position: absolute;
  width: 20px;
  height: 26px;
  border: 3px solid #fff;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  top: 6px;
}

.brand-heart {
  position: absolute;
  bottom: 6px;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
}

.brand-name {
  font-size: 1.32rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(20, 20, 20, 0.08);
  background: #fff;
  color: var(--brand-dark);
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.nav-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(20, 20, 20, 0.12);
  border-color: rgba(20, 20, 20, 0.16);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--brand-red);
  outline-offset: 3px;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 36px;
  font-size: 0.96rem;
  font-weight: 500;
}

.nav a {
  color: var(--brand-dark);
  position: relative;
  transition: color 0.2s ease;
}

.nav a.active {
  color: var(--brand-red);
}

.nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -16px;
  height: 3px;
  border-radius: 999px;
  background: var(--brand-red);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.login-button,
.signup-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease,
    background 0.2s ease, border-color 0.2s ease;
}

.login-button {
  border: 1px solid #dfdfdf;
  color: var(--brand-dark);
  background: #fff;
}

.login-button:hover {
  border-color: var(--brand-red);
  color: var(--brand-red);
  box-shadow: 0 14px 26px rgba(231, 50, 42, 0.16);
  transform: translateY(-1px);
}

.signup-button {
  border: none;
  background: var(--brand-dark);
  color: #fff;
  box-shadow: 0 14px 24px rgba(20, 20, 20, 0.18);
}

.signup-button:hover {
  background: var(--brand-red);
  box-shadow: 0 18px 32px rgba(231, 50, 42, 0.25);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  z-index: 1;
}

.hero-wrapper {
  border-radius: var(--radius-soft);
  overflow: visible;
  box-shadow: 0 28px 60px rgba(20, 20, 20, 0.08);
  width: 100%;
  margin: 0;
}

.hero-left {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
      150deg,
      rgba(231, 50, 42, 0.96),
      rgba(123, 17, 12, 0.92)
    ),
    url(https://picsum.photos/seed/assessor-team/600/400) center / cover;
  padding: 80px clamp(48px, 6vw, 92px) 90px;
  display: flex;
  flex-direction: column;
  gap: 36px;
  color: #fff;
  border-top-left-radius: var(--radius-soft);
  border-bottom-left-radius: var(--radius-soft);
}

.hero-left::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 10% 15%,
      rgba(255, 112, 95, 0.35),
      transparent 55%
    ),
    radial-gradient(
      circle at 85% 8%,
      rgba(255, 188, 168, 0.22),
      transparent 52%
    ),
    linear-gradient(160deg, rgba(255, 255, 255, 0.05), transparent 70%);
  pointer-events: none;
}

.hero-left > * {
  position: relative;
  z-index: 1;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.9fr);
  align-items: start;
  gap: 36px;
}

.hero-content-minimal {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  max-width: 320px;
}

.hero-message {
  display: flex;
  flex-direction: column;
  font-size: clamp(2.6rem, 4.4vw, 3.4rem);
  font-weight: 600;
  text-transform: uppercase;
}

.hero-message-line {
  display: inline-block;
  color: #fff;
  overflow: hidden;
  white-space: pre;
  padding-right: 0;
  max-width: 14ch;
  line-height: 1.12;
  min-height: 2.4em;
}

.hero-message-line.no-anim {
  animation: none;
  padding-right: 0;
}

@media (prefers-reduced-motion: reduce) {
  .hero-message-line {
    animation: none;
    padding-right: 0;
  }
}

.hero-message-divider {
  font-size: clamp(3rem, 5vw, 4rem);
  line-height: 1;
  color: rgba(255, 255, 255, 0.6);
}

.hero-subcopy {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hero-link i {
  font-size: 0.88rem;
}

.hero-link:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.hero-search-card {
  position: absolute;
  right: clamp(48px, 6vw, 92px);
  bottom: clamp(-388px, -26vw, -296px);
  width: clamp(420px, 38vw, 520px);
  border-radius: 26px;
  border: 6px solid #fff;
  overflow: hidden;
  z-index: 5;
}

.hero-search-content {
  background: linear-gradient(
      150deg,
      rgba(231, 50, 42, 0.96),
      rgba(123, 17, 12, 0.92)
    ),
    url("https://picsum.photos/seed/assessor-team/600/400") center/cover;
  padding: clamp(28px, 4vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: #fff;
}

.hero-search-content h3 {
  margin: 0;
  font-size: 1.32rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-search-content p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

.hero-search-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.72);
}

.hero-field select {
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 14px 46px 14px 16px;
  font-size: 1rem;
  font-weight: 500;
  appearance: none;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  background-image: linear-gradient(45deg, transparent 50%, #ffcc73 50%),
    linear-gradient(135deg, #ffcc73 50%, transparent 50%);
  background-position: calc(100% - 26px) center, calc(100% - 18px) center;
  background-size: 8px 8px;
  background-repeat: no-repeat;
}

.hero-field select:focus {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.hero-field option {
  color: #222;
}

.hero-search-button {
  border: none;
  border-radius: 16px;
  background: linear-gradient(120deg, #ffd35c, #ff9f1c);
  color: #5a2c0e;
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-search-button i {
  font-size: 0.96rem;
}

.hero-search-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(255, 159, 28, 0.36);
}

@media (max-width: 1199px) {
  .hero-wrapper {
    border-radius: var(--radius-soft);
  }

  .hero-left {
    border-bottom-left-radius: 0;
  }

  .hero-right {
    border-top-right-radius: var(--radius-soft);
    border-bottom-right-radius: 0;
  }

  .hero-search-card {
    position: static;
    width: 100%;
    margin: 32px auto 0;
    border-width: 4px;
  }
}

@media (max-width: 992px) {
  .topbar .col-12.col-lg-6 {
    position: relative;
  }

  .topbar .row {
    position: relative;
  }

  .nav-toggle {
    display: inline-flex;
  }

#nav-links {
  position: absolute;
  inset: calc(100% + 8px) 16px auto;
  background: #fff;
    border-radius: 20px;
    padding: 18px 22px;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    box-shadow: 0 24px 48px rgba(20, 20, 20, 0.12);
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 30;
  }

  #nav-links.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  #nav-links a {
    padding: 10px 12px;
    border-radius: 12px;
    text-align: left;
  }

  #nav-links a:hover {
    background: rgba(231, 50, 42, 0.08);
  }

  #nav-links .nav-actions {
    display: grid;
    gap: 12px;
    margin-top: 8px;
  }

  #nav-links .nav-actions .login-button,
  #nav-links .nav-actions .signup-button {
    width: 100%;
    justify-content: center;
  }

  .nav {
    gap: 20px;
    font-size: 0.88rem;
    justify-content: flex-start;
  }

  .header-actions {
    justify-content: center;
    margin-top: 8px;
    gap: 12px;
  }

  .hero-left {
    padding: 56px 32px;
    border-radius: var(--radius-soft) var(--radius-soft) 0 0;
    text-align: center;
    align-items: center;
  }

  .hero-content-minimal {
    align-items: center;
    text-align: center;
    max-width: 100%;
    gap: 24px;
  }

  .hero-search-card {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-message {
    align-items: center;
  }

  .hero-link {
    width: 100%;
    justify-content: center;
  }

  .hero-right {
    border-radius: 0 0 var(--radius-soft) var(--radius-soft);
    min-height: 380px;
  }

  .hero-search-card {
    border-width: 3px;
    margin: 28px 0 0;
  }

  .social-bar {
    display: none;
  }
}

@media (max-width: 768px) {
  .flow-rail {
    display: none;
  }

  .flow-steps {
    flex-direction: column;
    gap: 32px;
  }

  .flow-step {
    padding-top: 0;
  }

  .flow-step .node {
    position: static;
    transform: none;
    margin: 0 auto 18px;
  }

  .hero-right {
    background: transparent;
    min-height: auto;
    padding: 0;
    justify-content: center;
  }

  .hero-slider {
    display: none;
  }

  .stats-section .container-xxl {
    margin: 0 auto;
    padding: 0 28px;
  }

  .stats-grid {
    justify-content: center;
    text-align: center;
  }

  .stat-card {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    align-items: center;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 576px) {
  .topbar {
    padding: 18px 0;
  }

  .hero-left {
    padding: 48px 22px;
    gap: 28px;
  }

  .hero-link {
    font-size: 0.82rem;
    letter-spacing: 0.06em;
  }

  .hero-search-card {
    border-radius: 22px;
    width: 100%;
    margin-top: 24px;
  }

  .contact-perks {
    border-radius: 18px;
  }

  #nav-links {
    inset: calc(100% + 10px) 16px auto;
  }

  .hero-right {
    min-height: 320px;
  }

  .hero-slider .slide img {
    object-position: center;
  }

  .stats-section,
  .selection-flow,
  .faq-section,
  .contact-section {
    padding-left: 0;
    padding-right: 0;
  }

  .header-actions {
    width: 100%;
    justify-content: center;
    gap: 10px;
  }

  .header-actions a {
    flex: 1;
    text-align: center;
  }
}

.selection-flow {
  padding: clamp(80px, 9vw, 128px) 0;
  background: #fff;
}

.selection-flow-header {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.selection-flow-badge {
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--brand-red);
  background: rgba(231, 50, 42, 0.12);
}

.selection-flow-header h2 {
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--brand-dark);
}

.selection-flow-header p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
}

.selection-flow-track {
  --node-size: 56px;
  position: relative;
  margin-top: clamp(48px, 6vw, 80px);
  padding: 0 clamp(12px, 3vw, 32px);
}

.selection-flow-line {
  position: absolute;
  top: calc(var(--node-size) / 2);
  left: calc(var(--node-size) / 2);
  right: calc(var(--node-size) / 2);
  height: 4px;
  background: #dcdce5;
  z-index: 0;
}

.selection-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  gap: clamp(16px, 2.6vw, 40px);
  position: relative;
  z-index: 1;
}

.selection-step {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  position: relative;
}

.step-node {
  width: var(--node-size);
  height: var(--node-size);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
  transition: transform 0.2s ease;
  position: relative;
}

.step-node::after {
  content: attr(data-step);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.selection-step.is-start .step-node {
  background: #c3c3cb;
  color: #fff;
}

.selection-step.is-completed .step-node {
  background: var(--brand-red);
  box-shadow: 0 10px 22px rgba(231, 50, 42, 0.24);
}

.selection-step.is-upcoming .step-node {
  background: #fff;
  color: #b1b1bb;
  border: 2px solid #cfd0d8;
  box-shadow: none;
}

.selection-step.is-finish .step-node {
  background: #c3c3cb;
  color: #fff;
}

.selection-step h3 {
  margin: 0;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  font-weight: 600;
  color: var(--brand-dark);
}

.selection-step p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4f4f4f;
  max-width: 240px;
}

.selection-step .step-node:hover {
  transform: translateY(-4px);
}

@media (max-width: 1200px) {
  .selection-flow-track {
    --node-size: 60px;
  }

  .selection-step p {
    max-width: 220px;
  }
}

@media (max-width: 992px) {
  .selection-flow-track {
    padding: 0;
  }

  .selection-flow-line {
    display: none;
  }

  .selection-steps {
    flex-direction: column;
    align-items: center;
    gap: 36px;
  }

  .selection-step {
    max-width: 440px;
  }

  .selection-step p {
    max-width: none;
  }

  .selection-step::before {
    display: none;
  }
}

@media (max-width: 576px) {
  .selection-flow {
    padding: clamp(60px, 14vw, 84px) 0;
  }

  .selection-flow-track {
    --node-size: 54px;
  }

  .step-node {
    font-size: 1.4rem;
  }
}

.stats-section {
  position: relative;
  width: 100%;
  padding: 0 0 180px;
  margin: clamp(-40px, -4vw, 8px) 0 0;
}

.stats-section .container-xxl {
  max-width: 1128px;
  margin-left: clamp(36px, 7vw, 70px);
  margin-right: auto;
}

.stats-grid {
  margin: 0;
}

.stat-card {
  background: transparent;
  border-radius: 18px;
  padding: clamp(10px, 1.3vw, 14px) clamp(8px, 1.1vw, 12px);
  box-shadow: none;
  border: 1px solid rgba(214, 209, 224, 0.9);
  display: flex;
  align-items: flex-start;
  gap: clamp(10px, 1.5vw, 14px);
}

.stat-icon {
  width: clamp(34px, 3.4vw, 44px);
  height: clamp(34px, 3.4vw, 44px);
  border-radius: 18px;
  background: rgba(231, 50, 42, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e7322a;
  font-size: clamp(1.2rem, 1.6vw, 1.6rem);
  flex-shrink: 0;
}

.stat-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.stat-value {
  font-size: clamp(1.5rem, 2vw, 1.8rem);
  font-weight: 700;
  color: #251f2a;
  letter-spacing: -0.01em;
}

.stat-value .plus {
  color: #ffb347;
  font-size: 0.98rem;
  margin-left: 6px;
}

.stat-content h3 {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: #e7322a;
}

.stat-content p {
  margin: 0;
  color: #6d6470;
  line-height: 1.5;
  font-size: 0.78rem;
}

.jobs-section {
  width: 100%;
  padding: 0;
  margin: clamp(72px, 9vw, 120px) 0 clamp(96px, 11vw, 140px);
}

.jobs-heading-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.jobs-heading-text h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #201a2a;
}

.jobs-heading-text p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.7;
  color: #5c5464;
}

.jobs-heading-text .jobs-link {
  align-self: flex-start;
}

.jobs-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid rgba(231, 50, 42, 0.24);
  color: #e7322a;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease,
    color 0.2s ease;
}

.jobs-grid {
  margin: 0;
}

.data-loker {
  width: 100%;
  padding: 0;
  margin: clamp(48px, 8vw, 96px) 0 clamp(56px, 9vw, 110px);
}

.data-loker-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: clamp(22px, 3.6vw, 32px);
}

.data-loker-header h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  color: #242424;
}

.data-loker-header p {
  margin: 10px 0 0;
  color: #5d5d5d;
  font-size: 0.94rem;
  line-height: 1.6;
}

.data-loker-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(231, 50, 42, 0.12);
  color: #e7322a;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.data-loker-review {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 12px;
  background: #345dff;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 18px 32px rgba(52, 93, 255, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.data-loker-review:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 36px rgba(52, 93, 255, 0.28);
}

.data-loker-carousel {
  position: relative;
  background: #fff;
  border-radius: 26px;
  padding: clamp(22px, 3vw, 30px);
  box-shadow: 0 26px 52px rgba(32, 32, 46, 0.08);
  overflow: hidden;
}

.data-loker-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 300px);
  gap: clamp(18px, 2.8vw, 26px);
  transition: transform 0.4s ease;
}

.data-loker-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(44, 44, 68, 0.08);
  box-shadow: 0 12px 24px rgba(32, 32, 46, 0.08);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.data-loker-card .company-logo {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: rgba(231, 50, 42, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.data-loker-card .company-logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.company-meta {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #444;
  font-size: 0.88rem;
}

.company-meta i {
  color: #ff4081;
}

.company-desc {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.6;
  color: #606060;
}

.company-button {
  margin-top: auto;
  align-self: flex-start;
  padding: 8px 16px;
  border-radius: 12px;
  background: rgba(52, 93, 255, 0.12);
  color: #345dff;
  font-weight: 600;
  font-size: 0.82rem;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.company-button:hover {
  transform: translateY(-1px);
  background: rgba(52, 93, 255, 0.2);
}

.data-loker-nav {
  position: absolute;
  inset: 50% -18px auto auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transform: translateY(-50%);
}

.data-loker-nav button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(44, 44, 68, 0.12);
  background: #fff;
  color: #e7322a;
  box-shadow: 0 14px 28px rgba(32, 32, 46, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.data-loker-nav button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 32px rgba(32, 32, 46, 0.18);
}

.data-loker-nav button.is-disabled {
  opacity: 0.4;
  pointer-events: none;
}

.popular-job {
  width: 100%;
  padding: 0;
  margin: clamp(56px, 9vw, 110px) 0 clamp(60px, 8vw, 110px);
}

.popular-job-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: clamp(24px, 4vw, 36px);
}

.popular-job-header {
  text-align: center;
}

.popular-job-header > div:first-child {
  width: 100%;
}

.popular-job-header h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  font-weight: 600;
  color: #202020;
}

.popular-job-header p {
  margin: 10px auto 0;
  color: #5e5e5e;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 620px;
}

.popular-job-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(231, 50, 42, 0.12);
  color: #e7322a;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.popular-job-filters {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(231, 50, 42, 0.06);
  padding: 10px 16px;
  border-radius: 999px;
  margin: 0 auto;
}

.popular-job-filters button {
  border: none;
  background: transparent;
  color: #616161;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.popular-job-filters button:hover {
  background: rgba(231, 50, 42, 0.12);
  color: #e7322a;
}

.popular-job-filters button.is-active {
  background: #e7322a;
  color: #fff;
  box-shadow: 0 12px 26px rgba(231, 50, 42, 0.18);
}

.job-list-card {
  display: flex;
  gap: 18px;
  border-radius: 20px;
  border: 1px solid rgba(44, 44, 68, 0.1);
  background: #fff;
  padding: 20px;
  box-shadow: 0 14px 32px rgba(32, 32, 46, 0.09);
  position: relative;
}

.job-list-avatar {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(231, 50, 42, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.job-list-avatar img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.job-list-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.job-list-body header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.job-list-body header h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #212121;
  flex: 1;
}

.job-list-body .bookmark {
  border: none;
  background: transparent;
  color: #b5b5b5;
  cursor: pointer;
  font-size: 1.1rem;
  transition: color 0.2s ease;
}

.job-list-body .bookmark:hover {
  color: #e7322a;
}

.job-meta {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.88rem;
  color: #555;
}

.job-meta li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.job-meta i {
  color: #e7322a;
}

.job-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.job-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.job-tag.fill {
  background: rgba(231, 50, 42, 0.16);
  color: #e7322a;
}

.job-tag.outline {
  border: 1px solid rgba(231, 50, 42, 0.35);
  color: #e7322a;
}

.job-tag.outline.warning {
  border-color: rgba(255, 196, 60, 0.6);
  color: #c68b1c;
  background: rgba(255, 221, 150, 0.25);
}

.job-tag.outline.info {
  border-color: rgba(80, 143, 255, 0.6);
  color: #3369ff;
  background: rgba(115, 161, 255, 0.18);
}

.job-tag.featured {
  color: #2d9122;
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
  .popular-job-header {
    justify-content: center;
    text-align: center;
  }

  .popular-job-header > div:first-child {
    width: 100%;
  }

  .popular-job-filters {
    margin: 0 auto;
  }
}

@media (max-width: 760px) {
  .popular-job-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
  }

  .job-list-card {
    flex-direction: column;
  }
}

@media (max-width: 1024px) {
  .popular-job-filters {
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px 12px;
  }
}

@media (max-width: 760px) {
  .job-list-card {
    flex-direction: column;
  }
}

/* ===== FAQ (accordion) ===== */
.faq-section {
  background: #fff;
  padding: 20px;
}
.faq-header {
  text-align: center;
  margin-bottom: clamp(28px, 3.6vw, 40px);
}
.faq-badge {
  display: inline-block;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-red);
  background: #ffe9e7;
  border-radius: 999px;
  margin-bottom: 12px;
}
.faq-header h2 {
  margin: 12px 0 8px;
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 700;
  color: #142432;
}
.faq-subtitle {
  margin: 0 auto;
  max-width: 720px;
  color: #5a6574;
  font-size: 0.98rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 28px) clamp(24px, 4vw, 40px);
  margin-top: clamp(26px, 3.4vw, 34px);
}
.faq-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e7e9ee;
  box-shadow: 0 6px 18px rgba(20, 20, 33, 0.05);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: #fff;
  border: none;
  text-align: left;
  cursor: pointer;
}
.faq-question strong {
  font-size: 1rem;
  color: #102233;
}
.faq-qicon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #0e2f3a;
  background: #e8edf3;
  border: 1px solid #d8e0e8;
}
.faq-chevron {
  width: 18px;
  height: 18px;
  display: inline-block;
  position: relative;
  transition: transform 0.25s ease;
}
.faq-chevron::before,
.faq-chevron::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  top: 8px;
  height: 2px;
  background: #7e8793;
  border-radius: 1px;
}
.faq-chevron::after {
  transform: rotate(90deg);
}
.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.25s ease;
  padding: 0 18px 0 54px;
  color: #4b5766;
  line-height: 1.7;
}
.faq-answer p {
  margin: 14px 0 18px;
}

.faq-item.is-open {
  border-color: #d7dae2;
  box-shadow: 0 10px 26px rgba(20, 20, 33, 0.07);
}
.faq-item.is-open .faq-answer {
  max-height: 320px;
  opacity: 1;
  padding-top: 0;
  overflow-y: auto;
}

/* hover/focus states */
.faq-question:hover {
  background: #fcfcfd;
}
.faq-question:focus-visible {
  outline: 2px solid rgba(231, 50, 42, 0.35);
  outline-offset: 2px;
  border-radius: 8px;
}

/* Mobile */
@media (max-width: 992px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .faq-answer {
    padding-left: 46px;
  }
}

.footer {
  width: 100%;
  color: #1f1f1f;
  background: #f4f4f4;
}

.footer-top {
  padding: clamp(36px, 6vw, 60px) 0;
}

.footer-help {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-help h3 {
  margin: 0;
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  font-weight: 600;
}

.footer-help p {
  margin: 0;
  color: #616161;
  font-size: 0.96rem;
  line-height: 1.7;
}

.footer-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease,
    color 0.2s ease, border-color 0.2s ease;
}

.footer-button.primary {
  background: #e7322a;
  color: #fff;
  box-shadow: 0 16px 32px rgba(231, 50, 42, 0.16);
}

.footer-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(231, 50, 42, 0.22);
}

.footer-button.outline {
  border: 1px solid rgba(231, 50, 42, 0.32);
  color: #e7322a;
  background: transparent;
}

.footer-button.outline:hover {
  background: rgba(231, 50, 42, 0.1);
  transform: translateY(-2px);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.footer-links .link-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
}

.footer-links a {
  color: #424242;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #e7322a;
}

.footer-bottom {
  padding: 18px 16px 32px;
  text-align: center;
  font-size: 0.86rem;
  color: #6d6d6d;
  background: #f0f0f0;
}

@media (max-width: 760px) {
  .footer-links .link-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .data-loker-track {
    grid-auto-columns: minmax(220px, 260px);
  }

  .data-loker-nav {
    position: static;
    flex-direction: row;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 18px;
    transform: none;
  }
}

@media (max-width: 760px) {
  .data-loker-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .data-loker-track {
    grid-auto-columns: minmax(220px, 85%);
  }
}

.selection-section {
  width: 100%;
  padding: 0;
  margin: clamp(72px, 9vw, 120px) 0 clamp(60px, 8vw, 100px);
}

.selection-heading {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.selection-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(231, 50, 42, 0.12);
  color: #e7322a;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.selection-heading h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 600;
  color: #201a2a;
}

.selection-heading p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.7;
  color: #5b5362;
}

/* ===== Flow / Stepper – Breathing (redup–terang) ===== */
.selection-flow {
  padding: 56px 0;
}

/* Header */
.flow-header {
  text-align: center;
  margin-bottom: 36px;
}
.flow-badge {
  display: inline-block;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-red);
  background: #ffe9e7;
  border-radius: 999px;
  margin-bottom: 12px;
}
.flow-title {
  font-size: 1.9rem;
  font-weight: 700;
  margin: 0 0 10px;
  color: #1d2430;
}
.flow-subtitle {
  font-size: 1rem;
  color: #586072;
  max-width: 720px;
  margin: 0 auto;
}

/* Rail (seukuran container, bernafas redup-terang) */
.flow-rail {
  position: relative;
  max-width: 1200px;
  height: 6px;
  background: #e7322a;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(231, 50, 42, 0.28);
}

/* Steps row */
.flow-steps {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.flow-step {
  flex: 1;
  position: relative;
  text-align: center;
}

/* Bullet (angka) – breathing glow + stagger */
.flow-step .node {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font: 700 0.9rem/1 "Poppins", sans-serif;
  color: #fff;
  background: var(--brand-red);
  border: 3px solid var(--brand-red);
  box-shadow: 0 8px 18px rgba(231, 50, 42, 0.22);
  z-index: 2;
  animation: nodeBreathe 2200ms ease-in-out infinite;
}
@keyframes nodeBreathe {
  0%,
  100% {
    filter: brightness(0.95);
    box-shadow: 0 8px 18px rgba(231, 50, 42, 0.22);
  }
  50% {
    filter: brightness(1.22);
    box-shadow: 0 16px 32px rgba(231, 50, 42, 0.38);
  }
}

/* Stagger (gelombang dari kiri ke kanan) */
.flow-step:nth-child(1) .node {
  animation-delay: 0ms;
}
.flow-step:nth-child(2) .node {
  animation-delay: 150ms;
}
.flow-step:nth-child(3) .node {
  animation-delay: 300ms;
}
.flow-step:nth-child(4) .node {
  animation-delay: 450ms;
}
.flow-step:nth-child(5) .node {
  animation-delay: 600ms;
}

/* Copy di bawah bullet */
.flow-step .flow-copy {
  margin-top: 56px;
}
.flow-step .flow-copy h3 {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 700;
  color: #1d2430;
}
.flow-step .flow-copy p {
  margin: 0.4rem auto 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #586072;
  max-width: 200px;
}

/* Mobile */
@media (max-width: 992px) {
  .flow-rail {
    display: none;
  }
  .flow-steps {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    max-width: 100%;
  }
  .flow-step {
    text-align: left;
    padding-left: 50px;
  }
  .flow-step .node {
    left: 0;
    top: 0;
    transform: none;
  }
  .flow-step .flow-copy {
    margin-top: 0;
  }
}

/* Aksesibilitas: kurangi gerak */
@media (prefers-reduced-motion: reduce) {
  .flow-rail,
  .flow-step .node {
    animation: none;
  }
}

.discover-companies {
  width: 100%;
  padding: 0;
  margin: clamp(56px, 9vw, 110px) 0 clamp(56px, 9vw, 100px);
}

.discover-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: clamp(24px, 4vw, 32px);
}

.discover-header > div:first-child {
  max-width: 560px;
}

.discover-header h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  color: #212121;
}

.discover-header p {
  margin: 10px 0 0;
  color: #5c5c5c;
  font-size: 0.94rem;
  line-height: 1.6;
}

.discover-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(231, 50, 42, 0.12);
  color: #e7322a;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.66rem;
}

.discover-link {
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid rgba(231, 50, 42, 0.24);
  color: #e7322a;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.discover-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(231, 50, 42, 0.16);
  background: rgba(231, 50, 42, 0.08);
}

.discover-carousel {
  position: relative;
  overflow: hidden;
}

.discover-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 260px);
  gap: clamp(16px, 2vw, 22px);
  transition: transform 0.4s ease;
}

.discover-card {
  border: 1px solid rgba(44, 44, 68, 0.12);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(32, 32, 46, 0.08);
  min-height: 160px;
}

.discover-logo {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(231, 50, 42, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.discover-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.discover-card h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #212121;
}

.discover-card p {
  margin: 0;
  font-size: 0.85rem;
  color: #626262;
}

.discover-controls {
  position: absolute;
  inset: 50% -16px auto auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transform: translateY(-50%);
}

.discover-controls button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(44, 44, 68, 0.14);
  background: #fff;
  color: #e7322a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.discover-controls button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 26px rgba(32, 32, 46, 0.18);
}

.discover-controls button.is-disabled {
  opacity: 0.4;
  pointer-events: none;
}

.discover-dots {
  margin-top: clamp(18px, 3vw, 28px);
  display: flex;
  justify-content: center;
  gap: 10px;
}

.discover-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(231, 50, 42, 0.25);
  transition: transform 0.2s ease, background 0.2s ease;
}

.discover-dots button.is-active {
  background: #e7322a;
  transform: scale(1.2);
}

@media (max-width: 1024px) {
  .discover-track {
    grid-auto-columns: minmax(200px, 240px);
  }

  .discover-controls {
    position: static;
    flex-direction: row;
    justify-content: flex-end;
    gap: 10px;
    transform: none;
    margin-top: 16px;
  }
}

@media (max-width: 760px) {
  .discover-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .discover-track {
    grid-auto-columns: minmax(220px, 80%);
  }
}

.contact-section {
  width: 100%;
  padding: 20px;
}
.contact-badge {
  display: inline-block;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-red);
  background: #ffe9e7;
  border-radius: 999px;
  margin-bottom: 12px;
}

.contact-card {
  position: relative;
  overflow: hidden;
}

.contact-card::after {
  content: none;
}

.contact-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-logo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 32px;
}

.contact-logo .wing-left,
.contact-logo .wing-right {
  width: 24px;
  height: 14px;
  border-radius: 12px 12px 4px 4px;
  background: #e7322a;
  display: inline-block;
}

.contact-logo .wing-right {
  transform: rotate(-35deg);
}

.contact-logo .wing-left {
  transform: rotate(35deg);
}

.contact-copy h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3.3vw, 2.8rem);
  font-weight: 600;
  color: #201a2a;
}

.contact-copy p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.7;
  color: #5b5362;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 14px;
  padding: 14px 26px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease,
    color 0.2s ease, border-color 0.2s ease;
}

.contact-button.whatsapp {
  background: #5563ff;
  color: #fff;
  box-shadow: 0 20px 34px rgba(85, 99, 255, 0.25);
}

.contact-button.whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 40px rgba(85, 99, 255, 0.32);
}

.contact-button.outline {
  border: 1px solid rgba(85, 99, 255, 0.4);
  color: #5563ff;
  background: transparent;
}

.contact-button.outline:hover {
  background: rgba(85, 99, 255, 0.1);
  border-color: rgba(85, 99, 255, 0.6);
  transform: translateY(-2px);
}

@media (max-width: 760px) {
  .contact-actions {
    align-items: stretch;
  }

  .contact-button {
    width: 100%;
    justify-content: center;
  }
}

.contact-perks {
  margin-top: clamp(24px, 4vw, 36px);
  background: #091839;
  border-radius: 26px;
  padding: clamp(22px, 3vw, 28px);
  color: #fff;
  gap: 0;
}

.perk-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px 20px;
}

.perk-item strong {
  font-size: 1rem;
}

.perk-item span {
  font-size: 0.86rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
}

.perk-item i {
  font-size: 1.4rem;
  color: #ffd861;
}

.contact-perks .col-md-4:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.list-kerja-controls button.is-disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.list-kerja {
  width: 100%;
  padding: 0;
  margin: clamp(48px, 8vw, 96px) 0 clamp(72px, 10vw, 120px);
}

.list-kerja .container-xxl {
  position: relative;
}

.list-kerja-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: clamp(24px, 4vw, 32px);
}

.list-kerja-header h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  color: #1f1f1f;
}

.list-kerja-header p {
  margin: 10px 0 0;
  color: #5a5a5a;
  font-size: 0.94rem;
  line-height: 1.6;
}

.list-kerja-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(231, 50, 42, 0.12);
  color: #e7322a;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
}

.list-kerja-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.list-kerja-controls button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(231, 50, 42, 0.28);
  background: rgba(231, 50, 42, 0.08);
  color: #e7322a;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.list-kerja-controls button:hover {
  transform: translateY(-2px);
  background: rgba(231, 50, 42, 0.16);
  border-color: rgba(231, 50, 42, 0.42);
}

.list-kerja-carousel {
  position: relative;
  background: #fff;
  border-radius: 28px;
  padding: clamp(24px, 3vw, 32px);
  overflow: hidden;
  box-shadow: 0 26px 54px rgba(30, 25, 36, 0.08);
}

.list-kerja-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 320px);
  gap: clamp(18px, 2.8vw, 28px);
  transition: transform 0.4s ease;
}

.list-kerja-card {
  background: #fff5f4;
  border-radius: 22px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #2a2a2a;
  box-shadow: 0 16px 38px rgba(220, 108, 100, 0.16);
  border: 1px solid rgba(231, 50, 42, 0.14);
}

.list-kerja-card .card-logo {
  width: 66px;
  height: 66px;
  border-radius: 20px;
  background: rgba(231, 50, 42, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.list-kerja-card .card-logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.card-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(231, 50, 42, 0.16);
  color: #c83b33;
  width: fit-content;
}

.list-kerja-card h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #201a2a;
}

.card-meta {
  margin: 0;
  font-size: 0.86rem;
  color: rgba(32, 26, 42, 0.72);
}

.card-desc {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(32, 26, 42, 0.66);
}

.card-button {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 12px;
  background: #e7322a;
  color: #fff;
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: transform 0.2s ease, background 0.2s ease;
}

.card-button:hover {
  transform: translateY(-2px);
  background: #f24a43;
}

@media (max-width: 1024px) {
  .list-kerja-track {
    grid-auto-columns: minmax(220px, 280px);
  }
}

@media (max-width: 760px) {
  .list-kerja-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .list-kerja-track {
    grid-auto-columns: minmax(240px, 85%);
  }

  .list-kerja-controls {
    width: 100%;
    justify-content: flex-end;
  }
}

@media (max-width: 1024px) {
  .selection-section {
    margin-top: clamp(56px, 10vw, 90px);
  }
}

@media (max-width: 760px) {
  .selection-timeline {
    --step-border: rgba(231, 50, 42, 0.18);
  }

  .selection-step {
    padding: 18px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .contact-card {
    padding: 26px;
  }

  .contact-perks {
    border-radius: 18px;
    padding: 20px;
  }

  .contact-perks .col-md-4:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 16px;
    padding-bottom: 16px;
  }
}

.job-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: clamp(22px, 3.4vw, 30px);
  border-radius: 24px;
  border: 1px solid rgba(231, 50, 42, 0.18);
  background: linear-gradient(
    160deg,
    rgba(231, 50, 42, 0.06),
    rgba(231, 50, 42, 0.02)
  );
  box-shadow: 0 22px 48px rgba(31, 24, 42, 0.08);
  min-height: 220px;
  position: relative;
  overflow: hidden;
}

.job-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(231, 50, 42, 0.08);
  pointer-events: none;
}

.job-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(231, 50, 42, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #e7322a;
  font-size: 1.6rem;
}

.job-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #352d3b;
}

.job-info h3 {
  margin: 0;
  font-size: 1.22rem;
  font-weight: 600;
  color: #201a2a;
}

.job-info p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.65;
  color: #5d5563;
}

.job-meta {
  margin-top: auto;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(231, 50, 42, 0.8);
  font-weight: 600;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 10px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-label-sub {
  text-transform: none;
  opacity: 0.7;
  letter-spacing: normal;
  font-weight: 300;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-overline {
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.hero-highlight {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.16);
}

.highlight-badge {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 4px 14px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
}

.highlight-badge strong {
  font-size: 2.4rem;
  line-height: 1;
  grid-row: span 2;
  align-self: center;
  letter-spacing: normal;
}

.highlight-badge .badge-title {
  grid-column: 1 / -1;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  opacity: 0.85;
}

.highlight-badge .badge-note {
  grid-column: 2;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
}

.highlight-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}

.highlight-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.highlight-list i {
  margin-top: 7px;
  font-size: 0.6rem;
  color: #fff;
}

.hero h1 {
  font-size: clamp(3.2rem, 5vw, 4.6rem);
  font-weight: 700;
  line-height: 1.08;
  margin: 0;
}

.hero h1 span {
  color: var(--brand-dark);
  background: #fff;
  padding: 0 10px;
  border-radius: 8px;
  display: inline-block;
}

.hero p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 420px;
  margin: 0;
  line-height: 1.6;
}

.hero-perks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
}

.perk-tile {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  font-size: 0.88rem;
  line-height: 1.4;
}

.perk-tile i {
  font-size: 1.1rem;
  margin-top: 2px;
}

.perk-tile div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.perk-tile strong {
  font-size: 0.98rem;
  line-height: 1.2;
  color: #fff;
}

.perk-tile p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.primary-button {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--brand-dark);
  font-weight: 600;
  font-size: 0.82rem;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
}

.cta-note {
  display: flex;
  flex-direction: column;
  max-width: 220px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
}

.cta-note strong {
  font-size: 1.8rem;
  color: #fff;
  line-height: 1;
}

/* --- HERO SLIDER FIXES --- */
.hero-right {
  /* pastikan kontainer punya tinggi nyata supaya anak absolute bisa 100% */
  min-height: 560px; /* bisa di-tweak: 520–640px */
  display: grid; /* bikin anak mudah memenuhi ruang */
  align-items: stretch;
}

@media (max-width: 920px) {
  .hero-right {
    min-height: 420px; /* sudah ada height 420px; kita pertegas min-height */
  }
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slider .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none; /* biar slide non-aktif tidak mengganggu klik */
  will-change: opacity;
  background: #000; /* fallback warna, sembunyikan gap saat loading */
}

.hero-slider .slide.is-active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}

.hero-slider .slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover; /* isi penuh, crop aman */
  object-position: center; /* posisi fokus tengah */
}

/* Dot states (sekadar lebih tegas) */
.quick-actions .dot {
  opacity: 0.7;
}
.quick-actions .dot.active {
  opacity: 1;
  transform: scale(1.12);
}

.hero-right {
  position: relative;
  background: #f3f3f3;
  overflow: visible;
  border-top-right-radius: var(--radius-soft);
  border-bottom-right-radius: var(--radius-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slider .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.hero-slider .slide:first-child {
  position: absolute; /* ganti dari relative */
  inset: 0;
}

.hero-slider .slide.is-active {
  opacity: 1;
  z-index: 2;
}

.hero-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.countdown-card {
  position: absolute;
  left: clamp(20px, 5vw, 48px);
  bottom: clamp(20px, 5vw, 48px);
  padding: 20px 24px;
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.62);
  color: #fff;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: clamp(240px, 28vw, 320px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
}

.countdown-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
}

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

.time-box {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 12px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.time-box .value {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.time-box .unit {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.7);
}

.quick-actions {
  position: absolute;
  top: 50%;
  right: clamp(16px, 3vw, 32px);
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  z-index: 3;
}

.feature-panel {
  position: relative;
  width: 100%;
  max-width: 1180px;
  margin: -112px auto 0;
  padding: 0 clamp(28px, 6vw, 64px);
  z-index: 2;
}

.metrics-card {
  background: #fff;
  border-radius: 34px;
  box-shadow: 0 36px 68px rgba(35, 32, 52, 0.16);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 42px;
  padding: 48px 50px;
  align-items: stretch;
  overflow: visible;
}

.metrics-info {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  padding-right: 34px;
}

.metrics-info::after {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: calc(50% - 0.5px);
  width: 1px;
  background: rgba(82, 41, 112, 0.18);
}

.metric-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  color: #3e3255;
}

.metric-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.metric-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(255, 195, 80, 0.32),
    rgba(100, 49, 141, 0.28)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.66rem;
  color: #4d296e;
  flex-shrink: 0;
}

.metric-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.metric-text h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #4d296e;
}

.metric-text p {
  margin: 18px 0 0;
  color: #6d6d76;
  line-height: 1.55;
  font-size: 0.94rem;
  position: relative;
  padding-top: 18px;
}

.metric-text p::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 54px;
  height: 2px;
  background: rgba(80, 41, 110, 0.16);
}

.metric-value {
  font-size: 2.55rem;
  font-weight: 700;
  color: #4d296e;
  letter-spacing: -0.02em;
}

.metric-value .plus {
  color: #f7ac2b;
  font-size: 1.4rem;
  margin-left: 6px;
}

.search-card {
  position: relative;
  background: linear-gradient(
      150deg,
      rgba(97, 44, 136, 0.96),
      rgba(37, 18, 60, 0.92)
    ),
    url("https://picsum.photos/seed/assessor/640/640") center/cover;
  border-radius: 26px;
  color: #fff;
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 32px 56px rgba(32, 18, 55, 0.32);
  border: 6px solid #fff;
  overflow: hidden;
}

.search-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    150deg,
    rgba(97, 44, 136, 0.95),
    rgba(37, 18, 60, 0.92)
  );
  z-index: 0;
}

.search-card > * {
  position: relative;
  z-index: 1;
}

.search-card header h4 {
  margin: 0 0 12px;
  font-size: 1.34rem;
  font-weight: 700;
  color: #ffbf45;
}

.search-card header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.search-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.search-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.72);
}

.search-field select {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 14px 48px 14px 18px;
  font-size: 1rem;
  font-weight: 500;
  appearance: none;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  background-image: linear-gradient(45deg, transparent 50%, #ffbf45 50%),
    linear-gradient(135deg, #ffbf45 50%, transparent 50%);
  background-position: calc(100% - 26px) 18px, calc(100% - 18px) 18px;
  background-size: 6px 6px;
  background-repeat: no-repeat;
}

.search-field select:focus {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.14);
}

.search-field option {
  color: #1f1f2b;
}

.search-button {
  border: none;
  border-radius: 18px;
  background: linear-gradient(120deg, #ffd35c, #ff9f1c);
  color: #3e2150;
  font-weight: 600;
  font-size: 1rem;
  padding: 18px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.search-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 38px rgba(255, 159, 28, 0.32);
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  background: rgba(0, 0, 0, 0.25);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 0;
  aspect-ratio: 1 / 1;
  transition: transform 0.2s ease, background 0.2s ease;
}

.dot.active {
  background: #ffffff;
  border-color: #ffffff;
  transform: scale(1.1);
}

.dot:hover {
  transform: scale(1.1);
}

.floating-button {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  color: #fff;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.16);
}

.floating-button.support {
  background: #1eb86a;
  box-shadow: 0 16px 28px rgba(30, 184, 106, 0.32);
}

.floating-button.cart {
  background: #000;
}

.social-bar {
  position: fixed;
  top: 50%;
  left: 36px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  z-index: 10;
  font-size: 0.98rem;
  color: var(--brand-dark);
}

.social-bar .rail {
  width: 2px;
  height: 150px;
  background: #e4e4e4;
  border-radius: 999px;
}

.social-bar a {
  transition: color 0.2s ease, transform 0.2s ease;
}

.social-bar a:hover {
  color: var(--brand-red);
  transform: translateX(2px);
}

@media (max-width: 1200px) {
  .nav {
    gap: 24px;
  }

  .hero-content {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-highlight {
    padding: 24px;
  }

  .countdown-card {
    width: clamp(220px, 32vw, 280px);
  }
}

@media (max-width: 1024px) {
  .hero-left {
    padding: 72px clamp(32px, 8vw, 64px) 80px;
  }

  .hero-content {
    gap: 28px;
  }

  .primary-button {
    width: 128px;
    height: 128px;
  }

  .hero-search-card {
    width: clamp(380px, 58vw, 520px);
    right: clamp(40px, 7vw, 72px);
    bottom: clamp(-280px, -20vw, -186px);
  }

  .metrics-card {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
    gap: 28px;
    padding: 36px 38px;
  }

  .metrics-info {
    padding-right: 24px;
    gap: 28px;
  }
}

@media (max-width: 920px) {
  .hero-right {
    order: -1;
    height: 420px;
    border-top-right-radius: var(--radius-soft);
    border-bottom-right-radius: 0;
  }

  .hero-left {
    padding: 54px clamp(28px, 8vw, 48px) 68px;
    border-top-right-radius: var(--radius-soft);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: var(--radius-soft);
  }

  .hero-content {
    gap: 24px;
  }

  .hero-content-minimal {
    margin-top: 40px;
    max-width: 100%;
  }

  .hero-search-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin: -160px clamp(28px, 8vw, 48px) 32px auto;
    width: clamp(340px, 90vw, 520px);
  }

  .stats-section .container-xxl {
    max-width: 100%;
    margin-left: clamp(20px, 6vw, 32px);
  }

  .social-bar,
  .quick-actions {
    display: none;
  }

  .feature-panel {
    margin-top: -90px;
    padding: 0 clamp(28px, 8vw, 48px);
  }

  .metrics-card {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .metrics-info {
    grid-template-columns: 1fr;
    padding-right: 0;
    padding-bottom: 24px;
    margin-bottom: 24px;
  }

  .metrics-info::after {
    display: none;
  }

  .countdown-card {
    left: 24px;
    right: 24px;
    bottom: 24px;
    width: auto;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
  }

  .countdown-timer {
    flex: 1;
    display: flex;
    justify-content: space-between;
    gap: 10px;
  }

  .time-box {
    flex: 1;
  }
}

@media (max-width: 760px) {
  .nav {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
  }

  .header-actions {
    width: 100%;
    justify-content: center;
  }

  .login-button,
  .signup-button {
    padding: 12px 24px;
  }

  .hero-search-card {
    margin: -52px clamp(24px, 8vw, 36px) 36px;
    width: 100%;
  }

  .jobs-section {
    margin: clamp(48px, 12vw, 80px) clamp(20px, 6vw, 32px)
      clamp(72px, 12vw, 100px);
    gap: 36px;
  }

  .hero-cta {
    gap: 20px;
  }

  .cta-note {
    max-width: 100%;
  }

  .countdown-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .feature-panel {
    margin-top: -80px;
    padding: 0 24px;
  }

  .metrics-card {
    padding: 26px;
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .nav a {
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid #f4f4f4;
  }

  .nav a:last-child {
    border-bottom: none;
  }

  .hero {
    border-radius: 20px;
  }

  .jobs-heading h2 {
    font-size: clamp(1.6rem, 6vw, 2.1rem);
  }

  .hero-left {
    gap: 28px;
    padding: 48px 24px 60px;
  }

  .hero-message {
    letter-spacing: 0.12em;
  }

  .hero-highlight {
    padding: 22px;
    border-radius: 20px;
  }

  .stats-section {
    padding: 0;
  }

  .stat-card {
    gap: 18px;
    padding: 20px;
  }

  .stat-icon {
    width: 48px;
    height: 48px;
    font-size: 1.8rem;
  }

  .hero-search-content {
    padding: 26px;
  }

  .highlight-badge strong {
    font-size: 2rem;
  }

  .highlight-list {
    gap: 12px;
  }

  .hero-perks {
    grid-template-columns: 1fr;
  }

  .primary-button {
    width: 112px;
    height: 112px;
  }

  .feature-panel {
    margin-top: -70px;
    padding: 0 20px;
  }

  .metrics-card {
    padding: 24px 22px;
    gap: 22px;
  }
}

@media (max-width: 520px) {
  .hero-right {
    height: 360px;
  }

  .hero-label {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 12px 18px;
    font-size: 0.74rem;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 8vw, 3.1rem);
  }

  .countdown-timer {
    flex-wrap: wrap;
  }

  .time-box {
    flex: 1 1 calc(50% - 8px);
  }
}
