:root {
  --blue: #1f5aa6;
  --blue-dark: #092b5a;
  --red: #ef1b33;
  --ink: #101828;
  --muted: #667085;
  --line: #d8e0ec;
  --paper: #f6f8fc;
  --paper-strong: #edf2f8;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(16, 24, 40, 0.14);
  --soft-shadow: 0 14px 34px rgba(16, 24, 40, 0.08);
  --radius: 22px;
  --radius-small: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: calc(16px * var(--a11y-font-scale, 1));
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 92% 2%, rgba(31, 90, 166, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0, var(--paper) 820px),
    var(--paper);
  font-family: Arial, "Helvetica Neue", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid #ffbf47;
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(216, 224, 236, 0.7);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 34px rgba(16, 24, 40, 0.07);
  backdrop-filter: blur(16px);
}

.brand img,
.brand-logo {
  display: block;
  width: 112px;
  max-width: 112px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 36px);
  color: var(--blue-dark);
  font-weight: 800;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--red);
  content: "";
  transition: width 180ms ease;
}

.site-nav a:hover::after {
  width: 100%;
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--red);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  direction: ltr;
  white-space: nowrap;
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-small);
  font-weight: 900;
}

.header-cta {
  padding: 12px 20px;
  direction: rtl;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
  box-shadow: 0 12px 24px rgba(31, 90, 166, 0.18);
}

.header-cta-primary {
  order: 2;
  border: 1px solid rgba(31, 90, 166, 0.24);
  background: #ffffff;
  color: var(--blue);
  box-shadow: none;
}

.header-cta-secondary {
  order: 1;
  border: 0;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
  box-shadow: 0 12px 24px rgba(31, 90, 166, 0.18);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(650px, 82vh);
  align-items: center;
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
}

.hero::before {
  position: absolute;
  inset: auto 0 0 auto;
  z-index: 1;
  width: min(42%, 520px);
  height: 7px;
  background: linear-gradient(90deg, var(--red), var(--blue));
  content: "";
}

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

.hero-image {
  object-fit: cover;
  object-position: 42% center;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.24) 38%, rgba(255, 255, 255, 0.88) 66%, #ffffff),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.82));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin-inline-start: auto;
  margin-inline-end: clamp(18px, 5vw, 72px);
  padding: clamp(34px, 5vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 28px 80px rgba(9, 43, 90, 0.12);
  backdrop-filter: blur(14px);
  text-align: right;
  direction: rtl;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--red);
  font-weight: 900;
}

.eyebrow::before {
  display: none;
  content: none;
}

.eyebrow.dark {
  color: var(--red);
}

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

h1 {
  max-width: 620px;
  margin-bottom: 18px;
  color: var(--blue-dark);
  font-size: clamp(2.05rem, 4vw, 3.65rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--blue-dark);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--blue-dark);
  font-size: 1.26rem;
}

.hero-content p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  padding: 13px 24px;
  transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease, background 180ms ease;
}

.button.primary {
  background: linear-gradient(135deg, var(--red), #c91025);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(239, 27, 51, 0.2);
}

.button.mail {
  border: 1px solid rgba(10, 53, 104, 0.18);
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(29, 91, 172, 0.18);
}

.button.ghost {
  border: 1px solid var(--line);
  color: var(--blue-dark);
  background: var(--white);
  box-shadow: 0 10px 22px rgba(16, 24, 40, 0.07);
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.signal-strip {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1120px;
  margin: -28px auto 0;
  border: 1px solid rgba(216, 224, 236, 0.72);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.signal-strip div {
  padding: 22px 22px;
  border-inline-start: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(31, 90, 166, 0.035), transparent),
    var(--white);
}

.signal-strip div:last-child {
  border-inline-start: 0;
}

.signal-strip strong {
  display: block;
  color: var(--blue-dark);
  font-size: clamp(1.2rem, 2.1vw, 1.75rem);
  line-height: 1;
}

.signal-strip span {
  color: var(--muted);
  font-weight: 800;
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(76px, 9vw, 124px) clamp(20px, 4vw, 34px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-heading h2,
.profile-copy h2,
.trust-copy h2,
.contact-copy h2,
.employee-copy h2 {
  position: relative;
}

.section-heading h2::after,
.profile-copy h2::after,
.trust-copy h2::after,
.contact-copy h2::after,
.employee-copy h2::after {
  display: none;
  content: none;
}

.section-heading p,
.service-card p,
.why-list p,
.process-grid p,
.profile-copy p,
.trust-copy p,
.employee-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 120px;
  padding: 18px 22px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: 0 16px 34px rgba(16, 24, 40, 0.06);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--red), var(--blue));
  content: "";
}

.service-card span {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 14px;
  background: rgba(239, 27, 51, 0.08);
  color: var(--red);
  font-weight: 900;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 90, 166, 0.28);
  box-shadow: 0 24px 54px rgba(16, 24, 40, 0.1);
}

