.hero-section {
  padding: var(--section-padding) 0;
  background: linear-gradient(180deg, var(--blue-subtle) 0%, var(--white) 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-blue);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.hero-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.hero-title .text-primary {
  color: var(--brand-blue);
  display: block;
}

.hero-description {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 40px;
}

.hero-section .btn,
.featured-section .btn,
.employer-section .btn,
.why-section .btn,
.wingspan-section .btn,
.account-guide-section .btn,
.section-footer-btn .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.feature-item i {
  color: var(--success-green);
}

.hero-visual {
  position: relative;
}

.hero-image-container {
  position: relative;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
}

.hero-image-container img {
  width: 100%;
  border-radius: var(--border-radius);
  display: block;
}

.stat-card {
  position: absolute;
  bottom: -20px;
  left: -30px;
  background: var(--white) !important;
  padding: 18px 24px !important;
  border-radius: 20px !important;
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12) !important;
  z-index: 5;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-icon {
  width: 44px !important;
  height: 44px !important;
  background: var(--brand-yellow) !important;
  border-radius: 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 18px !important;
  color: var(--brand-yellow-dark) !important;
  flex-shrink: 0;
}

.stat-content {
  text-align: left !important;
}

.stat-number {
  display: block !important;
  font-size: 26px !important;
  font-weight: 800 !important;
  color: var(--brand-blue) !important;
  line-height: 1 !important;
}

.stat-label {
  display: block !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  color: var(--text-dark) !important;
  margin-top: 4px !important;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 80px;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-features {
    justify-content: center;
  }

  .stat-card {
    left: 20px;
    bottom: -30px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 36px;
  }
}

.search-section {
  padding: 60px 0 100px;
  background: var(--bg-light);
  text-align: center;
}

.search-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.search-header p {
  color: var(--text-muted);
  font-size: 18px;
  margin-bottom: 40px;
}

.search-container {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--blue-soft);
  padding: 40px;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

.search-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.search-input-group {
  text-align: left;
}

.search-input-group label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--brand-blue);
  margin-bottom: 8px;
}

.search-input-group label i {
  margin-right: 5px;
}

.search-input-group .form-control {
  height: 55px;
  border-radius: 12px;
  border: 1px solid var(--white);
  padding: 0 15px;
  font-size: 15px;
}

.btn-search-main {
  background: var(--brand-yellow);
  color: var(--brand-yellow-dark);
  border: none;
  padding: 16px 40px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 10px rgba(255, 235, 59, 0.3);
}

.btn-search-main:hover {
  background: var(--brand-yellow-hover);
  transform: translateY(-2px);
}

.search-tags {
  margin-top: 30px;
  text-align: center;
}

.search-tags p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.tag-item {
  display: inline-block;
  padding: 6px 14px;
  background: var(--white);
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-dark);
  text-decoration: none;
  margin: 4px;
  transition: 0.2s;
}

.tag-item:hover {
  color: var(--brand-blue);
  box-shadow: var(--shadow-sm);
}

.search-microcopy {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-subtle);
}

.search-microcopy span {
  font-weight: 600;
  color: var(--brand-blue);
}

@media (max-width: 768px) {
  .search-grid {
    grid-template-columns: 1fr;
  }

  .search-header h2 {
    font-size: 32px;
  }
}

.featured-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.section-header-center {
  text-align: center;
  margin-bottom: 50px;
}

.section-header-center h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-dark);
}

.section-header-center p {
  color: var(--text-muted);
  font-size: 18px;
}

.custom-card {
  background: var(--white);
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid var(--border-light);
  text-decoration: none !important;
  margin-bottom: 0;
}

.custom-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-blue);
}

.card-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.card-logo-box {
  width: 54px;
  height: 54px;
  background: var(--bg-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.card-logo-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.card-badge {
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--blue-subtle);
  color: var(--brand-blue);
}

.card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.card-info-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: 14px;
}

.card-info-row i {
  width: 16px;
  color: var(--brand-blue);
}

.card-footer-link {
  margin-top: auto;
  padding-top: 20px;
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-footer-btn {
  text-align: center;
  margin-top: 20px;
}

.job-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.job-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
  border-color: var(--brand-blue);
}

.job-actions-floating {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 12px;
  z-index: 2;
}

.job-actions-floating i {
  color: var(--text-subtle);
  font-size: 18px;
  cursor: pointer;
  transition: 0.2s;
}

.job-actions-floating i:hover {
  color: var(--brand-blue);
}

.job-actions-floating i.favorited {
  color: var(--danger-red);
}

.job-badges-container {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
  z-index: 2;
}

.job-badge-pill {
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  background: var(--border-light);
  color: var(--text-muted);
}

.badge-new {
  background: var(--success-bg);
  color: var(--success-text);
}

.job-icon-box {
  width: 48px;
  height: 48px;
  background: var(--bg-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.job-icon-box img {
  max-width: 70%;
  height: auto;
}

.job-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.4;
  display: block;
}

.job-card-excerpt {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 44px;
}

.job-meta-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  border-top: 1px solid var(--bg-soft);
  padding-top: 15px;
}

.job-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
}

.job-meta-item i {
  width: 14px;
  color: var(--brand-blue);
}

.job-meta-item.deadline {
  color: var(--deadline-red);
  font-weight: 600;
}

.job-meta-item.deadline i {
  color: var(--deadline-red);
}

.job-view-link {
  margin-top: auto;
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none !important;
}

.job-view-link:hover {
  gap: 10px;
}

.candidate-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.candidate-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
  border-color: var(--brand-blue);
}

.candidate-img-box {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--bg-soft);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.candidate-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.candidate-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
  text-decoration: none !important;
}

.candidate-designation {
  font-size: 14px;
  color: var(--brand-blue);
  font-weight: 600;
  margin-bottom: 12px;
}

.candidate-location {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.candidate-skills-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-bottom: 20px;
}

.skill-pill {
  background: var(--border-light);
  color: var(--text-muted);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
}

.candidate-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
  width: 100%;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 11px;
  color: var(--text-muted);
  min-width: 38px;
}

.stat-item i {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.stat-item span {
  font-weight: 700;
  color: var(--text-dark);
}

.btn-view-profile {
  margin-top: 25px;
  width: 100%;
  background: var(--blue-subtle);
  color: var(--brand-blue);
  padding: 12px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none !important;
  transition: 0.2s;
}

.btn-view-profile:hover {
  background: var(--brand-blue);
  color: var(--white);
}

.employer-section {
  padding: 100px 0;
  background: var(--white);
  text-align: center;
}

.employer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-blue);
  margin-bottom: 24px;
}

.employer-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.employer-title span {
  color: var(--brand-blue);
  display: block;
}

.employer-intro {
  max-width: 700px;
  margin: 0 auto 40px;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.6;
}

.service-card {
  background: var(--white);
  border: 2px solid var(--blue-soft);
  border-radius: 24px;
  padding: 40px;
  text-align: left;
  height: 100%;
  transition: all 0.3s ease;
  margin-bottom: 0;
}

.service-card:hover {
  border-color: var(--brand-blue);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-icon-box {
  width: 64px;
  height: 64px;
  background: var(--brand-yellow);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 24px;
  color: var(--brand-yellow-dark);
}

.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.service-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.process-container {
  background: #f8fafc;
  border-radius: 32px;
  padding: 80px 40px 70px;
  margin-top: 60px;
  text-align: center;
}

.process-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eef4ff;
  color: #2454a6;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 26px;
  text-transform: uppercase;
}

.process-main-title {
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.08;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 18px;
  letter-spacing: -1px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.process-main-desc {
  max-width: 760px;
  margin: 0 auto 65px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-muted);
}

.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.process-step-card {
  text-align: center;
}

