@charset "UTF-8";
:root {
  --sc-color-primary: #CC0000;
  --sc-color-primary-hover: #AA0000;
  --sc-color-primary-rgb: 204, 0, 0;
  --sc-color-black: #0A0A0A;
  --sc-color-dark: #1A1A1A;
  --sc-color-grey-dark: #333333;
  --sc-color-grey-mid: #666666;
  --sc-color-grey-light: #F5F5F5;
  --sc-color-white: #FFFFFF;
  --sc-container-width: 1280px;
  --sc-container-padding: 24px;
  --sc-font-primary: Helvetica Neue, Helvetica, Arial, sans-serif;
  --sc-font-heading: Helvetica Neue, Helvetica, Arial, sans-serif;
  --sc-font-body: Helvetica Neue, Helvetica, Arial, sans-serif;
  --sc-font-weight-black: 900;
  --sc-font-size-base: 16px;
  --sc-text-xs: 12px;
  --sc-text-sm: 14px;
  --sc-text-base: 16px;
  --sc-text-lg: 1.125rem;
  --sc-text-xl: 24px;
  --sc-text-2xl: clamp(20px, 2.5vw, 32px);
  --sc-text-3xl: clamp(28px, 3.5vw, 48px);
  --sc-text-4xl: clamp(40px, 5vw, 64px);
  --sc-text-display: clamp(64px, 9vw, 140px);
  --sc-spacing-xs: 8px;
  --sc-spacing-sm: 16px;
  --sc-spacing-md: 24px;
  --sc-spacing-lg: 48px;
  --sc-spacing-xl: 80px;
  --sc-spacing-xxl: 120px;
  --sc-radius-sm: 4px;
  --sc-radius-md: 8px;
  --sc-radius-lg: 16px;
  --sc-transition: all 0.25s ease;
  --sc-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --sc-shadow-md: 0 4px 24px rgba(0, 0, 0, 0.12);
  --sc-shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.18);
  --sc-header-height: 76px;
  --sc-header-height-mobile: 64px;
  --sc-header-island-gap: 14px;
  --sc-header-island-gap-mobile: 10px;
  --sc-radius-pill: 100px;
}

html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: var(--sc-font-primary);
  font-size: var(--sc-font-size-base);
  color: var(--sc-color-grey-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--sc-color-primary);
  transition: var(--sc-transition);
  text-decoration: none;
}
a:hover {
  color: var(--sc-color-primary-hover);
}

.sc-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sc-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  padding: 14px 0;
  will-change: transform;
  pointer-events: none;
}
.sc-header.sc-header--scrolled .sc-header__island {
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.sc-header__island {
  width: 99%;
  max-width: 1600px;
  margin: 0 auto;
  height: 76px;
  display: flex;
  align-items: center;
  padding: 0 48px 0 24px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  transition: box-shadow 0.35s ease;
  pointer-events: all;
}

.sc-header__inner {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
}

.sc-header__logo {
  flex-shrink: 0;
}
.sc-header__logo a {
  display: block;
  line-height: 0;
}
.sc-header__logo img {
  height: 40px;
  width: auto;
  display: block;
  transition: opacity 0.2s ease;
}
.sc-header__logo a:hover img {
  opacity: 0.85;
}

.sc-header__nav {
  flex: 1;
  min-width: 0;
  display: flex;
  justify-content: center;
  overflow: visible;
}

.sc-header__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 2px;
}
.sc-header__menu > li {
  position: relative;
}
.sc-header__menu > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 13px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #333333;
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
  border-radius: 4px;
  transition: color 0.22s ease;
}
.sc-header__menu > li > a > span {
  position: relative;
}
.sc-header__menu > li > a > span::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  right: 50%;
  height: 1.5px;
  background: #CC0000;
  border-radius: 2px;
  transition: left 0.25s cubic-bezier(0.4, 0, 0.2, 1), right 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.sc-header__menu > li > a:hover {
  color: #CC0000;
}
.sc-header__menu > li > a:hover > span::after {
  left: 0;
  right: 0;
}
.sc-header__menu > li.current-menu-item > a, .sc-header__menu > li.current-menu-ancestor > a, .sc-header__menu > li.current-page-ancestor > a {
  color: #CC0000;
}
.sc-header__menu > li.current-menu-item > a > span::after, .sc-header__menu > li.current-menu-ancestor > a > span::after, .sc-header__menu > li.current-page-ancestor > a > span::after {
  left: 0;
  right: 0;
}
.sc-header__menu > li > .sub-menu {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 180px;
  background: #FFFFFF;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
  z-index: 10;
}
.sc-header__menu > li > .sub-menu li a {
  display: block;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 400;
  color: #333333;
  text-decoration: none;
  transition: color 0.18s ease, background 0.18s ease;
}
.sc-header__menu > li > .sub-menu li a:hover {
  color: #CC0000;
  background: rgba(204, 0, 0, 0.04);
  padding-left: 20px;
}
.sc-header__menu > li:hover > .sub-menu, .sc-header__menu > li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.sc-header__menu > li.sc-nav-pinned > a {
  font-weight: 700;
}
.sc-header__menu > li.sc-nav-pinned > a::before {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12.9511 8.59515L12.5875 8.23781C11.069 6.7455 10.3098 5.99934 9.48673 6C9.21786 6.00021 8.95184 6.05411 8.70481 6.15843C7.94859 6.47775 7.55155 7.45818 6.75747 9.41903L6.70001 9.56094C6.47489 10.1168 6.36233 10.3948 6.18157 10.619C6.04444 10.7891 5.87938 10.9356 5.6932 11.0523C5.44779 11.2061 5.15496 11.2878 4.5693 11.4511C3.66115 11.7045 3.20707 11.8311 3.00555 12.1012C2.8558 12.302 2.7898 12.5514 2.82108 12.7984C2.86316 13.1307 3.19693 13.4588 3.86446 14.1148L4.88148 15.1143L5.92632 16.1412L5.94409 16.1586L6.97115 17.168C7.63868 17.8241 7.97244 18.1521 8.31063 18.1934C8.56197 18.2242 8.81575 18.1593 9.02 18.0121C9.29483 17.8141 9.42371 17.3678 9.68146 16.4753C9.84768 15.8997 9.9308 15.6119 10.0873 15.3708C10.2061 15.1878 10.3551 15.0256 10.5282 14.8908C10.7563 14.7132 11.0391 14.6025 11.6048 14.3813L11.7492 14.3248C13.7444 13.5444 14.742 13.1542 15.0669 12.411C15.173 12.1682 15.2279 11.9068 15.2281 11.6425C15.2287 10.8336 14.4695 10.0875 12.9511 8.59515Z' fill='%23CC0000'/%3E%3Cpath opacity='0.5' d='M3.2706 18.7857L5.94386 16.1586L5.92608 16.1411L4.88125 15.1143L2.218 17.7512C1.92733 18.0369 1.92733 18.5 2.218 18.7857C2.50867 19.0714 2.97993 19.0714 3.2706 18.7857Z' fill='%23CC0000'/%3E%3Cg opacity='0.5'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M22.0003 8.37699C22.0003 8.78098 21.667 9.10848 21.256 9.10848H16.294C15.8829 9.10848 15.5497 8.78098 15.5497 8.37699C15.5497 7.97301 15.8829 7.64551 16.294 7.64551H21.256C21.667 7.64551 22.0003 7.97301 22.0003 8.37699Z' fill='%23CC0000'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M22.0003 12.7659C22.0003 13.1699 21.667 13.4974 21.256 13.4974H17.2864C16.8753 13.4974 16.5421 13.1699 16.5421 12.7659C16.5421 12.3619 16.8753 12.0344 17.2864 12.0344H21.256C21.667 12.0344 22.0003 12.3619 22.0003 12.7659Z' fill='%23CC0000'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M22.0003 17.1548C22.0003 17.5588 21.667 17.8863 21.256 17.8863H12.3244C11.9133 17.8863 11.5801 17.5588 11.5801 17.1548C11.5801 16.7508 11.9133 16.4234 12.3244 16.4234H21.256C21.667 16.4234 22.0003 16.7508 22.0003 17.1548Z' fill='%23CC0000'/%3E%3C/g%3E%3C/svg%3E") center/contain no-repeat;
  animation: sc-pin-pulse 2.4s ease-in-out 1.5s 3;
}

@keyframes sc-pin-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.45);
  }
}
.sc-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.sc-header__actions-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.sc-header__actions-menu li {
  margin: 0;
  padding: 0;
}

.sc-header__lang {
  position: relative;
}

.sc-header__lang-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  background: none;
  border: 1px solid transparent;
  border-radius: 100px;
  cursor: pointer;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #666666;
  letter-spacing: 0.04em;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.sc-header__lang-toggle:hover, .sc-header__lang-toggle[aria-expanded=true] {
  color: #333333;
  background: #F5F5F5;
  border-color: rgba(0, 0, 0, 0.06);
}
.sc-header__lang-toggle .sc-header__lang-chevron {
  transition: transform 0.22s ease;
}
.sc-header__lang-toggle[aria-expanded=true] .sc-header__lang-chevron {
  transform: rotate(180deg);
}

.sc-header__lang-icon {
  color: #666666;
}

.sc-header__lang-dropdown {
  list-style: none;
  margin: 0;
  padding: 6px 0;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 140px;
  background: #FFFFFF;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
  z-index: 20;
}
.sc-header__lang-dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.sc-header__lang-dropdown li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #333333;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.18s ease, background 0.18s ease;
}
.sc-header__lang-dropdown li a::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0;
  transition: opacity 0.18s ease;
}
.sc-header__lang-dropdown li a:hover {
  color: #CC0000;
  background: rgba(204, 0, 0, 0.04);
}
.sc-header__lang-dropdown li a:hover::before {
  opacity: 1;
}

.sc-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: 100px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.18s ease;
}
.sc-btn:hover {
  transform: translateY(-1px);
}
.sc-btn:active {
  transform: translateY(0);
}

.sc-btn--ghost {
  background: transparent;
  border: 1.5px solid rgba(204, 0, 0, 0.4);
  color: #333333;
}
.sc-btn--ghost:hover {
  background: rgba(204, 0, 0, 0.06);
  border-color: #CC0000;
  color: #CC0000;
  box-shadow: 0 2px 12px rgba(204, 0, 0, 0.12);
}

.sc-btn--primary {
  background: #CC0000;
  border: 1.5px solid #CC0000;
  color: #FFFFFF;
  box-shadow: 0 2px 12px rgba(204, 0, 0, 0.22);
}
.sc-btn--primary svg {
  transition: transform 0.22s ease;
}
.sc-btn--primary:hover {
  background: #AA0000;
  border-color: #AA0000;
  box-shadow: 0 4px 20px rgba(204, 0, 0, 0.32);
  color: #FFFFFF;
}
.sc-btn--primary:hover svg {
  transform: translateX(3px);
}

body {
  padding-top: calc((76px + 14px * 2) / 2);
}

.sc-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.sc-nav-toggle:hover {
  background: #F5F5F5;
  border-color: rgba(0, 0, 0, 0.06);
}
.sc-nav-toggle__bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #333333;
  border-radius: 2px;
  pointer-events: none;
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.22s ease, width 0.22s ease;
}

@media (max-width: 1023px) {
  .sc-header {
    padding: 10px 0;
  }
  .sc-header__island {
    flex-direction: column;
    align-items: stretch;
    height: auto;
    min-height: 64px;
    padding: 0 16px;
  }
  .sc-header__inner {
    height: 64px;
    flex-shrink: 0;
    justify-content: space-between;
    gap: 8px;
  }
  .sc-header__logo img {
    height: 32px;
  }
  #sc-header .sc-header__nav,
  #sc-header .sc-header__lang,
  #sc-header .sc-header__cta-secondary,
  #sc-header .sc-header__cta-primary {
    display: none;
  }
  .sc-nav-toggle {
    display: flex;
  }
  .sc-nav-toggle[aria-expanded=true] .sc-nav-toggle__bar:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }
  .sc-nav-toggle[aria-expanded=true] .sc-nav-toggle__bar:nth-child(2) {
    opacity: 0;
    width: 0;
  }
  .sc-nav-toggle[aria-expanded=true] .sc-nav-toggle__bar:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }
  body {
    padding-top: calc((64px + 10px * 2) / 2);
  }
}
.sc-mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 9999;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
.sc-mobile-backdrop.is-open {
  pointer-events: auto;
}

