:root {
  --pilot-ink: #0b1634;
  --pilot-muted: #5c6b8b;
  --pilot-soft: #eef3ff;
  --pilot-line: #dce6fb;
  --pilot-card: rgba(255, 255, 255, 0.9);
  --pilot-blue: #2f6df6;
  --pilot-violet: #7b36ff;
  --pilot-teal: #00c7a6;
  --pilot-shadow: 0 24px 70px rgba(58, 84, 156, 0.16);
  --pilot-radius: 8px;
  --pilot-max: 1500px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--pilot-ink);
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 48%, #ffffff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 100% 22%, rgba(91, 107, 255, 0.16), transparent 42%),
    radial-gradient(ellipse at 70% 96%, rgba(122, 54, 255, 0.12), transparent 38%),
    linear-gradient(120deg, transparent 58%, rgba(225, 229, 255, 0.52) 100%);
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: auto 0 0 auto;
  width: 52vw;
  height: 58vh;
  pointer-events: none;
  background:
    repeating-linear-gradient(158deg, rgba(79, 112, 255, 0.08) 0 1px, transparent 1px 18px);
  transform: skewY(-8deg);
  transform-origin: bottom right;
  z-index: -1;
}

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

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

.pilot-header {
  position: relative;
  z-index: 10;
  padding: 24px 32px 0;
}

.pilot-navbar {
  width: min(100%, var(--pilot-max));
  min-height: 58px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.pilot-brand {
  width: 118px;
  flex: 0 0 auto;
}

.pilot-brand img {
  width: 100%;
  height: auto;
}

.pilot-nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  flex: 1 1 auto;
  font-size: 14px;
  font-weight: 800;
  color: #172446;
}

.pilot-nav-menu a,
.pilot-footer a {
  transition: color 180ms ease, transform 180ms ease;
}

.pilot-nav-menu a:hover,
.pilot-footer a:hover {
  color: var(--pilot-blue);
}

.pilot-nav-actions {
  flex: 0 0 auto;
}

.pilot-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 22px;
  border: 1px solid #cbd9f8;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: #326cff;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(62, 98, 178, 0.08);
}

.pilot-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--pilot-line);
  border-radius: var(--pilot-radius);
  background: #ffffff;
  padding: 10px;
}

.pilot-nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--pilot-ink);
  border-radius: 999px;
}

.pilot-hero {
  min-height: 790px;
  padding: 88px 32px 76px;
  overflow: hidden;
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.96) 0%, rgba(249, 251, 255, 0.9) 48%, rgba(232, 233, 255, 0.72) 100%);
  border-bottom: 1px solid rgba(211, 220, 244, 0.8);
}

.pilot-hero-shell {
  width: min(100%, var(--pilot-max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(520px, 0.96fr);
  align-items: center;
  gap: 72px;
}

.pilot-hero-copy {
  max-width: 650px;
}

.pilot-badge,
.pilot-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 28px;
  padding: 7px 14px;
  border: 1px solid #d9e4f8;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: #0e1b3c;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(28, 59, 130, 0.06);
}

.pilot-badge span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pilot-teal);
  box-shadow: 0 0 0 4px rgba(0, 199, 166, 0.13);
}

.pilot-hero h1 {
  margin: 0;
  color: #07122b;
  font-size: 64px;
  line-height: 0.98;
  font-weight: 950;
}

.pilot-hero h1 strong,
.pilot-usp h2 strong {
  display: block;
  color: var(--pilot-blue);
  background: linear-gradient(90deg, #246dff 0%, #8344ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pilot-lead {
  max-width: 590px;
  margin: 28px 0 34px;
  color: #596984;
  font-size: 19px;
  line-height: 1.75;
  font-weight: 600;
}

.pilot-actions,
.pilot-final-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.pilot-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 28px;
  border-radius: var(--pilot-radius);
  font-size: 15px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.pilot-button:hover {
  transform: translateY(-2px);
}

.pilot-button img {
  width: 18px;
  height: 18px;
}

.pilot-button-primary {
  color: #ffffff;
  background: linear-gradient(96deg, #226dff 0%, #7438ff 100%);
  box-shadow: 0 18px 34px rgba(67, 86, 255, 0.28);
}

.pilot-button-secondary {
  color: #162343;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid #cbd8f5;
  box-shadow: 0 14px 32px rgba(50, 86, 158, 0.08);
}

.pilot-button-secondary img {
  filter: invert(15%) sepia(85%) saturate(1317%) hue-rotate(202deg) brightness(92%) contrast(92%);
}

.pilot-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 28px 0 0;
  color: #34445f;
  font-size: 13px;
  font-weight: 900;
}

.pilot-note img {
  width: 18px;
  height: 18px;
  filter: invert(30%) sepia(83%) saturate(715%) hue-rotate(185deg) brightness(94%) contrast(91%);
}

.pilot-hero-visual {
  position: relative;
  min-height: 560px;
}

.pilot-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(63, 100, 238, 0.32);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.pilot-orbit::before,
.pilot-orbit::after {
  content: "";
  position: absolute;
  inset: -72px;
  border: 1px solid rgba(84, 108, 211, 0.12);
  border-radius: 50%;
}

.pilot-orbit::after {
  inset: 64px;
  border-style: dashed;
  border-color: rgba(51, 102, 255, 0.34);
}

.pilot-orbit-mark {
  position: absolute;
  inset: 103px;
  display: grid;
  place-items: center;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.72);
}

.pilot-orbit-mark img {
  width: 92px;
}

.pilot-orbit-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pilot-blue);
  box-shadow: 0 0 0 8px rgba(47, 109, 246, 0.08);
}

.dot-one {
  top: -5px;
  left: 50%;
}

.dot-two {
  top: 22%;
  right: 9%;
}

.dot-three {
  bottom: 22%;
  left: 9%;
}

.dot-four {
  bottom: -5px;
  left: 50%;
}

.pilot-floating-card {
  position: absolute;
  width: 148px;
  min-height: 126px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px 14px;
  text-align: center;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(221, 228, 248, 0.9);
  border-radius: 8px;
  box-shadow: var(--pilot-shadow);
}

.pilot-floating-card img {
  width: 36px;
  height: 36px;
  filter: invert(47%) sepia(96%) saturate(3349%) hue-rotate(218deg) brightness(100%) contrast(102%);
}

.pilot-floating-card strong {
  font-size: 12px;
  line-height: 1.25;
}

.pilot-floating-card span {
  color: #71809d;
  font-size: 11px;
  font-weight: 700;
}

.card-top {
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
}

.card-left {
  top: 226px;
  left: 18px;
}

.card-right {
  top: 226px;
  right: 18px;
}

.card-bottom-left {
  bottom: 52px;
  left: 142px;
}

.card-bottom-right {
  bottom: 52px;
  right: 142px;
}

.pilot-trust,
.pilot-section,
.pilot-usp,
.pilot-dark-stats,
.pilot-final-cta,
.pilot-footer {
  width: min(calc(100% - 64px), var(--pilot-max));
  margin-inline: auto;
}

.pilot-trust {
  margin-top: 18px;
}