.process-step-circle-wrap {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.process-step-circle-wrap.blue {
  background: rgba(31, 95, 191, 0.10);
  box-shadow: 0 0 0 14px rgba(31, 95, 191, 0.05);
}

.process-step-circle-wrap.light-blue {
  background: rgba(143, 211, 244, 0.16);
  box-shadow: 0 0 0 14px rgba(143, 211, 244, 0.07);
}

.process-step-circle-wrap.yellow {
  background: rgba(242, 197, 0, 0.14);
  box-shadow: 0 0 0 14px rgba(242, 197, 0, 0.06);
}

.process-step-circle-wrap.orange {
  background: rgba(240, 173, 78, 0.15);
  box-shadow: 0 0 0 14px rgba(240, 173, 78, 0.06);
}

.process-step-circle-wrap.green {
  background: rgba(126, 227, 126, 0.16);
  box-shadow: 0 0 0 14px rgba(126, 227, 126, 0.07);
}

.process-step-circle {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  position: relative;
}

.process-step-circle.blue {
  background: #1f5fbf;
  box-shadow:
    0 0 0 10px rgba(31, 95, 191, 0.10),
    0 0 28px rgba(31, 95, 191, 0.28),
    0 12px 24px rgba(31, 95, 191, 0.22);
}

.process-step-circle.light-blue {
  background: #8fd3f4;
  box-shadow:
    0 0 0 10px rgba(143, 211, 244, 0.12),
    0 0 28px rgba(143, 211, 244, 0.30),
    0 12px 24px rgba(143, 211, 244, 0.22);
}

.process-step-circle.yellow {
  background: #f2c500;
  box-shadow:
    0 0 0 10px rgba(242, 197, 0, 0.12),
    0 0 28px rgba(242, 197, 0, 0.30),
    0 12px 24px rgba(242, 197, 0, 0.22);
}

.process-step-circle.orange {
  background: #f0ad4e;
  box-shadow:
    0 0 0 10px rgba(240, 173, 78, 0.12),
    0 0 28px rgba(240, 173, 78, 0.30),
    0 12px 24px rgba(240, 173, 78, 0.22);
}

.process-step-circle.green {
  background: #7ee37e;
  box-shadow:
    0 0 0 10px rgba(126, 227, 126, 0.12),
    0 0 28px rgba(126, 227, 126, 0.30),
    0 12px 24px rgba(126, 227, 126, 0.22);
}

.process-step-line {
  height: 6px;
  border-radius: 999px;
  margin: 0 auto 18px;
  width: 100%;
  opacity: 0.7;
}

.process-step-line.blue {
  background: #c7d9ef;
}

.process-step-line.light-blue {
  background: #c9ecfb;
}

.process-step-line.yellow {
  background: #f6e89b;
}

.process-step-line.orange {
  background: #f6d6ad;
}

.process-step-line.green {
  background: #ccefc8;
}

.process-step-card h4 {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 12px;
  color: var(--text-dark);
  min-height: 72px;
}

.process-step-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 1199px) {
  .process-steps-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 35px;
  }

  .process-main-title {
    font-size: 52px;
  }
}

@media (max-width: 991px) {
  .process-container {
    padding: 60px 24px 55px;
  }

  .process-main-title {
    font-size: 42px;
  }

  .process-main-desc {
    font-size: 18px;
    margin-bottom: 45px;
  }

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

  .process-step-card h4 {
    min-height: auto;
  }
}

@media (max-width: 767px) {
  .process-container {
    padding: 45px 18px 40px;
    border-radius: 24px;
  }

  .process-badge {
    font-size: 12px;
    padding: 8px 14px;
    margin-bottom: 18px;
  }

  .process-main-title {
    font-size: 32px;
  }

  .process-main-desc {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .process-steps-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .process-step-circle-wrap {
    width: 98px;
    height: 98px;
  }

  .process-step-circle {
    width: 68px;
    height: 68px;
    font-size: 22px;
  }

  .process-step-card h4 {
    font-size: 20px;
  }

  .process-step-card p {
    font-size: 15px;
  }
}

.why-section {
  padding: 100px 0;
  background-color: var(--bg-soft);
  text-align: center;
}

.why-header h2 {
  font-size: 38px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.why-header p {
  color: var(--text-muted);
  font-size: 18px;
  margin-bottom: 60px;
}

.why-card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px 30px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid var(--border-light);
  margin-bottom: 0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.why-icon-circle {
  width: 80px;
  height: 80px;
  background: var(--blue-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 28px;
  color: var(--brand-blue);
}

.why-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 15px;
  line-height: 1.3;
}

.why-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.stats-bar {
  background: var(--white);
  border-radius: 24px;
  padding: 60px 40px;
  margin-top: 50px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid var(--border-light);
}

.stat-box {
  flex: 1;
  position: relative;
}

.stat-box:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: var(--border-subtle);
}

.stat-box h2 {
  font-size: 56px;
  font-weight: 800;
  color: var(--brand-blue);
  margin-bottom: 5px;
}

.stat-box p {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 500;
  margin: 0;
}

@media (max-width: 991px) {
  .stats-bar {
    flex-direction: column;
    gap: 40px;
  }

  .stat-box:not(:last-child)::after {
    display: none;
  }
}

.wingspan-section {
  padding: 100px 0;
  background-color: var(--white);
  overflow: hidden;
}

.ws-content {
  padding-right: 40px;
}

.ws-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--blue-soft);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-blue);
  margin-bottom: 24px;
}

.ws-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 24px;
}

.ws-title span {
  color: var(--brand-blue);
  display: block;
}

.ws-description {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 40px;
}

.ws-feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.ws-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
  justify-content: flex-start !important;
  margin-left: 0 !important;
  padding-left: 0 !important;
}

.ws-check-box {
  min-width: 32px;
  height: 32px;
  background: var(--brand-yellow);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-yellow-dark);
  font-size: 14px;
  margin-top: 4px;
}

.ws-feature-text h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.ws-feature-text p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

.ws-image-container {
  position: relative;
  z-index: 1;
}

.ws-image-container img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.ws-image-container::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(
    circle,
    rgba(40, 110, 251, 0.08) 0%,
    transparent 70%
  );
  z-index: -1;
}

@media (max-width: 991px) {
  .ws-content {
    padding-right: 0;
    margin-bottom: 60px;
    text-align: center;
  }

  .ws-feature-item {
    justify-content: flex-start !important;
  }

  .ws-feature-list {
    align-items: flex-start !important;
  }
}

.section-highlights-beta {
  padding: 40px 0;
  background: transparent;
  position: relative;
  z-index: 5;
  margin-top: -60px;
}

.stats-highlight-bar {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 50px 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.stat-highlight-item {
  text-align: center;
  position: relative;
  padding: 10px 0;
}

@media (min-width: 992px) {
  .stat-highlight-item:not(.last)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: var(--border-subtle);
  }
}

.stat-icon-subtle {
  font-size: 20px;
  color: var(--brand-blue);
  margin-bottom: 15px;
  opacity: 0.7;
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--brand-blue);
  margin-bottom: 5px;
  line-height: 1;
}

.stat-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.stat-subtext {
  font-size: 13px;
  color: var(--text-subtle);
  display: block;
}

@media (max-width: 991px) {
  .section-highlights-beta {
    margin-top: 0;
    padding: 40px 0;
  }

  .stat-highlight-item {
    margin-bottom: 40px;
  }

  .stat-highlight-item.last {
    margin-bottom: 0;
  }
}

.account-guide-section {
  padding: 100px 0;
  background-color: var(--bg-soft);
}

.guide-container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.guide-card {
    background: #fff;
    border-radius: 28px;
    padding: 48px 40px;
    text-align: center;
    height: 100%;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
    transition: all 0.3s ease;
}

.guide-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.10);
}

.guide-icon-box {
    width: 100%;
    height: 220px;
    margin: 0 auto 28px auto;
    border-radius: 24px;
    overflow: hidden;
    background: #f4f7fb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guide-icon-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.guide-card h3 {
    font-size: 26px;
    line-height: 1.25;
    margin-bottom: 18px;
}

.guide-card p {
    font-size: 16px;
    line-height: 1.7;
    max-width: 430px;
    margin: 0 auto 30px auto;
}

.guide-separator {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  font-weight: 700;
  color: var(--text-subtle);
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

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

@media (max-width: 991px) {
  .guide-separator {
    position: relative;
    transform: none;
    margin: -22px auto;
    left: auto;
    top: auto;
    z-index: 10;
    background: var(--white);
    box-shadow: none !important;
    border-color: var(--border-light);
    width: 44px;
    height: 44px;
    font-size: 12px;
  }
}

.home-employers-section {
    padding: 90px 0;
    background: #f8fafc;
}

.home-employers-badge {
      display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #eef4ff;
    color: #2454a6;
    border-radius: 999px;
    padding: 7px 13px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.home-employers-title {
   font-size: 44px;
    line-height: 1.08;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 22px;
    max-width: 620px;
    letter-spacing: -0.8px;
}

.home-employers-description {
   font-size: 17px;
    line-height: 1.65;
    color: #8a94a6;
    max-width: 620px;
    margin-bottom: 28px;
}

.home-employers-feature-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 30px;
}

.home-employers-feature-item {
     display: flex;
    align-items: flex-start;
    gap: 14px;
}

.home-employers-feature-icon {
     width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-top: 2px;
}

.home-employers-feature-icon.blue {
    background: #1f5fbf;
    color: #fff;
}

.home-employers-feature-icon.yellow {
    background: #ffd54a;
    color: #fff;
}

.home-employers-feature-icon.light-blue {
    background: #8fd3f4;
    color: #fff;
}

.home-employers-feature-icon.green {
    background: #9be59b;
    color: #fff;
}

.home-employers-feature-content h4 {
      font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: #1f2937;
    margin-bottom: 4px;
    letter-spacing: -0.2px;
}

.home-employers-feature-content p {
   margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: #8a94a6;
    max-width: 620px;
}

.home-employers-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1f5fbf;
    color: #fff;
    text-decoration: none;
    padding: 14px 26px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s ease;
}

