.te-page--static {
  padding: 0 0 72px;
}

.te-static-page {
  display: grid;
  gap: 0;
}

.te-static-page__content {
  display: grid;
  gap: 28px;
  padding-top: 34px;
}

.te-full-hero--static-page .te-full-hero__inner,
.te-full-hero--catalog-landing .te-full-hero__inner {
  min-height: min(66svh, 700px);
}

.te-static-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #262b31;
  box-shadow: var(--te-shadow);
}

.te-static-band article {
  padding: 20px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.te-static-band article:last-child {
  border-right: 0;
}

.te-static-band strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 1rem;
}

.te-static-band span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
}

.te-static-grid {
  display: grid;
  gap: 22px;
}

.te-static-grid--catalog {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.te-static-grid--steps,
.te-static-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.te-static-card,
.te-static-catalog-card,
.te-faq-item {
  border: 1px solid var(--te-border);
  border-radius: 24px;
  background: var(--te-surface);
  box-shadow: var(--te-shadow);
}

.te-static-card {
  padding: 28px;
}

.te-static-card h2,
.te-static-card h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
  line-height: 1.2;
}

.te-static-card p {
  margin: 0;
  color: var(--te-muted);
  line-height: 1.75;
}

.te-static-card--step {
  position: relative;
  padding-top: 34px;
}

.te-static-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--te-accent);
  color: #fff;
  font-weight: 900;
}

.te-static-catalog-card {
  overflow: hidden;
  display: grid;
}

.te-static-catalog-card__media {
  display: grid;
  place-items: center;
  min-height: 260px;
}

.te-static-catalog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.te-static-catalog-card__placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  color: var(--te-accent-strong);
  font-size: 2rem;
  font-weight: 900;
}

.te-static-catalog-card__body {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.te-static-catalog-card__tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--te-accent-soft);
  color: var(--te-accent-strong);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.te-static-catalog-card__body strong {
  font-size: 1.34rem;
  line-height: 1.2;
}

.te-static-catalog-card__body span:not(.te-static-catalog-card__tag):not(.te-static-catalog-card__cta) {
  color: var(--te-muted);
  line-height: 1.7;
}

.te-static-catalog-card__cta {
  color: var(--te-accent-strong);
  font-weight: 800;
}

.te-faq-list {
  display: grid;
  gap: 16px;
}

.te-faq-item {
  overflow: hidden;
}

.te-faq-item__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
  min-height: 76px;
  padding: 0 24px;
  border: 0;
  background: transparent;
  color: var(--te-text);
  font: inherit;
  font-size: 1.04rem;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.te-faq-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--te-accent-soft);
  color: var(--te-accent-strong);
  font-size: 1.3rem;
  font-weight: 800;
  flex: 0 0 34px;
  transition: transform 0.18s ease, background-color 0.18s ease;
}

.te-faq-item.is-open .te-faq-item__icon {
  transform: rotate(45deg);
}

.te-faq-item__body {
  padding: 0 24px 24px;
}

.te-faq-item__body p {
  margin: 0;
  color: var(--te-muted);
  line-height: 1.8;
}

@media (max-width: 1024px) {
  .te-static-grid--catalog,
  .te-static-grid--steps,
  .te-static-grid--three,
  .te-static-grid--two {
    grid-template-columns: 1fr;
  }

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

  .te-static-band article:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 768px) {
  .te-page--static {
    padding: 0 0 56px;
  }

  .te-static-band {
    grid-template-columns: 1fr;
  }

  .te-static-band article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .te-static-band article:last-child {
    border-bottom: 0;
  }

  .te-faq-item__trigger {
    min-height: 68px;
    padding: 0 18px;
  }

  .te-faq-item__body {
    padding: 0 18px 20px;
  }
}