.pilot-trust-card {
  display: grid;
  grid-template-columns: 1.45fr repeat(4, 1fr);
  align-items: center;
  gap: 24px;
  padding: 32px 36px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--pilot-line);
  border-radius: 8px;
  box-shadow: 0 18px 58px rgba(49, 77, 142, 0.1);
}

.pilot-quote {
  display: flex;
  align-items: center;
  gap: 24px;
}

.pilot-quote span {
  color: #6f77ff;
  font-size: 58px;
  line-height: 1;
}

.pilot-quote p {
  margin: 0;
  color: #394866;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 800;
}

.pilot-stat {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  align-items: center;
}

.pilot-stat img {
  width: 36px;
  height: 36px;
  grid-row: span 2;
  filter: invert(50%) sepia(91%) saturate(3534%) hue-rotate(218deg) brightness(101%) contrast(101%);
}

.pilot-stat strong {
  font-size: 27px;
  line-height: 1;
}

.pilot-stat span {
  color: #66758f;
  font-size: 11px;
  font-weight: 800;
}

.pilot-section {
  padding-top: 68px;
}

.pilot-section-heading {
  margin: 0 auto 32px;
  text-align: center;
}

.pilot-section-heading h2,
.pilot-usp h2,
.pilot-final-cta h2 {
  margin: 0;
  color: #0b1634;
  font-size: 36px;
  line-height: 1.18;
  font-weight: 950;
}

.pilot-section-heading p {
  margin: 10px 0 0;
  color: var(--pilot-muted);
  font-size: 15px;
  font-weight: 700;
}

.pilot-included-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.pilot-service-card {
  min-height: 314px;
  padding: 28px 24px;
  border: 1px solid var(--pilot-line);
  border-radius: 8px;
  background: var(--pilot-card);
  box-shadow: 0 18px 48px rgba(50, 76, 142, 0.08);
}

.pilot-service-card > img {
  width: 48px;
  height: 48px;
  padding: 10px;
  border-radius: 8px;
  background: #f0f3ff;
  filter: invert(49%) sepia(87%) saturate(3679%) hue-rotate(218deg) brightness(101%) contrast(101%);
}

.pilot-service-card h3 {
  min-height: 58px;
  margin: 22px 0 16px;
  font-size: 22px;
  line-height: 1.08;
  font-weight: 950;
}

.pilot-service-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pilot-service-card li {
  position: relative;
  padding-left: 22px;
  color: #53617d;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 700;
}

.pilot-service-card li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 12px;
  height: 8px;
  border-left: 2px solid var(--pilot-blue);
  border-bottom: 2px solid var(--pilot-blue);
  transform: rotate(-45deg);
}

.pilot-workflow {
  padding-top: 72px;
}

.pilot-workflow-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.pilot-workflow-list li {
  position: relative;
  min-width: 0;
}

.pilot-workflow-list li:not(:last-child)::after {
  content: "\2192";
  position: absolute;
  top: 54px;
  right: -21px;
  color: #acb7d9;
  font-size: 24px;
  font-weight: 800;
}

.pilot-step-icon,
.pilot-timeline-icon {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #eef4ff 0%, #eee8ff 100%);
}

.pilot-step-icon img,
.pilot-timeline-icon img {
  width: 34px;
  height: 34px;
  filter: invert(48%) sepia(97%) saturate(3347%) hue-rotate(218deg) brightness(100%) contrast(101%);
}

.pilot-workflow-list strong {
  display: block;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 950;
}

.pilot-workflow-list p {
  max-width: 170px;
  margin: 0 auto;
  color: #596985;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 700;
}

.pilot-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px 72px;
}

.pilot-benefit {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
}

.pilot-benefit > img,
.pilot-usp-list img {
  width: 58px;
  height: 58px;
  padding: 14px;
  border-radius: 8px;
  background: #f0f2ff;
  filter: invert(50%) sepia(87%) saturate(3216%) hue-rotate(218deg) brightness(101%) contrast(101%);
}

.pilot-benefit h3,
.pilot-usp-list h3 {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 950;
}

.pilot-benefit p,
.pilot-usp-list p {
  margin: 0;
  color: #5c6b87;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 700;
}

.pilot-timeline-panel,
.pilot-usp {
  padding: 44px 34px 52px;
  border-radius: 8px;
  border: 1px solid rgba(221, 228, 248, 0.86);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(247, 250, 255, 0.9) 100%);
  box-shadow: 0 20px 64px rgba(55, 80, 148, 0.08);
}

.pilot-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 38px;
  margin: 0;
  padding: 18px 0 0;
  list-style: none;
}

.pilot-timeline::before {
  content: "";
  position: absolute;
  top: 62px;
  left: 12%;
  right: 12%;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, #286dff 0%, #7f37ff 100%);
}

.pilot-timeline li {
  position: relative;
  text-align: center;
}

.pilot-timeline-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 10px;
  background: #eef0ff;
}

.pilot-timeline-icon img {
  width: 28px;
  height: 28px;
}

.pilot-timeline small {
  display: block;
  color: #50617c;
  font-size: 12px;
  font-weight: 900;
}

.pilot-timeline strong {
  display: block;
  margin: 3px 0 18px;
  font-size: 23px;
  line-height: 1;
  font-weight: 950;
}

.pilot-timeline h3 {
  min-height: 44px;
  margin: 0 0 12px;
  font-size: 17px;
  line-height: 1.18;
  font-weight: 950;
}

.pilot-timeline p {
  max-width: 250px;
  margin: 0 auto;
  color: #5f6d87;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 700;
}

.pilot-usp {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1.05fr 1.35fr;
  gap: 60px;
  align-items: center;
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.94) 0%, rgba(247, 250, 255, 0.92) 62%, rgba(237, 239, 255, 0.84) 100%);
}

.pilot-kicker {
  margin-bottom: 18px;
  color: #4a68ff;
  border: 0;
  box-shadow: none;
  padding-left: 0;
  background: transparent;
}

.pilot-usp h2 {
  max-width: 520px;
  font-size: 42px;
}

.pilot-usp-copy > p:last-child {
  max-width: 520px;
  margin: 24px 0 0;
  color: #53627e;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 700;
}

.pilot-usp-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 36px;
}

.pilot-usp-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
}

.pilot-dark-stats {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  padding: 28px 48px;
  border-radius: 8px;
  background: linear-gradient(96deg, #04143c 0%, #0e2a78 52%, #2c1696 100%);
  color: #ffffff;
}

.pilot-dark-stats div {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  column-gap: 12px;
}

.pilot-dark-stats img {
  width: 34px;
  height: 34px;
  grid-row: span 2;
  padding: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  filter: invert(62%) sepia(99%) saturate(1051%) hue-rotate(210deg) brightness(102%) contrast(99%);
}

.pilot-dark-stats strong {
  font-size: 32px;
  line-height: 1;
  font-weight: 950;
}

.pilot-dark-stats span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
}

.pilot-final-cta {
  min-height: 260px;
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 40px;
  align-items: center;
  padding: 48px 58px;
  border-radius: 8px;
  color: #ffffff;
  background:
    linear-gradient(112deg, rgba(3, 18, 54, 0.98) 0%, rgba(18, 44, 139, 0.98) 52%, rgba(70, 28, 184, 0.98) 100%);
  overflow: hidden;
}

