:root {
  --air-red: #d7192d;
  --ink: #111111;
  --muted: #5d6684;
  --page: #f2f2f2;
  --footer-blue: #0789c8;
  --line: rgba(0, 0, 0, 0.18);
}

.typeform-submit.is-submitted,
.typeform-submit.is-submitted:disabled {
  color: #ffffff;
  background: #18764b;
  border-color: #18764b;
  opacity: 1;
  cursor: default;
  box-shadow: none;
}

/* AI Connect careers application confirmation */
.application-modal {
  padding: 22px;
  background: rgba(15, 20, 33, .72);
  backdrop-filter: blur(7px);
}

.application-modal-card {
  width: min(560px, 100%);
  max-height: calc(100vh - 44px);
  overflow-y: auto;
  padding: 26px 34px 30px;
  border: 1px solid rgba(135, 27, 79, .16);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(16, 21, 34, .28);
  text-align: center;
}

.application-modal-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  border-radius: 16px 16px 0 0;
  background: linear-gradient(90deg, #d91335 0 68%, #b58a4b 68%);
}

.application-modal-card::after { display: none; }

.application-modal-close {
  top: 16px;
  right: 17px;
  width: 34px;
  height: 34px;
  border: 1px solid #dfe2e8;
  color: #4d5666;
  background: #ffffff;
  font-size: 23px;
}

.application-modal-close:hover {
  color: #d91335;
  border-color: #d91335;
  background: #fff7f8;
}

.application-modal-card .modal-brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 13px;
  margin: 0 48px 16px 0;
  padding-bottom: 14px;
  border-bottom: 1px solid #e7e9ee;
}

.application-modal-card .modal-brand img {
  width: 180px;
  height: 54px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.application-modal-card .modal-brand span {
  padding-left: 13px;
  border-left: 1px solid #d9dce3;
  color: #616a79;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.6px;
}

.application-modal-card .success-illustration {
  width: 78px;
  height: 78px;
  margin: 7px auto 14px;
  background: #edf8f2;
  box-shadow: none;
}

.application-modal-card .success-check {
  width: 54px;
  height: 54px;
  border-color: #23865a;
  color: #23865a;
}

.application-modal-card h2 {
  margin: 0;
  color: #172238;
  font-size: 27px;
  line-height: 1.12;
  letter-spacing: -.5px;
}

.application-modal-card h2 em {
  display: inline;
  color: #d91335;
}

.application-modal-card .air-divider {
  max-width: 330px;
  margin: 12px auto;
  color: #a97b3e;
}

.application-modal-card .air-divider::before,
.application-modal-card .air-divider::after { background: #dfd4c4; }
.application-modal-card .air-divider span { font-size: 18px; }

.application-modal-card .application-number-box {
  max-width: 390px;
  margin: 0 auto 14px;
  padding: 12px 15px;
  border: 1px solid #e0d4c4;
  border-radius: 9px;
  background: #fcfaf6;
}

.application-modal-card .application-number-box small { font-size: 9px; }
.application-modal-card .application-number-box strong { font-size: 17px; }

.application-modal-card .success-copy > p {
  max-width: 450px;
  margin: 0 auto 13px;
  color: #566174;
  font-size: 13px;
  line-height: 1.55;
}

.application-modal-card .communication-note {
  max-width: 450px;
  margin: 0 auto;
  padding: 11px 13px;
  border: 1px solid #e1e5eb;
  border-radius: 9px;
  background: #f7f8fa;
  text-align: left;
}

.application-modal-card .communication-note p {
  color: #566174;
  font-size: 11px;
  line-height: 1.5;
}

.application-modal-card .best-wishes { font-weight: 700; }

.application-modal-card .modal-careers-button {
  min-width: 170px;
  min-height: 43px;
  margin-top: 4px;
  border-radius: 8px;
  background: linear-gradient(100deg, #d91335, #841956);
  font-size: 13px;
  box-shadow: 0 9px 20px rgba(173, 19, 63, .2);
}

@media (max-width: 600px) {
  .application-modal { padding: 10px; }
  .application-modal-card { max-height: calc(100vh - 20px); padding: 22px 18px 24px; border-radius: 13px; }
  .application-modal-card .modal-brand img { width: 118px; }
  .application-modal-card h2 { font-size: 23px; }
  .application-modal-card .success-illustration { width: 68px; height: 68px; }
  .application-modal-card .success-check { width: 48px; height: 48px; }
  .application-modal-card .modal-careers-button { width: 100%; }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--page);
  font-family: Arial, Helvetica, sans-serif;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.topbar {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 7%;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  color: var(--air-red);
  font-size: 21px;
  font-weight: 900;
}

.brand-logo span {
  width: 23px;
  height: 18px;
  margin-left: 6px;
  border-top: 8px solid #caa263;
  border-right: 6px solid transparent;
  transform: skewX(18deg);
}

.profile-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #111;
  font-size: 13px;
}

.profile-link:hover {
  color: var(--air-red);
}

.hero {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  border-bottom: 10px solid #202529;
}

.page-hero {
  min-height: 360px;
}

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

.hero-image {
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.28) 48%, rgba(255, 255, 255, 0.1) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 92px 0 22px;
  text-align: center;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.1;
  font-weight: 900;
}

.hero-copy {
  margin: 4px 0 28px;
  color: #fff;
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.2;
  font-weight: 800;
}

.job-search {
  display: grid;
  grid-template-columns: 1fr 1fr 130px;
  gap: 20px;
  width: min(950px, 100%);
  margin: 0 auto;
}

.job-search label,
.form-card label {
  display: grid;
  min-width: 0;
  background: #fff;
}

.job-search label {
  height: 45px;
  padding: 0 18px;
  justify-content: center;
  text-align: left;
}

.job-search span {
  display: none;
}

.job-search input,
.job-search select,
.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: #111;
  background: transparent;
}

.job-search input,
.job-search select {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
}

.button,
.job-search button,
.form-card button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  padding: 0 22px;
  border: 0;
  color: #fff;
  background: var(--air-red);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.button:hover,
.job-search button:hover,
.form-card button:hover {
  background: #b91425;
}

.section,
.detail-layout,
.form-section,
.split-section,
.process {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.openings-section {
  padding: 6px 0 28px;
}

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

.section-heading h2 {
  margin: 0 0 5px;
  color: var(--air-red);
  font-size: 21px;
  line-height: 1.1;
  font-weight: 900;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.show-title {
  margin: 0 0 16px;
  color: #111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-weight: 900;
}

.job-grid,
.opening-grid,
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.job-card.opening-card {
  position: relative;
  min-height: 272px;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #111;
}

.opening-card img,
.card-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.opening-card img {
  object-fit: cover;
  transition: transform 0.35s ease;
}

.opening-card:hover img {
  transform: scale(1.045);
}

.card-shade {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.35) 48%, rgba(0, 0, 0, 0.04) 100%);
}

.opening-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 0 14px 14px;
  color: #fff;
}

.opening-content h3 {
  margin: 0 0 5px;
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 900;
}

.opening-content p {
  margin: 0 0 11px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 10px;
  font-weight: 800;
  text-decoration: underline;
}

.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 29px;
  padding: 0 15px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

.outline-button:hover {
  color: #111;
  background: #fff;
}

.empty-state {
  display: none;
  padding: 18px;
  background: #fff;
  color: var(--muted);
  font-weight: 700;
}

.hidden-links {
  display: none;
}

.footer.site-footer {
  position: relative;
  overflow: hidden;
  padding: 0;
  color: #212529;
  background:
    radial-gradient(circle at 8% 0%, rgba(218, 14, 43, .055), transparent 28%),
    radial-gradient(circle at 92% 12%, rgba(127, 29, 92, .045), transparent 26%),
    linear-gradient(135deg, rgba(177, 139, 77, .022) 25%, transparent 25%) 0 0 / 46px 46px,
    #f9f6ee;
  text-align: left;
}

.footer-accent {
  display: none;
}

.footer-accent::before,
.footer-accent::after,
.footer-accent span {
  display: none;
}

.footer-container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1.55fr) .9fr .9fr minmax(240px, 1.1fr);
  gap: 46px;
  padding: 48px 0 40px;
}

.footer-grid h2 {
  margin: 0 0 18px;
  color: #212529;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: .3px;
}

.footer-brand {
  display: inline-flex;
  align-items: flex-start;
  margin-bottom: 26px;
}

.footer-brand img {
  width: 230px;
  max-width: 100%;
  height: 72px;
  display: block;
  object-fit: contain;
  object-position: center;
  filter: none;
}

.footer-brand-column h2 {
  margin-bottom: 11px;
  font-size: 18px;
  letter-spacing: -.25px;
}

.footer-brand-column p,
.footer-connect-column p {
  margin: 0;
  color: #4b4c50;
  font-size: 12px;
  line-height: 1.65;
}

.footer-connect-column p {
  font-size: 13px;
}

.footer-careers-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 20px;
  color: #b61032;
  font-size: 13px;
  font-weight: 800;
}

.footer-careers-link span {
  color: #9e7947;
  font-size: 18px;
  transition: transform .2s ease;
}

.footer-careers-link:hover span { transform: translateX(4px); }

.footer-link-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

.footer-link-column h2,
.footer-connect-column h2 {
  margin-bottom: 7px;
  color: #212529;
  font-size: 15px;
  letter-spacing: .25px;
  text-transform: uppercase;
}

.footer-link-column a,
.footer-static-item,
.footer-legal a {
  color: #111;
  font-size: 14px;
  transition: color .2s ease, transform .2s ease;
}

.footer-link-column a:hover {
  color: #b61032;
  transform: translateX(3px);
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin: 20px 0;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid #d6d0c5;
  border-radius: 50%;
  color: #212529;
  background: rgba(255, 255, 255, .46);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.footer-social-link:hover {
  transform: translateY(-3px);
  border-color: #b61032;
  color: #fff;
  background: #b61032;
}

.footer-social-link.facebook span {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.footer-social-link.instagram span {
  position: relative;
  width: 19px;
  height: 19px;
  display: block;
  border: 2px solid currentColor;
  border-radius: 5px;
}

.footer-social-link.instagram span::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 7px;
  height: 7px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.footer-social-link.instagram span::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 2px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
}

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 9px 14px 9px 10px;
  border: 1px solid #d2ccc1;
  border-radius: 8px;
  color: #212529;
  background: rgba(255, 255, 255, .62);
  box-shadow: none;
  font-size: 13px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease;
}