.why-band {
  background:
    linear-gradient(180deg, #ffffff, #f8fafd);
}

.profile-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 60px);
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(38px, 4.5vw, 62px) clamp(20px, 4vw, 34px) clamp(76px, 9vw, 124px);
  align-items: center;
}

.profile-image {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.profile-image img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
}

.profile-image .about-slide-one {
  animation: aboutSlideOne 21s ease-in-out infinite;
}

.profile-image .about-slide-two,
.profile-image .about-slide-three {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.profile-image .about-slide-two {
  animation: aboutSlideTwo 21s ease-in-out infinite;
}

.profile-image .about-slide-three {
  animation: aboutSlideThree 21s ease-in-out infinite;
}

@keyframes aboutSlideOne {
  0%, 26% {
    opacity: 1;
  }

  35%, 91% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes aboutSlideTwo {
  0%, 26% {
    opacity: 0;
  }

  35%, 59% {
    opacity: 1;
  }

  68%, 100% {
    opacity: 0;
  }
}

@keyframes aboutSlideThree {
  0%, 59% {
    opacity: 0;
  }

  68%, 91% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.why-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(30px, 6vw, 70px);
  align-items: start;
}

.why-list {
  display: grid;
  gap: 16px;
}

.why-list div {
  padding: 17px 22px;
  border-right: 5px solid var(--red);
  border-radius: var(--radius-small);
  background: var(--paper);
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.05);
}

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

.process-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 26px rgba(16, 24, 40, 0.05);
}

.process-grid span {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
  font-weight: 900;
}

.trust-section {
  background: var(--white);
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.trust-grid div {
  min-height: 150px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.05);
}

.trust-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--blue-dark);
  font-size: 1.22rem;
  line-height: 1.35;
}

.trust-grid span {
  color: var(--muted);
  font-weight: 800;
}

.trust-grid .cert-card {
  display: grid;
  gap: 12px;
  align-content: center;
  justify-items: start;
  padding-inline: 20px;
  text-align: right;
}

.trust-grid .cert-card strong {
  font-size: 1.08rem;
}

.client-carousel {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 12px;
  max-width: 1120px;
  margin: -48px auto 0;
  padding: 0 clamp(20px, 4vw, 34px) clamp(60px, 7vw, 86px);
}

.client-strip {
  position: relative;
  overflow: hidden;
  padding: 4px 0 18px;
  direction: ltr;
}

.client-strip::before,
.client-strip::after {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 14px;
  width: 52px;
  content: "";
  pointer-events: none;
}

.client-strip::before {
  left: 0;
  background: linear-gradient(90deg, var(--light), transparent);
}

.client-strip::after {
  right: 0;
  background: linear-gradient(270deg, var(--light), transparent);
}

.client-track {
  display: flex;
  gap: 14px;
  width: max-content;
  will-change: transform;
}

.client-track.dragging {
  cursor: grabbing;
  user-select: none;
}

.client-logo {
  display: grid;
  flex: 0 0 160px;
  min-height: 92px;
  place-items: center;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.055);
}

.client-logo img {
  display: block;
  width: auto;
  max-width: 118px;
  max-height: 58px;
  object-fit: contain;
}

.client-logo img[src*="gazit-globe"],
.client-logo img[src*="jerusalem-emblem"],
.client-logo img[src*="freshmarket"],
.client-logo img[src*="machsanei-hashuk"] {
  max-height: 72px;
}

.client-logo img[src*="bezeq"],
.client-logo img[src*="brinks"] {
  max-height: 42px;
}

.client-arrow {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(10, 53, 104, 0.18);
  border-radius: 999px;
  background: var(--white);
  color: var(--blue-dark);
  cursor: pointer;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(16, 24, 40, 0.08);
  transition: 0.2s ease;
}