.pilot-final-cta h2 {
  max-width: 620px;
  color: #ffffff;
  font-size: 42px;
}

.pilot-final-cta p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
  font-weight: 800;
}

.pilot-final-actions {
  flex-direction: column;
  align-items: stretch;
}

.pilot-final-actions .pilot-button {
  width: min(100%, 420px);
  margin-left: auto;
}

.pilot-button-dark {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

.pilot-button-dark img {
  filter: invert(100%);
}

.pilot-footer {
  display: grid;
  grid-template-columns: 1fr 1.25fr 0.85fr;
  gap: 72px;
  padding: 36px 42px 28px;
  color: #1e2d4c;
}

.pilot-footer-brand img {
  width: 102px;
  margin-bottom: 16px;
}

.pilot-footer-brand p {
  max-width: 270px;
  margin: 0;
  color: #5a6780;
  font-size: 13px;
  line-height: 1.65;
  font-weight: 700;
}

.pilot-footer h2 {
  margin: 0 0 18px;
  font-size: 16px;
  font-weight: 950;
}

.pilot-footer-links div {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 18px 58px;
}

.pilot-footer-links a,
.pilot-footer-contact a {
  color: #51607a;
  font-size: 13px;
  font-weight: 750;
}

.pilot-footer-contact {
  font-style: normal;
}

.pilot-footer-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.pilot-footer-contact img {
  width: 17px;
  height: 17px;
  filter: invert(25%) sepia(15%) saturate(1243%) hue-rotate(183deg) brightness(94%) contrast(88%);
}

.pilot-footer-copy {
  grid-column: 1 / -1;
  margin: 12px 0 0;
  color: #8894aa;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

@media (min-width: 1700px) {
  .pilot-hero {
    min-height: 840px;
  }

  .pilot-hero h1 {
    font-size: 70px;
  }

  .pilot-hero-shell,
  .pilot-trust,
  .pilot-section,
  .pilot-usp,
  .pilot-dark-stats,
  .pilot-final-cta,
  .pilot-footer {
    --pilot-max: 1580px;
  }
}

@media (max-width: 1240px) {
  .pilot-nav-menu {
    gap: 22px;
    font-size: 13px;
  }

  .pilot-hero-shell {
    grid-template-columns: minmax(0, 1fr);
    gap: 56px;
  }

  .pilot-hero-copy {
    max-width: 760px;
  }

  .pilot-hero {
    min-height: auto;
  }

  .pilot-hero-visual {
    min-height: 560px;
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
  }

  .pilot-trust-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pilot-quote {
    grid-column: 1 / -1;
  }

  .pilot-included-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pilot-benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  .pilot-dark-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .pilot-header {
    padding: 18px 22px 0;
  }

  .pilot-navbar {
    flex-wrap: wrap;
  }

  .pilot-nav-toggle {
    display: block;
    margin-left: auto;
  }

  .pilot-nav-menu,
  .pilot-nav-actions {
    display: none;
    flex-basis: 100%;
  }

  .pilot-nav-menu.open,
  .pilot-nav-actions.open {
    display: flex;
  }

  .pilot-nav-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--pilot-line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 42px rgba(37, 61, 119, 0.12);
  }

  .pilot-nav-menu a {
    padding: 13px 12px;
  }

  .pilot-nav-actions {
    justify-content: stretch;
  }

  .pilot-nav-cta {
    width: 100%;
  }

  .pilot-hero {
    padding: 70px 22px 62px;
  }

  .pilot-hero h1 {
    font-size: 50px;
  }

  .pilot-lead {
    font-size: 17px;
  }

  .pilot-workflow-list,
  .pilot-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pilot-workflow-list li:not(:last-child)::after,
  .pilot-timeline::before {
    display: none;
  }

  .pilot-usp,
  .pilot-final-cta,
  .pilot-footer {
    grid-template-columns: 1fr;
  }

  .pilot-final-actions .pilot-button {
    margin-left: 0;
  }

  .pilot-footer {
    gap: 34px;
  }
}

@media (max-width: 760px) {
  body::after {
    width: 100vw;
    height: 45vh;
  }

  .pilot-hero {
    padding-top: 54px;
  }

  .pilot-hero h1 {
    font-size: 42px;
  }

  .pilot-actions,
  .pilot-final-actions {
    align-items: stretch;
  }

  .pilot-button {
    width: 100%;
  }

  .pilot-hero-visual {
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .pilot-orbit {
    position: relative;
    top: auto;
    left: auto;
    grid-column: 1 / -1;
    width: 280px;
    height: 280px;
    margin: 0 auto 12px;
    transform: none;
  }

  .pilot-orbit::before {
    inset: -34px;
  }

  .pilot-orbit-mark {
    inset: 88px;
  }

  .pilot-floating-card {
    position: static;
    width: auto;
    min-height: 116px;
    transform: none;
  }

  .pilot-trust,
  .pilot-section,
  .pilot-usp,
  .pilot-dark-stats,
  .pilot-final-cta,
  .pilot-footer {
    width: min(calc(100% - 32px), var(--pilot-max));
  }

  .pilot-trust-card,
  .pilot-included-grid,
  .pilot-benefits-grid,
  .pilot-dark-stats {
    grid-template-columns: 1fr;
  }

  .pilot-trust-card,
  .pilot-timeline-panel,
  .pilot-usp,
  .pilot-final-cta,
  .pilot-footer {
    padding: 28px 20px;
  }

  .pilot-section-heading h2,
  .pilot-usp h2,
  .pilot-final-cta h2 {
    font-size: 30px;
  }

  .pilot-service-card {
    min-height: auto;
  }

  .pilot-service-card h3 {
    min-height: auto;
  }

  .pilot-workflow-list {
    grid-template-columns: 1fr;
  }

  .pilot-timeline {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .pilot-timeline h3 {
    min-height: auto;
  }

  .pilot-usp-list,
  .pilot-footer-links div {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .pilot-brand {
    width: 98px;
  }

  .pilot-hero h1 {
    font-size: 36px;
  }

  .pilot-lead {
    font-size: 16px;
  }

  .pilot-badge {
    font-size: 11px;
  }

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

  .pilot-orbit {
    width: 230px;
    height: 230px;
  }

  .pilot-orbit-mark {
    inset: 72px;
  }

  .pilot-orbit-mark img {
    width: 70px;
  }

  .pilot-stat,
  .pilot-dark-stats div,
  .pilot-benefit,
  .pilot-usp-list article {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .pilot-section-heading h2,
  .pilot-usp h2,
  .pilot-final-cta h2 {
    font-size: 27px;
  }
}

/* Pilot page footer alignment with the shared reference-inspired footer */
.pilot-footer.site-footer {
  position: relative;
  width: min(1720px, calc(100% - 48px));
  margin: 84px auto 0;
  padding: clamp(34px, 4vw, 74px) clamp(24px, 5vw, 78px) 0;
  overflow: hidden;
  color: rgba(255, 255, 255, .78);
  border: 1px solid rgba(91, 116, 178, .36);
  border-top-color: rgba(96, 142, 255, .7);
  border-radius: 48px 48px 0 0;
  background:
    radial-gradient(circle at 96% 0%, rgba(36, 103, 255, .28), transparent 26%),
    radial-gradient(circle at 74% 42%, rgba(120, 55, 255, .17), transparent 25%),
    linear-gradient(135deg, #020b1c 0%, #061327 46%, #081a36 100%);
  box-shadow: 0 -16px 70px rgba(14, 41, 99, .22), inset 0 1px 0 rgba(255, 255, 255, .12);
  isolation: isolate;
}

.pilot-footer.site-footer::before {
  content: "";
  position: absolute;
  right: -12%;
  bottom: 58px;
  width: 58%;
  height: 70%;
  background: repeating-radial-gradient(ellipse at 100% 100%, rgba(62, 97, 255, .22) 0 1px, transparent 1px 24px);
  opacity: .44;
  transform: rotate(-14deg);
  pointer-events: none;
  z-index: -1;
}

.pilot-footer.site-footer::after {
  content: "";
  position: absolute;
  inset: auto 0 118px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(66, 120, 255, .65), rgba(140, 70, 255, .8), transparent);
  pointer-events: none;
}

.pilot-footer .footer-main {
  display: grid;
  grid-template-columns: minmax(250px, .88fr) minmax(240px, .7fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 94px);
  align-items: start;
}

.pilot-footer .footer-brand,
.pilot-footer .footer-links,
.pilot-footer .footer-contact {
  min-width: 0;
}

.pilot-footer .footer-brand img {
  width: clamp(118px, 11vw, 166px);
  height: auto;
  margin: 0 0 24px;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
}

.pilot-footer .footer-brand p {
  max-width: 380px;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: clamp(15px, 1.2vw, 21px);
  line-height: 1.75;
}

.pilot-footer .footer-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
  max-width: 420px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.pilot-footer .footer-proof div {
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 14px;
  align-items: center;
}

.pilot-footer .footer-icon,
.pilot-footer .footer-contact-icon {
  display: grid;
  place-items: center;
  border: 1px solid rgba(96, 119, 255, .42);
  border-radius: 12px;
  background: rgba(17, 37, 84, .62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 12px 32px rgba(0, 0, 0, .18);
}

.pilot-footer .footer-icon {
  width: 54px;
  height: 54px;
  grid-row: span 2;
}

.pilot-footer .footer-icon img,
.pilot-footer .footer-contact-icon img,
.pilot-footer .footer-promise img {
  width: 26px;
  height: 26px;
  filter: invert(48%) sepia(98%) saturate(2216%) hue-rotate(218deg) brightness(105%) contrast(105%);
}

.pilot-footer .footer-proof strong {
  color: #ffffff;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1;
}

.pilot-footer .footer-proof small {
  color: rgba(255, 255, 255, .62);
  font-size: 14px;
  line-height: 1.3;
}

.pilot-footer .footer-links {
  padding-right: clamp(0px, 4vw, 72px);
  border-right: 1px solid rgba(255, 255, 255, .2);
}

.pilot-footer.site-footer h2 {
  margin: 0 0 34px;
  color: #ffffff;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.1;
}

.pilot-footer.site-footer h2::after {
  content: "";
  display: block;
  width: 58px;
  height: 3px;
  margin-top: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2368ff, #8a43ff);
}

.pilot-footer .footer-links div {
  display: grid;
  gap: 22px;
}

.pilot-footer .footer-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 36px;
  color: rgba(255, 255, 255, .7);
  font-size: clamp(17px, 1.5vw, 24px);
  font-weight: 500;
  transition: color .18s ease, transform .18s ease;
}

.pilot-footer .footer-links a:hover,
.pilot-footer .footer-contact a:hover,
.pilot-footer .footer-bottom a:hover {
  color: #6f7dff;
}

.pilot-footer .footer-links a:hover {
  transform: translateX(4px);
}

.pilot-footer .footer-arrow {
  color: rgba(255, 255, 255, .64);
  font-size: 34px;
  line-height: 1;
}

.pilot-footer .footer-contact {
  font-style: normal;
}

.pilot-footer .footer-contact > a {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  align-items: center;
  min-height: 58px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(16px, 1.25vw, 22px);
  line-height: 1.35;
}

.pilot-footer .footer-contact-icon {
  width: 58px;
  height: 58px;
}

.pilot-footer .footer-contact-icon img {
  width: 28px;
  height: 28px;
}

.pilot-footer .footer-quote {
  position: relative;
  max-width: 430px;
  margin-top: 30px;
  padding: 34px clamp(24px, 3vw, 36px);
  overflow: hidden;
  border: 1px solid rgba(74, 119, 255, .78);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(13, 29, 62, .92), rgba(20, 14, 48, .82));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 18px 48px rgba(0, 0, 0, .22);
}

.pilot-footer .footer-quote > span {
  display: block;
  color: #5360ff;
  font-size: 74px;
  line-height: .72;
  font-weight: 950;
}

.pilot-footer .footer-quote p {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(17px, 1.4vw, 24px);
  line-height: 1.55;
}

.pilot-footer .footer-quote img {
  position: absolute;
  right: 26px;
  bottom: 20px;
  width: 88px;
  height: auto;
  opacity: .13;
  filter: grayscale(1) brightness(1.6);
}

.pilot-footer .footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
  margin: 54px calc(clamp(24px, 5vw, 78px) * -1) 0;
  padding: 34px clamp(24px, 5vw, 78px);
  border-top: 1px solid rgba(255, 255, 255, .14);
  background: rgba(4, 13, 31, .38);
}

.pilot-footer .footer-bottom p,
.pilot-footer .footer-promise {
  margin: 0;
  color: rgba(255, 255, 255, .64);
  font-size: clamp(14px, 1.1vw, 18px);
}

.pilot-footer .footer-bottom p a {
  color: #4f82ff;
}

.pilot-footer .footer-promise {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding-inline: 34px;
  border-left: 1px solid rgba(255, 255, 255, .16);
  border-right: 1px solid rgba(255, 255, 255, .16);
  white-space: nowrap;
}

.pilot-footer .footer-promise img {
  width: 34px;
  height: 34px;
}

.pilot-footer .footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
}

.pilot-footer .footer-social a {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(71, 99, 173, .44);
  border-radius: 50%;
  background: rgba(12, 26, 58, .62);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.pilot-footer .footer-social a:hover {
  transform: translateY(-3px);
  border-color: rgba(88, 129, 255, .9);
  background: rgba(24, 47, 101, .78);
}

.pilot-footer .footer-social img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

@media (max-width: 1120px) {
  .pilot-footer.site-footer {
    border-radius: 34px 34px 0 0;
  }

  .pilot-footer .footer-main,
  .pilot-footer .footer-bottom {
    grid-template-columns: 1fr;
  }

  .pilot-footer .footer-links {
    padding-right: 0;
    border-right: 0;
  }

  .pilot-footer .footer-links div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 28px;
  }

  .pilot-footer .footer-bottom {
    justify-items: start;
  }

  .pilot-footer .footer-promise {
    padding-inline: 0;
    border: 0;
  }

  .pilot-footer .footer-social {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .pilot-footer.site-footer {
    width: min(100% - 24px, 1720px);
    margin-top: 58px;
    padding-inline: 18px;
    border-radius: 28px 28px 0 0;
  }

  .pilot-footer .footer-main {
    gap: 36px;
  }

  .pilot-footer .footer-brand img {
    width: 128px;
  }

  .pilot-footer .footer-proof,
  .pilot-footer .footer-links div {
    grid-template-columns: 1fr;
  }

  .pilot-footer .footer-links a,
  .pilot-footer .footer-contact > a {
    font-size: 17px;
  }

  .pilot-footer .footer-contact > a {
    grid-template-columns: 50px 1fr;
    gap: 14px;
  }

  .pilot-footer .footer-contact-icon {
    width: 50px;
    height: 50px;
  }

  .pilot-footer .footer-quote {
    padding: 28px 20px;
  }

  .pilot-footer .footer-bottom {
    margin-inline: -18px;
    padding: 28px 18px;
  }

  .pilot-footer .footer-promise {
    white-space: normal;
  }

  .pilot-footer .footer-social {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }

  .pilot-footer .footer-social a {
    width: 100%;
    height: 52px;
  }
}

/* Pilot footer layout repair: keep shared footer parts out of the old pilot grid rules */
.pilot-footer.site-footer {
  display: block;
  grid-template-columns: none;
  gap: 0;
  align-items: stretch;
}

.pilot-footer.site-footer .footer-main {
  display: grid;
  grid-template-columns: minmax(250px, .88fr) minmax(240px, .7fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 94px);
  align-items: start;
}

.pilot-footer.site-footer .footer-brand {
  display: block;
  justify-items: stretch;
  gap: 0;
  text-align: left;
}

.pilot-footer.site-footer .footer-links {
  display: block;
  justify-items: stretch;
  justify-content: stretch;
  align-self: start;
}

.pilot-footer.site-footer nav.footer-links {
  display: block;
  flex-wrap: nowrap;
  justify-content: stretch;
  gap: 0;
  color: inherit;
  font-weight: inherit;
}

.pilot-footer.site-footer .footer-links div {
  display: grid;
  grid-template-columns: 1fr;
}

.pilot-footer.site-footer .footer-links a {
  padding: 0;
  border-radius: 0;
  justify-content: space-between;
}

.pilot-footer.site-footer .footer-links a::after {
  display: none;
}

.pilot-footer.site-footer .footer-contact,
.pilot-footer.site-footer .footer-bottom {
  position: relative;
  z-index: 1;
}

.pilot-footer.site-footer .footer-bottom {
  grid-column: auto;
  width: auto;
}

.pilot-footer.site-footer .footer-bottom p {
  text-align: left;
}

.pilot-footer.site-footer .footer-brand > img {
  width: clamp(118px, 11vw, 166px);
  height: auto;
}

@media (max-width: 1120px) {
  .pilot-footer.site-footer .footer-main,
  .pilot-footer.site-footer .footer-bottom {
    grid-template-columns: 1fr;
  }

  .pilot-footer.site-footer .footer-links div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .pilot-footer.site-footer .footer-links div,
  .pilot-footer.site-footer .footer-proof {
    grid-template-columns: 1fr;
  }

  .pilot-footer.site-footer .footer-bottom p {
    text-align: left;
  }
}

/* SolutoZeeX light footer v2 - isolated reference design */
.site-footer.szx-footer,
.pilot-footer.site-footer.szx-footer {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  margin: clamp(72px, 8vw, 132px) 0 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  overflow: hidden !important;
  color: #111936 !important;
  background:
    radial-gradient(circle at 92% 12%, rgba(104, 104, 255, .1), transparent 30%),
    radial-gradient(circle at 78% 85%, rgba(94, 74, 255, .18), transparent 34%),
    linear-gradient(180deg, #f9fbff 0%, #f2f5ff 100%) !important;
  box-shadow: none !important;
  isolation: isolate;
}

.site-footer.szx-footer::before,
.site-footer.szx-footer::after,
.pilot-footer.site-footer.szx-footer::before,
.pilot-footer.site-footer.szx-footer::after {
  content: "" !important;
  position: absolute !important;
  pointer-events: none !important;
  z-index: -1 !important;
}

.site-footer.szx-footer::before,
.pilot-footer.site-footer.szx-footer::before {
  inset: 0 auto 0 0 !important;
  width: min(420px, 32vw) !important;
  height: auto !important;
  background: radial-gradient(circle, rgba(74, 103, 255, .13) 1.5px, transparent 2px) 0 0 / 22px 22px !important;
  opacity: .34 !important;
  transform: none !important;
}

.site-footer.szx-footer::after,
.pilot-footer.site-footer.szx-footer::after {
  right: -6vw !important;
  bottom: 0 !important;
  width: min(880px, 58vw) !important;
  height: 360px !important;
  background: repeating-radial-gradient(ellipse at 100% 100%, rgba(255, 255, 255, .85) 0 1px, transparent 1px 13px) !important;
  opacity: .7 !important;
  transform: rotate(-7deg) !important;
}

.szx-footer * {
  box-sizing: border-box;
}

.szx-footer a {
  color: inherit;
  text-decoration: none;
}

.szx-footer-inner {
  position: relative;
  z-index: 1;
  width: min(1640px, calc(100% - clamp(32px, 7vw, 160px)));
  margin: 0 auto;
  padding: clamp(56px, 7vw, 112px) 0 clamp(34px, 4vw, 56px);
}

.szx-footer-grid {
  display: grid !important;
  grid-template-columns: minmax(270px, 1.12fr) minmax(230px, .82fr) minmax(290px, .96fr) minmax(230px, .8fr) !important;
  gap: clamp(34px, 4.6vw, 74px) !important;
  align-items: start !important;
}

.szx-footer-brand,
.szx-footer-links,
.szx-footer-services,
.szx-footer-follow {
  min-width: 0;
}

.szx-footer-links,
.szx-footer-services,
.szx-footer-follow {
  padding-left: clamp(28px, 3vw, 52px);
  border-left: 1px solid rgba(33, 67, 142, .14);
}

.szx-footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 28px;
}

.szx-footer-logo img,
.site-footer.szx-footer .szx-footer-logo img,
.pilot-footer.site-footer.szx-footer .szx-footer-logo img {
  display: block;
  width: clamp(124px, 10vw, 168px) !important;
  height: auto !important;
  margin: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  object-fit: contain !important;
  filter: none !important;
}

.szx-footer-brand p {
  max-width: 360px;
  margin: 0 0 36px;
  color: #263450;
  font-size: clamp(16px, 1.12vw, 20px);
  line-height: 1.72;
  font-weight: 500;
}

.szx-footer-contact {
  display: grid;
  gap: 16px;
  margin: 0;
  font-style: normal;
}

.szx-footer-contact a,
.szx-footer-services a {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 20px;
  align-items: center;
  min-height: 50px;
  color: #1c2945;
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 650;
}

.szx-footer-contact a span,
.szx-footer-services a span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(58, 67, 255, .12);
  border-radius: 12px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 12px 28px rgba(42, 52, 126, .09), inset 0 1px 0 rgba(255, 255, 255, .9);
}

.szx-footer-contact img,
.szx-footer-services img,
.szx-footer-bottom img {
  width: 25px !important;
  height: 25px !important;
  margin: 0 !important;
  filter: invert(40%) sepia(97%) saturate(4293%) hue-rotate(234deg) brightness(101%) contrast(103%) !important;
}

.szx-footer h2 {
  margin: 2px 0 34px !important;
  color: #070d2f !important;
  font-size: clamp(22px, 1.75vw, 28px) !important;
  line-height: 1.1 !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
}

.szx-footer h2::after {
  content: "" !important;
  display: block !important;
  width: 58px !important;
  height: 3px !important;
  margin-top: 24px !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, #146bff, #8a35ff) !important;
}

.szx-footer-links {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 0 !important;
  justify-items: stretch !important;
  justify-content: stretch !important;
}

.szx-footer-links a {
  min-height: 58px;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;
  padding: 0 !important;
  color: #25304b !important;
  border-radius: 0 !important;
  font-size: clamp(16px, 1.18vw, 20px) !important;
  font-weight: 600 !important;
  line-height: 1.25 !important;
  transition: color .18s ease, transform .18s ease;
}

.szx-footer-links a::after {
  display: none !important;
}

.szx-footer-links a b {
  color: #353cff;
  font-size: 28px;
  line-height: 1;
  font-weight: 500;
}

.szx-footer-services {
  display: grid;
  gap: 20px;
}

.szx-footer-services h2 {
  margin-bottom: 28px !important;
}

.szx-footer-services a {
  grid-template-columns: 50px 1fr;
}

.szx-footer-follow {
  align-self: start;
  padding-top: 36px;
}

.szx-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(14px, 1.5vw, 24px);
}

.szx-footer-social a {
  width: clamp(54px, 4.3vw, 66px);
  height: clamp(54px, 4.3vw, 66px);
  display: grid;
  place-items: center;
  border: 1px solid rgba(57, 70, 255, .14);
  border-radius: 50%;
  background: rgba(255, 255, 255, .58);
  box-shadow: 0 12px 26px rgba(50, 61, 141, .12), inset 0 1px 0 rgba(255, 255, 255, .9);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.szx-footer-social img {
  width: 25px !important;
  height: 25px !important;
  margin: 0 !important;
  filter: invert(36%) sepia(93%) saturate(3688%) hue-rotate(237deg) brightness(101%) contrast(102%) !important;
}

.szx-footer a:hover {
  color: #3440ff !important;
}

.szx-footer-links a:hover {
  transform: translateX(4px);
}

.szx-footer-social a:hover {
  transform: translateY(-3px);
  border-color: rgba(56, 63, 255, .42);
  box-shadow: 0 18px 34px rgba(50, 61, 141, .16), inset 0 1px 0 rgba(255, 255, 255, .9);
}

.szx-footer-bottom {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  gap: 28px !important;
  align-items: center !important;
  margin-top: clamp(58px, 6vw, 88px) !important;
  padding-top: 34px !important;
  border-top: 1px solid rgba(44, 77, 150, .16) !important;
}

.szx-footer-bottom p {
  margin: 0 !important;
  color: #263450 !important;
  font-size: clamp(15px, 1vw, 18px) !important;
  line-height: 1.5 !important;
  text-align: left !important;
}

.szx-footer-bottom p a {
  color: #145dff !important;
  font-weight: 750;
}

.szx-footer-bottom div {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #263450;
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 500;
  white-space: nowrap;
}

@media (min-width: 1800px) {
  .szx-footer-inner {
    width: min(1760px, calc(100% - 180px));
  }

  .szx-footer-grid {
    grid-template-columns: minmax(320px, 1.12fr) minmax(260px, .78fr) minmax(320px, .92fr) minmax(260px, .75fr) !important;
  }
}

@media (max-width: 1280px) {
  .szx-footer-grid {
    grid-template-columns: minmax(280px, 1fr) minmax(230px, .8fr) minmax(280px, 1fr) !important;
  }

  .szx-footer-follow {
    grid-column: 1 / -1;
    padding-top: 0;
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 980px) {
  .szx-footer-inner {
    width: min(100% - 48px, 760px);
  }

  .szx-footer-grid {
    grid-template-columns: 1fr 1fr !important;
  }

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

  .szx-footer-brand p {
    max-width: 620px;
  }

  .szx-footer-links,
  .szx-footer-services {
    padding-left: 0;
    border-left: 0;
  }

  .szx-footer-bottom {
    grid-template-columns: 1fr !important;
    justify-items: start;
  }
}

@media (max-width: 620px) {
  .site-footer.szx-footer,
  .pilot-footer.site-footer.szx-footer {
    margin-top: 56px !important;
  }

  .szx-footer-inner {
    width: min(100% - 28px, 520px);
    padding-top: 42px;
  }

  .szx-footer-grid {
    grid-template-columns: 1fr !important;
    gap: 38px !important;
  }

  .szx-footer-logo img,
  .site-footer.szx-footer .szx-footer-logo img,
  .pilot-footer.site-footer.szx-footer .szx-footer-logo img {
    width: 126px !important;
  }

  .szx-footer-brand p {
    margin-bottom: 28px;
    font-size: 16px;
  }

  .szx-footer-contact a,
  .szx-footer-services a {
    grid-template-columns: 46px 1fr;
    gap: 14px;
    font-size: 15px;
  }

  .szx-footer-contact a span,
  .szx-footer-services a span {
    width: 46px;
    height: 46px;
  }

  .szx-footer h2 {
    margin-bottom: 22px !important;
  }

  .szx-footer-links a {
    min-height: 48px;
  }

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

  .szx-footer-social a {
    width: 100%;
    height: 54px;
    border-radius: 18px;
  }

  .szx-footer-bottom {
    margin-top: 42px !important;
    padding-top: 26px !important;
    gap: 16px !important;
  }

  .szx-footer-bottom div {
    white-space: normal;
  }
}

/* Pilot programme icon/logo alignment polish */
.pilot-programme-page .pilot-brand,
.pilot-programme-page .pilot-orbit-mark,
.pilot-programme-page .pilot-floating-card,
.pilot-programme-page .pilot-stat,
.pilot-programme-page .pilot-service-card > img,
.pilot-programme-page .pilot-benefit > img,
.pilot-programme-page .pilot-usp-list img,
.pilot-programme-page .pilot-step-icon,
.pilot-programme-page .pilot-timeline-icon,
.pilot-programme-page .pilot-dark-stats img,
.pilot-programme-page .pilot-button img,
.pilot-programme-page .pilot-note img {
  flex-shrink: 0;
}

.pilot-programme-page .pilot-brand img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.pilot-programme-page .pilot-orbit-mark {
  overflow: hidden;
}

.pilot-programme-page .pilot-orbit-mark img {
  width: min(92px, 58%);
  height: auto;
  object-fit: contain;
  margin: auto;
}

.pilot-programme-page .pilot-floating-card img,
.pilot-programme-page .pilot-stat img,
.pilot-programme-page .pilot-service-card > img,
.pilot-programme-page .pilot-benefit > img,
.pilot-programme-page .pilot-usp-list img,
.pilot-programme-page .pilot-step-icon img,
.pilot-programme-page .pilot-timeline-icon img,
.pilot-programme-page .pilot-dark-stats img,
.pilot-programme-page .pilot-button img,
.pilot-programme-page .pilot-note img {
  display: block;
  object-fit: contain;
  object-position: center;
}

.pilot-programme-page .pilot-floating-card img {
  width: 36px;
  height: 36px;
  margin: 0 auto;
}

.pilot-programme-page .pilot-stat img {
  align-self: center;
  justify-self: center;
}

.pilot-programme-page .pilot-service-card > img,
.pilot-programme-page .pilot-benefit > img,
.pilot-programme-page .pilot-usp-list img {
  display: grid;
  place-self: start;
}

.pilot-programme-page .pilot-step-icon,
.pilot-programme-page .pilot-timeline-icon {
  overflow: hidden;
}

.pilot-programme-page .pilot-step-icon img,
.pilot-programme-page .pilot-timeline-icon img {
  margin: auto;
}

.pilot-programme-page .pilot-dark-stats img {
  align-self: center;
  justify-self: center;
}

.pilot-programme-page .pilot-button img,
.pilot-programme-page .pilot-note img {
  display: inline-block;
  vertical-align: middle;
}

@media (max-width: 760px) {
  .pilot-programme-page .pilot-service-card > img,
  .pilot-programme-page .pilot-benefit > img,
  .pilot-programme-page .pilot-usp-list img {
    place-self: start;
  }

  .pilot-programme-page .pilot-floating-card img {
    width: 34px;
    height: 34px;
  }
}

/* Pilot programme responsive hardening */
.pilot-programme-page {
  overflow-x: hidden;
}

.pilot-programme-page main,
.pilot-programme-page section,
.pilot-programme-page article,
.pilot-programme-page div {
  min-width: 0;
}

@media (max-width: 980px) {
  .pilot-programme-page .pilot-navbar {
    width: 100%;
  }

  .pilot-programme-page .pilot-hero-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .pilot-programme-page .pilot-hero-copy {
    max-width: 100%;
  }

  .pilot-programme-page .pilot-trust-card {
    gap: 18px;
  }

  .pilot-programme-page .pilot-included-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pilot-programme-page .pilot-service-card {
    min-height: auto;
  }

  .pilot-programme-page .pilot-usp {
    gap: 32px;
  }

  .pilot-programme-page .pilot-usp-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .pilot-programme-page .pilot-header {
    padding: 14px 16px 0;
  }

  .pilot-programme-page .pilot-navbar {
    gap: 12px;
  }

  .pilot-programme-page .pilot-nav-menu.open,
  .pilot-programme-page .pilot-nav-actions.open {
    width: 100%;
  }

  .pilot-programme-page .pilot-hero {
    padding: 44px 16px 48px;
  }

  .pilot-programme-page .pilot-badge,
  .pilot-programme-page .pilot-kicker {
    max-width: 100%;
    white-space: normal;
  }

  .pilot-programme-page .pilot-hero h1 {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.05;
  }

  .pilot-programme-page .pilot-lead {
    max-width: 100%;
    margin: 22px 0 26px;
    font-size: 16px;
    line-height: 1.65;
  }

  .pilot-programme-page .pilot-actions,
  .pilot-programme-page .pilot-final-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pilot-programme-page .pilot-button {
    width: 100%;
    min-height: 54px;
    padding-inline: 16px;
    text-align: center;
  }

  .pilot-programme-page .pilot-note {
    align-items: flex-start;
    line-height: 1.45;
  }

  .pilot-programme-page .pilot-hero-visual {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .pilot-programme-page .pilot-orbit {
    width: min(260px, 76vw);
    height: min(260px, 76vw);
    margin-bottom: 8px;
  }

  .pilot-programme-page .pilot-orbit::before {
    inset: -22px;
  }

  .pilot-programme-page .pilot-orbit::after {
    inset: 48px;
  }

  .pilot-programme-page .pilot-orbit-mark {
    inset: 31%;
    border-radius: 22px;
  }

  .pilot-programme-page .pilot-floating-card {
    min-height: 122px;
    padding: 18px 12px;
  }

  .pilot-programme-page .pilot-floating-card strong,
  .pilot-programme-page .pilot-floating-card span {
    overflow-wrap: anywhere;
  }

  .pilot-programme-page .pilot-trust,
  .pilot-programme-page .pilot-section,
  .pilot-programme-page .pilot-usp,
  .pilot-programme-page .pilot-dark-stats,
  .pilot-programme-page .pilot-final-cta {
    width: min(100% - 28px, var(--pilot-max));
  }

  .pilot-programme-page .pilot-trust-card {
    grid-template-columns: 1fr;
    padding: 24px 18px;
  }

  .pilot-programme-page .pilot-quote {
    gap: 14px;
  }

  .pilot-programme-page .pilot-quote span {
    font-size: 42px;
  }

  .pilot-programme-page .pilot-stat,
  .pilot-programme-page .pilot-benefit,
  .pilot-programme-page .pilot-usp-list article,
  .pilot-programme-page .pilot-dark-stats div {
    grid-template-columns: 48px 1fr;
    text-align: left;
    align-items: center;
  }

  .pilot-programme-page .pilot-stat img,
  .pilot-programme-page .pilot-benefit > img,
  .pilot-programme-page .pilot-usp-list img,
  .pilot-programme-page .pilot-dark-stats img {
    width: 48px;
    height: 48px;
    grid-row: span 2;
    place-self: center;
  }

  .pilot-programme-page .pilot-section {
    padding-top: 52px;
  }

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

  .pilot-programme-page .pilot-section-heading h2,
  .pilot-programme-page .pilot-usp h2,
  .pilot-programme-page .pilot-final-cta h2 {
    font-size: clamp(27px, 8vw, 34px);
    line-height: 1.16;
  }

  .pilot-programme-page .pilot-included-grid,
  .pilot-programme-page .pilot-benefits-grid,
  .pilot-programme-page .pilot-dark-stats,
  .pilot-programme-page .pilot-workflow-list,
  .pilot-programme-page .pilot-timeline,
  .pilot-programme-page .pilot-usp-list {
    grid-template-columns: 1fr;
  }

  .pilot-programme-page .pilot-service-card {
    padding: 24px 18px;
  }

  .pilot-programme-page .pilot-service-card h3 {
    font-size: 20px;
  }

  .pilot-programme-page .pilot-workflow-list,
  .pilot-programme-page .pilot-timeline {
    gap: 22px;
  }

  .pilot-programme-page .pilot-workflow-list li,
  .pilot-programme-page .pilot-timeline li {
    padding: 0 4px;
  }

  .pilot-programme-page .pilot-workflow-list p,
  .pilot-programme-page .pilot-timeline p {
    max-width: 100%;
  }

  .pilot-programme-page .pilot-timeline-panel,
  .pilot-programme-page .pilot-usp,
  .pilot-programme-page .pilot-final-cta {
    padding: 26px 18px;
  }

  .pilot-programme-page .pilot-usp {
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .pilot-programme-page .pilot-dark-stats {
    padding: 22px 18px;
    gap: 16px;
  }

  .pilot-programme-page .pilot-dark-stats strong {
    font-size: 27px;
  }

  .pilot-programme-page .pilot-final-cta {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pilot-programme-page .pilot-final-cta p {
    margin-top: 14px;
  }
}

@media (max-width: 480px) {
  .pilot-programme-page .pilot-brand {
    width: 92px;
  }

  .pilot-programme-page .pilot-nav-toggle {
    width: 42px;
    height: 42px;
  }

  .pilot-programme-page .pilot-hero {
    padding-top: 34px;
  }

  .pilot-programme-page .pilot-hero h1 {
    font-size: clamp(31px, 10.5vw, 38px);
  }

  .pilot-programme-page .pilot-hero-visual {
    grid-template-columns: 1fr;
  }

  .pilot-programme-page .pilot-orbit {
    width: min(230px, 72vw);
    height: min(230px, 72vw);
  }

  .pilot-programme-page .pilot-floating-card {
    min-height: auto;
    display: grid;
    grid-template-columns: 42px 1fr;
    justify-items: start;
    text-align: left;
    gap: 4px 12px;
  }

  .pilot-programme-page .pilot-floating-card img {
    grid-row: span 2;
    margin: 0;
  }

  .pilot-programme-page .pilot-stat,
  .pilot-programme-page .pilot-benefit,
  .pilot-programme-page .pilot-usp-list article,
  .pilot-programme-page .pilot-dark-stats div {
    grid-template-columns: 44px 1fr;
  }

  .pilot-programme-page .pilot-stat img,
  .pilot-programme-page .pilot-benefit > img,
  .pilot-programme-page .pilot-usp-list img,
  .pilot-programme-page .pilot-dark-stats img {
    width: 44px;
    height: 44px;
  }

  .pilot-programme-page .pilot-trust,
  .pilot-programme-page .pilot-section,
  .pilot-programme-page .pilot-usp,
  .pilot-programme-page .pilot-dark-stats,
  .pilot-programme-page .pilot-final-cta {
    width: min(100% - 20px, var(--pilot-max));
  }

  .pilot-programme-page .pilot-trust-card,
  .pilot-programme-page .pilot-timeline-panel,
  .pilot-programme-page .pilot-usp,
  .pilot-programme-page .pilot-final-cta {
    padding: 22px 14px;
  }

  .pilot-programme-page .pilot-service-card {
    padding: 22px 16px;
  }
}

/* Pilot page no-horizontal-scroll guarantee */
html,
body.pilot-programme-page {
  max-width: 100%;
  overflow-x: hidden;
}

@supports (overflow: clip) {
  html,
  body.pilot-programme-page {
    overflow-x: clip;
  }
}

body.pilot-programme-page {
  position: relative;
  width: 100%;
}

body.pilot-programme-page::before,
body.pilot-programme-page::after {
  max-width: 100vw;
  overflow: hidden;
}

.pilot-programme-page .pilot-header,
.pilot-programme-page main,
.pilot-programme-page .pilot-hero,
.pilot-programme-page .pilot-hero-shell,
.pilot-programme-page .pilot-hero-visual,
.pilot-programme-page .pilot-trust,
.pilot-programme-page .pilot-section,
.pilot-programme-page .pilot-usp,
.pilot-programme-page .pilot-dark-stats,
.pilot-programme-page .pilot-final-cta,
.pilot-programme-page .site-footer.szx-footer {
  max-width: 100vw;
  overflow-x: hidden;
}

@supports (overflow: clip) {
  .pilot-programme-page .pilot-header,
  .pilot-programme-page main,
  .pilot-programme-page .pilot-hero,
  .pilot-programme-page .pilot-hero-shell,
  .pilot-programme-page .pilot-hero-visual,
  .pilot-programme-page .pilot-trust,
  .pilot-programme-page .pilot-section,
  .pilot-programme-page .pilot-usp,
  .pilot-programme-page .pilot-dark-stats,
  .pilot-programme-page .pilot-final-cta,
  .pilot-programme-page .site-footer.szx-footer {
    overflow-x: clip;
  }
}

.pilot-programme-page img,
.pilot-programme-page svg,
.pilot-programme-page video,
.pilot-programme-page canvas,
.pilot-programme-page iframe {
  max-width: 100%;
}

@media (max-width: 760px) {
  body.pilot-programme-page::after {
    display: none;
  }

  .pilot-programme-page .pilot-orbit,
  .pilot-programme-page .pilot-orbit::before,
  .pilot-programme-page .pilot-orbit::after,
  .pilot-programme-page .pilot-floating-card,
  .pilot-programme-page .pilot-service-card,
  .pilot-programme-page .pilot-timeline-panel,
  .pilot-programme-page .pilot-usp,
  .pilot-programme-page .pilot-final-cta {
    max-width: 100%;
  }

  .pilot-programme-page .pilot-orbit::before {
    inset: -12px;
  }

  .pilot-programme-page .szx-footer::after,
  .pilot-programme-page .site-footer.szx-footer::after {
    right: 0 !important;
    width: 100% !important;
    transform: none !important;
  }
}

/* Pilot local SVG visibility fix */
.pilot-programme-page img[src^="assets/icons/"] {
  filter: none !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
}

.pilot-programme-page .pilot-service-card > img,
.pilot-programme-page .pilot-benefit > img,
.pilot-programme-page .pilot-usp-list img,
.pilot-programme-page .pilot-floating-card img,
.pilot-programme-page .pilot-stat img,
.pilot-programme-page .pilot-step-icon img,
.pilot-programme-page .pilot-timeline-icon img,
.pilot-programme-page .pilot-dark-stats img,
.pilot-programme-page .pilot-button img,
.pilot-programme-page .pilot-note img {
  filter: none !important;
  opacity: 1 !important;
}

.pilot-programme-page .pilot-service-card > img,
.pilot-programme-page .pilot-benefit > img,
.pilot-programme-page .pilot-usp-list img {
  background: #eef3ff !important;
  border: 1px solid rgba(11, 77, 255, .14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9), 0 10px 24px rgba(25, 80, 190, .08);
}

.pilot-programme-page .pilot-floating-card img,
.pilot-programme-page .pilot-step-icon img,
.pilot-programme-page .pilot-timeline-icon img,
.pilot-programme-page .pilot-stat img,
.pilot-programme-page .pilot-dark-stats img {
  background: transparent !important;
}

.pilot-programme-page .pilot-button img,
.pilot-programme-page .pilot-note img {
  width: 20px;
  height: 20px;
}

/* Pilot hero headline descender clipping fix */
.pilot-programme-page .pilot-hero h1 {
  line-height: 1.12 !important;
  padding-bottom: .12em;
  overflow: visible !important;
}

.pilot-programme-page .pilot-hero h1 strong {
  line-height: 1.14 !important;
  padding-bottom: .08em;
  overflow: visible !important;
}