.footer-whatsapp:hover { transform: translateY(-2px); border-color: #218c51; background: #fff; }

.whatsapp-mark {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(33, 140, 81, .45);
  color: #218c51;
  border-radius: 50%;
  font-size: 18px;
}

.footer-whatsapp small {
  display: block;
  margin-bottom: 2px;
  color: #218c51;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .4px;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0 24px;
  border-top: 1px solid #d8d1c5;
}

.footer-bottom p {
  margin: 0;
  color: #66625d;
  font-size: 11px;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 0;
}

.footer-legal a + a::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 12px;
  margin: 0 14px;
  background: #bdb5a9;
  vertical-align: -2px;
}

.footer-legal a:hover { color: #b61032; }

.footer a:focus-visible {
  outline: 2px solid #b61032;
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1.35fr 1fr 1fr;
    gap: 38px 30px;
  }

  .footer-brand-column { grid-column: span 2; }
}

@media (max-width: 680px) {
  .footer-container { width: min(100% - 36px, 1180px); }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
    padding: 44px 0 34px;
  }

  .footer-brand-column,
  .footer-connect-column { grid-column: 1 / -1; }

  .footer-brand img { width: 145px; }
  .footer-connect-column { padding-top: 4px; }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 0 24px;
  }
}

@media (max-width: 430px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand-column,
  .footer-connect-column { grid-column: auto; }
  .footer-link-column + .footer-link-column { padding-top: 4px; }
  .footer-whatsapp { width: 100%; justify-content: center; }
  .footer-legal { flex-wrap: wrap; row-gap: 10px; }
}

.panel,
.info-card,
.benefit-grid article,
.steps article {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
}

.panel + .panel {
  margin-top: 14px;
}

.page-copy,
.panel p,
.panel li {
  color: var(--muted);
  line-height: 1.6;
}

.form-section,
.detail-layout,
.split-section,
.process {
  padding: 70px 0;
}

.form-card {
  display: grid;
  gap: 14px;
  max-width: 760px;
  padding: 18px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
}

.form-card label {
  gap: 7px;
  padding: 11px 12px;
  border: 1px solid var(--line);
}

.form-card span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.form-card .two-col,
.detail-layout,
.split-section,
.benefit-grid,
.steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.notice {
  padding: 14px;
  color: #fff;
  background: #0d5f68;
  font-weight: 700;
}

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

  .job-search,
  .job-grid,
  .opening-grid,
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .job-search button {
    grid-column: span 2;
  }

  .detail-layout,
  .split-section,
  .benefit-grid,
  .steps {
    grid-template-columns: 1fr;
  }
}

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

  .brand-logo {
    font-size: 18px;
  }

  .profile-link {
    font-size: 12px;
  }

  .job-search,
  .job-grid,
  .opening-grid,
  .card-grid,
  .form-card .two-col {
    grid-template-columns: 1fr;
  }

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

  .social {
    justify-content: center;
    margin-right: 0;
  }
}

.main-logo {
  width: 130px;
  height: auto;
  display: block;
}

.brand-logo {
  display: none;
}
.brand {
  background: transparent;
}
/* Final logo polish */
.brand {
  width: 250px !important;
  height: 72px !important;
  background: transparent !important;
  display: flex !important;
  align-items: center !important;
}

.main-logo {
  width: 240px !important;
  height: 68px !important;
  max-height: none !important;
  display: block !important;
  object-fit: contain !important;
  object-position: center !important;
}

@media (max-width: 620px) {
  .brand {
    width: 190px !important;
    height: 56px !important;
  }

  .main-logo {
    width: 184px !important;
    height: 52px !important;
    max-height: none !important;
  }
}

/* Job detail application layout */
.job-detail-grid {
  display: grid;
  grid-template-columns: 540px minmax(0, 500px);
  gap: 18px;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 38px 0 58px;
  align-items: start;
  justify-content: center;
}

.job-detail-left {
  display: grid;
  gap: 10px;
  order: 2;
  max-width: 500px;
}

.detail-panel {
  padding: 14px 16px;
  border: 1px solid #e1e5ee;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(18, 28, 45, 0.035);
}

.detail-panel h2,
.application-panel h2 {
  margin: 0 0 8px;
  color: #111;
  font-size: 18px;
  line-height: 1.18;
}

.detail-panel .page-copy {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.detail-list {
  margin: 0;
  padding-left: 16px;
}

.detail-list li {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.42;
}

.sub-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.sub-card {
  min-height: 54px;
  padding: 9px;
  border: 1px solid #e1e5ee;
  border-radius: 4px;
  background: #f9fafc;
}

.sub-card strong,
.sub-card span {
  display: block;
}

.sub-card strong {
  margin-bottom: 5px;
  color: #111;
  font-size: 12px;
}

.sub-card span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.application-panel {
  position: sticky;
  top: 14px;
  order: 1;
  overflow: hidden;
  padding: 16px;
  background: #fff;
  border: 1px solid #d7dde8;
  border-radius: 7px;
  box-shadow: 0 18px 42px rgba(18, 28, 45, 0.12);
}

.application-panel::before {
  content: "";
  display: block;
  height: 4px;
  margin: -16px -16px 14px;
  background: linear-gradient(90deg, var(--air-red), #d69b42);
}

.application-panel h2 {
  font-size: 21px;
}

.form-note {
  margin-bottom: 10px;
  color: #4f5876;
  font-size: 11px;
  line-height: 1.45;
}

.detail-apply-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 10px;
}

.detail-apply-form label {
  display: grid;
  gap: 4px;
}

.detail-apply-form span {
  color: #3f4965;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.detail-apply-form input,
.detail-apply-form select,
.detail-apply-form textarea {
  width: 100%;
  min-height: 34px;
  padding: 7px 9px;
  border: 1px solid #cbd3e1;
  border-radius: 4px;
  outline: 0;
  color: #111;
  background: #fbfcff;
  font-size: 12px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.detail-apply-form input:focus,
.detail-apply-form select:focus,
.detail-apply-form textarea:focus {
  border-color: #182b49;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(24, 43, 73, 0.09);
}

.detail-apply-form textarea {
  min-height: 48px;
  resize: vertical;
}

.form-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  grid-column: 1 / -1;
}

.verify-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px;
  gap: 7px;
}

.verify-btn {
  min-height: 34px;
  border: 0;
  border-radius: 4px;
  color: #fff;
  background: #182b49;
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
}

.verify-btn.verified {
  background: #0d7a48;
}

.detail-apply-form > button[type="submit"] {
  min-height: 38px;
  border: 0;
  border-radius: 4px;
  color: #fff;
  background: var(--air-red);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

.verification-status {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.detail-apply-form > input[type="hidden"] {
  display: none;
}

.document-upload-group {
  grid-column: 1 / -1;
  padding: 10px;
  border: 1px solid #dce2eb;
  border-radius: 5px;
  background: #f8fafc;
}

.document-upload-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.document-upload-head strong {
  color: #111827;
  font-size: 12px;
}

.document-upload-head small {
  color: #667085;
  font-size: 9px;
}

.document-upload-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 10px;
}

.document-upload-grid input[type="file"] {
  min-height: 36px;
  padding: 5px;
  color: #475467;
  background: #fff;
  font-size: 10px;
}

.document-upload-grid input[type="file"]::file-selector-button {
  margin-right: 7px;
  padding: 5px 8px;
  border: 0;
  border-radius: 3px;
  color: #fff;
  background: #182b49;
  cursor: pointer;
  font-size: 9px;
  font-weight: 800;
}

.detail-apply-form > label:nth-of-type(4),
.detail-apply-form > label:nth-of-type(8),
.detail-apply-form > button[type="submit"],
.detail-apply-form > .verification-status {
  grid-column: 1 / -1;
}

@media (max-width: 1120px) {
  .job-detail-grid {
    grid-template-columns: 1fr;
  }

  .application-panel {
    position: static;
  }
}

@media (max-width: 720px) {
  .sub-card-grid,
  .form-two,
  .verify-row,
  .document-upload-grid {
    grid-template-columns: 1fr;
  }

  .document-upload-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }
}

/* Horizontal typeform application */
.typeform-layout {
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  width: min(1240px, calc(100% - 36px));
  padding-top: 30px;
}

.typeform-layout .job-detail-left {
  order: 2;
  max-width: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.typeform-layout .application-panel {
  position: static;
  order: 1;
  display: grid;
  grid-template-columns: 245px minmax(0, 1fr);
  min-height: 610px;
  padding: 0;
  border: 1px solid #d9dee8;
  border-radius: 6px;
  box-shadow: 0 20px 50px rgba(18, 28, 45, 0.12);
}

.typeform-layout .application-panel::before {
  display: none;
}

.typeform-sidebar {
  display: flex;
  flex-direction: column;
  padding: 30px 22px 24px;
  color: #fff;
  background: #10223d;
}

.typeform-brand {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.typeform-brand span,
.typeform-brand strong {
  display: block;
}

.typeform-brand span {
  margin-bottom: 6px;
  color: #f3f6fb;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.typeform-brand strong {
  color: #fff;
  font-size: 18px;
  line-height: 1.25;
}

.typeform-step-list {
  display: grid;
  gap: 0;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.typeform-step-list li {
  position: relative;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 68px;
  color: #9eabc0;
  transition: color 0.2s ease;
}

.typeform-step-list li::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 53px;
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.22);
}

.typeform-step-list li:last-child::after {
  display: none;
}

.typeform-step-list b {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  color: #d6deea;
  font-size: 11px;
}

.typeform-step-list span {
  font-size: 13px;
  font-weight: 700;
}

.typeform-step-list li.is-active,
.typeform-step-list li.is-complete {
  color: #fff;
}

.typeform-step-list li.is-active b,
.typeform-step-list li.is-complete b {
  border-color: #e21b2d;
  color: #fff;
  background: #e21b2d;
}

.typeform-sidebar > p {
  margin: auto 0 0;
  color: #9eabc0;
  font-size: 10px;
  line-height: 1.5;
}

.typeform-main {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 30px 42px 24px;
  background: #fff;
}

.typeform-progress-row {
  display: grid;
  grid-template-columns: auto minmax(180px, 1fr);
  align-items: center;
  gap: 20px;
  margin-bottom: 38px;
}

.typeform-progress-row strong {
  color: #26344f;
  font-size: 11px;
}

.typeform-progress {
  height: 4px;
  overflow: hidden;
  border-radius: 2px;
  background: #e9edf3;
}

.typeform-progress span {
  display: block;
  width: 20%;
  height: 100%;
  background: #e21b2d;
  transition: width 0.25s ease;
}

.typeform-heading {
  margin-bottom: 25px;
}

.typeform-heading > span {
  display: block;
  margin-bottom: 7px;
  color: #e21b2d;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.typeform-layout .typeform-heading h2 {
  margin: 0 0 8px;
  color: #101828;
  font-size: 27px;
  line-height: 1.2;
}

.typeform-heading p {
  margin: 0;
  color: #667085;
  font-size: 12px;
  line-height: 1.55;
}

.typeform-form {
  display: block;
}

.form-step[hidden] {
  display: none;
}

.form-step-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px 20px;
}

.form-step-grid .field-wide {
  grid-column: 1 / -1;
}

.typeform-form label {
  align-content: start;
  gap: 6px;
}

.typeform-form label > span {
  color: #344054;
  font-size: 10px;
  letter-spacing: 0;
}

.typeform-form input,
.typeform-form select,
.typeform-form textarea {
  min-height: 44px;
  padding: 10px 12px;
  border-color: #cbd2dd;
  background: #fff;
  font-size: 13px;
}

.typeform-form textarea {
  min-height: 104px;
}

.typeform-form .verify-row {
  grid-template-columns: minmax(0, 1fr) 84px;
  gap: 8px;
}

.typeform-form .verify-btn {
  min-height: 44px;
  font-size: 11px;
}

.typeform-form input[type="file"] {
  padding: 7px;
  color: #667085;
  font-size: 11px;
}

.typeform-form input[type="file"]::file-selector-button {
  margin-right: 9px;
  padding: 7px 10px;
  border: 0;
  border-radius: 3px;
  color: #fff;
  background: #10223d;
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
}

.file-preview-list {
  display: grid;
  gap: 6px;
  margin-top: 2px;
}

.file-preview-list[hidden] {
  display: none;
}

.file-preview-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  min-width: 0;
  padding: 6px;
  border: 1px solid #dfe4ec;
  border-radius: 4px;
  background: #f8fafc;
}