.sc-mobile-menu {
  display: none;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .sc-mobile-menu {
    padding: 0 0 16px;
  }
  .sc-mobile-menu__divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.07);
    margin: 0 0 8px;
  }
  .sc-mobile-menu__items {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .sc-mobile-menu__items > li > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #333333;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    letter-spacing: 0.01em;
  }
  .sc-mobile-menu__items > li > a::after {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    border-right: 1.5px solid #666666;
    border-top: 1.5px solid #666666;
    transform: rotate(45deg);
    flex-shrink: 0;
    margin-right: 2px;
  }
  .sc-mobile-menu__items > li > a:hover {
    color: #CC0000;
  }
  .sc-mobile-menu__items > li > a:hover::after {
    border-color: #CC0000;
  }
  .sc-mobile-menu__items > li.current-menu-item > a,
  .sc-mobile-menu__items > li.current-menu-ancestor > a,
  .sc-mobile-menu__items > li.current-page-ancestor > a {
    color: #CC0000;
  }
  .sc-mobile-menu__items > li.current-menu-item > a::after,
  .sc-mobile-menu__items > li.current-menu-ancestor > a::after,
  .sc-mobile-menu__items > li.current-page-ancestor > a::after {
    border-color: #CC0000;
  }
  .sc-mobile-menu__ctas {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 24px;
  }
  .sc-mobile-menu__actions-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .sc-mobile-menu__actions-menu li {
    margin: 0;
    padding: 0;
  }
  .sc-mobile-menu__actions-menu .sc-btn {
    width: 100%;
    justify-content: center;
  }
  .sc-btn--full {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    font-size: 14px;
  }
  .sc-mobile-menu__lang {
    display: flex;
    align-items: center;
    gap: 6px;
    padding-top: 16px;
    margin-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
  }
  .sc-mobile-menu__lang-label {
    display: flex;
    align-items: center;
    color: #666666;
    margin-right: 2px;
  }
  .sc-mobile-menu__lang-sep {
    color: rgba(0, 0, 0, 0.2);
    font-size: 11px;
    line-height: 1;
  }
  .sc-mobile-menu__lang-link {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: #666666;
    text-decoration: none;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.18s ease;
  }
  .sc-mobile-menu__lang-link:hover {
    color: #CC0000;
  }
  .sc-mobile-menu__lang-link.is-active {
    color: #333333;
    font-weight: 700;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .sc-header__island {
    padding: 0 16px;
  }
  .sc-header__logo img {
    height: 36px;
  }
  .sc-header__actions {
    gap: 6px;
  }
  .sc-header__menu > li > a {
    padding: 8px 8px;
    font-size: 12px;
  }
  .sc-btn {
    padding: 7px 12px;
    font-size: 11px;
    gap: 4px;
  }
  .sc-btn svg {
    width: 12px;
    height: 12px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .sc-header__island {
    padding: 0 16px;
  }
  .sc-header__logo img {
    height: 32px;
  }
  .sc-header__actions {
    gap: 4px;
  }
  .sc-header__menu {
    gap: 0;
  }
  .sc-header__menu > li > a {
    padding: 7px 6px;
    font-size: 11px;
  }
  .sc-header__lang-toggle {
    padding: 5px 6px;
    font-size: 11px;
    gap: 3px;
  }
  .sc-btn {
    padding: 6px 10px;
    font-size: 10px;
    gap: 3px;
    border-width: 1px;
  }
  .sc-btn svg {
    width: 10px;
    height: 10px;
  }
}
@media (max-width: 1023px) and (max-height: 699px) {
  .sc-mobile-menu {
    padding-bottom: 8px;
  }
  .sc-mobile-menu__divider {
    margin-bottom: 2px;
  }
  .sc-mobile-menu__items > li > a {
    padding: 9px 0;
    font-size: 13px;
  }
  .sc-mobile-menu__ctas {
    padding-top: 10px;
    gap: 4px;
  }
  .sc-btn--full {
    padding: 8px 20px;
    font-size: 13px;
  }
  .sc-mobile-menu__lang {
    padding-top: 6px;
    margin-top: 6px;
  }
}
.sc-emp-hero {
  position: relative;
  width: 100%;
  padding: 80px 0;
  background: #CC0000;
  overflow: hidden;
  text-align: center;
}

.sc-emp-hero__orb {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
}

.sc-emp-hero__orb--a {
  top: -200px;
  left: -120px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.sc-emp-hero__orb--b {
  bottom: -200px;
  right: -120px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
}

.sc-emp-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.sc-emp-hero__eyebrow {
  display: inline-block;
  font-family: var(--sc-font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #CC0000;
  background: #FFFFFF;
  border-radius: 100px;
  padding: 6px 16px;
  line-height: 1;
}

.sc-emp-hero__headline {
  font-family: var(--sc-font-heading);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #FFFFFF;
  margin: 0;
}
.sc-emp-hero__headline em {
  font-style: italic;
  font-weight: inherit;
}

.sc-emp-hero__sub {
  font-family: var(--sc-font-body);
  font-size: var(--sc-text-lg);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  max-width: 620px;
  margin: 0;
}

@media (max-width: 768px) {
  .sc-emp-hero {
    padding: 48px 0;
  }
  .sc-emp-hero__sub {
    font-size: 16px;
  }
  .sc-emp-hero__orb {
    width: 400px;
    height: 400px;
  }
  .sc-emp-hero__orb--a {
    top: -150px;
    left: -80px;
  }
  .sc-emp-hero__orb--b {
    bottom: -150px;
    right: -80px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .sc-emp-hero__orb {
    display: none;
  }
}
.sc-vac-hero {
  background-color: #FFFFFF;
  overflow: hidden;
  width: 100%;
}
.sc-vac-hero__inner {
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1280px;
  margin-inline: auto;
  padding: 120px 24px;
}
@media (max-width: 1023px) {
  .sc-vac-hero__inner {
    flex-direction: column;
    gap: 48px;
    padding: 80px 24px;
  }
}
.sc-vac-hero__content {
  flex: 0 0 50%;
  max-width: 50%;
}
@media (max-width: 1023px) {
  .sc-vac-hero__content {
    flex: unset;
    max-width: 100%;
    order: 2;
    text-align: center;
  }
}
.sc-vac-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #CC0000;
  margin-bottom: 16px;
}
.sc-vac-hero__eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  background-color: #CC0000;
  flex-shrink: 0;
}
@media (max-width: 1023px) {
  .sc-vac-hero__eyebrow::before {
    display: none;
  }
}
.sc-vac-hero__headline {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.15;
  color: #0A0A0A;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 0.05em;
}
.sc-vac-hero__headline-line {
  display: block;
}
.sc-vac-hero__headline-accent {
  display: block;
  color: #CC0000;
}
.sc-vac-hero__sub {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #666666;
  margin: 0 0 48px;
  max-width: 44ch;
}
@media (max-width: 1023px) {
  .sc-vac-hero__sub {
    max-width: none;
    margin-inline: auto;
  }
}
.sc-vac-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  background: #CC0000;
  border: 2px solid #CC0000;
  border-radius: 4px;
  padding: 14px 28px;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
}
.sc-vac-hero__cta:hover, .sc-vac-hero__cta:focus-visible {
  background: #AA0000;
  border-color: #AA0000;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}
.sc-vac-hero__cta-arrow {
  display: inline-flex;
  align-items: center;
  transition: transform 0.25s ease;
}
.sc-vac-hero__cta-arrow svg {
  display: block;
}
.sc-vac-hero__cta:hover .sc-vac-hero__cta-arrow {
  transform: translateX(4px);
}
.sc-vac-hero__collage {
  flex: 0 0 50%;
  max-width: 50%;
  position: relative;
  min-height: 520px;
}
@media (max-width: 1023px) {
  .sc-vac-hero__collage {
    flex: unset;
    max-width: 100%;
    width: 100%;
    min-height: 360px;
    order: 1;
  }
}
@media (max-width: 480px) {
  .sc-vac-hero__collage {
    min-height: 280px;
  }
}
.sc-vac-hero__collage-bg {
  position: absolute;
  inset-block: 24px;
  inset-inline: 24px;
  border-radius: 16px;
  background-color: #F5F5F5;
  z-index: 0;
}
.sc-vac-hero__img {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}
.sc-vac-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sc-vac-hero__img--main {
  top: 48px;
  left: 24px;
  width: 62%;
  height: calc(100% - 96px);
  z-index: 1;
}
@media (max-width: 1023px) {
  .sc-vac-hero__img--main {
    top: 16px;
    left: 16px;
    width: 58%;
    height: calc(100% - 32px);
  }
}
.sc-vac-hero__img--top {
  top: 0;
  right: 0;
  width: 40%;
  height: 46%;
  z-index: 2;
  border: 4px solid #FFFFFF;
}
@media (max-width: 1023px) {
  .sc-vac-hero__img--top {
    width: 42%;
    height: 42%;
  }
}
.sc-vac-hero__img--bottom {
  bottom: 0;
  left: 24%;
  width: 55%;
  height: 35%;
  z-index: 3;
  border: 4px solid #FFFFFF;
}
@media (max-width: 1023px) {
  .sc-vac-hero__img--bottom {
    left: 20%;
    width: 58%;
    height: 32%;
  }
}

.sc-emp-diff {
  background: #FFFFFF;
  padding: 120px 0 0;
}

.sc-emp-diff__inner {
  max-width: var(--sc-container-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 48px;
  align-items: center;
}

.sc-emp-diff__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.sc-emp-diff__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #CC0000;
  margin: 0;
}

.sc-emp-diff__headline {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  color: #0A0A0A;
  margin: 0;
}

.sc-emp-diff__body {
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  max-width: 52ch;
  margin: 0;
}

.sc-emp-diff__cta {
  display: inline-block;
  padding: 14px 32px;
  background: #CC0000;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.25s ease;
  margin-top: 8px;
}
.sc-emp-diff__cta:hover, .sc-emp-diff__cta:focus-visible {
  background: #AA0000;
  color: #FFFFFF;
}

.sc-emp-diff__media {
  position: relative;
}

.sc-emp-diff__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.18);
  object-fit: cover;
}

.sc-emp-diff__stats {
  max-width: var(--sc-container-width);
  margin: 80px auto 0;
  padding: 48px 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(10, 10, 10, 0.1);
  border-bottom: 1px solid rgba(10, 10, 10, 0.1);
}

.sc-emp-diff__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.sc-emp-diff__stat + .sc-emp-diff__stat {
  border-left: 1px solid rgba(10, 10, 10, 0.1);
}

.sc-emp-diff__stat-num {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  color: #CC0000;
  line-height: 1;
}

.sc-emp-diff__stat-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #666666;
}

.sc-emp-diff__usps {
  background: #F5F5F5;
  margin-top: 0;
}

