@charset "UTF-8";
/* Layer 3 — service-compensation accordion.
 * Ported from the legacy CodeKit `.accordion__*` styles, re-prefixed `.svc-acc`
 * and re-tokenized (no more CodeKit dependency). Layout + the bits the design
 * system doesn't cover; colors via Layer-1 tokens. */
.svc-acc {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: var(--norml-font-body);
}

.svc-acc__item {
  background: var(--norml-light);
  padding: 32px;
  transition: background 0.2s;
}

.svc-acc__header {
  display: flex;
  column-gap: 20px;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.svc-acc__item--active .svc-acc__header {
  border-bottom: 2px solid var(--norml-border);
  padding-bottom: 32px;
}

.svc-acc__left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 1 50%;
}

.svc-acc__center {
  flex: 1 1 auto;
}

.svc-acc__number {
  color: #1A516C; /* legacy teal accent — not in token set */
  font-size: 90px;
  line-height: 1;
}

.svc-acc__info {
  display: flex;
  flex-direction: column;
}

.svc-acc__level {
  color: #1A516C;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.svc-acc__title {
  color: var(--header-color-dark);
  font-size: 40px;
  line-height: 1.12;
  margin: 0;
  padding: 0;
}

.svc-acc__small-txt {
  color: var(--norml-gray);
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  display: block;
  margin-bottom: 10px;
}

.svc-acc__range {
  color: var(--header-color-dark);
  font-size: 40px;
}

.svc-acc__toggle {
  border: none;
  background: none;
  cursor: pointer;
  color: var(--header-color-dark);
  transition: transform 0.2s;
}

.svc-acc__icon {
  display: inline-block;
  transition: transform 0.3s;
}

.svc-acc__item--active .svc-acc__icon {
  transform: rotate(180deg);
}

.svc-acc__body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.4s ease;
}

.svc-acc__item--active .svc-acc__body {
  opacity: 1;
}

.svc-acc__content-text {
  padding-top: 30px;
  display: flex;
  gap: 50px;
  flex-wrap: nowrap;
}

.svc-acc__content-text p {
  color: var(--header-color-dark);
  font-size: 16px;
  line-height: 1.62;
  font-weight: 600;
  flex: 0 1 49%;
  padding: 0;
}

.svc-acc__btn {
  margin-top: 30px;
}

@media (max-width: 1440px) {
  .svc-acc__title,
  .svc-acc__range {
    font-size: 32px;
  }
}
@media (max-width: 992px) {
  .svc-acc__item {
    padding: 30px 20px;
  }
  .svc-acc__header {
    flex-wrap: wrap;
  }
  .svc-acc__left {
    margin-bottom: 20px;
  }
  .svc-acc__center {
    flex: 1 1 50%;
  }
  .svc-acc__number {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .svc-acc__left {
    flex: 1 1 100%;
  }
  .svc-acc__title,
  .svc-acc__range {
    font-size: 24px;
  }
  .svc-acc__content-text {
    flex-wrap: wrap;
    gap: 5px;
  }
  .svc-acc__content-text p {
    flex: 1 1 100%;
  }
  .svc-acc__btn {
    width: 100%;
    text-align: center;
  }
}