.file-preview-visual {
  width: 42px;
  height: 42px;
  display: grid;
  overflow: hidden;
  place-items: center;
  border-radius: 3px;
  color: #fff;
  background: #10223d;
  font-size: 9px;
  font-weight: 900;
}

.file-preview-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.file-preview-visual.is-pdf {
  background: #c9142a;
}

.file-preview-card strong,
.file-preview-card small {
  display: block;
  min-width: 0;
}

.file-preview-card strong {
  overflow: hidden;
  color: #26344f;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-preview-card small {
  margin-top: 3px;
  color: #667085;
  font-size: 9px;
}

.document-step-grid {
  align-items: start;
}

.upload-guidance {
  margin: 15px 0 0;
  padding: 10px 12px;
  border-left: 3px solid #e21b2d;
  color: #667085;
  background: #f7f9fc;
  font-size: 10px;
}

.typeform-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid #e4e7ec;
}

.typeform-actions > span {
  margin-right: auto;
  color: #667085;
  font-size: 10px;
  text-transform: none;
}

.typeform-actions > span b {
  color: #e21b2d;
}

.typeform-back,
.typeform-next,
.typeform-submit {
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
}

.typeform-back {
  border: 1px solid #cbd2dd;
  color: #344054;
  background: #fff;
}

.typeform-next,
.typeform-submit {
  color: #fff;
  background: #e21b2d;
}

.typeform-next b {
  margin-left: 9px;
  font-size: 15px;
}

.typeform-actions [hidden] {
  display: none;
}

.typeform-form .verification-status {
  margin-top: 10px;
  text-align: right;
}

@media (max-width: 860px) {
  .typeform-layout .application-panel {
    grid-template-columns: 1fr;
  }

  .typeform-sidebar {
    padding: 18px 20px;
  }

  .typeform-brand {
    padding-bottom: 14px;
  }

  .typeform-step-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 5px;
    margin: 16px 0 0;
  }

  .typeform-step-list li {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 5px;
    min-height: 36px;
  }

  .typeform-step-list li::after,
  .typeform-sidebar > p {
    display: none;
  }

  .typeform-step-list b {
    width: 30px;
    height: 30px;
  }

  .typeform-step-list span {
    font-size: 10px;
  }

  .typeform-layout .job-detail-left {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .typeform-layout {
    width: min(100% - 20px, 1240px);
    padding-top: 16px;
  }

  .typeform-main {
    padding: 22px 17px 18px;
  }

  .typeform-progress-row {
    grid-template-columns: 1fr;
    gap: 9px;
    margin-bottom: 25px;
  }

  .typeform-layout .typeform-heading h2 {
    font-size: 23px;
  }

  .form-step-grid {
    grid-template-columns: 1fr;
  }

  .form-step-grid .field-wide {
    grid-column: auto;
  }

  .typeform-step-list li {
    display: flex;
    justify-content: center;
  }

  .typeform-step-list li span {
    display: none;
  }

  .typeform-actions {
    gap: 8px;
  }

  .typeform-actions > span {
    display: none;
  }

  .typeform-next,
  .typeform-submit {
    margin-left: auto;
  }
}

.success-panel {
  text-align: center;
}

.application-number {
  margin: 12px 0;
  color: #111;
  font-size: 18px;
  font-weight: 800;
}

.modal-open {
  overflow: hidden;
}

.application-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(15, 24, 35, 0.72);
  backdrop-filter: blur(10px);
}

.application-modal.show { display: flex; }

