.support-symbols {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.support-hero .inner-hero__visual {
  height: 220px;
}

.support-page .section-heading {
  margin-bottom: var(--space-8);
}

.support-page .section-heading h2 {
  font-size: var(--text-2xl);
}

.support-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--space-6);
}

.support-stage {
  position: relative;
  min-width: 0;
}

.support-stage:not(:last-child)::before {
  position: absolute;
  top: 18px;
  right: calc(-1 * var(--space-6));
  left: 48px;
  border-top: 1px dashed #9dc1f6;
  content: "";
}

.support-stage:not(:last-child)::after {
  position: absolute;
  z-index: 1;
  top: 14px;
  right: calc(-1 * var(--space-6) - 2px);
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--color-brand);
  border-right: 2px solid var(--color-brand);
  content: "";
  transform: rotate(45deg);
}

.support-stage__summary {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 48px;
  align-items: flex-start;
  gap: var(--space-3);
  list-style: none;
  cursor: default;
  pointer-events: none;
}

.support-stage__summary::-webkit-details-marker {
  display: none;
}

.support-stage__number {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--color-brand);
  box-shadow: 0 0 0 7px var(--color-brand-soft);
  color: #fff;
  font-size: var(--text-sm);
  font-weight: 800;
}

.support-stage__summary h3 {
  margin: 6px 0 0;
  font-size: var(--text-base);
  white-space: nowrap;
}

.support-stage__chevron {
  display: none;
}

.support-stage__content {
  height: 100%;
  min-height: 308px;
  padding: var(--space-5) var(--space-4);
  box-shadow: 0 8px 24px rgb(16 42 76 / 5%);
}

@media (min-width: 769px) {
  .support-stage:not([open]) > .support-stage__content {
    display: block;
  }
}

.support-stage dl {
  display: grid;
  gap: var(--space-4);
  margin: 0;
}

.support-stage dt {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-brand);
  font-size: var(--text-sm);
  font-weight: 800;
}

.support-stage dt svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.support-stage dd {
  margin-top: var(--space-1);
  color: var(--color-muted);
  font-size: var(--text-sm);
  line-height: 1.7;
}

.assurance-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-6);
}

.assurance-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: var(--space-4);
  min-height: 130px;
  padding: var(--space-6);
  box-shadow: 0 8px 24px rgb(16 42 76 / 4%);
}

.assurance-item__icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: var(--radius-lg);
  background: var(--color-brand-soft);
  color: var(--color-brand);
}

.assurance-item__icon svg,
.delivery-panel__icon svg,
.support-contact-note__icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.assurance-item h3 {
  margin-bottom: var(--space-1);
  font-size: var(--text-base);
}

.assurance-item p {
  color: var(--color-muted);
  font-size: var(--text-sm);
  line-height: 1.65;
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-6);
}

.delivery-panel {
  display: grid;
  grid-template-columns: 76px 1fr;
  align-items: center;
  gap: var(--space-6);
  padding: var(--space-7, 1.75rem) var(--space-8);
  border-radius: var(--radius-md);
  background:
    linear-gradient(105deg, rgb(234 243 255 / 92%), rgb(248 251 255 / 96%));
}

.delivery-panel__icon {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border-radius: var(--radius-lg);
  background: rgb(255 255 255 / 78%);
  color: var(--color-brand);
  box-shadow: inset 0 0 0 1px rgb(23 105 232 / 10%);
}

.delivery-panel__icon svg {
  width: 40px;
  height: 40px;
}

.delivery-panel h2 {
  margin-bottom: var(--space-2);
  font-size: var(--text-xl);
}

.delivery-panel p {
  color: var(--color-text);
  font-size: var(--text-sm);
  line-height: 1.75;
}

.support-contact-note {
  align-items: center;
  justify-content: center;
  margin-top: var(--space-8);
  padding-block: var(--space-4);
  text-align: center;
}

.support-contact-note__icon {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--color-brand);
}

.support-contact-note__icon svg {
  width: 24px;
  height: 24px;
}

.support-contact-note p {
  font-weight: 600;
}

@media (max-width: 1060px) {
  .support-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-stage::before {
    display: none;
  }

  .support-stage::after {
    display: none;
  }

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

@media (max-width: 768px) {
  .support-hero .inner-hero__visual {
    height: 120px;
  }

  .support-page .section-heading {
    margin-bottom: var(--space-6);
  }

  .support-process-section {
    padding-bottom: var(--space-10);
  }

  .support-flow,
  .assurance-grid,
  .delivery-grid {
    grid-template-columns: 1fr;
  }

  .support-flow {
    position: relative;
    gap: var(--space-3);
  }

  .support-flow::before {
    position: absolute;
    top: 28px;
    bottom: 28px;
    left: 18px;
    border-left: 1px dashed #9dc1f6;
    content: "";
  }

  .support-stage {
    padding-left: 50px;
  }

  .support-stage__summary {
    min-height: 50px;
    align-items: center;
    padding: var(--space-2) var(--space-4);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-sm);
    background: #fff;
    box-shadow: 0 6px 18px rgb(16 42 76 / 5%);
    cursor: pointer;
    pointer-events: auto;
  }

  .support-stage__summary h3 {
    margin: 0;
    font-size: var(--text-base);
  }

  .support-stage__number {
    position: absolute;
    left: -50px;
    width: 38px;
    height: 38px;
    box-shadow: 0 0 0 5px #fff;
  }

  .support-stage__chevron {
    display: block;
    width: 20px;
    height: 20px;
    margin-left: auto;
    fill: none;
    stroke: var(--color-heading);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    transition: transform var(--transition-fast);
  }

  .support-stage[open] .support-stage__chevron {
    transform: rotate(180deg);
  }

  .support-stage__content {
    min-height: 0;
    margin-top: var(--space-2);
    padding: var(--space-5);
  }

  .support-stage dl {
    gap: var(--space-3);
  }

  .assurance-item {
    min-height: 0;
    padding: var(--space-5);
  }

  .delivery-panel {
    grid-template-columns: 58px 1fr;
    gap: var(--space-4);
    padding: var(--space-5);
  }

  .delivery-panel__icon {
    width: 58px;
    height: 58px;
  }

  .delivery-panel__icon svg {
    width: 32px;
    height: 32px;
  }

  .support-contact-note {
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
  }
}