.client-arrow:hover,
.client-arrow:focus-visible {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.employee-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 42px;
  align-items: center;
  padding: clamp(42px, 5.5vw, 70px) clamp(20px, 6vw, 72px) clamp(64px, 8vw, 96px);
  background:
    linear-gradient(135deg, var(--blue-dark), #061a36);
  color: var(--white);
}

.employee-copy h2 {
  color: var(--white);
}

.employee-copy {
  justify-self: center;
  text-align: center;
}

.employee-copy .eyebrow {
  text-align: center;
}

.employee-title-row {
  display: grid;
  align-items: center;
  justify-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

.employee-title-row h2 {
  margin: 0;
  max-width: 780px;
  text-align: center;
  text-wrap: balance;
}

.robot-worker {
  position: relative;
  display: inline-block;
  width: 76px;
  height: 88px;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.18));
  animation: robotFloat 2.4s ease-in-out infinite;
}

.robot-antenna {
  position: absolute;
  top: 1px;
  right: 36px;
  width: 3px;
  height: 13px;
  border-radius: 999px;
  background: #ffffff;
}

.robot-antenna::before {
  position: absolute;
  top: -6px;
  right: -4px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--red);
  content: "";
}

.robot-head {
  position: absolute;
  top: 15px;
  right: 14px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 48px;
  height: 34px;
  border: 3px solid rgba(255, 255, 255, 0.92);
  border-radius: 14px;
  background: linear-gradient(135deg, #ffffff, #dfeaff);
}

.robot-eye {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  animation: robotBlink 3.2s ease-in-out infinite;
}

.robot-body {
  position: absolute;
  top: 52px;
  right: 18px;
  width: 40px;
  height: 28px;
  border-radius: 10px 10px 12px 12px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
}

.robot-screen {
  position: absolute;
  top: 8px;
  right: 12px;
  width: 16px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
}

.robot-arm {
  position: absolute;
  top: 10px;
  width: 22px;
  height: 6px;
  border-radius: 999px;
  background: #ffffff;
  transform-origin: center;
  animation: robotTyping 0.72s ease-in-out infinite;
}

.robot-arm-right {
  right: -18px;
  transform: rotate(-18deg);
}

.robot-arm-left {
  left: -18px;
  transform: rotate(18deg);
  animation-delay: 0.2s;
}

.robot-desk {
  position: absolute;
  right: 5px;
  bottom: 0;
  width: 66px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
}

.employee-copy p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.employee-panel {
  display: grid;
  gap: 12px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.employee-panel span,
.employee-panel a {
  padding: 14px 16px;
  border-radius: var(--radius-small);
  background: var(--white);
  color: var(--blue-dark);
  font-weight: 900;
}

.employee-panel a {
  background: var(--red);
  color: var(--white);
  text-align: center;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr) minmax(320px, 0.9fr);
  gap: 26px;
  align-items: center;
  padding: clamp(64px, 8vw, 100px) clamp(20px, 6vw, 72px);
  background:
    radial-gradient(circle at 10% 10%, rgba(239, 27, 51, 0.16), transparent 30%),
    linear-gradient(135deg, var(--blue-dark), #041023);
  color: var(--white);
}

.contact-copy h2 {
  color: var(--white);
}

.contact-copy p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-panel {
  display: grid;
  gap: 10px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--blue-dark);
  box-shadow: var(--soft-shadow);
}

.contact-panel span,
.contact-panel a {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 900;
}

.contact-panel a {
  color: var(--blue);
}

.contact-panel .whatsapp-contact-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: 100%;
  direction: rtl;
  text-align: right;
  color: #128c4a;
}

.whatsapp-contact-link img {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
}

.whatsapp-contact-link span {
  padding: 0;
  border: 0;
}

.whatsapp-contact-link:hover span,
.whatsapp-contact-link:focus-visible span {
  text-decoration: underline;
}

.contact-form {
  display: grid;
  gap: 12px;
  scroll-margin-top: 120px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.16);
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--white);
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-small);
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  min-height: 48px;
  border: 0;
  border-radius: var(--radius-small);
  padding: 14px 16px;
  background: linear-gradient(135deg, var(--red), #c91025);
  color: var(--white);
  font: inherit;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.2;
  cursor: pointer;
}

#contact-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

#contact-form .form-heading,
#contact-form label:nth-of-type(3),
#contact-form label:nth-of-type(4),
#contact-form button {
  grid-column: 1 / -1;
}