.application-modal-card {
  position: relative;
  width: min(700px, 100%);
  max-height: calc(100vh - 38px);
  overflow: auto;
  padding: 34px 58px 38px;
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 24px;
  background: linear-gradient(145deg, #ffffff 0%, #fffaf7 100%);
  box-shadow: 0 32px 90px rgba(3, 10, 20, .42);
  text-align: center;
  animation: application-modal-enter .32s ease-out both;
}

.application-modal-card::after {
  content: "";
  position: absolute;
  right: -66px;
  bottom: -72px;
  width: 275px;
  height: 200px;
  border-radius: 100% 0 0 0;
  background: linear-gradient(155deg, #ffd28c 0 22%, #ff7a20 23% 52%, #ef3f0b 53% 72%, #ff6d16 73%);
  transform: rotate(-9deg);
  z-index: 0;
}

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

@keyframes application-modal-enter {
  from { opacity: 0; transform: translateY(16px) scale(.975); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.application-modal-close {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: 1px solid #e4e7eb;
  border-radius: 50%;
  color: #263445;
  background: #fff;
  cursor: pointer;
  font-size: 31px;
  line-height: 38px;
}
.application-modal-close:hover { border-color: #ef4b13; color: #ef4b13; }

.modal-brand { width: fit-content; margin-bottom: 8px; text-align: left; line-height: .8; }
.modal-brand span { display:block; color:#c6152f; font-size:17px; font-weight:900; letter-spacing:1.1px; }
.modal-brand strong { color:#e84b14; font-size:38px; font-weight:500; letter-spacing:-3px; }

.success-illustration {
  position: relative;
  width: 128px;
  height: 128px;
  display: grid;
  place-items: center;
  margin: -2px auto 14px;
  border-radius: 50%;
  background: #fff0ea;
}
.success-check {
  width: 94px;
  height: 94px;
  display:grid;
  place-items:center;
  border: 7px solid #ee4b13;
  border-radius:50%;
  color:#ee4b13;
  font-size:58px;
  font-weight:900;
  line-height:1;
}
.success-check svg { width:58px; height:58px; fill:none; stroke:currentColor; stroke-width:2.7; stroke-linecap:round; stroke-linejoin:round; }
.spark { position:absolute; width:11px; height:5px; border-radius:5px; background:#ef4a13; }
.spark-one { left:-18px; top:45px; background:#14aaa3; }
.spark-two { right:-17px; top:30px; transform:rotate(-45deg); }
.spark-three { right:-16px; bottom:31px; transform:rotate(30deg); }
.spark-four { left:-1px; top:-8px; width:7px; height:7px; border-radius:50%; }

.application-modal-card h2 {
  margin: 0;
  color:#1b2a3c;
  font-size:34px;
  line-height:1.12;
  font-weight:900;
}
.application-modal-card h2 em { display:block; color:#ef4b13; font-style:normal; }

.air-divider { display:flex; align-items:center; gap:18px; max-width:440px; margin:16px auto; color:#ef4b13; }
.air-divider::before,.air-divider::after { content:""; height:1px; flex:1; background:#f08a65; }
.air-divider span { font-size:23px; transform:rotate(-8deg); }
.air-divider.small { max-width:290px; margin:17px auto; }

.application-number-box {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:20px;
  width:min(460px,100%);
  margin:0 auto 22px;
  padding:16px 22px;
  border:1px solid #ffd1c3;
  border-radius:14px;
  background:linear-gradient(90deg, #fff7f3, #fff);
  box-shadow:0 8px 24px rgba(218, 68, 18, .08);
  text-align:left;
}
.document-icon { width:54px; height:54px; display:grid; flex:0 0 54px; place-items:center; border-radius:12px; color:#ef4b13; background:#ffebe3; }
.document-icon svg { width:30px; height:30px; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.application-number-box small { display:block; color:#536070; font-size:14px; font-weight:800; letter-spacing:.6px; text-transform:uppercase; }
.application-number-box strong { display:block; margin-top:4px; color:#c93212; font-size:24px; letter-spacing:.7px; }

.success-copy > p { margin:0; color:#334154; font-size:16px; line-height:1.55; }
.success-copy b { color:#e94015; }
.communication-note {
  display:grid;
  grid-template-columns:64px 1fr;
  gap:20px;
  align-items:center;
  margin-top:20px;
  padding:18px;
  border:1px solid #e8ebef;
  border-radius:14px;
  background:#fff;
  text-align:left;
}
.communication-note p { margin:0; color:#465466; font-size:15px; line-height:1.5; }
.mail-icon { width:58px; height:58px; display:grid; place-items:center; border:1px solid #ffc9b7; border-radius:50%; color:#ef4b13; background:#fff6f2; }
.mail-icon svg { width:29px; height:29px; fill:none; stroke:currentColor; stroke-width:1.7; stroke-linecap:round; stroke-linejoin:round; }
.best-wishes { font-weight:600; }

.modal-message { margin:18px auto; color:#5d6673; font-size:16px; line-height:1.55; }
.application-modal-card ul { max-height:170px; overflow:auto; margin:14px 0 18px; padding:12px 24px 12px 42px; border-radius:8px; background:#fff5f2; color:#7d2a1b; text-align:left; }

.modal-careers-button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:13px;
  min-width:300px;
  margin-top:24px;
  padding:15px 28px;
  border-radius:12px;
  color:#fff;
  background:linear-gradient(90deg,#ef4307,#f05c18);
  box-shadow:0 9px 22px rgba(239,67,7,.24);
  font-size:22px;
  font-weight:800;
  text-decoration:none;
}
.modal-careers-button:hover { transform: translateY(-2px); box-shadow:0 13px 26px rgba(239,67,7,.3); }
.modal-careers-button span { width:24px; height:24px; display:inline-grid; place-items:center; }
.modal-careers-button svg { width:23px; height:23px; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }

.application-modal.is-warning .success-illustration,
.application-modal.is-error .success-illustration { background:#fff5df; }
.application-modal.is-warning .success-check,
.application-modal.is-error .success-check { border-color:#d68a00; color:#d68a00; font-size:0; }
.application-modal.is-warning .success-check svg,
.application-modal.is-error .success-check svg { display:none; }
.application-modal.is-warning .success-check::after,
.application-modal.is-error .success-check::after { content:"!"; font-size:58px; }
.application-modal.is-warning .air-divider,
.application-modal.is-error .air-divider,
.application-modal.is-warning .success-copy,
.application-modal.is-error .success-copy { display:none; }

@media (max-width: 700px) {
  .application-modal { padding:10px; }
  .application-modal-card { padding:24px 20px 30px; border-radius:18px; }
  .application-modal-close { top:13px; right:13px; width:38px; height:38px; font-size:27px; }
  .modal-brand span { font-size:14px; }
  .modal-brand strong { font-size:31px; }
  .success-illustration { width:108px; height:108px; margin-top:8px; }
  .success-check { width:80px; height:80px; border-width:6px; font-size:45px; }
  .application-modal-card h2 { font-size:28px; }
  .application-number-box { gap:12px; padding:12px 14px; }
  .application-number-box small { font-size:15px; }
  .application-number-box strong { font-size:19px; }
  .success-copy > p,.communication-note p { font-size:14px; }
  .communication-note { grid-template-columns:48px 1fr; gap:12px; padding:14px; }
  .mail-icon { width:46px; height:46px; font-size:25px; }
  .modal-careers-button { min-width:0; width:100%; font-size:18px; }
}

/* =========================================================
   Professional application form redesign — 2026 refresh
   ========================================================= */
.typeform-layout {
  width: min(1320px, calc(100% - 48px));
  gap: 36px;
  padding-top: 44px;
  padding-bottom: 56px;
}

.typeform-layout .application-panel {
  grid-template-columns: 290px minmax(0, 1fr);
  min-height: 680px;
  overflow: hidden;
  border: 1px solid rgba(15, 35, 64, 0.09);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(15, 35, 64, 0.14), 0 6px 20px rgba(15, 35, 64, 0.06);
}

.typeform-sidebar {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 40px 30px 30px;
  background:
    radial-gradient(circle at 15% 7%, rgba(255,255,255,.14), transparent 30%),
    linear-gradient(160deg, #132b4e 0%, #0b1d35 55%, #08172b 100%);
}

.typeform-sidebar::before,
.typeform-sidebar::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  pointer-events: none;
}

.typeform-sidebar::before {
  width: 230px;
  height: 230px;
  right: -125px;
  top: 120px;
  border: 34px solid rgba(226, 27, 45, .12);
}

.typeform-sidebar::after {
  width: 170px;
  height: 170px;
  left: -105px;
  bottom: -65px;
  background: rgba(226, 27, 45, .13);
}

.typeform-brand {
  padding: 0 0 30px;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.typeform-brand span {
  margin-bottom: 9px;
  color: #ffb0b9;
  font-size: 11px;
  letter-spacing: 1.4px;
}

.typeform-brand strong {
  max-width: 205px;
  font-size: 22px;
  line-height: 1.35;
}

.typeform-step-list {
  margin: 38px 0 28px;
}

.typeform-step-list li {
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  min-height: 78px;
  color: #9fb0c8;
}

.typeform-step-list li::after {
  left: 21px;
  top: 58px;
  height: 38px;
  background: rgba(255, 255, 255, .15);
}

.typeform-step-list b {
  width: 44px;
  height: 44px;
  border-color: rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .035);
  font-size: 11px;
  box-shadow: inset 0 0 0 4px rgba(255,255,255,.02);
}

.typeform-step-list span {
  font-size: 14px;
  letter-spacing: .1px;
}

.typeform-step-list li.is-active b {
  border-color: #f11f38;
  background: linear-gradient(135deg, #f3263d, #d91029);
  box-shadow: 0 9px 24px rgba(226, 27, 45, .32);
}

.typeform-step-list li.is-complete b {
  border-color: #45b97c;
  background: #45b97c;
  box-shadow: 0 8px 22px rgba(69, 185, 124, .2);
}

.typeform-sidebar > p {
  position: relative;
  padding: 14px 14px 14px 40px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  color: #b7c4d6;
  background: rgba(255,255,255,.045);
  font-size: 11px;
  line-height: 1.55;
}

.typeform-sidebar > p::before {
  content: "✓";
  position: absolute;
  left: 14px;
  top: 14px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #45b97c;
  font-size: 10px;
  font-weight: 900;
}

.typeform-main {
  padding: 42px 52px 36px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    radial-gradient(circle at 100% 0, rgba(226,27,45,.035), transparent 30%);
}

.typeform-progress-row {
  grid-template-columns: auto minmax(220px, 1fr);
  gap: 22px;
  margin-bottom: 42px;
}

.typeform-progress-row strong {
  color: #263750;
  font-size: 11px;
  letter-spacing: .7px;
  text-transform: uppercase;
}

.typeform-progress {
  height: 7px;
  border-radius: 999px;
  background: #edf1f6;
}

.typeform-progress span {
  border-radius: inherit;
  background: linear-gradient(90deg, #e21b2d 0%, #ff5a4f 100%);
  box-shadow: 0 3px 9px rgba(226, 27, 45, .22);
}

.typeform-heading {
  position: relative;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #edf0f4;
}

.typeform-heading > span {
  margin-bottom: 10px;
  color: #e21b2d;
  font-size: 11px;
  letter-spacing: 1.25px;
}

.typeform-layout .typeform-heading h2 {
  max-width: 720px;
  margin-bottom: 10px;
  color: #11233e;
  font-size: clamp(27px, 2.6vw, 38px);
  letter-spacing: -.8px;
}

.typeform-heading p {
  max-width: 700px;
  color: #69788d;
  font-size: 14px;
}

.form-step-grid {
  gap: 22px 24px;
}

.typeform-form label {
  gap: 9px;
}

.typeform-form label > span {
  color: #263750;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .45px;
  text-transform: uppercase;
}

.typeform-form input,
.typeform-form select,
.typeform-form textarea {
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid #d7deea;
  border-radius: 10px;
  color: #17253a;
  background: #fbfcfe;
  font-size: 14px;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease, transform .18s ease;
}

.typeform-form input::placeholder,
.typeform-form textarea::placeholder {
  color: #98a4b6;
}

.typeform-form input:hover,
.typeform-form select:hover,
.typeform-form textarea:hover {
  border-color: #b7c3d4;
  background: #fff;
}

.typeform-form input:focus,
.typeform-form select:focus,
.typeform-form textarea:focus {
  outline: none;
  border-color: #e21b2d;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(226, 27, 45, .095);
}

.typeform-form textarea {
  min-height: 118px;
  resize: vertical;
}

.typeform-form .verify-row {
  grid-template-columns: minmax(0, 1fr) 100px;
  gap: 10px;
}

.typeform-form .otp-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 110px;
  gap: 10px;
  margin-top: 10px;
}

.typeform-form .otp-row[hidden] {
  display: none;
}

.typeform-form .verify-btn {
  min-height: 52px;
  border-radius: 10px;
  color: #122640;
  background: #eef3f9;
  font-size: 11px;
  font-weight: 900;
}

.typeform-form .verify-btn:hover {
  color: #fff;
  background: #122640;
}

.typeform-form input[type="file"] {
  min-height: 58px;
  padding: 8px;
  border-style: dashed;
  background: #fafcff;
}

.typeform-form input[type="file"]::file-selector-button {
  margin-right: 12px;
  padding: 10px 13px;
  border-radius: 7px;
  background: #142b4b;
  font-size: 10px;
}

.upload-guidance {
  margin-top: 20px;
  padding: 14px 16px;
  border: 1px solid #e7ebf1;
  border-left: 4px solid #e21b2d;
  border-radius: 0 10px 10px 0;
  background: #f8fafc;
  font-size: 11px;
}

.typeform-actions {
  gap: 12px;
  margin-top: 36px;
  padding-top: 24px;
  border-top-color: #edf0f4;
}

.typeform-actions > span {
  color: #778499;
  font-size: 11px;
}

.typeform-back,
.typeform-next,
.typeform-submit {
  min-height: 50px;
  padding: 0 23px;
  border-radius: 10px;
  font-size: 12px;
  letter-spacing: .15px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.typeform-back {
  border-color: #d6deea;
  background: #fff;
}

.typeform-back:hover {
  border-color: #9eacbf;
  background: #f8fafc;
}

.typeform-next,
.typeform-submit {
  min-width: 142px;
  background: linear-gradient(135deg, #ed1b31 0%, #d40d25 100%);
  box-shadow: 0 10px 24px rgba(226, 27, 45, .22);
}

.typeform-next:hover,
.typeform-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(226, 27, 45, .29);
}

.typeform-form .verification-status {
  margin-top: 12px;
  color: #7b8798;
  font-size: 11px;
}

.typeform-layout .job-detail-left {
  gap: 20px;
}

.typeform-layout .job-detail-left .panel {
  border: 1px solid #e7ebf1;
  border-radius: 18px;
  box-shadow: 0 12px 34px rgba(15, 35, 64, .07);
}

@media (max-width: 900px) {
  .typeform-layout {
    width: min(100% - 28px, 1320px);
  }
  .typeform-layout .application-panel {
    grid-template-columns: 1fr;
    border-radius: 20px;
  }
  .typeform-sidebar {
    padding: 24px;
  }
  .typeform-step-list {
    margin-top: 20px;
  }
  .typeform-main {
    padding: 34px 30px 30px;
  }
}

@media (max-width: 620px) {
  .typeform-layout {
    width: calc(100% - 18px);
    padding-top: 18px;
  }
  .typeform-layout .application-panel {
    border-radius: 16px;
  }
  .typeform-sidebar {
    padding: 20px 16px;
  }
  .typeform-brand strong {
    font-size: 19px;
  }
  .typeform-main {
    padding: 26px 18px 22px;
  }
  .typeform-progress-row {
    margin-bottom: 28px;
  }
  .typeform-heading {
    margin-bottom: 24px;
    padding-bottom: 20px;
  }
  .typeform-layout .typeform-heading h2 {
    font-size: 27px;
  }
  .form-step-grid {
    gap: 18px;
  }
  .typeform-actions {
    flex-wrap: wrap;
  }
  .typeform-back,
  .typeform-next,
  .typeform-submit {
    min-height: 48px;
  }
}

/* Contact page */
.contact-page {
  min-height: 70vh;
  background: #f4f5f8;
}

.contact-hero {
  position: relative;
  min-height: 370px;
  display: grid;
  align-items: end;
  overflow: hidden;
}

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

.contact-hero > img {
  object-fit: cover;
  object-position: center 48%;
}

.contact-hero-overlay {
  background: linear-gradient(90deg, rgba(14, 20, 31, .9), rgba(20, 26, 39, .52) 56%, rgba(20, 26, 39, .3));
}

.contact-hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 130px 0 70px;
  color: #fff;
}

.contact-hero-content > span {
  display: inline-block;
  margin-bottom: 13px;
  color: #ffb18f;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2.1px;
}

.contact-hero-content h1 {
  max-width: 700px;
  margin: 0 0 15px;
  font-size: clamp(34px, 5vw, var(--contact-page-title-size, 64px));
  line-height: 1;
}

.contact-hero-content p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, .88);
  font-size: var(--contact-body-size, 15px);
  line-height: 1.6;
}

.contact-content {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 66px 0 78px;
}

.contact-intro {
  max-width: 760px;
  margin-bottom: 38px;
}

.contact-intro h2 {
  margin: 0 0 12px;
  color: #182235;
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.15;
}

.contact-intro p {
  margin: 0;
  color: #5b6577;
  font-size: 15px;
  line-height: 1.75;
}

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

.contact-detail-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 25px;
  border: 1px solid #e0e4eb;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(22, 31, 48, .06);
}

.contact-card-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #d83a1b;
  background: #fff0e9;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .3px;
}

.contact-detail-card h2 {
  margin: 2px 0 8px;
  color: #1c2739;
  font-size: 15px;
}

.contact-detail-card p,
.contact-detail-card a {
  margin: 0;
  color: #5a6577;
  font-size: 14px;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.contact-detail-card a {
  color: #c9321b;
  font-weight: 800;
}

.contact-detail-card a:hover { text-decoration: underline; }

.contact-notice {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 17px;
  align-items: start;
  margin-top: 24px;
  padding: 23px 25px;
  border: 1px solid #f1d4a8;
  border-radius: 15px;
  background: #fff9ed;
}

.contact-notice > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #965b08;
  background: #ffe8bb;
  font-family: Georgia, serif;
  font-size: 21px;
  font-weight: 900;
}

.contact-notice h2 {
  margin: 1px 0 7px;
  color: #533a16;
  font-size: 16px;
}

.contact-notice p {
  margin: 0;
  color: #755b35;
  font-size: 13px;
  line-height: 1.65;
}

@media (max-width: 720px) {
  .contact-hero { min-height: 340px; }
  .contact-hero-content { width: calc(100% - 36px); padding: 120px 0 48px; }
  .contact-content { width: calc(100% - 32px); padding: 46px 0 56px; }
  .contact-card-grid { grid-template-columns: 1fr; }
}

@media (max-width: 430px) {
  .contact-detail-card { grid-template-columns: 44px minmax(0, 1fr); gap: 14px; padding: 20px; }
  .contact-card-mark { width: 44px; height: 44px; border-radius: 12px; font-size: 11px; }
  .contact-notice { grid-template-columns: 1fr; padding: 20px; }
}

/* Premium contact layout */
.contact-content {
  width: min(1160px, calc(100% - 48px));
  padding: 78px 0 88px;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  border-radius: 26px;
  box-shadow: 0 28px 75px rgba(21, 29, 44, .14);
}

.contact-story {
  position: relative;
  min-height: 570px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 50px;
  overflow: hidden;
  padding: 58px 52px 48px;
  border-radius: 26px 0 0 26px;
  color: #fff;
  background: linear-gradient(145deg, #171d2b 0%, #232b3f 100%);
}

.contact-story::before {
  content: "";
  position: absolute;
  right: -135px;
  bottom: -145px;
  width: 360px;
  height: 360px;
  border: 58px solid rgba(238, 76, 29, .15);
  border-radius: 50%;
}

.contact-story::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 92px;
  height: 6px;
  background: linear-gradient(90deg, #d7192d, #f36b2b);
}

.contact-story-copy,
.contact-story .contact-notice {
  position: relative;
  z-index: 1;
}

.contact-section-kicker,
.contact-directory-head > span {
  display: block;
  margin-bottom: 18px;
  color: #f78a5b;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.2px;
}

.contact-story-copy h2 {
  max-width: 430px;
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(30px, 4vw, var(--contact-intro-title-size, 50px));
  line-height: 1.05;
  letter-spacing: -.9px;
}

.contact-story-copy p {
  max-width: 470px;
  margin: 0;
  color: #c3cad7;
  font-size: var(--contact-body-size, 15px);
  line-height: 1.78;
}

.contact-story .contact-notice {
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 15px;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 14px;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(6px);
}

.contact-story .contact-notice > span {
  width: 38px;
  height: 38px;
  color: #fff;
  background: #e74b21;
  font-size: 18px;
}

.contact-story .contact-notice h2 {
  margin: 0 0 5px;
  color: #fff;
  font-size: 14px;
}

.contact-story .contact-notice p {
  color: #c6ceda;
  font-size: 12px;
  line-height: 1.6;
}

.contact-directory {
  min-width: 0;
  padding: 57px 52px 42px;
  border: 1px solid #e4e7ed;
  border-left: 0;
  border-radius: 0 26px 26px 0;
  background: #fff;
}

.contact-directory-head {
  padding-bottom: 27px;
}

.contact-directory-head > span {
  margin-bottom: 12px;
  color: #cf341b;
}

.contact-directory-head h2 {
  max-width: 500px;
  margin: 0;
  color: #172133;
  font-size: clamp(24px, 3vw, var(--contact-details-title-size, 36px));
  line-height: 1.17;
  letter-spacing: -.5px;
}

.contact-detail-list {
  border-top: 1px solid #e7e9ee;
}

.contact-detail-row {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 25px 0;
  border-bottom: 1px solid #e7e9ee;
}

.contact-detail-icon {
  position: relative;
  width: 48px;
  height: 48px;
  display: block;
  border: 1px solid #ffd6c8;
  border-radius: 14px;
  color: #df4320;
  background: #fff3ee;
}

.contact-icon-email::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 16px;
  width: 18px;
  height: 13px;
  border: 2px solid currentColor;
  border-radius: 2px;
}

.contact-icon-email::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 12px;
  width: 11px;
  height: 11px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  background: #fff3ee;
  transform: rotate(45deg);
}

.contact-icon-phone::before {
  content: "☎";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: "Segoe UI Symbol", Arial, sans-serif;
  font-size: 23px;
  line-height: 1;
}

.contact-icon-location::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 11px;
  width: 17px;
  height: 17px;
  border: 2px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.contact-icon-location::after {
  content: "";
  position: absolute;
  left: 21px;
  top: 17px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.contact-icon-clock::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 13px;
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.contact-icon-clock::after {
  content: "";
  position: absolute;
  left: 23px;
  top: 17px;
  width: 5px;
  height: 7px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.contact-detail-row h3 {
  margin: 0 0 7px;
  color: #1d2739;
  font-size: 14px;
  line-height: 1.3;
}

.contact-detail-row p,
.contact-detail-row a {
  margin: 0;
  color: #616c7d;
  font-size: var(--contact-body-size, 15px);
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.contact-detail-row a {
  color: #ca341c;
  font-weight: 800;
}

.contact-detail-row a:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .contact-shell { grid-template-columns: 1fr; }
  .contact-story { min-height: 500px; border-radius: 24px 24px 0 0; }
  .contact-directory { border-top: 0; border-left: 1px solid #e4e7ed; border-radius: 0 0 24px 24px; }
}

@media (max-width: 720px) {
  .contact-content { width: calc(100% - 28px); padding: 45px 0 58px; }
  .contact-story { min-height: auto; padding: 43px 28px 30px; }
  .contact-directory { padding: 39px 28px 30px; }
  .contact-story-copy h2 { font-size: 36px; }
}

@media (max-width: 430px) {
  .contact-story { gap: 35px; padding: 38px 22px 24px; }
  .contact-directory { padding: 34px 22px 25px; }
  .contact-detail-row { grid-template-columns: 48px minmax(0, 1fr); gap: 14px; }
  .contact-detail-icon { transform: scale(.9); transform-origin: top left; }
  .contact-story .contact-notice { grid-template-columns: 34px minmax(0, 1fr); }
  .contact-story .contact-notice > span { width: 34px; height: 34px; }
}

/* Professional jobs directory */
.jobs-page {
  background: #f4f5f7;
}

.jobs-page .jobs-visual-hero {
  min-height: 430px;
  border-bottom: 7px solid #202631;
}

.jobs-page .jobs-visual-hero .hero-image {
  object-position: center 8%;
}

.jobs-page .jobs-visual-hero .hero-overlay {
  background: linear-gradient(90deg, rgba(9, 15, 25, .88) 0%, rgba(9, 15, 25, .68) 34%, rgba(9, 15, 25, .12) 64%, rgba(9, 15, 25, .18) 100%);
}

.jobs-hero-content {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 64px));
  margin: 0 auto;
  padding: 72px 0 56px;
  align-self: center;
}

.jobs-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.jobs-hero-eyebrow > span {
  width: 34px;
  height: 1px;
  flex: 0 0 auto;
  background: rgba(255, 255, 255, .82);
}

.jobs-hero-eyebrow p {
  margin: 0;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
}

.jobs-hero-content h1 {
  max-width: 365px;
  margin: 0 0 14px;
  font-size: clamp(29px, 2.6vw, 36px);
  line-height: 1.1;
  letter-spacing: -.5px;
}

.jobs-hero-copy {
  max-width: 380px;
  margin: 0;
  color: rgba(255, 255, 255, .9);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.7;
}

.jobs-section {
  padding: 58px 0 76px;
}

.jobs-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.jobs-toolbar > div > span {
  display: block;
  margin-bottom: 10px;
  color: #d83d20;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.8px;
}

.jobs-toolbar h2 {
  margin: 0 0 9px;
  color: #172135;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
  letter-spacing: -.7px;
}

.jobs-toolbar p {
  max-width: 620px;
  margin: 0;
  color: #667084;
  font-size: 14px;
  line-height: 1.6;
}

.jobs-toolbar > strong {
  flex: 0 0 auto;
  padding: 9px 13px;
  border: 1px solid #e0e4ea;
  border-radius: 999px;
  color: #3b4659;
  background: #fff;
  box-shadow: 0 5px 16px rgba(24, 34, 53, .05);
  font-size: 12px;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 30px;
  padding-bottom: 22px;
  border-bottom: 1px solid #dde1e8;
}

.filter-row .filter {
  min-height: 39px;
  padding: 0 16px;
  border: 1px solid #d6dbe4;
  border-radius: 999px;
  color: #485468;
  background: #fff;
  box-shadow: 0 3px 10px rgba(24, 34, 53, .035);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}

.filter-row .filter:hover {
  transform: translateY(-1px);
  border-color: #e35a3c;
  color: #c9371c;
}

.filter-row .filter.active {
  border-color: #d83b1e;
  color: #fff;
  background: linear-gradient(90deg, #d7192d, #ee5528);
  box-shadow: 0 8px 18px rgba(215, 25, 45, .18);
}

.filter-row .filter:focus-visible {
  outline: 3px solid rgba(216, 61, 32, .2);
  outline-offset: 2px;
}

.jobs-section .job-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 18px;
}

.jobs-section .job-card.opening-card {
  display: flex;
  flex: 0 0 calc((100% - 72px) / 5);
  flex-direction: column;
  min-width: 0;
  min-height: 278px;
  border: 1px solid #dfe4eb;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 9px 24px rgba(21, 30, 47, .09);
  transition: transform .28s ease, box-shadow .28s ease;
}

.jobs-section .job-card.opening-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 32px rgba(21, 30, 47, .15);
}

.jobs-section .opening-media {
  position: relative;
  height: 150px;
  flex: 0 0 150px;
  overflow: hidden;
  background: #e8ebef;
}

.jobs-section .opening-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  transition: transform .5s ease;
}

.jobs-section .opening-card:hover .opening-media img {
  transform: scale(1.035);
}

.jobs-section .opening-card.is-unavailable .opening-media img {
  filter: grayscale(.55);
}

.jobs-section .opening-card.is-unavailable .outline-button {
  cursor: pointer;
}

.jobs-section .vacancy-button {
  font-family: inherit;
  appearance: none;
}

.vacancy-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(9, 18, 32, .58);
}

.vacancy-modal.show {
  display: grid;
}

.vacancy-modal-card {
  position: relative;
  width: min(430px, 100%);
  padding: 30px 28px 26px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(0,0,0,.22);
  text-align: center;
}

.vacancy-modal-card > span {
  color: #da1738;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.4px;
}

.vacancy-modal-card h2 {
  margin: 10px 0 9px;
  color: #122640;
  font-size: 26px;
  line-height: 1.2;
}

.vacancy-modal-card p {
  margin: 0 0 22px;
  color: #5d6878;
  font-size: 14px;
  line-height: 1.55;
}

.vacancy-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #f2f4f7;
  color: #26364d;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.jobs-section .opening-card[data-job-id="pilot"] .opening-media img { object-position: center 30%; }
.jobs-section .opening-card[data-job-id="cabin-crew"] .opening-media img { object-position: center 27%; }
.jobs-section .opening-card[data-job-id="ground-staff"] .opening-media img { object-position: center 38%; }
.jobs-section .opening-card[data-job-id="security-service"] .opening-media img { object-position: center 24%; }
.jobs-section .opening-card[data-job-id="flight-operations"] .opening-media img { object-position: center 35%; }
.jobs-section .opening-card[data-job-id="engineering"] .opening-media img { object-position: center 47%; }
.jobs-section .opening-card[data-job-id="sales-marketing"] .opening-media img { object-position: center 42%; }
.jobs-section .opening-card[data-job-id="information-technology"] .opening-media img { object-position: center 42%; }
.jobs-section .opening-card[data-job-id="finance"] .opening-media img { object-position: center 38%; }
.jobs-section .opening-card[data-job-id="cargo-driver"] .opening-media img { object-position: center 38%; }

.jobs-section .opening-content {
  display: flex;
  height: auto;
  min-height: 128px;
  flex: 1;
  flex-direction: column;
  justify-content: flex-start;
  padding: 16px 15px 15px;
  color: #172135;
}

.jobs-section .opening-content h3 {
  min-height: 34px;
  margin-bottom: 5px;
  color: #172135;
  font-size: 15px;
  line-height: 1.15;
}

.jobs-section .opening-content p {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 13px;
  padding: 0;
  color: #6b7485;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

.jobs-section .opening-content p svg {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  fill: none;
  stroke: #db3d23;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.jobs-section .outline-button {
  min-height: 32px;
  margin-top: auto;
  padding: 0 12px;
  border-color: #cfd5df;
  border-radius: 5px;
  color: #263247;
  background: #fff;
  font-size: 9px;
  letter-spacing: .4px;
}

.jobs-section .outline-button:hover {
  color: #fff;
  border-color: #d83d20;
  background: #d83d20;
}

.jobs-section .empty-state {
  width: 100%;
  margin: 0;
  border: 1px solid #e1e5eb;
  border-radius: 12px;
  text-align: center;
}

@media (max-width: 980px) {
  .jobs-section .job-card.opening-card { flex-basis: calc((100% - 36px) / 3); }
}

@media (max-width: 760px) {
  .jobs-section .job-card.opening-card { flex-basis: calc((100% - 18px) / 2); }
}

@media (max-width: 620px) {
  .jobs-section { padding: 42px 0 54px; }
  .jobs-toolbar { align-items: flex-start; flex-direction: column; gap: 16px; }
  .filter-row { gap: 7px; margin-bottom: 24px; }
  .filter-row .filter { min-height: 36px; padding: 0 13px; font-size: 11px; }
  .jobs-section .job-card.opening-card { min-height: 278px; }
  .jobs-section .opening-media {
    width: 100%;
    height: auto;
    flex: 0 0 auto;
    aspect-ratio: 1 / 1;
  }
  .jobs-section .opening-media img {
    object-fit: cover;
    object-position: center;
  }
  .jobs-section .opening-card:hover .opening-media img { transform: none; }
  .jobs-page .jobs-visual-hero { min-height: 460px; }
  .jobs-page .jobs-visual-hero .hero-image { object-position: 60% 8%; }
  .jobs-page .jobs-visual-hero .hero-overlay {
    background: linear-gradient(0deg, rgba(9, 15, 25, .94) 0%, rgba(9, 15, 25, .66) 52%, rgba(9, 15, 25, .14) 100%);
  }
  .jobs-hero-content {
    width: calc(100% - 40px);
    padding: 150px 0 32px;
    align-self: end;
  }
  .jobs-hero-eyebrow { margin-bottom: 16px; }
  .jobs-hero-eyebrow p { font-size: 10px; letter-spacing: 1.5px; }
  .jobs-hero-content h1 {
    max-width: 340px;
    margin-bottom: 14px;
    font-size: clamp(30px, 9vw, 38px);
    letter-spacing: -.8px;
  }
  .jobs-hero-copy { max-width: 340px; font-size: 13px; line-height: 1.55; }
}

@media (max-width: 440px) {
  .jobs-section .job-card.opening-card { flex-basis: 100%; }
  .jobs-section .opening-media {
    height: auto;
    flex-basis: auto;
    aspect-ratio: 1 / 1;
  }
}

/* Unified AI Connect palette - remove this section to restore the previous colours. */
:root {
  --air-red: #da0e2b;
  --air-aubergine: #6f1d53;
  --air-gold: #9e7947;
  --air-ivory: #f9f6ee;
  --air-ink: #212529;
  --page: #f9f6ee;
  --muted: #625e63;
}

body,
.jobs-page,
.contact-page {
  color: var(--air-ink);
  background: var(--air-ivory);
}

.button:hover,
.job-search button:hover,
.form-card button:hover {
  background: #b61032;
}

.jobs-page .jobs-visual-hero {
  border-bottom-color: var(--air-aubergine);
}

.jobs-page .jobs-visual-hero .hero-overlay {
  background: linear-gradient(90deg, rgba(35, 15, 31, .9) 0%, rgba(66, 24, 53, .7) 34%, rgba(71, 25, 57, .12) 65%, rgba(34, 18, 31, .2) 100%);
}

.jobs-toolbar > div > span,
.jobs-hero-eyebrow p {
  color: var(--air-red);
}

.jobs-hero-eyebrow p {
  color: #fff;
}

.jobs-toolbar h2,
.jobs-section .opening-content h3 {
  color: var(--air-ink);
}

.jobs-toolbar p,
.jobs-section .opening-content p {
  color: #625f63;
}

.jobs-toolbar > strong,
.filter-row .filter,
.jobs-section .job-card.opening-card,
.jobs-section .empty-state {
  border-color: #ded8cd;
}

.filter-row {
  border-bottom-color: #ddd6ca;
}

.filter-row .filter {
  color: #4e494e;
  box-shadow: 0 3px 10px rgba(74, 46, 60, .045);
}

.filter-row .filter:hover {
  border-color: #c44a5d;
  color: #b61032;
}

.filter-row .filter.active {
  border-color: var(--air-red);
  background: linear-gradient(100deg, var(--air-red), var(--air-aubergine));
  box-shadow: 0 8px 18px rgba(111, 29, 83, .18);
}

.jobs-section .job-card.opening-card {
  box-shadow: 0 9px 24px rgba(71, 44, 56, .09);
}

.jobs-section .job-card.opening-card:hover {
  box-shadow: 0 15px 32px rgba(71, 44, 56, .15);
}

.jobs-section .opening-content p svg {
  stroke: var(--air-red);
}

.jobs-section .outline-button {
  border-color: #d3ccc1;
  color: #3c3339;
}

.jobs-section .outline-button:hover {
  border-color: var(--air-red);
  background: var(--air-red);
}

.contact-hero-overlay {
  background: linear-gradient(90deg, rgba(37, 15, 32, .92), rgba(83, 27, 64, .58) 58%, rgba(48, 22, 41, .3));
}

.contact-hero-content > span {
  color: #e0b27c;
}

.contact-content {
  background: transparent;
}

.contact-shell {
  box-shadow: 0 28px 75px rgba(72, 41, 57, .13);
}

.contact-story {
  background: linear-gradient(145deg, #35152f 0%, var(--air-aubergine) 100%);
}

.contact-story::before {
  border-color: rgba(202, 156, 103, .14);
}

.contact-story::after {
  background: linear-gradient(90deg, var(--air-red), #c99a67);
}

.contact-section-kicker,
.contact-directory-head > span {
  color: #ddb07a;
}

.contact-story-copy p,
.contact-story .contact-notice p {
  color: #e1d8df;
}

.contact-story .contact-notice > span {
  background: var(--air-red);
}

.contact-directory {
  border-color: #ded8cd;
}

.contact-directory-head > span,
.contact-detail-row a,
.contact-detail-card a {
  color: #b61032;
}

.contact-directory-head h2,
.contact-detail-row h3,
.contact-intro h2,
.contact-detail-card h2 {
  color: var(--air-ink);
}

.contact-detail-list,
.contact-detail-row {
  border-color: #e2dcd2;
}

.contact-detail-icon,
.contact-card-mark {
  border-color: #ead2d5;
  color: var(--air-red);
  background: #fff2f3;
}

.contact-icon-email::after {
  background: #fff2f3;
}

.contact-notice {
  border-color: #dfc9a8;
  background: #fffaf0;
}

.detail-panel,
.application-panel,
.typeform-layout .application-panel {
  border-color: #ded8cd;
  box-shadow: 0 18px 42px rgba(71, 44, 56, .1);
}

.application-panel::before {
  background: linear-gradient(90deg, var(--air-red), var(--air-gold));
}

.detail-apply-form input:focus,
.detail-apply-form select:focus,
.detail-apply-form textarea:focus {
  border-color: var(--air-aubergine);
  box-shadow: 0 0 0 3px rgba(111, 29, 83, .1);
}

.verify-btn,
.typeform-sidebar,
.typeform-form input[type="file"]::file-selector-button,
.file-preview-visual {
  background: var(--air-aubergine);
}

.typeform-sidebar {
  background: linear-gradient(165deg, #35152f, var(--air-aubergine));
}

.typeform-step-list li.is-active b,
.typeform-step-list li.is-complete b,
.typeform-progress span,
.typeform-next,
.typeform-submit {
  border-color: var(--air-red);
  background: var(--air-red);
}

.typeform-heading > span,
.typeform-actions > span b {
  color: var(--air-red);
}

.application-modal-close:hover,
.application-modal-card h2 em,
.air-divider,
.document-icon,
.mail-icon {
  border-color: var(--air-red);
  color: var(--air-red);
}

.modal-brand strong {
  color: var(--air-aubergine);
}

.document-icon {
  background: #fff2f3;
}

.mail-icon {
  background: #fff8f7;
}

.application-number-box strong,
.success-copy b {
  color: #b61032;
}

.modal-careers-button {
  background: linear-gradient(100deg, var(--air-red), var(--air-aubergine));
  box-shadow: 0 11px 22px rgba(111, 29, 83, .22);
}

.site-footer {
  border-top: 1px solid #ded7ca;
}

@media (max-width: 620px) {
  .jobs-page .jobs-visual-hero .hero-overlay {
    background: linear-gradient(0deg, rgba(42, 17, 36, .95) 0%, rgba(79, 27, 62, .68) 54%, rgba(40, 20, 35, .16) 100%);
  }
}

/* Candidate application status */
.candidate-status-page {
  min-height: 100vh;
  color: var(--air-ink);
  background: var(--air-ivory);
}

.candidate-status-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #35152f;
}

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

.candidate-status-hero > img {
  object-fit: cover;
  object-position: center 48%;
}

.candidate-status-hero-overlay {
  background: linear-gradient(90deg, rgba(34, 15, 30, .96) 0%, rgba(81, 25, 62, .82) 45%, rgba(42, 20, 34, .42) 100%);
}

.candidate-status-hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 108px 0 72px;
}

.candidate-status-hero-content > span,
.status-lookup-heading span,
.candidate-profile-title > span,
.candidate-status-message span,
.candidate-section-heading > span {
  display: block;
  color: #d5a66d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.candidate-status-hero-content > span {
  font-size: 8px;
}

.candidate-status-hero-content h1 {
  max-width: 590px;
  margin: 14px 0 12px;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.04;
  letter-spacing: -1.25px;
}

.candidate-status-hero-content p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, .84);
  font-size: 11px;
  line-height: 1.65;
}

.candidate-status-content {
  width: min(1180px, calc(100% - 48px));
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  padding: 46px 0 52px;
  position: relative;
  z-index: 2;
}

.status-lookup-card,
.candidate-record {
  border: 1px solid #ded7ca;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(62, 38, 51, .13);
}

.status-lookup-card {
  position: relative;
  width: min(500px, 100%);
  padding: 28px 30px 24px;
  overflow: hidden;
}

.status-lookup-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--air-red), var(--air-aubergine), var(--air-gold));
}

.status-lookup-heading {
  display: block;
  margin-bottom: 22px;
  text-align: center;
}

.status-lookup-heading span,
.candidate-section-heading > span {
  color: var(--air-red);
}

.status-lookup-heading h2 {
  margin: 7px 0 0;
  color: #241d22;
  font-size: 26px;
  letter-spacing: -.5px;
}

.status-lookup-heading p {
  max-width: 390px;
  margin: 8px auto 0;
  color: #696268;
  font-size: 13px;
  line-height: 1.55;
}

.status-lookup-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 13px;
}

.status-lookup-form label {
  display: grid;
  gap: 8px;
}

.status-lookup-form label > span {
  color: #4d464b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .75px;
  text-transform: uppercase;
}

.status-lookup-form input {
  width: 100%;
  height: 48px;
  padding: 0 15px;
  border: 1px solid #d6cfc4;
  border-radius: 7px;
  color: #211b1f;
  background: #fff;
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.status-lookup-form input:focus {
  border-color: var(--air-aubergine);
  box-shadow: 0 0 0 3px rgba(111, 29, 83, .1);
}

.status-lookup-form button {
  width: 100%;
  min-width: 0;
  height: 49px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 20px;
  border: 0;
  border-radius: 7px;
  color: #fff;
  background: linear-gradient(105deg, var(--air-red), var(--air-aubergine));
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(111, 29, 83, .2);
}

.status-lookup-form button span {
  color: #e1bd8e;
  font-size: 18px;
  transition: transform .2s ease;
}

.status-lookup-form button:hover span { transform: translateX(4px); }

.status-lookup-privacy {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 16px;
  padding: 11px 12px;
  border: 1px solid #e7dfd3;
  border-radius: 7px;
  color: #777076;
  background: #fbf8f2;
}

.status-lookup-privacy > span {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #2f7754;
  font-size: 11px;
  font-weight: 900;
}

.status-lookup-privacy p {
  margin: 0;
  font-size: 10px;
  line-height: 1.55;
}

.status-lookup-error {
  display: grid;
  gap: 4px;
  margin: -2px 0 18px;
  padding: 13px 15px;
  border-left: 3px solid var(--air-red);
  border-radius: 4px;
  color: #6f1628;
  background: #fff1f3;
  font-size: 12px;
}

.candidate-record {
  width: 100%;
  margin-top: 28px;
  overflow: hidden;
}

.candidate-record-header {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 30px;
  border-bottom: 1px solid #e3ddd3;
  background: #fff;
}

.candidate-record-brand {
  display: flex;
  align-items: center;
  gap: 20px;
}

.candidate-record-brand img {
  width: 168px;
  height: auto;
}

.candidate-record-brand span {
  padding-left: 20px;
  border-left: 1px solid #ddd5ca;
  color: #6b6469;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.candidate-record-reference {
  text-align: right;
}

.candidate-record-reference span,
.candidate-current-status > span {
  display: block;
  margin-bottom: 5px;
  color: #777076;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.candidate-record-reference strong {
  color: var(--air-aubergine);
  font-size: 17px;
  letter-spacing: .4px;
}

.candidate-profile-summary {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  padding: 30px;
  background: linear-gradient(120deg, #fff 35%, #fcf9f3 100%);
}

.candidate-photo {
  width: 128px;
  height: 148px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid #d8d0c5;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(145deg, #35152f, var(--air-aubergine));
  box-shadow: 0 12px 30px rgba(59, 35, 48, .15);
}

.candidate-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.candidate-photo span {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 2px;
}

.candidate-profile-title > span { color: var(--air-red); }

.candidate-profile-title h2 {
  margin: 10px 0 9px;
  color: #241d22;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.05;
  letter-spacing: -.8px;
}

.candidate-profile-title p {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0;
  color: #625b61;
  font-size: 13px;
  line-height: 1.5;
}

.candidate-profile-title p i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--air-gold);
}

.candidate-current-status {
  min-width: 190px;
  padding: 19px 20px;
  border: 1px solid #e1d9ce;
  border-radius: 10px;
  background: rgba(255, 255, 255, .85);
}

.candidate-status-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  color: #552141;
  background: #f2e5ee;
  font-size: 12px;
  font-weight: 800;
}

.candidate-status-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-radius: 50%;
  background: currentColor;
}

.candidate-status-pill.status-selected { color: #176340; background: #e5f4eb; }
.candidate-status-pill.status-rejected { color: #8b1d2c; background: #fde8ed; }
.candidate-status-pill.status-on-hold { color: #80530b; background: #fff2d8; }

.candidate-current-status small {
  display: block;
  margin-top: 10px;
  color: #817980;
  font-size: 9px;
  line-height: 1.4;
}

.candidate-status-message {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  margin: 0 30px;
  padding: 22px 24px;
  border: 1px solid #e1cfb4;
  border-radius: 10px;
  background: #fffaf0;
}

.candidate-status-message-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--air-aubergine);
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 700;
}

.candidate-status-message span { color: var(--air-gold); }

.candidate-status-message h3 {
  margin: 6px 0 6px;
  color: #30242c;
  font-size: 19px;
}

.candidate-status-message p {
  margin: 0;
  color: #5f575d;
  font-size: 13px;
  line-height: 1.7;
}

.application-journey,
.candidate-details-section {
  padding: 32px 30px;
}

.candidate-details-section {
  border-top: 1px solid #e4ddd3;
}

.candidate-section-heading h3 {
  margin: 6px 0 0;
  color: #2c2529;
  font-size: 22px;
}

.application-journey-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.application-journey-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  padding-right: 14px;
}

.application-journey-steps li::after {
  content: "";
  position: absolute;
  top: 16px;
  left: 34px;
  right: 0;
  height: 1px;
  background: #ddd6cc;
}

.application-journey-steps li:last-child::after { display: none; }

.application-journey-steps li > b {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid #d8d0c5;
  border-radius: 50%;
  color: #8a8288;
  background: #fff;
  font-size: 9px;
}

.application-journey-steps li.complete > b,
.application-journey-steps li.active > b {
  border-color: var(--air-aubergine);
  color: #fff;
  background: var(--air-aubergine);
}

.application-journey-steps li.complete::after { background: var(--air-aubergine); }
.application-journey-steps li.active.rejected > b { border-color: #8b1d2c; background: #8b1d2c; }

.application-journey-steps li > div {
  position: relative;
  z-index: 1;
  padding-top: 1px;
  background: #fff;
}

.application-journey-steps strong,
.application-journey-steps span {
  display: block;
}

.application-journey-steps strong {
  color: #40383d;
  font-size: 11px;
  line-height: 1.35;
}

.application-journey-steps span {
  margin-top: 3px;
  color: #8b8389;
  font-size: 9px;
  line-height: 1.4;
}

.application-hold-note {
  margin: 22px 0 0;
  padding: 11px 13px;
  border-radius: 5px;
  color: #6f4a0d;
  background: #fff3dc;
  font-size: 11px;
}

.candidate-details-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.candidate-details-grid > div {
  min-height: 92px;
  padding: 17px 18px;
  border: 1px solid #e0d9cf;
  border-radius: 8px;
  background: #fcfbf8;
}

.candidate-details-grid span,
.candidate-details-grid strong {
  display: block;
}

.candidate-details-grid span {
  margin-bottom: 8px;
  color: #7f777d;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .85px;
  text-transform: uppercase;
}

.candidate-details-grid strong {
  overflow-wrap: anywhere;
  color: #2f282c;
  font-size: 13px;
  line-height: 1.55;
}

.candidate-details-grid .candidate-address {
  grid-column: span 3;
  min-height: auto;
}

.candidate-record-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 30px;
  color: #ddd2da;
  background: linear-gradient(115deg, #35152f, var(--air-aubergine));
}

.candidate-record-footer p {
  max-width: 720px;
  margin: 0;
  font-size: 11px;
  line-height: 1.55;
}

.candidate-record-footer strong { color: #fff; }

.candidate-record-footer a {
  flex: 0 0 auto;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(255,255,255,.6);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

@media (max-width: 900px) {
  .status-lookup-form { grid-template-columns: 1fr; }
  .status-lookup-form button { grid-column: auto; }
  .candidate-profile-summary { grid-template-columns: 112px minmax(0, 1fr); }
  .candidate-photo { width: 112px; height: 132px; }
  .candidate-current-status { grid-column: 1 / -1; }
  .application-journey-steps { grid-template-columns: 1fr; gap: 13px; }
  .application-journey-steps li { grid-template-columns: 34px 1fr; }
  .application-journey-steps li::after { top: 34px; bottom: -13px; left: 17px; width: 1px; height: auto; }
  .application-journey-steps li > div { padding: 2px 0 0; }
}

@media (max-width: 680px) {
  .candidate-status-hero { min-height: 340px; }
  .candidate-status-hero-content,
  .candidate-status-content { width: min(100% - 30px, 1180px); }
  .candidate-status-hero-content { padding: 96px 0 68px; }
  .candidate-status-hero-content h1 { font-size: 25px; }
  .candidate-status-hero-content p { font-size: 10px; }
  .candidate-status-content {
    min-height: 0;
    margin: 0 auto;
    padding: 32px 0 40px;
  }
  .status-lookup-card { padding: 24px 18px 18px; border-radius: 12px; }
  .status-lookup-heading { display: block; }
  .status-lookup-heading p { margin-top: 9px; }
  .status-lookup-form { grid-template-columns: 1fr; }
  .status-lookup-form button { grid-column: auto; min-width: 0; }
  .candidate-record { border-radius: 12px; }
  .candidate-record-header { align-items: flex-start; padding: 18px; }
  .candidate-record-brand { display: block; }
  .candidate-record-brand img { width: 140px; }
  .candidate-record-brand span { display: block; margin-top: 10px; padding: 0; border: 0; }
  .candidate-record-reference { text-align: right; }
  .candidate-record-reference strong { font-size: 12px; }
  .candidate-profile-summary { grid-template-columns: 88px minmax(0, 1fr); gap: 16px; padding: 22px 18px; }
  .candidate-photo { width: 88px; height: 108px; }
  .candidate-profile-title h2 { font-size: 25px; }
  .candidate-profile-title p i { display: none; }
  .candidate-profile-title p { display: grid; gap: 2px; }
  .candidate-status-message { grid-template-columns: 36px 1fr; gap: 12px; margin: 0 18px; padding: 18px; }
  .candidate-status-message-mark { width: 36px; height: 36px; }
  .application-journey,
  .candidate-details-section { padding: 28px 18px; }
  .candidate-details-grid { grid-template-columns: 1fr; }
  .candidate-details-grid .candidate-address { grid-column: auto; }
  .candidate-record-footer { align-items: flex-start; flex-direction: column; padding: 20px 18px; }
}

@media (max-width: 460px) {
  .candidate-record-header { display: block; }
  .candidate-record-reference { margin-top: 16px; text-align: left; }
  .candidate-profile-summary { grid-template-columns: 1fr; }
  .candidate-photo { width: 104px; height: 124px; }
  .candidate-current-status { min-width: 0; }
}

/* Compact, balanced application form sizing */
.typeform-layout {
  width: min(1120px, calc(100% - 40px));
  padding-top: 32px;
  padding-bottom: 44px;
}

.typeform-layout .application-panel {
  grid-template-columns: 240px minmax(0, 1fr);
  min-height: 610px;
  border-radius: 18px;
}

.typeform-sidebar {
  padding: 30px 24px 24px;
}

.typeform-brand {
  padding-bottom: 22px;
}

.typeform-brand strong {
  font-size: 20px;
}

.typeform-step-list {
  margin: 30px 0 24px;
}

.typeform-step-list li {
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  min-height: 64px;
}

.typeform-step-list li::after {
  left: 18px;
  top: 51px;
  height: 31px;
}

.typeform-step-list b {
  width: 38px;
  height: 38px;
}

.typeform-step-list span {
  font-size: 13px;
}

.typeform-sidebar > p {
  padding: 12px 12px 12px 38px;
  font-size: 10px;
}

.typeform-sidebar > p::before {
  left: 12px;
  top: 12px;
}

.typeform-main {
  padding: 30px 38px 26px;
}

.typeform-progress-row {
  gap: 18px;
  margin-bottom: 30px;
}

.typeform-progress {
  height: 6px;
}

.typeform-heading {
  margin-bottom: 24px;
  padding-bottom: 20px;
}

.typeform-heading > span {
  margin-bottom: 8px;
  font-size: 10px;
}

.typeform-layout .typeform-heading h2 {
  max-width: 650px;
  margin-bottom: 8px;
  font-size: clamp(25px, 2.2vw, 32px);
  letter-spacing: -.55px;
}

.typeform-heading p {
  font-size: 13px;
}

.form-step-grid {
  gap: 17px 18px;
}

.typeform-form label {
  gap: 7px;
}

.typeform-form label > span {
  font-size: 10px;
}

.typeform-form input,
.typeform-form select,
.typeform-form textarea {
  min-height: 46px;
  padding: 11px 13px;
  border-radius: 8px;
  font-size: 13px;
}

.typeform-form textarea {
  min-height: 104px;
}

.typeform-form .verify-btn {
  min-height: 46px;
  border-radius: 8px;
}

.typeform-actions {
  margin-top: 28px;
  padding-top: 20px;
}

.typeform-back,
.typeform-next,
.typeform-submit {
  min-height: 46px;
  padding: 0 20px;
  border-radius: 8px;
}

.typeform-next,
.typeform-submit {
  min-width: 132px;
}

@media (max-width: 900px) {
  .typeform-layout {
    width: min(100% - 28px, 1120px);
  }

  .typeform-layout .application-panel {
    grid-template-columns: 1fr;
    min-height: 0;
    border-radius: 16px;
  }

  .typeform-sidebar {
    padding: 22px 24px;
  }

  .typeform-brand {
    padding-bottom: 16px;
  }

  .typeform-step-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 6px;
    margin: 18px 0 0;
  }

  .typeform-step-list li {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 7px;
    min-height: 36px;
  }

  .typeform-step-list li::after,
  .typeform-sidebar > p {
    display: none;
  }

  .typeform-step-list b {
    width: 32px;
    height: 32px;
  }

  .typeform-step-list span {
    font-size: 10px;
  }

  .typeform-main {
    padding: 30px 28px 26px;
  }
}

@media (max-width: 620px) {
  .typeform-layout {
    width: calc(100% - 18px);
    padding-top: 18px;
  }

  .typeform-sidebar {
    padding: 20px 16px;
  }

  .typeform-main {
    padding: 24px 18px 22px;
  }

  .typeform-layout .typeform-heading h2 {
    font-size: 25px;
  }

  .form-step-grid {
    grid-template-columns: 1fr;
  }

  .typeform-actions {
    flex-wrap: wrap;
  }
}

/* Unified role information card */
.typeform-layout .role-information-panel {
  grid-column: 1 / -1;
  overflow: hidden;
  padding: 0;
  border-radius: 16px;
}

.role-information-overview,
.role-information-columns > section {
  padding: 24px 28px;
}

.role-information-overview {
  border-bottom: 1px solid #e8e3dc;
}

.role-information-columns {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
}

.role-information-columns > section + section {
  border-left: 1px solid #e8e3dc;
}

.typeform-layout .role-information-panel h2 {
  margin-bottom: 11px;
  color: #17233a;
  font-size: 18px;
}

.typeform-layout .role-information-panel .page-copy,
.typeform-layout .role-information-panel .detail-list li {
  color: #556276;
  font-size: 12px;
  line-height: 1.55;
}

.typeform-layout .role-information-panel .page-copy:last-child,
.typeform-layout .role-information-panel .detail-list li:last-child {
  margin-bottom: 0;
}

@media (max-width: 720px) {
  .role-information-overview,
  .role-information-columns > section {
    padding: 21px 20px;
  }

  .role-information-columns {
    grid-template-columns: 1fr;
  }

  .role-information-columns > section + section {
    border-top: 1px solid #e8e3dc;
    border-left: 0;
  }
}

/* Campaign-style role heroes */
.campaign-role-hero {
  min-height: 400px;
  align-items: end;
  border-bottom-width: 7px;
}

.cabin-crew-hero .hero-image {
  object-position: center 42%;
}

.campaign-role-hero .hero-overlay {
  background:
    linear-gradient(90deg, rgba(25, 10, 22, .16), rgba(25, 10, 22, .03) 50%, rgba(25, 10, 22, .16)),
    linear-gradient(0deg, rgba(20, 9, 18, .7), rgba(20, 9, 18, .02) 58%);
}

.campaign-role-hero .hero-content {
  padding: 0 0 28px;
  text-shadow: 0 3px 18px rgba(0, 0, 0, .56);
}

.campaign-role-hero h1 {
  font-size: clamp(22px, 2.2vw, 29px);
  letter-spacing: -.35px;
  text-transform: uppercase;
}

.ground-staff-hero .hero-image {
  object-position: center 48%;
}

.security-service-hero .hero-image {
  object-position: center 46%;
}

@media (max-width: 680px) {
  .campaign-role-hero {
    min-height: 380px;
  }

  .cabin-crew-hero .hero-image {
    object-position: 51% center;
  }

  .campaign-role-hero .hero-content {
    padding: 0 0 22px;
  }

  .campaign-role-hero h1 {
    font-size: 21px;
  }

  .ground-staff-hero .hero-image {
    object-position: 52% center;
  }

  .security-service-hero .hero-image {
    object-position: 50% center;
  }
}