.home-employers-btn:hover {
    background: #184e9d;
    color: #fff;
}

.home-employers-image-wrap {
    position: relative;
    max-width: 640px;
    margin-left: auto;
}

.home-employers-image {
    width: 100%;
    height:  440px;
    object-fit: cover;
    border-radius: 22px;
    display: block;
}

.home-employers-floating-card {
    position: absolute;
    left: -40px;
    bottom: -25px;
    background: #fff;
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 235px;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.14);
}

.home-employers-floating-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    background: #1f5fbf;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.home-employers-floating-text h4 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 4px 0;
}

.home-employers-floating-text p {
    margin: 0;
    font-size: 15px;
    color: #8a94a6;
}

@media (max-width: 1199px) {
    .home-employers-title {
        font-size: 42px;
    }

    .home-employers-feature-content h4 {
        font-size: 22px;
    }
}

@media (max-width: 991px) {
    .home-employers-section {
        padding: 70px 0;
    }

    .home-employers-title {
        font-size: 36px;
        max-width: 100%;
    }

    .home-employers-description,
    .home-employers-feature-content p {
        max-width: 100%;
    }

    .home-employers-image-wrap {
        margin-left: 0;
    }

    .home-employers-image {
        height: 420px;
    }

    .home-employers-floating-card {
        left: 20px;
        bottom: -20px;
    }
}

@media (max-width: 767px) {
    .home-employers-section {
        padding: 55px 0;
    }

    .home-employers-title {
        font-size: 30px;
    }

    .home-employers-description {
        font-size: 16px;
    }

    .home-employers-feature-item {
        gap: 12px;
    }

    .home-employers-feature-content h4 {
        font-size: 19px;
    }

    .home-employers-feature-content p {
        font-size: 15px;
    }

    .home-employers-btn {
        font-size: 16px;
        padding: 14px 22px;
    }

    .home-employers-image {
        height: 300px;
    }

    .home-employers-floating-card {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: 18px;
        width: 100%;
    }
    
}

.home-candidates-promo-section {
    padding: 110px 0;
    background: #f8fafc;
}

.home-candidates-promo-image-wrap {
    position: relative;
    max-width: 620px;
}

.home-candidates-promo-image {
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
}

.home-candidates-promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #fff7da;
    color: #2454a6;
    border: 1px solid #f1c40f;
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.home-candidates-promo-title {
    font-size: 44px;
    line-height: 1.08;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 22px;
    max-width: 620px;
    letter-spacing: -0.8px;
}

.home-candidates-promo-description {
    font-size: 17px;
    line-height: 1.65;
    color: #8a94a6;
    max-width: 620px;
    margin-bottom: 28px;
}

.home-candidates-promo-feature-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 30px;
}

.home-candidates-promo-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.home-candidates-promo-feature-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-top: 2px;
}

.home-candidates-promo-feature-icon.yellow {
    background: #f1c40f;
    color: #fff;
}

.home-candidates-promo-feature-icon.blue {
    background: #1f5fbf;
    color: #fff;
}

.home-candidates-promo-feature-icon.light-blue {
    background: #8fd3f4;
    color: #fff;
}

.home-candidates-promo-feature-icon.green {
    background: #8ee28e;
    color: #fff;
}

.home-candidates-promo-feature-icon.orange {
    background: #f0ad4e;
    color: #fff;
}

.home-candidates-promo-feature-content h4 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: #1f2937;
    margin-bottom: 4px;
    letter-spacing: -0.2px;
}

.home-candidates-promo-feature-content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: #8a94a6;
    max-width: 620px;
}

.home-candidates-promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f1c40f;
    color: #1f2937;
    text-decoration: none;
    padding: 14px 26px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s ease;
}

.home-candidates-promo-btn:hover {
    background: #d9ae05;
    color: #1f2937;
}

@media (max-width: 991px) {
    .home-candidates-promo-section {
        padding: 80px 0;
    }

    .home-candidates-promo-title {
        font-size: 34px;
        max-width: 100%;
    }

    .home-candidates-promo-description,
    .home-candidates-promo-feature-content p {
        max-width: 100%;
    }

    .home-candidates-promo-image {
        height: 360px;
    }
}

@media (max-width: 767px) {
    .home-candidates-promo-section {
        padding: 60px 0;
    }

    .home-candidates-promo-title {
        font-size: 30px;
    }

    .home-candidates-promo-description {
        font-size: 16px;
    }

    .home-candidates-promo-feature-content h4 {
        font-size: 19px;
    }

    .home-candidates-promo-feature-content p {
        font-size: 15px;
    }

    .home-candidates-promo-image {
        height: 280px;
    }
}

.home-bottom-cta-section {
    padding: 90px 0 110px;
    background: #f8fafc;
}

.home-bottom-cta-box {
    background: #eaf3fb;
    border-radius: 28px;
    padding: 70px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.home-bottom-cta-box h2 {
    font-size: 52px;
    line-height: 1.1;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 28px;
    letter-spacing: -0.8px;
}

.home-bottom-cta-box p {
    max-width: 980px;
    margin: 0 auto 42px;
    font-size: 22px;
    line-height: 1.6;
    color: #6b7280;
}

.home-bottom-cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.home-bottom-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 34px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: 0.3s ease;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.10);
}

.home-bottom-cta-btn.candidate-btn {
    background: #f2c500;
    color: #1f2937;
}

.home-bottom-cta-btn.candidate-btn:hover {
    background: #ddb400;
    color: #1f2937;
}

.home-bottom-cta-btn.employer-btn {
    background: #1f5fbf;
    color: #ffffff;
}

.home-bottom-cta-btn.employer-btn:hover {
    background: #184e9d;
    color: #ffffff;
}

@media (max-width: 991px) {
    .home-bottom-cta-section {
        padding: 70px 0 90px;
    }

    .home-bottom-cta-box {
        padding: 55px 22px;
    }

    .home-bottom-cta-box h2 {
        font-size: 40px;
    }

    .home-bottom-cta-box p {
        font-size: 18px;
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .home-bottom-cta-box {
        padding: 40px 18px;
        border-radius: 20px;
    }

    .home-bottom-cta-box h2 {
        font-size: 30px;
    }

    .home-bottom-cta-box p {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .home-bottom-cta-buttons {
        gap: 12px;
    }

    .home-bottom-cta-btn {
        width: 100%;
        justify-content: center;
        font-size: 16px;
        padding: 15px 20px;
    }
}

/* =========================
   Footer redesign v2
   ========================= */

.section-footer-alpha.footer-redesign {
  background: #114a8b;
  padding: 58px 0 26px;
  border-top: none;
}

.footer-redesign-container {
  max-width: 1180px;
}

.footer-redesign-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  row-gap: 34px;
}

.section-footer-alpha.footer-redesign h4 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 20px 0;
}

.footer-brand-block {
  padding-right: 20px;
}

.footer-logo-wrap {
  display: inline-block;
  margin-bottom: 0px;
}

.footer-logo-img {
  width: 600px;
  max-width: 100%;
  height: auto;
  display: block;
}

.footer-brand-text {
  color: #ffffff !important;
  font-size: 15px;
  line-height: 1.55;
  margin: -35px 0 0 0 !important;
  max-width: 460px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.10);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 17px;
  transition: all 0.25s ease;
}

.footer-socials a:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  transform: translateY(-2px);
}

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

.footer-links-block ul li {
  margin-bottom: 14px;
  padding: 0;
}

.footer-links-block ul li a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 15px;
  line-height: 1.45;
  transition: color 0.25s ease;
}

.footer-links-block ul li a:hover {
  color: #ffffff;
}