.sc-emp-diff__usps-inner {
  max-width: var(--sc-container-width);
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.sc-emp-diff__usp {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 24px;
  border-left: 3px solid #CC0000;
}

.sc-emp-diff__usp-title {
  font-size: 24px;
  font-weight: 800;
  color: #0A0A0A;
  margin: 0;
  line-height: 1.15;
}

.sc-emp-diff__usp-body {
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  margin: 0;
}

@media (max-width: 900px) {
  .sc-emp-diff__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .sc-emp-diff__media {
    order: -1;
  }
  .sc-emp-diff__img {
    max-height: 360px;
    object-fit: cover;
    object-position: top;
  }
  .sc-emp-diff__stats {
    gap: 16px;
  }
  .sc-emp-diff__usps-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@media (max-width: 600px) {
  .sc-emp-diff {
    padding-top: 80px;
  }
  .sc-emp-diff__stats {
    grid-template-columns: 1fr;
    border-bottom: none;
  }
  .sc-emp-diff__stat {
    padding: 16px 0;
    border-bottom: 1px solid rgba(10, 10, 10, 0.1);
  }
  .sc-emp-diff__stat + .sc-emp-diff__stat {
    border-left: none;
  }
}
.sc-hero-v2 {
  width: 100%;
  padding: 0 0 120px;
  background: radial-gradient(ellipse at 70% 0%, rgba(204, 0, 0, 0.04) 0%, #FFFFFF 55%);
  overflow: hidden;
}

.sc-hero-v2__head {
  max-width: 1280px;
  margin: 0 auto 48px;
  padding: 80px 24px 0;
  text-align: center;
}

.sc-hero-v2__eyebrow {
  display: inline-block;
  font-family: var(--sc-font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #CC0000;
  border: 1px solid rgba(204, 0, 0, 0.35);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 24px;
  line-height: 1;
}

.sc-hero-v2__headline {
  font-family: var(--sc-font-heading);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: #0A0A0A;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.sc-hero-v2__headline-static {
  display: block;
}

.sc-hero-v2__kinetic {
  display: block;
  color: #CC0000;
  font-style: italic;
  will-change: opacity, transform;
}

.sc-hero-v2__cards {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.sc-hero-v2__card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}
.sc-hero-v2__card:hover {
  transform: translateY(-5px);
}

.sc-hero-v2__card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 80px 48px;
  gap: 16px;
}

.sc-hero-v2__card-eyebrow {
  font-family: var(--sc-font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
}

.sc-hero-v2__card-headline {
  font-family: var(--sc-font-heading);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}

.sc-hero-v2__card-copy {
  font-size: var(--sc-text-lg);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}
.sc-hero-v2__card-copy a {
  color: inherit;
  text-decoration: none;
}

.sc-hero-v2__card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.sc-hero-v2__stat {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 24px 48px;
  min-width: 0;
}

.sc-hero-v2__stat-number {
  font-family: var(--sc-font-heading);
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
}

.sc-hero-v2__stat-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
}

.sc-hero-v2__card--employer {
  background: #FFFFFF;
  border: 1px solid rgba(10, 10, 10, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.sc-hero-v2__card--employer:hover {
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.18);
}
.sc-hero-v2__card--employer .sc-hero-v2__card-eyebrow {
  color: #CC0000;
}
.sc-hero-v2__card--employer .sc-hero-v2__card-headline {
  color: #0A0A0A;
}
.sc-hero-v2__card--employer .sc-hero-v2__card-stats {
  background: #F5F5F5;
  border-top: 1px solid rgba(10, 10, 10, 0.08);
}
.sc-hero-v2__card--employer .sc-hero-v2__stat:first-child {
  border-right: 1px solid rgba(10, 10, 10, 0.08);
}
.sc-hero-v2__card--employer .sc-hero-v2__stat-number {
  color: #CC0000;
}
.sc-hero-v2__card--employer .sc-hero-v2__stat-label {
  color: #666666;
}

.sc-hero-v2 .sc-hero-v2__card--employer .sc-hero-v2__card-copy {
  color: #333333;
  font-family: var(--sc-font-body);
}

.sc-hero-v2__card--candidate {
  background: #CC0000;
}
.sc-hero-v2__card--candidate:hover {
  box-shadow: 0 8px 48px rgba(204, 0, 0, 0.4);
}
.sc-hero-v2__card--candidate .sc-hero-v2__card-eyebrow {
  color: rgba(255, 255, 255, 0.7);
}
.sc-hero-v2__card--candidate .sc-hero-v2__card-headline {
  color: #FFFFFF;
}
.sc-hero-v2__card--candidate .sc-hero-v2__card-stats {
  background: rgba(10, 10, 10, 0.18);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.sc-hero-v2__card--candidate .sc-hero-v2__stat:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.sc-hero-v2__card--candidate .sc-hero-v2__stat-number {
  color: #FFFFFF;
}
.sc-hero-v2__card--candidate .sc-hero-v2__stat-label {
  color: rgba(255, 255, 255, 0.6);
}

.sc-hero-v2 .sc-hero-v2__card--candidate .sc-hero-v2__card-copy {
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--sc-font-body);
}

@media (max-width: 1440px) {
  .sc-hero-v2 {
    padding-bottom: 80px;
  }
  .sc-hero-v2__head {
    padding-top: 48px;
  }
}
@media (max-width: 1280px) {
  .sc-hero-v2__head {
    margin-bottom: 24px;
  }
  .sc-hero-v2__card-body {
    padding: 48px 24px;
  }
  .sc-hero-v2__stat {
    padding: 16px 24px;
  }
}
@media (max-width: 1024px) {
  .sc-hero-v2__card-body {
    padding: 24px 24px;
  }
}
@media (max-width: 768px) {
  .sc-hero-v2 {
    padding-bottom: 80px;
  }
  .sc-hero-v2__head {
    padding-top: calc(76px + 14px + 16px);
    margin-bottom: 24px;
  }
  .sc-hero-v2__cards {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 16px;
  }
  .sc-hero-v2__card-body {
    padding: 24px;
  }
  .sc-hero-v2__card-body .sc-btn {
    display: block;
    width: 100%;
    text-align: center;
  }
  .sc-hero-v2__card:hover {
    transform: none;
  }
}
@media (max-width: 480px) {
  .sc-hero-v2 {
    padding-bottom: 48px;
  }
  .sc-hero-v2__head {
    margin-bottom: 16px;
  }
  .sc-hero-v2__eyebrow {
    font-size: 10px;
    padding: 5px 12px;
  }
  .sc-hero-v2__card-body {
    padding: 16px;
    gap: 8px;
  }
  .sc-hero-v2__card-copy {
    font-size: 16px;
    line-height: 1.6;
  }
  .sc-hero-v2__stat {
    padding: 16px 24px;
  }
  .sc-hero-v2__stat-label {
    font-size: 10px;
    letter-spacing: 0.1em;
  }
}
@media (max-width: 375px) {
  .sc-hero-v2__cards {
    padding: 0 8px;
  }
  .sc-hero-v2__card-body {
    padding: 16px;
  }
  .sc-hero-v2__stat {
    padding: 8px 16px;
  }
}
@media (max-height: 900px) and (min-width: 769px) {
  .sc-hero-v2__head {
    padding-top: 48px;
    margin-bottom: 24px;
  }
}
@media (max-height: 800px) and (min-width: 769px) {
  .sc-hero-v2 {
    padding-bottom: 48px;
  }
  .sc-hero-v2__head {
    padding-top: 24px;
    margin-bottom: 16px;
  }
  .sc-hero-v2__card-body {
    padding: 24px 48px;
  }
  .sc-hero-v2__stat {
    padding: 16px 48px;
  }
}
@media (max-height: 700px) and (min-width: 769px) {
  .sc-hero-v2__head {
    padding-top: 16px;
    margin-bottom: 8px;
  }
  .sc-hero-v2__card-body {
    padding: 16px 48px;
    gap: 8px;
  }
  .sc-hero-v2__stat {
    padding: 8px 48px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .sc-hero-v2__card {
    transition: none;
  }
}
.sc-brand-statement {
  position: relative;
  width: 100%;
  min-height: 540px;
  overflow: hidden;
}
.sc-brand-statement::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--sc-bs-bg);
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;
  z-index: 0;
  transition: transform 0.3s ease;
}
.sc-lang-ar .sc-brand-statement::before {
  transform: scaleX(-1);
}
.sc-brand-statement {
  /*
  &::before {
      content:    '';
      position:   absolute;
      inset:      0;
      background: linear-gradient(
          to right,
          rgba($color-black, 0.72) 0%,
          rgba($color-black, 0.55) 45%,
          rgba($color-black, 0.12) 70%,
          rgba($color-black, 0.00) 100%
      );
      z-index:    1;
  }
  */
}

.sc-brand-statement__inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  max-width: min(1280px, 100%);
}
.sc-brand-statement__inner > * {
  max-width: 52%;
}

.sc-brand-statement__eyebrow {
  display: inline-block;
  font-family: var(--sc-font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 100px;
  padding: 6px 14px;
  line-height: 1;
  backdrop-filter: blur(4px);
}

.sc-brand-statement__headline {
  font-family: var(--sc-font-heading);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #FFFFFF;
  margin: 0;
}

.sc-brand-statement__body {
  font-family: var(--sc-font-body);
  font-size: var(--sc-text-lg);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

.sc-brand-statement__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sc-font-heading);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #FFFFFF;
  text-decoration: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 4px;
  transition: color all 0.25s ease, border-color all 0.25s ease, gap 0.2s ease;
}
.sc-brand-statement__cta:hover {
  color: #FFFFFF;
  border-color: #FFFFFF;
  gap: 16px;
}

.sc-brand-statement__cta-arrow {
  display: inline-block;
  font-style: normal;
  transition: transform 0.2s ease;
}
.sc-brand-statement__cta:hover .sc-brand-statement__cta-arrow {
  transform: translateX(4px);
}

@media (max-width: 1280px) {
  .sc-brand-statement__inner {
    padding: 80px 24px;
  }
  .sc-brand-statement__inner > * {
    max-width: 58%;
  }
}
@media (max-width: 1024px) {
  .sc-brand-statement {
    min-height: 460px;
  }
  .sc-brand-statement__inner {
    padding: 48px 24px;
    gap: 16px;
  }
  .sc-brand-statement__inner > * {
    max-width: 68%;
  }
}
@media (max-width: 768px) {
  .sc-brand-statement {
    min-height: 400px;
  }
  .sc-brand-statement::before {
    background-position: right center;
  }
  .sc-brand-statement {
    /*
    &::before {
        // Full-width near-opaque overlay — no side gradient on narrow screens
        background: rgba($color-black, 0.65);
    }
    */
  }
  .sc-brand-statement__inner {
    padding: 48px 24px;
    gap: 24px;
  }
  .sc-brand-statement__inner > * {
    max-width: 100%;
  }
  .sc-brand-statement__headline {
    font-size: clamp(28px, 6vw, 40px);
  }
}
@media (max-width: 480px) {
  .sc-brand-statement {
    min-height: 360px;
  }
  .sc-brand-statement::before {
    background-position: 75% center;
  }
  .sc-brand-statement__inner {
    padding: 24px 16px;
    gap: 16px;
  }
  .sc-brand-statement__eyebrow {
    font-size: 10px;
    padding: 5px 12px;
  }
  .sc-brand-statement__body {
    font-size: 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .sc-brand-statement__cta {
    transition: none;
  }
  .sc-brand-statement__cta-arrow {
    transition: none;
  }
}
.sc-industries {
  position: relative;
  padding: var(--sc-spacing-xxl) 0;
  background-color: var(--sc-color-white);
  overflow: hidden;
}
.sc-industries::before, .sc-industries::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.sc-industries::before {
  width: 700px;
  height: 700px;
  top: -200px;
  right: -200px;
  background: radial-gradient(circle at center, rgba(var(--sc-color-primary-rgb), 0.07) 0%, rgba(var(--sc-color-primary-rgb), 0) 70%);
}
.sc-industries::after {
  width: 500px;
  height: 500px;
  bottom: -150px;
  left: -150px;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0) 70%);
}

.sc-industries__container {
  position: relative;
  z-index: 1;
  max-width: var(--sc-container-width);
  margin: 0 auto;
  padding: 0 var(--sc-spacing-md);
}

.sc-industries__header {
  text-align: center;
  margin-bottom: var(--sc-spacing-xl);
}

.sc-industries__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sc-font-heading);
  font-size: var(--sc-text-sm);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sc-color-primary);
  margin-bottom: var(--sc-spacing-sm);
}
.sc-industries__eyebrow::before {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background: var(--sc-color-primary);
  flex-shrink: 0;
}

.sc-industries__heading {
  font-family: var(--sc-font-heading);
  font-size: var(--sc-text-4xl);
  font-weight: 700;
  line-height: 1.1;
  color: var(--sc-color-black);
  margin: 0 0 var(--sc-spacing-sm);
}
.sc-industries__heading .sc-accent {
  color: var(--sc-color-primary);
  position: relative;
  display: inline-block;
}
.sc-industries__heading .sc-accent::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--sc-color-primary);
  border-radius: 2px;
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s;
}

.sc-industries--visible .sc-industries__heading .sc-accent::after {
  width: 100%;
}

.sc-industries__desc {
  font-family: var(--sc-font-body);
  font-size: var(--sc-text-lg);
  color: var(--sc-color-grey-mid);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

.sc-industries__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sc-spacing-md);
  margin-bottom: var(--sc-spacing-xl);
}
@media (max-width: 1024px) {
  .sc-industries__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .sc-industries__grid {
    grid-template-columns: 1fr;
    gap: var(--sc-spacing-sm);
  }
}

