/** Shopify CDN: Minification failed

Line 418:4 Unexpected "calc("

**/
/* =========================================================
   MACHEX – DRONE INSPECTION PROCESS
   File: assets/machex-drone-inspection-process.css
   ========================================================= */

.machex-drone-process {
  width: 100%;
  overflow: hidden;
  padding-top: var(--drone-process-padding-top-desktop, 100px);
  padding-bottom: var(--drone-process-padding-bottom-desktop, 100px);
  background: var(--drone-process-background, #ffffff);
}

.machex-drone-process *,
.machex-drone-process *::before,
.machex-drone-process *::after {
  box-sizing: border-box;
}

.machex-drone-process__container {
  width: min(calc(100% - 48px), 1600px);
  margin-inline: auto;
}

/* =========================================================
   Header
   ========================================================= */

.machex-drone-process__header {
  width: 100%;
  max-width: 920px;
  margin-bottom: 54px;
}

.machex-drone-process--align-left
  .machex-drone-process__header {
  margin-right: auto;
  text-align: left;
}

.machex-drone-process--align-center
  .machex-drone-process__header {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.machex-drone-process__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--drone-process-accent-color, #0755c9);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.machex-drone-process__eyebrow-line {
  display: block;
  width: 44px;
  height: 2px;
  flex: 0 0 auto;
  background: currentColor;
}

.machex-drone-process--align-center
  .machex-drone-process__eyebrow {
  justify-content: center;
}

.machex-drone-process__heading {
  margin: 0;
  color: var(--drone-process-heading-color, #071b42);
  font-size: clamp(40px, 4.3vw, 68px);
  font-weight: 780;
  line-height: 1.05;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.machex-drone-process__heading strong {
  color: var(--drone-process-accent-color, #0755c9);
  font-weight: inherit;
}

.machex-drone-process__description {
  max-width: 790px;
  margin-top: 24px;
  color: var(--drone-process-text-color, #5f6b7a);
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.78;
}

.machex-drone-process--align-center
  .machex-drone-process__description {
  margin-right: auto;
  margin-left: auto;
}

.machex-drone-process__description p {
  margin: 0;
}

.machex-drone-process__description p + p {
  margin-top: 15px;
}

/* =========================================================
   Steps grid
   ========================================================= */

.machex-drone-process__steps {
  display: grid;
  grid-template-columns:
    repeat(
      var(--drone-process-columns-desktop, 4),
      minmax(0, 1fr)
    );
  gap: 22px;
}

/* =========================================================
   Step card
   ========================================================= */

.machex-drone-process__step {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  padding: 28px;
  overflow: visible;
  border: 1px solid var(--drone-process-border-color, #dfe5ec);
  border-radius: var(--drone-process-card-radius, 16px);
  background: var(--drone-process-card-background, #f7f9fc);
  box-shadow: 0 14px 36px rgba(7, 27, 66, 0.06);
  isolation: isolate;
  transition:
    border-color 240ms ease,
    box-shadow 240ms ease,
    transform 240ms ease;
}

.machex-drone-process__step::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  border-radius:
    var(--drone-process-card-radius, 16px)
    var(--drone-process-card-radius, 16px)
    0
    0;
  background: var(--drone-process-accent-color, #0755c9);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms ease;
}

.machex-drone-process__step::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -85px;
  right: -95px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: color-mix(
    in srgb,
    var(--drone-process-accent-color, #0755c9) 5%,
    transparent
  );
  pointer-events: none;
  transition: transform 300ms ease;
}

.machex-drone-process__step:hover {
  border-color: color-mix(
    in srgb,
    var(--drone-process-accent-color, #0755c9) 34%,
    var(--drone-process-border-color, #dfe5ec)
  );
  box-shadow: 0 25px 55px rgba(7, 27, 66, 0.13);
  transform: translateY(-7px);
}

.machex-drone-process__step:hover::before {
  transform: scaleX(1);
}

.machex-drone-process__step:hover::after {
  transform: scale(1.12);
}

/* =========================================================
   Highlighted step
   ========================================================= */

.machex-drone-process__step--highlighted {
  border-color: color-mix(
    in srgb,
    var(--drone-process-accent-color, #0755c9) 48%,
    var(--drone-process-border-color, #dfe5ec)
  );
  background:
    linear-gradient(
      145deg,
      color-mix(
        in srgb,
        var(--drone-process-accent-color, #0755c9) 7%,
        var(--drone-process-card-background, #f7f9fc)
      ),
      var(--drone-process-card-background, #f7f9fc)
    );
  box-shadow: 0 22px 50px rgba(7, 27, 66, 0.12);
}

.machex-drone-process__step--highlighted::before {
  transform: scaleX(1);
}

/* =========================================================
   Card top
   ========================================================= */

.machex-drone-process__step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.machex-drone-process__step-number {
  display: inline-flex;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--drone-process-number-background, #0755c9);
  color: var(--drone-process-number-text, #ffffff);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 24px
    color-mix(
      in srgb,
      var(--drone-process-number-background, #0755c9) 28%,
      transparent
    );
}

.machex-drone-process__step-icon {
  display: flex;
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid color-mix(
    in srgb,
    var(--drone-process-accent-color, #0755c9) 20%,
    transparent
  );
  border-radius: var(--drone-process-icon-radius, 12px);
  background: var(--drone-process-icon-background, #edf4ff);
  color: var(--drone-process-accent-color, #0755c9);
  transition:
    background-color 240ms ease,
    color 240ms ease,
    transform 240ms ease;
}

.machex-drone-process__step-icon svg {
  width: 40px;
  height: 40px;
}

.machex-drone-process__custom-icon {
  display: block;
  width: 100%;
  height: 100%;
  padding: 11px;
  object-fit: contain;
}

.machex-drone-process__step:hover
  .machex-drone-process__step-icon {
  background: var(--drone-process-accent-color, #0755c9);
  color: #ffffff;
  transform: translateY(-3px);
}

/* =========================================================
   Step content
   ========================================================= */

.machex-drone-process__step-content {
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  flex-direction: column;
}

.machex-drone-process__step-label {
  display: block;
  margin-bottom: 10px;
  color: var(--drone-process-accent-color, #0755c9);
  font-size: 9px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.machex-drone-process__step-title {
  margin: 0;
  color: var(--drone-process-card-heading-color, #071b42);
  font-size: clamp(20px, 1.45vw, 25px);
  font-weight: 760;
  line-height: 1.25;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.machex-drone-process__step-description {
  margin-top: 14px;
  color: var(--drone-process-card-text-color, #5f6b7a);
  font-size: 13px;
  line-height: 1.7;
}

.machex-drone-process__step-description p {
  margin: 0;
}

.machex-drone-process__step-description p + p {
  margin-top: 10px;
}

/* =========================================================
   Step note
   ========================================================= */

.machex-drone-process__step-note {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  margin-top: auto;
  padding-top: 23px;
  color: var(--drone-process-card-text-color, #5f6b7a);
  font-size: 11.5px;
  line-height: 1.55;
}

.machex-drone-process__step-note > span:first-child {
  display: flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--drone-process-icon-background, #edf4ff);
  color: var(--drone-process-accent-color, #0755c9);
}

.machex-drone-process__step-note svg {
  width: 15px;
  height: 15px;
}

/* =========================================================
   Connectors
   ========================================================= */

.machex-drone-process__connector {
  position: absolute;
  z-index: 5;
  top: 50%;
  right: -28px;
  display: flex;
  width: 34px;
  height: 20px;
  align-items: center;
  justify-content: center;
  color: var(--drone-process-line-color, #bfd1ea);
  transform: translateY(-50%);
  pointer-events: none;
}

.machex-drone-process__connector svg {
  width: 32px;
  height: 16px;
}

/* Connectors are hidden at row endings for common grid counts */

.machex-drone-process__steps
  .machex-drone-process__step:nth-child(
    calc(var(--drone-process-columns-desktop, 4) * 1n)
  )
  .machex-drone-process__connector {
  display: none;
}

/* =========================================================
   Timeline layout
   ========================================================= */

.machex-drone-process__steps--timeline {
  position: relative;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  max-width: 1120px;
  margin-inline: auto;
}

.machex-drone-process__steps--timeline::before {
  content: "";
  position: absolute;
  top: 30px;
  bottom: 30px;
  left: 22px;
  width: 2px;
  background: var(--drone-process-line-color, #bfd1ea);
}

.machex-drone-process__steps--timeline
  .machex-drone-process__step {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 25px;
  padding: 30px;
}

.machex-drone-process__steps--timeline
  .machex-drone-process__step-top {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin: 0;
}

.machex-drone-process__steps--timeline
  .machex-drone-process__step-number {
  width: 46px;
  height: 46px;
}

.machex-drone-process__steps--timeline
  .machex-drone-process__step-icon {
  width: 54px;
  height: 54px;
  margin-top: 15px;
}

.machex-drone-process__steps--timeline
  .machex-drone-process__step-icon svg {
  width: 33px;
  height: 33px;
}

.machex-drone-process__steps--timeline
  .machex-drone-process__connector {
  display: none;
}

/* =========================================================
   Bottom summary
   ========================================================= */

.machex-drone-process__summary {
  position: relative;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) auto;
  align-items: center;
  gap: 25px;
  margin-top: 52px;
  padding: 42px 46px;
  overflow: hidden;
  border-radius: var(--drone-process-card-radius, 16px);
  background: var(--drone-process-summary-background, #071b42);
  box-shadow: 0 25px 60px rgba(7, 27, 66, 0.22);
  isolation: isolate;
}

.machex-drone-process__summary::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -100px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: color-mix(
    in srgb,
    var(--drone-process-accent-color, #0755c9) 20%,
    transparent
  );
}

.machex-drone-process__summary::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 26%;
  bottom: -150px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

.machex-drone-process__summary-icon {
  display: flex;
  width: 78px;
  height: 78px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--drone-process-icon-radius, 12px);
  background: color-mix(
    in srgb,
    var(--drone-process-accent-color, #0755c9) 25%,
    transparent
  );
  color: #ffffff;
}

.machex-drone-process__summary-icon svg {
  width: 47px;
  height: 47px;
}

.machex-drone-process__summary-content {
  min-width: 0;
  max-width: 850px;
}

.machex-drone-process__summary-eyebrow {
  display: block;
  margin-bottom: 10px;
  color: color-mix(
    in srgb,
    var(--drone-process-accent-color, #0755c9) 62%,
    #ffffff
  );
  font-size: 9.5px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.machex-drone-process__summary-heading {
  margin: 0;
  color: var(--drone-process-summary-heading, #ffffff);
  font-size: clamp(27px, 2.7vw, 41px);
  font-weight: 770;
  line-height: 1.12;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.machex-drone-process__summary-text {
  max-width: 760px;
  margin-top: 14px;
  color: var(--drone-process-summary-text, #c7d1df);
  font-size: 13.5px;
  line-height: 1.7;
}

.machex-drone-process__summary-text p {
  margin: 0;
}

/* =========================================================
   Button
   ========================================================= */

.machex-drone-process__button {
  position: relative;
  z-index: 2;
  display: inline-flex;
  min-width: 220px;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 16px 22px;
  border: 1px solid var(--drone-process-button-background, #0755c9);
  border-radius: 7px;
  background: var(--drone-process-button-background, #0755c9);
  color: var(--drone-process-button-text, #ffffff);
  font-size: 9.5px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 16px 36px
    color-mix(
      in srgb,
      var(--drone-process-button-background, #0755c9) 38%,
      transparent
    );
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.machex-drone-process__button svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  transition: transform 220ms ease;
}

.machex-drone-process__button:hover {
  border-color: color-mix(
    in srgb,
    var(--drone-process-button-background, #0755c9) 80%,
    #ffffff
  );
  background: color-mix(
    in srgb,
    var(--drone-process-button-background, #0755c9) 80%,
    #ffffff
  );
  box-shadow: 0 22px 45px
    color-mix(
      in srgb,
      var(--drone-process-button-background, #0755c9) 46%,
      transparent
    );
  transform: translateY(-3px);
}

.machex-drone-process__button:hover svg {
  transform: translateX(5px);
}

.machex-drone-process__button--disabled {
  cursor: default;
  opacity: 0.62;
}

.machex-drone-process__button--disabled:hover {
  box-shadow: none;
  transform: none;
}

/* =========================================================
   Rich text
   ========================================================= */

.machex-drone-process .rte ul,
.machex-drone-process .rte ol {
  margin-top: 14px;
  margin-bottom: 0;
  padding-left: 22px;
}

.machex-drone-process .rte li + li {
  margin-top: 7px;
}

.machex-drone-process .rte > :first-child {
  margin-top: 0;
}

.machex-drone-process .rte > :last-child {
  margin-bottom: 0;
}

/* =========================================================
   Focus
   ========================================================= */

.machex-drone-process__button:focus-visible {
  outline: 3px solid color-mix(
    in srgb,
    var(--drone-process-accent-color, #0755c9) 55%,
    #ffffff
  );
  outline-offset: 4px;
}

/* =========================================================
   Large desktop
   ========================================================= */

@media screen and (min-width: 1600px) {
  .machex-drone-process__steps {
    gap: 25px;
  }

  .machex-drone-process__step {
    padding: 32px;
  }

  .machex-drone-process__step-title {
    font-size: 25px;
  }
}

/* =========================================================
   Standard desktop
   ========================================================= */

@media screen and (max-width: 1399px) {
  .machex-drone-process__container {
    width: min(calc(100% - 40px), 1320px);
  }

  .machex-drone-process__step {
    padding: 25px;
  }

  .machex-drone-process__step-title {
    font-size: 21px;
  }

  .machex-drone-process__summary {
    padding: 38px 40px;
  }
}

/* =========================================================
   Small desktop
   ========================================================= */

@media screen and (max-width: 1199px) {
  .machex-drone-process__steps:not(
      .machex-drone-process__steps--timeline
    ) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .machex-drone-process__steps:not(
      .machex-drone-process__steps--timeline
    )
    .machex-drone-process__step:nth-child(2n)
    .machex-drone-process__connector {
    display: none;
  }

  .machex-drone-process__steps:not(
      .machex-drone-process__steps--timeline
    )
    .machex-drone-process__step:nth-child(odd)
    .machex-drone-process__connector {
    display: flex;
  }

  .machex-drone-process__summary {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .machex-drone-process__summary-icon {
    width: 70px;
    height: 70px;
  }

  .machex-drone-process__button {
    grid-column: 2;
    justify-self: start;
  }
}

/* =========================================================
   Tablet
   ========================================================= */

@media screen and (max-width: 989px) {
  .machex-drone-process__heading {
    font-size: clamp(38px, 6vw, 56px);
  }

  .machex-drone-process__header {
    margin-bottom: 42px;
  }

  .machex-drone-process__steps--timeline
    .machex-drone-process__step {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 21px;
  }

  .machex-drone-process__summary {
    padding: 34px;
  }
}

/* =========================================================
   Mobile
   ========================================================= */

@media screen and (max-width: 749px) {
  .machex-drone-process {
    padding-top: var(--drone-process-padding-top-mobile, 65px);
    padding-bottom: var(--drone-process-padding-bottom-mobile, 70px);
  }

  .machex-drone-process__container {
    width: calc(100% - 32px);
  }

  .machex-drone-process__header {
    margin-bottom: 32px;
  }

  .machex-drone-process__eyebrow {
    margin-bottom: 15px;
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .machex-drone-process__eyebrow-line {
    width: 34px;
  }

  .machex-drone-process__heading {
    font-size: clamp(33px, 9vw, 46px);
    line-height: 1.07;
  }

  .machex-drone-process__description {
    margin-top: 19px;
    font-size: 15px;
    line-height: 1.72;
  }

  .machex-drone-process__steps,
  .machex-drone-process__steps:not(
      .machex-drone-process__steps--timeline
    ) {
    grid-template-columns:
      repeat(
        var(--drone-process-columns-mobile, 1),
        minmax(0, 1fr)
      );
    gap: 15px;
  }

  .machex-drone-process__step {
    padding: 22px;
    border-radius: min(
      var(--drone-process-card-radius, 16px),
      13px
    );
  }

  .machex-drone-process__step:hover {
    transform: none;
  }

  .machex-drone-process__step-top {
    margin-bottom: 21px;
  }

  .machex-drone-process__step-number {
    width: 42px;
    height: 42px;
    font-size: 11px;
  }

  .machex-drone-process__step-icon {
    width: 56px;
    height: 56px;
  }

  .machex-drone-process__step-icon svg {
    width: 35px;
    height: 35px;
  }

  .machex-drone-process__step-title {
    font-size: 21px;
  }

  .machex-drone-process__step-description {
    margin-top: 11px;
    font-size: 12.5px;
  }

  .machex-drone-process__connector {
    display: none !important;
  }

  .machex-drone-process__steps--timeline::before {
    left: 20px;
  }

  .machex-drone-process__steps--timeline
    .machex-drone-process__step {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 17px;
    padding: 22px;
  }

  .machex-drone-process__steps--timeline
    .machex-drone-process__step-icon {
    width: 46px;
    height: 46px;
    margin-top: 12px;
  }

  .machex-drone-process__steps--timeline
    .machex-drone-process__step-icon svg {
    width: 29px;
    height: 29px;
  }

  .machex-drone-process__summary {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 17px;
    margin-top: 34px;
    padding: 29px 24px;
    border-radius: min(
      var(--drone-process-card-radius, 16px),
      13px
    );
  }

  .machex-drone-process__summary-icon {
    width: 56px;
    height: 56px;
  }

  .machex-drone-process__summary-icon svg {
    width: 35px;
    height: 35px;
  }

  .machex-drone-process__summary-heading {
    font-size: clamp(27px, 7.5vw, 36px);
  }

  .machex-drone-process__summary-text {
    font-size: 12.5px;
  }

  .machex-drone-process__button {
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
  }
}

/* =========================================================
   Small mobile
   ========================================================= */

@media screen and (max-width: 560px) {
  .machex-drone-process__steps {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media screen and (max-width: 420px) {
  .machex-drone-process__container {
    width: calc(100% - 24px);
  }

  .machex-drone-process__step {
    padding: 20px;
  }

  .machex-drone-process__steps--timeline
    .machex-drone-process__step {
    grid-template-columns: 1fr;
  }

  .machex-drone-process__steps--timeline::before {
    display: none;
  }

  .machex-drone-process__steps--timeline
    .machex-drone-process__step-top {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .machex-drone-process__steps--timeline
    .machex-drone-process__step-icon {
    margin-top: 0;
  }

  .machex-drone-process__summary {
    grid-template-columns: minmax(0, 1fr);
    padding: 27px 20px;
  }

  .machex-drone-process__summary-icon {
    width: 54px;
    height: 54px;
  }
}

/* =========================================================
   Reduced motion
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  .machex-drone-process__step,
  .machex-drone-process__step::before,
  .machex-drone-process__step::after,
  .machex-drone-process__step-icon,
  .machex-drone-process__button,
  .machex-drone-process__button svg {
    transition: none;
  }

  .machex-drone-process__step:hover,
  .machex-drone-process__step:hover
    .machex-drone-process__step-icon,
  .machex-drone-process__button:hover,
  .machex-drone-process__button:hover svg {
    transform: none;
  }
}