.faq-list {
  display: grid;
  gap: 18px;
  max-width: 940px;
  margin: 0 auto
}
.faq-item {
  position: relative;
  padding: 0;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease
}
.faq-item:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 151, 218, .38);
  box-shadow: 0 26px 70px rgba(39, 45, 59, .16)
}
.faq-item:before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--accent)
}
.faq-item h3 {
  margin: 0;
  color: inherit;
  font: inherit
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 30px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: inherit;
  font-size: 28px;
  font-weight: 300;
  line-height: 1.15;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .25s ease
}
.faq-question:hover {
  color: var(--accent)
}
.faq-question i {
  color: var(--accent);
  font-size: 17px;
  transition: transform .25s ease
}
.faq-item.open .faq-question i {
  transform: rotate(180deg)
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease
}
.faq-answer-inner {
  padding: 0 30px 28px
}
.faq-item p {
  margin: 0;
  color: #666
}
.step {
  display: grid;
  grid-template-columns: 76px 120px 1fr;
  gap: 22px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid var(--line)
}
.how-card-image, .step-image {
  position: relative;
  min-height: 142px;
  margin: -6px -6px 22px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(0, 151, 218, .12), rgba(39, 45, 59, .08));
  border: 1px solid rgba(0, 151, 218, .18);
  overflow: hidden
}
.how-card-image:before, .step-image:before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px dashed rgba(0, 151, 218, .45)
}
.how-card-image i, .step-image i {
  position: relative;
  color: var(--accent);
  font-size: 34px;
  margin: 0
}
.step-image {
  width: 120px;
  min-height: 86px;
  margin: 0
}
.blog-feed {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px
}
.blog-card {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease
}
.blog-card:hover {
  transform: translateY(-7px);
  border-color: rgba(0, 151, 218, .38);
  box-shadow: 0 30px 85px rgba(39, 45, 59, .18)
}
.blog-card img {
  width: 100%;
  aspect-ratio: 16/10;
  display: block;
  object-fit: cover;
  background: #eaf7fd
}
.blog-card div {
  padding: 26px
}
.blog-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 28px;
  font-weight: 300;
  text-transform: uppercase
}
.blog-card p {
  margin: 0 0 18px;
  color: #666
}
.blog-card.visible {
  animation: softPop .7s ease both;
  animation-delay: var(--reveal-delay, 0ms)
}
.step-num {
  color: var(--accent);
  font-size: 48px;
  line-height: 1
}
.step h3, .timeline-item h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 29px;
  font-weight: 300;
  text-transform: uppercase
}
.timeline {
  display: grid;
  gap: 20px;
  max-width: 940px;
  margin: auto
}
.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 26px;
  border-left: 2px solid var(--accent);
  padding-left: 24px
}
.timeline-year {
  color: var(--accent);
  font-size: 36px
}