.footer-support-links ul {
  margin-bottom: 28px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

.footer-contact-row i {
  color: #ffd633;
  font-size: 15px;
  width: 16px;
  text-align: center;
}

.footer-contact-row a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.footer-contact-row a:hover {
  color: #ffffff;
}

.footer-bottom-bar {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom-left {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.5;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.footer-bottom-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.4;
}

.footer-bottom-badge i {
  color: #ffd633;
  font-size: 14px;
}

@media (max-width: 991px) {
  .section-footer-alpha.footer-redesign {
    padding: 50px 0 24px;
  }

.footer-brand-text {
  color: #ffffff !important;
  font-size: 15px;
  line-height: 1.55;
  margin: -35px 0 0 0 !important;
  max-width: 460px;
}

  .footer-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom-right {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .section-footer-alpha.footer-redesign {
    padding: 42px 0 22px;
  }

  .footer-logo-img {
  width: 600px;
  max-width: 100%;
  height: auto;
  display: block;
}

  .footer-bottom-bar {
    margin-top: 30px;
    padding-top: 18px;
  }
}

.mission-values-section {
  padding: 90px 0;
  background: #f8fafc;
}

.mission-values-header {
  max-width: 820px;
  margin: 0 auto 55px;
}

.mission-values-header h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.15;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 18px;
  letter-spacing: -0.8px;
}

.mission-values-header p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 auto;
}

.mission-values-cards {
  justify-content: center;
}

.mission-value-card {
  background: #f2f6fb;
  border: 1px solid #d7dde5;
  border-radius: 22px;
  padding: 36px 28px 30px;
  text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
}

.mission-value-card::before {
  content: "";
  position: absolute;
  top: -35px;
  right: -35px;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

.mission-value-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 28px;
  color: #fff;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

.mission-value-icon.blue {
  background: #1553a1;
}

.mission-value-icon.yellow {
  background: #f2c500;
  color: #fff;
}

.mission-value-icon.light-blue {
  background: #8fd3f4;
  color: #fff;
}

.mission-value-card h4 {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.mission-value-card p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 991px) {
  .mission-values-section {
    padding: 75px 0;
  }

  .mission-values-header {
    margin-bottom: 40px;
  }

  .mission-values-header p {
    font-size: 17px;
  }
}

@media (max-width: 767px) {
  .mission-values-section {
    padding: 60px 0;
  }

  .mission-values-header h2 {
    font-size: 34px;
  }

  .mission-values-header p {
    font-size: 16px;
  }

  .mission-value-card {
    padding: 30px 22px 26px;
  }
}


/* FIX: OR visual alignment */
.account-guide-section .guide-separator {
    left: auto !important;
    right: 50% !important;
    margin-right: -37px !important;
}




/* Home blogs slider */
.home-blogs-section {
    background: #ffffff;
    padding: 90px 0;
    overflow: hidden;
    width: 100%;
}

.home-blogs-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

.home-blogs-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 30px;
}

.home-blogs-kicker {
    display: block;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 800;
    color: #1f5fbf;
    letter-spacing: .5px;
    margin-bottom: 8px;
}

.home-blogs-top h2 {
    font-size: 38px;
    font-weight: 800;
    color: #1f2937;
    margin: 0;
}

.home-blogs-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding-bottom: 10px;
    width: 100%;
}

.home-blogs-track::-webkit-scrollbar {
    display: none;
}

.home-blog-card {
    position: relative;
    flex: 0 0 380px;
    height: 330px;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none !important;
    background: #0b1f1c;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
}

.home-blog-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: .3s ease;
}

.home-blog-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.78), rgba(0,0,0,.12));
    z-index: 1;
}

.home-blog-card:hover img {
    transform: scale(1.05);
}

.home-blog-content {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 2;
    color: #fff;
}

.home-blog-content span {
    display: block;
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 8px;
}

.home-blog-content h3 {
    color: #fff;
    font-size: 28px;
    line-height: 1.15;
    font-weight: 800;
    margin: 0 0 16px 0;
}

.home-blog-read {
    display: inline-flex;
    background: #fff;
    color: #006b5b;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 800;
    border-radius: 6px;
}

.home-blogs-arrows {
    display: flex;
    gap: 10px;
}

.home-blogs-arrow {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 8px;
    background: #0b1f1c;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

.home-blogs-footer {
    margin-top: 28px;
}

.home-blogs-all-btn {
    display: inline-flex;
    background: #1f5fbf;
    color: #fff;
    padding: 14px 22px;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none !important;
    border-radius: 8px;
}

@media (max-width: 767px) {
    .home-blogs-section {
        padding: 60px 0;
    }

    .home-blog-card {
        flex: 0 0 300px;
        height: 280px;
    }

    .home-blogs-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-blogs-top h2 {
        font-size: 30px;
    }

    .home-blog-content h3 {
        font-size: 22px;
    }
}

/* =========================
   Homepage redesign v3
   ========================= */

:root {
  --home-navy: #08111f;
  --home-navy-mid: #0c1a30;
  --home-navy-light: #132744;
  --home-gold: #d4a843;
  --home-gold-soft: #f0d78c;
  --home-gold-hover: #c49735;
  --home-text-light: rgba(255, 255, 255, 0.82);
  --home-panel-bg: #ffffff;
  --home-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --home-sans: "Source Sans 3", "Segoe UI", sans-serif;
}

.navbar-redesign-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 56px;
  padding-top: 0;
  padding-bottom: 0;
  overflow: visible;
}

.navbar-main.navbar-main {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  overflow: visible;
}

.navbar-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
  flex: 0 0 auto;
  overflow: visible;
  padding: 0;
  min-height: 0;
}

.navbar-brand-emblem-shell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 34px;
  flex: 0 0 56px;
  padding: 0;
  box-sizing: border-box;
  overflow: visible;
}

.navbar-brand-emblem {
  display: block;
  width: 56px;
  height: auto;
  max-width: 56px;
  max-height: 34px;
  object-fit: contain;
  object-position: center center;
}

.navbar-brand-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  overflow: visible;
  padding: 0;
}

.navbar-brand-name {
  color: var(--home-gold, #d4a843);
  font-family: var(--home-serif, Georgia, serif);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.35px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: visible;
  padding-top: 0;
  display: block;
}

.navbar-brand-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--home-sans, "Segoe UI", sans-serif);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

.navbar-brand-tagline::before,
.navbar-brand-tagline::after {
  content: "";
  width: 14px;
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
  flex: 0 0 14px;
}

.navbar-redesign-menu {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 10px;
}

.navbar-redesign-links,
.navbar-redesign-utils {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 2px;
}

body:has(#home-page) .navbar-redesign-utils {
  gap: 22px;
}

.navbar-redesign-links .nav-link,
.navbar-redesign-utils .nav-link {
  padding: 8px 12px !important;
  margin: 0 !important;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.navbar-redesign-utils .global-login-btn i {
  display: none;
}

.navbar-redesign-utils .global-login-btn {
  padding: 10px 26px !important;
  margin-left: 0 !important;
}

#navbar-mobile {
  z-index: 130;
  overflow: visible;
  padding-top: env(safe-area-inset-top, 0px);
  background: rgba(8, 17, 31, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

#navbar-mobile .row,
#navbar-mobile .col-md-12,
#navbar-mobile .mobile-menu {
  overflow: visible;
}

#navbar-mobile .mobile-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 0;
  padding: 10px 14px;
  background: transparent !important;
  border-bottom: 0;
  box-shadow: none !important;
}

#navbar-mobile .mobile-menu-trigger {
  color: #fff !important;
  float: none !important;
  margin-left: auto;
  flex: 0 0 auto;
  align-self: center;
  padding: 8px;
}

#navbar-mobile .navbar-brand-lockup--compact {
  min-height: 0;
  padding: 0;
  align-self: center;
}

#navbar-mobile .navbar-brand-lockup--compact .navbar-brand-name {
  font-size: 15px;
  line-height: 1.2;
  padding-top: 0;
}

#navbar-mobile .navbar-brand-lockup--compact .navbar-brand-tagline {
  font-size: 7px;
  letter-spacing: 1.4px;
}

#navbar-mobile .navbar-brand-lockup--compact .navbar-brand-emblem-shell {
  width: 48px;
  height: 28px;
  flex-basis: 48px;
  padding: 0;
}

#navbar-mobile .navbar-brand-lockup--compact .navbar-brand-emblem {
  width: 48px;
  max-width: 48px;
  max-height: 28px;
  height: auto;
}

body:has(#home-page) {
  font-family: var(--home-sans);
  background: var(--home-navy);
}

