.svc {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr);
  gap: 60px;
  align-items: center;
}

.svc--flip > div:first-child { order: 2; }

.svc h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }

.svc__lead {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.75;
}

.svc__list { margin-top: 26px; }

.svc__list li {
  position: relative;
  padding: 14px 0 14px 30px;
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: .9375rem;
}

.svc__list li:last-child { border-bottom: 1px solid var(--line-soft); }

.svc__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 21px;
  width: 13px;
  height: 7px;
  border-left: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  transform: rotate(-45deg);
}

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

.svc__aside {
  padding: 40px 36px;
  background: var(--deep);
  border-radius: var(--radius-lg);
  color: #fff;
  text-align: center;
}

.section--soft .svc__aside { background: #fff; color: var(--ink); box-shadow: var(--shadow-md); }

.svc__num {
  display: block;
  color: var(--red);
  font-size: clamp(2.75rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.03em;
}

.svc__aside h3 {
    margin: 0;
    color: inherit;
    font-size: 1.125rem;
    line-height: 1.35;
}
.svc__aside h3 + p { margin-top: 14px; }
.svc__aside strong {
  display: block;
  margin-top: 16px;
  font-size: 1rem;
  color: inherit;
}

.svc__aside p {
  margin-top: 12px;
  color: rgba(255, 255, 255, .7);
  font-size: .9375rem;
}

.section--soft .svc__aside p { color: var(--muted); }

.svc__aside .btn { margin-top: 24px; }

.steps--wide {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 34px 30px;
  margin-top: 54px;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps--wide li {
  position: relative;
  padding: 26px 0 0;
  counter-increment: step;
}

.steps--wide li::before {
  content: counter(step, decimal-leading-zero);
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  border: 0;
  border-radius: 50%;
  background: var(--deep);
  color: #fff;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.steps--wide li::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 46px;
  height: 3px;
  border-radius: 3px;
  background: var(--red);
}

.steps--wide li p {
  margin: 0;
  color: var(--muted);
  font-size: .9375rem;
  line-height: 1.7;
}

.banks {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
  margin-top: 46px;
}

.banks__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 74px;
  padding: 12px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease);
}

.banks__item:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 9, 113, .2);
  box-shadow: var(--shadow-sm);
}

.banks__item img {
  max-height: 34px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .72;
  transition: filter .3s var(--ease), opacity .3s var(--ease);
}

.banks__item:hover img { filter: grayscale(0); opacity: 1; }

@media (max-width: 1000px) {
  .svc { grid-template-columns: 1fr; gap: 40px; }
  .svc--flip > div:first-child { order: 0; }
}

@media (max-width: 780px) {
  .svc__aside { padding: 32px 26px; }
  .banks { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
}

.pricetable {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.section--soft .pricetable { box-shadow: var(--shadow-md); }

.pricetable table {
  width: 100%;
  border-collapse: collapse;
}

.pricetable th,
.pricetable td {
  padding: 13px 20px;
  text-align: left;
  font-size: .875rem;
}

.pricetable thead th {
  background: var(--bg-soft);
  color: var(--faint);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.pricetable tbody tr + tr th,
.pricetable tbody tr + tr td { border-top: 1px solid var(--line-soft); }

.pricetable tbody th {
  color: var(--navy);
  font-weight: 700;
  white-space: nowrap;
}

.pricetable tbody td { color: var(--muted); }

.pricetable tbody td strong { color: var(--ink); }

.pricetable tbody td span {
  display: block;
  margin-top: 2px;
  color: var(--faint);
  font-size: .75rem;
}

.pricetable tbody tr:hover th,
.pricetable tbody tr:hover td { background: rgba(0, 9, 113, .03); }

.pricetable__note {
  padding: 14px 20px;
  border-top: 1px solid var(--line-soft);
  color: var(--faint);
  font-size: .8125rem;
  line-height: 1.6;
}

.tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 46px;
}

.tier {
  padding: 30px 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}

.tier:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 9, 113, .2);
  box-shadow: var(--shadow-md);
}

.tier b {
  display: block;
  color: var(--red);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -.03em;
}

.tier span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: .875rem;
}

.tiers__note {
  margin-top: 24px;
  color: var(--faint);
  font-size: .8125rem;
  text-align: center;
}
