/* =========================================================
   ARCHITECTURE STEPS
   ========================================================= */

.arch-steps-module {
  --accent: #F5921E;
  --max-width: 1200px;

  position: relative;
  width: 100%;
  max-width: var(--max-width);
  overflow-x: hidden;

  margin: 0 auto;

  background: transparent;

  padding: 24px 0 0 0;

  /* Body/base font — used by anything that doesn't
     explicitly switch to Montserrat below (e.g. description text) */
  font-family: 'Roboto', Arial, Helvetica, sans-serif;

  box-sizing: border-box;
}


/* =========================================================
   HEADER
   ========================================================= */

.arch-steps-header {
  position: relative;
  z-index: 10;

  width: 100%;

  text-align: center;

  margin: 0 0 4px 0;
  padding: 0;
}


.arch-eyebrow {
  margin: 0 0 8px 0;

  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 20px;
  line-height: 1.2;

  font-weight: 700;
  letter-spacing: 1px;

  color: #1a1a1a;

  text-transform: uppercase;
}


.arch-heading {
  margin: 0;

  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 60px;
  line-height: 1.1;

  font-weight: 800;

  color: var(--accent);

  text-transform: uppercase;
}


.arch-subheading {
  margin: 12px auto 0;

  max-width: 640px;

  font-size: 16px;
  line-height: 1.5;

  font-weight: 400;

  color: #555555;
}


/* =========================================================
   MAIN STAGE
   ========================================================= */

.arch-steps-stage {

  position: relative;

  width: 100%;

  min-height: 460px;

  overflow: visible;
}


/* =========================================================
   EACH STEP
   ========================================================= */

.arch-step {

  position: absolute;

  left: var(--pos-x);

  top: 0;

  width: 220px;

  transform: translateX(-50%);

  text-align: center;

  z-index: 5;

  box-sizing: border-box;
}


/* =========================================================
   TEXT
   ========================================================= */

.arch-step-content {

  position: relative;

  width: 100%;

  margin: var(--text-top, 0px) auto 0;

  z-index: 10;
}


.arch-step-title {

  margin: 0 0 4px 0;

  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 19px;
  line-height: 1.15;

  font-weight: 700;
  letter-spacing: 0.3px;

  color: var(--accent);

  text-transform: uppercase;
}


.arch-step-desc {

  margin: 0 auto;

  max-width: 200px;

  /* stays on the base Roboto/Arial font — Montserrat regular (400)
     isn't loaded, so switching this would silently fall back
     to a default system font instead */
  font-size: 14.7px;
  line-height: 1.3;

  font-weight: 400;

  color: #555555;
}


/* =========================================================
   ICON + CONNECTOR
   ========================================================= */

.arch-visual {

  position: absolute;

  top: var(--icon-top);

  left: 50%;

  width: 0;
  height: auto;

  transform: translateX(-50%);

  display: flex;
  flex-direction: column;
  align-items: center;

  z-index: 20;
}


/* =========================================================
   ICON CIRCLE
   ========================================================= */

.arch-icon-circle {

  position: relative;

  width: 64px;
  height: 64px;

  border-radius: 50%;

  border: 2px solid var(--accent);

  background: transparent;

  display: flex;

  align-items: center;
  justify-content: center;

  box-sizing: border-box;

  overflow: hidden;

  flex-shrink: 0;

  z-index: 20;
}


/* =========================================================
   ICON
   ========================================================= */

.arch-icon-img {

  width: 32px;
  height: 32px;

  object-fit: contain;

  display: block;
}


/* =========================================================
   CONNECTOR LINE
   ========================================================= */

.arch-connector {

  position: relative;

  width: 0;

  margin-left: 0;

  border-left: 2px dotted var(--accent);

  box-sizing: border-box;

  z-index: 10;
}


/* =========================================================
   BOTTOM DOT
   ========================================================= */

.arch-connector-dot {

  position: absolute;

  left: 50%;

  bottom: -5px;

  width: 10px;
  height: 10px;

  margin-left: -5px;

  border-radius: 50%;

  background: var(--accent);

  display: block;
}


/* =========================================================
   TOP DOT
   ========================================================= */

.arch-icon-circle::after {

  content: "";

  position: absolute;

  bottom: -6px;

  left: 50%;

  width: 10px;
  height: 10px;

  margin-left: -5px;

  border-radius: 50%;

  background: var(--accent);

  z-index: 30;
}


/* =========================================================
   DESKTOP
   ========================================================= */

@media (min-width: 1100px) {

  .arch-steps-stage {
    min-height: 460px;
  }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1099px) {

  .arch-step {
    width: 200px;
  }

  .arch-eyebrow {
    font-size: 16px;
  }

  .arch-heading {
    font-size: 42px;
  }

  .arch-step-title {
    font-size: 16px;
  }

  .arch-step-desc {
    font-size: 13px;
    max-width: 190px;
  }

  .arch-icon-circle {
    width: 56px;
    height: 56px;
  }

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

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

  .arch-steps-stage {

    min-height: auto;

    display: flex;

    flex-direction: column;

    gap: 70px;

    padding: 30px 20px;

    position: relative;
    z-index: 1;
  }


  .arch-steps-stage::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.55);
    z-index: 0;
    pointer-events: none;
  }


  .arch-step {

    position: relative;

    top: auto !important;
    left: auto !important;

    width: 100%;

    transform: none;

    text-align: center;

    z-index: 2;
  }


  .arch-step-content {
    width: 100%;
    margin-top: 0 !important;

    background: rgba(255, 255, 255, 0.92);