.jobs-form {
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: end;
  width: min(100%, 1120px);
  margin-inline: auto;
  margin-top: 6px;
  padding: clamp(24px, 4vw, 34px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
}

.jobs-form .form-heading {
  grid-column: 1 / -1;
  display: grid;
  gap: 6px;
  justify-items: center;
  text-align: center;
}

.jobs-form .form-heading .eyebrow {
  margin: 0;
  justify-self: center;
  max-width: 980px;
  color: var(--white);
  font-size: clamp(1.15rem, 2.1vw, 1.75rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.35;
  text-align: center;
  text-wrap: balance;
}

.jobs-form h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.jobs-form .form-heading p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.quote-form-heading {
  grid-column: 1 / -1;
  text-align: center;
}

.quote-form-heading h3 {
  margin: 0 0 6px;
  color: var(--white);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 900;
}

.jobs-form button {
  grid-column: 1 / -1;
  width: 100%;
  min-width: 0;
}

.jobs-form label:nth-of-type(3) {
  grid-column: 1 / -1;
  width: min(100%, 720px);
  justify-self: center;
}

.jobs-form label:nth-of-type(1),
.jobs-form label:nth-of-type(2),
.jobs-form label:nth-of-type(1) input,
.jobs-form label:nth-of-type(2) input,
.jobs-form label:nth-of-type(3),
.jobs-form label:nth-of-type(3) input {
  text-align: center;
}

.accessibility-statement {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(64px, 8vw, 100px) clamp(20px, 4vw, 34px);
  background: var(--paper);
}

.accessibility-statement > div {
  max-width: 850px;
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.accessibility-statement .eyebrow {
  color: var(--blue);
}

.accessibility-statement a {
  color: var(--blue);
  font-weight: 900;
  text-decoration: underline;
}

.accessibility-note {
  color: var(--muted);
  font-weight: 800;
}

.accessibility-widget {
  position: fixed;
  right: 18px;
  bottom: 24px;
  z-index: 60;
  display: grid;
  gap: 10px;
  justify-items: end;
}

.accessibility-toggle {
  position: relative;
  display: grid;
  width: 58px;
  height: 58px;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: #343a40;
  color: var(--white);
  box-shadow:
    0 0 0 4px rgba(255, 255, 255, 0.96),
    0 0 0 7px rgba(52, 58, 64, 0.18),
    0 16px 34px rgba(9, 43, 90, 0.22);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.accessibility-toggle:hover,
.accessibility-toggle:focus-visible {
  transform: translateY(-2px);
  background: var(--blue-dark);
}

.accessibility-toggle::after {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--blue-dark);
  color: var(--white);
  font-size: 0.86rem;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  content: attr(data-tooltip);
  transition: opacity 160ms ease;
}

.accessibility-toggle:hover::after,
.accessibility-toggle:focus-visible::after {
  opacity: 1;
}

.accessibility-person {
  position: relative;
  display: block;
  width: 30px;
  height: 34px;
}

.accessibility-person::before {
  position: absolute;
  top: 0;
  right: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--white);
  content: "";
  transform: translateX(50%);
}

.accessibility-person::after {
  position: absolute;
  top: 11px;
  right: 50%;
  width: 26px;
  height: 23px;
  background: var(--white);
  clip-path: polygon(
    44% 0,
    56% 0,
    56% 28%,
    100% 28%,
    100% 42%,
    61% 42%,
    76% 100%,
    61% 100%,
    50% 58%,
    39% 100%,
    24% 100%,
    39% 42%,
    0 42%,
    0 28%,
    44% 28%
  );
  content: "";
  transform: translateX(50%);
}

.accessibility-panel {
  width: min(280px, calc(100vw - 36px));
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--blue-dark);
  box-shadow: var(--shadow);
}

.accessibility-panel h2 {
  margin-bottom: 14px;
  font-size: 1.2rem;
}

.accessibility-panel button,
.accessibility-panel a {
  display: flex;
  width: 100%;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: var(--paper);
  color: var(--blue-dark);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.accessibility-panel a {
  background: var(--blue-dark);
  color: var(--white);
}

.a11y-contrast body {
  color: #ffffff;
  background: #000000;
}

.a11y-contrast .site-header,
.a11y-contrast .hero,
.a11y-contrast .signal-strip,
.a11y-contrast .service-card,
.a11y-contrast .profile-image,
.a11y-contrast .why-list div,
.a11y-contrast .process-grid article,
.a11y-contrast .trust-section,
.a11y-contrast .trust-grid div,
.a11y-contrast .client-logo,
.a11y-contrast .contact-panel,
.a11y-contrast .accessibility-statement,
.a11y-contrast .accessibility-statement > div,
.a11y-contrast .accessibility-panel {
  border-color: #ffffff;
  background: #000000;
  color: #ffffff;
}

.a11y-contrast h1,
.a11y-contrast h2,
.a11y-contrast h3,
.a11y-contrast p,
.a11y-contrast span,
.a11y-contrast strong,
.a11y-contrast a {
  color: #ffffff;
}

.a11y-contrast .button.primary,
.a11y-contrast .header-cta,
.a11y-contrast .header-cta-secondary,
.a11y-contrast .accessibility-toggle {
  background: #ffff00;
  color: #000000;
}

.a11y-contrast .accessibility-person::before,
.a11y-contrast .accessibility-person::after {
  background: #000000;
}

.a11y-links a {
  text-decoration: underline !important;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

@keyframes robotFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes robotBlink {
  0%,
  88%,
  100% {
    transform: scaleY(1);
  }

  92% {
    transform: scaleY(0.18);
  }
}

@keyframes robotTyping {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 5px;
  }
}

.a11y-readable-font body,
.a11y-readable-font input,
.a11y-readable-font textarea,
.a11y-readable-font button {
  font-family: Arial, "Helvetica Neue", sans-serif;
  letter-spacing: 0.01em;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(20px, 6vw, 72px);
  background: #041023;
  color: rgba(255, 255, 255, 0.74);
}

@media (max-width: 940px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .header-actions {
    gap: 8px;
  }

  .site-nav {
    display: none;
  }

  .signal-strip,
  .service-grid,
  .profile-section,
  .why-layout,
  .process-grid,
  .trust-layout,
  .trust-grid,
  .employee-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .jobs-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jobs-form label:nth-of-type(3) {
    grid-column: 1 / -1;
  }

  .jobs-form button {
    grid-column: 1 / -1;
  }

  .signal-strip {
    margin-top: 0;
    border-radius: 0;
  }

  .signal-strip div {
    border-inline-start: 0;
    border-block-end: 1px solid var(--line);
  }
}

@media (max-width: 560px) {
  .jobs-form {
    grid-template-columns: 1fr;
  }

  #contact-form {
    grid-template-columns: 1fr;
  }

  .jobs-form label:nth-of-type(3) {
    grid-column: auto;
    width: 100%;
  }

  .employee-title-row {
    justify-content: center;
    text-align: center;
  }

  .robot-worker {
    width: 64px;
    height: 74px;
    flex-basis: 64px;
    transform: scale(0.86);
    transform-origin: center;
  }

  .site-header {
    position: static;
    min-height: 68px;
  }

  .brand img,
  .brand-logo {
    width: 110px;
    max-width: 110px;
  }

  .header-cta {
    min-height: 44px;
    padding-inline: 14px;
  }

  .hero {
    min-height: 620px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.76) 42%, rgba(255, 255, 255, 0.98)),
      linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.92));
  }

  .hero-content {
    margin: 24px 16px;
    padding: 28px 22px 34px;
    border-radius: 20px;
  }

  h1 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
  }

  .legal-links,
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .accessibility-widget {
    right: 12px;
    bottom: 14px;
  }

  .accessibility-toggle {
    width: 54px;
    height: 54px;
    min-height: 54px;
  }
}