.sc-industry-card {
  position: relative;
  background: var(--sc-color-white);
  border-radius: var(--sc-radius-lg);
  padding: 36px 28px 32px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: var(--sc-shadow-sm);
  cursor: default;
  overflow: hidden;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.sc-industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(var(--sc-color-primary-rgb), 0.03) 0%, rgba(var(--sc-color-primary-rgb), 0) 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.sc-industry-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 60%;
  height: 2px;
  background: var(--sc-color-primary);
  border-radius: 2px 2px 0 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.sc-industry-card:hover {
  border-color: rgba(var(--sc-color-primary-rgb), 0.18);
  box-shadow: var(--sc-shadow-md);
  transform: translateY(-6px);
}
.sc-industry-card:hover::before {
  opacity: 1;
}
.sc-industry-card:hover::after {
  transform: scaleX(1);
}
.sc-industry-card:hover .sc-industry-card__icon-wrap {
  background: var(--sc-color-primary);
  border-color: var(--sc-color-primary);
  box-shadow: 0 8px 24px rgba(var(--sc-color-primary-rgb), 0.3);
  transform: scale(1.08) translateY(-2px);
}
.sc-industry-card:hover .sc-industry-card__icon {
  color: var(--sc-color-white);
}
.sc-industry-card:hover .sc-industry-card__title {
  color: var(--sc-color-primary);
}

.sc-industry-card__icon-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--sc-spacing-sm);
  border-radius: 50%;
  background: rgba(var(--sc-color-primary-rgb), 0.06);
  border: 1.5px solid rgba(var(--sc-color-primary-rgb), 0.15);
  color: var(--sc-color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sc-industry-card__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  transition: color 0.35s ease;
}

.sc-industry-card__title {
  font-family: var(--sc-font-heading);
  font-size: var(--sc-text-xl);
  font-weight: 600;
  color: var(--sc-color-black);
  margin: 0 0 8px;
  transition: color 0.3s ease;
}

.sc-industry-card__desc {
  font-family: var(--sc-font-body);
  font-size: var(--sc-text-base);
  color: var(--sc-color-grey-mid);
  line-height: 1.55;
  margin: 0;
}

.sc-industries__footer {
  text-align: center;
  padding-top: var(--sc-spacing-md);
}

.sc-industries__parallax-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.sc-parallax-dot {
  position: absolute;
  border-radius: 50%;
  background: rgba(var(--sc-color-primary-rgb), 0.12);
}
.sc-parallax-dot:nth-child(1) {
  width: 12px;
  height: 12px;
  top: 15%;
  left: 8%;
}
.sc-parallax-dot:nth-child(2) {
  width: 8px;
  height: 8px;
  top: 70%;
  left: 15%;
  background: rgba(0, 0, 0, 0.06);
}
.sc-parallax-dot:nth-child(3) {
  width: 18px;
  height: 18px;
  top: 30%;
  right: 10%;
}
.sc-parallax-dot:nth-child(4) {
  width: 6px;
  height: 6px;
  top: 80%;
  right: 20%;
  background: rgba(0, 0, 0, 0.05);
}
.sc-parallax-dot:nth-child(5) {
  width: 10px;
  height: 10px;
  top: 50%;
  left: 50%;
  background: rgba(var(--sc-color-primary-rgb), 0.08);
}

.sc-dual-cta {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  grid-template-rows: 1fr;
  background-color: #CC0000;
  overflow: hidden;
  min-height: 640px;
}

.sc-dual-cta__panel {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.sc-dual-cta__panel:hover .sc-dual-cta__eyebrow {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s ease;
}

.sc-dual-cta__panel-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 48px;
  padding: 120px 80px;
  width: 100%;
}

.sc-dual-cta__panel--employers .sc-dual-cta__panel-inner {
  padding-left: 120px;
  padding-right: 80px;
}

.sc-dual-cta__panel--candidates .sc-dual-cta__panel-inner {
  padding-left: 80px;
  padding-right: 120px;
}

.sc-dual-cta__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.sc-dual-cta__ordinal {
  font-family: var(--sc-font-heading);
  font-size: var(--sc-text-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
  line-height: 1;
}

.sc-dual-cta__meta-rule {
  display: block;
  height: 1px;
  width: 32px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.3);
}

.sc-dual-cta__eyebrow {
  font-family: var(--sc-font-heading);
  font-size: var(--sc-text-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1;
  transition: color 0.3s ease;
}

.sc-dual-cta__headline {
  font-family: var(--sc-font-heading);
  font-size: var(--sc-text-display);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 0;
  pointer-events: none;
}

.sc-dual-cta__line {
  display: block;
  white-space: nowrap;
}

.sc-char {
  display: inline-block;
  will-change: transform, opacity;
}

.sc-dual-cta__body {
  font-family: var(--sc-font-body);
  font-size: var(--sc-text-lg);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  max-width: 400px;
  margin: 0;
}

.sc-dual-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--sc-font-heading);
  font-size: var(--sc-text-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: #FFFFFF;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  border-radius: 4px;
  cursor: pointer;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.sc-dual-cta__btn:hover {
  color: #CC0000;
  background-color: #FFFFFF;
  border-color: #FFFFFF;
  box-shadow: 0 0 40px rgba(10, 10, 10, 0.15);
  text-decoration: none;
}
.sc-dual-cta__btn:hover .sc-dual-cta__btn-icon {
  transform: translateX(5px);
  color: #CC0000;
}
.sc-dual-cta__btn:focus-visible {
  outline: 2px solid #0A0A0A;
  outline-offset: 4px;
}

.sc-dual-cta__btn-label {
  line-height: 1;
}

.sc-dual-cta__btn-icon {
  display: flex;
  align-items: center;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
  color: rgba(255, 255, 255, 0.85);
}
.sc-dual-cta__btn-icon svg {
  width: 100%;
  height: 100%;
}

.sc-dual-cta__divider {
  position: relative;
  z-index: 1;
  width: 100%;
  align-self: stretch;
}

.sc-dual-cta__divider-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.sc-dual-cta__divider-line {
  stroke: rgba(255, 255, 255, 0.55);
}

@media (max-width: 1024px) {
  .sc-dual-cta__panel-inner {
    padding: 80px 48px;
  }
  .sc-dual-cta__panel--employers .sc-dual-cta__panel-inner {
    padding-left: 80px;
    padding-right: 48px;
  }
  .sc-dual-cta__panel--candidates .sc-dual-cta__panel-inner {
    padding-left: 48px;
    padding-right: 80px;
  }
}
@media (max-width: 768px) {
  .sc-dual-cta {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    min-height: unset;
  }
  .sc-dual-cta__panel--employers {
    order: 1;
  }
  .sc-dual-cta__divider {
    order: 2;
  }
  .sc-dual-cta__panel--candidates {
    order: 3;
  }
  .sc-dual-cta__divider {
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .sc-dual-cta__divider::after {
    content: "";
    display: block;
    width: 60px;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
  }
  .sc-dual-cta__divider-svg {
    display: none;
  }
  .sc-dual-cta__panel-inner,
  .sc-dual-cta__panel--employers .sc-dual-cta__panel-inner,
  .sc-dual-cta__panel--candidates .sc-dual-cta__panel-inner {
    padding: 80px 24px;
    gap: 24px;
  }
  .sc-dual-cta__headline {
    font-size: clamp(56px, 14vw, 100px);
    line-height: 0.92;
  }
  .sc-dual-cta__body {
    max-width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .sc-dual-cta__eyebrow,
  .sc-dual-cta__btn,
  .sc-dual-cta__btn-icon {
    transition: none;
  }
}
.sc-wcu {
  background: #FFFFFF;
  padding: 120px 0;
}

.sc-wcu__header {
  max-width: var(--sc-container-width);
  margin: 0 auto;
  padding: 0 24px 80px;
  text-align: center;
}

.sc-wcu__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: var(--sc-text-sm);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #CC0000;
  margin: 0 0 16px;
}
.sc-wcu__eyebrow::before, .sc-wcu__eyebrow::after {
  content: "";
  display: block;
  width: 24px;
  height: 1.5px;
  background: #CC0000;
  flex-shrink: 0;
}

.sc-wcu__heading {
  font-size: var(--sc-text-4xl);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #0A0A0A;
  margin: 0;
}
.sc-wcu__heading .sc-accent {
  color: #CC0000;
}

.sc-wcu__grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 16px;
  height: 680px;
  max-width: var(--sc-container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.sc-wcu__cell {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}

.sc-wcu__col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sc-wcu__cell--minor {
  flex: 1;
}

.sc-wcu__photo {
  position: absolute;
  inset: 0;
  background-color: #D4CBC3;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}
.sc-wcu__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.18) 0%, transparent 35%);
  pointer-events: none;
}
.sc-wcu__cell--minor:first-child .sc-wcu__photo {
  background-color: #C4CDD8;
}
.sc-wcu__cell--minor:last-child .sc-wcu__photo {
  background-color: #C8D3C4;
}

.sc-wcu__cell:hover .sc-wcu__photo {
  transform: scale(1.04);
  filter: brightness(1.07);
}

.sc-wcu__card {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: #FFFFFF;
  padding: 24px 48px 48px;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.55s ease;
}
.sc-wcu__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 48px;
  width: 40px;
  height: 2px;
  background: #CC0000;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.sc-wcu__cell--minor .sc-wcu__card {
  padding: 16px 24px 24px;
}
.sc-wcu__cell--minor .sc-wcu__card::before {
  left: 24px;
}

.sc-wcu__cell:hover .sc-wcu__card {
  transform: translateY(-12px);
  box-shadow: 0 -8px 40px rgba(10, 10, 10, 0.1);
}
.sc-wcu__cell:hover .sc-wcu__card::before {
  width: 72px;
}

.sc-wcu__cell--minor:hover .sc-wcu__card::before {
  width: 52px;
}

.sc-wcu__card-num {
  position: absolute;
  top: 16px;
  right: 48px;
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(10, 10, 10, 0.05);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.sc-wcu__cell--minor .sc-wcu__card-num {
  font-size: clamp(36px, 4.5vw, 60px);
  right: 24px;
}

.sc-wcu__card-label,
.sc-wcu__card-heading,
.sc-wcu__card-body,
.sc-wcu__card-cta {
  position: relative;
  z-index: 1;
}

.sc-wcu__card-label {
  display: block;
  font-size: var(--sc-text-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #CC0000;
  margin: 0 0 8px;
}

.sc-wcu__card-heading {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #0A0A0A;
  margin: 0 0 16px;
}
.sc-wcu__cell--minor .sc-wcu__card-heading {
  font-size: clamp(15px, 1.6vw, 20px);
  margin-bottom: 8px;
}

.sc-wcu__card-body {
  font-size: var(--sc-text-base);
  line-height: 1.6;
  color: #333333;
  margin: 0 0 24px;
}

.sc-wcu__cell--minor .sc-wcu__card-body {
  font-size: var(--sc-text-sm);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin: 0;
  transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease 0.08s, margin 0.45s ease;
}

.sc-wcu__cell--minor:hover .sc-wcu__card-body {
  max-height: 80px;
  opacity: 1;
  margin: 0 0 16px;
}

.sc-wcu__card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--sc-text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #CC0000;
  text-decoration: none;
  transition: color all 0.25s ease, gap all 0.25s ease;
}
.sc-wcu__card-cta:hover {
  color: #AA0000;
  gap: 13px;
  text-decoration: none;
}

.sc-wcu__cta-arrow {
  flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
  .sc-wcu__photo,
  .sc-wcu__card,
  .sc-wcu__card::before,
  .sc-wcu__cell--minor .sc-wcu__card-body {
    transition: none;
  }
  .sc-wcu__cell:hover .sc-wcu__photo {
    transform: none;
    filter: none;
  }
  .sc-wcu__cell:hover .sc-wcu__card {
    transform: none;
    box-shadow: none;
  }
  .sc-wcu__cell--minor .sc-wcu__card-body {
    max-height: none;
    opacity: 1;
    margin: 0 0 8px;
  }
}
@media (max-width: 1440px) {
  .sc-wcu__grid {
    height: 620px;
  }
}
@media (max-width: 1280px) {
  .sc-wcu {
    padding: 80px 0;
  }
  .sc-wcu__grid {
    height: 560px;
  }
  .sc-wcu__card {
    padding: 16px 24px 24px;
  }
  .sc-wcu__card::before {
    left: 24px;
  }
  .sc-wcu__cell--featured .sc-wcu__card {
    padding: 24px 24px 24px;
  }
}
@media (max-width: 1024px) {
  .sc-wcu__grid {
    height: 500px;
  }
  .sc-wcu__card {
    padding: 8px 16px 16px;
  }
  .sc-wcu__card::before {
    left: 16px;
  }
  .sc-wcu__cell--featured .sc-wcu__card {
    padding: 16px 16px 16px;
  }
}
@media (min-width: 1024px) and (max-height: 800px) {
  .sc-wcu__grid {
    height: 500px;
  }
}
@media (min-width: 1024px) and (max-height: 680px) {
  .sc-wcu__grid {
    height: 420px;
  }
  .sc-wcu__card {
    padding: 8px 16px 16px;
  }
}
@media (max-width: 768px) {
  .sc-wcu {
    padding: 80px 0;
  }
  .sc-wcu__header {
    padding-bottom: 48px;
  }
  .sc-wcu__grid {
    grid-template-columns: 1fr;
    height: auto;
    gap: 8px;
  }
  .sc-wcu__cell,
  .sc-wcu__cell--featured,
  .sc-wcu__cell--minor {
    height: auto;
    display: flex;
    flex-direction: column;
  }
  .sc-wcu__photo {
    position: relative;
    height: 220px;
    flex-shrink: 0;
  }
  .sc-wcu__cell--minor .sc-wcu__photo {
    height: 180px;
  }
  .sc-wcu__card {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
  }
  .sc-wcu__col {
    gap: 8px;
  }
  .sc-wcu__cell--minor {
    flex: none;
  }
  .sc-wcu__cell--minor .sc-wcu__card-body {
    max-height: none;
    opacity: 1;
    margin: 0 0 8px;
    transition: none;
  }
  .sc-wcu__cell:hover .sc-wcu__card {
    transform: none;
    box-shadow: none;
  }
  .sc-wcu__cell:hover .sc-wcu__photo {
    transform: none;
    filter: none;
  }
}
@media (max-width: 480px) {
  .sc-wcu__photo {
    height: 200px;
  }
  .sc-wcu__cell--minor .sc-wcu__photo {
    height: 160px;
  }
  .sc-wcu__card,
  .sc-wcu__cell--featured .sc-wcu__card {
    padding: 8px 16px 16px;
  }
  .sc-wcu__card-heading {
    font-size: 17px;
  }
  .sc-wcu__cell--minor .sc-wcu__card-heading {
    font-size: 15px;
  }
}
@media (max-width: 1023px) and (max-height: 500px) {
  .sc-wcu__grid {
    grid-template-columns: 1fr;
    height: auto;
  }
  .sc-wcu__cell--featured .sc-wcu__photo {
    height: 160px;
  }
  .sc-wcu__col {
    flex-direction: row;
    gap: 8px;
  }
  .sc-wcu__cell--minor {
    flex: 1;
  }
  .sc-wcu__cell--minor .sc-wcu__photo {
    height: 120px;
  }
  .sc-wcu__cell--minor .sc-wcu__card-body {
    max-height: none;
    opacity: 1;
    margin: 0 0 8px;
    transition: none;
  }
}
.sc-testimonials {
  position: relative;
  width: 100%;
  background: #F5F1EB;
}

.sc-testimonials__viewport {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.sc-testimonials__header {
  flex-shrink: 0;
  padding: var(--sc-spacing-lg) var(--sc-spacing-xl) var(--sc-spacing-sm);
}

.sc-testimonials__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sc-font-heading);
  font-size: var(--sc-text-sm);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #CC0000;
  margin-bottom: var(--sc-spacing-xs);
  margin-top: 0;
}
.sc-testimonials__eyebrow::before, .sc-testimonials__eyebrow::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: #CC0000;
}