@media (min-width: 992px) {
  body:has(#home-page) .navbar-main {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 120;
    padding-top: 12px !important;
    padding-bottom: 10px !important;
    overflow: visible;
    background: linear-gradient(180deg, rgba(8, 17, 31, 0.92) 0%, rgba(8, 17, 31, 0.35) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.25s ease, box-shadow 0.25s ease;
  }

  body:has(#home-page) .navbar-main.navbar-home-solid {
    position: fixed;
    padding-top: 12px !important;
    padding-bottom: 10px !important;
    background: rgba(8, 17, 31, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  }
}

body:has(#home-page) .navbar-main ul li a,
body:has(#home-page) .navbar-main .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
}

body:has(#home-page) .navbar-main ul li a.global-login-btn,
body:has(#home-page) .navbar-main .nav-link.global-login-btn {
  color: #1a1a1a !important;
}

body:has(#home-page) .navbar-main ul li a:hover,
body:has(#home-page) .navbar-main .nav-link:hover {
  color: var(--home-gold-soft) !important;
}

body:has(#home-page) .navbar-main-btn {
  background: var(--home-gold) !important;
  color: #1a1a1a !important;
  border-radius: 5px !important;
  border: none !important;
  font-weight: 600 !important;
  box-shadow: none !important;
}

body:has(#home-page) .navbar-main .global-login-btn,
body:has(#home-page) .navbar-main .navbar-main-btn.global-login-btn {
  background: var(--home-gold) !important;
  color: #1a1a1a !important;
  border: none !important;
  border-radius: 5px !important;
  padding: 10px 26px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

body:has(#home-page) .navbar-main .global-login-btn:hover,
body:has(#home-page) .navbar-main .global-login-btn:focus,
body:has(#home-page) .navbar-main .navbar-main-btn.global-login-btn:hover,
body:has(#home-page) .navbar-main .navbar-main-btn.global-login-btn:focus {
  background: var(--home-gold-hover) !important;
  color: #111 !important;
}

body:has(#home-page) .navbar-main .flag-dropdown {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 6px 0 !important;
  color: rgba(255, 255, 255, 0.92) !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
}

body:has(#home-page) .navbar-main .flag-dropdown .parent-flag {
  width: 20px;
  height: 14px;
  border-radius: 2px;
  overflow: hidden;
  flex: 0 0 20px;
  background-size: cover;
  background-position: center;
}

body:has(#home-page) .navbar-main .flag-dropdown .parent-title {
  color: rgba(255, 255, 255, 0.92) !important;
  font-weight: 400;
}

body:has(#home-page) .navbar-main .flag-dropdown .fa-chevron-down {
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: 10px;
  margin-top: 1px;
}

body:has(#home-page) .navbar-main .flag-dropdown:hover,
body:has(#home-page) .navbar-main .flag-dropdown:focus {
  background: transparent !important;
  color: var(--home-gold-soft) !important;
}

body:has(#home-page) .navbar-main .flag-dropdown:hover .parent-title,
body:has(#home-page) .navbar-main .flag-dropdown:hover .fa-chevron-down,
body:has(#home-page) .navbar-main .flag-dropdown:focus .parent-title,
body:has(#home-page) .navbar-main .flag-dropdown:focus .fa-chevron-down {
  color: var(--home-gold-soft) !important;
}

body:has(#home-page) .navbar-main .flag-dropdown-list .dropdown-item {
  color: #1a1a1a !important;
}

body:has(#home-page) .navbar-main .flag-dropdown-list .dropdown-item:hover {
  background: rgba(8, 17, 31, 0.06) !important;
  color: #1a1a1a !important;
}

@media (min-width: 992px) {
  body:has(#home-page) .navbar-main .navbar-redesign-links .dropdown-menu {
    background: rgba(8, 17, 31, 0.96) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-top: 2px solid var(--home-gold-soft) !important;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35) !important;
    backdrop-filter: blur(12px);
    min-width: 210px;
    padding: 6px 0 !important;
  }

  body:has(#home-page) .navbar-main .navbar-redesign-links .dropdown-menu li {
    border-top-color: rgba(255, 255, 255, 0.08) !important;
  }

  body:has(#home-page) .navbar-main .navbar-redesign-links .dropdown-menu .dropdown-item,
  body:has(#home-page) .navbar-main .navbar-redesign-links .dropdown-menu ul li ul li a,
  body:has(#home-page) .navbar-main .navbar-redesign-links .dropdown-menu .dropdown > .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 10px 16px !important;
    background: transparent !important;
  }

  body:has(#home-page) .navbar-main .navbar-redesign-links .dropdown-menu .dropdown-item:hover,
  body:has(#home-page) .navbar-main .navbar-redesign-links .dropdown-menu .dropdown-item:focus,
  body:has(#home-page) .navbar-main .navbar-redesign-links .dropdown-menu ul li ul li a:hover,
  body:has(#home-page) .navbar-main .navbar-redesign-links .dropdown-menu .dropdown > .nav-link:hover,
  body:has(#home-page) .navbar-main .navbar-redesign-links .dropdown-menu .dropdown > .nav-link:focus {
    background: rgba(212, 168, 67, 0.18) !important;
    color: var(--home-gold-soft) !important;
  }

  body:has(#home-page) .navbar-main .navbar-redesign-links .dropdown-menu .dropdown .dropdown-menu {
    background: rgba(8, 17, 31, 0.98) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35) !important;
    top: 0 !important;
  }

  body:has(#home-page) .navbar-main .navbar-redesign-links .dropdown-menu .dropdown .fa-chevron-right {
    color: rgba(255, 255, 255, 0.72) !important;
  }
}

body:has(#home-page) #navbar-mobile,
body:has(#home-page) #navbar-mobile .mobile-menu {
  background: rgba(8, 17, 31, 0.98) !important;
}

body:has(#home-page) #navbar-mobile .mobile-menu-trigger {
  color: #fff !important;
}

body:has(#home-page) #navbar-mobile .navbar-brand-tagline,
body:has(#home-page) #navbar-mobile .navbar-brand-tagline::before,
body:has(#home-page) #navbar-mobile .navbar-brand-tagline::after {
  color: rgba(255, 255, 255, 0.78);
}

body:has(#home-page) .navbar-brand-name {
  color: var(--home-gold-soft);
}

@media (max-width: 991.98px) {
  .navbar-redesign-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar-redesign-menu {
    margin-left: 0;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0;
  }

  .navbar-redesign-links,
  .navbar-redesign-utils {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .navbar-redesign-links .nav-link,
  .navbar-redesign-utils .nav-link {
    padding: 10px 0 !important;
  }
}

.home-hero-redesign,
.home-audience-section,
.home-value-props-section,
.home-symbols-section,
.home-services-section,
.home-insights-testimonial-section,
.home-our-mission-section,
.home-bottom-cta-section--redesign,
.footer-redesign--v3 {
  font-family: var(--home-sans);
}

.home-hero-redesign h1,
.home-hero-redesign h2,
.home-audience-card h2,
.home-our-mission-title,
.home-section-heading h2,
.home-symbol-card h4,
.home-consultation-card h3,
.home-bottom-cta-section--redesign h2,
.home-insights-column h2 {
  font-family: var(--home-serif);
}

.home-hero-redesign {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--home-navy);
  margin-top: -1px;
}

.home-hero-redesign__media {
  position: absolute;
  inset: 0;
}

.home-hero-redesign__video-slot {
  width: 100%;
  height: 100%;
  background: var(--home-navy);
}

.home-hero-redesign__poster {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.home-hero-redesign__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.home-hero-redesign__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 17, 31, 0.05) 0%,
    rgba(8, 17, 31, 0.1) 55%,
    rgba(8, 17, 31, 0.32) 100%
  );
  pointer-events: none;
}

.home-hero-redesign__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 150px 15px 100px;
  max-width: 980px;
}

.home-hero-redesign__kicker {
  display: inline-block;
  color: var(--home-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.home-hero-redesign__title {
  font-size: clamp(40px, 6.2vw, 72px);
  line-height: 1.06;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
  text-wrap: balance;
  color: #fff;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
}

.home-hero-redesign__title-accent {
  display: inline;
  color: var(--home-gold);
}

.home-hero-redesign__description {
  max-width: 760px;
  margin: 0 auto 36px;
  font-size: 18px;
  line-height: 1.75;
  font-weight: 500;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.38);
}

.home-hero-redesign__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.home-hero-redesign__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.home-hero-redesign__btn--primary {
  background: var(--home-gold);
  color: #1a1a1a;
  box-shadow: 0 12px 30px rgba(212, 168, 67, 0.28);
}

.home-hero-redesign__btn--primary:hover {
  background: var(--home-gold-hover);
  color: #1a1a1a;
  transform: translateY(-2px);
}

.home-hero-redesign__btn--outline {
  border: 2px solid rgba(255, 255, 255, 0.88);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.home-hero-redesign__btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.home-hero-redesign__tagline {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  letter-spacing: 0.2px;
}

.home-hero-redesign__tagline i {
  color: var(--home-gold);
  margin-right: 8px;
}

.home-audience-section,
.home-value-props-section,
.home-symbols-section,
.home-services-section,
.home-insights-testimonial-section {
  background: var(--home-navy);
  color: #fff;
}

.home-audience-section {
  padding: 24px 0 32px;
  margin-top: -1px;
}

.home-value-props-section,
.home-symbols-section,
.home-services-section,
.home-insights-testimonial-section {
  padding: 40px 0;
}

.home-scroll-animate:not(.is-animated) {
  opacity: 0;
}

.home-scroll-animate.is-animated {
  opacity: 1;
}

.home-audience-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 390px;
  padding: 34px;
  border-radius: 22px;
  text-decoration: none !important;
  color: #fff !important;
  border: 1px solid rgba(212, 168, 67, 0.22);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.home-audience-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 17, 31, 0.2) 0%, rgba(8, 17, 31, 0.55) 45%, rgba(8, 17, 31, 0.94) 100%);
}

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

.home-audience-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
}

.home-audience-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(31, 95, 191, 0.92);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: auto;
}

.home-audience-card__icon--gold {
  background: rgba(212, 168, 67, 0.95);
  color: #1a1a1a;
}

.home-audience-card--companies {
  background-image: url('../img/home-audience/for-companies.jpg');
}

.home-audience-card--candidates {
  background-image: url('../img/home-audience/for-candidates.jpg');
}

.home-audience-card__label {
  display: inline-block;
  color: var(--home-gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.home-audience-card h2 {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.12;
  margin-bottom: 18px;
  font-weight: 700;
  color: #fff !important;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

.home-audience-card__link {
  color: var(--home-gold-soft);
  font-weight: 700;
  font-size: 15px;
}

.home-value-props-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 26px 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}

.home-value-prop {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 22px;
  position: relative;
}

.home-value-prop:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  right: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.home-value-prop__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
}

.home-value-prop__icon-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}

.home-value-prop__body {
  min-width: 0;
}

.home-value-prop h4 {
  font-size: 15px;
  margin: 0 0 5px;
  font-weight: 700;
  color: #fff;
  font-family: var(--home-sans);
}

.home-value-prop p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.5;
}

.home-our-mission-section {
  padding: 40px 0;
  background: linear-gradient(180deg, var(--home-navy-mid) 0%, var(--home-navy) 100%);
}

.home-our-mission-panel {
  background: var(--home-panel-bg);
  border-radius: 28px;
  padding: 42px;
  color: #1f2937;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.home-section-kicker {
  display: inline-block;
  color: var(--home-gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.home-section-kicker--light {
  color: var(--home-gold-soft);
}

.home-our-mission-title {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 18px;
}

.home-our-mission-title__lead {
  color: #000;
}

.home-our-mission-title__accent {
  color: var(--home-gold);
}

.home-our-mission-text {
  color: #64748b;
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 26px;
  max-width: 520px;
}

.home-our-mission-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--home-navy);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.home-our-mission-image-frame {
  border-radius: 20px;
  overflow: hidden;
  border: 10px solid #fff;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.14);
}

.home-our-mission-image-frame img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.home-section-heading {
  max-width: 760px;
  margin: 0 auto 48px;
}

.home-section-heading h2 {
  font-size: clamp(32px, 4vw, 46px);
  margin-bottom: 14px;
  font-weight: 700;
}

.home-section-heading p {
  color: var(--home-text-light);
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
}

.home-symbols-frame {
  position: relative;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 14px;
  background: transparent;
  padding: 30px 16px 12px;
  margin-top: 8px;
}

.home-symbols-frame__kicker {
  display: block;
  width: 100%;
  margin: 0 0 26px;
  padding: 0;
  text-align: center;
  color: var(--home-gold);
  font-family: var(--home-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.home-symbols-row {
  margin-top: 0;
}

.home-symbol-card {
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
  padding: 26px 36px;
  height: 100%;
  position: relative;
}

@media (min-width: 992px) {
  .home-symbols-row > .col-lg-4:not(:last-child) .home-symbol-card::after {
    content: "";
    position: absolute;
    top: 22px;
    bottom: 22px;
    right: 0;
    width: 1px;
    background: rgba(148, 163, 184, 0.22);
  }
}

.home-symbol-card__icon {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-symbol-icon-img {
  display: block;
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.home-symbol-card__body {
  flex: 1;
  min-width: 0;
}

.home-symbol-card h4 {
  font-size: 24px;
  margin-bottom: 8px;
  font-family: var(--home-serif);
  color: #fff;
  font-weight: 700;
  line-height: 1.15;
}

.home-symbol-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  font-size: 14px;
  font-family: var(--home-sans);
  max-width: 300px;
}

@media (max-width: 991.98px) {
  .home-symbols-frame {
    padding: 24px 12px 8px;
  }

  .home-symbols-frame__kicker {
    font-size: 12px;
    letter-spacing: 2.4px;
    margin-bottom: 20px;
  }

  .home-symbol-card {
    padding: 22px 20px;
    align-items: flex-start;
  }

  .home-symbol-card::after {
    display: none;
  }

  .home-symbol-card {
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  }

  .home-symbols-row > .col-md-6:last-child .home-symbol-card,
  .home-symbols-row > .col-lg-4:last-child .home-symbol-card {
    border-bottom: 0;
  }
}

.home-services-section {
  --home-services-gold: #c5a059;
  --home-services-border: #1e293b;
  background: #050a12;
}

.home-services-section > .container {
  position: relative;
  padding-left: 28px;
}

.home-services-section > .container::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(197, 160, 89, 0.42);
}

.home-services-header {
  max-width: none;
  margin: 0 0 28px;
  text-align: left;
}

.home-services-kicker {
  display: block;
  color: var(--home-services-gold);
  font-family: var(--home-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.home-services-title {
  margin: 0;
  max-width: none;
  color: #fff;
  font-family: var(--home-serif);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 700;
  line-height: 1.15;
  white-space: nowrap;
}

.home-services-grid {
  margin-top: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  overflow: visible;
  container-type: inline-size;
}

.home-service-card {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--home-services-border);
  background: rgba(10, 20, 36, 0.72);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.home-service-card__inner {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 12px 12px;
  box-sizing: border-box;
}

.home-services-grid__cta {
  display: flex;
  box-sizing: border-box;
}

.home-consultation-card {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(197, 160, 89, 0.32);
  background: linear-gradient(165deg, rgba(16, 36, 68, 0.82) 0%, rgba(8, 17, 31, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 24px 18px 20px;
  box-sizing: border-box;
}

.home-service-card__icon {
  flex: 0 0 76px;
  width: 76px;
  height: 76px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-shrink: 0;
}

.home-service-card__icon-img {
  display: block;
  width: 76px;
  height: 76px;
  object-fit: contain;
  object-position: top center;
}

.home-service-card__icon--emblem {
  flex: 0 0 76px;
  width: 76px;
  height: 76px;
  align-self: flex-start;
  padding: 0;
}

.home-service-card__icon-img--emblem {
  width: auto;
  height: auto;
  max-width: 76px;
  max-height: 76px;
  object-fit: contain;
  object-position: top center;
}

.home-service-card__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 0;
}

.home-service-card__title {
  font-size: 12px;
  margin: 0 0 6px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  font-family: var(--home-sans);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.home-service-card p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.38;
  margin: 0;
  font-size: 11.5px;
  font-family: var(--home-sans);
}

.home-service-card__link {
  margin: 6px 0 0;
  padding: 0;
  color: var(--home-services-gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
  font-family: var(--home-sans);
  white-space: nowrap;
  line-height: 1.2;
}

.home-service-card__link:hover {
  color: #d4b06a;
}

.home-consultation-card h3 {
  font-size: clamp(19px, 1.7vw, 23px);
  margin: 0 0 8px;
  font-family: var(--home-serif);
  font-weight: 700;
  color: #fff;
  line-height: 1.22;
}

.home-consultation-card p {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.45;
  margin: 0 0 18px;
  font-size: 12.5px;
  font-family: var(--home-sans);
}

.home-consultation-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 11px 16px;
  border-radius: 7px;
  background: var(--home-gold);
  color: #111;
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  font-family: var(--home-sans);
  transition: background 0.2s ease;
}

.home-consultation-card__btn:hover {
  background: var(--home-gold-hover);
  color: #111;
}

@media (min-width: 992px) {
  .home-services-section {
    padding-bottom: 100px;
  }

  .home-services-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    align-items: center;
  }

  .home-service-card {
    width: 100%;
    height: auto;
    padding-top: 0;
    margin: 0;
    align-self: center;
  }

  .home-service-card__inner {
    position: relative;
    inset: auto;
    padding: 14px 12px 12px;
    gap: 10px;
  }

  .home-service-card__title {
    font-size: 13px;
    letter-spacing: 1.2px;
    margin-bottom: 5px;
  }

  .home-service-card p {
    font-size: 13px;
    line-height: 1.4;
    max-width: 13.5em;
    min-height: calc(1.4em * 3);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .home-service-card__link {
    font-size: 13px;
    margin-top: 5px;
  }

  .home-services-grid__cta {
    align-self: stretch;
    display: flex;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .home-consultation-card {
    flex: 1;
    width: 100%;
    min-height: calc(100% + 88px);
    margin-block: -44px;
    padding: 26px 18px 22px;
    justify-content: center;
  }
}

@media (max-width: 991.98px) {
  .home-services-header {
    margin-bottom: 22px;
  }

  .home-services-title {
    white-space: normal;
    font-size: clamp(22px, 5vw, 28px);
  }

  .home-services-section > .container {
    padding-left: 20px;
  }

  .home-service-card {
    padding: 14px 12px;
  }

  .home-service-card__icon,
  .home-service-card__icon-img {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
    min-height: 64px;
  }

  .home-service-card__icon--emblem {
    flex-basis: 64px;
    width: 64px;
    min-height: 64px;
  }

  .home-service-card__icon-img--emblem {
    max-width: 64px;
    max-height: 64px;
  }

  .home-services-grid__cta {
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    min-height: 0;
  }
}

.home-insights-column__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 28px;
}

.home-insights-column {
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 34px 30px 30px;
  background: rgba(255, 255, 255, 0.02);
}

.home-insights-column h2 {
  font-size: clamp(30px, 3vw, 42px);
  margin: 0;
  font-weight: 700;
  color: #fff;
}

.home-insights-column__view-all {
  color: var(--home-gold-soft);
  text-decoration: none;
  font-weight: 700;
}

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

.home-insight-card {
  display: block;
  text-decoration: none !important;
  color: #fff !important;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.home-insight-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 168, 67, 0.28);
}

.home-insight-card__image {
  height: 150px;
  overflow: hidden;
}

.home-insight-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.home-insight-card:hover .home-insight-card__image img {
  transform: scale(1.05);
}

.home-insight-card__body {
  padding: 18px 18px 22px;
}

.home-insight-card__body h3 {
  margin: 0 0 10px;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 700;
  color: #fff;
  font-family: var(--home-sans);
}

.home-insight-card__meta {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--home-sans);
}

.home-insight-card__meta-accent {
  color: var(--home-gold-soft);
  font-weight: 700;
}

.home-insight-card__meta-sep {
  color: rgba(255, 255, 255, 0.42);
}

.home-testimonial-panel {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 34px 30px 28px;
  color: #fff;
  min-height: 100%;
}

.home-testimonial-panel__quote-mark {
  font-size: 72px;
  line-height: 0.75;
  color: var(--home-gold);
  margin-bottom: 10px;
  font-family: var(--home-serif);
}

.home-testimonial-slider__viewport {
  flex: 1;
  min-height: 0;
}

.home-testimonial-slide {
  display: none;
}

.home-testimonial-slide.is-active {
  display: block;
}

.home-testimonial-panel blockquote {
  font-size: clamp(16px, 1.45vw, 18px);
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.84);
  margin: 0 0 24px;
  font-family: var(--home-sans);
  font-weight: 400;
}

.home-testimonial-slider__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
}

.home-testimonial-panel__author {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.home-testimonial-panel__author img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(212, 168, 67, 0.35);
  flex-shrink: 0;
}

.home-testimonial-panel__author strong {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.home-testimonial-panel__author span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.home-testimonial-slider__nav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.home-testimonial-slider__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.home-testimonial-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.home-testimonial-slider__dot.is-active {
  background: var(--home-gold);
  transform: scale(1.15);
}

.home-testimonial-slider__next {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.home-testimonial-slider__next:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(212, 168, 67, 0.45);
}

.home-bottom-cta-section--redesign {
  padding: 48px 0;
  background: var(--home-navy);
}

.home-bottom-cta-section--redesign .container {
  width: 100%;
}

.home-bottom-cta-card {
  position: relative;
  display: block;
  width: 100%;
  min-height: 340px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  background-color: #08111f;
  background-image:
    linear-gradient(
      90deg,
      rgba(8, 17, 31, 1) 0%,
      rgba(8, 17, 31, 0.98) 24%,
      rgba(8, 17, 31, 0.94) 38%,
      rgba(8, 17, 31, 0.78) 50%,
      rgba(8, 17, 31, 0.42) 62%,
      rgba(8, 17, 31, 0.12) 76%,
      rgba(8, 17, 31, 0) 92%
    ),
    url('/f-assets/beta/img/home-bottom-cta.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center, 68% center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  animation: home-bottom-cta-pulse 2.6s ease-in-out infinite;
  will-change: box-shadow, border-color, transform;
}

@keyframes home-bottom-cta-pulse {
  0%,
  100% {
    transform: scale(1);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  }

  50% {
    transform: scale(1.012);
    border-color: rgba(212, 168, 67, 0.42);
    box-shadow:
      0 30px 72px rgba(0, 0, 0, 0.3),
      0 0 0 1px rgba(212, 168, 67, 0.24),
      0 0 36px rgba(212, 168, 67, 0.2);
  }
}

.home-bottom-cta-card__content {
  position: relative;
  z-index: 2;
  padding: 52px 42px 48px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 720px;
}

.home-bottom-cta-card__media {
  display: none;
}

.home-bottom-cta-section--redesign .home-bottom-cta-card h2 {
  margin: 0 0 18px;
  color: #fff;
  font-family: var(--home-serif);
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.18;
  font-weight: 700;
  text-align: left;
  max-width: none;
}

.home-bottom-cta-section--redesign .home-bottom-cta-card p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--home-sans);
  font-size: clamp(15px, 1.35vw, 17px);
  line-height: 1.65;
  font-weight: 400;
  text-align: left;
  max-width: 620px;
}

.home-bottom-cta-section--redesign .home-bottom-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  flex-wrap: wrap;
}

.home-bottom-cta-section--redesign .home-bottom-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-family: var(--home-sans);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  box-shadow: none !important;
}

.home-bottom-cta-section--redesign .home-bottom-cta-btn i:last-child {
  margin-left: 2px;
  font-size: 13px;
}

.home-bottom-cta-btn--candidate {
  background: var(--home-gold) !important;
  color: #1a1a1a !important;
  border: 1px solid var(--home-gold) !important;
}

.home-bottom-cta-btn--candidate:hover {
  background: var(--home-gold-hover) !important;
  color: #111 !important;
}

.home-bottom-cta-btn--hiring {
  background: rgba(8, 17, 31, 0.55) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.55) !important;
}

.home-bottom-cta-btn--hiring:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.75) !important;
  color: #fff !important;
}

@media (max-width: 991.98px) {
  .home-bottom-cta-section--redesign {
    padding: 40px 0;
  }

  .home-bottom-cta-card {
    min-height: 420px;
    background-image:
      linear-gradient(
        180deg,
        rgba(8, 17, 31, 0.98) 0%,
        rgba(8, 17, 31, 0.96) 42%,
        rgba(8, 17, 31, 0.72) 62%,
        rgba(8, 17, 31, 0.25) 100%
      ),
      url('/f-assets/beta/img/home-bottom-cta.jpg');
    background-size: cover;
    background-position: center, center 72%;
  }

  .home-bottom-cta-card__content {
    padding: 36px 28px 40px;
  }
}

@media (max-width: 575.98px) {
  .home-bottom-cta-section--redesign .home-bottom-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .home-bottom-cta-section--redesign .home-bottom-cta-btn {
    width: 100%;
  }
}

.footer-redesign--v3 {
  background: #050b14 !important;
  padding: 72px 0 28px !important;
  font-family: var(--home-sans, "Segoe UI", sans-serif);
}

.footer-redesign--v3 .footer-redesign-container {
  max-width: 1240px;
}

.footer-redesign--v3 .footer-brand-block {
  padding-right: 24px;
}

.footer-redesign--v3 .footer-brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  margin-bottom: 22px;
}

.footer-redesign--v3 .footer-brand-emblem {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex: 0 0 56px;
}

.footer-redesign--v3 .footer-brand-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-redesign--v3 .footer-brand-name {
  color: #fff;
  font-family: var(--home-serif, Georgia, serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.4px;
  line-height: 1.1;
}

.footer-redesign--v3 .footer-brand-tagline {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.4px;
  line-height: 1.3;
  text-transform: uppercase;
}

.footer-redesign--v3 h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 18px;
  font-family: var(--home-sans, "Segoe UI", sans-serif);
}

.footer-redesign--v3 .footer-links-block ul li {
  margin-bottom: 12px;
}

.footer-redesign--v3 .footer-links-block ul li a,
.footer-redesign--v3 .footer-contact-row,
.footer-redesign--v3 .footer-contact-row a,
.footer-redesign--v3 .footer-contact-row span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.footer-redesign--v3 .footer-links-block ul li a:hover,
.footer-redesign--v3 .footer-contact-row a:hover {
  color: #fff;
}

.footer-redesign--v3 .footer-socials {
  gap: 8px;
}

.footer-redesign--v3 .footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.footer-redesign--v3 .footer-socials a:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  transform: none;
}

.footer-redesign--v3 .footer-contact-row i {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
}

.footer-redesign--v3 .footer-bottom-bar {
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-redesign--v3 .footer-bottom-left {
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
}

.footer-redesign--v3 .footer-bottom-badge {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.footer-redesign--v3 .footer-bottom-badge i {
  color: var(--home-gold, #d4a843);
  font-size: 13px;
}

.footer-logo-img--white {
  display: none;
}

.footer-redesign--v3 .footer-brand-text {
  display: none;
}

@media (max-width: 991px) {
  .home-value-props-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 0;
    padding: 20px 12px;
  }

  .home-value-prop {
    padding: 10px 14px;
  }

  .home-value-prop:nth-child(odd)::after {
    display: none;
  }

  .home-value-prop:nth-child(1)::after,
  .home-value-prop:nth-child(3)::after {
    display: block;
  }

  .home-value-prop:nth-child(2)::after {
    display: none;
  }

  .home-insights-grid {
    grid-template-columns: 1fr;
  }

  .home-our-mission-image-frame img {
    height: 300px;
  }
}

@media (max-width: 991.98px) {
  .navbar-main.mobile-offcanvas {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: auto !important;
    width: min(82%, 340px);
    height: 100% !important;
    z-index: 1200 !important;
    background: rgba(8, 17, 31, 0.98) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    overflow-x: hidden;
    overflow-y: auto;
  }

  .navbar-main.mobile-offcanvas ul li a,
  .navbar-main.mobile-offcanvas .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
  }

  .navbar-main.mobile-offcanvas ul li a.global-login-btn,
  .navbar-main.mobile-offcanvas .nav-link.global-login-btn {
    color: #1a1a1a !important;
  }

  .navbar-main.mobile-offcanvas ul li a:hover,
  .navbar-main.mobile-offcanvas .nav-link:hover {
    color: var(--home-gold-soft) !important;
  }

  .navbar-main.mobile-offcanvas .dropdown-menu {
    position: static !important;
    transform: none !important;
    inset: auto !important;
    float: none;
    width: 100%;
    margin: 0 0 8px 12px !important;
    padding: 0;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .navbar-main.mobile-offcanvas .dropdown-menu.show {
    display: block !important;
  }

  .navbar-main.mobile-offcanvas .dropdown-item {
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 8px 0 !important;
    background: transparent !important;
  }

  .navbar-main.mobile-offcanvas .dropdown-item:hover,
  .navbar-main.mobile-offcanvas .dropdown-item:focus {
    color: var(--home-gold-soft) !important;
    background: transparent !important;
  }

  /* Language switcher: override desktop dark text on light dropdown */
  body:has(#home-page) .navbar-main.mobile-offcanvas .flag-dropdown-list,
  .navbar-main.mobile-offcanvas .flag-dropdown-list {
    margin-left: 0 !important;
    padding-left: 8px !important;
    border-left: 2px solid rgba(212, 168, 67, 0.45);
  }

  body:has(#home-page) .navbar-main.mobile-offcanvas .flag-dropdown-list > li,
  .navbar-main.mobile-offcanvas .flag-dropdown-list > li {
    border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
  }

  body:has(#home-page) .navbar-main.mobile-offcanvas .flag-dropdown-list > li:first-child,
  .navbar-main.mobile-offcanvas .flag-dropdown-list > li:first-child {
    border-top: 0 !important;
  }

  body:has(#home-page) .navbar-main.mobile-offcanvas .flag-dropdown-list .dropdown-item,
  .navbar-main.mobile-offcanvas .flag-dropdown-list .dropdown-item {
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    padding: 10px 8px !important;
    opacity: 1 !important;
  }

  body:has(#home-page) .navbar-main.mobile-offcanvas .flag-dropdown-list .dropdown-item:hover,
  body:has(#home-page) .navbar-main.mobile-offcanvas .flag-dropdown-list .dropdown-item:focus,
  .navbar-main.mobile-offcanvas .flag-dropdown-list .dropdown-item:hover,
  .navbar-main.mobile-offcanvas .flag-dropdown-list .dropdown-item:focus {
    color: var(--home-gold-soft) !important;
    background: rgba(255, 255, 255, 0.06) !important;
  }

  body:has(#home-page) .navbar-main.mobile-offcanvas .flag-dropdown .parent-title,
  body:has(#home-page) .navbar-main.mobile-offcanvas .flag-dropdown .fa-chevron-down,
  .navbar-main.mobile-offcanvas .flag-dropdown .parent-title,
  .navbar-main.mobile-offcanvas .flag-dropdown .fa-chevron-down {
    color: #ffffff !important;
  }

  .navbar-main.mobile-offcanvas .flag-dropdown-list .flag-icon {
    width: 22px;
    height: 16px;
    margin-right: 8px;
    vertical-align: -2px;
  }

  .screen-darken.active {
    z-index: 1100 !important;
  }

  .home-hero-redesign__video {
    display: none;
  }

  .home-hero-redesign__poster {
    display: block;
    object-fit: contain;
    object-position: center center;
  }

  .home-hero-redesign {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    align-items: start;
    min-height: auto;
    padding-bottom: 40px;
  }

  .home-hero-redesign__media {
    grid-row: 1;
    grid-column: 1;
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 16 / 9;
    z-index: 0;
  }

  .home-hero-redesign__video-slot {
    position: absolute;
    inset: 0;
    height: 100%;
  }

  .home-hero-redesign__poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .home-hero-redesign__overlay {
    background: linear-gradient(
      180deg,
      rgba(8, 17, 31, 0.42) 0%,
      rgba(8, 17, 31, 0.18) 42%,
      rgba(8, 17, 31, 0.62) 100%
    );
  }

  .home-hero-redesign__content {
    display: contents;
  }

  .home-hero-redesign__kicker {
    grid-row: 1;
    grid-column: 1;
    align-self: start;
    justify-self: center;
    z-index: 2;
    margin: 0;
    padding-top: 20px;
  }

  .home-hero-redesign__title {
    grid-row: 1;
    grid-column: 1;
    align-self: start;
    justify-self: center;
    z-index: 2;
    width: calc(100% - 30px);
    max-width: 520px;
    margin: 0;
    padding-top: 22%;
    font-size: clamp(30px, 8.5vw, 42px);
    line-height: 1.1;
  }

  .home-hero-redesign__description {
    grid-row: 1;
    grid-column: 1;
    align-self: start;
    justify-self: center;
    z-index: 2;
    width: calc(100% - 30px);
    max-width: 520px;
    margin: 0;
    padding-top: 58%;
    font-size: 15px;
    line-height: 1.65;
  }

  .home-hero-redesign__actions {
    grid-row: 2;
    grid-column: 1;
    justify-self: center;
    z-index: 2;
    width: calc(100% - 30px);
    margin: 24px 0 0;
    padding: 0 15px;
  }

  .home-hero-redesign__tagline {
    grid-row: 3;
    grid-column: 1;
    justify-self: center;
    z-index: 2;
    margin: 18px 0 0;
    padding: 0 15px;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .home-audience-section,
  .home-value-props-section,
  .home-symbols-section,
  .home-services-section,
  .home-insights-testimonial-section,
  .home-our-mission-section {
    padding: 32px 0;
  }

  .home-value-props-bar {
    grid-template-columns: 1fr;
  }

  .home-value-prop::after {
    display: none !important;
  }

  .home-audience-card {
    min-height: 320px;
  }

  .home-our-mission-panel,
  .home-testimonial-panel {
    padding: 24px 20px;
  }

  .home-insight-card__image {
    height: 180px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-bottom-cta-card {
    animation: none;
  }

  .home-hero-redesign__video {
    display: none;
  }

  .home-hero-redesign__poster {
    display: block;
    object-fit: contain;
    object-position: center center;
  }

  .home-hero-redesign__video-slot {
    background: var(--home-navy);
  }
}