/* Flying Cargo inspired corporate preview */
.cargo-preview {
  color: #132944;
  background:
    linear-gradient(180deg, #ffffff 0, #f4f7fb 760px),
    #f4f7fb;
  font-family: "Assistant", Arial, "Helvetica Neue", sans-serif;
}

.cargo-preview .site-header {
  min-height: 86px;
  border-bottom: 1px solid rgba(9, 43, 90, 0.1);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 26px rgba(9, 43, 90, 0.06);
}

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

.cargo-preview .brand img,
.cargo-preview .brand-logo {
  width: 118px;
  max-width: 118px;
}

.cargo-preview .site-nav {
  gap: clamp(22px, 3vw, 42px);
  color: var(--blue-dark);
  font-size: 1.02rem;
  font-weight: 700;
}

.cargo-preview .site-nav a {
  padding-block: 8px;
}

.cargo-preview .site-nav a::after {
  bottom: 0;
  height: 2px;
  background: var(--blue);
}

.cargo-preview .header-cta {
  min-height: 46px;
  border-radius: 999px;
  background: var(--blue);
  color: #ffffff;
  box-shadow: none;
}

.cargo-preview .header-cta-primary {
  border: 1px solid rgba(31, 90, 166, 0.22);
  background: #ffffff;
  color: var(--blue);
}

.cargo-preview .header-cta-secondary {
  border: 0;
  background: var(--blue);
  color: #ffffff;
}

.cargo-preview .hero {
  min-height: min(670px, 82vh);
  background:
    linear-gradient(90deg, #eef4fb 0 46%, #ffffff 46% 100%);
}

.cargo-preview .hero::before {
  display: none;
}

.cargo-preview .hero-image {
  width: 48%;
  right: auto;
  left: 0;
  object-fit: contain;
  object-position: left center;
  opacity: 0.82;
  transform: translateX(-10%) scale(0.98);
}

.cargo-preview .hero-overlay {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.28) 38%, rgba(255, 255, 255, 0.92) 53%, #ffffff 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(244, 247, 251, 0.52));
}

.cargo-preview .hero-content {
  max-width: 580px;
  margin-right: clamp(24px, 7vw, 108px);
  margin-left: auto;
  padding: clamp(42px, 5vw, 70px) 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.cargo-preview .eyebrow {
  margin-bottom: 18px;
  color: var(--red);
  font-size: 1.06rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.cargo-preview h1 {
  max-width: 580px;
  color: var(--blue-dark);
  font-size: clamp(2.45rem, 4.45vw, 4.15rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.cargo-preview h2 {
  color: var(--blue-dark);
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.cargo-preview h3 {
  font-weight: 900;
}

.cargo-preview .hero-content p:not(.eyebrow) {
  max-width: 610px;
  color: #53657a;
  font-size: clamp(1.14rem, 2vw, 1.34rem);
  font-weight: 500;
  line-height: 1.75;
}

.cargo-preview .button {
  min-height: 52px;
  border-radius: 999px;
  padding-inline: 28px;
}

.cargo-preview .button.primary {
  background: var(--blue);
  box-shadow: 0 18px 34px rgba(31, 90, 166, 0.18);
}

.cargo-preview .button.ghost {
  border-color: rgba(31, 90, 166, 0.18);
  background: #ffffff;
  box-shadow: none;
}

.cargo-preview .signal-strip {
  max-width: none;
  margin: 0;
  border-width: 1px 0;
  border-radius: 0;
  box-shadow: none;
}

.cargo-preview .signal-strip div {
  padding-block: 28px;
  background: #ffffff;
}

.cargo-preview .signal-strip strong {
  font-size: clamp(1.25rem, 2vw, 1.95rem);
  font-weight: 900;
}

.cargo-preview .section,
.cargo-preview .profile-section,
.cargo-preview .trust-layout {
  max-width: 1180px;
}

.cargo-preview .section-heading {
  max-width: 860px;
}

.cargo-preview .section-heading p,
.cargo-preview .service-card p,
.cargo-preview .why-list p,
.cargo-preview .process-grid p,
.cargo-preview .profile-copy p,
.cargo-preview .trust-copy p,
.cargo-preview .employee-copy p,
.cargo-preview .contact-copy p {
  color: #5d6b7b;
  font-size: 1.12rem;
  font-weight: 500;
}

.cargo-preview .service-card,
.cargo-preview .process-grid article,
.cargo-preview .trust-grid div,
.cargo-preview .client-logo,
.cargo-preview .contact-panel,
.cargo-preview .accessibility-statement > div {
  border-color: rgba(9, 43, 90, 0.1);
  border-radius: 2px;
  box-shadow: none;
}

.cargo-preview .service-card {
  min-height: 120px;
  padding: 18px 22px 16px;
  background: #ffffff;
}

.cargo-preview .service-card::before {
  height: 3px;
  background: var(--blue);
}

.cargo-preview .service-card span {
  border-radius: 50%;
}

.cargo-preview .profile-image {
  border-radius: 2px;
  box-shadow: none;
}

.cargo-preview .why-band {
  background: #ffffff;
}

.cargo-preview .why-list div {
  border-right-color: var(--blue);
  border-radius: 2px;
  background: #f5f8fc;
  box-shadow: none;
}

.cargo-preview .client-track {
  gap: 16px;
}

.cargo-preview .employee-section,
.cargo-preview .contact-section {
  background:
    radial-gradient(circle at 15% 0%, rgba(239, 27, 51, 0.12), transparent 30%),
    linear-gradient(135deg, var(--blue-dark), #123b70);
}

.cargo-preview .employee-copy .eyebrow,
.cargo-preview .contact-copy .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.cargo-preview .employee-copy h2,
.cargo-preview .contact-copy h2 {
  color: #ffffff;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
}

.cargo-preview .employee-copy p,
.cargo-preview .contact-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.cargo-preview .section {
  padding-block: clamp(52px, 6vw, 84px);
}

.cargo-preview .profile-section {
  padding-block: clamp(34px, 4vw, 54px) clamp(54px, 6vw, 82px);
}

.cargo-preview .trust-section {
  padding-block: clamp(48px, 5.5vw, 78px);
}

.cargo-preview .employee-section,
.cargo-preview .contact-section {
  padding-block: clamp(46px, 5.5vw, 74px);
}

.cargo-preview .accessibility-statement {
  padding-block: clamp(46px, 5.5vw, 76px);
}

.cargo-preview .profile-image img {
  height: clamp(300px, 33vw, 380px);
}

.cargo-preview .service-grid,
.cargo-preview .process-grid,
.cargo-preview .trust-grid,
.cargo-preview .why-list {
  gap: 12px;
}

.cargo-preview .why-list div {
  padding-block: 22px;
}

.cargo-preview .contact-form,
.cargo-preview .employee-panel {
  padding: clamp(20px, 3vw, 28px);
}

.cargo-preview .contact-panel {
  padding: clamp(22px, 3vw, 32px);
}

@media (max-width: 940px) {
  .cargo-preview .hero {
    min-height: auto;
    background: #ffffff;
  }

  .cargo-preview .hero-image {
    width: 100%;
    opacity: 0.28;
    object-fit: cover;
    transform: none;
  }

  .cargo-preview .hero-content {
    margin: 0;
    padding: 64px 22px 72px;
  }
}

.legal-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(31, 90, 166, 0.14);
}

.legal-links a {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border: 1px solid rgba(31, 90, 166, 0.2);
  border-radius: 999px;
  background: #ffffff;
  color: var(--blue);
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.legal-links a:hover {
  border-color: var(--blue);
  box-shadow: 0 12px 28px rgba(9, 43, 90, 0.08);
}

.legal-page {
  min-height: 100vh;
}

.policy-page {
  padding: clamp(52px, 7vw, 88px) clamp(20px, 5vw, 72px);
  background:
    radial-gradient(circle at top right, rgba(31, 90, 166, 0.08), transparent 32rem),
    var(--paper);
}

.policy-hero,
.policy-card {
  max-width: 1080px;
  margin: 0 auto 22px;
  border: 1px solid rgba(9, 43, 90, 0.1);
  border-radius: 2px;
  background: #ffffff;
  box-shadow: 0 14px 40px rgba(9, 43, 90, 0.05);
}

.policy-hero {
  padding: clamp(34px, 6vw, 64px);
}

.policy-card {
  padding: clamp(24px, 4vw, 38px);
}

.policy-hero h1,
.policy-card h2 {
  margin: 0 0 16px;
  color: var(--blue-dark);
  font-weight: 900;
}

.policy-hero h1 {
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  line-height: 1.05;
}

.policy-card h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.policy-hero p,
.policy-card p,
.policy-card li {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  line-height: 1.85;
}

.policy-card p {
  margin: 0 0 12px;
}

.policy-card ul {
  margin: 0;
  padding-inline-start: 24px;
}

.representatives-list {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.representatives-list li {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(31, 90, 166, 0.14);
  border-radius: 12px;
  background: #f7faff;
}

.representatives-list strong {
  color: var(--blue-dark);
}

.policy-card a {
  color: var(--blue);
  font-weight: 900;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto 22px;
}

.policy-grid .policy-card {
  margin: 0;
}

.policy-back {
  width: fit-content;
  margin-top: 14px;
}

@media (max-width: 560px) {
  .legal-links,
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .representatives-list li {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