.sc-testimonials__heading {
  font-family: var(--sc-font-heading);
  font-size: var(--sc-text-3xl);
  font-weight: 900;
  line-height: 1.15;
  color: #0A0A0A;
  margin: 0;
}

.sc-testimonials__stage {
  flex: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 0;
}

.sc-testimonials__label {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center center;
  font-family: var(--sc-font-primary);
  font-size: var(--sc-text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.18);
  white-space: nowrap;
  margin: 0;
  margin-left: calc(-1 * var(--sc-spacing-xl));
  z-index: 2;
  pointer-events: none;
}

.sc-testimonials__track {
  display: flex;
  align-items: center;
  gap: var(--sc-spacing-xl);
  padding: 0 var(--sc-spacing-xl);
  will-change: transform;
}

.sc-testimonials__card {
  flex-shrink: 0;
  width: clamp(480px, 62vw, 780px);
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  padding: var(--sc-spacing-md);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  position: relative;
  transform-origin: center center;
  will-change: opacity, transform;
}
@media (max-width: 768px) {
  .sc-testimonials__card {
    width: 85vw;
    padding: var(--sc-spacing-sm);
    scroll-snap-align: center;
  }
}

.sc-testimonials__quote-mark {
  display: block;
  font-family: var(--sc-font-heading);
  font-size: 72px;
  font-weight: 900;
  line-height: 0.75;
  color: #CC0000;
  margin-bottom: var(--sc-spacing-sm);
  user-select: none;
  pointer-events: none;
}
@media (max-width: 768px) {
  .sc-testimonials__quote-mark {
    font-size: 52px;
  }
}

.sc-testimonials__quote {
  margin: 0 0 var(--sc-spacing-md);
  padding: 0;
  border: none;
}
.sc-testimonials__quote p {
  font-family: var(--sc-font-body);
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 400;
  line-height: 1.7;
  color: #333333;
  margin: 0;
}

.sc-testimonials__divider {
  width: 48px;
  height: 2px;
  background: #CC0000;
  margin-bottom: var(--sc-spacing-md);
}

.sc-testimonials__meta {
  display: flex;
  align-items: center;
  gap: var(--sc-spacing-sm);
}

.sc-testimonials__avatar {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0A0A0A;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sc-testimonials__avatar-initials {
  font-family: var(--sc-font-heading);
  font-size: var(--sc-text-sm);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  line-height: 1;
}

.sc-testimonials__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.sc-testimonials__name {
  font-family: var(--sc-font-heading);
  font-size: var(--sc-text-base);
  font-weight: 700;
  color: #0A0A0A;
  display: block;
}

.sc-testimonials__role {
  font-family: var(--sc-font-body);
  font-size: var(--sc-text-sm);
  color: #666666;
  display: block;
}

.sc-testimonials__sector {
  flex-shrink: 0;
  font-family: var(--sc-font-primary);
  font-size: var(--sc-text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #CC0000;
  background: rgba(var(--sc-color-primary-rgb), 0.08);
  border: 1px solid rgba(204, 0, 0, 0.2);
  border-radius: 100px;
  padding: 4px 12px;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .sc-testimonials__sector {
    display: none;
  }
}

.sc-testimonials__progress {
  position: absolute;
  bottom: var(--sc-spacing-md);
  right: var(--sc-spacing-xl);
  display: flex;
  align-items: center;
  gap: var(--sc-spacing-sm);
  z-index: 2;
}

.sc-testimonials__progress-track {
  width: 160px;
  height: 2px;
  background: rgba(0, 0, 0, 0.12);
  border-radius: 2px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .sc-testimonials__progress-track {
    display: none;
  }
}

.sc-testimonials__progress-fill {
  height: 100%;
  width: 25%;
  background: #CC0000;
  border-radius: 2px;
  transform-origin: left center;
  transition: width 0.1s linear;
}

.sc-testimonials__progress-count {
  font-family: var(--sc-font-primary);
  font-size: var(--sc-text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(0, 0, 0, 0.4);
  white-space: nowrap;
}
@media (max-width: 768px) {
  .sc-testimonials__progress-count {
    display: none;
  }
}

@media (max-width: 768px) {
  .sc-testimonials__viewport {
    position: relative;
    height: auto;
  }
  .sc-testimonials__header {
    padding: var(--sc-spacing-md) var(--sc-spacing-md) var(--sc-spacing-sm);
  }
  .sc-testimonials__stage {
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .sc-testimonials__stage::-webkit-scrollbar {
    display: none;
  }
  .sc-testimonials__track {
    padding: var(--sc-spacing-md) var(--sc-spacing-md);
    align-items: stretch;
  }
  .sc-testimonials__card {
    align-self: stretch;
  }
  .sc-testimonials__label {
    display: none;
  }
}
.sc-footer {
  background-color: #CC0000;
  color: #FFFFFF;
  width: 100%;
}
.sc-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}
.sc-footer__brand {
  margin-bottom: 48px;
}
.sc-footer__logo-link {
  display: inline-block;
  margin-bottom: 24px;
}
.sc-footer__logo {
  display: block;
  max-width: 160px;
  height: auto;
  margin: 0 auto;
}
.sc-footer__tagline {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}
.sc-footer__rule {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  margin: 48px 0;
}
.sc-footer__rule--slim {
  margin: 24px 0;
}
.sc-footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 80px;
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}
.sc-footer__col-heading {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 0 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.sc-footer__col-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sc-footer__col-links li {
  margin: 0;
}
.sc-footer__col-links a {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: all 0.25s ease;
  display: inline-block;
}
.sc-footer__col-links a:hover {
  color: #FFFFFF;
  transform: translateX(3px);
}
.sc-footer__contact {
  font-style: normal;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: 24px;
}
.sc-footer__contact a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: all 0.25s ease;
}
.sc-footer__contact a:hover {
  color: #FFFFFF;
}
.sc-footer__dot {
  color: rgba(255, 255, 255, 0.3);
  user-select: none;
}
.sc-footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.sc-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: all 0.25s ease;
  flex-shrink: 0;
}
.sc-footer__social-link svg {
  display: block;
  flex-shrink: 0;
}
.sc-footer__social-link:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.55);
  color: #FFFFFF;
  transform: translateY(-2px);
}
.sc-footer__legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  text-align: left;
}
.sc-footer__copyright {
  flex-shrink: 0;
}
.sc-footer__legal-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.sc-footer__legal-links a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: all 0.25s ease;
}
.sc-footer__legal-links a:hover {
  color: #FFFFFF;
}
.sc-footer__legal-links span {
  color: rgba(255, 255, 255, 0.25);
  user-select: none;
}

@media (max-width: 768px) {
  .sc-footer__inner {
    padding: 48px 24px;
  }
  .sc-footer__nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 48px;
    max-width: 100%;
    text-align: left;
  }
  .sc-footer__col:last-child {
    grid-column: 1/-1;
  }
  .sc-footer__legal {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }
}
@media (max-width: 480px) {
  .sc-footer__inner {
    padding: 48px 24px;
  }
  .sc-footer__logo {
    max-width: 130px;
  }
  .sc-footer__nav {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  .sc-footer__col:last-child {
    grid-column: auto;
  }
  .sc-footer__col-heading {
    text-align: center;
  }
  .sc-footer__col-links {
    align-items: center;
  }
  .sc-footer__col-links a:hover {
    transform: none;
  }
  .sc-footer__contact {
    flex-direction: column;
    gap: 8px;
  }
  .sc-footer__dot {
    display: none;
  }
  .sc-footer__social {
    gap: 8px;
  }
  .sc-footer__social-link {
    width: 44px;
    height: 44px;
  }
}
@keyframes sc-ember-rise {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }
  12% {
    opacity: 0.45;
  }
  88% {
    opacity: 0.2;
  }
  100% {
    transform: translateY(-220px) scale(0.5);
    opacity: 0;
  }
}
@keyframes sc-card-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
@keyframes sc-dot-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(204, 0, 0, 0);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(204, 0, 0, 0.22);
  }
}
.sc-cta-banner__top {
  background-color: #FFFFFF;
  text-align: center;
  padding: 80px 24px 80px;
}
.sc-cta-banner__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #CC0000;
  margin-bottom: 16px;
}
.sc-cta-banner__headline {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  color: #0A0A0A;
  line-height: 1.15;
  margin: 0 0 16px;
}
.sc-cta-banner__headline .sc-accent {
  color: #CC0000;
  position: relative;
  display: inline-block;
}
.sc-cta-banner__headline .sc-accent::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 3px;
  background: #CC0000;
  border-radius: 2px;
  transition: width 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
}
.sc-cta-banner__subheadline {
  font-size: 16px;
  color: #666666;
  margin: 0;
  max-width: 480px;
  margin-inline: auto;
}
.sc-cta-banner__horizon {
  background: linear-gradient(to bottom, transparent 0%, rgba(204, 0, 0, 0.12) 10%, #CC0000 70%, #CC0000 100%);
  position: relative;
  overflow: hidden;
  padding-top: 48px;
}
.sc-cta-banner__orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.sc-cta-banner__orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 72, 20, 0.38) 0%, rgba(204, 0, 0, 0.18) 45%, transparent 72%);
  animation: sc-ember-rise linear infinite;
  will-change: transform, opacity;
}
.sc-cta-banner__orb--1 {
  width: 320px;
  height: 320px;
  bottom: -100px;
  left: 8%;
  animation-duration: 5.6s;
  animation-delay: 0s;
}
.sc-cta-banner__orb--2 {
  width: 260px;
  height: 260px;
  bottom: -80px;
  right: 12%;
  animation-duration: 4.9s;
  animation-delay: 1.9s;
}
.sc-cta-banner__orb--3 {
  width: 210px;
  height: 210px;
  bottom: -60px;
  left: 44%;
  animation-duration: 6.1s;
  animation-delay: 3.3s;
}
.sc-cta-banner__card {
  max-width: 660px;
  margin: 0 auto 0;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 8px 56px rgba(0, 0, 0, 0.28), 0 2px 8px rgba(0, 0, 0, 0.14);
  padding: 48px;
  position: relative;
  z-index: 3;
}
.sc-cta-banner__stage--hidden {
  display: none !important;
}
.sc-cta-banner__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 48px;
}
.sc-cta-banner__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 72px;
}
.sc-cta-banner__step-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #F5F5F5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #666666;
  background: #FFFFFF;
  transition: all 0.25s ease;
}
.sc-cta-banner__step-label {
  font-size: 12px;
  font-weight: 500;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.25s ease;
}
.sc-cta-banner__step-line {
  flex: 1;
  height: 2px;
  background: #F5F5F5;
  margin-top: 14px;
  transition: background all 0.25s ease;
}
.sc-cta-banner__step--active .sc-cta-banner__step-dot {
  background: #CC0000;
  border-color: #CC0000;
  color: #FFFFFF;
}
.sc-cta-banner__step--active .sc-cta-banner__step-label {
  color: #333333;
  font-weight: 700;
}
.sc-cta-banner__step--done .sc-cta-banner__step-dot {
  background: #CC0000;
  border-color: #CC0000;
  color: #FFFFFF;
  font-size: 0;
}
.sc-cta-banner__step--done .sc-cta-banner__step-dot::after {
  content: "";
  display: block;
  width: 10px;
  height: 6px;
  border-left: 2px solid #FFFFFF;
  border-bottom: 2px solid #FFFFFF;
  transform: rotate(-45deg) translateY(-2px);
}
.sc-cta-banner__step--done .sc-cta-banner__step-label {
  color: #CC0000;
}
.sc-cta-banner__step--done ~ .sc-cta-banner__step-line {
  background: #CC0000;
}
.sc-cta-banner__stage-prompt, .sc-cta-banner__form-intro, .sc-cta-banner__bridge {
  font-size: 14px;
  color: #666666;
  margin: 0 0 24px;
  text-align: center;
}
.sc-cta-banner__stage-prompt {
  font-size: 24px;
  font-weight: 700;
  color: #0A0A0A;
  margin-bottom: 24px;
  text-align: center;
}
.sc-cta-banner__intent-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.sc-cta-banner__intent-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px 16px;
  border: 2px solid #F5F5F5;
  border-radius: 8px;
  background: #FFFFFF;
  cursor: pointer;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  transition: all 0.25s ease;
  text-align: center;
  line-height: 1.4;
}
.sc-cta-banner__intent-btn svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  transition: all 0.25s ease;
}
.sc-cta-banner__intent-btn:hover {
  border-color: #CC0000;
  color: #CC0000;
}
.sc-cta-banner__intent-btn--selected {
  border-color: #CC0000;
  background: rgba(204, 0, 0, 0.04);
  color: #CC0000;
}
.sc-cta-banner__intent-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sc-cta-banner__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.sc-cta-banner__field-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.sc-cta-banner__field-group:not(.sc-cta-banner__field-group--half) {
  grid-column: 1/-1;
}
.sc-cta-banner__label {
  font-size: 14px;
  font-weight: 500;
  color: #333333;
}
.sc-cta-banner__input {
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid #E0E0E0;
  border-radius: 4px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: #333333;
  background: #FFFFFF;
  transition: all 0.25s ease;
  appearance: none;
}
.sc-cta-banner__input::placeholder {
  color: #999999;
}
.sc-cta-banner__input:focus {
  outline: none;
  border-color: #CC0000;
  box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.1);
}
.sc-cta-banner__input.sc-invalid {
  border-color: #c53030;
  box-shadow: 0 0 0 3px rgba(197, 48, 48, 0.1);
}
.sc-cta-banner__select-wrap {
  position: relative;
}
.sc-cta-banner__select-wrap::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666666' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}
.sc-cta-banner__select {
  width: 100%;
  padding: 11px 16px;
  padding-right: 36px;
  border: 1.5px solid #E0E0E0;
  border-radius: 4px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: #333333;
  background: #FFFFFF;
  transition: all 0.25s ease;
  appearance: none;
  cursor: pointer;
}
.sc-cta-banner__select:focus {
  outline: none;
  border-color: #CC0000;
  box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.1);
}
.sc-cta-banner__select.sc-invalid {
  border-color: #c53030;
}
.sc-cta-banner__select option[value=""] {
  color: #999999;
}
.sc-cta-banner__form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}
.sc-cta-banner__back-btn {
  background: none;
  border: none;
  padding: 8px 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #666666;
  cursor: pointer;
  transition: all 0.25s ease;
}
.sc-cta-banner__back-btn:hover {
  color: #333333;
}
.sc-cta-banner__next-btn {
  padding: 11px 24px;
  background: #CC0000;
  border: 2px solid #CC0000;
  border-radius: 4px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  cursor: pointer;
  transition: all 0.25s ease;
}
.sc-cta-banner__next-btn:hover {
  background: #AA0000;
  border-color: #AA0000;
}
.sc-cta-banner__preview {
  background: #f0fdf4;
  border-left: 3px solid #25D366;
  border-radius: 4px;
  padding: 16px 24px;
  margin: 0 0 24px;
}
.sc-cta-banner__preview-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #1BA84E;
  margin-bottom: 8px;
}
.sc-cta-banner__preview-label svg {
  width: 14px;
  height: 14px;
  fill: #25D366;
  flex-shrink: 0;
}
.sc-cta-banner__preview-message {
  font-size: 14px;
  color: #333333;
  line-height: 1.6;
  margin: 0;
  font-style: italic;
}
.sc-cta-banner__exit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.sc-cta-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 4px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  text-decoration: none;
  line-height: 1;
}
.sc-cta-banner__btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.sc-cta-banner__btn--whatsapp {
  background: #25D366;
  border: 2px solid #25D366;
  color: #FFFFFF;
}
.sc-cta-banner__btn--whatsapp svg {
  fill: #FFFFFF;
}
.sc-cta-banner__btn--whatsapp:hover {
  background: #1EB857;
  border-color: #1EB857;
  color: #FFFFFF;
}
.sc-cta-banner__btn--submit {
  background: transparent;
  border: 2px solid #D5D5D5;
  color: #333333;
}
.sc-cta-banner__btn--submit:hover {
  border-color: #333333;
  color: #0A0A0A;
}
.sc-cta-banner__candidate {
  text-align: center;
  padding: 8px 0;
}
.sc-cta-banner__candidate-msg {
  font-size: 14px;
  color: #666666;
  margin: 0 0 16px;
  line-height: 1.6;
}
.sc-cta-banner__candidate-cta {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #CC0000;
  text-decoration: none;
  margin-bottom: 24px;
  transition: all 0.25s ease;
}
.sc-cta-banner__candidate-cta:hover {
  color: #AA0000;
}
.sc-cta-banner__btn--loading {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
}
.sc-cta-banner__submit-error {
  font-size: 14px;
  color: #c53030;
  text-align: center;
  margin: 8px 0 0;
  line-height: 1.6;
}
.sc-cta-banner__success {
  text-align: center;
  padding: 48px 24px;
}
.sc-cta-banner__success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(204, 0, 0, 0.08);
  margin: 0 auto 24px;
}
.sc-cta-banner__success-icon svg {
  width: 28px;
  height: 28px;
  stroke: #CC0000;
}
.sc-cta-banner__success-title {
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 800;
  color: #0A0A0A;
  margin: 0 0 8px;
}
.sc-cta-banner__success-body {
  font-size: 16px;
  color: #666666;
  margin: 0;
  line-height: 1.6;
}
.sc-cta-banner__trust {
  text-align: center;
  padding: 48px 24px 48px;
  position: relative;
  z-index: 2;
}
.sc-cta-banner__trust p {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  letter-spacing: 0.06em;
}
.sc-cta-banner__trust::after {
  content: "";
  display: block;
  width: 30%;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
  margin: 24px auto 0;
}
.sc-cta-banner--visible .sc-cta-banner__headline .sc-accent::after {
  width: 100%;
}
.sc-cta-banner--entered .sc-cta-banner__card {
  animation: sc-card-float 4.2s ease-in-out infinite;
}
.sc-cta-banner__step--active .sc-cta-banner__step-dot {
  animation: sc-dot-pulse 2.4s ease-in-out infinite;
}
@media (max-width: 1440px) {
  .sc-cta-banner__top {
    padding: 48px 24px 48px;
  }
}
@media (max-width: 1280px) {
  .sc-cta-banner__top {
    padding: 24px 24px 48px;
  }
  .sc-cta-banner__card {
    padding: 24px;
  }
}
@media (max-width: 1024px) {
  .sc-cta-banner__fields {
    grid-template-columns: 1fr;
  }
  .sc-cta-banner__field-group--half {
    grid-column: 1/-1;
  }
}
@media (max-width: 768px) {
  .sc-cta-banner__top {
    padding-bottom: 48px;
  }
  .sc-cta-banner__horizon {
    padding-left: 16px;
    padding-right: 16px;
  }
  .sc-cta-banner__card {
    margin-top: 0;
    border-radius: 8px;
    padding: 24px;
  }
  .sc-cta-banner__intent-wrap {
    grid-template-columns: 1fr;
  }
  .sc-cta-banner__fields {
    grid-template-columns: 1fr;
  }
  .sc-cta-banner__fields-group--half {
    grid-column: 1/-1;
  }
  .sc-cta-banner__field-group--half {
    grid-column: 1/-1;
  }
  .sc-cta-banner__exit {
    grid-template-columns: 1fr;
  }
  .sc-cta-banner__form-footer {
    flex-direction: row;
  }
}
@media (max-width: 480px) {
  .sc-cta-banner__top {
    padding: 48px 24px 48px;
  }
  .sc-cta-banner__card {
    padding: 16px;
  }
  .sc-cta-banner__steps {
    gap: 0;
  }
  .sc-cta-banner__step {
    min-width: 56px;
  }
  .sc-cta-banner__step-label {
    font-size: 10px;
  }
}
@media (max-width: 375px) {
  .sc-cta-banner__card {
    padding: 8px 16px;
  }
  .sc-cta-banner__step-label {
    display: none;
  }
  .sc-cta-banner__step {
    min-width: 32px;
  }
  .sc-cta-banner__stage-prompt {
    font-size: 16px;
  }
  .sc-cta-banner__intent-btn {
    padding: 16px 8px;
    font-size: 14px;
  }
  .sc-cta-banner__btn {
    padding: 11px 16px;
    font-size: 14px;
  }
}
@media (max-height: 900px) {
  .sc-cta-banner__top {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
@media (max-height: 768px) {
  .sc-cta-banner__top {
    padding-top: 16px;
    padding-bottom: 24px;
  }
  .sc-cta-banner__horizon {
    padding-top: 24px;
  }
  .sc-cta-banner__trust {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
@media (max-height: 600px) {
  .sc-cta-banner__top {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .sc-cta-banner__horizon {
    padding-top: 16px;
  }
  .sc-cta-banner__trust {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}

.sc-emp-cta {
  background-color: #F5F5F5;
  padding: 120px 24px;
}
.sc-emp-cta__hidden {
  display: none !important;
}
.sc-emp-cta__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
}
.sc-emp-cta__left {
  padding-right: 48px;
}
.sc-emp-cta__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #CC0000;
  margin-bottom: 16px;
}
.sc-emp-cta__headline {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  color: #0A0A0A;
  line-height: 1.15;
  margin: 0 0 16px;
}
.sc-emp-cta__subheadline {
  font-size: 16px;
  color: #666666;
  line-height: 1.6;
  margin: 0 0 48px;
  max-width: 400px;
}
.sc-emp-cta__stats {
  display: flex;
  gap: 48px;
  margin-bottom: 24px;
}
.sc-emp-cta__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sc-emp-cta__stat-num {
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 800;
  color: #CC0000;
  line-height: 1;
}
.sc-emp-cta__stat-lbl {
  font-size: 12px;
  font-weight: 500;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.sc-emp-cta__trust {
  font-size: 12px;
  color: #666666;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid #E0E0E0;
}
.sc-emp-cta__right {
  display: flex;
  align-items: stretch;
}
.sc-emp-cta__card {
  width: 100%;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
  padding: 48px;
}
.sc-emp-cta__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.sc-emp-cta__field-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.sc-emp-cta__label {
  font-size: 14px;
  font-weight: 500;
  color: #333333;
}
.sc-emp-cta__input {
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid #E0E0E0;
  border-radius: 4px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: #333333;
  background: #FFFFFF;
  transition: all 0.25s ease;
  appearance: none;
}
.sc-emp-cta__input::placeholder {
  color: #999999;
}
.sc-emp-cta__input:focus {
  outline: none;
  border-color: #CC0000;
  box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.1);
}
.sc-emp-cta__input.sc-invalid {
  border-color: #c53030;
  box-shadow: 0 0 0 3px rgba(197, 48, 48, 0.1);
}
.sc-emp-cta__select-wrap {
  position: relative;
}
.sc-emp-cta__select-wrap::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666666' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}
.sc-emp-cta__select {
  width: 100%;
  padding: 11px 16px;
  padding-right: 36px;
  border: 1.5px solid #E0E0E0;
  border-radius: 4px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: #333333;
  background: #FFFFFF;
  transition: all 0.25s ease;
  appearance: none;
  cursor: pointer;
}
.sc-emp-cta__select:focus {
  outline: none;
  border-color: #CC0000;
  box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.1);
}
.sc-emp-cta__select.sc-invalid {
  border-color: #c53030;
}
.sc-emp-cta__exit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.sc-emp-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 4px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  text-align: center;
  line-height: 1;
}
.sc-emp-cta__btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.sc-emp-cta__btn--whatsapp {
  background: #25D366;
  border: 2px solid #25D366;
  color: #FFFFFF;
}
.sc-emp-cta__btn--whatsapp svg {
  fill: #FFFFFF;
}
.sc-emp-cta__btn--whatsapp:hover {
  background: #1EB857;
  border-color: #1EB857;
  color: #FFFFFF;
}
.sc-emp-cta__btn--submit {
  background: transparent;
  border: 2px solid #D5D5D5;
  color: #333333;
}
.sc-emp-cta__btn--submit:hover {
  border-color: #333333;
}
.sc-emp-cta__btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  pointer-events: none;
}
.sc-emp-cta__error {
  font-size: 14px;
  color: #c53030;
  text-align: center;
  margin: 8px 0 0;
}
.sc-emp-cta__success {
  text-align: center;
  padding: 24px 0;
}
.sc-emp-cta__success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(204, 0, 0, 0.08);
  margin: 0 auto 16px;
}
.sc-emp-cta__success-icon svg {
  width: 26px;
  height: 26px;
  stroke: #CC0000;
}
.sc-emp-cta__success-title {
  font-size: 24px;
  font-weight: 800;
  color: #0A0A0A;
  margin: 0 0 8px;
}
.sc-emp-cta__success-body {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 900px) {
  .sc-emp-cta__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .sc-emp-cta__left {
    padding-right: 0;
  }
  .sc-emp-cta__subheadline {
    max-width: 100%;
  }
  .sc-emp-cta__stats {
    gap: 24px;
  }
}
@media (max-width: 480px) {
  .sc-emp-cta {
    padding: 80px 24px;
  }
  .sc-emp-cta__exit {
    grid-template-columns: 1fr;
  }
  .sc-emp-cta__card {
    padding: 24px;
  }
}

.sc-hiw {
  background-color: #CC0000;
  padding: 120px 24px;
}
.sc-hiw__inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 120px;
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
}
.sc-hiw__left {
  position: sticky;
  top: calc(var(--sc-header-height) + 48px);
  padding-right: 48px;
}
.sc-hiw__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 16px;
}
.sc-hiw__heading {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900;
  line-height: 1.15;
  color: #FFFFFF;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.sc-hiw__subheading {
  font-size: clamp(15px, 1.25vw, 17px);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 48px;
  max-width: 380px;
}
.sc-hiw__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: #FFFFFF;
  color: #CC0000;
  border-radius: 4px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  line-height: 1;
  transition: all 0.25s ease;
  border: 2px solid #FFFFFF;
}
.sc-hiw__cta:hover, .sc-hiw__cta:focus-visible {
  background: transparent;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.sc-hiw__cta-icon {
  fill: #25D366;
  flex-shrink: 0;
  transition: all 0.25s ease;
}
.sc-hiw__cta:hover .sc-hiw__cta-icon, .sc-hiw__cta:focus-visible .sc-hiw__cta-icon {
  fill: #FFFFFF;
}
.sc-hiw__right {
  position: relative;
  padding-left: 40px;
}
.sc-hiw__line {
  position: absolute;
  left: 7px;
  top: 14px;
  bottom: 14px;
  width: 2px;
  background: rgba(255, 255, 255, 0.25);
}
.sc-hiw__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.sc-hiw__step {
  position: relative;
}
.sc-hiw__step-dot {
  position: absolute;
  left: -40px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.12);
}
.sc-hiw__step-content {
  position: relative;
}
.sc-hiw__step-num {
  display: block;
  font-size: clamp(56px, 6vw, 88px);
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 255, 255, 0.1);
  letter-spacing: -0.02em;
  margin-bottom: -0.25em;
  user-select: none;
  pointer-events: none;
}
.sc-hiw__step-title {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.15;
  margin: 0 0 8px;
}
.sc-hiw__step-body {
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin: 0;
  max-width: 440px;
}
@media (max-width: 1024px) {
  .sc-hiw__inner {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
  .sc-hiw__left {
    position: static;
    padding-right: 24px;
  }
  .sc-hiw__subheading {
    max-width: 100%;
  }
  .sc-hiw__step-body {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .sc-hiw {
    padding: 80px 24px;
  }
  .sc-hiw__inner {
    grid-template-columns: 1fr;
    gap: 80px;
  }
  .sc-hiw__left {
    padding-right: 0;
  }
  .sc-hiw__subheading {
    max-width: 100%;
  }
  .sc-hiw__cta {
    width: 100%;
    justify-content: center;
  }
  .sc-hiw__steps {
    gap: 24px;
  }
  .sc-hiw__step-num {
    font-size: clamp(48px, 12vw, 72px);
  }
  .sc-hiw__step-body {
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .sc-hiw {
    padding: 48px 24px;
  }
  .sc-hiw__right {
    padding-left: 32px;
  }
  .sc-hiw__step-dot {
    left: -32px;
  }
}

.sc-blog-preview {
  background: #FFFFFF;
  padding: var(--sc-spacing-xxl) 0;
}

.sc-blog-preview__inner {
  max-width: var(--sc-container-width);
  margin: 0 auto;
  padding: 0 var(--sc-container-padding);
}

.sc-blog-preview__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sc-spacing-md);
  margin-bottom: var(--sc-spacing-lg);
}
@media (max-width: 640px) {
  .sc-blog-preview__header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sc-spacing-sm);
  }
}

.sc-blog-preview__header-text {
  flex: 1;
}

.sc-blog-preview__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sc-font-heading);
  font-size: var(--sc-text-sm);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #CC0000;
  margin: 0 0 var(--sc-spacing-xs);
}
.sc-blog-preview__eyebrow::before, .sc-blog-preview__eyebrow::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: #CC0000;
  flex-shrink: 0;
}

.sc-blog-preview__heading {
  font-family: var(--sc-font-heading);
  font-size: var(--sc-text-3xl);
  font-weight: 900;
  line-height: 1.15;
  color: #0A0A0A;
  margin: 0;
}

.sc-blog-preview__view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sc-font-heading);
  font-size: var(--sc-text-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #CC0000;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: gap all 0.25s ease;
}
.sc-blog-preview__view-all:hover {
  color: #AA0000;
  gap: 12px;
}

.sc-blog-preview__view-all-arrow {
  font-size: 1.1em;
  line-height: 1;
  transition: transform all 0.25s ease;
}
.sc-blog-preview__view-all:hover .sc-blog-preview__view-all-arrow {
  transform: translateX(3px);
}

.sc-blog-preview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--sc-spacing-md);
}
@media (max-width: 900px) {
  .sc-blog-preview__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}

.sc-blog-preview__card--featured {
  grid-row: span 2;
}
@media (max-width: 900px) {
  .sc-blog-preview__card--featured {
    grid-row: auto;
  }
}

.sc-blog-preview__card {
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform all 0.25s ease, box-shadow all 0.25s ease;
}
.sc-blog-preview__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.sc-blog-preview__card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.sc-blog-preview__card-link:hover {
  color: inherit;
}

.sc-blog-preview__thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background-color: #1A1A1A;
  background-image: linear-gradient(135deg, #CC0000 0%, #0A0A0A 100%);
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.sc-blog-preview__card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: var(--sc-spacing-md);
}
.sc-blog-preview__card--secondary .sc-blog-preview__card-body {
  padding: var(--sc-spacing-sm) var(--sc-spacing-md);
}

.sc-blog-preview__card-meta {
  display: flex;
  align-items: center;
  gap: var(--sc-spacing-sm);
  margin-bottom: var(--sc-spacing-sm);
  flex-wrap: wrap;
}

.sc-blog-preview__category {
  font-family: var(--sc-font-primary);
  font-size: var(--sc-text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #CC0000;
  background: rgba(var(--sc-color-primary-rgb), 0.08);
  border: 1px solid rgba(204, 0, 0, 0.2);
  border-radius: 100px;
  padding: 3px 10px;
  white-space: nowrap;
}

.sc-blog-preview__date {
  font-family: var(--sc-font-body);
  font-size: var(--sc-text-xs);
  color: #666666;
  letter-spacing: 0.04em;
}

.sc-blog-preview__title {
  font-family: var(--sc-font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: #0A0A0A;
  margin: 0 0 var(--sc-spacing-sm);
  transition: color all 0.25s ease;
}
.sc-blog-preview__card-link:hover .sc-blog-preview__title {
  color: #CC0000;
}
.sc-blog-preview__card--featured .sc-blog-preview__title {
  font-size: var(--sc-text-2xl);
}
.sc-blog-preview__card--secondary .sc-blog-preview__title {
  font-size: var(--sc-text-base);
  margin-bottom: var(--sc-spacing-xs);
}

.sc-blog-preview__excerpt {
  font-family: var(--sc-font-body);
  font-size: var(--sc-text-base);
  line-height: 1.6;
  color: #333333;
  margin: 0 0 var(--sc-spacing-md);
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sc-blog-preview__read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sc-font-heading);
  font-size: var(--sc-text-sm);
  font-weight: 700;
  color: #CC0000;
  margin-top: auto;
  transition: gap all 0.25s ease, color all 0.25s ease;
}
.sc-blog-preview__card-link:hover .sc-blog-preview__read-more {
  gap: 10px;
  color: #AA0000;
}
.sc-blog-preview__card--secondary .sc-blog-preview__read-more {
  font-size: var(--sc-text-xs);
}

.sc-blog-preview__empty {
  font-size: var(--sc-text-sm);
  color: #666666;
  text-align: center;
  padding: var(--sc-spacing-lg);
  border: 1px dashed rgba(0, 0, 0, 0.15);
  border-radius: 8px;
}

@media (max-width: 768px) {
  .sc-blog-preview {
    padding: var(--sc-spacing-xl) 0;
  }
  .sc-blog-preview__heading {
    font-size: var(--sc-text-2xl);
  }
  .sc-blog-preview__card--featured .sc-blog-preview__title {
    font-size: var(--sc-text-xl);
  }
}
.sc-contact__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.sc-contact__hidden {
  display: none !important;
}
.sc-contact__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 16px;
}
.sc-contact__eyebrow--dark {
  color: #CC0000;
}
.sc-contact__hero {
  background: #CC0000;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.sc-contact__hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}
.sc-contact__hero::after {
  content: "";
  position: absolute;
  bottom: -140px;
  left: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.07);
  pointer-events: none;
}
.sc-contact__hero-headline {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.15;
  margin: 0 0 24px;
  max-width: 680px;
}
.sc-contact__hero-sub {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 48px;
  max-width: 480px;
  line-height: 1.6;
}
.sc-contact__hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.sc-contact__hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 16px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.25s ease;
}
.sc-contact__hero-btn svg {
  flex-shrink: 0;
}
.sc-contact__hero-btn--wa {
  background: #FFFFFF;
  color: #CC0000;
  padding: 14px 28px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}
.sc-contact__hero-btn--wa:hover {
  color: #AA0000;
  transform: translateY(-2px);
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.18);
}
.sc-contact__hero-btn--form {
  color: rgba(255, 255, 255, 0.9);
  padding: 14px 4px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.sc-contact__hero-btn--form:hover {
  color: #FFFFFF;
}
.sc-contact__hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 7px 16px;
  border-radius: 100px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.sc-contact__intent {
  background: #FFFFFF;
  padding: 80px 0;
}
.sc-contact__intent-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}
.sc-contact__intent-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 48px;
  border: 2px solid #EBEBEB;
  border-radius: 16px;
  background: #FFFFFF;
  cursor: pointer;
  text-align: left;
  transition: all 0.25s ease;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
}
.sc-contact__intent-card:hover {
  border-color: #CC0000;
  box-shadow: 0 6px 32px rgba(204, 0, 0, 0.1);
  transform: translateY(-2px);
}
.sc-contact__intent-card--candidate:hover {
  border-color: #CCCCCC;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.sc-contact__intent-icon {
  width: 48px;
  height: 48px;
  background: rgba(204, 0, 0, 0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  flex-shrink: 0;
}
.sc-contact__intent-icon svg {
  width: 22px;
  height: 22px;
  color: #CC0000;
}
.sc-contact__intent-card--candidate .sc-contact__intent-icon {
  background: #F5F5F5;
}
.sc-contact__intent-card--candidate .sc-contact__intent-icon svg {
  color: #333333;
}
.sc-contact__intent-label {
  font-size: 1.375rem;
  font-weight: 700;
  color: #0A0A0A;
  display: block;
}
.sc-contact__intent-sub {
  font-size: 14px;
  color: #666666;
  display: block;
}
.sc-contact__intent-arrow {
  font-size: 1.25rem;
  font-weight: 700;
  color: #CC0000;
  margin-top: auto;
  padding-top: 16px;
  transition: transform 0.2s ease;
}
.sc-contact__intent-card:hover .sc-contact__intent-arrow {
  transform: translateX(5px);
}
.sc-contact__intent-card--candidate .sc-contact__intent-arrow {
  color: #666666;
}
.sc-contact__candidate-redirect {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px;
  border: 2px solid #EBEBEB;
  border-radius: 16px;
  background: #F5F5F5;
}
.sc-contact__candidate-msg {
  font-size: 16px;
  color: #333333;
  line-height: 1.6;
  margin: 0 0 24px;
}
.sc-contact__candidate-cta {
  display: inline-block;
  font-weight: 700;
  color: #CC0000;
  text-decoration: none;
  margin-bottom: 24px;
}
.sc-contact__candidate-cta:hover {
  color: #AA0000;
  text-decoration: underline;
}
.sc-contact__back-btn {
  display: block;
  background: none;
  border: none;
  padding: 0;
  font-size: 14px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #666666;
  cursor: pointer;
  transition: all 0.25s ease;
}
.sc-contact__back-btn:hover {
  color: #333333;
}
.sc-contact__form-section {
  background: #F5F5F5;
  padding: 120px 0;
}
.sc-contact__form-inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 120px;
  align-items: start;
}
.sc-contact__form-trust {
  position: sticky;
  top: 120px;
}
.sc-contact__form-heading {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  color: #0A0A0A;
  line-height: 1.15;
  margin: 0 0 16px;
}
.sc-contact__form-sub {
  font-size: 16px;
  color: #666666;
  margin: 0 0 48px;
  line-height: 1.6;
}
.sc-contact__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.sc-contact__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sc-contact__stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: #CC0000;
  line-height: 1;
}
.sc-contact__stat-lbl {
  font-size: 12px;
  font-weight: 500;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.sc-contact__trust-copy {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
  margin: 0 0 24px;
}
.sc-contact__linkedin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #0077B5;
  text-decoration: none;
  transition: all 0.25s ease;
}
.sc-contact__linkedin svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.sc-contact__linkedin:hover {
  color: #005A88;
  text-decoration: underline;
}
.sc-contact__form-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 80px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}
.sc-contact__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
.sc-contact__field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  grid-column: span 2;
}
.sc-contact__field-group--half {
  grid-column: span 1;
}
.sc-contact__label {
  font-size: 14px;
  font-weight: 500;
  color: #333333;
}
.sc-contact__input, .sc-contact__select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #E0E0E0;
  border-radius: 4px;
  font-size: 16px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #333333;
  background: #FFFFFF;
  transition: border-color 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}
.sc-contact__input:focus, .sc-contact__select:focus {
  outline: none;
  border-color: #CC0000;
}
.sc-contact__input.sc-invalid, .sc-contact__select.sc-invalid {
  border-color: #CC0000;
  background: rgba(204, 0, 0, 0.03);
}
.sc-contact__select-wrap {
  position: relative;
}
.sc-contact__select-wrap::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #666666;
  pointer-events: none;
}
.sc-contact__select-wrap select {
  padding-right: 38px;
}
.sc-contact__wa-preview {
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: 0 8px 8px 8px;
  padding: 24px;
  margin-bottom: 24px;
  position: relative;
}
.sc-contact__wa-preview::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 10px 10px;
  border-color: transparent transparent #BBF7D0 transparent;
}
.sc-contact__wa-preview-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #16A34A;
  margin-bottom: 8px;
}
.sc-contact__wa-preview-label svg {
  flex-shrink: 0;
}
.sc-contact__wa-preview-msg {
  font-size: 14px;
  color: #374151;
  line-height: 1.6;
  margin: 0;
  font-style: italic;
  min-height: 1.4em;
}
.sc-contact__bridge {
  font-size: 14px;
  color: #666666;
  margin: 0 0 24px;
  text-align: center;
}
.sc-contact__exit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.sc-contact__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  text-align: center;
}
.sc-contact__btn svg {
  flex-shrink: 0;
}
.sc-contact__btn--wa {
  background: #25D366;
  color: #FFFFFF;
  border-color: #25D366;
}
.sc-contact__btn--wa:hover {
  background: #20C05C;
  border-color: #20C05C;
  color: #FFFFFF;
  transform: translateY(-1px);
}
.sc-contact__btn--wa.sc-contact__btn--loading {
  opacity: 0.7;
  pointer-events: none;
}
.sc-contact__btn--submit {
  background: #FFFFFF;
  color: #CC0000;
  border-color: #CC0000;
}
.sc-contact__btn--submit:hover {
  background: #CC0000;
  color: #FFFFFF;
  transform: translateY(-1px);
}
.sc-contact__btn--submit.sc-contact__btn--loading {
  opacity: 0.7;
  pointer-events: none;
}
.sc-contact__submit-error {
  font-size: 14px;
  color: #CC0000;
  margin: 0;
  text-align: center;
  line-height: 1.6;
}
.sc-contact__success {
  text-align: center;
  padding: 80px 48px;
}
.sc-contact__success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.sc-contact__success-icon svg {
  width: 32px;
  height: 32px;
  color: #25D366;
}
.sc-contact__success-title {
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 700;
  color: #0A0A0A;
  margin: 0 0 16px;
}
.sc-contact__success-body {
  font-size: 16px;
  color: #666666;
  margin: 0;
  line-height: 1.6;
}
.sc-contact__details {
  background: #FFFFFF;
  padding: 120px 0;
}
.sc-contact__details-header {
  text-align: center;
  margin-bottom: 80px;
}
.sc-contact__details-heading {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  color: #0A0A0A;
  line-height: 1.15;
  margin: 0;
}
.sc-contact__details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sc-contact__details-card {
  padding: 48px;
  border: 1.5px solid #EBEBEB;
  border-radius: 16px;
  transition: all 0.25s ease;
}
.sc-contact__details-card:hover {
  border-color: #CCCCCC;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.sc-contact__details-card--highlight {
  border-color: rgba(37, 211, 102, 0.3);
  background: #F0FDF4;
}
.sc-contact__details-card--highlight:hover {
  border-color: rgba(37, 211, 102, 0.55);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.12);
}
.sc-contact__details-icon {
  width: 48px;
  height: 48px;
  background: rgba(204, 0, 0, 0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.sc-contact__details-icon svg {
  width: 22px;
  height: 22px;
  color: #CC0000;
}
.sc-contact__details-card--highlight .sc-contact__details-icon {
  background: rgba(37, 211, 102, 0.12);
}
.sc-contact__details-card--highlight .sc-contact__details-icon svg {
  color: #16A34A;
}
.sc-contact__details-label {
  font-size: 14px;
  font-weight: 700;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 8px;
}
.sc-contact__details-value {
  display: block;
  font-size: 1.0625rem;
  font-weight: 500;
  color: #0A0A0A;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s ease;
}
.sc-contact__details-value:hover {
  color: #CC0000;
}
.sc-contact__address {
  display: block;
  font-style: normal;
  font-size: 16px;
  color: #333333;
  line-height: 1.7;
  margin-bottom: 8px;
}
.sc-contact__details-cta {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #16A34A;
  text-decoration: none;
  margin-top: 16px;
  transition: all 0.25s ease;
}
.sc-contact__details-cta:hover {
  text-decoration: underline;
}
.sc-contact__details-meta {
  font-size: 12px;
  color: #666666;
  margin: 8px 0 0;
  line-height: 1.5;
}
.sc-contact__faq {
  background: #F5F5F5;
  padding: 120px 0;
}
.sc-contact__faq-header {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 80px;
}
.sc-contact__faq-heading {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  color: #0A0A0A;
  line-height: 1.15;
  margin: 0;
}
.sc-contact__faq-list {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.sc-contact__faq-item {
  border-bottom: 1px solid #D8D8D8;
}
.sc-contact__faq-item:first-child {
  border-top: 1px solid #D8D8D8;
}
.sc-contact__faq-details summary {
  list-style: none;
}
.sc-contact__faq-details summary::-webkit-details-marker {
  display: none;
}
.sc-contact__faq-q {
  padding: 24px 0;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  color: #0A0A0A;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  user-select: none;
  transition: color 0.2s ease;
}
.sc-contact__faq-q::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  color: #CC0000;
  flex-shrink: 0;
  line-height: 1;
}
.sc-contact__faq-q:hover {
  color: #CC0000;
}
details[open] > .sc-contact__faq-q {
  color: #CC0000;
}
details[open] > .sc-contact__faq-q::after {
  content: "−";
}
.sc-contact__faq-a {
  padding: 0 80px 24px 0;
  color: #666666;
  line-height: 1.6;
  font-size: 16px;
  margin: 0;
}
.sc-contact__strip {
  background: #CC0000;
  padding: 80px 0;
}
.sc-contact__strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.sc-contact__strip-copy {
  font-size: 1.125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
}
.sc-contact__strip-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  color: #CC0000;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 16px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-decoration: none;
  transition: all 0.25s ease;
}
.sc-contact__strip-btn svg {
  flex-shrink: 0;
}
.sc-contact__strip-btn:hover {
  color: #AA0000;
  transform: translateY(-2px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}
@media (max-width: 1024px) {
  .sc-contact__form-inner {
    grid-template-columns: 1fr;
    gap: 80px;
  }
  .sc-contact__form-trust {
    position: static;
  }
}
@media (max-width: 768px) {
  .sc-contact__hero {
    padding: 80px 0;
  }
  .sc-contact__intent-grid {
    grid-template-columns: 1fr;
  }
  .sc-contact__details-grid {
    grid-template-columns: 1fr;
  }
  .sc-contact__fields {
    grid-template-columns: 1fr;
  }
  .sc-contact__field-group {
    grid-column: span 1;
  }
  .sc-contact__exit {
    grid-template-columns: 1fr;
  }
  .sc-contact__strip-inner {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .sc-contact__form-card {
    padding: 24px;
  }
  .sc-contact__hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

.sc-lang-ar .sc-hero,
.sc-lang-ar .sc-emp-hero,
.sc-lang-ar .sc-vac-hero,
.sc-lang-ar .sc-emp-diff,
.sc-lang-ar .sc-brand-statement,
.sc-lang-ar .sc-logos-bar,
.sc-lang-ar .sc-industries,
.sc-lang-ar .sc-dual-cta,
.sc-lang-ar .sc-wcu,
.sc-lang-ar .sc-testimonials,
.sc-lang-ar .sc-cta-banner,
.sc-lang-ar .sc-emp-cta,
.sc-lang-ar .sc-hiw,
.sc-lang-ar .sc-blog-preview,
.sc-lang-ar .sc-contact,
.sc-lang-ar .sc-stats-bar {
  direction: rtl;
  text-align: right;
}
